blob: f2d43fa6ac44007b939f516e21fa38915fa01f2b (
plain)
1
2
3
4
5
6
7
8
|
# some (if not most) Montex have a solid back plate,
# this enables switching off the bottom facing LEDs
# Usage: `make idobao/montex/v2:default UNDERGLOW=off`
UNDERGLOW ?= yes
ifneq ($(strip $(UNDERGLOW)), yes)
OPT_DEFS += -DID27_DISABLE_UNDERGLOW
endif
|