Hi All,
Recently , i get to play with CC3200 LP on the example application on WLAN_Station. In the example , I try to add in in UIA support (Log_print) by updating the cfg file.
First during building , the compiler complain about insuffcient memory , so i manual update the cc3200v1p32.cmd file as below. I rebuild the program , and everything was fine , however when i start running the program, it hang.
kindly advise why is it so. have check the .map file and do not see any conflict . The memory section i have set is also within 256Kb..... please help.
MEMORY
{
/* Application uses internal RAM for program and data */
// SRAM_CODE (RWX) : origin = 0x20004000, length = 0x12FFF
// SRAM_DATA (RWX) : origin = 0x20017000, length = 0x19000
// this is what i modified to resolve memory error.
SRAM_CODE (RWX) : origin = 0x20004000, length = 0x14FFF
SRAM_DATA (RWX) : origin = 0x20019000, length = 0x19000
}