diff options
author | Ryan <fauxpark@gmail.com> | 2021-06-10 17:16:09 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 17:16:09 +1000 |
commit | b2fdd4874434ef6921a436fc82d9f24909c726f8 (patch) | |
tree | 0348596d5938326e95c09270d209556bbe60ba72 /common_features.mk | |
parent | cfc7ee61c5cb9822a1195028681b928bbeac2fd3 (diff) | |
download | qmk_firmware-b2fdd4874434ef6921a436fc82d9f24909c726f8.tar.gz qmk_firmware-b2fdd4874434ef6921a436fc82d9f24909c726f8.zip |
Add ST7565 LCD driver (#13089)
Co-authored-by: Joakim Tufvegren <jocke@barbanet.com>
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index 37ce928e2..b259af46c 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -587,6 +587,14 @@ ifeq ($(strip $(OLED_DRIVER_ENABLE)), yes) | |||
587 | SRC += oled_driver.c | 587 | SRC += oled_driver.c |
588 | endif | 588 | endif |
589 | 589 | ||
590 | ifeq ($(strip $(ST7565_ENABLE)), yes) | ||
591 | OPT_DEFS += -DST7565_ENABLE | ||
592 | COMMON_VPATH += $(DRIVER_PATH)/oled # For glcdfont.h | ||
593 | COMMON_VPATH += $(DRIVER_PATH)/lcd | ||
594 | QUANTUM_LIB_SRC += spi_master.c | ||
595 | SRC += st7565.c | ||
596 | endif | ||
597 | |||
590 | include $(DRIVER_PATH)/qwiic/qwiic.mk | 598 | include $(DRIVER_PATH)/qwiic/qwiic.mk |
591 | 599 | ||
592 | ifeq ($(strip $(UCIS_ENABLE)), yes) | 600 | ifeq ($(strip $(UCIS_ENABLE)), yes) |