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

Add Jeti Ex Bus receiver with telemetry capabilities

This commit is contained in:
Thomas Miric 2016-01-21 18:22:39 +01:00 committed by borisbstyle
parent 7bef1db230
commit bf8c3c88bc
7 changed files with 643 additions and 3 deletions

View file

@ -40,6 +40,7 @@
#include "telemetry/hott.h"
#include "telemetry/smartport.h"
#include "telemetry/ltm.h"
#include "rx/jetiexbus.h"
static telemetryConfig_t *telemetryConfig;
@ -54,7 +55,8 @@ void telemetryInit(void)
initHoTTTelemetry(telemetryConfig);
initSmartPortTelemetry(telemetryConfig);
initLtmTelemetry(telemetryConfig);
initJetiExBusTelemetry(telemetryConfig);
telemetryCheckState();
}
@ -78,6 +80,7 @@ void telemetryCheckState(void)
checkHoTTTelemetryState();
checkSmartPortTelemetryState();
checkLtmTelemetryState();
checkJetiExBusTelemetryState();
}
void telemetryProcess(rxConfig_t *rxConfig, uint16_t deadband3d_throttle)
@ -86,6 +89,7 @@ void telemetryProcess(rxConfig_t *rxConfig, uint16_t deadband3d_throttle)
handleHoTTTelemetry();
handleSmartPortTelemetry();
handleLtmTelemetry();
handleJetiExBusTelemetry();
}
#endif