eive-obsw/linux/fsfwconfig/events/subsystemIdRanges.h
Ulrich Mohr de856a514b
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
workarounds for MIB build
2022-09-06 22:17:54 +02:00

21 lines
510 B
C++

#ifndef FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#define FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#include <cstdint>
#include <config/commonSubsystemIds.h>
#include "fsfw/events/fwSubsystemIdRanges.h"
/**
* These IDs are part of the ID for an event thrown by a subsystem.
* Numbers 0-80 are reserved for FSFW Subsystem IDs (framework/events/)
*/
namespace SUBSYSTEM_ID {
enum : uint8_t {
SUBSYSTEM_ID_START = COMMON_SUBSYSTEM_ID_END,
CORE = 137,
};
}
#endif /* FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */