eive-obsw/fsfwconfig/events/subsystemIdRanges.h

30 lines
639 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
#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 {
SUBSYSTE_ID_START = FW_SUBSYSTEM_ID_RANGE,
2020-09-30 21:49:00 +02:00
PUS_SERVICE_2,
PUS_SERVICE_3,
PUS_SERVICE_5,
PUS_SERVICE_6,
PUS_SERVICE_8,
PUS_SERVICE_23,
2020-12-21 23:09:35 +01:00
MGM_LIS3MDL,
2021-01-28 14:55:21 +01:00
MGM_RM3100,
2021-02-16 15:32:24 +01:00
PCDU_HANDLER,
HEATER_HANDLER,
2021-04-12 10:16:59 +02:00
SA_DEPL_HANDLER,
PLOC_HANDLER
2020-09-16 16:22:36 +02:00
};
}
2020-11-20 18:10:39 +01:00
#endif /* FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */