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

This commit is contained in:
jgromes 2025-02-15 14:48:45 +01:00
parent 558e60b18d
commit c420d69193

View file

@ -2,7 +2,9 @@
#include <math.h>
#if !RADIOLIB_EXCLUDE_SI443X
Si443x::Si443x(Module* mod) : PhysicalLayer(RADIOLIB_SI443X_FREQUENCY_STEP_SIZE, RADIOLIB_SI443X_MAX_PACKET_LENGTH) {
Si443x::Si443x(Module* mod) : PhysicalLayer() {
this->freqStep = RADIOLIB_SI443X_FREQUENCY_STEP_SIZE;
this->maxPacketLength = RADIOLIB_SI443X_MAX_PACKET_LENGTH;
this->mod = mod;
}