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

This commit is contained in:
jgromes 2025-02-15 14:49:01 +01:00
parent 24c7166170
commit 5f1303aaba

View file

@ -2,7 +2,9 @@
#include <math.h>
#if !RADIOLIB_EXCLUDE_SX128X
SX128x::SX128x(Module* mod) : PhysicalLayer(RADIOLIB_SX128X_FREQUENCY_STEP_SIZE, RADIOLIB_SX128X_MAX_PACKET_LENGTH) {
SX128x::SX128x(Module* mod) : PhysicalLayer() {
this->freqStep = RADIOLIB_SX128X_FREQUENCY_STEP_SIZE;
this->maxPacketLength = RADIOLIB_SX128X_MAX_PACKET_LENGTH;
this->mod = mod;
this->irqMap[RADIOLIB_IRQ_TX_DONE] = RADIOLIB_SX128X_IRQ_TX_DONE;
this->irqMap[RADIOLIB_IRQ_RX_DONE] = RADIOLIB_SX128X_IRQ_RX_DONE;