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.

pjrc.mk 306B

123456789101112131415161718192021
  1. OPT_DEFS += -DHOST_PJRC
  2. SRC += pjrc.c \
  3. usb_keyboard.c \
  4. usb_debug.c \
  5. usb.c \
  6. jump_bootloader.c
  7. # Search Path
  8. VPATH += $(COMMON_DIR):$(COMMON_DIR)/pjrc
  9. # Option modules
  10. ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
  11. SRC += usb_mouse.c
  12. endif
  13. ifdef EXTRAKEY_ENABLE
  14. SRC += usb_extra.c
  15. endif