Update PTME code #635

Merged
meggert merged 20 commits from update-ptme-code-2 into v4.0.0-dev 2023-05-31 15:23:15 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit f5a7fd2ffe - Show all commits

View File

@ -80,6 +80,7 @@ TODO: New firmware package version.
- PLOC MPSoC special communication is now scheduled, which allows flash read and flash write
commands to work.
- Fixed the MPSoC flash write command.
- HK TM store: The HK store dump success event was triggered for cancelled HK dumps.
# [v2.0.5] 2023-05-11

View File

@ -793,7 +793,7 @@ ReturnValue_t ObjectFactory::createCcsdsComponents(CcsdsComponentArgs& args) {
// Core task which handles the HK store and takes care of dumping it as TM using a VC directly
auto* hkStore = new PersistentSingleTmStoreTask(
objects::HK_STORE_AND_TM_TASK, args.ipcStore, *args.stores.hkStore, *vc,
persTmStore::DUMP_HK_STORE_DONE, persTmStore::DUMP_HK_STORE_DONE, *SdCardManager::instance(),
persTmStore::DUMP_HK_STORE_DONE, persTmStore::DUMP_HK_CANCELLED, *SdCardManager::instance(),
PTME_LOCKED);
hkStore->connectModeTreeParent(satsystem::com::SUBSYSTEM);