1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 16:25:16 +03:00

PXX2 Rx side should be OK now

This commit is contained in:
Bertrand Songis 2018-11-28 19:39:12 +01:00
parent 9c096b76b3
commit 6568752559
4 changed files with 35 additions and 35 deletions

View file

@ -46,6 +46,7 @@ void processTelemetryData(uint8_t data)
return;
}
#endif
#if defined(MULTIMODULE)
if (telemetryProtocol == PROTOCOL_TELEMETRY_SPEKTRUM) {
processSpektrumTelemetryData(data);
@ -60,6 +61,11 @@ void processTelemetryData(uint8_t data)
return;
}
#endif
if (telemetryProtocol == PROTOCOL_TELEMETRY_PXX2) {
processFrskyPXX2Data(data);
}
processFrskyTelemetryData(data);
}