Inertial commit

This commit is contained in:
2020-04-02 18:32:37 +02:00
commit 93a02c8db2
16 changed files with 1593 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#ifndef HASRETURNVALUESIF_H_
#define HASRETURNVALUESIF_H_
#include <stdint.h>
#define MAKE_RETURN_CODE( number ) ((INTERFACE_ID << 8) + (number))
typedef uint16_t ReturnValue_t;
class HasReturnvaluesIF {
public:
static const ReturnValue_t RETURN_OK = 0;
static const ReturnValue_t RETURN_FAILED = 1;
virtual ~HasReturnvaluesIF() {
}
};
#endif /* HASRETURNVALUESIF_H_ */