2020-11-20 18:10:39 +01:00
|
|
|
#ifndef FSFWCONFIG_RETURNVALUES_CLASSIDS_H_
|
|
|
|
#define FSFWCONFIG_RETURNVALUES_CLASSIDS_H_
|
2020-09-16 16:22:36 +02:00
|
|
|
|
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-12-21 23:09:35 +01:00
|
|
|
MGM_LIS3MDL,
|
2021-01-23 17:22:40 +01:00
|
|
|
MGM_RM3100,
|
2021-01-28 14:55:21 +01:00
|
|
|
LINUX_LIBGPIO_IF,
|
2021-03-05 12:57:42 +01:00
|
|
|
LINUX_SPI_COM_IF,
|
2021-02-16 15:32:24 +01:00
|
|
|
PCDU_HANDLER,
|
|
|
|
HEATER_HANDLER,
|
2021-02-19 15:41:50 +01:00
|
|
|
SA_DEPL_HANDLER,
|
|
|
|
SYRLINKS_HANDLER,
|
2020-09-16 16:22:36 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-20 18:10:39 +01:00
|
|
|
#endif /* FSFWCONFIG_RETURNVALUES_CLASSIDS_H_ */
|