Skip to content

Commit

Permalink
Add F() to a couple short fixed strings (Issue #71)
Browse files Browse the repository at this point in the history
All fixed strings should use F(). There were a couple very short strings that did not. See Issue #71.
  • Loading branch information
csatt committed Oct 11, 2019
1 parent 1dded96 commit 154bb74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Arduino/IV_Swinger2/IV_Swinger2.ino
Original file line number Diff line number Diff line change
Expand Up @@ -401,10 +401,10 @@ void setup()
Serial.print(ii+1);
Serial.print(F(" is 0x"));
for (int jj = 7; jj >= 0; jj--) {
if (rom_code[jj] < 16) Serial.print('0');
if (rom_code[jj] < 16) Serial.print(F("0"));
Serial.print(rom_code[jj], HEX);
}
Serial.println("");
Serial.println(F(""));
}
#endif
}
Expand Down

0 comments on commit 154bb74

Please sign in to comment.