Update Multiprotocol.ino

This commit is contained in:
pascallanger 2019-11-10 09:25:42 +01:00
parent dad3282bbb
commit c83b769f28

View File

@ -618,7 +618,7 @@ void loop()
if(diff>900*2) if(diff>900*2)
{ //If at least 1ms is available update values { //If at least 1ms is available update values
if((diff&0x8000) && !(next_callback&0x8000)) if((diff&0x8000) && !(next_callback&0x8000))
{//Should never get here but it is... {//Should never get here...
debugln("!!!BUG!!!"); debugln("!!!BUG!!!");
break; break;
} }
@ -695,7 +695,7 @@ bool Update_All()
#if ( !( defined(MULTI_TELEMETRY) || defined(MULTI_STATUS) ) ) #if ( !( defined(MULTI_TELEMETRY) || defined(MULTI_STATUS) ) )
if( (protocol == PROTO_FRSKY_RX) || (protocol == PROTO_SCANNER) || (protocol==PROTO_FRSKYD) || (protocol==PROTO_BAYANG) || (protocol==PROTO_NCC1701) || (protocol==PROTO_BUGS) || (protocol==PROTO_BUGSMINI) || (protocol==PROTO_HUBSAN) || (protocol==PROTO_AFHDS2A) || (protocol==PROTO_FRSKYX) || (protocol==PROTO_DSM) || (protocol==PROTO_CABELL) || (protocol==PROTO_HITEC) || (protocol==PROTO_HOTT)) if( (protocol == PROTO_FRSKY_RX) || (protocol == PROTO_SCANNER) || (protocol==PROTO_FRSKYD) || (protocol==PROTO_BAYANG) || (protocol==PROTO_NCC1701) || (protocol==PROTO_BUGS) || (protocol==PROTO_BUGSMINI) || (protocol==PROTO_HUBSAN) || (protocol==PROTO_AFHDS2A) || (protocol==PROTO_FRSKYX) || (protocol==PROTO_DSM) || (protocol==PROTO_CABELL) || (protocol==PROTO_HITEC) || (protocol==PROTO_HOTT))
#endif #endif
if(IS_DISABLE_TELEM_off && !(protocol==PROTO_XN297DUMP)) if(IS_DISABLE_TELEM_off)
TelemetryUpdate(); TelemetryUpdate();
#endif #endif
#ifdef ENABLE_BIND_CH #ifdef ENABLE_BIND_CH