b732b79b49
* Unicode to have unicode input you need to: - set your OS input method to UNICODE if needed - enable unicode in your makefile - copy the action_function from keyboard/planck/keymaps/unicode/unicode.c to your keymap.c set the target OS method in your keymap.c: void matrix_init_user() { set_unicode_mode(UC_OSX); } you can then switch when you want with: set_unicode_mode(UC_OSX); set_unicode_mode(UC_LNX); set_unicode_mode(UC_WIN); put some unicode codes in your keymap like so: UC(0x0061) I did change the bit mask in quantum/keymap_common.c and .h I’m afraid we will need uint32 to get a total support for all unicode tables or relocate the handler as @mbarkhau did. * rearranges keycode values, hooks-up unicode * removes extra lalt ref * adds unicode shortcuts and example
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
QUANTUM_DIR = quantum
|
|
|
|
# # project specific files
|
|
SRC += $(QUANTUM_DIR)/quantum.c \
|
|
$(QUANTUM_DIR)/keymap_common.c \
|
|
$(QUANTUM_DIR)/led.c
|
|
|
|
# ifdef KEYMAP_FILE
|
|
# ifneq (,$(shell grep USING_MIDI '$(KEYMAP_FILE)'))
|
|
# MIDI_ENABLE=yes
|
|
# $(info * Overriding MIDI_ENABLE setting - $(KEYMAP_FILE) requires it)
|
|
# endif
|
|
# ifneq (,$(shell grep USING_UNICODE '$(KEYMAP_FILE)'))
|
|
# UNICODE_ENABLE=yes
|
|
# $(info * Overriding UNICODE_ENABLE setting - $(KEYMAP_FILE) requires it)
|
|
# endif
|
|
# ifneq (,$(shell grep USING_BACKLIGHT '$(KEYMAP_FILE)'))
|
|
# BACKLIGHT_ENABLE=yes
|
|
# $(info * Overriding BACKLIGHT_ENABLE setting - $(KEYMAP_FILE) requires it)
|
|
# endif
|
|
# endif
|
|
|
|
ifndef CUSTOM_MATRIX
|
|
SRC += $(QUANTUM_DIR)/matrix.c
|
|
endif
|
|
|
|
#ifeq ($(strip $(MIDI_ENABLE)), yes)
|
|
# SRC += $(QUANTUM_DIR)/keymap_midi.c
|
|
#endif
|
|
|
|
ifeq ($(strip $(AUDIO_ENABLE)), yes)
|
|
SRC += $(QUANTUM_DIR)/audio/audio.c
|
|
SRC += $(QUANTUM_DIR)/audio/voices.c
|
|
SRC += $(QUANTUM_DIR)/audio/luts.c
|
|
endif
|
|
|
|
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
|
|
SRC += $(QUANTUM_DIR)/light_ws2812.c
|
|
SRC += $(QUANTUM_DIR)/rgblight.c
|
|
OPT_DEFS += -DRGBLIGHT_ENABLE
|
|
endif
|
|
|
|
# Optimize size but this may cause error "relocation truncated to fit"
|
|
#EXTRALDFLAGS = -Wl,--relax
|
|
|
|
# Search Path
|
|
VPATH += $(TOP_DIR)/$(QUANTUM_DIR)
|
|
VPATH += $(TOP_DIR)/$(QUANTUM_DIR)/keymap_extras
|
|
VPATH += $(TOP_DIR)/$(QUANTUM_DIR)/audio
|
|
|
|
include $(TMK_DIR)/protocol/lufa.mk
|
|
|
|
include $(TMK_DIR)/common.mk
|
|
include $(TMK_DIR)/rules.mk
|