Other Parts Discussed in Thread: SYSBIOS
Tool/software: TI-RTOS
Hi,
I try to create a new application to blink the LEDs on my evaluation board with AM6548 IDK.
The application should be RTOS based and run on the first R5.
Problem: If I follow the steps 
I can't configure the GPIO-Pins, since I can not access the MMR registers.
You can see on the upper right side at Memory Browser 0x108000 "????????" for CTRL_MMR0_CFG0_CTRLMMR_OBSCLK_CTRL. Later in my application, I get a exception when trying to access this address.
After debugging around, I found the point where 0x108000 where not accessible anymore:
ti_sysbios_family_arm_v7r_Cache_startup__I();
Cache_enableL1d(); /* Enable L1D Cache */ <- After this call, 0x108000 is not read/writeable
I compared this with the functional diag LED demonstration "led_diagExample_am65xx_idk_armv7.out". This example works, since it uses other "startup" code (packages/ti/csl/arch/r5/src/startup/startup.c".
Why is the initialization of the R5 with RTOS not correct? Do I miss something here?
