rules.mk 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Build Options
  2. # change to "no" to disable the options, or define them in the Makefile in
  3. # the appropriate keymap folder that will get included automatically
  4. #
  5. BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
  6. MOUSEKEY_ENABLE = no # Mouse keys(+4700)
  7. EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
  8. CONSOLE_ENABLE = yes # Console for debug(+400)
  9. COMMAND_ENABLE = yes # Commands for debug and configuration
  10. NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
  11. # BACKLIGHT_ENABLE = no # Disable keyboard backlight functionality
  12. MIDI_ENABLE = no # MIDI controls
  13. AUDIO_ENABLE = no # Audio output on port C6
  14. UNICODE_ENABLE = no # Unicode
  15. BLUETOOTH_ENABLE = no # Disable Bluetooth with the Adafruit EZ-Key HID
  16. RGBLIGHT_ENABLE = no # Disable RGB underlight
  17. RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lefkeyboards, not WS2812
  18. SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
  19. TAP_DANCE_ENABLE = no
  20. ISSI_ENABLE = no # If the I2C pullup resistors aren't install this must be disabled
  21. WATCHDOG_ENABLE = yes # Resets keyboard if matrix_scan isn't run every 250ms
  22. ifndef QUANTUM_DIR
  23. include ../../../../Makefile
  24. endif
  25. ifeq ($(strip $(ISSI_ENABLE)), yes)
  26. TMK_COMMON_DEFS += -DISSI_ENABLE
  27. endif
  28. ifeq ($(strip $(WATCHDOG_ENABLE)), yes)
  29. TMK_COMMON_DEFS += -DWATCHDOG_ENABLE
  30. endif
  31. # # Set the LFK78 hardware version. This is defined in rules.mk, but can be overidden here if desired
  32. # #
  33. # # RevB - first public release, uses atmega32u4, has audio, ISSI matrix split between RGB and backlight
  34. # # RevC/D - at90usb1286, no audio, ISSI device 0 is backlight, 4 is RGB
  35. # #
  36. # # Set to B, C or D
  37. # LFK_REV = D
  38. # ifeq ($(LFK_REV), B)
  39. # MCU = atmega32u4
  40. # else
  41. # MCU = at90usb1286
  42. # endif
  43. # OPT_DEFS += -DLFK_REV_$(LFK_REV)
  44. # OPT_DEFS += -DUSB_PRODUCT=\"LFK_Rev$(LFK_REV)\"