Home
last modified time | relevance | path

Searched refs:RPR1 (Results 1 – 25 of 107) sorted by relevance

12345

/hal_stm32-3.7.0/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_hal_pwr_ex.h416 #define __HAL_PWR_UVM_EXTI_GET_FLAG() ((EXTI->RPR1 | EXTI->FPR1) & PWR_EXTI_LINE_UVM)
425 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_UVM); \
509 #define __HAL_PWR_IO2VM_EXTI_GET_FLAG() ((EXTI->RPR1 | EXTI->FPR1) & PWR_EXTI_LINE_IO2VM)
518 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_IO2VM); \
602 #define __HAL_PWR_AVM1_EXTI_GET_FLAG() ((EXTI->RPR1 | EXTI->FPR1) & PWR_EXTI_LINE_AVM1)
611 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_AVM1); \
695 #define __HAL_PWR_AVM2_EXTI_GET_FLAG() ((EXTI->RPR1 | EXTI->FPR1) & PWR_EXTI_LINE_AVM2)
704 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_AVM2); \
Dstm32u5xx_hal_comp.h489 #define __HAL_COMP_COMP1_EXTI_GET_RISING_FLAG() READ_BIT(EXTI->RPR1, COMP_EXTI_LINE_COMP1)
501 #define __HAL_COMP_COMP1_EXTI_CLEAR_RISING_FLAG() WRITE_REG(EXTI->RPR1, COMP_EXTI_LINE_COMP1)
579 #define __HAL_COMP_COMP2_EXTI_GET_RISING_FLAG() READ_BIT(EXTI->RPR1, COMP_EXTI_LINE_COMP2)
592 #define __HAL_COMP_COMP2_EXTI_CLEAR_RISING_FLAG() WRITE_REG(EXTI->RPR1, COMP_EXTI_LINE_COMP2)
Dstm32u5xx_ll_exti.h993 return ((READ_BIT(EXTI->RPR1, ExtiLine) == (ExtiLine)) ? 1UL : 0UL); in LL_EXTI_IsActiveRisingFlag_0_31()
1033 return (uint32_t)(READ_BIT(EXTI->RPR1, ExtiLine)); in LL_EXTI_ReadRisingFlag_0_31()
1073 WRITE_REG(EXTI->RPR1, ExtiLine); in LL_EXTI_ClearRisingFlag_0_31()
/hal_stm32-3.7.0/stm32cube/stm32mp1xx/drivers/include/
Dstm32mp1xx_hal_gpio.h178 #define __HAL_GPIO_EXTI_GET_IT(__EXTI_LINE__) ((EXTI->RPR1 & (__EXTI_LINE__)) | (EXTI->FPR1 & (__EX…
188 EXTI->RPR1 = (__EXTI_LINE__); \
199 #define __HAL_GPIO_EXTI_GET_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 & (__EXTI_LINE__))
217 EXTI->RPR1 = (__EXTI_LINE__); \
Dstm32mp1xx_ll_exti.h1203 return ((READ_BIT(EXTI->RPR1, ExtiLine) == (ExtiLine)) ? 1UL : 0UL); in LL_EXTI_IsActiveRisingFlag_0_31()
1303 return (uint32_t)(READ_BIT(EXTI->RPR1, ExtiLine)); in LL_EXTI_ReadRisingFlag_0_31()
1403 WRITE_REG(EXTI->RPR1, ExtiLine); in LL_EXTI_ClearRisingFlag_0_31()
/hal_stm32-3.7.0/stm32cube/stm32g0xx/drivers/src/
Dstm32g0xx_ll_exti.c94 LL_EXTI_WriteReg(RPR1, 0x0017FFFFU); in LL_EXTI_DeInit()
97 LL_EXTI_WriteReg(RPR1, 0x0007FFFFU); in LL_EXTI_DeInit()
100 LL_EXTI_WriteReg(RPR1, 0x0001FFFFU); in LL_EXTI_DeInit()
103 LL_EXTI_WriteReg(RPR1, 0x0000FFFFU); in LL_EXTI_DeInit()
Dstm32g0xx_hal_exti.c513 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_IRQHandler()
581 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_GetPending()
622 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_ClearPending()
/hal_stm32-3.7.0/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_hal_comp.c416 WRITE_REG(EXTI->RPR1, exti_line); in HAL_COMP_Init()
829 if (READ_BIT(EXTI->RPR1, exti_line) != 0UL) in HAL_COMP_IRQHandler()
842 WRITE_REG(EXTI->RPR1, (COMP_EXTI_LINE_COMP1 | COMP_EXTI_LINE_COMP2)); in HAL_COMP_IRQHandler()
848 WRITE_REG(EXTI->RPR1, exti_line); in HAL_COMP_IRQHandler()
Dstm32u5xx_hal_pwr_ex.c1554 rising_flag = READ_REG(EXTI->RPR1); in HAL_PWREx_PVD_PVM_IRQHandler()
1564 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_PVD); in HAL_PWREx_PVD_PVM_IRQHandler()
1575 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_UVM); in HAL_PWREx_PVD_PVM_IRQHandler()
1586 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_IO2VM); in HAL_PWREx_PVD_PVM_IRQHandler()
1597 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_AVM1); in HAL_PWREx_PVD_PVM_IRQHandler()
1608 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_AVM2); in HAL_PWREx_PVD_PVM_IRQHandler()
Dstm32u5xx_hal_exti.c509 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_IRQHandler()
577 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_GetPending()
618 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_ClearPending()
/hal_stm32-3.7.0/stm32cube/stm32c0xx/drivers/include/
Dstm32c0xx_ll_exti.h860 return ((READ_BIT(EXTI->RPR1, ExtiLine) == (ExtiLine)) ? 1UL : 0UL); in LL_EXTI_IsActiveRisingFlag_0_31()
894 return (READ_BIT(EXTI->RPR1, ExtiLine)); in LL_EXTI_ReadRisingFlag_0_31()
928 WRITE_REG(EXTI->RPR1, ExtiLine); in LL_EXTI_ClearRisingFlag_0_31()
Dstm32c0xx_hal_gpio.h183 #define __HAL_GPIO_EXTI_GET_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 & (__EXTI_LINE__))
191 #define __HAL_GPIO_EXTI_CLEAR_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 = (__EXTI_LINE__))
/hal_stm32-3.7.0/stm32cube/stm32wbaxx/drivers/include/
Dstm32wbaxx_ll_exti.h851 return ((READ_BIT(EXTI->RPR1, ExtiLine) == (ExtiLine)) ? 1UL : 0UL); in LL_EXTI_IsActiveRisingFlag_0_31()
884 return (uint32_t)(READ_BIT(EXTI->RPR1, ExtiLine)); in LL_EXTI_ReadRisingFlag_0_31()
917 WRITE_REG(EXTI->RPR1, ExtiLine); in LL_EXTI_ClearRisingFlag_0_31()
/hal_stm32-3.7.0/stm32cube/stm32c0xx/drivers/src/
Dstm32c0xx_hal_exti.c507 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_IRQHandler()
575 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_GetPending()
616 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_ClearPending()
/hal_stm32-3.7.0/stm32cube/stm32mp1xx/drivers/src/
Dstm32mp1xx_hal_exti.c568 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_IRQHandler()
636 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_GetPending()
677 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_ClearPending()
/hal_stm32-3.7.0/stm32cube/stm32g0xx/drivers/include/
Dstm32g0xx_ll_exti.h1300 return ((READ_BIT(EXTI->RPR1, ExtiLine) == (ExtiLine)) ? 1UL : 0UL); in LL_EXTI_IsActiveRisingFlag_0_31()
1351 return (READ_BIT(EXTI->RPR1, ExtiLine)); in LL_EXTI_ReadRisingFlag_0_31()
1402 WRITE_REG(EXTI->RPR1, ExtiLine); in LL_EXTI_ClearRisingFlag_0_31()
Dstm32g0xx_hal_gpio.h170 #define __HAL_GPIO_EXTI_GET_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 & (__EXTI_LINE__))
178 #define __HAL_GPIO_EXTI_CLEAR_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 = (__EXTI_LINE__))
/hal_stm32-3.7.0/stm32cube/stm32l5xx/drivers/include/
Dstm32l5xx_ll_exti.h1287 return ((READ_BIT(EXTI->RPR1, ExtiLine) == (ExtiLine)) ? 1UL : 0UL); in LL_EXTI_IsActiveRisingFlag_0_31()
1337 return (uint32_t)(READ_BIT(EXTI->RPR1, ExtiLine)); in LL_EXTI_ReadRisingFlag_0_31()
1388 WRITE_REG(EXTI->RPR1, ExtiLine); in LL_EXTI_ClearRisingFlag_0_31()
Dstm32l5xx_hal_gpio.h184 #define __HAL_GPIO_EXTI_GET_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 & (__EXTI_LINE__))
192 #define __HAL_GPIO_EXTI_CLEAR_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 = (__EXTI_LINE__))
/hal_stm32-3.7.0/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_ll_exti.h1440 return ((READ_BIT(EXTI->RPR1, ExtiLine) == (ExtiLine)) ? 1UL : 0UL); in LL_EXTI_IsActiveRisingFlag_0_31()
1488 return (uint32_t)(READ_BIT(EXTI->RPR1, ExtiLine)); in LL_EXTI_ReadRisingFlag_0_31()
1536 WRITE_REG(EXTI->RPR1, ExtiLine); in LL_EXTI_ClearRisingFlag_0_31()
Dstm32h5xx_hal_pwr.h486 ((READ_BIT(EXTI->RPR1, PWR_EXTI_LINE_PVD) == PWR_EXTI_LINE_PVD) ? 1UL : 0UL)
499 #define __HAL_PWR_PVD_EXTI_CLEAR_RISING_FLAG() WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_PVD);
514 WRITE_REG(EXTI->RPR1, PWR_EXTI_LINE_PVD); \
Dstm32h5xx_hal_gpio.h196 #define __HAL_GPIO_EXTI_GET_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 & (__EXTI_LINE__))
204 #define __HAL_GPIO_EXTI_CLEAR_RISING_IT(__EXTI_LINE__) (EXTI->RPR1 = (__EXTI_LINE__))
/hal_stm32-3.7.0/stm32cube/stm32l5xx/drivers/src/
Dstm32l5xx_hal_exti.c507 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_IRQHandler()
575 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_GetPending()
616 regaddr = (&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_ClearPending()
/hal_stm32-3.7.0/stm32cube/stm32h5xx/drivers/src/
Dstm32h5xx_hal_exti.c510 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_IRQHandler()
578 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_GetPending()
619 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_ClearPending()
/hal_stm32-3.7.0/stm32cube/stm32wbaxx/drivers/src/
Dstm32wbaxx_hal_exti.c517 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_IRQHandler()
585 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_GetPending()
626 regaddr = (__IO uint32_t *)(&EXTI->RPR1 + (EXTI_CONFIG_OFFSET * offset)); in HAL_EXTI_ClearPending()

12345