mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
DSD demod: extend status text to 82 characters. D-Star: add locator space to status text
This commit is contained in:
parent
565d5be3e1
commit
3a6f27474d
@ -498,9 +498,9 @@ void DSDDemodGUI::formatStatusText()
|
||||
if (m_signalFormat != signalFormatDStar)
|
||||
{
|
||||
// 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8
|
||||
// 0....5....0....5....0....5....0....5....0....5....0....5....0....5....0....5....0
|
||||
strcpy(m_formatStatusText, "________/____>________|________>________|____________________|___/_____._");
|
||||
// MY UR RPT1 RPT2 Info Target
|
||||
// 0....5....0....5....0....5....0....5....0....5....0....5....0....5....0....5....0..
|
||||
strcpy(m_formatStatusText, "________/____>________|________>________|____________________|______ ___/_____._");
|
||||
// MY UR RPT1 RPT2 Info Loc Target
|
||||
}
|
||||
|
||||
{
|
||||
@ -524,7 +524,7 @@ void DSDDemodGUI::formatStatusText()
|
||||
memcpy(&m_formatStatusText[41], m_dsdDemod->getDecoder().getDStarDecoder().getInfoText(), 20);
|
||||
}
|
||||
|
||||
m_formatStatusText[80] = '\0';
|
||||
m_formatStatusText[82] = '\0';
|
||||
m_signalFormat = signalFormatDStar;
|
||||
break;
|
||||
case DSDcc::DSDDecoder::DSDSyncDPMR:
|
||||
@ -537,7 +537,7 @@ void DSDDemodGUI::formatStatusText()
|
||||
break;
|
||||
case DSDcc::DSDDecoder::DSDSyncYSF:
|
||||
// 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8
|
||||
// 0....5....0....5....0....5....0....5....0....5....0....5....0....5....0....5....0
|
||||
// 0....5....0....5....0....5....0....5....0....5....0....5....0....5....0....5....0..
|
||||
// C V2 RI 0:7 WL000|ssssssssss>dddddddddd |UUUUUUUUUU>DDDDDDDDDD|44444
|
||||
if (m_dsdDemod->getDecoder().getYSFDecoder().getFICHError() == DSDcc::DSDYSF::FICHNoError)
|
||||
{
|
||||
@ -593,7 +593,7 @@ void DSDDemodGUI::formatStatusText()
|
||||
break;
|
||||
}
|
||||
|
||||
m_formatStatusText[80] = '\0'; // guard
|
||||
m_formatStatusText[82] = '\0'; // guard
|
||||
}
|
||||
|
||||
void DSDDemodGUI::tick()
|
||||
|
@ -94,7 +94,7 @@ private:
|
||||
ChannelMarker m_channelMarker;
|
||||
bool m_basicSettingsShown;
|
||||
bool m_doApplySettings;
|
||||
char m_formatStatusText[80+1]; //!< Fixed signal format dependent status text
|
||||
char m_formatStatusText[82+1]; //!< Fixed signal format dependent status text
|
||||
SignalFormat m_signalFormat;
|
||||
|
||||
ThreadedSampleSink* m_threadedChannelizer;
|
||||
|
@ -59,7 +59,16 @@
|
||||
<property name="spacing">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<item>
|
||||
@ -818,7 +827,7 @@
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>A123456789B123456789C123456789D123456789E123456789F123456789G123456789H123456789I</string>
|
||||
<string>A123456789B123456789C123456789D123456789E123456789F123456789G123456789H123456789I12</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -858,7 +867,16 @@
|
||||
<string>Discriminator Scope</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="scopeContainer">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<item>
|
||||
|
Loading…
Reference in New Issue
Block a user