FrSky X telemetry quick fix

This commit is contained in:
pascallanger 2019-11-01 18:42:45 +01:00
parent 5cf2bf2cf5
commit 815cf4fd99
3 changed files with 11 additions and 3 deletions

View File

@ -304,6 +304,9 @@ uint16_t ReadFrSkyX()
break;
case FRSKY_DATA5:
telemetry_set_input_sync(9000);
#if defined TELEMETRY
telemetry_link=1; //Send telemetry out anyway
#endif
len = CC2500_ReadReg(CC2500_3B_RXBYTES | CC2500_READ_BURST) & 0x7F;
if (len && (len<=(0x0E + 3))) //Telemetry frame is 17
{
@ -329,6 +332,7 @@ uint16_t ReadFrSkyX()
packet_count=0;
#if defined TELEMETRY
telemetry_lost=1;
telemetry_link=0; //Stop sending telemetry
#endif
}
CC2500_Strobe(CC2500_SFRX); //Flush the RXFIFO

View File

@ -19,7 +19,7 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 3
#define VERSION_REVISION 0
#define VERSION_PATCH_LEVEL 28
#define VERSION_PATCH_LEVEL 29
//******************
// Protocols

View File

@ -824,9 +824,13 @@ void TelemetryUpdate()
t -= h ;
if ( t < 32 )
{
// debugln("TEL_BUF_FULL");
//debugln("TEL_BUF_FULL %d",t);
return ;
}
/* else
if(t!=96)
debugln("TEL_BUF %d",t);
*/
#endif
#if defined(MULTI_TELEMETRY) || defined(MULTI_STATUS)
uint32_t now = millis();
@ -847,7 +851,7 @@ void TelemetryUpdate()
#endif
#endif
#if defined SPORT_TELEMETRY
if (protocol==PROTO_FRSKYX
if (protocol==PROTO_FRSKYX && telemetry_link
#ifdef TELEMETRY_FRSKYX_TO_FRSKYD
&& mode_select==MODE_SERIAL
#endif