2020-10-20 17:38:41 +02:00
|
|
|
#ifndef CONFIG_RETURNVALUES_CLASSIDS_H_
|
|
|
|
#define CONFIG_RETURNVALUES_CLASSIDS_H_
|
|
|
|
|
2021-10-07 13:24:46 +02:00
|
|
|
#include "fsfw/returnvalues/FwClassIds.h"
|
2020-10-20 17:38:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief CLASS_ID defintions which are required for custom returnvalues.
|
|
|
|
*/
|
|
|
|
namespace CLASS_ID {
|
|
|
|
enum {
|
2022-02-02 10:29:30 +01:00
|
|
|
MISSION_CLASS_ID_START = FW_CLASS_ID_COUNT,
|
2020-10-20 17:38:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_RETURNVALUES_CLASSIDS_H_ */
|