Home
last modified time | relevance | path

Searched refs:brrtemp (Results 1 – 6 of 6) sorted by relevance

/loramac-node-latest/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Inc/
Dstm32l0xx_ll_usart.h1595 register uint32_t brrtemp = 0x0U; in LL_USART_SetBaudRate() local
1600 brrtemp = usartdiv & 0xFFF0U; in LL_USART_SetBaudRate()
1601 brrtemp |= (uint16_t)((usartdiv & (uint16_t)0x000FU) >> 1U); in LL_USART_SetBaudRate()
1602 USARTx->BRR = brrtemp; in LL_USART_SetBaudRate()
/loramac-node-latest/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Src/
Dstm32l0xx_hal_usart.c2082 uint16_t brrtemp = 0x0000U; in USART_SetConfig() local
2147 brrtemp = usartdiv & 0xFFF0U; in USART_SetConfig()
2148 brrtemp |= (uint16_t)((usartdiv & (uint16_t)0x000FU) >> 1U); in USART_SetConfig()
2149 husart->Instance->BRR = brrtemp; in USART_SetConfig()
Dstm32l0xx_hal_uart.c2111 uint16_t brrtemp = 0x0000U; in UART_SetConfig() local
2256 brrtemp = usartdiv & 0xFFF0U; in UART_SetConfig()
2257 brrtemp |= (uint16_t)((uint16_t)(usartdiv & (uint16_t)0x000FU) >> (uint16_t)1U); in UART_SetConfig()
2258 huart->Instance->BRR = brrtemp; in UART_SetConfig()
/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_ll_usart.h1993 register uint32_t brrtemp; in LL_USART_SetBaudRate() local
2002 brrtemp = usartdiv & 0xFFF0U; in LL_USART_SetBaudRate()
2003 brrtemp |= (uint16_t)((usartdiv & (uint16_t)0x000FU) >> 1U); in LL_USART_SetBaudRate()
2004 USARTx->BRR = brrtemp; in LL_USART_SetBaudRate()
/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_usart.c2936 uint16_t brrtemp; in USART_SetConfig() local
3030 brrtemp = (uint16_t)(usartdiv & 0xFFF0U); in USART_SetConfig()
3031 brrtemp |= (uint16_t)((usartdiv & (uint16_t)0x000FU) >> 1U); in USART_SetConfig()
3032 husart->Instance->BRR = brrtemp; in USART_SetConfig()
Dstm32l4xx_hal_uart.c2790 uint16_t brrtemp = 0x0000U; in UART_SetConfig() local
3006 brrtemp = usartdiv & 0xFFF0U; in UART_SetConfig()
3007 brrtemp |= (uint16_t)((usartdiv & (uint16_t)0x000FU) >> 1U); in UART_SetConfig()
3008 huart->Instance->BRR = brrtemp; in UART_SetConfig()