1234567891011121314151617181920212223242526272829303132333435 |
-
- #ifndef SdFatUtil_h
- #define SdFatUtil_h
-
-
- namespace SdFatUtil {
- int FreeRam();
- void print_P( Print *p, PGM_P str);
- void println_P( Print *p, PGM_P str);
- void SerialPrint_P(Print *p, PGM_P str);
- void SerialPrintln_P(Print *p, PGM_P str);
- }
- using namespace SdFatUtil;
- #endif // #define SdFatUtil_h
|