Robin Mueller
e2f8ca752f
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
22 lines
434 B
C++
22 lines
434 B
C++
#pragma once
|
|
|
|
#include <fsfw/power/PowerSwitchIF.h>
|
|
|
|
class GpioIF;
|
|
|
|
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, GpioIF* gpioIF);
|
|
|
|
} // namespace dummy
|