/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Inc/ |
D | stm32l1xx_hal_rcc.h | 873 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN);\ 875 tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN);\ 880 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM9EN);\ 882 tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM9EN);\ 887 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM10EN);\ 889 tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM10EN);\ 894 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM11EN);\ 896 tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM11EN);\ 901 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_ADC1EN);\ 903 tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_ADC1EN);\ [all …]
|
D | stm32l1xx_ll_bus.h | 914 SET_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_EnableClock() 916 tmpreg = READ_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_EnableClock() 945 return (READ_BIT(RCC->APB2ENR, Periphs) == Periphs); in LL_APB2_GRP1_IsEnabledClock() 973 CLEAR_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_DisableClock()
|
D | stm32l1xx_hal_rcc_ex.h | 356 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_SDIOEN);\ 358 tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SDIOEN);\ 361 #define __HAL_RCC_SDIO_CLK_DISABLE() (RCC->APB2ENR &= ~(RCC_APB2ENR_SDIOEN)) 736 #define __HAL_RCC_SDIO_IS_CLK_ENABLED() ((RCC->APB2ENR & (RCC_APB2ENR_SDIOEN)) != RESET) 737 #define __HAL_RCC_SDIO_IS_CLK_DISABLED() ((RCC->APB2ENR & (RCC_APB2ENR_SDIOEN)) == RESET)
|
/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/ |
D | stm32l4xx_hal_rcc.h | 1444 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN); \ 1446 … tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN); \ 1452 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_FWEN); \ 1454 … tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_FWEN); \ 1461 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_SDMMC1EN); \ 1463 … tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SDMMC1EN); \ 1470 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM1EN); \ 1472 … tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_TIM1EN); \ 1478 SET_BIT(RCC->APB2ENR, RCC_APB2ENR_SPI1EN); \ 1480 … tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SPI1EN); \ [all …]
|
D | stm32l4xx_ll_bus.h | 1691 SET_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_EnableClock() 1693 tmpreg = READ_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_EnableClock() 1736 return ((READ_BIT(RCC->APB2ENR, Periphs) == Periphs) ? 1UL : 0UL); in LL_APB2_GRP1_IsEnabledClock() 1776 CLEAR_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_DisableClock()
|
/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Inc/ |
D | stm32l0xx_hal_rcc_ex.h | 869 #define __HAL_RCC_TIM21_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM21EN)) 871 #define __HAL_RCC_TIM22_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM22EN)) 873 #define __HAL_RCC_ADC1_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_ADC1EN)) 874 #define __HAL_RCC_SPI1_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_SPI1EN)) 875 #define __HAL_RCC_USART1_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_USART1EN)) 877 #define __HAL_RCC_TIM21_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM21EN)) 879 #define __HAL_RCC_TIM22_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_TIM22EN)) 881 #define __HAL_RCC_ADC1_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_ADC1EN)) 882 #define __HAL_RCC_SPI1_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_SPI1EN)) 883 #define __HAL_RCC_USART1_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_USART1EN)) [all …]
|
D | stm32l0xx_ll_bus.h | 805 SET_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_EnableClock() 807 tmpreg = READ_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_EnableClock() 836 return (READ_BIT(RCC->APB2ENR, Periphs) == Periphs); in LL_APB2_GRP1_IsEnabledClock() 864 CLEAR_BIT(RCC->APB2ENR, Periphs); in LL_APB2_GRP1_DisableClock()
|
D | stm32l0xx_hal_rcc.h | 795 #define __HAL_RCC_SYSCFG_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_SYSCFGEN)) 796 #define __HAL_RCC_DBGMCU_CLK_ENABLE() SET_BIT(RCC->APB2ENR, (RCC_APB2ENR_DBGMCUEN)) 798 #define __HAL_RCC_SYSCFG_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_SYSCFGEN)) 799 #define __HAL_RCC_DBGMCU_CLK_DISABLE() CLEAR_BIT(RCC->APB2ENR, (RCC_APB2ENR_DBGMCUEN)) 867 #define __HAL_RCC_SYSCFG_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN) != R… 868 #define __HAL_RCC_DBGMCU_IS_CLK_ENABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_DBGMCUEN) != R… 869 #define __HAL_RCC_SYSCFG_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_SYSCFGEN) == R… 870 #define __HAL_RCC_DBGMCU_IS_CLK_DISABLED() (READ_BIT(RCC->APB2ENR, RCC_APB2ENR_DBGMCUEN) == R…
|
/loramac-node-3.7.0/src/boards/SKiM881AXL/cmsis/ |
D | stm32l081xx.h | 422 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral enable register, Ad… member
|
/loramac-node-3.7.0/src/boards/B-L072Z-LRWAN1/cmsis/ |
D | stm32l072xx.h | 439 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral enable register, Ad… member
|
/loramac-node-3.7.0/src/boards/NucleoL073/cmsis/ |
D | stm32l073xx.h | 453 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral enable register, Ad… member
|
/loramac-node-3.7.0/src/boards/SKiM880B/cmsis/ |
D | stm32l151xba.h | 396 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Ad… member
|
/loramac-node-3.7.0/src/boards/SKiM980A/cmsis/ |
D | stm32l151xba.h | 396 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Ad… member
|
/loramac-node-3.7.0/src/boards/NAMote72/cmsis/ |
D | stm32l152xc.h | 440 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Ad… member
|
/loramac-node-3.7.0/src/boards/NucleoL152/cmsis/ |
D | stm32l152xe.h | 449 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Ad… member
|
/loramac-node-3.7.0/src/boards/NucleoL476/cmsis/ |
D | stm32l476xx.h | 728 …__IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clocks enable register, … member
|