Define serial_write, it was undefined in the Windows mpy-cross build
This commit is contained in:
parent
ebf0fe0a8c
commit
a43a19728c
|
@ -284,3 +284,7 @@ void nlr_jump_fail(void *val) {
|
|||
printf("FATAL: uncaught NLR %p\n", val);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
void serial_write(const char* text) {
|
||||
printf("%s", text);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue