This commit is contained in:
PX4BuildBot
2015-08-14 21:55:31 +00:00
parent 48553b0395
commit 753b694df1
264 changed files with 1794 additions and 1794 deletions
+14 -14
View File
@@ -4,20 +4,20 @@
typedef struct __mavlink_mag_cal_report_t
{
float fitness; ///< RMS milligauss residuals
float ofs_x; ///< X offset
float ofs_y; ///< Y offset
float ofs_z; ///< Z offset
float diag_x; ///< X diagonal (matrix 11)
float diag_y; ///< Y diagonal (matrix 22)
float diag_z; ///< Z diagonal (matrix 33)
float offdiag_x; ///< X off-diagonal (matrix 12 and 21)
float offdiag_y; ///< Y off-diagonal (matrix 13 and 31)
float offdiag_z; ///< Z off-diagonal (matrix 32 and 23)
uint8_t compass_id; ///< Compass being calibrated
uint8_t cal_mask; ///< Bitmask of compasses being calibrated
uint8_t cal_status; ///< Status (see MAG_CAL_STATUS enum)
uint8_t autosaved; ///< 0=requires a MAV_CMD_DO_ACCEPT_MAG_CAL, 1=saved to parameters
float fitness; /*< RMS milligauss residuals*/
float ofs_x; /*< X offset*/
float ofs_y; /*< Y offset*/
float ofs_z; /*< Z offset*/
float diag_x; /*< X diagonal (matrix 11)*/
float diag_y; /*< Y diagonal (matrix 22)*/
float diag_z; /*< Z diagonal (matrix 33)*/
float offdiag_x; /*< X off-diagonal (matrix 12 and 21)*/
float offdiag_y; /*< Y off-diagonal (matrix 13 and 31)*/
float offdiag_z; /*< Z off-diagonal (matrix 32 and 23)*/
uint8_t compass_id; /*< Compass being calibrated*/
uint8_t cal_mask; /*< Bitmask of compasses being calibrated*/
uint8_t cal_status; /*< Status (see MAG_CAL_STATUS enum)*/
uint8_t autosaved; /*< 0=requires a MAV_CMD_DO_ACCEPT_MAG_CAL, 1=saved to parameters*/
} mavlink_mag_cal_report_t;
#define MAVLINK_MSG_ID_MAG_CAL_REPORT_LEN 44