summaryrefslogtreecommitdiff
path: root/shared-module/board
diff options
context:
space:
mode:
authorMark Olsson <post@markolsson.se>2020-05-18 14:04:55 +0200
committerMark Olsson <post@markolsson.se>2020-05-19 02:02:52 +0200
commit007c92ee6ab8da342dacb8967ef999b6d83596ec (patch)
tree564c9542b91c80f9986d8e7bc05e41f561f0da3c /shared-module/board
parent6a5ab57c18b5a4ba1c80a951ec0ee655677f7d83 (diff)
Enable showing the console on a debug uart
Diffstat (limited to 'shared-module/board')
-rw-r--r--shared-module/board/__init__.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-module/board/__init__.c b/shared-module/board/__init__.c
index 789318a05..0fbf916cd 100644
--- a/shared-module/board/__init__.c
+++ b/shared-module/board/__init__.c
@@ -123,7 +123,7 @@ mp_obj_t common_hal_board_create_uart(void) {
#endif
common_hal_busio_uart_construct(self, tx, rx, rts, cts, rs485_dir, rs485_invert,
- 9600, 8, PARITY_NONE, 1, 1.0f, 64);
+ 9600, 8, PARITY_NONE, 1, 1.0f, 64, NULL, false);
MP_STATE_VM(shared_uart_bus) = MP_OBJ_FROM_PTR(self);
return MP_STATE_VM(shared_uart_bus);
}