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

Used currentTime parameter for beeper and telemetry

This commit is contained in:
Martin Budden 2016-09-17 16:59:49 +01:00
parent 2f9ca4355c
commit c600dc3784
9 changed files with 22 additions and 39 deletions

View file

@ -90,10 +90,10 @@ void telemetryCheckState(void)
checkJetiExBusTelemetryState();
}
void telemetryProcess(rxConfig_t *rxConfig, uint16_t deadband3d_throttle)
void telemetryProcess(uint32_t currentTime, rxConfig_t *rxConfig, uint16_t deadband3d_throttle)
{
handleFrSkyTelemetry(rxConfig, deadband3d_throttle);
handleHoTTTelemetry();
handleHoTTTelemetry(currentTime);
handleSmartPortTelemetry();
handleLtmTelemetry();
handleJetiExBusTelemetry();