i hate this crap
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2023-04-03 19:04:21 +02:00
parent 8404ce237b
commit a26d71f745
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 2 additions and 2 deletions

View File

@ -342,5 +342,5 @@ bool AcsBoardAssembly::isGpsUsable(uint8_t targetSubmode) const {
if (gpsIter != childrenMap.end() and gpsIter->second.mode == mode) {
return true;
}
return false;
return true;
}

View File

@ -74,7 +74,7 @@ bool DualLaneAssemblyBase::isModeCommandable(object_id_t object, Mode_t mode) {
return true;
}
// Check for external control health state is done by base class.
return false;
return true;
}
ReturnValue_t DualLaneAssemblyBase::pwrStateMachineWrapper() {