nrf5/uart: Making compile time exclusion of RTS/CTS if not defined to use flow control by board configuration.

This commit is contained in:
Glenn Ruben Bakke 2017-01-03 16:54:33 +01:00
parent 04751defa0
commit 994b1689e3

View File

@ -204,8 +204,11 @@ STATIC mp_obj_t pyb_uart_init_helper(pyb_uart_obj_t *self, mp_uint_t n_args, con
hal_uart_init_t uart_init = {
.rx_pin = MICROPY_HW_UART1_RX,
.tx_pin = MICROPY_HW_UART1_TX,
#if MICROPY_HW_UART1_HWFC
.rts_pin = MICROPY_HW_UART1_RTS,
.cts_pin = MICROPY_HW_UART1_CTS,
#endif
#if MICROPY_HW_UART1_HWFC
.flow_control = true,
#else