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
Using a very simple program Serial.begin(); Serial.println("Hello World"); works, but Serial.begin(); printf("Hello, world\n"); produces no output.
I had a look at the code, printf() ends up calling ets_vprintf so I assume that that call is not working either.
I haven't done anything unusual yet, just an ESP201 module.
Is there some (undocumented) call to enable mixing of ets_printf with Serial? I know when using the SDK there is some trickery involved in making a workable printf function on the uart in various cases...
The text was updated successfully, but these errors were encountered:
Using a very simple program
Serial.begin(); Serial.println("Hello World");
works, butSerial.begin(); printf("Hello, world\n");
produces no output.I had a look at the code, printf() ends up calling
ets_vprintf
so I assume that that call is not working either.I haven't done anything unusual yet, just an ESP201 module.
Is there some (undocumented) call to enable mixing of ets_printf with Serial? I know when using the SDK there is some trickery involved in making a workable printf function on the uart in various cases...
The text was updated successfully, but these errors were encountered: