Move S_FMT to HAL, apply to mixer

This commit is contained in:
Scott Lahteine
2020-05-05 17:55:35 -05:00
parent 7a2cc782b4
commit 39f703310b
4 changed files with 11 additions and 15 deletions

View File

@@ -76,13 +76,6 @@
// Nanoseconds per cycle
#define NANOSECONDS_PER_CYCLE (1000000000.0 / F_CPU)
// Macros to make sprintf_P read from PROGMEM (AVR extension)
#ifdef __AVR__
#define S_FMT "%S"
#else
#define S_FMT "%s"
#endif
// Macros to make a string from a macro
#define STRINGIFY_(M) #M
#define STRINGIFY(M) STRINGIFY_(M)