diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2020-05-18 18:13:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-18 18:13:31 -0700 |
| commit | 2c2b53303d17e07daa8f7a61740835d30f671a18 (patch) | |
| tree | 9b9197adc9dfc2a7f7a7466abcfc2259f842c16a /shared-module | |
| parent | 32617d5f2fb051d3adf55bf0f4f00f10cc5d74aa (diff) | |
| parent | 007c92ee6ab8da342dacb8967ef999b6d83596ec (diff) | |
Merge pull request #2837 from k0d/serial-debug
Add support for a debug console, such as ST-Link VCP.
Diffstat (limited to 'shared-module')
| -rw-r--r-- | shared-module/board/__init__.c | 2 |
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); } |
