fsfw-example-common/config/commonSubsystemIds.h

19 lines
442 B
C
Raw Normal View History

2021-06-08 13:46:45 +02:00
#ifndef COMMON_CONFIG_COMMONSUBSYSTEMIDS_H_
#define COMMON_CONFIG_COMMONSUBSYSTEMIDS_H_
#include "fsfw/events/fwSubsystemIdRanges.h"
/**
* The subsystem IDs will be part of the event IDs used throughout the FSFW.
*/
namespace SUBSYSTEM_ID {
enum commonSubsystemId: uint8_t {
COMMON_SUBSYSTEM_ID_START = FW_SUBSYSTEM_ID_RANGE,
2021-06-30 09:59:55 +02:00
TEST_TASK_ID = 105,
2021-06-08 13:46:45 +02:00
COMMON_SUBSYSTEM_ID_END
};
}
#endif /* COMMON_CONFIG_COMMONSUBSYSTEMIDS_H_ */