don't do the OLED stuff for Planck

This commit is contained in:
Christoph Cullmann 2024-09-23 01:25:37 +02:00
parent 1572a1d707
commit 9a5daf3e45
No known key found for this signature in database
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,6 @@
# set flags we check in common settings
OLED_ENABLE = yes
# include common settings
ROOT_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
include ${ROOT_DIR}../../../../rules.mk

View file

@ -13,9 +13,11 @@ SPACE_CADET_ENABLE = no
# add achordion to improve home row modifiers
SRC += features/achordion.c
# add bongocat & luna for OLED
SRC += features/oled_bongocat.c
SRC += features/oled_luna.c
# add bongocat & luna for OLEDs
ifeq ($(strip $(OLED_ENABLE)), yes)
SRC += features/oled_bongocat.c
SRC += features/oled_luna.c
endif
# good optimizations
LTO_ENABLE = yes