Overflow memory
Posted: Mon Mar 31, 2014 1:33 pm
Hi guys,
I've been playing around with making the altitude hold function run on a fuzzy logic engine instead of using PID. I've ran into this error.
My understanding is that everything I write is getting plopped into the RAM region because its undefined.
Could I specify my variables in a way they get put into the flash so it fits? Or maybe can I extend this area to have more space in the RAM...
doddz
I've been playing around with making the altitude hold function run on a fuzzy logic engine instead of using PID. I've ran into this error.
Code: Select all
/home/bitcraze/bin/gcc-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/4.7.3/../../../../arm-none-eabi/bin/ld: cflie.elf section `.bss' will not fit in region `RAM'
/home/bitcraze/bin/gcc-arm-none-eabi/bin/../lib/gcc/arm-none-eabi/4.7.3/../../../../arm-none-eabi/bin/ld: region `RAM' overflowed by 388 bytes
Could I specify my variables in a way they get put into the flash so it fits? Or maybe can I extend this area to have more space in the RAM...
doddz