guess i never pushed this
All checks were successful
EIVE/eive-obsw/pipeline/pr-v4.0.0-dev This commit looks good
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Marius Eggert 2023-06-15 17:51:32 +02:00
parent 824f445ee1
commit a53f1be710

View File

@ -25,6 +25,15 @@ ReturnValue_t PowerController::handleCommandMessage(CommandMessage *message) {
return result;
}
MessageQueueId_t PowerController::getCommandQueue() const { return commandQueue->getId(); }
ReturnValue_t PowerController::getParameter(uint8_t domainId, uint8_t parameterId,
ParameterWrapper *parameterWrapper,
const ParameterWrapper *newValues,
uint16_t startAtIndex) {
return returnvalue::FAILED;
}
void PowerController::performControlOperation() {
switch (internalState) {
case InternalState::STARTUP: {