fsfw/tests/src/fsfw_tests/unit/testcfg/events/subsystemIdRanges.h

22 lines
502 B
C
Raw Normal View History

2020-10-20 17:38:41 +02:00
#ifndef CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#define CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#include "fsfw/events/fwSubsystemIdRanges.h"
#include "common/events/commonSubsystemIds.h"
2020-10-20 17:38:41 +02:00
#include <cstdint>
2020-10-20 17:38:41 +02:00
/**
* @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 = COMMON_SUBSYSTEM_ID_RANGE,
SUBSYSTEM_ID_END // [EXPORT] : [END]
2020-10-20 17:38:41 +02:00
};
}
#endif /* CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */