common config files

This commit is contained in:
2021-05-17 16:22:51 +02:00
committed by Robin Mueller
parent 9678af9f3d
commit 41de3d1f00
7 changed files with 81 additions and 72 deletions

View File

@ -0,0 +1,23 @@
#ifndef COMMON_CONFIG_COMMONCLASSIDS_H_
#define COMMON_CONFIG_COMMONCLASSIDS_H_
#include <fsfw/returnvalues/FwClassIds.h>
#include <cstdint>
namespace CLASS_ID {
enum commonClassIds: uint8_t {
MISSION_CLASS_ID_START = FW_CLASS_ID_COUNT,
MGM_LIS3MDL,
MGM_RM3100,
PCDU_HANDLER,
HEATER_HANDLER,
SYRLINKS_HANDLER,
IMTQ_HANDLER,
PLOC_HANDLER,
SUS_HANDLER,
COMMON_CLASS_ID_END
};
}
#endif /* COMMON_CONFIG_COMMONCLASSIDS_H_ */