1
0
Fork 0

Add new keymap framework

This commit is contained in:
tmk 2013-11-29 08:42:40 +09:00
parent d2a83dae8f
commit fd7833388c
7 changed files with 332 additions and 84 deletions

View file

@ -49,10 +49,16 @@ TARGET_DIR = .
# List C source files here. (C dependencies are automatically generated.)
SRC += keymap.c \
SRC += keymap_common.c \
matrix.c \
led.c
ifdef KEYMAP
SRC := keymap_$(KEYMAP).c $(SRC)
else
SRC := keymap_hasu.c $(SRC)
endif
CONFIG_H = config.h