Skip to content

Commit 1136514

Browse files
abeck-whirlpoolabeck-riis
authored andcommitted
Adding invalid in state to status code file (#28530)
* Adding invalid in state to status code file * Adding invalid in state to ember --------- Co-authored-by: abeck-riis <[email protected]>
1 parent b07b3bd commit 1136514

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/app/util/af-enums.h

+1
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,6 @@ enum EmberAfStatus : uint8_t
6767
EMBER_ZCL_STATUS_PATHS_EXHAUSTED = 0xC8,
6868
EMBER_ZCL_STATUS_TIMED_REQUEST_MISMATCH = 0xC9,
6969
EMBER_ZCL_STATUS_FAILSAFE_REQUIRED = 0xCA,
70+
EMBER_ZCL_STATE_INVALID_IN_STATE = 0xCB,
7071
EMBER_ZCL_STATUS_WRITE_IGNORED = 0xF0, // NOT SPEC COMPLIANT FOR TEST ONLY
7172
};

src/protocols/interaction_model/StatusCodeList.h

+1
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,6 @@ CHIP_IM_STATUS_CODE(UnsupportedEvent , UNSUPPORTED_EVENT , 0xc7)
6969
CHIP_IM_STATUS_CODE(PathsExhausted , PATHS_EXHAUSTED , 0xc8)
7070
CHIP_IM_STATUS_CODE(TimedRequestMismatch , TIMED_REQUEST_MISMATCH , 0xc9)
7171
CHIP_IM_STATUS_CODE(FailsafeRequired , FAILSAFE_REQUIRED , 0xca)
72+
CHIP_IM_STATUS_CODE(InvalidInState , INVALID_IN_STATE , 0xcb)
7273
CHIP_IM_STATUS_CODE(WriteIgnored , WRITE_IGNORED , 0xF0) // non-spec error code and use only internally
7374
// clang-format on

0 commit comments

Comments
 (0)