drivers: serial: fix renesas ra8 sci_b uart hardware flow control enable
Fixed typo in Renesas RA8 SCI_B UART configuration that was preventing hardware flow control from being enabled. Signed-off-by: Ian Morris <ian.d.morris@outlook.com>
This commit is contained in:
parent
9504034733
commit
44477ad732
1 changed files with 1 additions and 1 deletions
|
@ -1123,7 +1123,7 @@ static void uart_ra_sci_b_eri_isr(const struct device *dev)
|
|||
.parity = UART_CFG_PARITY_NONE, \
|
||||
.stop_bits = UART_CFG_STOP_BITS_1, \
|
||||
.data_bits = UART_CFG_DATA_BITS_8, \
|
||||
.flow_ctrl = COND_CODE_1(DT_NODE_HAS_PROP(idx, hw_flow_control), \
|
||||
.flow_ctrl = COND_CODE_1(DT_INST_PROP(index, hw_flow_control), \
|
||||
(UART_CFG_FLOW_CTRL_RTS_CTS), \
|
||||
(UART_CFG_FLOW_CTRL_NONE)), \
|
||||
}, \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue