Part Number: TI-RTOS
Tool/software: TI-RTOS
Hi there,
I am using the Bootloader located in the starterware folder of pdk_am335x_1_0_7 and running a simple rtos application from SPI Flash on my phycoreAm335x SOM.
After the image load to RAM it takes about then seconds to reach the GPIO_Toggle function at the beginning of my code which lits a LED, while within a debugging session the application runs instantly and the LED turns on...
Is there sth. to consider in the case of using the bootloader with a rtos application?
Codesnippet:
int main()
{
/* Call board init functions */
Board_initCfg boardCfg;
boardCfg = BOARD_INIT_PINMUX_CONFIG |
BOARD_INIT_MODULE_CLOCK;// | BOARD_INIT_UART_STDIO;
//boardCfg = BOARD_INIT_ALL;
Board_init(boardCfg);
//Network_init();
GPIO_init();
GPIO_toggle(USER_LED0); //ten seconds till the LED is lit...
...
BIOS_start();
return -1;
}
Regards,
Jim