Home
last modified time | relevance | path

Searched refs:position (Results 1 – 23 of 23) sorted by relevance

/btstack/port/stm32-l476rg-nucleo-sx1280/Drivers/STM32L4xx_HAL_Driver/Src/
H A Dstm32l4xx_hal_gpio.c174 uint32_t position = 0x00u; in HAL_GPIO_Init() local
185 while (((GPIO_Init->Pin) >> position) != 0x00u) in HAL_GPIO_Init()
188 iocurrent = (GPIO_Init->Pin) & (1uL << position); in HAL_GPIO_Init()
201 temp &= ~(GPIO_OSPEEDR_OSPEED0 << (position * 2u)); in HAL_GPIO_Init()
202 temp |= (GPIO_Init->Speed << (position * 2u)); in HAL_GPIO_Init()
207 temp &= ~(GPIO_OTYPER_OT0 << position) ; in HAL_GPIO_Init()
208 temp |= (((GPIO_Init->Mode & GPIO_OUTPUT_TYPE) >> 4u) << position); in HAL_GPIO_Init()
219 temp &= ~(GPIO_ASCR_ASC0 << position) ; in HAL_GPIO_Init()
220 temp |= (((GPIO_Init->Mode & ANALOG_MODE) >> 3) << position); in HAL_GPIO_Init()
228 temp &= ~(GPIO_PUPDR_PUPD0 << (position * 2u)); in HAL_GPIO_Init()
[all …]
/btstack/port/stm32-l451-miromico-sx1280/Drivers/STM32L4xx_HAL_Driver/Src/
H A Dstm32l4xx_hal_gpio.c174 uint32_t position = 0x00u; in HAL_GPIO_Init() local
185 while (((GPIO_Init->Pin) >> position) != 0x00u) in HAL_GPIO_Init()
188 iocurrent = (GPIO_Init->Pin) & (1uL << position); in HAL_GPIO_Init()
201 temp &= ~(GPIO_OSPEEDR_OSPEED0 << (position * 2u)); in HAL_GPIO_Init()
202 temp |= (GPIO_Init->Speed << (position * 2u)); in HAL_GPIO_Init()
207 temp &= ~(GPIO_OTYPER_OT0 << position) ; in HAL_GPIO_Init()
208 temp |= (((GPIO_Init->Mode & GPIO_OUTPUT_TYPE) >> 4u) << position); in HAL_GPIO_Init()
219 temp &= ~(GPIO_ASCR_ASC0 << position) ; in HAL_GPIO_Init()
220 temp |= (((GPIO_Init->Mode & ANALOG_MODE) >> 3) << position); in HAL_GPIO_Init()
228 temp &= ~(GPIO_PUPDR_PUPD0 << (position * 2u)); in HAL_GPIO_Init()
[all …]
H A Dstm32l4xx_hal_pka.c1800 uint32_t position; in PKA_GetOptBitSize_u8() local
1802 position = 32UL - __CLZ(msb); in PKA_GetOptBitSize_u8()
1804 return (((byteNumber - 1UL) * 8UL) + position); in PKA_GetOptBitSize_u8()
/btstack/port/stm32-f4discovery-cc256x/Drivers/STM32F4xx_HAL_Driver/Src/
H A Dstm32f4xx_hal_gpio.c173 uint32_t position; in HAL_GPIO_Init() local
185 for(position = 0U; position < GPIO_NUMBER; position++) in HAL_GPIO_Init()
188 ioposition = 0x01U << position; in HAL_GPIO_Init()
201 temp = GPIOx->AFR[position >> 3U]; in HAL_GPIO_Init()
202 temp &= ~(0xFU << ((uint32_t)(position & 0x07U) * 4U)) ; in HAL_GPIO_Init()
203 temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & 0x07U) * 4U)); in HAL_GPIO_Init()
204 GPIOx->AFR[position >> 3U] = temp; in HAL_GPIO_Init()
209 temp &= ~(GPIO_MODER_MODER0 << (position * 2U)); in HAL_GPIO_Init()
210 temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2U)); in HAL_GPIO_Init()
221 temp &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2U)); in HAL_GPIO_Init()
[all …]
/btstack/port/stm32-f4discovery-usb/Drivers/STM32F4xx_HAL_Driver/Src/
H A Dstm32f4xx_hal_gpio.c173 uint32_t position; in HAL_GPIO_Init() local
185 for(position = 0U; position < GPIO_NUMBER; position++) in HAL_GPIO_Init()
188 ioposition = 0x01U << position; in HAL_GPIO_Init()
203 temp &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2U)); in HAL_GPIO_Init()
204 temp |= (GPIO_Init->Speed << (position * 2U)); in HAL_GPIO_Init()
209 temp &= ~(GPIO_OTYPER_OT_0 << position) ; in HAL_GPIO_Init()
210 temp |= (((GPIO_Init->Mode & GPIO_OUTPUT_TYPE) >> 4U) << position); in HAL_GPIO_Init()
216 temp &= ~(GPIO_PUPDR_PUPDR0 << (position * 2U)); in HAL_GPIO_Init()
217 temp |= ((GPIO_Init->Pull) << (position * 2U)); in HAL_GPIO_Init()
226 temp = GPIOx->AFR[position >> 3U]; in HAL_GPIO_Init()
[all …]
/btstack/port/stm32-wb55xx-nucleo-freertos/Drivers/STM32WBxx_HAL_Driver/Src/
H A Dstm32wbxx_hal_gpio.c172 uint32_t position = 0x00u; in HAL_GPIO_Init() local
183 while (((GPIO_Init->Pin) >> position) != 0x00u) in HAL_GPIO_Init()
186 iocurrent = (GPIO_Init->Pin) & (1uL << position); in HAL_GPIO_Init()
199 temp = GPIOx->AFR[position >> 3u]; in HAL_GPIO_Init()
200 temp &= ~(0xFu << ((position & 0x07u) * 4u)); in HAL_GPIO_Init()
201 temp |= ((GPIO_Init->Alternate) << ((position & 0x07u) * 4u)); in HAL_GPIO_Init()
202 GPIOx->AFR[position >> 3u] = temp; in HAL_GPIO_Init()
207 temp &= ~(GPIO_MODER_MODE0 << (position * 2u)); in HAL_GPIO_Init()
208 temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2u)); in HAL_GPIO_Init()
219 temp &= ~(GPIO_OSPEEDR_OSPEED0 << (position * 2u)); in HAL_GPIO_Init()
[all …]
/btstack/port/stm32-l073rz-nucleo-em9304/Drivers/STM32L0xx_HAL_Driver/Src/
H A Dstm32l0xx_hal_gpio.c169 uint32_t position = 0x00U; in HAL_GPIO_Init() local
179 while (((GPIO_Init->Pin) >> position) != 0) in HAL_GPIO_Init()
182 iocurrent = (GPIO_Init->Pin) & (1U << position); in HAL_GPIO_Init()
195 temp = GPIOx->AFR[position >> 3U]; in HAL_GPIO_Init()
196 temp &= ~((uint32_t)0xFU << ((uint32_t)(position & (uint32_t)0x07U) * 4U)) ; in HAL_GPIO_Init()
197 … temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & (uint32_t)0x07U) * 4U)) ; in HAL_GPIO_Init()
198 GPIOx->AFR[position >> 3U] = temp; in HAL_GPIO_Init()
209 temp &= ~(GPIO_OSPEEDER_OSPEED0 << (position * 2U)); in HAL_GPIO_Init()
210 temp |= (GPIO_Init->Speed << (position * 2U)); in HAL_GPIO_Init()
215 temp &= ~(GPIO_OTYPER_OT_0 << position) ; in HAL_GPIO_Init()
[all …]
/btstack/src/
H A Dbtstack_util.c77 uint8_t little_endian_read_08(const uint8_t* buffer, int position) { in little_endian_read_08() argument
78 return (uint8_t)buffer[position]; in little_endian_read_08()
80 uint16_t little_endian_read_16(const uint8_t * buffer, int position){ in little_endian_read_16() argument
81 return (uint16_t)(((uint16_t) buffer[position]) | (((uint16_t)buffer[position+1]) << 8)); in little_endian_read_16()
83 uint32_t little_endian_read_24(const uint8_t * buffer, int position){ in little_endian_read_24() argument
84 …return ((uint32_t) buffer[position]) | (((uint32_t)buffer[position+1]) << 8) | (((uint32_t)buffer[ in little_endian_read_24()
86 uint32_t little_endian_read_32(const uint8_t * buffer, int position){ in little_endian_read_32() argument
87 …nt32_t) buffer[position]) | (((uint32_t)buffer[position+1]) << 8) | (((uint32_t)buffer[position+2]… in little_endian_read_32()
90 void little_endian_store_08(uint8_t* buffer, uint16_t position, uint8_t value) { in little_endian_store_08() argument
91 uint16_t pos = position; in little_endian_store_08()
[all …]
H A Dbtstack_util.h117 uint8_t little_endian_read_08(const uint8_t * buffer, int position);
118 uint16_t little_endian_read_16(const uint8_t * buffer, int position);
119 uint32_t little_endian_read_24(const uint8_t * buffer, int position);
120 uint32_t little_endian_read_32(const uint8_t * buffer, int position);
129 void little_endian_store_08(uint8_t * buffer, uint16_t position, uint8_t value);
130 void little_endian_store_16(uint8_t * buffer, uint16_t position, uint16_t value);
131 void little_endian_store_24(uint8_t * buffer, uint16_t position, uint32_t value);
132 void little_endian_store_32(uint8_t * buffer, uint16_t position, uint32_t value);
140 uint32_t big_endian_read_08(const uint8_t* buffer, int position);
141 uint32_t big_endian_read_16(const uint8_t * buffer, int position);
[all …]
/btstack/port/stm32-wb55xx-nucleo-freertos/Drivers/STM32WBxx_HAL_Driver/_htmresc/
H A Dmini-st.css119 position: relative;
128 position: absolute;
169 position: relative;
577 position: relative;
744 position: relative;
752 position: absolute; }
913 position: relative;
944 position: relative;
947 position: absolute;
955 position: relative;
[all …]
/btstack/src/classic/
H A Davdtp_util.h72 uint16_t store_bit16(uint16_t bitmap, int position, uint8_t value);
73 int get_bit16(uint16_t bitmap, int position);
H A Dhfp.h792 int get_bit(uint16_t bitmap, int position);
793 int store_bit(uint32_t bitmap, int position, uint8_t value);
H A Davdtp_util.c190 int get_bit16(uint16_t bitmap, int position){ in get_bit16() argument
191 return (bitmap >> position) & 1; in get_bit16()
194 uint16_t store_bit16(uint16_t bitmap, int position, uint8_t value){ in store_bit16() argument
196 bitmap |= 1 << position; in store_bit16()
198 bitmap &= ~ (1 << position); in store_bit16()
H A Dhfp.c319 int get_bit(uint16_t bitmap, int position){ in get_bit() argument
320 return (bitmap >> position) & 1; in get_bit()
323 int store_bit(uint32_t bitmap, int position, uint8_t value){ in store_bit() argument
325 bitmap |= 1 << position; in store_bit()
327 bitmap &= ~ (1 << position); in store_bit()
/btstack/port/max32630-fthr/scripts/
H A Dmax3263x_hdk.cfg15 target create max32630.cpu cortex_m -chain-position max32630.cpu
/btstack/port/posix-h4-da14531/
H A DREADME.md63 …and set SW1 of the 14531 daughter board into position "BUCK" position marked with an "H" on the le…
/btstack/port/renesas-tb-s1ja-cc256x/template/btstack_example/
H A Dsynergy_cfg.txt19 IWDT Window End Position: 0% (no window end position)
20 IWDT Window Start Position: 100% (no window start position)
26 WDT Window End Position: 0% (no window end position)
27 WDT Window Start Position: 100% (no window start position)
/btstack/port/mtk/LEScan/libs/
HDandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/ ...
/btstack/port/mtk/SPPClient/libs/
HDandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/ ...
/btstack/port/daemon/
H A Dconfigure.ac107 # 64-bit compilation requires position independent code (PIC) for libraries
/btstack/doc/manual/
H A Dbtstack_gettingstarted.tex55 captionpos=b, % sets the caption-position to bottom
/btstack/port/renesas-ek-ra6m4a-da14531/e2-project/
H A Dra_cfg.txt31 OFS0 register settings: Independent WDT: Window End Position: 0% (no window end position)
32 OFS0 register settings: Independent WDT: Window Start Position: 100% (no window start position)
38 OFS0 register settings: WDT: Window End Position: 0% (no window end position)
39 OFS0 register settings: WDT: Window Start Position: 100% (no window start position)
/btstack/port/mtk/docs/
H A Druggear-gettingstarted.tex42 captionpos=b, % sets the caption-position to bottom