Robin Mueller
699bc520f0
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
23 lines
599 B
C++
23 lines
599 B
C++
#include "comModeTree.h"
|
|
|
|
#include <commonObjects.h>
|
|
#include <fsfw/devicehandlers/DeviceHandlerIF.h>
|
|
#include <fsfw/modes/HasModesIF.h>
|
|
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
|
|
#include <fsfw/subsystem/Subsystem.h>
|
|
|
|
#include "util.h"
|
|
|
|
const auto check = subsystem::checkInsert;
|
|
|
|
static const auto OFF = HasModesIF::MODE_OFF;
|
|
static const auto ON = HasModesIF::MODE_ON;
|
|
static const auto NML = DeviceHandlerIF::MODE_NORMAL;
|
|
|
|
namespace {}
|
|
|
|
void satsystem::com::init() {
|
|
ModeListEntry entry;
|
|
Subsystem* comSubsystem = new Subsystem(objects::COM_SUBSYSTEM, objects::EIVE_SYSTEM, 12, 24);
|
|
}
|