Skip to content

Commit

Permalink
Merge pull request #928 from plietar/master
Browse files Browse the repository at this point in the history
[CC1101] Correctly wait for packet end on blocking receive.
  • Loading branch information
jgromes authored Jan 13, 2024
2 parents cb02180 + ab41bca commit d1d6e04
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/modules/CC1101/CC1101.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ int16_t CC1101::receive(uint8_t* data, size_t len) {
int16_t state = startReceive();
RADIOLIB_ASSERT(state);

// wait for packet or timeout
// wait for packet start or timeout
uint32_t start = this->mod->hal->micros();
while(this->mod->hal->digitalRead(this->mod->getIrq())) {
this->mod->hal->yield();
Expand All @@ -151,11 +151,16 @@ int16_t CC1101::receive(uint8_t* data, size_t len) {
}
}

// for some reason, blocking receive will sometimes return impossible packet lengths
// reading packet length again in readData seems to resolve this
size_t length = getPacketLength();
if((length == 0) || (length > RADIOLIB_CC1101_MAX_PACKET_LENGTH)) {
this->packetLengthQueried = false;
// wait for packet end or timeout
start = this->mod->hal->micros();
while(!this->mod->hal->digitalRead(this->mod->getIrq())) {
this->mod->hal->yield();

if(this->mod->hal->micros() - start > timeout) {
standby();
SPIsendCommand(RADIOLIB_CC1101_CMD_FLUSH_RX);
return(RADIOLIB_ERR_RX_TIMEOUT);
}
}

// read packet data
Expand Down

0 comments on commit d1d6e04

Please sign in to comment.