Skip to content
Snippets Groups Projects
Commit 4cfabde4 authored by Sebastian Huber's avatar Sebastian Huber :wrench:
Browse files

Now also flush buffer when waiting for read

parent c61a23e9
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,10 @@ double checkFreeMemory() {
bool Communicator::communicate(){
if (SERCHAN.available() >= SERIAL_BUFFER_SIZE) {
Serial.println("Warning: Serial buffer overflow!");
flushSerialBuffer_(); // Clear it to prevent overflow issues
}
if(!serialCharAvailable_()){ //no communication
if(msElapsedSinceLastTransaction_() > interval_assume_eow_ms_){
//no sign of supervision for 30 minutes, shut down
......@@ -255,3 +259,9 @@ unsigned long Communicator::msElapsedSinceLastTransaction_(){
}
void Communicator::flushSerialBuffer_(){
while (SERCHAN.available()) {
SERCHAN.read(); // Dump any remaining data
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment