WIP: Power Controller for SoC Calculation #668

Closed
meggert wants to merge 4 commits from soc-calculator into v4.0.0-dev
Showing only changes of commit a53f1be710 - Show all commits

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: {