Lines Matching refs:uartConfig
221 uart_config_t uartConfig; in HAL_UartInit() local
230 UART_GetDefaultConfig(&uartConfig); in HAL_UartInit()
231 uartConfig.baudRate_Bps = uart_config->baudRate_Bps; in HAL_UartInit()
235 uartConfig.parityMode = kUART_ParityEven; in HAL_UartInit()
239 uartConfig.parityMode = kUART_ParityOdd; in HAL_UartInit()
243 uartConfig.parityMode = kUART_ParityDisabled; in HAL_UartInit()
248 uartConfig.stopBitCount = kUART_TwoStopBit; in HAL_UartInit()
252 uartConfig.stopBitCount = kUART_OneStopBit; in HAL_UartInit()
254 uartConfig.enableRx = (bool)uart_config->enableRx; in HAL_UartInit()
255 uartConfig.enableTx = (bool)uart_config->enableTx; in HAL_UartInit()
257 …status = UART_Init(s_UartAdapterBase[uart_config->instance], &uartConfig, uart_config->srcClock_Hz… in HAL_UartInit()