Hi,
I'm trying to store an image in the ESP32 RAM in 565 RGB format.
Using:
for a 240 x 135 pixel image works fine but if I increase the the size I get to a point where I get an error like:
does anyone know if there is a way around this or possibly a better way to store the image?
Thanks
I'm trying to store an image in the ESP32 RAM in 565 RGB format.
Using:
B4X:
Dim ImageStore(32400) As Int
B4X:
.........\B4RALA~4\Objects\bin/src.ino.elf section `.dram0.bss' will not fit in region `dram0_0_seg'
........./xtensa-esp32-elf-gcc/1.22.0-80-g6c4433a-5.2.0/bin/../lib/gcc/xtensa-esp32-elf/5.2.0/../../../../xtensa-esp32-elf/bin/ld.exe: DRAM segment data does not fit.
........./xtensa-esp32-elf-gcc/1.22.0-80-g6c4433a-5.2.0/bin/../lib/gcc/xtensa-esp32-elf/5.2.0/../../../../xtensa-esp32-elf/bin/ld.exe: region `dram0_0_seg' overflowed by 5704 bytes
Thanks