123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
-
-
-
- #include "Marlin.h"
- #if ENABLED(SDSUPPORT)
-
- #ifndef SdFatUtil_h
- #define SdFatUtil_h
-
- #include "Marlin.h"
- #include "MarlinSerial.h"
-
- #define PgmPrint(x) SerialPrint_P(PSTR(x))
-
- #define PgmPrintln(x) SerialPrintln_P(PSTR(x))
-
- namespace SdFatUtil {
- int FreeRam();
- void print_P(PGM_P str);
- void println_P(PGM_P str);
- void SerialPrint_P(PGM_P str);
- void SerialPrintln_P(PGM_P str);
- }
-
- using namespace SdFatUtil;
- #endif
-
-
- #endif
|