fsfw/unittests/testcfg/events/subsystemIdRanges.h
Robin Mueller 8465670374
Some checks failed
fsfw/fsfw/pipeline/pr-development There was a failure building this commit
separate unittest folder
2022-07-18 11:42:51 +02:00

21 lines
455 B
C++

#ifndef CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#define CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#include <cstdint>
#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,
SUBSYSTEM_ID_END // [EXPORT] : [END]
};
}
#endif /* CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */