forked from forks/qmk_firmware
6c74d734c2
* Fixed plank keymaps so that they will compile for planck light * tv44:budi now compiles * s60_x:amnesia0287 now compiles * Fixed allocation of key_combos so that narze keymap for planck can compile correctly * Disabled rgb on ergodone and infinity * Enabled tap dance so it compiles * Added return statement so it compiles * If compiling on light disable extra functionality * Properly redefined variable so it compiles
20 lines
340 B
C
20 lines
340 B
C
#ifndef USERSPACE
|
|
#define USERSPACE
|
|
|
|
#ifdef TAPPING_TOGGLE
|
|
#undef TAPPING_TOGGLE
|
|
#endif
|
|
#define TAPPING_TOGGLE 2
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
#define WORKMAN_SOUND \
|
|
E__NOTE(_GS7), \
|
|
ED_NOTE(_E7), \
|
|
S__NOTE(_REST), \
|
|
E__NOTE(_A6), \
|
|
S__NOTE(_REST), \
|
|
ED_NOTE(_GS6),
|
|
#endif
|
|
|
|
#endif
|