Skip to content

Commit

Permalink
Adding invalid in state to status code file (#28530)
Browse files Browse the repository at this point in the history
* Adding invalid in state to status code file

* Adding invalid in state to ember

---------

Co-authored-by: abeck-riis <98488327+abeck-riis@users.noreply.github.com>
  • Loading branch information
2 people authored and pull[bot] committed Sep 12, 2023
1 parent b957b2d commit 1389304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/util/af-enums.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,6 @@ enum EmberAfStatus : uint8_t
EMBER_ZCL_STATUS_PATHS_EXHAUSTED = 0xC8,
EMBER_ZCL_STATUS_TIMED_REQUEST_MISMATCH = 0xC9,
EMBER_ZCL_STATUS_FAILSAFE_REQUIRED = 0xCA,
EMBER_ZCL_STATE_INVALID_IN_STATE = 0xCB,
EMBER_ZCL_STATUS_WRITE_IGNORED = 0xF0, // NOT SPEC COMPLIANT FOR TEST ONLY
};
1 change: 1 addition & 0 deletions src/protocols/interaction_model/StatusCodeList.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,6 @@ CHIP_IM_STATUS_CODE(UnsupportedEvent , UNSUPPORTED_EVENT , 0xc7)
CHIP_IM_STATUS_CODE(PathsExhausted , PATHS_EXHAUSTED , 0xc8)
CHIP_IM_STATUS_CODE(TimedRequestMismatch , TIMED_REQUEST_MISMATCH , 0xc9)
CHIP_IM_STATUS_CODE(FailsafeRequired , FAILSAFE_REQUIRED , 0xca)
CHIP_IM_STATUS_CODE(InvalidInState , INVALID_IN_STATE , 0xcb)
CHIP_IM_STATUS_CODE(WriteIgnored , WRITE_IGNORED , 0xF0) // non-spec error code and use only internally
// clang-format on

0 comments on commit 1389304

Please sign in to comment.