new dummy helper functions

This commit is contained in:
2022-09-15 11:54:43 +02:00
parent 2261ccb304
commit 3230efa4aa
5 changed files with 70 additions and 2 deletions

13
dummies/helpers.h Normal file
View File

@ -0,0 +1,13 @@
#pragma once
namespace dummy {
struct DummyCfg {
bool addCoreCtrlCfg = true;
bool addPowerDummies = true;
bool addAcsBoardDummies = true;
};
void createDummies(DummyCfg cfg);
}