1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-09 01:14:58 -04:00

BFM demod: RDS GUI part #2: quality metrics report

This commit is contained in:
f4exb
2015-12-14 03:01:44 +01:00
parent 4d156044e4
commit fd8e771543
7 changed files with 315 additions and 10 deletions
+5 -2
View File
@@ -184,18 +184,21 @@ bool RDSDecoder::frameSync(bool bit)
{
if (m_wrongBlocksCounter > 35)
{
/*
qDebug() << "RDSDecoder::frameSync: Lost Sync (Got " << m_wrongBlocksCounter
<< " bad blocks on " << m_blocksCounter
<< " total)";
<< " total)";*/
enter_no_sync();
}
else
{
/*
qDebug() << "RDSDecoder::frameSync: Still Sync-ed (Got " << m_wrongBlocksCounter
<< " bad blocks on " << m_blocksCounter
<< " total)";
<< " total)";*/
}
m_qua = 2.0 * (50 - m_wrongBlocksCounter);
m_blocksCounter = 0;
m_wrongBlocksCounter = 0;
}