【STM32】外部中斷不可以同PIN
阿新 • • 發佈:2020-12-11
問題背景:
在做低功耗外部中斷喚醒的時候,發現PD2配置成外部中斷喚醒之後,之前配置的PB2不可以正常喚醒了,註釋掉PD2的外部中斷GPIO配置之後,又可以正常喚醒。
問題原因:
查閱資料發現STM32的外部中斷即使是不同PORT,但是隻要是同PIN也是不可以同時配置為外部中斷使用的。我們看STM32CubeMX發現配置的時候也是配置不了的,是互斥的。
STM32外部中斷不可以共用PIN
這也驗證了HAL庫中外部中斷回撥函式只有一個形參PIN的判斷,不區分PORT。
/**
* @brief EXTI line detection callback.
* @param GPIO_Pin Specifies the port pin connected to corresponding EXTI line.
* @retval None
*/
__weak void HAL_GPIO_EXTI_Rising_Callback(uint16_t GPIO_Pin)
{
/* Prevent unused argument(s) compilation warning */
UNUSED(GPIO_Pin);
/* NOTE: This function should not be modified, when the callback is needed,
the HAL_GPIO_EXTI_Rising_Callback could be implemented in the user file
*/
}
/**
* @brief EXTI line detection callback.
* @param GPIO_Pin Specifies the port pin connected to corresponding EXTI line.
* @retval None
*/
__weak void HAL_GPIO_EXTI_Falling_Callback(uint16_t GPIO_Pin)
{
/* Prevent unused argument(s) compilation warning */
UNUSED(GPIO_Pin);
/* NOTE: This function should not be modified, when the callback is needed,
the HAL_GPIO_EXTI_Falling_Callback could be implemented in the user file
*/
}
總結
做低功耗之前,在前期規劃的時候就要將喚醒腳合理規劃佈置,免得後面硬體根本不支援再頭疼。