mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-05 11:09:13 -04:00
DSD plugin: added number of sync flips per 32 symbol period display
This commit is contained in:
parent
8935660410
commit
0c94d42c64
@ -41,6 +41,7 @@ public:
|
||||
int getInLevel() const { return m_decoder.getInLevel(); }
|
||||
int getCarrierPos() const { return m_decoder.getCarrierPos(); }
|
||||
int getZeroCrossingPos() const { return m_decoder.getZeroCrossingPos(); }
|
||||
int getNumFlips() const { return m_decoder.getNumFlips(); }
|
||||
int getSamplesPerSymbol() const { return m_decoder.getSamplesPerSymbol(); }
|
||||
DSDcc::DSDDecoder::DSDSyncType getSyncType() const { return m_decoder.getSyncType(); }
|
||||
DSDcc::DSDDecoder::DSDStationType getStationType() const { return m_decoder.getStationType(); }
|
||||
|
@ -497,6 +497,7 @@ void DSDDemodGUI::tick()
|
||||
ui->inLevelText->setText(QString::number(m_dsdDemod->getDecoder().getInLevel()));
|
||||
ui->inCarrierPosText->setText(QString::number(m_dsdDemod->getDecoder().getCarrierPos()));
|
||||
ui->zcPosText->setText(QString::number(m_dsdDemod->getDecoder().getZeroCrossingPos()));
|
||||
ui->syncNumFlipsText->setText(QString::number(m_dsdDemod->getDecoder().getNumFlips()));
|
||||
ui->syncText->setText(QString(m_dsdDemod->getDecoder().getFrameTypeText()));
|
||||
|
||||
formatStatusText();
|
||||
|
@ -249,6 +249,25 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="syncNumFlipsText">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Number of active re-synchronization symbol flips per 32 symbol period</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>00</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="channnelPowerLayout">
|
||||
<item>
|
||||
|
Loading…
Reference in New Issue
Block a user