Scanner in blocking mode for best perf

This commit is contained in:
pascallanger
2019-11-09 12:10:34 +01:00
parent b07b081a15
commit 2686cd0c48
3 changed files with 37 additions and 42 deletions

View File

@@ -836,7 +836,7 @@ void TelemetryUpdate()
t -= h ;
if ( t < 32 )
{
//debugln("TEL_BUF_FULL %d",t);
debugln("TEL_BUF_FULL %d",t);
return ;
}
/* else
@@ -846,7 +846,7 @@ void TelemetryUpdate()
#endif
#if defined(MULTI_TELEMETRY) || defined(MULTI_STATUS)
uint32_t now = millis();
if (IS_SEND_MULTI_STATUS_on || ((now - lastMulti) > MULTI_TIME))
if ((IS_SEND_MULTI_STATUS_on || ((now - lastMulti) > MULTI_TIME))&& protocol != PROTO_SCANNER)
{
multi_send_status();
SEND_MULTI_STATUS_off;