Other Parts Discussed in Thread: AM3358
Hi,
I am using AM335x board and TI RTOS SDK on windows host PC.
In GEL files whatever funtions are there, from where it is calling those functions. For example, StartUp() and OnTargetConnect().
Another thing is that after calling GEL_MapAddStr(0x80000000, 0, 0x40000000, "R|W", 0); , where it is going for definition?
In GEL File, one function is DDR_DataTransferCheck. Can I call this function in my main.c file to test the Power on Built test (PBIT) for external DDR3?
What are these function given below?
MMUConfigAndEnable();
CacheEnable(CACHE_ALL);
I want to write the data in RAM then how can I choose address in RAM?
I tried with below statements. In Disassembly window it should show data at particular below addresses but it is not showing. Data is printing on terminal. How can I confirm that it is writing to RAM only or working correctly?
*(unsigned int *)0x80004544 = 51;
*(unsigned int *)0x80004548 = 61;
unsigned int a,b;
a=*(unsigned int *)0x80004544;
b= *(unsigned int *)0x80004548;
ConsoleUtilsPrintf("a=%d, b=%d",a,b);
Regards
Gaurav