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

This commit is contained in:
Scott Lahteine
2021-07-24 21:41:09 -05:00
parent 4b94fb7558
commit e1907a99e2
18 changed files with 25 additions and 25 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);
}