Skip to content

Commit

Permalink
Regenerated .matter files
Browse files Browse the repository at this point in the history
  • Loading branch information
lpbeliveau-silabs committed Jan 11, 2024
1 parent be87061 commit a51831f
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2115,6 +2115,11 @@ cluster UserLabel = 65 {
cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
}

bitmap Feature : bitmap32 {
kCheckInProtocolSupport = 0x1;
kUserActiveModeTrigger = 0x2;
Expand Down Expand Up @@ -2158,6 +2163,7 @@ cluster IcdManagement = 70 {
readonly attribute optional int16u clientsSupportedPerFabric = 5;
readonly attribute optional UserActiveModeTriggerBitmap userActiveModeTriggerHint = 6;
readonly attribute optional char_string<128> userActiveModeTriggerInstruction = 7;
readonly attribute optional OperatingModeEnum operatingMode = 8;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down
6 changes: 6 additions & 0 deletions examples/lock-app/lock-common/lock-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1740,6 +1740,11 @@ cluster UserLabel = 65 {
cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
}

bitmap Feature : bitmap32 {
kCheckInProtocolSupport = 0x1;
kUserActiveModeTrigger = 0x2;
Expand Down Expand Up @@ -1783,6 +1788,7 @@ cluster IcdManagement = 70 {
readonly attribute optional int16u clientsSupportedPerFabric = 5;
readonly attribute optional UserActiveModeTriggerBitmap userActiveModeTriggerHint = 6;
readonly attribute optional char_string<128> userActiveModeTriggerInstruction = 7;
readonly attribute optional OperatingModeEnum operatingMode = 8;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down
6 changes: 6 additions & 0 deletions examples/lock-app/qpg/zap/lock.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1396,6 +1396,11 @@ cluster UserLabel = 65 {
cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
}

bitmap Feature : bitmap32 {
kCheckInProtocolSupport = 0x1;
kUserActiveModeTrigger = 0x2;
Expand Down Expand Up @@ -1439,6 +1444,7 @@ cluster IcdManagement = 70 {
readonly attribute optional int16u clientsSupportedPerFabric = 5;
readonly attribute optional UserActiveModeTriggerBitmap userActiveModeTriggerHint = 6;
readonly attribute optional char_string<128> userActiveModeTriggerInstruction = 7;
readonly attribute optional OperatingModeEnum operatingMode = 8;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1716,6 +1716,11 @@ cluster UserLabel = 65 {
cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
}

bitmap Feature : bitmap32 {
kCheckInProtocolSupport = 0x1;
kUserActiveModeTrigger = 0x2;
Expand Down Expand Up @@ -1759,6 +1764,7 @@ cluster IcdManagement = 70 {
readonly attribute optional int16u clientsSupportedPerFabric = 5;
readonly attribute optional UserActiveModeTriggerBitmap userActiveModeTriggerHint = 6;
readonly attribute optional char_string<128> userActiveModeTriggerInstruction = 7;
readonly attribute optional OperatingModeEnum operatingMode = 8;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down
6 changes: 6 additions & 0 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -2848,6 +2848,11 @@ cluster BooleanState = 69 {
cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
}

bitmap Feature : bitmap32 {
kCheckInProtocolSupport = 0x1;
kUserActiveModeTrigger = 0x2;
Expand Down Expand Up @@ -2891,6 +2896,7 @@ cluster IcdManagement = 70 {
readonly attribute optional int16u clientsSupportedPerFabric = 5;
readonly attribute optional UserActiveModeTriggerBitmap userActiveModeTriggerHint = 6;
readonly attribute optional char_string<128> userActiveModeTriggerInstruction = 7;
readonly attribute optional OperatingModeEnum operatingMode = 8;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down

0 comments on commit a51831f

Please sign in to comment.