We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 452df00 commit c6da87fCopy full SHA for c6da87f
hardware/arduino/cores/arduino/Print.cpp
@@ -41,7 +41,7 @@ size_t Print::write(const uint8_t *buffer, size_t size)
41
42
size_t Print::print(const __FlashStringHelper *ifsh)
43
{
44
- const char PROGMEM *p = (const char PROGMEM *)ifsh;
+ const char *p = (const char *)ifsh;
45
size_t n = 0;
46
while (1) {
47
unsigned char c = pgm_read_byte(p++);
0 commit comments