diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-09-14 23:54:49 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-09-14 23:54:49 -0400 |
commit | 6ec03b22187fb3c16677c4c0583e66d6d6a5c4f1 (patch) | |
tree | 37265cdf66290a33ce588e9b12ce0ecc816543c4 /keyboard/planck/Makefile | |
parent | 5bb7ef0012378cd800bff74680b08c587e6338e4 (diff) |
unicode working, i think
Diffstat (limited to 'keyboard/planck/Makefile')
-rw-r--r-- | keyboard/planck/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/keyboard/planck/Makefile b/keyboard/planck/Makefile index ad0c824375..3ac20a55a4 100644 --- a/keyboard/planck/Makefile +++ b/keyboard/planck/Makefile @@ -125,13 +125,18 @@ COMMAND_ENABLE = yes # Commands for debug and configuration #SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend # NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality -MIDI_ENABLE = YES # MIDI controls +# MIDI_ENABLE = YES # MIDI controls +UNICODE_ENABLE = YES # MIDI controls BACKLIGHT_ENABLE = yes ifdef MIDI_ENABLE SRC += keymap_midi.c endif +ifdef UNICODE_ENABLE + SRC += keymap_unicode.c +endif + # Optimize size but this may cause error "relocation truncated to fit" #EXTRALDFLAGS = -Wl,--relax |