2022-09-20 13:52:17 +02:00
|
|
|
/*
|
|
|
|
* classIds.h
|
|
|
|
*
|
|
|
|
* Created on: 1 Mar 2022
|
|
|
|
* Author: rooob
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ACS_CONFIG_CLASSIDS_H_
|
|
|
|
#define ACS_CONFIG_CLASSIDS_H_
|
2022-09-27 11:57:15 +02:00
|
|
|
|
|
|
|
#include <common/config/commonClassIds.h>
|
|
|
|
#include <fsfw/returnvalues/FwClassIds.h>
|
2022-09-20 13:52:17 +02:00
|
|
|
|
|
|
|
namespace CLASS_ID {
|
|
|
|
enum eiveclassIds: uint8_t {
|
2022-09-27 11:57:15 +02:00
|
|
|
EIVE_CLASS_ID_START = COMMON_CLASS_ID_END,
|
2022-09-20 13:52:17 +02:00
|
|
|
KALMAN,
|
|
|
|
SAFE,
|
|
|
|
PTG,
|
|
|
|
DETUMBLE,
|
|
|
|
EIVE_CLASS_ID_END // [EXPORT] : [END]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* ACS_CONFIG_CLASSIDS_H_ */
|