Skip to content

Commit

Permalink
[SX127x] Fix missing CRC mismatch error (#1236)
Browse files Browse the repository at this point in the history
  • Loading branch information
GUVWAF authored Sep 26, 2024
1 parent a68df0f commit ce673b2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/modules/SX127x/SX127x.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,12 +672,11 @@ int16_t SX127x::readData(uint8_t* data, size_t len) {
// CRC is disabled according to packet header and enabled according to user
// most likely damaged packet header
state = RADIOLIB_ERR_LORA_HEADER_DAMAGED;
} else {
// set FIFO read pointer to the start of the current packet
state = this->mod->SPIgetRegValue(RADIOLIB_SX127X_REG_FIFO_RX_CURRENT_ADDR);
if (state >= 0) {
state = this->mod->SPIsetRegValue(RADIOLIB_SX127X_REG_FIFO_ADDR_PTR, state);
}
}
// set FIFO read pointer to the start of the current packet
int16_t addr = this->mod->SPIgetRegValue(RADIOLIB_SX127X_REG_FIFO_RX_CURRENT_ADDR);
if (addr >= 0) {
this->mod->SPIsetRegValue(RADIOLIB_SX127X_REG_FIFO_ADDR_PTR, addr);
}

} else if(modem == RADIOLIB_SX127X_FSK_OOK) {
Expand Down

0 comments on commit ce673b2

Please sign in to comment.