Improve GS PTG #876

Merged
meggert merged 5 commits from gs-ptr-improv into main 2024-03-18 11:04:02 +01:00
3 changed files with 10 additions and 1 deletions

View File

@ -16,10 +16,17 @@ will consitute of a breaking change warranting a new major release:
# [unreleased]
- Bumped `eive-fsfw`
## Added
- Added parameter to disable STR input for MEKF.
## Fixed
- Added prevention of sign jump for target quaternion of GS pointing, which would reduce the
performance of the controller.
# [v7.7.2] 2024-03-06
## Fixed

2
fsfw

Submodule fsfw updated: 47b21caf5f...43ea29cb84

View File

@ -244,6 +244,8 @@ void Guidance::limitReferenceRotation(const double xAxisIX[3], double quatIX[4])
return;
}
QuaternionOperations::preventSignJump(quatIX, quatIXprev);
// check required rotation and return if below limit
double quatXprevX[4] = {0, 0, 0, 0}, quatXprevI[4] = {0, 0, 0, 0};
QuaternionOperations::inverse(quatIXprev, quatXprevI);