2021-09-29 09:30:58 +02:00
|
|
|
#ifndef CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
|
|
|
|
#define CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
|
|
|
|
|
|
|
|
#include <cstdint>
|
2021-09-29 10:52:36 +02:00
|
|
|
#include "commonSubsystemIds.h"
|
2021-09-29 09:30:58 +02:00
|
|
|
#include <fsfw/events/fwSubsystemIdRanges.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */
|