rules.mk 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
  2. MOUSEKEY_ENABLE = no # Mouse keys
  3. EXTRAKEY_ENABLE = yes # Audio control and System control
  4. CONSOLE_ENABLE = no # Console for debug
  5. COMMAND_ENABLE = no # Commands for debug and configuration
  6. NKRO_ENABLE = yes
  7. BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
  8. AUDIO_ENABLE = yes # Audio output
  9. RGBLIGHT_ENABLE = yes # Enable RGB underlight
  10. RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lefkeyboards, not WS2812
  11. SLEEP_LED_ENABLE = yes
  12. ISSI_ENABLE = yes # If the I2C pullup resistors aren't install this must be disabled
  13. WATCHDOG_ENABLE = no # Resets keyboard if matrix_scan isn't run every 250ms
  14. # Override the LFK87 hardware version.
  15. #
  16. # A - Green PCB. at90usb1286 Only 3 exist
  17. # B - We don't talk about RevB
  18. # C-D - Black PCB. at90usb646 First public release
  19. #
  20. # LFK_REV = C
  21. # ifeq ($(LFK_REV), A)
  22. # MCU = at90usb1286
  23. # OPT_DEFS += -DBOOTLOADER_SIZE=8192
  24. # else
  25. # MCU = at90usb646
  26. # OPT_DEFS += -DBOOTLOADER_SIZE=4096
  27. # endif
  28. # OPT_DEFS += -DLFK_TKL_REV_$(LFK_REV)