diff options
author | Brian Choromanski <BrianChoromanski@gmail.com> | 2018-03-16 21:20:09 +0100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-03-16 21:20:09 +0100 |
commit | 6c74d734c274f70ce72150ecbd844f8eff5040c4 (patch) | |
tree | 2e675ef4f061ae47f27f854f7659692f54646453 /keyboards/knops | |
parent | ad1a868701102fdf031c2d187b7fb9b656040fc6 (diff) | |
download | qmk_firmware-6c74d734c274f70ce72150ecbd844f8eff5040c4.tar.gz qmk_firmware-6c74d734c274f70ce72150ecbd844f8eff5040c4.tar.xz |
Fixed various keymaps and the allocation of "key_combos" (#2526)
* 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
Diffstat (limited to 'keyboards/knops')
-rw-r--r-- | keyboards/knops/mini/keymaps/knops/keymap.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/keyboards/knops/mini/keymaps/knops/keymap.c b/keyboards/knops/mini/keymaps/knops/keymap.c index 34e560600..7bc7fbe43 100644 --- a/keyboards/knops/mini/keymaps/knops/keymap.c +++ b/keyboards/knops/mini/keymaps/knops/keymap.c @@ -117,6 +117,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { //keyevent_t event = record->event; /*KNOPS_MACRO*/ + return NULL; } @@ -133,6 +134,8 @@ void led_set_user(uint8_t usb_led) { bool process_record_user (uint16_t keycode, keyrecord_t *record) { /*KNOPS_PROCESS_STATE*/ + + return NULL; } |