use new API
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
Robin Müller 2022-08-16 17:43:05 +02:00
parent a669137d5c
commit 595d098653
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC

View File

@ -45,7 +45,8 @@ ReturnValue_t AcsController::initializeLocalDataPool(localpool::DataPool &localD
localDataPoolMap.emplace(acsctrl::PoolIds::MGM_3_RM3100_UT, &mgm3PoolVec);
localDataPoolMap.emplace(acsctrl::PoolIds::MGM_IMTQ_CAL_NT, &imtqMgmPoolVec);
localDataPoolMap.emplace(acsctrl::PoolIds::MGM_IMTQ_CAL_ACT_STATUS, &imtqCalActStatus);
poolManager.subscribeForPeriodicPacket(mgmData.getSid(), false, 5.0, false);
poolManager.subscribeForRegularPeriodicPacket(subdp::RegularHkPeriodicParams(
mgmData.getSid(), false, 5.0));
return HasReturnvaluesIF::RETURN_OK;
}