This repository was archived by the owner on Oct 22, 2021. It is now read-only.
This repository was archived by the owner on Oct 22, 2021. It is now read-only.
Serial Monitor only shows the incoming data after it receives '\n' character #201
Closed
Description
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:
void setup()
{
Serial.begin(9600);
}
void loop()
{
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
Metadata
Metadata
Assignees
Labels
Type
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
kittaakos commentedon Mar 2, 2020
Fixed. Thank you for the steps and the snippet, @Master811129!
Master811129 commentedon Mar 14, 2020
thanks man.
when can we see 0.0.6?
kittaakos commentedon Mar 14, 2020
Thank you for your detailed bug/feature reports.
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.)
From now on, monitor widget does not expect EOL.