Skip to content

serial.receive() returns true repeatedly with no traffic #1

@simm42

Description

@simm42

After a successful packet is received and HammingSerial.receive() is called, it will continue to return true for as long as no further traffic is on the underlying Serial device.

I beleive this is undesirable behaviour as the HammingSerial.receive() check is called to determine is there is a packet arrived to process. I think the bug is cuased by the following checks in HammingSerial.receive both being conditional on _serial.available() being true.

  if ((readState == PACKET_READ_STATE_END) && _serial->available()) {
    b = _serial->read();
    if (b == PACKET_START_SYMBOL) {
      readState = PACKET_READ_STATE_START;
    } else {
      readState = PACKET_READ_STATE_UNKNOWN;
      ++errorCount;
      rx_buffer.clear();
    }
  }
  
  while ((readState == PACKET_READ_STATE_UNKNOWN) && _serial->available()) {
    b = _serial->read();
    if (b == PACKET_START_SYMBOL) {
      readState = PACKET_READ_STATE_START;
    } 
  }

I beleive the fix would be to replace the above with:

  if (readState == PACKET_READ_STATE_END) {
    readState = PACKET_READ_STATE_UNKNOWN;
  }
  
  while ((readState == PACKET_READ_STATE_UNKNOWN) && _serial->available()) {
    b = _serial->read();
    if (b == PACKET_START_SYMBOL) {
      readState = PACKET_READ_STATE_START;
    }  else {      
      ++errorCount;
    }
  }

This saves the user from needing to check that both HammingSerial.receive() is true and that rx_buffer.count is non zero before being able to assume a new packet has been received.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions