eive-obsw/linux/fsfwconfig/returnvalues/classIds.h

24 lines
559 B
C
Raw Normal View History

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>
2021-06-11 14:55:28 +02:00
#include <common/config/commonClassIds.h>
2020-10-30 13:30:33 +01:00
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 {
2021-05-17 16:22:51 +02:00
CLASS_ID_START = COMMON_CLASS_ID_END,
2021-05-18 16:14:11 +02:00
SA_DEPL_HANDLER, //SADPL
2021-07-07 20:50:11 +02:00
SD_CARD_MANAGER, //SDMA
SCRATCH_BUFFER, //SCBU
2021-05-18 16:14:11 +02:00
CLASS_ID_END // [EXPORT] : [END]
2020-09-16 16:22:36 +02:00
};
}
2020-11-20 18:10:39 +01:00
#endif /* FSFWCONFIG_RETURNVALUES_CLASSIDS_H_ */