1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

Telemetry/AVR/Unify serial driver

This commit is contained in:
PT_Dreamer 2016-12-19 17:54:20 +00:00 committed by Bertrand Songis
parent 2f9d9c1a99
commit f83aef4606
11 changed files with 181 additions and 392 deletions

View file

@ -82,7 +82,7 @@ void processTelemetryData(uint8_t data)
return;
}
#endif
processFrskyTelemetryData(data);
processSerialData(data);
}
#endif
@ -115,7 +115,7 @@ void telemetryWakeup()
if (telemetryProtocol == PROTOCOL_FRSKY_D_SECONDARY) {
uint8_t data;
while (telemetrySecondPortReceive(data)) {
processFrskyTelemetryData(data);
processSerialData(data);
}
}
else {