blob: 9bb8b8cd0d9b5a5a3b3df0ec84d3c73820e2264e (
plain)
1
2
3
4
5
6
7
8
9
|
ENCODER_ENABLE = yes
OLED_ENABLE = no
# Setup so that OLED can be turned on/off easily
ifeq ($(strip $(OLED_ENABLE)), yes)
# Custom local font file
OPT_DEFS += -DOLED_FONT_H=\"common/glcdfont.c\"
endif
|