Remove the location information from the new config message.

This commit is contained in:
Jonathan Naylor
2020-08-27 10:13:02 +01:00
parent 01da0ded7f
commit 2349520964
10 changed files with 16 additions and 38 deletions

View File

@@ -35,7 +35,7 @@ public:
CDMRNetwork(const std::string& address, unsigned int port, unsigned int local, unsigned int id, bool duplex, const char* version, bool debug, bool slot1, bool slot2, HW_TYPE hwType);
~CDMRNetwork();
void setConfig(const std::string& callsign, unsigned int rxFrequency, unsigned int txFrequency, unsigned int power, unsigned int colorCode, const std::string& location);
void setConfig(const std::string& callsign, unsigned int rxFrequency, unsigned int txFrequency, unsigned int power, unsigned int colorCode);
bool open();
@@ -78,7 +78,6 @@ private:
unsigned int m_txFrequency;
unsigned int m_power;
unsigned int m_colorCode;
std::string m_location;
CTimer m_pingTimer;
bool writeConfig();