int LED1_Control(void)
{
LED1_Run_thread = /* 线程控制块指针 */
rt_thread_create( "led1", /* 线程名字 */
LED1_Run_thread_entry, /* 线程入口函数 */
RT_NULL, /* 线程入口函数参数 */
512, /* 线程栈大小 */
3, /* 线程的优先级 */
20); /* 线程时间片 */
if(LED1_Run_thread != RT_NULL)
{
rt_thread_startup(LED1_Run_thread);
rt_kprintf("thread LED1_Run_thread createdn");
}
return RT_NULL;
}
INIT_BOARD_EXPORT(LED1_Control);
2、A
3、A
int LED1_Control(void)
{
LED1_Run_thread = /* 线程控制块指针 */
rt_thread_create( "led1", /* 线程名字 */
LED1_Run_thread_entry, /* 线程入口函数 */
RT_NULL, /* 线程入口函数参数 */
512, /* 线程栈大小 */
3, /* 线程的优先级 */
20); /* 线程时间片 */
if(LED1_Run_thread != RT_NULL)
{
rt_thread_startup(LED1_Run_thread);
rt_kprintf("thread LED1_Run_thread createdn");
}
return RT_NULL;
}
INIT_BOARD_EXPORT(LED1_Control);
2、A
3、A
1
举报