🎨 Fix some formatting, F() versus PSTR()

This commit is contained in:
Scott Lahteine
2021-07-24 21:41:09 -05:00
parent 0c401bddad
commit 30665737dc
15 changed files with 22 additions and 22 deletions

View File

@ -80,7 +80,7 @@ void print_hex_address(const void * const w) { SERIAL_ECHO(hex_address(w)); }
void print_hex_long(const uint32_t w, const char delimiter) {
SERIAL_ECHOPGM("0x");
for (int B = 24; B >= 8; B -= 8){
for (int B = 24; B >= 8; B -= 8) {
print_hex_byte(w >> B);
SERIAL_CHAR(delimiter);
}