diff options
| author | Mark Olsson <post@markolsson.se> | 2020-05-18 14:04:55 +0200 |
|---|---|---|
| committer | Mark Olsson <post@markolsson.se> | 2020-05-19 02:02:52 +0200 |
| commit | 007c92ee6ab8da342dacb8967ef999b6d83596ec (patch) | |
| tree | 564c9542b91c80f9986d8e7bc05e41f561f0da3c /shared-bindings/busio/UART.c | |
| parent | 6a5ab57c18b5a4ba1c80a951ec0ee655677f7d83 (diff) | |
Enable showing the console on a debug uart
Diffstat (limited to 'shared-bindings/busio/UART.c')
| -rw-r--r-- | shared-bindings/busio/UART.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/busio/UART.c b/shared-bindings/busio/UART.c index f231924d5..a448abb78 100644 --- a/shared-bindings/busio/UART.c +++ b/shared-bindings/busio/UART.c @@ -140,7 +140,7 @@ STATIC mp_obj_t busio_uart_make_new(const mp_obj_type_t *type, size_t n_args, co common_hal_busio_uart_construct(self, tx, rx, rts, cts, rs485_dir, rs485_invert, args[ARG_baudrate].u_int, bits, parity, stop, timeout, - args[ARG_receiver_buffer_size].u_int); + args[ARG_receiver_buffer_size].u_int, NULL, false); return (mp_obj_t)self; } |
