I seem to be bumping against the memory limit for the TM4C, but it doesn't seem like I should be.
If I do:
extern char xmlBuffer[12000];
and I fill it up and print to console, it stops.
If I do:
_u8 *xmlResponse = (_u8*) malloc (1200);
it also stops printing to the UART.
It handles up to around _u8 *xmlResponse = (_u8*) malloc (1000);
Am I missing something? I would think there would be more memory available.


