diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-11-26 15:37:46 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-11-26 15:38:44 -0500 |
commit | 7edac212c8ed8442bf4207e70dc8194631b2bf27 (patch) | |
tree | fd1905e1a24c237daa0e3e4172fe74f273d6b646 /keyboards/ergodox | |
parent | f25596b8dc2f15f620c07164d871023d9284618c (diff) | |
download | qmk_firmware-7edac212c8ed8442bf4207e70dc8194631b2bf27.tar.gz qmk_firmware-7edac212c8ed8442bf4207e70dc8194631b2bf27.zip |
separated into api files/folder
Diffstat (limited to 'keyboards/ergodox')
-rw-r--r-- | keyboards/ergodox/keymaps/jack/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/ergodox/rules.mk | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/ergodox/keymaps/jack/keymap.c b/keyboards/ergodox/keymaps/jack/keymap.c index eb41f12127..9cb80c59d1 100644 --- a/keyboards/ergodox/keymaps/jack/keymap.c +++ b/keyboards/ergodox/keymaps/jack/keymap.c @@ -91,7 +91,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) break; case 2: if (record->event.pressed) { // For resetting EEPROM - send_unicode_midi(0x0CA0); + api_send_unicode(0x0CA0); } break; } diff --git a/keyboards/ergodox/rules.mk b/keyboards/ergodox/rules.mk index add64ec76f..2e501e81b2 100644 --- a/keyboards/ergodox/rules.mk +++ b/keyboards/ergodox/rules.mk @@ -24,6 +24,5 @@ COMMAND_ENABLE ?= yes # Commands for debug and configuration CUSTOM_MATRIX ?= yes # Custom matrix file for the ErgoDox EZ SLEEP_LED_ENABLE ?= yes # Breathing sleep LED during USB suspend NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work -MIDI_ENABLE ?= no # MIDI controls UNICODE_ENABLE ?= yes # Unicode ONEHAND_ENABLE ?= yes # Allow swapping hands of keyboard |