make rtvals readable for generators (not sure why the other way did not work)
This commit is contained in:
parent
da5890f99a
commit
07e4a6bc5a
@ -9,21 +9,17 @@
|
|||||||
|
|
||||||
namespace acsctrl {
|
namespace acsctrl {
|
||||||
|
|
||||||
static const uint8_t IF_ACS_CTRL_ID = CLASS_ID::ACS_CTRL;
|
static const uint8_t INTERFACE_ID = CLASS_ID::ACS_CTRL;
|
||||||
//! [EXPORT] : [COMMENT] File deletion failed and at least one file is still existent.
|
//! [EXPORT] : [COMMENT] File deletion failed and at least one file is still existent.
|
||||||
static constexpr ReturnValue_t FILE_DELETION_FAILED =
|
static constexpr ReturnValue_t FILE_DELETION_FAILED = MAKE_RETURN_CODE(0xA0);
|
||||||
returnvalue::makeCode(acsctrl::IF_ACS_CTRL_ID, 0);
|
|
||||||
//! [EXPORT] : [COMMENT] Writing the TLE to the file has failed.
|
//! [EXPORT] : [COMMENT] Writing the TLE to the file has failed.
|
||||||
static constexpr ReturnValue_t WRITE_FILE_FAILED =
|
static constexpr ReturnValue_t WRITE_FILE_FAILED = MAKE_RETURN_CODE(0xA1);
|
||||||
returnvalue::makeCode(acsctrl::IF_ACS_CTRL_ID, 1);
|
|
||||||
//! [EXPORT] : [COMMENT] Reading the TLE to the file has failed.
|
//! [EXPORT] : [COMMENT] Reading the TLE to the file has failed.
|
||||||
static constexpr ReturnValue_t READ_FILE_FAILED = returnvalue::makeCode(acsctrl::IF_ACS_CTRL_ID, 2);
|
static constexpr ReturnValue_t MAKE_RETURN_CODE = MAKE_RETURN_CODE(0xA2);
|
||||||
//! [EXPORT] : [COMMENT] A single RW has failed.
|
//! [EXPORT] : [COMMENT] A single RW has failed.
|
||||||
static constexpr ReturnValue_t SINGLE_RW_UNAVAILABLE =
|
static constexpr ReturnValue_t SINGLE_RW_UNAVAILABLE = MAKE_RETURN_CODE(0xA3);
|
||||||
returnvalue::makeCode(acsctrl::IF_ACS_CTRL_ID, 3);
|
|
||||||
//! [EXPORT] : [COMMENT] Multiple RWs have failed.
|
//! [EXPORT] : [COMMENT] Multiple RWs have failed.
|
||||||
static constexpr ReturnValue_t MULTIPLE_RW_UNAVAILABLE =
|
static constexpr ReturnValue_t MULTIPLE_RW_UNAVAILABLE = MAKE_RETURN_CODE(0xA4);
|
||||||
returnvalue::makeCode(acsctrl::IF_ACS_CTRL_ID, 4);
|
|
||||||
|
|
||||||
enum SetIds : uint32_t {
|
enum SetIds : uint32_t {
|
||||||
MGM_SENSOR_DATA,
|
MGM_SENSOR_DATA,
|
||||||
|
Loading…
Reference in New Issue
Block a user