2021-05-17 16:22:51 +02:00
|
|
|
#ifndef COMMON_CONFIG_COMMONCLASSIDS_H_
|
|
|
|
#define COMMON_CONFIG_COMMONCLASSIDS_H_
|
|
|
|
|
|
|
|
#include <fsfw/returnvalues/FwClassIds.h>
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace CLASS_ID {
|
|
|
|
enum commonClassIds: uint8_t {
|
2021-05-28 18:39:14 +02:00
|
|
|
COMMON_CLASS_ID_START = FW_CLASS_ID_COUNT,
|
2021-05-18 16:14:11 +02:00
|
|
|
MGM_LIS3MDL, //MGMLIS3
|
|
|
|
MGM_RM3100, //MGMRM3100
|
|
|
|
PCDU_HANDLER, //PCDU
|
|
|
|
HEATER_HANDLER, //HEATER
|
|
|
|
SYRLINKS_HANDLER, //SYRLINKS
|
|
|
|
IMTQ_HANDLER, //IMTQ
|
2021-06-21 09:50:26 +02:00
|
|
|
RW_HANDLER, //Reaction Wheels
|
2021-07-07 12:12:01 +02:00
|
|
|
STR_HANDLER, //Star tracker
|
2021-07-13 08:32:14 +02:00
|
|
|
PLOC_MPSOC_HANDLER, //PLOC MPSoC
|
|
|
|
PLOC_SUPERVISOR_HANDLER, //PLOC Supervisor
|
2021-05-18 16:14:11 +02:00
|
|
|
SUS_HANDLER, //SUSS
|
2021-05-27 14:04:33 +02:00
|
|
|
CCSDS_IP_CORE_BRIDGE, // IP Core interface
|
2021-05-18 16:14:11 +02:00
|
|
|
COMMON_CLASS_ID_END // [EXPORT] : [END]
|
2021-05-17 16:22:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* COMMON_CONFIG_COMMONCLASSIDS_H_ */
|