mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-08-02 22:12:26 -04:00
Comment out the debug statements
This commit is contained in:
parent
fa6a801411
commit
88b2f29894
@ -66,7 +66,7 @@ void GS232Protocol::readData()
|
|||||||
{
|
{
|
||||||
QString az = matchAzEl.captured(1);
|
QString az = matchAzEl.captured(1);
|
||||||
QString el = matchAzEl.captured(2);
|
QString el = matchAzEl.captured(2);
|
||||||
qDebug() << "GS232Protocol::readData read Az " << az << " El " << el;
|
//qDebug() << "GS232Protocol::readData read Az " << az << " El " << el;
|
||||||
reportAzEl(az.toFloat(), el.toFloat());
|
reportAzEl(az.toFloat(), el.toFloat());
|
||||||
}
|
}
|
||||||
else if (matchAngles.hasMatch())
|
else if (matchAngles.hasMatch())
|
||||||
@ -74,7 +74,7 @@ void GS232Protocol::readData()
|
|||||||
// Convert from +XXXX format to float
|
// Convert from +XXXX format to float
|
||||||
QString az = matchAngles.captured(1);
|
QString az = matchAngles.captured(1);
|
||||||
QString el = matchAngles.captured(2);
|
QString el = matchAngles.captured(2);
|
||||||
qDebug() << "GS232Protocol::readData read direct angles Az " << az << " El " << el;
|
//qDebug() << "GS232Protocol::readData read direct angles Az " << az << " El " << el;
|
||||||
// The format gives angles in tenths of a degree, so divide by 10
|
// The format gives angles in tenths of a degree, so divide by 10
|
||||||
reportAzEl(az.toFloat()/10.0f, el.toFloat()/10.0f);
|
reportAzEl(az.toFloat()/10.0f, el.toFloat()/10.0f);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user