This commit is contained in:
parent
3e5fae4458
commit
54c2fc9646
@ -953,6 +953,42 @@ void StarTrackerHandler::addSecondaryTmForNormalMode(DeviceCommandId_t cmd) {
|
|||||||
void StarTrackerHandler::resetSecondaryTmSet() {
|
void StarTrackerHandler::resetSecondaryTmSet() {
|
||||||
additionalRequestedTm.clear();
|
additionalRequestedTm.clear();
|
||||||
additionalRequestedTm.emplace(startracker::REQ_TEMPERATURE);
|
additionalRequestedTm.emplace(startracker::REQ_TEMPERATURE);
|
||||||
|
{
|
||||||
|
PoolReadGuard pg(&autoBlobSet);
|
||||||
|
if (pg.getReadResult() == returnvalue::OK) {
|
||||||
|
autoBlobSet.setValidity(false, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PoolReadGuard pg(&matchedCentroidsSet);
|
||||||
|
if (pg.getReadResult() == returnvalue::OK) {
|
||||||
|
matchedCentroidsSet.setValidity(false, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PoolReadGuard pg(&blobSet);
|
||||||
|
if (pg.getReadResult() == returnvalue::OK) {
|
||||||
|
blobSet.setValidity(false, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PoolReadGuard pg(&blobsSet);
|
||||||
|
if (pg.getReadResult() == returnvalue::OK) {
|
||||||
|
blobsSet.setValidity(false, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PoolReadGuard pg(¢roidSet);
|
||||||
|
if (pg.getReadResult() == returnvalue::OK) {
|
||||||
|
centroidSet.setValidity(false, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PoolReadGuard pg(¢roidsSet);
|
||||||
|
if (pg.getReadResult() == returnvalue::OK) {
|
||||||
|
centroidsSet.setValidity(false, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void StarTrackerHandler::bootBootloader() {
|
void StarTrackerHandler::bootBootloader() {
|
||||||
|
Loading…
Reference in New Issue
Block a user