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 /ports/mimxrt10xx | |
| parent | 6a5ab57c18b5a4ba1c80a951ec0ee655677f7d83 (diff) | |
Enable showing the console on a debug uart
Diffstat (limited to 'ports/mimxrt10xx')
| -rw-r--r-- | ports/mimxrt10xx/common-hal/busio/UART.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ports/mimxrt10xx/common-hal/busio/UART.c b/ports/mimxrt10xx/common-hal/busio/UART.c index e3642daf5..fbb45eeea 100644 --- a/ports/mimxrt10xx/common-hal/busio/UART.c +++ b/ports/mimxrt10xx/common-hal/busio/UART.c @@ -76,7 +76,8 @@ void common_hal_busio_uart_construct(busio_uart_obj_t *self, const mcu_pin_obj_t * rts, const mcu_pin_obj_t * cts, const mcu_pin_obj_t * rs485_dir, bool rs485_invert, uint32_t baudrate, uint8_t bits, uart_parity_t parity, uint8_t stop, - mp_float_t timeout, uint16_t receiver_buffer_size) { + mp_float_t timeout, uint16_t receiver_buffer_size, byte* receiver_buffer, + bool sigint_enabled) { // TODO: Allow none rx or tx |
