Small tweak to allow immediate HK generation #158

Merged
muellerr merged 3 commits from small-hk-tweak into develop 2023-07-17 10:37:40 +02:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit a26b0c38ac - Show all commits

View File

@ -34,4 +34,6 @@ void PeriodicHousekeepingHelper::changeCollectionInterval(float newIntervalSecon
}
collectionInterval = newIntervalSeconds;
hkGenerationCd.setTimeout(intervalMs);
// We want an immediate HK packet at the start, so time out the generation CD immediately.
hkGenerationCd.timeOut();
}