Add the desciption field to the APRS data for this node/repeater.

This commit is contained in:
Jonathan Naylor 2017-09-03 22:26:13 +01:00
parent 6cd839eb80
commit 2f41b0eaab
5 changed files with 19 additions and 15 deletions

View file

@ -509,8 +509,9 @@ void CYSFGateway::createGPS()
float latitude = m_conf.getLatitude();
float longitude = m_conf.getLongitude();
int height = m_conf.getHeight();
std::string desc = m_conf.getDescription();
m_gps->setInfo(txFrequency, rxFrequency, latitude, longitude, height);
m_gps->setInfo(txFrequency, rxFrequency, latitude, longitude, height, desc);
bool ret = m_gps->open();
if (!ret) {