/btstack/port/stm32-l073rz-nucleo-em9304/Drivers/CMSIS/Device/ST/STM32L0xx/Include/ |
H A D | stm32l0xx.h | 200 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument 202 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument 204 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument 206 #define CLEAR_REG(REG) ((REG) = (0x0)) argument 208 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument 210 #define READ_REG(REG) ((REG)) argument 212 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
|
/btstack/port/stm32-f4discovery-cc256x/Drivers/CMSIS/Device/ST/STM32F4xx/Include/ |
H A D | stm32f4xx.h | 228 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument 230 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument 232 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument 234 #define CLEAR_REG(REG) ((REG) = (0x0)) argument 236 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument 238 #define READ_REG(REG) ((REG)) argument 240 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
|
/btstack/port/stm32-wb55xx-nucleo-freertos/Drivers/CMSIS/Device/ST/STM32WBxx/Include/ |
H A D | stm32wbxx.h | 129 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument 131 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument 133 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument 135 #define CLEAR_REG(REG) ((REG) = (0x0)) argument 137 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument 139 #define READ_REG(REG) ((REG)) argument 141 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
|
/btstack/port/stm32-l476rg-nucleo-sx1280/Drivers/CMSIS/Device/ST/STM32L4xx/Include/ |
H A D | stm32l4xx.h | 213 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument 215 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument 217 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument 219 #define CLEAR_REG(REG) ((REG) = (0x0)) argument 221 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument 223 #define READ_REG(REG) ((REG)) argument 225 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
|
/btstack/port/stm32-f4discovery-usb/Drivers/CMSIS/Device/ST/STM32F4xx/Include/ |
H A D | stm32f4xx.h | 212 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument 214 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument 216 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument 218 #define CLEAR_REG(REG) ((REG) = (0x0)) argument 220 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument 222 #define READ_REG(REG) ((REG)) argument 224 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
|
/btstack/port/stm32-l451-miromico-sx1280/Drivers/CMSIS/Device/ST/STM32L4xx/Include/ |
H A D | stm32l4xx.h | 213 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument 215 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument 217 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument 219 #define CLEAR_REG(REG) ((REG) = (0x0)) argument 221 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument 223 #define READ_REG(REG) ((REG)) argument 225 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
|
/btstack/port/stm32-l073rz-nucleo-em9304/Drivers/STM32L0xx_HAL_Driver/Inc/ |
H A D | stm32l0xx_hal_def.h | 62 #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) == (BIT)) argument 63 #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == 0U) argument
|
/btstack/port/stm32-f4discovery-cc256x/Drivers/STM32F4xx_HAL_Driver/Inc/ |
H A D | stm32f4xx_hal_def.h | 62 #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) == (BIT)) argument 63 #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == 0U) argument
|
/btstack/port/stm32-f4discovery-usb/Drivers/STM32F4xx_HAL_Driver/Inc/ |
H A D | stm32f4xx_hal_def.h | 62 #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) == (BIT)) argument 63 #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == 0U) argument
|
/btstack/port/stm32-wb55xx-nucleo-freertos/Drivers/STM32WBxx_HAL_Driver/Inc/ |
H A D | stm32wbxx_hal_def.h | 62 #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) == (BIT)) argument 63 #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == 0U) argument
|
/btstack/port/stm32-l451-miromico-sx1280/Drivers/STM32L4xx_HAL_Driver/Inc/ |
H A D | stm32l4xx_hal_def.h | 62 #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) == (BIT)) argument 63 #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == 0U) argument
|
/btstack/port/stm32-l476rg-nucleo-sx1280/Drivers/STM32L4xx_HAL_Driver/Inc/ |
H A D | stm32l4xx_hal_def.h | 62 #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) == (BIT)) argument 63 #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == 0U) argument
|