fsfw/unittests/testcfg/events/subsystemIdRanges.h

21 lines
455 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 <cstdint>
2022-02-02 10:29:30 +01:00
#include "fsfw/events/fwSubsystemIdRanges.h"
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 {
2022-02-02 10:29:30 +01:00
enum : uint8_t {
SUBSYSTEM_ID_START = FW_SUBSYSTEM_ID_RANGE,
SUBSYSTEM_ID_END // [EXPORT] : [END]
2020-10-20 17:38:41 +02:00
};
}
#endif /* CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */