2020-09-16 16:22:36 +02:00
|
|
|
#ifndef CONFIG_RETURNVALUES_CLASSIDS_H_
|
|
|
|
#define CONFIG_RETURNVALUES_CLASSIDS_H_
|
|
|
|
|
2020-10-30 13:30:33 +01:00
|
|
|
#include <fsfw/returnvalues/FwClassIds.h>
|
|
|
|
|
2020-09-16 16:22:36 +02:00
|
|
|
/**
|
|
|
|
* 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,
|
2020-09-30 21:49:00 +02:00
|
|
|
MGM_LIS3MDL
|
2020-09-16 16:22:36 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CONFIG_RETURNVALUES_CLASSIDS_H_ */
|