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

19 lines
499 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
2021-05-17 19:39:35 +02:00
#include <common/config/commonSubsystemIds.h>
2020-09-16 16:22:36 +02:00
#include <fsfw/events/fwSubsystemIdRanges.h>
#include <cstdint>
/**
* 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 {
2021-05-17 16:37:29 +02:00
SUBSYSTEM_ID_START = COMMON_SUBSYSTEM_ID_END
2020-09-16 16:22:36 +02:00
};
}
2020-11-20 18:10:39 +01:00
#endif /* FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */