rules.mk 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 = no # Console for debug(+400)
  9. COMMAND_ENABLE = no # 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 = yes # Enable keyboard backlight functionality
  12. MIDI_ENABLE = no # MIDI controls
  13. AUDIO_ENABLE = yes # Audio output on port C6
  14. UNICODE_ENABLE = no # Unicode
  15. BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
  16. RGBLIGHT_ENABLE = yes # Enable 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 = yes # If the I2C pullup resistors aren't install this must be disabled
  21. WATCHDOG_ENABLE = no # Resets keyboard if matrix_scan isn't run every 250ms
  22. # Override the LFK87 hardware version.
  23. #
  24. # A - Green PCB. at90usb1286 Only 3 exist
  25. # B - We don't talk about RevB
  26. # C-D - Black PCB. at90usb646 First public release
  27. #
  28. # LFK_REV = C
  29. # ifeq ($(LFK_REV), A)
  30. # MCU = at90usb1286
  31. # OPT_DEFS += -DBOOTLOADER_SIZE=8192
  32. # else
  33. # MCU = at90usb646
  34. # OPT_DEFS += -DBOOTLOADER_SIZE=4096
  35. # endif
  36. # OPT_DEFS += -DLFK_TKL_REV_$(LFK_REV)