Robin Mueller
9ad34aa395
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
14 lines
212 B
C++
14 lines
212 B
C++
#include "system.h"
|
|
|
|
#include "acsModeTree.h"
|
|
#include "comModeTree.h"
|
|
#include "payloadModeTree.h"
|
|
#include "tcsModeTree.h"
|
|
|
|
void satsystem::init() {
|
|
acs::init();
|
|
pl::init();
|
|
tcs::init();
|
|
com::init();
|
|
}
|