mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-16 05:11:49 -05:00
DSD decoder: NXDN: support for EFR vocoder only with DV serial
This commit is contained in:
parent
12380d4e51
commit
5f120fb2cb
@ -666,8 +666,9 @@ void DSDDemod::formatStatusText()
|
||||
{
|
||||
// 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..
|
||||
// RC cc mm llllll ssss
|
||||
snprintf(m_formatStatusText, 82, "RC %02d %02X %06X %02X",
|
||||
// RC r cc mm llllll ssss
|
||||
snprintf(m_formatStatusText, 82, "RC %s %02d %02X %06X %02X",
|
||||
getDecoder().getNXDNDecoder().isFullRate() ? "F" : "H",
|
||||
getDecoder().getNXDNDecoder().getRAN(),
|
||||
getDecoder().getNXDNDecoder().getMessageType(),
|
||||
getDecoder().getNXDNDecoder().getLocationId(),
|
||||
@ -683,9 +684,10 @@ void DSDDemod::formatStatusText()
|
||||
{
|
||||
// 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..
|
||||
// Rx cc mm sssss>gddddd
|
||||
snprintf(m_formatStatusText, 82, "%s %02d %02X %05d>%c%05d",
|
||||
// Rx r cc mm sssss>gddddd
|
||||
snprintf(m_formatStatusText, 82, "%s %s %02d %02X %05d>%c%05d",
|
||||
getDecoder().getNXDNDecoder().getRFChannelStr(),
|
||||
getDecoder().getNXDNDecoder().isFullRate() ? "F" : "H",
|
||||
getDecoder().getNXDNDecoder().getRAN(),
|
||||
getDecoder().getNXDNDecoder().getMessageType(),
|
||||
getDecoder().getNXDNDecoder().getSourceId(),
|
||||
|
Loading…
Reference in New Issue
Block a user