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

This commit is contained in:
jgromes 2025-02-15 14:48:55 +01:00
parent 699f025581
commit 24c7166170

View file

@ -2,7 +2,9 @@
#include <math.h>
#if !RADIOLIB_EXCLUDE_SX127X
SX127x::SX127x(Module* mod) : PhysicalLayer(RADIOLIB_SX127X_FREQUENCY_STEP_SIZE, RADIOLIB_SX127X_MAX_PACKET_LENGTH) {
SX127x::SX127x(Module* mod) : PhysicalLayer() {
this->freqStep = RADIOLIB_SX127X_FREQUENCY_STEP_SIZE;
this->maxPacketLength = RADIOLIB_SX127X_MAX_PACKET_LENGTH;
this->mod = mod;
}