From 9793d4e57b100c6d8f8f14c7eb218d19ccdbdb07 Mon Sep 17 00:00:00 2001 From: Sascha Nitsch Date: Fri, 15 Apr 2022 14:05:49 +0200 Subject: [PATCH] fixed flash output --- cimditprofile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cimditprofile.cpp b/cimditprofile.cpp index a394e5c..78767e3 100644 --- a/cimditprofile.cpp +++ b/cimditprofile.cpp @@ -683,8 +683,8 @@ void CimditProfile::printFlash() { uint8_t in; for (uint16_t i = 0; i < len; ++i) { in = nextUInt8(); - Serial.print(in >> 8, 16); - Serial.print(in & 255, 16); + Serial.print(in >> 4, 16); + Serial.print(in & 15, 16); } Serial.println(); }