fsfw/src/fsfw/returnvalues/HasReturnvaluesIF.h

43 lines
1.2 KiB
C
Raw Normal View History

2020-10-29 17:45:06 +01:00
#ifndef FSFW_RETURNVALUES_HASRETURNVALUESIF_H_
#define FSFW_RETURNVALUES_HASRETURNVALUESIF_H_
2020-10-29 17:45:06 +01:00
#include <returnvalues/classIds.h>
2022-02-02 10:29:30 +01:00
#include <cstdint>
2022-02-02 10:29:30 +01:00
#include "FwClassIds.h"
2022-02-02 10:29:30 +01:00
#define MAKE_RETURN_CODE(number) ((INTERFACE_ID << 8) + (number))
typedef uint16_t ReturnValue_t;
2022-07-27 21:43:32 +02:00
namespace result {
static constexpr ReturnValue_t OK = 0;
static constexpr ReturnValue_t FAILED = 1;
static constexpr ReturnValue_t makeCode(uint8_t classId, uint8_t number) {
return (static_cast<ReturnValue_t>(classId) << 8) + number;
}
2022-07-27 21:43:32 +02:00
} // namespace result
class HasReturnvaluesIF {
2022-02-02 10:29:30 +01:00
public:
2022-07-27 21:43:32 +02:00
static const ReturnValue_t RETURN_OK = result::OK;
static const ReturnValue_t RETURN_FAILED = result::FAILED;
virtual ~HasReturnvaluesIF() = default;
2020-06-23 14:12:55 +02:00
2022-02-02 10:29:30 +01:00
/**
* It is discouraged to use the input parameters 0,0 and 0,1 as this
* will generate the RETURN_OK and RETURN_FAILED returnvalues.
* @param interfaceId
* @param number
* @return
*/
2022-07-27 21:43:32 +02:00
[[deprecated("Use result::makeCode instead")]] static constexpr ReturnValue_t makeReturnCode(
uint8_t classId, uint8_t number) {
2022-07-27 21:43:32 +02:00
return result::makeCode(classId, number);
2022-02-02 10:29:30 +01:00
}
};
2020-10-29 17:45:06 +01:00
#endif /* FSFW_RETURNVALUES_HASRETURNVALUESIF_H_ */