rules.mk 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Set the LFK87 hardware version.
  2. #
  3. # A - Green PCB. at90usb1286 Only 3 exist
  4. # B - We don't talk about RevB
  5. # C-D - Black PCB. at90usb646 First public release
  6. #
  7. LFK_REV = C
  8. ifeq ($(LFK_REV), A)
  9. MCU = at90usb1286
  10. else
  11. MCU = at90usb646
  12. endif
  13. BOOTLOADER = atmel-dfu
  14. OPT_DEFS += -DLFK_TKL_REV_$(LFK_REV)
  15. # Extra source files for IS3731 lighting
  16. SRC = TWIlib.c issi.c lighting.c
  17. LAYOUTS = tkl_ansi tkl_iso
  18. # Build Options
  19. # change to "no" to disable the options, or define them in the Makefile in
  20. # the appropriate keymap folder that will get included automatically
  21. #
  22. BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
  23. MOUSEKEY_ENABLE = no # Mouse keys(+4700)
  24. EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
  25. CONSOLE_ENABLE = no # Console for debug(+400)
  26. COMMAND_ENABLE = no # Commands for debug and configuration
  27. NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
  28. BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
  29. MIDI_ENABLE = no # MIDI controls
  30. AUDIO_ENABLE = yes # Audio output on port C6
  31. UNICODE_ENABLE = no # Unicode
  32. BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
  33. RGBLIGHT_ENABLE = yes # Enable RGB underlight
  34. RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lefkeyboards, not WS2812
  35. SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
  36. TAP_DANCE_ENABLE = no
  37. ISSI_ENABLE = yes # If the I2C pullup resistors aren't install this must be disabled
  38. WATCHDOG_ENABLE = no # Resets keyboard if matrix_scan isn't run every 250ms
  39. ifeq ($(strip $(ISSI_ENABLE)), yes)
  40. OPT_DEFS += -DISSI_ENABLE
  41. endif
  42. ifeq ($(strip $(WATCHDOG_ENABLE)), yes)
  43. OPT_DEFS += -DWATCHDOG_ENABLE
  44. endif