eive-obsw/mission/system/objects/Stack5VHandler.cpp
Robin Mueller b75102f670
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
add 5V stack handler
2022-12-21 14:11:31 +01:00

10 lines
317 B
C++

#include "Stack5VHandler.h"
Stack5VHandler::Stack5VHandler(PowerSwitchIF& switcher) : switcher(switcher) {}
ReturnValue_t Stack5VHandler::commandSwitchOn() { return returnvalue::OK; }
ReturnValue_t Stack5VHandler::commandSwitchOff() { return returnvalue::OK; }
bool Stack5VHandler::isSwitchOn() { return false; }