@ -277,5 +277,13 @@ rotate_3f(enum Rotation rot, float &x, float &y, float &z)
x = tmp;
return;
}
case ROTATION_ROLL_90_YAW_270: {
tmp = x;
x = -z;
z = y;
y = -tmp;
@ -84,6 +84,7 @@ enum Rotation {
ROTATION_PITCH_9_YAW_180 = 32,
ROTATION_PITCH_45 = 33,
ROTATION_PITCH_315 = 34,
ROTATION_ROLL_90_YAW_270 = 35,
ROTATION_MAX
};
@ -129,6 +130,7 @@ const rot_lookup_t rot_lookup[] = {
{ 0, 9, 180 },
{ 0, 45, 0 },
{ 0, 315, 0 },
{ 90, 0, 270 },
/**
@ -161,6 +161,7 @@ PARAM_DEFINE_FLOAT(SENS_BARO_QNH, 1013.25f);
* @value 32 Pitch 9°, Yaw 180°
* @value 33 Pitch 45°
* @value 34 Pitch 315°
* @value 35 Roll 90°, Yaw 270°
*
* @reboot_required true