logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

rules.mk (1440B)


  1. MOUSEKEY_ENABLE = no # Mouse keys
  2. EXTRAKEY_ENABLE = yes # Audio control and System control
  3. CONSOLE_ENABLE = no # Console for debug
  4. COMMAND_ENABLE = no # Commands for debug and configuration
  5. NKRO_ENABLE = no
  6. RGBLIGHT_ENABLE = yes # Enable global lighting effects. Do not enable with RGB Matrix
  7. RGBLIGHT_SPLIT_ENABLE = no # Split RGBLight Support
  8. RGB_MATRIX_ENABLE = no # Enable per-key coordinate based RGB effects. Do not enable with RGBlight
  9. RGB_MATRIX_KEYPRESSES = no # Enable reactive per-key effects.
  10. RGBLIGHT_FULL_POWER = yes # Allow maximum RGB brightness. Otherwise, limited to a safe level for a normal USB-A port
  11. UNICODE_ENABLE = no # Unicode
  12. SWAP_HANDS_ENABLE = no # Enable one-hand typing
  13. ENCODER_ENABLE = yes # Enable rotary encoder
  14. OLED_ENABLE = no # Enable the OLED Driver
  15. IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone)
  16. LTO_ENABLE = no # Enable optimizations to reduce firmware size. Also disables action macros and functions.
  17. # Do not edit past here
  18. ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
  19. OPT_DEFS += -DIOS_DEVICE_ENABLE
  20. else ifeq ($(strip $(RGBLIGHT_FULL_POWER)), yes)
  21. OPT_DEFS += -DRGBLIGHT_FULL_POWER
  22. endif
  23. ifeq ($(strip $(RGB_MATRIX_KEYPRESSES)), yes)
  24. OPT_DEFS += -DRGB_MATRIX_KEYPRESSES
  25. endif
  26. ifeq ($(strip $(RGBLIGHT_SPLIT_ENABLE)), yes)
  27. OPT_DEFS += -DRGBLIGHT_SPLIT_ENABLE
  28. endif