This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler/TMDSLCDK138: Boot OMAPL138 StarterWare application

Part Number: TMDSLCDK138
Other Parts Discussed in Thread: OMAPL138, OMAP-L138

Tool/software: TI C/C++ Compiler

Dear all:

  According to this doc. under below:

  https://processors.wiki.ti.com/index.php?oldid=221933&title=OMAPL138_StarterWare_Booting_And_Flashing&keyMatch=OMAPL138%2520STARTERWARE&tisearch=Search-CN-everything

 when  I Done the step of picture under below。and rebuild  arm application <uart_armv5_omapl138_evmOMAPL138>   to generate uart.out file.

 was excluted successful under CCS

when if flash uart.bin to NAND by sfh_OMAPL138.exe tool,bootloader is run,but  uart application start failed;

 BootLoader codes under below:

/******************************************************************************
** Global Variable Definitions
*******************************************************************************/

unsigned int entryPoint = 0xc1080000; 
unsigned int DspEntryPoint = 0xc009d000; 

int main(void)
{
/* Configures PLL and DDR controller*/
BlPlatformConfig();

UARTPuts("StarterWare ", -1);
UARTPuts(deviceType, -1);
UARTPuts(" Boot Loader\n\r", -1);

/* Copies application from non-volatile flash memory to RAM */
ImageCopy();

UARTPuts("Jumping to StarterWare Application...\r\n\n", -1);

/* Do any post-copy config before leaving boot loader */
BlPlatformConfigPostBoot();

/* Giving control to the application */
appEntry = (void (*)(void)) entryPoint;
UARTPuts("Running arm Application...\r\n\n", -1); 
(*appEntry)( );

return 0;
}

Power on and booting, console print like this :

Jumping to StarterWare Application...

Running DSP Application...
Running arm Application...

I want to know how to solve this problem?  

Thanks!