Merge pull request #88 from phl0/fixAPRSbeacon
Fix APRS beacon bug (incorrect frequency)
This commit is contained in:
commit
3a3198c851
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ CGPS::~CGPS()
|
|||
|
||||
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()
|
||||
|
|
Loading…
Reference in a new issue