Add optional real-time CFOM to QMAP receiving.

This commit is contained in:
Joe Taylor
2023-12-18 15:28:44 -05:00
parent e211bae779
commit 889531fda6
7 changed files with 195 additions and 111 deletions
+6 -1
View File
@@ -71,7 +71,8 @@ void Astro::astroUpdate(QDateTime t, QString mygrid, QString hisgrid,
&dgrd, &poloffset, &xnr, 6, 6);
datcom_.ndop00=ndop00; //Send self Doppler to decoder, via datcom
// qDebug() << "aa" << isec << datcom_.fcenter << nfreq << ndop00;
m_ndop00=ndop00;
snprintf(cc, sizeof(cc),
"Az: %6.1f\n"
"El: %6.1f\n"
@@ -199,3 +200,7 @@ void Astro::on_cbOnOff_clicked(bool checked)
if(checked) ui->cbAutoCycle->setChecked(false);
}
int Astro::getSelfDop()
{
return m_ndop00;
}