You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So issue is mainly that Roger's core support has not been added.
Title should be changed to something like: Add rogerclarkmelbourne/Arduino_STM32 support
in these two lines:
TFT/src/utility/Adafruit_ST7735.h
Line 143 in 6941d00
TFT/src/utility/glcdfont.c
Line 2 in 6941d00
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)
The text was updated successfully, but these errors were encountered: