溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

FreeRTOS軟件定時(shí)器apollo中斷狀態(tài)判斷的方法

發(fā)布時(shí)間:2022-04-08 09:08:10 來源:億速云 閱讀:204 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“FreeRTOS軟件定時(shí)器apollo中斷狀態(tài)判斷的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“FreeRTOS軟件定時(shí)器apollo中斷狀態(tài)判斷的方法”吧!

問題場(chǎng)景

開發(fā)中發(fā)現(xiàn)FreeRTOS軟件定時(shí)器不走了,具體表現(xiàn)在軟件定時(shí)器中斷進(jìn)不去。

分析問題

觀察發(fā)現(xiàn)只有在某個(gè)任務(wù)執(zhí)行期間,F(xiàn)reeRTOS的軟件定時(shí)器才會(huì)不走,其他任務(wù)執(zhí)行時(shí)正常,排查后是此任務(wù)的優(yōu)先級(jí)比定時(shí)器任務(wù)高,且占用時(shí)間比較長(zhǎng),導(dǎo)致任務(wù)切不出去。

解決問題

在FreeRTOSConfig.h中修改定時(shí)器任務(wù)優(yōu)先級(jí)為最高解決問題

FreeRTOS軟件定時(shí)器apollo中斷狀態(tài)判斷的方法

apollo中斷狀態(tài)判斷

在看apollo3 代碼時(shí)發(fā)現(xiàn)下面這個(gè)函數(shù)

void WsfSetOsSpecificEvent(void)
{
  if(xRadioTaskEventObject != NULL) 
  {
      BaseType_t xHigherPriorityTaskWoken, xResult;
      if(xPortIsInsideInterrupt() == pdTRUE) {
          // Send an event to the main radio task
          xHigherPriorityTaskWoken = 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發(fā)送一個(gè)事件標(biāo)志組,xPortIsInsideInterrupt這個(gè)函數(shù)判斷是否在中斷中,進(jìn)而調(diào)用判斷是否調(diào)用FromISR結(jié)尾的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表示當(dāng)前沒有中斷在運(yùn)行,非0表示正在運(yùn)行的中斷號(hào),即處于中斷中,所以要用FromISR結(jié)尾的api

到此,相信大家對(duì)“FreeRTOS軟件定時(shí)器apollo中斷狀態(tài)判斷的方法”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI