adafruit / Adafruit-ST7735-Library

This is a library for the Adafruit 1.8" SPI display http://www.adafruit.com/products/358 and http://www.adafruit.com/products/618
https://learn.adafruit.com/1-8-tft-display
564 stars 305 forks source link

Support for stm32duino #156

Open BugerDread opened 2 years ago

BugerDread commented 2 years ago

I changed types of variables used to specify IO pins such as DC, CS, RST, MISO, CLK from int8_t to int16_t because for example on bluepill PA4 = 196, PB0 = 200, PB1 = 201 and such numbers cant fit into int8_t (that holds +-127 because of sign) and this cause the library doesnt work with stm32duino / bluepill (the RST/DC/CS pins does not output any signal to LCD). It works perfectly with int16_t.

Tested using https://github.com/stm32duino/Arduino_Core_STM32 version 2.1.0

the Adafruit-GFX-Library needs to be modified in similar way, will put another pull request for this in a moment

not tested with other platforms like AVR or ESP because I dont have such HW just now, tested using stm32f103c8 bluepill, also tested that the "graphic test" example compiles wo errors with avr / esp8266 board selected

BugerDread commented 2 years ago

https://github.com/adafruit/Adafruit-GFX-Library/pull/365 - GFX lib PR