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

@@ -31,6 +31,11 @@
#define I2C_ADDRESS(A) (A)
#endif
// Needed for AVR sprintf_P PROGMEM extension
#ifndef S_FMT
#define S_FMT "%s"
#endif
inline void watchdog_refresh() {
TERN_(USE_WATCHDOG, HAL_watchdog_refresh());
}