Robin Mueller
0a5b79b8cd
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
20 lines
403 B
C++
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
|