Skip to content

Commit 242063e

Browse files
authored
Merge pull request #2838 from spkuehl/UART_sharedbinding_fix
Fix #2814 Corrected UART output.
2 parents b3b6a64 + a3a2dd0 commit 242063e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/board/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ mp_obj_t board_uart(void) {
113113
}
114114
#else
115115
mp_obj_t board_uart(void) {
116-
mp_raise_NotImplementedError_varg(translate("No default %q bus"), MP_QSTR_SPI);
116+
mp_raise_NotImplementedError_varg(translate("No default %q bus"), MP_QSTR_UART);
117117
return NULL;
118118
}
119119
#endif

0 commit comments

Comments
 (0)