mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-18 22:05:17 +03:00
Changed serial word length to be 9 bits with parity when HAL is used.
This commit is contained in:
parent
671d453709
commit
a2dd2f9c08
1 changed files with 3 additions and 1 deletions
|
@ -75,7 +75,9 @@ void uartReconfigure(uartPort_t *uartPort)
|
||||||
|
|
||||||
HAL_UART_DeInit(&uartPort->Handle);
|
HAL_UART_DeInit(&uartPort->Handle);
|
||||||
uartPort->Handle.Init.BaudRate = uartPort->port.baudRate;
|
uartPort->Handle.Init.BaudRate = uartPort->port.baudRate;
|
||||||
uartPort->Handle.Init.WordLength = UART_WORDLENGTH_8B;
|
// according to the stm32 documentation wordlen has to be 9 for parity bits
|
||||||
|
// this does not seem to matter for rx but will give bad data on tx!
|
||||||
|
uartPort->Handle.Init.WordLength = (uartPort->port.options & SERIAL_PARITY_EVEN) ? UART_WORDLENGTH_9B : UART_WORDLENGTH_8B;
|
||||||
uartPort->Handle.Init.StopBits = (uartPort->port.options & SERIAL_STOPBITS_2) ? USART_STOPBITS_2 : USART_STOPBITS_1;
|
uartPort->Handle.Init.StopBits = (uartPort->port.options & SERIAL_STOPBITS_2) ? USART_STOPBITS_2 : USART_STOPBITS_1;
|
||||||
uartPort->Handle.Init.Parity = (uartPort->port.options & SERIAL_PARITY_EVEN) ? USART_PARITY_EVEN : USART_PARITY_NONE;
|
uartPort->Handle.Init.Parity = (uartPort->port.options & SERIAL_PARITY_EVEN) ? USART_PARITY_EVEN : USART_PARITY_NONE;
|
||||||
uartPort->Handle.Init.HwFlowCtl = UART_HWCONTROL_NONE;
|
uartPort->Handle.Init.HwFlowCtl = UART_HWCONTROL_NONE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue