Skip to content

Commit

Permalink
Merge pull request #14 from TMRh20/FixForStaticPayloads
Browse files Browse the repository at this point in the history
Increase ack delay, minor adjustments
  • Loading branch information
TMRh20 authored Mar 10, 2024
2 parents a33fc40 + 33b10b5 commit 5112990
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions src/nrf_to_nrf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,10 @@ uint32_t nrf_to_nrf::addrConv32(uint32_t addr)

nrf_to_nrf::nrf_to_nrf()
{
// Enable auto ack on all pipes by default
for (uint8_t i = 0; i < 8; i++) {
acksPerPipe[i] = true;
}
staticPayloadSize = 32;
DPL = false;
staticPayloadSize = 32;
// Enable auto ack on all pipes by default
setAutoAck(1);
retries = 5;
retryDuration = 5;
ackPayloadsEnabled = false;
Expand Down Expand Up @@ -178,19 +176,23 @@ bool nrf_to_nrf::available(uint8_t* pipe_num)
}
if (NRF_RADIO->EVENTS_CRCOK) {
uint32_t counter = 0;
#if defined CCM_ENCRYPTION_ENABLED
uint8_t tmpIV[CCM_IV_SIZE];
#endif
NRF_RADIO->EVENTS_CRCOK = 0;
if (DPL && radioData[0] > ACTUAL_MAX_PAYLOAD_SIZE - 4 && NRF_RADIO->CRCCNF == RADIO_CRCCNF_LEN_Two) {
if (DPL){
if (radioData[0] > ACTUAL_MAX_PAYLOAD_SIZE - 4 && NRF_RADIO->CRCCNF == RADIO_CRCCNF_LEN_Two) {
NRF_RADIO->TASKS_START = 1;
return 0;
}else
if (DPL && radioData[0] > ACTUAL_MAX_PAYLOAD_SIZE - 3 && NRF_RADIO->CRCCNF == RADIO_CRCCNF_LEN_One) {
}else
if (radioData[0] > ACTUAL_MAX_PAYLOAD_SIZE - 3 && NRF_RADIO->CRCCNF == RADIO_CRCCNF_LEN_One) {
NRF_RADIO->TASKS_START = 1;
return 0;
}else
if (DPL && radioData[0] > ACTUAL_MAX_PAYLOAD_SIZE - 2 && NRF_RADIO->CRCCNF == 0) {
}else
if (radioData[0] > ACTUAL_MAX_PAYLOAD_SIZE - 2 && NRF_RADIO->CRCCNF == 0) {
NRF_RADIO->TASKS_START = 1;
return 0;
}
}

*pipe_num = (uint8_t)NRF_RADIO->RXMATCH;
Expand Down Expand Up @@ -248,7 +250,7 @@ bool nrf_to_nrf::available(uint8_t* pipe_num)
stopListening(false, false);
uint32_t txAddress = NRF_RADIO->TXADDRESS;
NRF_RADIO->TXADDRESS = NRF_RADIO->RXMATCH;
delayMicroseconds(55);
delayMicroseconds(75);
if (ackPayloadsEnabled) {
if (*pipe_num == ackPipe) {
write(&ackBuffer[1], ackBuffer[0], 1, 0);
Expand Down

0 comments on commit 5112990

Please sign in to comment.