mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-12-16 12:53:17 +00:00
Scanner in blocking mode for best perf
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user