You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
503 B

  1. # Some ID67 variants (v1 base build & "Bestype") have a solid back plate,
  2. # this enables switching off thoes LEDs
  3. # Usage: `make idobao/id67:default UNDERGLOW=off`
  4. ifeq ($(findstring off,$(UNDERGLOW)), off)
  5. $(info ** UNDERGLOW OFF)
  6. OPT_DEFS += -DID67_DISABLE_UNDERGLOW
  7. else ifeq ($(findstring no,$(UNDERGLOW)), no)
  8. $(info ** NO UNDERGLOW)
  9. OPT_DEFS += -DID67_DISABLE_UNDERGLOW
  10. else ifeq ($(findstring 0,$(UNDERGLOW)), 0)
  11. $(info ** Nil UNDERGLOW)
  12. OPT_DEFS += -DID67_DISABLE_UNDERGLOW
  13. endif