This commit is contained in:
Felix Rusu 2020-04-06 20:59:36 -04:00
parent 1fe8191663
commit 24d63d8fdd
1 changed files with 1 additions and 0 deletions

View File

@ -528,6 +528,7 @@ void PrintHex83(uint8_t* data, uint8_t length)
tmp = (data[i] & 0x0F) | 48; tmp = (data[i] & 0x0F) | 48;
Serial.print((char)((tmp > 57) ? tmp+7 : tmp)); Serial.print((char)((tmp > 57) ? tmp+7 : tmp));
} }
Serial.println();
} }
//=================================================================================================================== //===================================================================================================================