Home
last modified time | relevance | path

Searched refs:Interrupt (Results 1 – 25 of 30) sorted by relevance

12

/hal_stm32-latest/stm32cube/stm32wlxx/drivers/include/
Dstm32wlxx_ll_system.h776 __STATIC_INLINE void LL_SYSCFG_GRP1_EnableIT(uint32_t Interrupt) in LL_SYSCFG_GRP1_EnableIT() argument
778 CLEAR_BIT(SYSCFG->IMR1, Interrupt); in LL_SYSCFG_GRP1_EnableIT()
790 __STATIC_INLINE void LL_SYSCFG_GRP2_EnableIT(uint32_t Interrupt) in LL_SYSCFG_GRP2_EnableIT() argument
792 CLEAR_BIT(SYSCFG->IMR2, Interrupt); in LL_SYSCFG_GRP2_EnableIT()
816 __STATIC_INLINE void LL_SYSCFG_GRP1_DisableIT(uint32_t Interrupt) in LL_SYSCFG_GRP1_DisableIT() argument
818 SET_BIT(SYSCFG->IMR1, Interrupt); in LL_SYSCFG_GRP1_DisableIT()
830 __STATIC_INLINE void LL_SYSCFG_GRP2_DisableIT(uint32_t Interrupt) in LL_SYSCFG_GRP2_DisableIT() argument
832 SET_BIT(SYSCFG->IMR2, Interrupt); in LL_SYSCFG_GRP2_DisableIT()
856 __STATIC_INLINE uint32_t LL_SYSCFG_GRP1_IsEnabledIT(uint32_t Interrupt) in LL_SYSCFG_GRP1_IsEnabledIT() argument
858 return ((READ_BIT(SYSCFG->IMR1, Interrupt) != (Interrupt)) ? 1UL : 0UL); in LL_SYSCFG_GRP1_IsEnabledIT()
[all …]
Dstm32wlxx_hal.h819 void HAL_SYSCFG_EnableIT(SYSCFG_InterruptTypeDef *Interrupt);
820 void HAL_SYSCFG_DisableIT(SYSCFG_InterruptTypeDef *Interrupt);
/hal_stm32-latest/stm32cube/stm32wbxx/drivers/include/
Dstm32wbxx_ll_system.h1081 __STATIC_INLINE void LL_SYSCFG_GRP1_EnableIT(uint32_t Interrupt) in LL_SYSCFG_GRP1_EnableIT() argument
1083 CLEAR_BIT(SYSCFG->IMR1, Interrupt); in LL_SYSCFG_GRP1_EnableIT()
1097 __STATIC_INLINE void LL_SYSCFG_GRP2_EnableIT(uint32_t Interrupt) in LL_SYSCFG_GRP2_EnableIT() argument
1099 CLEAR_BIT(SYSCFG->IMR2, Interrupt); in LL_SYSCFG_GRP2_EnableIT()
1125 __STATIC_INLINE void LL_SYSCFG_GRP1_DisableIT(uint32_t Interrupt) in LL_SYSCFG_GRP1_DisableIT() argument
1127 SET_BIT(SYSCFG->IMR1, Interrupt); in LL_SYSCFG_GRP1_DisableIT()
1141 __STATIC_INLINE void LL_SYSCFG_GRP2_DisableIT(uint32_t Interrupt) in LL_SYSCFG_GRP2_DisableIT() argument
1143 SET_BIT(SYSCFG->IMR2, Interrupt); in LL_SYSCFG_GRP2_DisableIT()
1169 __STATIC_INLINE uint32_t LL_SYSCFG_GRP1_IsEnabledIT(uint32_t Interrupt) in LL_SYSCFG_GRP1_IsEnabledIT() argument
1171 return ((READ_BIT(SYSCFG->IMR1, Interrupt) != (Interrupt)) ? 1UL : 0UL); in LL_SYSCFG_GRP1_IsEnabledIT()
[all …]
Dstm32wbxx_hal_rtc_ex.h52 uint32_t Interrupt; /*!< Specifies the Tamper Interrupt. member
/hal_stm32-latest/stm32cube/stm32wb0x/drivers/include/
Dstm32wb0x_ll_system.h481 __STATIC_INLINE void LL_SYSCFG_PWRC_EnableIT(uint32_t Interrupt) in LL_SYSCFG_PWRC_EnableIT() argument
483 SET_BIT(SYSCFG->PWRC_IER, Interrupt); in LL_SYSCFG_PWRC_EnableIT()
494 __STATIC_INLINE void LL_SYSCFG_PWRC_DisableIT(uint32_t Interrupt) in LL_SYSCFG_PWRC_DisableIT() argument
496 CLEAR_BIT(SYSCFG->PWRC_IER, Interrupt); in LL_SYSCFG_PWRC_DisableIT()
507 __STATIC_INLINE uint32_t LL_SYSCFG_PWRC_IsEnabledIT(uint32_t Interrupt) in LL_SYSCFG_PWRC_IsEnabledIT() argument
509 return ((READ_BIT(SYSCFG->PWRC_IER, Interrupt) == (Interrupt)) ? 1UL : 0UL); in LL_SYSCFG_PWRC_IsEnabledIT()
520 __STATIC_INLINE uint32_t LL_SYSCFG_PWRC_GetStatusIT(uint32_t Interrupt) in LL_SYSCFG_PWRC_GetStatusIT() argument
522 return ((READ_BIT(SYSCFG->PWRC_ISCR, Interrupt) == (Interrupt)) ? 1UL : 0UL); in LL_SYSCFG_PWRC_GetStatusIT()
533 __STATIC_INLINE void LL_SYSCFG_PWRC_ClearIT(uint32_t Interrupt) in LL_SYSCFG_PWRC_ClearIT() argument
535 SET_BIT(SYSCFG->PWRC_ISCR, Interrupt); in LL_SYSCFG_PWRC_ClearIT()
/hal_stm32-latest/stm32cube/stm32wlxx/drivers/src/
Dstm32wlxx_hal.c782 void HAL_SYSCFG_EnableIT(SYSCFG_InterruptTypeDef *Interrupt) in HAL_SYSCFG_EnableIT() argument
784 uint32_t InterruptMask1 = (Interrupt->InterruptMask1 & ~HAL_SYSCFG_GRP1_RESERVED); in HAL_SYSCFG_EnableIT()
785 uint32_t InterruptMask2 = (Interrupt->InterruptMask2 & ~HAL_SYSCFG_GRP2_RESERVED); in HAL_SYSCFG_EnableIT()
788 assert_param(IS_SYSCFG_IM_GRP1(Interrupt->InterruptMask1)); in HAL_SYSCFG_EnableIT()
789 assert_param(IS_SYSCFG_IM_GRP2(Interrupt->InterruptMask2)); in HAL_SYSCFG_EnableIT()
808 void HAL_SYSCFG_DisableIT(SYSCFG_InterruptTypeDef *Interrupt) in HAL_SYSCFG_DisableIT() argument
810 uint32_t InterruptMask1 = (Interrupt->InterruptMask1 & ~HAL_SYSCFG_GRP1_RESERVED); in HAL_SYSCFG_DisableIT()
811 uint32_t InterruptMask2 = (Interrupt->InterruptMask2 & ~HAL_SYSCFG_GRP2_RESERVED); in HAL_SYSCFG_DisableIT()
814 assert_param(IS_SYSCFG_IM_GRP1(Interrupt->InterruptMask1)); in HAL_SYSCFG_DisableIT()
815 assert_param(IS_SYSCFG_IM_GRP2(Interrupt->InterruptMask2)); in HAL_SYSCFG_DisableIT()
/hal_stm32-latest/stm32cube/stm32l4xx/drivers/src/
Dstm32l4xx_hal_rtc_ex.c1990 assert_param(IS_RTC_TAMPER_INTERRUPT(sTamper->Interrupt));
2013 sTamper->Tamper | sTamper->Interrupt | \
2026 sTamper->Tamper | sTamper->Interrupt | \
2039 sTamper->Tamper | sTamper->Interrupt | \
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/
Dstm32h7xx_hal_rtc_ex.c757 assert_param(IS_RTC_TAMPER_INTERRUPT(sTamper->Interrupt)); in HAL_RTCEx_SetTamper_IT()
868 tmpreg |= (uint32_t)sTamper->Interrupt; in HAL_RTCEx_SetTamper_IT()
1116 if (sAllTamper->TampInput[i].Interrupt != RTC_ATAMP_INTERRUPT_DISABLE) in HAL_RTCEx_SetActiveTampers()
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/include/
Dstm32h7xx_hal_rtc_ex.h52 uint32_t Interrupt; /*!< Specifies the Tamper Interrupt. member
123 uint32_t Interrupt; /*!< Specifies the interrupt mode member
/hal_stm32-latest/stm32cube/stm32wbxx/drivers/src/
Dstm32wbxx_hal_rtc_ex.c578 assert_param(IS_RTC_TAMPER_INTERRUPT(sTamper->Interrupt)); in HAL_RTCEx_SetTamper_IT()
642 …tmpreg = (uint32_t)((uint32_t)sTamper->Tamper | (uint32_t)sTamper->Interrupt | (uint32_t)sTamper->… in HAL_RTCEx_SetTamper_IT()
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/src/
Dstm32l0xx_hal_rtc_ex.c589 assert_param(IS_RTC_TAMPER_INTERRUPT(sTamper->Interrupt)); in HAL_RTCEx_SetTamper_IT()
719 tmpreg |= (uint32_t)sTamper->Interrupt; in HAL_RTCEx_SetTamper_IT()
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/src/
Dstm32f7xx_hal_rtc_ex.c623 assert_param(IS_RTC_TAMPER_INTERRUPT(sTamper->Interrupt)); in HAL_RTCEx_SetTamper_IT()
737 tmpreg |= (uint32_t)sTamper->Interrupt; in HAL_RTCEx_SetTamper_IT()
/hal_stm32-latest/stm32cube/stm32l1xx/
DREADME41 SVCall_IRQn is used as enum value for SV Call Interrupt for Cortex-M
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_hal_rtc_ex.c1733 if (sAllTamper->TampInput[i].Interrupt != RTC_ATAMP_INTERRUPT_DISABLE) in HAL_RTCEx_SetActiveTampers()
1813 sAllTamper->TampInput[i].Interrupt = (uint32_t)(((TAMP->IER & (TAMP_IER_TAMP1IE << i))) >> i); in HAL_RTCEx_GetActiveTampers()
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/include/
Dstm32l0xx_hal_rtc_ex.h53 uint32_t Interrupt; /*!< Specifies the Tamper Interrupt. member
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/include/
Dstm32f7xx_hal_rtc_ex.h53 uint32_t Interrupt; /*!< Specifies the Tamper Interrupt. member
/hal_stm32-latest/stm32cube/stm32l5xx/drivers/include/
Dstm32l5xx_hal_rtc_ex.h97 uint32_t Interrupt; /*!< Specifies the interrupt mode member
/hal_stm32-latest/stm32cube/stm32mp1xx/drivers/include/
Dstm32mp1xx_hal_rtc_ex.h97 uint32_t Interrupt; /*!< Specifies the interrupt mode member
/hal_stm32-latest/stm32cube/stm32wbaxx/drivers/include/
Dstm32wbaxx_hal_rtc_ex.h100 uint32_t Interrupt; /*!< Specifies the interrupt mode. member
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/
Dstm32n6xx_hal_rtc_ex.h100 uint32_t Interrupt; /*!< Specifies the interrupt mode. member
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_hal_rtc_ex.h100 uint32_t Interrupt; /*!< Specifies the interrupt mode member
/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/include/
Dstm32h7rsxx_hal_rtc_ex.h100 uint32_t Interrupt; /*!< Specifies the interrupt mode. member
/hal_stm32-latest/stm32cube/stm32l4xx/drivers/include/
Dstm32l4xx_hal_rtc_ex.h51 uint32_t Interrupt; /*!< Specifies the Tamper Interrupt. member
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_hal_rtc_ex.h100 uint32_t Interrupt; /*!< Specifies the interrupt mode. member
/hal_stm32-latest/stm32cube/stm32mp1xx/drivers/src/
Dstm32mp1xx_hal_rtc_ex.c1634 if (sAllTamper->TampInput[i].Interrupt != RTC_ATAMP_INTERRUPT_DISABLE) in HAL_RTCEx_SetActiveTampers()

12