We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc667b commit 2515924Copy full SHA for 2515924
src/loraprs_service.cpp
@@ -735,7 +735,9 @@ void Service::onRadioControlCommand(const std::vector<byte> &rawCommand) {
735
LOG_INFO("Setting new radio parameters");
736
const struct SetHardware * setHardware = reinterpret_cast<const struct SetHardware*>(rawCommand.data());
737
738
+ // TODO, add support for split set hardware
739
config_.LoraFreqRx = be32toh(setHardware->freq);
740
+ config_.LoraFreqTx = be32toh(setHardware->freq);
741
config_.LoraBw = be32toh(setHardware->bw);
742
config_.LoraSf = be16toh(setHardware->sf);
743
config_.LoraCodingRate = be16toh(setHardware->cr);
0 commit comments