You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even UART output is not really built into Embedded Swift -- the standard Swift functions that produce text output like print() are currently just redirected to putchar() calls, and we expect that the underlaying platform provides that. IIUC, the ESP SDK routes putchar into the JTAG-forwarded UART (on JTAG enabled boards).
I've found that I'm able to
print
via Swift on my esp32c*, but I cannot figure out how to read serial input.Is this built into Swift at all, or do I need to drop into c calls?
The text was updated successfully, but these errors were encountered: