0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內(nèi)不再提示

STM32F1兩個USB中斷入口詳解

CHANBAEK ? 來源:一個早起的程序員 ? 作者:一個早起的程序員 ? 2023-07-24 11:12 ? 次閱讀

1 STM32F1兩個USB中斷入口

STM32中斷入口有兩個,分別是USB_HP_CAN1_TX_IRQHandler和USB_LP_CAN1_RX0_IRQHandler。

其中USB_Istr函數(shù)調(diào)用了CTR_LP函數(shù),代碼如下。

/*******************************************************************************
* Function Name  : USB_HP_CAN1_TX_IRQHandler
* Description    : This function handles USB High Priority or CAN TX interrupts
*                  requests.
* Input          : None
* Output         : None
* Return         : None
*******************************************************************************/
void USB_HP_CAN1_TX_IRQHandler(void)
{
  CTR_HP();
}

/*******************************************************************************
* Function Name  : USB_LP_CAN1_RX0_IRQHandler
* Description    : This function handles USB Low Priority or CAN RX0 interrupts
*                  requests.
* Input          : None
* Output         : None
* Return         : None
*******************************************************************************/
void USB_LP_CAN1_RX0_IRQHandler(void)
{
  USB_Istr();
}

2 CTR_LP

CTR_LP為低優(yōu)先級端點傳輸正常時的中斷服務函數(shù),控制傳輸只能在CTR_LP里面處理,代碼如下。

/*******************************************************************************
* Function Name  : CTR_LP.
* Description    : Low priority Endpoint Correct Transfer interrupt's service
*                  routine.
* Input          : None.
* Output         : None.
* Return         : None.
*******************************************************************************/
void CTR_LP(void)
{
  uint32_t wEPVal = 0;
  /* stay in loop while pending ints */
  while (((wIstr = _GetISTR()) & ISTR_CTR) != 0)
  {
    _SetISTR((uint16_t)CLR_CTR); /* clear CTR flag */
    /* extract highest priority endpoint number */
    EPindex = (uint8_t)(wIstr & ISTR_EP_ID);
    if (EPindex == 0)
    {
      /* Decode and service control endpoint interrupt */
      /* calling related service routine */
      /* (Setup0_Process, In0_Process, Out0_Process) */

      /* save RX & TX status */
      /* and set both to NAK */
      SaveRState = _GetEPRxStatus(ENDP0);
      SaveTState = _GetEPTxStatus(ENDP0);
      _SetEPRxStatus(ENDP0, EP_RX_NAK);
      _SetEPTxStatus(ENDP0, EP_TX_NAK);


      /* DIR bit = origin of the interrupt */

      if ((wIstr & ISTR_DIR) == 0)
      {
        /* DIR = 0 */

        /* DIR = 0      = > IN  int */
        /* DIR = 0 implies that (EP_CTR_TX = 1) always  */


        _ClearEP_CTR_TX(ENDP0);
        In0_Process();

           /* before terminate set Tx & Rx status */
          _SetEPRxStatus(ENDP0, SaveRState);
          _SetEPTxStatus(ENDP0, SaveTState);
          return;
      }
      else
      {
        /* DIR = 1 */

        /* DIR = 1 & CTR_RX       = > SETUP or OUT int */
        /* DIR = 1 & (CTR_TX | CTR_RX) = > 2 int pending */

        wEPVal = _GetENDPOINT(ENDP0);
        if ((wEPVal & EP_CTR_TX) != 0)
        {
          _ClearEP_CTR_TX(ENDP0);
          In0_Process();
          /* before terminate set Tx & Rx status */
          _SetEPRxStatus(ENDP0, SaveRState);
          _SetEPTxStatus(ENDP0, SaveTState);
          return;
        }
        else if ((wEPVal &EP_SETUP) != 0)
        {
          _ClearEP_CTR_RX(ENDP0); /* SETUP bit kept frozen while CTR_RX = 1 */
          Setup0_Process();
          /* before terminate set Tx & Rx status */
          _SetEPRxStatus(ENDP0, SaveRState);
          _SetEPTxStatus(ENDP0, SaveTState);
          return;
        }

        else if ((wEPVal & EP_CTR_RX) != 0)
        {
          _ClearEP_CTR_RX(ENDP0);
          Out0_Process();
          /* before terminate set Tx & Rx status */
          _SetEPRxStatus(ENDP0, SaveRState);
          _SetEPTxStatus(ENDP0, SaveTState);
          return;
        }
      }
    }/* if(EPindex == 0) */
    else
    {
      /* Decode and service non control endpoints interrupt  */

      /* process related endpoint register */
      wEPVal = _GetENDPOINT(EPindex);
      if ((wEPVal & EP_CTR_RX) != 0)
      {
        /* clear int flag */
        _ClearEP_CTR_RX(EPindex);

        /* call OUT service function */
        (*pEpInt_OUT[EPindex-1])();

      } /* if((wEPVal & EP_CTR_RX) */

      if ((wEPVal & EP_CTR_TX) != 0)
      {
        /* clear int flag */
        _ClearEP_CTR_TX(EPindex);

        /* call IN service function */
        (*pEpInt_IN[EPindex-1])();
      } /* if((wEPVal & EP_CTR_TX) != 0) */

    }/* if(EPindex == 0) else */

  }/* while(...) */
}

