25 lines
509 B
C++
25 lines
509 B
C++
#ifndef FSFWCONFIG_RETURNVALUES_CLASSIDS_H_
|
|
#define FSFWCONFIG_RETURNVALUES_CLASSIDS_H_
|
|
|
|
#include <fsfw/returnvalues/FwClassIds.h>
|
|
|
|
/**
|
|
* Source IDs starts at 73 for now
|
|
* Framework IDs for ReturnValues run from 0 to 56
|
|
* and are located inside <fsfw/returnvalues/FwClassIds.h>
|
|
*/
|
|
namespace CLASS_ID {
|
|
enum {
|
|
MISSION_CLASS_ID_START = FW_CLASS_ID_COUNT,
|
|
MGM_LIS3MDL,
|
|
MGM_RM3100,
|
|
LINUX_LIBGPIO_IF,
|
|
PCDU_HANDLER,
|
|
HEATER_HANDLER,
|
|
SA_DEPL_HANDLER
|
|
};
|
|
}
|
|
|
|
|
|
#endif /* FSFWCONFIG_RETURNVALUES_CLASSIDS_H_ */
|