Robin Mueller
bf2d97bd60
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
15 lines
402 B
C++
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_ */
|