this should do the job
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
This commit is contained in:
@ -275,42 +275,5 @@ void AcsBoardAssembly::refreshHelperModes() {
|
||||
}
|
||||
|
||||
ReturnValue_t AcsBoardAssembly::initialize() {
|
||||
// TODO: Fix this
|
||||
// ReturnValue_t result = registerChild(helper.gyro0AdisIdSideA);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// result = registerChild(helper.gyro1L3gIdSideA);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// result = registerChild(helper.gyro2AdisIdSideB);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// result = registerChild(helper.gyro3L3gIdSideB);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// result = registerChild(helper.mgm0Lis3IdSideA);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// result = registerChild(helper.mgm1Rm3100IdSideA);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// result = registerChild(helper.mgm2Lis3IdSideB);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// result = registerChild(helper.mgm3Rm3100IdSideB);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// result = registerChild(helper.gpsId);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
return AssemblyBase::initialize();
|
||||
}
|
||||
|
@ -168,14 +168,6 @@ bool RwAssembly::isUseable(object_id_t object, Mode_t mode) {
|
||||
}
|
||||
|
||||
ReturnValue_t RwAssembly::initialize() {
|
||||
ReturnValue_t result = returnvalue::OK;
|
||||
// TODO: Fix this
|
||||
// for (const auto& obj : helper.rwIds) {
|
||||
// result = registerChild(obj);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// }
|
||||
return SubsystemBase::initialize();
|
||||
}
|
||||
|
||||
|
@ -121,14 +121,6 @@ ReturnValue_t SusAssembly::checkChildrenStateOn(Mode_t wantedMode, Submode_t wan
|
||||
}
|
||||
|
||||
ReturnValue_t SusAssembly::initialize() {
|
||||
ReturnValue_t result = returnvalue::OK;
|
||||
// TODO: Fix this
|
||||
// for (const auto& id : helper.susIds) {
|
||||
// result = registerChild(id);
|
||||
// if (result != returnvalue::OK) {
|
||||
// return result;
|
||||
// }
|
||||
// }
|
||||
return AssemblyBase::initialize();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user