eive-obsw/mission/system/objects/CamSwitcher.h
Robin Mueller bf2d97bd60
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
continue thermal controller overheating
2023-03-13 15:59:19 +01:00

15 lines
402 B
C++

#ifndef MISSION_SYSTEM_OBJECTS_CAMSWITCHER_H_
#define MISSION_SYSTEM_OBJECTS_CAMSWITCHER_H_
#include <fsfw/power/PowerSwitcherComponent.h>
class CamSwitcher : public PowerSwitcherComponent {
public:
CamSwitcher(object_id_t objectId, PowerSwitchIF &pwrSwitcher, power::Switch_t pwrSwitch);
private:
void performFaultyOperation() override;
};
#endif /* MISSION_SYSTEM_OBJECTS_CAMSWITCHER_H_ */