Lora Config separated for Rx and Tx

This commit is contained in:
richonguzman 2025-10-13 01:33:41 -03:00
parent 92572245cd
commit 2f6f9be28e
5 changed files with 78 additions and 50 deletions

View file

@ -73,13 +73,16 @@ public:
class LoraModule {
public:
long txFreq;
long rxFreq;
bool txActive;
bool rxActive;
int spreadingFactor;
long signalBandwidth;
int codingRate4;
long rxFreq;
int rxSpreadingFactor;
int rxCodingRate4;
long rxSignalBandwidth;
bool txActive;
long txFreq;
int txSpreadingFactor;
int txCodingRate4;
long txSignalBandwidth;
int power;
};