eive-obsw/unittest/testcfg/events/subsystemIdRanges.h
Jakob Meier 608644f5f1
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
fixed merge conflicts
2021-10-29 18:43:01 +02:00

20 lines
444 B
C++

#ifndef CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#define CONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#include <cstdint>
#include "commonSubsystemIds.h"
#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_ */