[SX127x] Use public frequency step and max packet length variables
This commit is contained in:
parent
699f025581
commit
24c7166170
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue