Lines Matching refs:uart_config
362 struct uart_config uart_config; member
565 dev_data->uart_config.baudrate = baud_rate;
570 const struct uart_config *cfg)
636 struct uart_config uart_cfg;
680 dev_data->uart_config = *cfg;
733 struct uart_config *cfg)
737 cfg->baudrate = data->uart_config.baudrate;
738 cfg->parity = data->uart_config.parity;
739 cfg->stop_bits = data->uart_config.stop_bits;
740 cfg->data_bits = data->uart_config.data_bits;
741 cfg->flow_ctrl = data->uart_config.flow_ctrl;
875 ret = uart_ns16550_configure(dev, &data->uart_config);
1951 .uart_config.baudrate = DT_INST_PROP_OR(n, current_speed, 0), \
1952 .uart_config.parity = UART_CFG_PARITY_NONE, \
1953 .uart_config.stop_bits = UART_CFG_STOP_BITS_1, \
1954 .uart_config.data_bits = UART_CFG_DATA_BITS_8, \
1955 .uart_config.flow_ctrl = \