| /bsp/mm32f327x/Libraries/MM32F327x/HAL_Lib/Src/ |
| A D | hal_rcc.c | 524 (state) ? (RCC->APB2ENR |= apb2_periph) : (RCC->APB2ENR &= ~apb2_periph); in RCC_APB2PeriphClockCmd() 823 (state) ? (RCC->APB2ENR |= RCC_APB2ENR_ADC1) : (RCC->APB2ENR &= ~RCC_APB2ENR_ADC1); in RCC_ADC_ClockCmd() 826 (state) ? (RCC->APB2ENR |= RCC_APB2ENR_ADC2) : (RCC->APB2ENR &= ~RCC_APB2ENR_ADC2); in RCC_ADC_ClockCmd() 829 (state) ? (RCC->APB2ENR |= RCC_APB2ENR_ADC3) : (RCC->APB2ENR &= ~RCC_APB2ENR_ADC3); in RCC_ADC_ClockCmd() 874 (state) ? (RCC->APB2ENR |= RCC_APB2ENR_COMP) : (RCC->APB2ENR &= ~RCC_APB2ENR_COMP); in RCC_COMP_ClockCmd() 970 …(state) ? (RCC->APB2ENR |= RCC_APB2ENR_UART1) : (RCC->APB2ENR &= ~RCC_APB2ENR_UART1);//exRCC_APB2P… in RCC_UART_ClockCmd() 982 …(state) ? (RCC->APB2ENR |= RCC_APB2ENR_UART6) : (RCC->APB2ENR &= ~RCC_APB2ENR_UART6);//exRCC_APB2P… in RCC_UART_ClockCmd()
|
| /bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Inc/ |
| A D | stm32l1xx_hal_rcc.h | 864 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM9EN);\ 871 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM10EN);\ 885 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_ADC1EN);\ 892 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_SPI1EN);\ 905 #define __HAL_RCC_SYSCFG_CLK_DISABLE() (RCC->APB2ENR &= ~(RCC_APB2ENR_SYSCFGEN)) 906 #define __HAL_RCC_TIM9_CLK_DISABLE() (RCC->APB2ENR &= ~(RCC_APB2ENR_TIM9EN)) 907 #define __HAL_RCC_TIM10_CLK_DISABLE() (RCC->APB2ENR &= ~(RCC_APB2ENR_TIM10EN)) 908 #define __HAL_RCC_TIM11_CLK_DISABLE() (RCC->APB2ENR &= ~(RCC_APB2ENR_TIM11EN)) 909 #define __HAL_RCC_ADC1_CLK_DISABLE() (RCC->APB2ENR &= ~(RCC_APB2ENR_ADC1EN)) 910 #define __HAL_RCC_SPI1_CLK_DISABLE() (RCC->APB2ENR &= ~(RCC_APB2ENR_SPI1EN)) [all …]
|
| A D | stm32l1xx_ll_bus.h | 898 SET_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_EnableClock() 900 tmpreg = READ_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_EnableClock() 929 return ((READ_BIT(RCC->APB2ENR, Periphs) == (Periphs)) ? 1UL : 0UL); in LL_APB2_GRP1_IsEnabledClock() 957 CLEAR_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_DisableClock()
|
| A D | stm32l1xx_hal_rcc_ex.h | 338 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_SDIOEN);\ 340 tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SDIOEN);\ 343 #define __HAL_RCC_SDIO_CLK_DISABLE() (RCC->APB2ENR &= ~(RCC_APB2ENR_SDIOEN)) 718 #define __HAL_RCC_SDIO_IS_CLK_ENABLED() ((RCC->APB2ENR & (RCC_APB2ENR_SDIOEN)) != 0U) 719 #define __HAL_RCC_SDIO_IS_CLK_DISABLED() ((RCC->APB2ENR & (RCC_APB2ENR_SDIOEN)) == 0U)
|
| /bsp/mm32/libraries/MM32F3270_HAL/MM32F3270_HAL_Driver/Src/ |
| A D | hal_rcc.c | 34 (enable) ? (RCC->APB2ENR |= apb2_periphs) : (RCC->APB2ENR &= ~apb2_periphs); in RCC_EnableAPB2Periphs()
|
| /bsp/essemi/es32f369x/libraries/ES32F36xx_ALD_StdPeriph_Driver/Source/ |
| A D | ald_cmu.c | 1097 WRITE_REG(CMU->APB2ENR, ~0); in ald_cmu_perh_clock_config() 1102 WRITE_REG(CMU->APB2ENR, 0); in ald_cmu_perh_clock_config() 1123 SET_BIT(CMU->APB2ENR, pos); in ald_cmu_perh_clock_config() 1141 CLEAR_BIT(CMU->APB2ENR, pos); in ald_cmu_perh_clock_config()
|
| /bsp/essemi/es32f0654/libraries/ES32F065x_ALD_StdPeriph_Driver/Source/ |
| A D | ald_cmu.c | 1038 WRITE_REG(CMU->APB2ENR, ~0); in ald_cmu_perh_clock_config() 1043 WRITE_REG(CMU->APB2ENR, 0); in ald_cmu_perh_clock_config() 1064 SET_BIT(CMU->APB2ENR, pos); in ald_cmu_perh_clock_config() 1082 CLEAR_BIT(CMU->APB2ENR, pos); in ald_cmu_perh_clock_config()
|
| /bsp/tkm32F499/Libraries/CMSIS_and_startup/ |
| A D | sys.c | 46 RCC->APB2ENR|=1<<14; //使能SYSCFG时钟 in Ex_NVIC_Config()
|
| /bsp/airm2m/air32f103/libraries/AIR32F10xLib/src/ |
| A D | air32f10x_rcc.c | 760 RCC->APB2ENR |= RCC_APB2Periph; in RCC_APB2PeriphClockCmd() 764 RCC->APB2ENR &= ~RCC_APB2Periph; in RCC_APB2PeriphClockCmd()
|
| A D | system_air32f10x.c | 464 RCC->APB2ENR = 0x000001E0; in SystemInit_ExtMemCtl()
|
| /bsp/mm32l07x/Libraries/MM32L0xx/HAL_lib/src/ |
| A D | HAL_rcc.c | 791 RCC->APB2ENR |= RCC_APB2Periph; in RCC_APB2PeriphClockCmd() 795 RCC->APB2ENR &= ~RCC_APB2Periph; in RCC_APB2PeriphClockCmd()
|
| /bsp/ft32/libraries/FT32F0xx/FT32F0xx_Driver/Src/ |
| A D | ft32f0xx_rcc.c | 1150 RCC->APB2ENR |= RCC_APB2Periph; in RCC_APB2PeriphClockCmd() 1154 RCC->APB2ENR &= ~RCC_APB2Periph; in RCC_APB2PeriphClockCmd()
|
| /bsp/mm32l3xx/Libraries/MM32L3xx/HAL_lib/src/ |
| A D | HAL_rcc.c | 873 RCC->APB2ENR |= RCC_APB2Periph; in RCC_APB2PeriphClockCmd() 877 RCC->APB2ENR &= ~RCC_APB2Periph; in RCC_APB2PeriphClockCmd()
|
| /bsp/hk32/libraries/HK32F0xx_StdPeriph_Driver/src/ |
| A D | hk32f0xx_rcc.c | 1260 RCC->APB2ENR |= RCC_APB2Periph; in RCC_APB2PeriphClockCmd() 1264 RCC->APB2ENR &= ~RCC_APB2Periph; in RCC_APB2PeriphClockCmd()
|
| /bsp/mm32f103x/Libraries/MM32F103/HAL_lib/src/ |
| A D | HAL_rcc.c | 877 RCC->APB2ENR |= RCC_APB2Periph; in RCC_APB2PeriphClockCmd() 881 RCC->APB2ENR &= ~RCC_APB2Periph; in RCC_APB2PeriphClockCmd()
|
| /bsp/tkm32F499/Libraries/Hal_lib/src/ |
| A D | HAL_rcc.c | 1027 RCC->APB2ENR |= RCC_APB2Periph; in RCC_APB2PeriphClockCmd() 1031 RCC->APB2ENR &= ~RCC_APB2Periph; in RCC_APB2PeriphClockCmd()
|
| /bsp/wch/arm/ch32f103c8-core/board/ |
| A D | system_ch32f10x.c | 179 RCC->APB2ENR = 0x000001E0; in SystemInit_ExtMemCtl()
|
| /bsp/wch/arm/Libraries/CH32F10x_StdPeriph_Driver/CMSIS/WCH/CH32F10x/Source/ |
| A D | system_ch32f10x.c | 179 RCC->APB2ENR = 0x000001E0; in SystemInit_ExtMemCtl()
|
| /bsp/mm32f327x/Libraries/MM32F327x/Include/ |
| A D | reg_rcc.h | 72 …__IO u32 APB2ENR; ///< Advanced Peripher… member
|
| /bsp/ft32/libraries/FT32F0xx/CMSIS/FT32F0xx/Include/ |
| A D | ft32f030x6.h | 481 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Addres… member
|
| A D | ft32f030x8.h | 512 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Addres… member
|
| A D | ft32f072x8.h | 527 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Addres… member
|
| A D | ft32f032x8.h | 521 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Addres… member
|
| A D | ft32f032x6.h | 521 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Addres… member
|
| A D | ft32f072xb.h | 575 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Addres… member
|