fixed vusb variant of converter ps2usb
This commit is contained in:
parent
8cec0bc9d6
commit
93915040e7
4 changed files with 31 additions and 18 deletions
|
@ -8,10 +8,16 @@ TOP_DIR = ../..
|
|||
TARGET_DIR = .
|
||||
|
||||
# keyboard dependent files
|
||||
SRC = keymap.c \
|
||||
SRC = keymap_common.c \
|
||||
matrix.c \
|
||||
led.c
|
||||
|
||||
ifdef KEYMAP
|
||||
SRC := keymap_$(KEYMAP).c $(SRC)
|
||||
else
|
||||
SRC := keymap_plain.c $(SRC)
|
||||
endif
|
||||
|
||||
# Use USART for PS/2. With V-USB INT and BUSYWAIT code is not useful.
|
||||
SRC += protocol/ps2_usart.c
|
||||
OPT_DEFS += -DPS2_USE_USART
|
||||
|
@ -95,7 +101,7 @@ VPATH += $(TARGET_DIR)
|
|||
VPATH += $(TOP_DIR)
|
||||
|
||||
|
||||
include $(TOP_DIR)/protocol/vusb.mk
|
||||
include $(TOP_DIR)/protocol.mk
|
||||
include $(TOP_DIR)/common.mk
|
||||
include $(TOP_DIR)/protocol/vusb.mk
|
||||
include $(TOP_DIR)/rules.mk
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue