Hi,
I am trying to run a http client program. I am not getting because of the increased number of variables or what reasons... the memory is being allocated at the address starting 0x00000000. And also normal address assignment operations are not working... For example
char databuff[512];
main()
{
char* buffptr;
buffptr = databuff;
}
if I execute the above statements, the address of the databuff is not being allocated to buffptr. Some other address is being allocated. I tried increasing the length of the data segment in the linker configuration file cc3200v1p32.cmd to 0x25000, but it is not working. When I reduce the number of variables initialized the code is working fine.. I guess this is because of the memory overflow because of the other variables initialized. But I am not getting how to deal with this problem.
can anyone kindly help me how to proceed.