1
0
forked from fsfw/fsfw

Today's the day. Renamed platform to framework.

This commit is contained in:
Bastian Baetz
2016-06-15 23:48:41 +02:00
committed by Ulrich Mohr
parent 40987d0b27
commit 1d22a6c97e
356 changed files with 33946 additions and 3 deletions

26
fdir/ConfirmsFailuresIF.h Normal file
View File

@ -0,0 +1,26 @@
/*
* ConfirmsFailuresIF.h
*
* Created on: 10.09.2015
* Author: baetz
*/
#ifndef FRAMEWORK_FDIR_CONFIRMSFAILURESIF_H_
#define FRAMEWORK_FDIR_CONFIRMSFAILURESIF_H_
#include <framework/ipc/MessageQueue.h>
#include <framework/returnvalues/HasReturnvaluesIF.h>
class ConfirmsFailuresIF {
public:
static const uint8_t INTERFACE_ID = HANDLES_FAILURES_IF;
static const ReturnValue_t YOUR_FAULT = MAKE_RETURN_CODE(0);
static const ReturnValue_t MY_FAULT = MAKE_RETURN_CODE(1);
static const ReturnValue_t CONFIRM_LATER = MAKE_RETURN_CODE(2);
virtual ~ConfirmsFailuresIF() {}
virtual MessageQueueId_t getEventReceptionQueue() = 0;
};
#endif /* FRAMEWORK_FDIR_CONFIRMSFAILURESIF_H_ */