aboutsummaryrefslogtreecommitdiff
path: root/src/modules/commander/calibration_routines.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/commander/calibration_routines.h')
-rw-r--r--src/modules/commander/calibration_routines.h38
1 files changed, 37 insertions, 1 deletions
diff --git a/src/modules/commander/calibration_routines.h b/src/modules/commander/calibration_routines.h
index 3c8e49ee9..0f85a9598 100644
--- a/src/modules/commander/calibration_routines.h
+++ b/src/modules/commander/calibration_routines.h
@@ -57,4 +57,40 @@
* @return 0 on success, 1 on failure
*/
int sphere_fit_least_squares(const float x[], const float y[], const float z[],
- unsigned int size, unsigned int max_iterations, float delta, float *sphere_x, float *sphere_y, float *sphere_z, float *sphere_radius); \ No newline at end of file
+ unsigned int size, unsigned int max_iterations, float delta, float *sphere_x, float *sphere_y, float *sphere_z, float *sphere_radius);
+
+// FIXME: Change the name
+static const unsigned max_accel_sens = 3;
+
+// If the order of these are changed the detect_orientation_str routine must be updated as well
+enum detect_orientation_return {
+ DETECT_ORIENTATION_RIGHTSIDE_UP,
+ DETECT_ORIENTATION_UPSIDE_DOWN,
+ DETECT_ORIENTATION_NOSE_DOWN,
+ DETECT_ORIENTATION_TAIL_DOWN,
+ DETECT_ORIENTATION_LEFT,
+ DETECT_ORIENTATION_RIGHT,
+ DETECT_ORIENTATION_ERROR
+};
+static const unsigned detect_orientation_side_count = 6;
+
+/**
+ * Wait for vehicle to become still and detect it's orientation.
+ *
+ * @param mavlink_fd the MAVLink file descriptor to print output to
+ * @param accel_sub Subscription to onboard accel
+ *
+ * @return detect_orientation)_return according to orientation when vehicle is still and ready for measurements,
+ * DETECT_ORIENTATION_ERROR if vehicle is not still after 30s or orientation error is more than 5m/s^2
+ */
+enum detect_orientation_return detect_orientation(int mavlink_fd, int accel_sub);
+
+
+/**
+ * Returns the human readable string representation of the orientation
+ *
+ * @param orientation Orientation to return string for, "error" if buffer is too small
+ *
+ * @return str Returned orientation string
+ */
+const char* detect_orientation_str(enum detect_orientation_return orientation);