rules.mk 831 B

12345678910111213141516171819202122232425
  1. # Overridden build options from rev1 & rev2
  2. # RGB Options
  3. RGBLIGHT_ENABLE = no # Enable global lighting effects. Do not enable with RGB Matrix
  4. RGBLIGHT_ANIMATIONS = no # LED animations
  5. LED_MIRRORED = no # Mirror LEDs across halves (enable DIP 1 on slave, and DIP 2 and 3 on master)
  6. RGB_MATRIX_ENABLE = WS2812 # Enable per-key coordinate based RGB effects. Do not enable with RGBlight
  7. FULLHAND_ENABLE = yes # Enables the additional 24 Full Hand LEDs
  8. # Misc
  9. OLED_DRIVER_ENABLE = yes # Enable the OLED Driver
  10. # Not using the encoder for rev1
  11. ifeq ($(strip $(KEYBOARD)), rgbkb/sol/rev1)
  12. ENCODER_ENABLE = no
  13. RGB_OLED_MENU = no
  14. else
  15. ENCODER_ENABLE = yes
  16. RGB_OLED_MENU = 0
  17. endif
  18. # Do not edit past here
  19. include keyboards/$(KEYBOARD)/post_rules.mk