Define serial_write, it was undefined in the Windows mpy-cross build

This commit is contained in:
Jeff Epler 2020-01-25 14:40:38 -06:00
parent ebf0fe0a8c
commit a43a19728c
1 changed files with 4 additions and 0 deletions

View File

@ -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);
}