3 CTR_HP

CTR_HP為高優(yōu)先級端點傳輸正常時的中斷服務函數(shù),代碼如下。

/*******************************************************************************
* Function Name  : CTR_HP.
* Description    : High Priority Endpoint Correct Transfer interrupt's service 
*                  routine.
* Input          : None.
* Output         : None.
* Return         : None.
*******************************************************************************/
void CTR_HP(void)
{
  uint32_t wEPVal = 0;

  while (((wIstr = _GetISTR()) & ISTR_CTR) != 0)
  {
    _SetISTR((uint16_t)CLR_CTR); /* clear CTR flag */
    /* extract highest priority endpoint number */
    EPindex = (uint8_t)(wIstr & ISTR_EP_ID);
    /* process related endpoint register */
    wEPVal = _GetENDPOINT(EPindex);
    if ((wEPVal & EP_CTR_RX) != 0)
    {
      /* clear int flag */
      _ClearEP_CTR_RX(EPindex);

      /* call OUT service function */
      (*pEpInt_OUT[EPindex-1])();

    } /* if((wEPVal & EP_CTR_RX) */
    else if ((wEPVal & EP_CTR_TX) != 0)
    {
      /* clear int flag */
      _ClearEP_CTR_TX(EPindex);

      /* call IN service function */
      (*pEpInt_IN[EPindex-1])();


    } /* if((wEPVal & EP_CTR_TX) != 0) */

  }/* while(...) */
}

4 CTR_LP和CTR_HP各自處理的事務類型

這兩個函數(shù)定義在usb_int.c中,用法如下。

CTR_LP(低優(yōu)先級中斷Low-priority interrupt),用于控制傳輸、中斷傳輸、批量傳輸( 單緩沖模式)。

CTR_HP(高優(yōu)先級中斷 High-priority interrupt),用于快速大數(shù)據(jù)量傳輸處理,比如同步傳輸、批量傳輸,但是都是處理雙緩沖模式。

5 核心注意要點

如果把只初始化了USB_LP_CAN1_RX0_IRQn中斷向量,則所有的正確傳輸中斷只會進入USB_LP_CAN1_RX0_IRQHandler->CTR_LP,所以要想進入CTR_HP必須對其中斷向量進行初始化,否則會使用默認的CTR_LP路徑進行處理。

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學習之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • usb
    usb
    +關注

    關注

    60

    文章

    7872

    瀏覽量

    263657
  • STM32
    +關注

    關注

    2264

    文章

    10854

    瀏覽量

    354228
  • 中斷
    +關注

    關注

    5

    文章

    895

    瀏覽量

    41343
  • stm32f1
    +關注

    關注

    1

    文章

    56

    瀏覽量

    12159
