eive-obsw/bsp_hosted/fsfwconfig/events/subsystemIdRanges.h
Robin Mueller 8aa412e865
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
add CFDP APID to TCP parse list
2022-09-16 18:10:23 +02:00

17 lines
433 B
C++

#ifndef CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#define CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#include <cstdint>
#include "eive/eventSubsystemIds.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 };
}
#endif /* CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */