eive-obsw/linux/fsfwconfig/events/subsystemIdRanges.h

21 lines
507 B
C
Raw Normal View History

2020-11-20 18:10:39 +01:00
#ifndef FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#define FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
2020-09-16 16:22:36 +02:00
2022-01-17 15:58:27 +01:00
#include <cstdint>
2022-09-16 12:28:39 +02:00
#include "eive/eventSubsystemIds.h"
2021-05-18 16:17:51 +02:00
#include "fsfw/events/fwSubsystemIdRanges.h"
2020-09-16 16:22:36 +02:00
/**
* 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 {
2022-01-17 15:58:27 +01:00
enum : uint8_t {
SUBSYSTEM_ID_START = COMMON_SUBSYSTEM_ID_END,
2022-04-24 12:34:08 +02:00
CORE = 137,
2020-09-16 16:22:36 +02:00
};
}
2020-11-20 18:10:39 +01:00
#endif /* FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */