Slightly increase timeout while waiting for MARC state to be ready for TX (#1429)

This commit is contained in:
Crsarmv7l 2025-02-19 19:44:01 +01:00 committed by GitHub
parent 648ecbed3b
commit cf776230a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -243,9 +243,10 @@ int16_t CC1101::startTransmit(const uint8_t* data, size_t len, uint8_t addr) {
// Check MARCSTATE and wait until ready to tx
// 724us is the longest time for calibrate per datasheet
// Needs a bit more time for reliability
RadioLibTime_t start = this->mod->hal->micros();
while(SPIgetRegValue(RADIOLIB_CC1101_REG_MARCSTATE, 4, 0) != 0x12) {
if(this->mod->hal->micros() - start > 724) {
if(this->mod->hal->micros() - start > 800) {
standby();
return(RADIOLIB_ERR_TX_TIMEOUT);
}