mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-28 22:43:41 -04:00
1. Allow Ftol down to 20 Hz in MSK144 mode.
2. Do not adjust Rx Freq automatically after an MSK144 decode. 3. Insert the Rcvd report in log window. 4. Send MSK144 decodes to PSK Reporter. NB: not all these are fully tested, yet. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7134 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
+5
-4
@@ -78,8 +78,9 @@ float DecodedText::dt()
|
||||
// find and extract any report. Returns true if this is a standard message
|
||||
bool DecodedText::report(QString const& myBaseCall, QString const& dxBaseCall, /*mod*/QString& report)
|
||||
{
|
||||
QString msg=_string.mid(column_qsoText);
|
||||
if(msg.trimmed().length() < 1) return false;
|
||||
QString msg=_string.mid(column_qsoText).trimmed();
|
||||
if(msg.length() < 1) return false;
|
||||
msg=(msg+" ").mid(0,22);
|
||||
int i1=msg.indexOf("\r");
|
||||
if (i1>0)
|
||||
msg=msg.mid(0,i1-1) + " ";
|
||||
@@ -102,7 +103,7 @@ bool DecodedText::report(QString const& myBaseCall, QString const& dxBaseCall, /
|
||||
if (ok and i1>=-50 and i1<50)
|
||||
{
|
||||
report = tt;
|
||||
// qDebug() << "report for " << _string << "::" << report;
|
||||
qDebug() << "A report for " << _string << "::" << report;
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -112,7 +113,7 @@ bool DecodedText::report(QString const& myBaseCall, QString const& dxBaseCall, /
|
||||
if(ok and i1>=-50 and i1<50)
|
||||
{
|
||||
report = tt.mid(1);
|
||||
// qDebug() << "report for " << _string << "::" << report;
|
||||
qDebug() << "B report for " << _string << "::" << report;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user