2022-09-20 13:52:17 +02:00
|
|
|
#ifndef ACS_CONFIG_CLASSIDS_H_
|
|
|
|
#define ACS_CONFIG_CLASSIDS_H_
|
2022-09-27 11:57:15 +02:00
|
|
|
|
2022-11-04 14:54:23 +01:00
|
|
|
#include <common/config/eive/resultClassIds.h>
|
2022-09-27 11:57:15 +02:00
|
|
|
#include <fsfw/returnvalues/FwClassIds.h>
|
2022-09-20 13:52:17 +02:00
|
|
|
|
|
|
|
namespace CLASS_ID {
|
2022-12-01 15:56:55 +01:00
|
|
|
enum eiveclassIds : uint8_t {
|
|
|
|
EIVE_CLASS_ID_START = COMMON_CLASS_ID_END,
|
|
|
|
KALMAN,
|
|
|
|
SAFE,
|
|
|
|
PTG,
|
|
|
|
DETUMBLE,
|
|
|
|
EIVE_CLASS_ID_END // [EXPORT] : [END]
|
2022-09-20 13:52:17 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ACS_CONFIG_CLASSIDS_H_ */
|