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.

bluefruit.mk 609B

123456789101112131415161718192021222324252627
  1. BLUEFRUIT_DIR = protocol/bluefruit
  2. PJRC_DIR = protocol/pjrc
  3. SRC += $(BLUEFRUIT_DIR)/main.c \
  4. $(BLUEFRUIT_DIR)/bluefruit.c \
  5. serial_uart.c \
  6. $(PJRC_DIR)/pjrc.c \
  7. $(PJRC_DIR)/usb_keyboard.c \
  8. $(PJRC_DIR)/usb_debug.c \
  9. $(PJRC_DIR)/usb.c
  10. # Option modules
  11. ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
  12. SRC += $(PJRC_DIR)/usb_mouse.c
  13. endif
  14. ifdef EXTRAKEY_ENABLE
  15. SRC += $(PJRC_DIR)/usb_extra.c
  16. endif
  17. # Search Path
  18. VPATH += $(TOP_DIR)/$(BLUEFRUIT_DIR)
  19. #VPATH += $(TOP_DIR)/$(BLUEFRUIT_DIR)/usb_debug_only
  20. VPATH += $(TOP_DIR)/$(PJRC_DIR)
  21. OPT_DEFS += -DPROTOCOL_BLUEFRUIT
  22. OPT_DEFS += -DPROTOCOL_PJRC