1
0
Fork 0

Merge pull request #88 from phl0/fixAPRSbeacon

Fix APRS beacon bug (incorrect frequency)
ycs232-kbc
Jonathan Naylor 7 years ago committed by GitHub
commit 3a3198c851

@ -51,7 +51,7 @@ CGPS::~CGPS()
void CGPS::setInfo(unsigned int txFrequency, unsigned int rxFrequency, float latitude, float longitude, int height) void CGPS::setInfo(unsigned int txFrequency, unsigned int rxFrequency, float latitude, float longitude, int height)
{ {
m_writer.setInfo(rxFrequency, rxFrequency, latitude, longitude, height); m_writer.setInfo(txFrequency, rxFrequency, latitude, longitude, height);
} }
bool CGPS::open() bool CGPS::open()

Loading…
Cancel
Save