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:
parent
7bef1db230
commit
bf8c3c88bc
7 changed files with 643 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue