Skip to content

Added openFLASH option for ESP8266

Compare
Choose a tag to compare
@bitbank2 bitbank2 released this 18 Dec 11:48
· 39 commits to master since this release

My gif.open() function was using memcpy to access the source data and on the ESP32, this worked because it recognizes FLASH vs RAM addresses. On the 8266 the address spaces overlap and this was causing problems, so I added gif.openFLASH() which uses memcpy_P to correctly access the FLASH address space.