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.

iwrap.mk 534B

1234567891011121314151617181920212223242526
  1. IWRAP_DIR = protocol/iwrap
  2. OPT_DEFS += -DPROTOCOL_IWRAP
  3. SRC += $(IWRAP_DIR)/main.c \
  4. $(IWRAP_DIR)/iwrap.c \
  5. $(IWRAP_DIR)/suart.S \
  6. $(COMMON_DIR)/sendchar_uart.c \
  7. $(COMMON_DIR)/uart.c
  8. # Search Path
  9. VPATH += $(TOP_DIR)/protocol/iwrap
  10. # TODO: compatible with LUFA and PJRC
  11. # V-USB
  12. #
  13. VUSB_DIR = protocol/vusb
  14. OPT_DEFS += -DPROTOCOL_VUSB
  15. SRC += $(VUSB_DIR)/vusb.c \
  16. $(VUSB_DIR)/usbdrv/usbdrv.c \
  17. $(VUSB_DIR)/usbdrv/usbdrvasm.S \
  18. $(VUSB_DIR)/usbdrv/oddebug.c
  19. VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv