Home
last modified time | relevance | path

Searched refs:APB3LPENR (Results 1 – 25 of 36) sorted by relevance

12

/hal_stm32-latest/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_hal_rcc.h4010 #define __HAL_RCC_SBS_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_SBSLPEN)
4013 #define __HAL_RCC_SPI5_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_SPI5LPEN)
4016 #define __HAL_RCC_LPUART1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_LPUART1LP…
4019 #define __HAL_RCC_I2C3_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_I2C3LPEN)
4023 #define __HAL_RCC_I2C4_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_I2C4LPEN)
4027 #define __HAL_RCC_I3C2_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_I3C2LPEN)
4030 #define __HAL_RCC_LPTIM1_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_LPTIM1LPE…
4033 #define __HAL_RCC_LPTIM3_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_LPTIM3LPE…
4037 #define __HAL_RCC_LPTIM4_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_LPTIM4LPE…
4041 #define __HAL_RCC_LPTIM5_CLK_SLEEP_ENABLE() SET_BIT(RCC->APB3LPENR, RCC_APB3LPENR_LPTIM5LPE…
[all …]
Dstm32h5xx_ll_bus.h2715 SET_BIT(RCC->APB3LPENR, Periphs); in LL_APB3_GRP1_EnableClockSleep()
2717 tmpreg = READ_BIT(RCC->APB3LPENR, Periphs); in LL_APB3_GRP1_EnableClockSleep()
2756 return ((READ_BIT(RCC->APB3LPENR, Periphs) == Periphs) ? 1UL : 0UL); in LL_APB3_GRP1_IsEnabledClockSleep()
2793 CLEAR_BIT(RCC->APB3LPENR, Periphs); in LL_APB3_GRP1_DisableClockSleep()
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/include/
Dstm32h7xx_ll_bus.h1771 SET_BIT(RCC->APB3LPENR, Periphs); in LL_APB3_GRP1_EnableClockSleep()
1773 tmpreg = READ_BIT(RCC->APB3LPENR, Periphs); in LL_APB3_GRP1_EnableClockSleep()
1792 CLEAR_BIT(RCC->APB3LPENR, Periphs); in LL_APB3_GRP1_DisableClockSleep()
4229 SET_BIT(RCC_C1->APB3LPENR, Periphs); in LL_C1_APB3_GRP1_EnableClockSleep()
4231 tmpreg = READ_BIT(RCC_C1->APB3LPENR, Periphs); in LL_C1_APB3_GRP1_EnableClockSleep()
4250 CLEAR_BIT(RCC_C1->APB3LPENR, Periphs); in LL_C1_APB3_GRP1_DisableClockSleep()
5987 SET_BIT(RCC_C2->APB3LPENR, Periphs); in LL_C2_APB3_GRP1_EnableClockSleep()
5989 tmpreg = READ_BIT(RCC_C2->APB3LPENR, Periphs); in LL_C2_APB3_GRP1_EnableClockSleep()
6008 CLEAR_BIT(RCC_C2->APB3LPENR, Periphs); in LL_C2_APB3_GRP1_DisableClockSleep()
Dstm32h7xx_hal_rcc.h5774 #define __HAL_RCC_LTDC_CLK_SLEEP_ENABLE() (RCC->APB3LPENR) |= (RCC_APB3LPENR_LTDCLPEN)
5777 #define __HAL_RCC_DSI_CLK_SLEEP_ENABLE() (RCC->APB3LPENR) |= (RCC_APB3LPENR_DSILPEN)
5779 #define __HAL_RCC_WWDG1_CLK_SLEEP_ENABLE() (RCC->APB3LPENR) |= (RCC_APB3LPENR_WWDG1LPEN)
5782 #define __HAL_RCC_LTDC_CLK_SLEEP_DISABLE() (RCC->APB3LPENR) &= ~ (RCC_APB3LPENR_LTDCLPEN)
5785 #define __HAL_RCC_DSI_CLK_SLEEP_DISABLE() (RCC->APB3LPENR) &= ~ (RCC_APB3LPENR_DSILPEN)
5787 #define __HAL_RCC_WWDG1_CLK_SLEEP_DISABLE() (RCC->APB3LPENR) &= ~ (RCC_APB3LPENR_WWDG1LPEN)
5798 #define __HAL_RCC_LTDC_IS_CLK_SLEEP_ENABLED() ((RCC->APB3LPENR & (RCC_APB3LPENR_LTDCLPEN…
5801 #define __HAL_RCC_DSI_IS_CLK_SLEEP_ENABLED() ((RCC->APB3LPENR & (RCC_APB3LPENR_DSILPEN)…
5803 #define __HAL_RCC_WWDG1_IS_CLK_SLEEP_ENABLED() ((RCC->APB3LPENR & (RCC_APB3LPENR_WWDG1LPE…
5806 #define __HAL_RCC_LTDC_IS_CLK_SLEEP_DISABLED() ((RCC->APB3LPENR & (RCC_APB3LPENR_LTDCLPEN…
[all …]
/hal_stm32-latest/stm32cube/stm32h7xx/soc/
Dstm32h745xx.h1336 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
1362 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, A… member
Dstm32h745xg.h1336 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
1362 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, A… member
Dstm32h755xx.h1337 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
1363 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, A… member
Dstm32h757xx.h1418 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
1444 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, A… member
Dstm32h747xg.h1417 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
1443 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, A… member
Dstm32h747xx.h1417 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
1443 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, A… member
Dstm32h7a3xx.h1138 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h7b0xx.h1141 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h7b0xxq.h1142 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h7a3xxq.h1139 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h7b3xx.h1141 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h7b3xxq.h1142 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h730xxq.h1297 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h733xx.h1296 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h725xx.h1294 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h730xx.h1296 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
Dstm32h735xx.h1297 …__IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, … member
/hal_stm32-latest/stm32cube/stm32h5xx/soc/
Dstm32h503xx.h755 …__IO uint32_t APB3LPENR; /*!< RCC APB3 Peripherals Clock Low Power Enable Register … member
Dstm32h523xx.h919 …__IO uint32_t APB3LPENR; /*!< RCC APB3 Peripherals Clock Low Power Enable Register … member
Dstm32h562xx.h966 …__IO uint32_t APB3LPENR; /*!< RCC APB3 Peripherals Clock Low Power Enable Register … member
Dstm32h533xx.h983 …__IO uint32_t APB3LPENR; /*!< RCC APB3 Peripherals Clock Low Power Enable Register … member

12