rules.mk 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # MCU name
  2. MCU = atmega32u4
  3. # Bootloader selection
  4. BOOTLOADER = halfkay
  5. # If you have Left LEDs (see
  6. # https://geekhack.org/index.php?topic=22780.msg873819#msg873819 for
  7. # details), include the following define:
  8. # OPT_DEFS += -DLEFT_LEDS
  9. # Build Options
  10. # comment out to disable the options.
  11. #
  12. BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
  13. MOUSEKEY_ENABLE = yes # Mouse keys
  14. EXTRAKEY_ENABLE = yes # Audio control and System control
  15. CONSOLE_ENABLE = no # Console for debug
  16. COMMAND_ENABLE = yes # Commands for debug and configuration
  17. CUSTOM_MATRIX = lite # Custom matrix file for the ErgoDox EZ
  18. NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
  19. UNICODE_ENABLE = yes # Unicode
  20. SWAP_HANDS_ENABLE= yes # Allow swapping hands of keyboard
  21. SLEEP_LED_ENABLE = no
  22. RGB_MATRIX_ENABLE = no # enable later
  23. RGB_MATRIX_DRIVER = IS31FL3731
  24. DEBOUNCE_TYPE = sym_eager_pr
  25. # project specific files
  26. SRC += matrix.c \
  27. led_i2c.c
  28. QUANTUM_LIB_SRC += i2c_master.c
  29. LAYOUTS = ergodox
  30. # Disable unsupported hardware
  31. AUDIO_SUPPORTED = no
  32. BACKLIGHT_SUPPORTED = no