v1.12.0 #269
@ -5,6 +5,7 @@ target_sources(${LIB_EIVE_MISSION} PRIVATE
|
|||||||
PayloadSubsystem.cpp
|
PayloadSubsystem.cpp
|
||||||
|
|
||||||
AcsBoardAssembly.cpp
|
AcsBoardAssembly.cpp
|
||||||
|
RwAssembly.cpp
|
||||||
SusAssembly.cpp
|
SusAssembly.cpp
|
||||||
DualLanePowerStateMachine.cpp
|
DualLanePowerStateMachine.cpp
|
||||||
PowerStateMachineBase.cpp
|
PowerStateMachineBase.cpp
|
||||||
|
7
mission/system/RwAssembly.cpp
Normal file
7
mission/system/RwAssembly.cpp
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#include "RwAssembly.h"
|
||||||
|
|
||||||
|
RwAssembly::RwAssembly(object_id_t objectId, object_id_t parentId, PowerSwitchIF* pwrSwitcher,
|
||||||
|
power::Switch_t switcher, RwHelper helper)
|
||||||
|
: AssemblyBase(objectId, parentId), helper(helper) {
|
||||||
|
|
||||||
|
}
|
21
mission/system/RwAssembly.h
Normal file
21
mission/system/RwAssembly.h
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#ifndef MISSION_SYSTEM_RWASS_H_
|
||||||
|
#define MISSION_SYSTEM_RWASS_H_
|
||||||
|
|
||||||
|
#include <fsfw/devicehandlers/AssemblyBase.h>
|
||||||
|
|
||||||
|
struct RwHelper {
|
||||||
|
RwHelper(std::array<object_id_t, 4> rwIds) : rwIds(rwIds) {}
|
||||||
|
|
||||||
|
std::array<object_id_t, 4> rwIds = {};
|
||||||
|
};
|
||||||
|
|
||||||
|
class RwAssembly: public AssemblyBase {
|
||||||
|
public:
|
||||||
|
RwAssembly(object_id_t objectId, object_id_t parentId, PowerSwitchIF* pwrSwitcher,
|
||||||
|
power::Switch_t switcher, RwHelper helper);
|
||||||
|
private:
|
||||||
|
RwHelper helper;
|
||||||
|
PowerSwitcher pwrSwitcher;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* MISSION_SYSTEM_RWASS_H_ */
|
Loading…
Reference in New Issue
Block a user