logo

qmk_firmware

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

post_rules.mk (977B)


  1. IOS_DEVICE_ENABLE ?= no # Limit max brightness to connect to IOS device (iPad,iPhone)
  2. RGBLIGHT_FULL_POWER ?= no # Allow maximum RGB brightness for RGBLIGHT or RGB_MATRIX. Otherwise, limited to a safe level for a normal USB-A port
  3. RGB_MATRIX_KEYPRESSES ?= no # Enable reactive per-key effects.
  4. RGB_MATRIX_FRAMEBUFFER_EFFECTS ?= no # Enable frame buffer effects like the typing heatmap.
  5. LED_MIRRORED ?= yes # Mirror LEDs across halves (enable DIP 1 on slave, and DIP 2 and 3 on master)
  6. ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
  7. OPT_DEFS += -DIOS_DEVICE_ENABLE
  8. else ifeq ($(strip $(RGBLIGHT_FULL_POWER)), yes)
  9. OPT_DEFS += -DRGBLIGHT_FULL_POWER
  10. endif
  11. ifeq ($(strip $(RGB_MATRIX_KEYPRESSES)), yes)
  12. OPT_DEFS += -DRGB_MATRIX_KEYPRESSES
  13. endif
  14. ifeq ($(strip $(RGB_MATRIX_FRAMEBUFFER)), yes)
  15. OPT_DEFS += -DRGB_MATRIX_FRAMEBUFFER_EFFECTS
  16. endif
  17. ifeq ($(strip $(LED_MIRRORED)), yes)
  18. OPT_DEFS += -DLED_MIRRORED
  19. endif