rules.mk 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # MCU name
  2. MCU = atmega32u4
  3. # Interrupt driven control endpoint task(+60)
  4. OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
  5. # Bootloader selection
  6. BOOTLOADER = atmel-dfu
  7. # Build Options
  8. # change yes to no to disable
  9. #
  10. BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
  11. MOUSEKEY_ENABLE = no # Mouse keys
  12. EXTRAKEY_ENABLE = yes # Audio control and System control
  13. CONSOLE_ENABLE = no # Console for debug
  14. COMMAND_ENABLE = no # Commands for debug and configuration
  15. SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
  16. NKRO_ENABLE = yes # USB Nkey Rollover
  17. BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
  18. RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
  19. MIDI_ENABLE = no # MIDI support
  20. BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
  21. AUDIO_ENABLE = no # Audio output on port C6
  22. FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
  23. ENCODER_ENABLE = yes # Use rotary encoder
  24. LTO_ENABLE = yes # Link-time optimization
  25. CUSTOM_MATRIX = lite # Lite custom matrix
  26. # Project specific files
  27. SRC += matrix.c \
  28. bitc_led.c \
  29. big_led.c \
  30. remote_kb.c \
  31. tmk_core/common/uart.c