added subsystems
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit

This commit is contained in:
Robin Müller 2022-02-24 15:21:13 +01:00
parent 6955d4a3d9
commit 11fb5f9e81
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
13 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1 @@
#include "AcsBoardAssembly.h"

View File

@ -0,0 +1,8 @@
#ifndef MISSION_SYSTEM_ACSBOARDASSEMBLY_H_
#define MISSION_SYSTEM_ACSBOARDASSEMBLY_H_
#endif /* MISSION_SYSTEM_ACSBOARDASSEMBLY_H_ */

View File

@ -0,0 +1 @@
#include "AcsSubsystem.h"

View File

@ -0,0 +1,8 @@
#ifndef MISSION_SYSTEM_ACSSUBSYSTEM_H_
#define MISSION_SYSTEM_ACSSUBSYSTEM_H_
#endif /* MISSION_SYSTEM_ACSSUBSYSTEM_H_ */

View File

@ -1,2 +1,8 @@
target_sources(${LIB_EIVE_MISSION} PRIVATE
AcsBoardAssembly.cpp
AcsSubsystem.cpp
TcsSubsystem.cpp
EiveSystem.cpp
ComSubsystem.cpp
TcsSubsystem.cpp
)

View File

@ -0,0 +1,3 @@
#include "ComSubsystem.h"

View File

@ -0,0 +1,8 @@
#ifndef MISSION_SYSTEM_COMSUBSYSTEM_H_
#define MISSION_SYSTEM_COMSUBSYSTEM_H_
#endif /* MISSION_SYSTEM_COMSUBSYSTEM_H_ */

View File

@ -0,0 +1,2 @@
#include "EiveSystem.h"

View File

@ -0,0 +1,8 @@
#ifndef MISSION_SYSTEM_EIVESYSTEM_H_
#define MISSION_SYSTEM_EIVESYSTEM_H_
#endif /* MISSION_SYSTEM_EIVESYSTEM_H_ */

View File

@ -0,0 +1,2 @@
#include "PayloadSubsystem.h"

View File

@ -0,0 +1,8 @@
#ifndef MISSION_SYSTEM_PAYLOADSUBSYSTEM_H_
#define MISSION_SYSTEM_PAYLOADSUBSYSTEM_H_
#endif /* MISSION_SYSTEM_PAYLOADSUBSYSTEM_H_ */

View File

@ -0,0 +1 @@
#include "TcsSubsystem.h"

View File

@ -0,0 +1,8 @@
#ifndef MISSION_SYSTEM_TCSSUBSYSTEM_H_
#define MISSION_SYSTEM_TCSSUBSYSTEM_H_
#endif /* MISSION_SYSTEM_TCSSUBSYSTEM_H_ */