moved fsfwconfig into linux folder

This commit is contained in:
2021-05-17 20:03:56 +02:00
committed by Robin Mueller
parent 64b5867be3
commit 623f52398e
35 changed files with 165 additions and 52 deletions

View File

@ -0,0 +1,18 @@
#ifndef FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#define FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_
#include <common/config/commonSubsystemIds.h>
#include <fsfw/events/fwSubsystemIdRanges.h>
#include <cstdint>
/**
* These IDs are part of the ID for an event thrown by a subsystem.
* Numbers 0-80 are reserved for FSFW Subsystem IDs (framework/events/)
*/
namespace SUBSYSTEM_ID {
enum: uint8_t {
SUBSYSTEM_ID_START = COMMON_SUBSYSTEM_ID_END
};
}
#endif /* FSFWCONFIG_EVENTS_SUBSYSTEMIDRANGES_H_ */