Add ISO keymap(issue #35) and use new keymap API

This commit is contained in:
tmk 2014-05-21 02:43:19 +09:00
parent abe5edcaa7
commit ed8cf12d25
8 changed files with 279 additions and 131 deletions

View file

@ -48,11 +48,17 @@ TOP_DIR = ../..
TARGET_DIR = .
# project specific files
SRC = keymap.c \
SRC = keymap_common.c \
matrix.c \
led.c \
adb.c
ifdef KEYMAP
SRC := keymap_$(KEYMAP).c $(SRC)
else
SRC := keymap_ansi.c $(SRC)
endif
CONFIG_H = config.h