This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

10 lines
222 B
Makefile

ENCODER_ENABLE = yes
OLED_DRIVER_ENABLE = no
# Setup so that OLED can be turned on/off easily
ifeq ($(strip $(OLED_DRIVER_ENABLE)), yes)
# Custom local font file
OPT_DEFS += -DOLED_FONT_H=\"common/glcdfont.c\"
endif