Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vusb.mk 407B

123456789101112131415161718192021
  1. VUSB_DIR = protocol/vusb
  2. OPT_DEFS += -DPROTOCOL_VUSB
  3. SRC += $(VUSB_DIR)/main.c \
  4. $(VUSB_DIR)/vusb.c \
  5. $(VUSB_DIR)/usbdrv/usbdrv.c \
  6. $(VUSB_DIR)/usbdrv/usbdrvasm.S \
  7. $(VUSB_DIR)/usbdrv/oddebug.c
  8. ifdef NO_UART
  9. SRC += $(COMMON_DIR)/sendchar_null.c
  10. else
  11. SRC += $(COMMON_DIR)/sendchar_uart.c \
  12. $(COMMON_DIR)/uart.c
  13. endif
  14. # Search Path
  15. VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv