fixed flash output

master
Sascha Nitsch 2022-04-15 14:05:49 +02:00
parent d133664567
commit 9793d4e57b
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}