1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-23 08:45:22 +03:00

Add support to Print::printf for printing from flash (#2266)

* Add support to Print::printf for printing from flash
This commit is contained in:
Me No Dev
2016-07-15 10:15:44 +03:00
committed by GitHub
parent 217ba9e072
commit e35ebf137d
2 changed files with 24 additions and 0 deletions

View File

@ -64,6 +64,7 @@ class Print {
}
size_t printf(const char * format, ...) __attribute__ ((format (printf, 2, 3)));
size_t printf_P(PGM_P format, ...) __attribute__((format(printf, 2, 3)));
size_t print(const __FlashStringHelper *);
size_t print(const String &);
size_t print(const char[]);