Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_GPS/MovingBase.h
9608 views
1
#pragma once
2
3
#include <AP_Param/AP_Param.h>
4
#include <AP_Math/AP_Math.h>
5
6
class MovingBase {
7
public:
8
static const struct AP_Param::GroupInfo var_info[];
9
10
MovingBase(void);
11
12
/* Do not allow copies */
13
CLASS_NO_COPY(MovingBase);
14
15
enum class Type : int8_t {
16
RelativeToAlternateInstance = 0,
17
RelativeToCustomBase = 1,
18
};
19
20
AP_Enum<Type> type; // an option from MovingBaseType
21
AP_Vector3f base_offset; // base position offset from the selected GPS receiver
22
23
};
24
25