eive-obsw/linux/fsfwconfig/returnvalues/classIds.h
Jakob Meier 0df5070fa6
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
moved sd card manager and local param handler class ids to commonClassIds
2023-02-27 09:03:06 +01:00

22 lines
518 B
C++

#ifndef FSFWCONFIG_RETURNVALUES_CLASSIDS_H_
#define FSFWCONFIG_RETURNVALUES_CLASSIDS_H_
#include <fsfw/returnvalues/FwClassIds.h>
#include "eive/resultClassIds.h"
/**
* 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 {
CLASS_ID_START = COMMON_CLASS_ID_END,
SCRATCH_BUFFER, // SCBU
CLASS_ID_END // [EXPORT] : [END]
};
}
#endif /* FSFWCONFIG_RETURNVALUES_CLASSIDS_H_ */