Skip to content

Commit

Permalink
Renamed rxStrategy to rxFlags
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-bs committed May 7, 2024
1 parent 2970926 commit cde9b58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/AppLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -654,10 +654,10 @@ void AppLayer::getConfigPayload(uint8_t cmd, uint8_t &port, LoraEncoder &encoder
else if (cmd == CMD_GET_SENSORS_CFG)
{
uint8_t maxSensors;
uint8_t rxStrategy;
weatherSensor.getSensorsCfg(maxSensors, rxStrategy);
uint8_t rxFlags;
weatherSensor.getSensorsCfg(maxSensors, rxFlags);
encoder.writeUint8(maxSensors);
encoder.writeUint8(rxStrategy);
encoder.writeUint8(rxFlags);
port = CMD_GET_SENSORS_CFG;
}
#if defined(MITHERMOMETER_EN) || defined(THEENGSDECODER_EN)
Expand Down

0 comments on commit cde9b58

Please sign in to comment.