[nRF24] Use public frequency step and max packet length variables

This commit is contained in:
jgromes 2025-02-15 14:48:23 +01:00
parent 78e2991459
commit e4daea6251

View file

@ -2,7 +2,9 @@
#include <string.h>
#if !RADIOLIB_EXCLUDE_NRF24
nRF24::nRF24(Module* mod) : PhysicalLayer(RADIOLIB_NRF24_FREQUENCY_STEP_SIZE, RADIOLIB_NRF24_MAX_PACKET_LENGTH) {
nRF24::nRF24(Module* mod) : PhysicalLayer() {
this->freqStep = RADIOLIB_NRF24_FREQUENCY_STEP_SIZE;
this->maxPacketLength = RADIOLIB_NRF24_MAX_PACKET_LENGTH;
this->mod = mod;
}