Add NO_ACTION_TAPPING and NO_ACTION_MACRO config options

This commit is contained in:
tmk 2013-03-20 00:28:13 +09:00
parent b057511f45
commit 9757f960f9
4 changed files with 36 additions and 6 deletions

View file

@ -28,7 +28,11 @@ typedef uint8_t macro_t;
typedef macro_t prog_macro_t PROGMEM;
#ifndef NO_ACTION_MACRO
void action_macro_play(const prog_macro_t *macro);
#else
#define action_macro_play(macro)
#endif