We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 915e488 commit 3dfc2c6Copy full SHA for 3dfc2c6
libraries/SD/utility/SdFatUtil.h
@@ -56,7 +56,7 @@ static UNUSEDOK int FreeRam(void) {
56
* \param[in] str Pointer to string stored in flash memory.
57
*/
58
static NOINLINE void SerialPrint_P(PGM_P str) {
59
- for (uint8_t c; (c = pgm_read_byte(str)); str++) Serial.print(c);
+ for (uint8_t c; (c = pgm_read_byte(str)); str++) Serial.write(c);
60
}
61
//------------------------------------------------------------------------------
62
/**
0 commit comments