AP_Mount: Align received data to AP frame for Storm32 Serial
(Note: reversed pitch and yaw) to match NED. Update AP_Mount_SToRM32_serial.cpp
This commit is contained in:
parent
6049ee17d5
commit
d8f6956366
@ -271,9 +271,10 @@ void AP_Mount_SToRM32_serial::parse_reply() {
|
||||
break;
|
||||
}
|
||||
|
||||
// Parse angles (Note: reversed pitch and yaw) to match ardupilot coordinate system
|
||||
_current_angle.x = _buffer.data.imu1_roll;
|
||||
_current_angle.y = _buffer.data.imu1_pitch;
|
||||
_current_angle.z = _buffer.data.imu1_yaw;
|
||||
_current_angle.y = -_buffer.data.imu1_pitch;
|
||||
_current_angle.z = -_buffer.data.imu1_yaw;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user