fsfw/src/fsfw/internalerror/InternalErrorDataset.h

23 lines
718 B
C++

#ifndef FSFW_INTERNALERROR_INTERNALERRORDATASET_H_
#define FSFW_INTERNALERROR_INTERNALERRORDATASET_H_
#include <cstdint>
#include <fsfw/objectmanager/SystemObjectIF.h>
enum errorPoolIds { TM_HITS, QUEUE_HITS, STORE_HITS };
class InternalErrorDataset {
public:
static constexpr uint8_t ERROR_SET_ID = 0;
InternalErrorDataset(void* owner) {}
InternalErrorDataset(object_id_t objectId) {}
// lp_var_t<uint32_t> tmHits = lp_var_t<uint32_t>(sid.objectId, TM_HITS, this);
// lp_var_t<uint32_t> queueHits = lp_var_t<uint32_t>(sid.objectId, QUEUE_HITS, this);
// lp_var_t<uint32_t> storeHits = lp_var_t<uint32_t>(sid.objectId, STORE_HITS, this);
};
#endif /* FSFW_INTERNALERROR_INTERNALERRORDATASET_H_ */