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

@ -50,7 +50,8 @@
// Defines
// ------------------------
//#define analogInputToDigitalPin(IO) IO
// AVR PROGMEM extension for sprintf_P
#define S_FMT "%S"
#ifndef CRITICAL_SECTION_START
#define CRITICAL_SECTION_START() unsigned char _sreg = SREG; cli()
@ -60,9 +61,6 @@
#define ENABLE_ISRS() sei()
#define DISABLE_ISRS() cli()
// On AVR this is in math.h?
//#define square(x) ((x)*(x))
// ------------------------
// Types
// ------------------------