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.

19 lines
375 B

  1. # MCU name
  2. MCU = atmega32u4
  3. # Bootloader selection
  4. BOOTLOADER = atmel-dfu
  5. CUSTOM_MATRIX = yes
  6. EXTRAKEY_ENABLE = yes
  7. CONSOLE_ENABLE = yes
  8. COMMAND_ENABLE = yes
  9. # A bunch of stuff that you shouldn't touch unless you
  10. # know what you're doing.
  11. #
  12. # No touchy, capiche?
  13. SRC += matrix.c i2c_master.c
  14. ifeq ($(strip $(DEBUG_MATRIX)), yes)
  15. OPT_DEFS += -DDEBUG_MATRIX
  16. endif