I haven't had the need in a while to use malloc() in my applications. I was using it to test something, but I get linker errors 'No space in execution regions...(.data)'. I get this even when I do a malloc(1).
The startup file has a heap size of 0x2000, so I think I'm missing some other setting. I wanted to use malloc to create and free 1600 bytes over and over, so as not to create an array (which actually compiles and runs by the way - so I'm not out of RAM space anyway). So, what other settings do I need to look at?
Thanks,
Sutton