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.

12 lines
336 B

  1. CUSTOM_OLED_DRIVER ?= yes
  2. ifeq ($(strip $(OLED_ENABLE)), yes)
  3. ifeq ($(strip $(CUSTOM_OLED_DRIVER)), yes)
  4. OPT_DEFS += -DCUSTOM_OLED_DRIVER
  5. SRC += $(USER_PATH)/oled/oled_stuff.c
  6. endif
  7. ifeq ($(strip $(OLED_DISPLAY_TEST)), yes)
  8. OPT_DEFS += -DOLED_DISPLAY_TEST
  9. endif
  10. endif
  11. DEFERRED_EXEC_ENABLE = yes