mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Fix PSK Reporter spots of FST4W decodes with power <10 dBm
This commit is contained in:
parent
6adb7d2249
commit
b984390711
@ -3505,9 +3505,8 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
bool okToPost=(nsec > int(4*m_TRperiod)/5);
|
bool okToPost=(nsec > int(4*m_TRperiod)/5);
|
||||||
if(m_mode=="FST4W" and okToPost) {
|
if(m_mode=="FST4W" and okToPost) {
|
||||||
line_read=line_read.left(22) + " CQ " + line_read.trimmed().mid(22);
|
line_read=line_read.left(22) + " CQ " + line_read.trimmed().mid(22);
|
||||||
int n=line_read.trimmed().size();
|
auto p = line_read.lastIndexOf (' ');
|
||||||
line_read=line_read.trimmed().left(n-3);
|
DecodedText FST4W_post {QString::fromUtf8 (line_read.left (p).constData ())};
|
||||||
DecodedText FST4W_post {QString::fromUtf8(line_read.constData())};
|
|
||||||
pskPost(FST4W_post);
|
pskPost(FST4W_post);
|
||||||
} else {
|
} else {
|
||||||
if (stdMsg && okToPost) pskPost(decodedtext);
|
if (stdMsg && okToPost) pskPost(decodedtext);
|
||||||
|
Loading…
Reference in New Issue
Block a user