Hi,
Can anyone please explain to me what these two for:
static void SerialPrint_P(PGM_P str) {
for (uint8_t c; (c = pgm_read_byte(str)); str++) Serial.write(c);
}
static void SerialPrintln_P(PGM_P str) {
SerialPrint_P(str);
Serial.println(); }
I have to comment these lines when I have <sd.h> in my codes.
Thanks

