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

MAVLink telemetry support

This commit is contained in:
Konstantin (DigitalEntity) Sharlaimov 2016-07-26 15:55:29 +03:00 committed by Konstantin Sharlaimov (DigitalEntity)
parent a9d6d60989
commit ff19b5bcff
130 changed files with 49952 additions and 2 deletions

View file

@ -41,6 +41,8 @@
#include "telemetry/smartport.h"
#include "telemetry/ltm.h"
#include "telemetry/jetiexbus.h"
#include "telemetry/mavlink.h"
#include "rx/jetiexbus.h"
static telemetryConfig_t *telemetryConfig;
@ -88,6 +90,7 @@ void telemetryCheckState(void)
checkSmartPortTelemetryState();
checkLtmTelemetryState();
checkJetiExBusTelemetryState();
checkMAVLinkTelemetryState();
}
void telemetryProcess(uint32_t currentTime, rxConfig_t *rxConfig, uint16_t deadband3d_throttle)
@ -97,6 +100,7 @@ void telemetryProcess(uint32_t currentTime, rxConfig_t *rxConfig, uint16_t deadb
handleSmartPortTelemetry();
handleLtmTelemetry();
handleJetiExBusTelemetry();
handleMAVLinkTelemetry();
}
#endif