mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-18 06:38:29 -04:00
GCS_MAVLink: LTM telemetry support
This commit is contained in:
parent
018d6bd35b
commit
6e961b55eb
@ -13,6 +13,7 @@
|
|||||||
#include <AP_AdvancedFailsafe/AP_AdvancedFailsafe.h>
|
#include <AP_AdvancedFailsafe/AP_AdvancedFailsafe.h>
|
||||||
#include <AP_RTC/JitterCorrection.h>
|
#include <AP_RTC/JitterCorrection.h>
|
||||||
#include <AP_Common/Bitmask.h>
|
#include <AP_Common/Bitmask.h>
|
||||||
|
#include <AP_LTM_Telem/AP_LTM_Telem.h>
|
||||||
#include <AP_Devo_Telem/AP_Devo_Telem.h>
|
#include <AP_Devo_Telem/AP_Devo_Telem.h>
|
||||||
#include <RC_Channel/RC_Channel.h>
|
#include <RC_Channel/RC_Channel.h>
|
||||||
#include <AP_Filesystem/AP_Filesystem_Available.h>
|
#include <AP_Filesystem/AP_Filesystem_Available.h>
|
||||||
@ -870,6 +871,8 @@ public:
|
|||||||
AP_Frsky_Telem *frsky;
|
AP_Frsky_Telem *frsky;
|
||||||
|
|
||||||
#if !HAL_MINIMIZE_FEATURES
|
#if !HAL_MINIMIZE_FEATURES
|
||||||
|
// LTM backend
|
||||||
|
AP_LTM_Telem ltm_telemetry;
|
||||||
// Devo backend
|
// Devo backend
|
||||||
AP_DEVO_Telem devo_telemetry;
|
AP_DEVO_Telem devo_telemetry;
|
||||||
#endif
|
#endif
|
||||||
|
@ -1971,6 +1971,7 @@ void GCS::setup_uarts()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if !HAL_MINIMIZE_FEATURES
|
#if !HAL_MINIMIZE_FEATURES
|
||||||
|
ltm_telemetry.init();
|
||||||
devo_telemetry.init();
|
devo_telemetry.init();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user