收藏 人收藏

    評論

    相關推薦

    STM32f1庫函數(shù)開發(fā)

    ” 的學習STM32,實際操作過程中知識盲區(qū)比想象中要多很多!只做了兩個GPIO口項目。實戰(zhàn)一 · I/O口1. 文件夾結(jié)構(gòu)USERsystem_stm32f10x.c系統(tǒng)時鐘初始化函
    發(fā)表于 08-17 06:29

    STM32F1中斷線是什么?

    STM32F1中斷線是什么?
    發(fā)表于 11-18 06:00

    STM32F1USB串口該怎樣去使用呢

    STM32F1USB串口該怎樣去使用呢?與STM32F1USB串口基本配置相關的寄存器有哪些呢?
    發(fā)表于 12-06 07:09

    stm32F1輸入捕獲詳解

    stm32F1輸入捕獲詳解1、問題:什么叫輸入捕獲回答:舉個例子,比如一信號由低電平變成高電平時,cpu保存定時器的值,信號再由高電平變成低電平時,cpu又保存一次定時器的值,那么通
    發(fā)表于 12-06 06:12

    STM32F1外部中斷簡介

    開啟了學習機器學習,本文就介紹了機器學習的基礎內(nèi)容。提示:以下是本篇文章正文內(nèi)容,下面案例可供參考一、 STM32F1 外部中斷簡介我們首先講解 STM32F1 IO 口中斷的一些基礎
    發(fā)表于 12-09 07:26

    STM32F1通用定時器示例詳解--TIM15_Compleme

    STM32F1通用定時器示例詳解--TIM15_ComplementarySignals
    發(fā)表于 12-07 18:15 ?0次下載

    STM32F1通用定時器示例講解_Timebase

    STM32F1通用定時器示例詳解—Timebase
    發(fā)表于 12-07 18:14 ?0次下載

    STM32F1系列芯片中文參考手冊

    STM32F1系列芯片中文參考手冊(嵌入式開發(fā)培訓教程)-STM32F1系列芯片的中文用戶手冊
    發(fā)表于 07-30 09:32 ?215次下載
    <b class='flag-5'>STM32F1</b>系列芯片中文參考手冊

    STM32F1官方手冊資料(中英文)

    STM32F1官方手冊資料(中英文)
    發(fā)表于 11-05 16:28 ?69次下載

    STM32F1F4的區(qū)別

    STM32F1F4的區(qū)別
    發(fā)表于 12-04 13:51 ?24次下載
    <b class='flag-5'>STM32F1</b>和<b class='flag-5'>F</b>4的區(qū)別

    AN3427_從STM32F1移植到STM32F2的應用手冊

    AN3427_從STM32F1移植到STM32F2的應用手冊
    發(fā)表于 11-21 17:06 ?10次下載
    AN3427_從<b class='flag-5'>STM32F1</b>移植到<b class='flag-5'>STM32F</b>2的應用手冊

    AN4904_從STM32F1STM32F4的軟件移植

    AN4904_從STM32F1STM32F4的軟件移植
    發(fā)表于 11-21 17:06 ?3次下載
    AN4904_從<b class='flag-5'>STM32F1</b>到<b class='flag-5'>STM32F</b>4的軟件移植

    UM1847_基于STM32F1系列的STM32CubeF1軟件庫使用入門

    UM1847_基于STM32F1系列的STM32CubeF1軟件庫使用入門
    發(fā)表于 11-22 08:22 ?4次下載
    UM1847_基于<b class='flag-5'>STM32F1</b>系列的<b class='flag-5'>STM32CubeF1</b>軟件庫使用入門

    STM32F1 USB外設在USB系統(tǒng)的位置

    STM32F1 USB外設實現(xiàn)了USB2.0全速總線和APB1總線間的接口。
    的頭像 發(fā)表于 07-17 15:43 ?1775次閱讀
    <b class='flag-5'>STM32F1</b> <b class='flag-5'>USB</b>外設在<b class='flag-5'>USB</b>系統(tǒng)的位置

    stm32f1如何將外部中斷關掉hal庫

    引入相關的頭文件。在HAL庫中,與外部中斷相關的頭文件是stm32f1xx_hal_exti.h和stm32f1xx_hal_gpio.h。這兩個頭文件提供了對外部
    的頭像 發(fā)表于 12-22 13:52 ?3085次閱讀