1
0
Fork 0

Adds default value for TAPPING_TERM if Tap Dance is enabled (#2785)

* Force require TAPPING_TERM if Tap Dance is enabled

* Handle lack of TAPPING_TERM more gracefully
This commit is contained in:
Drashna Jael're 2018-10-01 08:09:05 -07:00 committed by Jack Humbert
parent a398d2cece
commit 9d949389f9
2 changed files with 8 additions and 2 deletions

View file

@ -16,6 +16,10 @@
#include "quantum.h"
#include "action_tapping.h"
#ifndef TAPPING_TERM
#define TAPPING_TERM 200
#endif
#ifndef NO_ACTION_ONESHOT
uint8_t get_oneshot_mods(void);
#endif