You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
962 B

  1. RGB_MATRIX_ENABLE = no
  2. CUSTOM_UNICODE_ENABLE = no
  3. CUSTOM_POINTING_DEVICE = no
  4. CUSTOM_SPLIT_TRANSPORT_SYNC = no
  5. ifeq ($(strip $(KEYBOARD)), bastardkb/charybdis/3x5/blackpill)
  6. # Bootloader selection
  7. BOOTLOADER := tinyuf2
  8. LTO_ENABLE := no
  9. AUDIO_SUPPORTED = yes
  10. AUDIO_ENABLE = yes
  11. AUDIO_DRIVER = pwm_hardware
  12. OVERLOAD_FEATURES = yes
  13. endif
  14. ifeq ($(strip $(KEYBOARD)), bastardkb/charybdis/3x5/v2/stemcell)
  15. OVERLOAD_FEATURES = yes
  16. endif
  17. ifeq ($(strip $(KEYBOARD)), bastardkb/charybdis/3x5/v2/splinky)
  18. OVERLOAD_FEATURES = yes
  19. endif
  20. ifeq ($(strip $(OVERLOAD_FEATURES)), yes)
  21. BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
  22. KEYBOARD_SHARED_EP = yes
  23. MOUSE_SHARED_EP = yes
  24. MOUSEKEY_ENABLE = yes
  25. NKRO_ENABLE = yes
  26. CONSOLE_ENABLE = yes
  27. RGB_MATRIX_ENABLE = yes
  28. AUTOCORRECT_ENABLE = yes
  29. CUSTOM_UNICODE_ENABLE = yes
  30. CUSTOM_POINTING_DEVICE = yes
  31. CUSTOM_SPLIT_TRANSPORT_SYNC = yes
  32. endif