-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Labels
topic: codeRelated to content of the project itselfRelated to content of the project itselftype: enhancementProposed improvementProposed improvement
Description
in these two lines:
TFT/src/utility/Adafruit_ST7735.h
Line 143 in 6941d00
defined(ARDUINO_ARCH_STM32) |
Line 2 in 6941d00
!defined(ARDUINO_ARCH_STM32) |
there is a test for definition or missing definition ARDUINO_ARCH_STM32, and it is not enough.
I had to add ARDUINO_ARCH_STM32F1 too.
Could you change those lines please?
for the glcdfont.c
instead of
!defined(ARDUINO_ARCH_STM32)
use
!defined(ARDUINO_ARCH_STM32) && !defined(ARDUINO_ARCH_STM32F1)
for the Adafruit_ST7735.h:
instead of defined(ARDUINO_ARCH_STM32)
use
defined(ARDUINO_ARCH_STM32) || defined(ARDUINO_ARCH_STM32F1)
Metadata
Metadata
Assignees
Labels
topic: codeRelated to content of the project itselfRelated to content of the project itselftype: enhancementProposed improvementProposed improvement