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
Originally posted by Mobin-Mortazavi June 13, 2023
I wrote a code that easily fits in STM32F103RET6 that has only 512KB of flash , But when I use same arrays in the STM32H743IIT6 it says :
" sketch_jun12b.ino.elf section .rodata' will not fit in region FLASH' "
and also :
" arm-none-eabi/bin/ld.exe: region `FLASH' overflowed by 32888 bytes "
when I reduce Array size a little bit , it says that my code only took 6% of the Flash
My array is a 480*72 uint16 image in the flash , Like this :
const uint16_t image[34560] PROGMEM
The text was updated successfully, but these errors were encountered:
Discussed in #2039
Originally posted by Mobin-Mortazavi June 13, 2023
I wrote a code that easily fits in STM32F103RET6 that has only 512KB of flash , But when I use same arrays in the STM32H743IIT6 it says :
" sketch_jun12b.ino.elf section
.rodata' will not fit in region
FLASH' "and also :
" arm-none-eabi/bin/ld.exe: region `FLASH' overflowed by 32888 bytes "
when I reduce Array size a little bit , it says that my code only took 6% of the Flash
My array is a 480*72 uint16 image in the flash , Like this :
const uint16_t image[34560] PROGMEM
The text was updated successfully, but these errors were encountered: