mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-07-27 00:48:23 +08:00
fix(simulation): revert SIH wind sign regression from #27376
This commit is contained in:
@@ -625,7 +625,7 @@ void Sih::ecefToNed()
|
||||
|
||||
// Transform velocity to NED frame
|
||||
_v_N = C_SE * _v_E;
|
||||
_v_apparent_N = _v_N - _v_wind_N;
|
||||
_v_apparent_N = _v_N + _v_wind_N;
|
||||
|
||||
_q = Quatf(C_SE) * _q_E;
|
||||
_q.normalize();
|
||||
|
||||
Reference in New Issue
Block a user