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
{{ message }}
This repository was archived by the owner on Oct 22, 2021. It is now read-only.
Describe the bug
Serial Monitor only shows the incoming data after it receives '\n' character
To Reproduce
Steps to reproduce the behavior:
Go to 'Arduino Pro IDE v0.0.4'
upload this sketch:
voidsetup()
{
Serial.begin(9600);
}
voidloop()
{
for (uint8_t a=0; a<12; a++)
{
Serial.print("hello world!");
delay(1000);
}
Serial.write('\n');//if you comment this line you CANNOT see anything in serial monitor
}
comment Serial.write('\n');
re-upload the sketch
See the problem
Desktop (please complete the following information):
OS: Win 10
if you comment Serial.write('\n'); line you CANNOT see anything in serial monitor
The text was updated successfully, but these errors were encountered:
I cannot say it for sure; we target the end of March. The release is planned to be shipped with 3rd part boards package (core) support via the Arduino CLI configuration. Plus we want to include full 3rd party, board-specific core settings (#10.)
Describe the bug
Serial Monitor only shows the incoming data after it receives '\n' character
To Reproduce
Steps to reproduce the behavior:
Desktop (please complete the following information):
if you comment Serial.write('\n'); line you CANNOT see anything in serial monitor
The text was updated successfully, but these errors were encountered: