eive-obsw/dummies/helpers.h
Robin Mueller 0a5b79b8cd
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
extend power switch handling
2022-11-21 14:01:31 +01:00

20 lines
403 B
C++

#pragma once
#include <fsfw/power/PowerSwitchIF.h>
namespace dummy {
struct DummyCfg {
bool addCoreCtrlCfg = true;
bool addPowerDummies = true;
bool addSyrlinksDummies = true;
bool addAcsBoardDummies = true;
bool addSusDummies = true;
bool addTempSensorDummies = true;
bool addRtdComIFDummy = true;
};
void createDummies(DummyCfg cfg, PowerSwitchIF& pwrSwitch);
} // namespace dummy