fsfw/tests/src/fsfw_tests/unit/testcfg/events/subsystemIdRanges.h
2021-10-11 16:01:14 +02:00

21 lines
451 B
C++

#ifndef CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#define CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#include "fsfw/events/fwSubsystemIdRanges.h"
#include <cstdint>
/**
* @brief Custom subsystem IDs can be added here
* @details
* Subsystem IDs are used to create unique events.
*/
namespace SUBSYSTEM_ID {
enum: uint8_t {
SUBSYSTEM_ID_START = FW_SUBSYSTEM_ID_RANGE,
SUBSYSTEM_ID_END // [EXPORT] : [END]
};
}
#endif /* CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */