Decoder should wait 2 seconds after transmit before trying to decode again

This commit is contained in:
Jordan Sherer 2019-11-20 00:50:52 -05:00
parent f1ffc1de9d
commit 43a6dbc42d

View File

@ -4053,7 +4053,7 @@ bool MainWindow::decode(qint32 k){
return false;
}
int threshold = 1000; // one second
int threshold = 2000; // two seconds
if(isInDecodeDelayThreshold(threshold)){
if(JS8_DEBUG_DECODE) qDebug() << "--> decoder paused for" << threshold << "ms after transmit stop";
return false;