Another annoying TM store bug #645

Merged
muellerr merged 4 commits from tm-store-task-base-bugfix into v2.1.0-dev 2023-05-24 11:34:30 +02:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 13fdaf731c - Show all commits

View File

@ -68,6 +68,7 @@ will consitute of a breaking change warranting a new major release:
- PLOC MPSoC special communication is now scheduled, which allows flash read and flash write
commands to work.
- Fixed the MPSoC flash write command.
- Added missing ACS parameter.
- When a PUS parsing error occured while parsing a TM store file, the dump completion procedure
was always executed.

View File

@ -539,6 +539,9 @@ ReturnValue_t AcsParameters::getParameter(uint8_t domainId, uint8_t parameterId,
case 0xA:
parameterWrapper->setVector(nadirModeControllerParameters.quatRef);
break;
case 0xB:
parameterWrapper->setVector(nadirModeControllerParameters.refRotRate);
break;
case 0xC:
parameterWrapper->set(nadirModeControllerParameters.timeElapsedMax);
break;