热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

ucos在任务中创建任务

在任务中创建任务:#defineSTARTUP_TASK_PRIO8#defineSTARTUP_TASK_STK_SIZE80voidSysTick_init(

  在任务中创建任务:

#define STARTUP_TASK_PRIO 8
#define STARTUP_TASK_STK_SIZE 80void SysTick_init ( void ) {SysTick_Config ( SystemCoreClock / OS_TICKS_PER_SEC );
}static OS_STK task_testled[STARTUP_TASK_STK_SIZE];
static OS_STK task_testluart[STARTUP_TASK_STK_SIZE];void TestUart ( void *p_arg ) {while ( 1 ) {printf ( "hello\r\n" );OSTimeDlyHMSM ( 0, 0, 2, 0 );}
}void TestLed ( void *p_arg ) {OSTaskCreate ( TestUart, ( void * ) 0, &task_testluart[STARTUP_TASK_STK_SIZE - 1], STARTUP_TASK_PRIO );while ( 1 ) {LED0 = !LED0;OSTimeDlyHMSM ( 0, 0, 0, 500 );}
}int main ( void ) {SysTick_init();LED_Init();uart_init ( 9600 );OSInit();OSTaskCreate ( TestLed, ( void * ) 0, &task_testled[STARTUP_TASK_STK_SIZE - 1], STARTUP_TASK_PRIO - 1 );OSStart();return 0;
}


推荐阅读
author-avatar
duangjai_602
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有