v1.10.0 #220

Merged
meierj merged 592 commits from develop into main 2022-04-22 07:42:20 +02:00
96 changed files with 3168 additions and 897 deletions
Showing only changes of commit e95d25db66 - Show all commits

View File

@ -4,9 +4,7 @@
TcsSubsystem::TcsSubsystem(object_id_t objectId, object_id_t parentId, PowerSwitchIF* pwrSwitcher,
power::Switch_t theSwitch, TcsBoardHelper helper)
: AssemblyBase(objectId, parentId, 24),
switcher(pwrSwitcher, theSwitch),
helper(helper) {}
: AssemblyBase(objectId, parentId, 24), switcher(pwrSwitcher, theSwitch), helper(helper) {}
void TcsSubsystem::performChildOperation() {
switcher.doStateMachine();

View File

@ -13,12 +13,13 @@ struct TcsBoardHelper {
class TcsSubsystem : public AssemblyBase {
public:
TcsSubsystem(object_id_t objectId, object_id_t parentId, PowerSwitchIF *pwrSwitcher,
TcsSubsystem(object_id_t objectId, object_id_t parentId, PowerSwitchIF* pwrSwitcher,
power::Switch_t switcher, TcsBoardHelper helper);
ReturnValue_t initialize() override;
void performChildOperation() override;
private:
static constexpr uint8_t NUMBER_RTDS = 16;
PowerSwitcher switcher;

2
tmtc

Submodule tmtc updated: c2bdb2326b...46c327101e