trying to find out whats wrong

This commit is contained in:
2023-03-31 12:11:31 +02:00
parent 4b1221ab99
commit 795486ae6c
13 changed files with 57 additions and 21 deletions

22
dummies/helperFactory.h Normal file
View File

@ -0,0 +1,22 @@
#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;
bool addPlocDummies = true;
};
void createDummies(DummyCfg cfg, PowerSwitchIF& pwrSwitch, GpioIF* gpioIF);
} // namespace dummy