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

Telemetry/AVR/Function renaming

renamed processSerialData to processTelemetryData acording to PR review
This commit is contained in:
PT_Dreamer 2017-02-03 01:24:51 +00:00 committed by Bertrand Songis
parent b87fddf3e7
commit fbd881f8d9
6 changed files with 8 additions and 8 deletions

View file

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