File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,9 @@ uint8 CS_SYNTHETIC_MAG_Z = 25 # 25 - true when we are using a synthesized measur
47
47
uint8 CS_VEHICLE_AT_REST = 26 # 26 - true when the vehicle is at rest
48
48
uint8 CS_GPS_YAW_FAULT = 27 # 27 - true when the GNSS heading has been declared faulty and is no longer being used
49
49
uint8 CS_RNG_FAULT = 28 # 28 - true when the range finder has been declared faulty and is no longer being used
50
- uint8 CS_GNSS_VEL = 44 # 44 - true if GNSS velocity measurements are being fused
50
+ uint8 CS_GNSS_VEL = 44 # 44 - true if GNSS velocity measurement fusion is intended
51
+ uint8 CS_GNSS_FAULT = 45 # 45 - true if GNSS measurements have been declared faulty and are no longer used
52
+ uint8 CS_YAW_MANUAL = 46 # 46 - true if yaw has been set manually
51
53
52
54
uint32 filter_fault_flags # Bitmask to indicate EKF internal faults
53
55
# 0 - true if the fusion of the magnetometer X-axis has encountered a numerical error
Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ bool cs_valid_fake_pos # 41 - true if a valid constant position is bein
49
49
bool cs_constant_pos # 42 - true if the vehicle is at a constant position
50
50
bool cs_baro_fault # 43 - true when the current baro has been declared faulty and is no longer being used
51
51
bool cs_gnss_vel # 44 - true if GNSS velocity measurement fusion is intended
52
+ bool cs_gnss_fault # 45 - true if GNSS measurements have been declared faulty and are no longer used
53
+ bool cs_yaw_manual # 46 - true if yaw has been set manually
52
54
53
55
# fault status
54
56
uint32 fault_status_changes # number of filter fault status (fs) changes
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ uint16 VEHICLE_CMD_REQUEST_CAMERA_INFORMATION = 521 # Request camera information
88
88
uint16 VEHICLE_CMD_SET_CAMERA_MODE = 530 # Set camera capture mode (photo, video, etc.).
89
89
uint16 VEHICLE_CMD_SET_CAMERA_ZOOM = 531 # Set camera zoom.
90
90
uint16 VEHICLE_CMD_SET_CAMERA_FOCUS = 532
91
+ uint16 VEHICLE_CMD_EXTERNAL_ATTITUDE_ESTIMATE = 620 # Set an external estimate of vehicle attitude in degrees.
91
92
uint16 VEHICLE_CMD_DO_GIMBAL_MANAGER_PITCHYAW = 1000 # Setpoint to be sent to a gimbal manager to set a gimbal pitch and yaw.
92
93
uint16 VEHICLE_CMD_DO_GIMBAL_MANAGER_CONFIGURE = 1001 # Gimbal configuration to set which sysid/compid is in primary and secondary control.
93
94
uint16 VEHICLE_CMD_IMAGE_START_CAPTURE = 2000 # Start image capture sequence.
You can’t perform that action at this time.
0 commit comments