【FreeRTOS】小白进阶之任务如何共用FreeRTOS软件定时器回调函数(二)

举报
产品人卫朋 发表于 2021/10/30 00:42:56 2021/10/30
【摘要】 介绍两个定时器任务如何通过定时器 handle 共用一个回调函数。 1、头文件声明和函数定义 #include "FreeRTOS.h"#include "task.h"#include "timers.h"#include "supporting_functions.h" #define mainONE_SHOT_TIMER_PE...

介绍两个定时器任务如何通过定时器 handle 共用一个回调函数。

1、头文件声明和函数定义


  
  1. #include "FreeRTOS.h"
  2. #include "task.h"
  3. #include "timers.h"
  4. #include "supporting_functions.h"
  5. #define mainONE_SHOT_TIMER_PERIOD ( pdMS_TO_TICKS( 3333UL ) )
  6. #define mainAUTO_RELOAD_TIMER_PERIOD ( pdMS_TO_TICKS( 500UL ) )
  7. // 定时器共用回调函数
  8. static void prvTimerCallback( TimerHandle_t xTimer );
  9. // 定时器 handle 定义
  10. static TimerHandle_t xAutoReloadTimer, xOneShotTimer;

2、启动定时任务


  
  1. int main( void )
  2. {
  3. BaseType_t xTimer1Started, xTimer2Started;
  4. // 定义 one-shot 定时任务
  5. xOneShotTimer = xTimerCreate( "OneShot",
  6. mainONE_SHOT_TIMER_PERIOD,
  7. pdFALSE,
  8. 0,
  9. prvTimerCallback );
  10. // 定义自动重载定时任务
  11. xAutoReloadTimer = xTimerCreate( "AutoReload",
  12. mainAUTO_RELOAD_TIMER_PERIOD,
  13. pdTRUE,
  14. 0,
  15. prvTimerCallback );
  16. if( ( xOneShotTimer != NULL ) && ( xAutoReloadTimer != NULL ) )
  17. {
  18. // 启动定时任务
  19. xTimer1Started = xTimerStart( xOneShotTimer, 0 );
  20. xTimer2Started = xTimerStart( xAutoReloadTimer, 0 );
  21. if( ( xTimer1Started == pdPASS ) && ( xTimer2Started == pdPASS ) )
  22. {
  23. /* Start the scheduler. */
  24. vTaskStartScheduler();
  25. }
  26. }
  27. for( ;; );
  28. return 0;
  29. }

3、软件定时器回调函数


  
  1. static void prvTimerCallback( TimerHandle_t xTimer )
  2. {
  3. TickType_t xTimeNow;
  4. uint32_t ulExecutionCount;
  5. ulExecutionCount = ( uint32_t ) pvTimerGetTimerID( xTimer );
  6. ulExecutionCount++;
  7. vTimerSetTimerID( xTimer, ( void * ) ulExecutionCount );
  8. xTimeNow = xTaskGetTickCount();
  9. if( xTimer == xOneShotTimer )
  10. {
  11. vPrintStringAndNumber( "One-shot timer callback executing", xTimeNow );
  12. }
  13. else
  14. {
  15. vPrintStringAndNumber( "Auto-reload timer callback executing", xTimeNow );
  16. if( ulExecutionCount == 5 )
  17. {
  18. xTimerStop( xTimer, 0 );
  19. }
  20. }
  21. }

 

文章来源: blog.csdn.net,作者:简一商业,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/liwei16611/article/details/82590026

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。