예제 #1
0
void rt_init_thread_entry(void* parameter)
{
    rt_hw_userled_init();

	/* init finsh */
#ifdef RT_USING_FINSH
    finsh_system_init();
#endif /* RT_USING_FINSH */
}
예제 #2
0
void rt_init_thread_entry(void* parameter)
{    
     /* initialization RT-Thread Components */
#ifdef RT_USING_COMPONENTS_INIT
    rt_components_init();
#endif
    
    rt_hw_userled_init();
    
}