blob: 32832a65b2ef7730dfb4db8121005339daf6b1e5 (
plain)
1
2
3
4
5
6
7
8
|
# Some ID67 variants (v1 base build & "Bestype") have a solid back plate,
# this enables switching off thoes LEDs
# Usage: `make idobao/id67:default UNDERGLOW=off`
UNDERGLOW ?= yes
ifneq ($(strip $(UNDERGLOW)), yes)
OPT_DEFS += -DID67_DISABLE_UNDERGLOW
endif
|