add 5V stack handler
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
2022-12-21 14:11:31 +01:00
parent 9024460da3
commit b75102f670
8 changed files with 51 additions and 9 deletions

View File

@ -0,0 +1,9 @@
#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; }