-
Notifications
You must be signed in to change notification settings - Fork 141
Closed
Description
Serial.flush is skipping the last 8 characters of serial output! Sketch:
void setup() {
Serial.begin(115200);
Serial.println("Sending some text that needs to be displayed, It's a rather long text, so it is still sending whern Serial.flush() kicks in");
Serial.flush();
Serial.println();
Serial.println("Also with shorter texts");
Serial.flush();
}
void loop() {
}
Correct output on a LoRa 32:
Sending some text that needs to be displayed, It's a rather long text, so it is still sending whern Serial.flush() kicks in
Also with shorter texts
Broken output on a CobeCell board:
Sending some text that needs to be displayed, It's a rather long text, so it is still sending whern Serial.flush() k
Also with shorte
lyusupov
Metadata
Metadata
Assignees
Labels
No labels