FreeRTOS软件定时器apollo中断状态判断
目录
- 问题场景
- 分析问题
- 解决问题
- apollo中断状态判断
问题场景 开发中发现FreeRTOS软件定时器不走了,具体表现在软件定时器中断进不去。
【FreeRTOS软件定时器apollo中断状态判断】
分析问题 观察发现只有在某个任务执行期间,FreeRTOS的软件定时器才会不走,其他任务执行时正常,排查后是此任务的优先级比定时器任务高,且占用时间比较长,导致任务切不出去。
解决问题 在FreeRTOSConfig.h中修改定时器任务优先级为最高解决问题
文章图片
apollo中断状态判断 在看apollo3 代码时发现下面这个函数
void WsfSetOsSpecificEvent(void){if(xRadioTaskEventObject != NULL) {BaseType_t xHigherPriorityTaskWoken, xResult; if(xPortIsInsideInterrupt() == pdTRUE) {// Send an event to the main radio taskxHigherPriorityTaskWoken = pdFALSE; xResult = xEventGroupSetBitsFromISR(xRadioTaskEventObject, 1,&xHigherPriorityTaskWoken); // If the radio task is higher-priority than the context we're currently// running from, we should yield now and run the radio task.//if ( xResult != pdFAIL ){portYIELD_FROM_ISR(xHigherPriorityTaskWoken); }}else {xResult = xEventGroupSetBits(xRadioTaskEventObject, 1); //// If the radio task is higher priority than the context we're currently// running from, we should yield now and run the radio task.//if ( xResult != pdFAIL ){portYIELD(); }}}}
这是FreeRTOS发送一个事件标志组,
xPortIsInsideInterrupt
这个函数判断是否在中断中,进而调用判断是否调用FromISR结尾的api,下面看下原理static portFORCE_INLINE BaseType_t xPortIsInsideInterrupt( void ){uint32_t ulCurrentInterrupt; BaseType_t xReturn; /* Obtain the number of the currently executing interrupt. */ __asm {mrs ulCurrentInterrupt, ipsr } if( ulCurrentInterrupt == 0 ) {xReturn = pdFALSE; } else {xReturn = pdTRUE; } return xReturn; }
读IPSR寄存器,0表示当前没有中断在运行,非0表示正在运行的中断号,即处于中断中,所以要用FromISR结尾的api
以上就是FreeRTOS软件定时器apollo中断状态判断的详细内容,更多关于FreeRTOS定时器apollo中断判断的资料请关注脚本之家其它相关文章!
推荐阅读
- FreeRTOS动态内存分配管理heap_2示例
- 使用FreeRTOS遇到死等异常的解决
- RENIX软件V6板卡速率设置——网络测试仪实操
- FreeRTOS实时操作系统空闲任务的阻塞延时实现
- 高中生计算机创新大赛作品,2017 第十届“英特尔杯”全国大学生软件创新大赛获奖作品...
- python|用python玩转办公软件(pandas数据分析)入门
- 聊聊软件开发的REP、CCP、CRP原则
- FreeRTOS实时操作系统的任务概要讲解
- FreeRTOS实时操作系统的任务创建和删除
- FreeRTOS任务控制API函数的功能分析