Skip to content

Commit 9f1a3dd

Browse files
zap_regen_all
1 parent 4063db4 commit 9f1a3dd

39 files changed

+3551
-3551
lines changed

docs/zap_clusters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ Generally regenerate using one of:
112112
| 1069 | 0x42D | Pm10ConcentrationMeasurement |
113113
| 1070 | 0x42E | TotalVolatileOrganicCompoundsConcentrationMeasurement |
114114
| 1071 | 0x42F | RadonConcentrationMeasurement |
115+
| 1105 | 0x451 | WiFiNetworkManagement |
115116
| 1283 | 0x503 | WakeOnLan |
116117
| 1284 | 0x504 | Channel |
117118
| 1285 | 0x505 | TargetNavigator |
@@ -127,7 +128,6 @@ Generally regenerate using one of:
127128
| 1295 | 0x50F | ContentControl |
128129
| 1296 | 0x510 | ContentAppObserver |
129130
| 2820 | 0xB04 | ElectricalMeasurement |
130-
| 3072 | 0xC00 | WiFiNetworkManagement |
131131
| 4294048773 | 0xFFF1FC05 | UnitTesting |
132132
| 4294048774 | 0xFFF1FC06 | FaultInjection |
133133
| 4294048800 | 0xFFF1FC20 | SampleMei |

examples/network-manager-app/network-manager-common/network-manager-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ cluster GroupKeyManagement = 63 {
11761176
}
11771177

11781178
/** Functionality to retrieve operational information about a managed Wi-Fi network. */
1179-
cluster WiFiNetworkManagement = 3072 {
1179+
cluster WiFiNetworkManagement = 1105 {
11801180
revision 1;
11811181

11821182
readonly attribute nullable octet_string<32> ssid = 1;

src/controller/data_model/controller-clusters.matter

+20-20
Original file line numberDiff line numberDiff line change
@@ -7654,6 +7654,26 @@ cluster RadonConcentrationMeasurement = 1071 {
76547654
readonly attribute int16u clusterRevision = 65533;
76557655
}
76567656

7657+
/** Functionality to retrieve operational information about a managed Wi-Fi network. */
7658+
cluster WiFiNetworkManagement = 1105 {
7659+
revision 1;
7660+
7661+
readonly attribute nullable octet_string<32> ssid = 1;
7662+
readonly attribute command_id generatedCommandList[] = 65528;
7663+
readonly attribute command_id acceptedCommandList[] = 65529;
7664+
readonly attribute event_id eventList[] = 65530;
7665+
readonly attribute attrib_id attributeList[] = 65531;
7666+
readonly attribute bitmap32 featureMap = 65532;
7667+
readonly attribute int16u clusterRevision = 65533;
7668+
7669+
response struct NetworkPassphraseResponse = 1 {
7670+
octet_string<64> passphrase = 0;
7671+
}
7672+
7673+
/** Request the current WPA-Personal passphrase or PSK associated with the managed Wi-Fi network. */
7674+
command access(invoke: administer) NetworkPassphraseRequest(): NetworkPassphraseResponse = 0;
7675+
}
7676+
76577677
/** This cluster provides an interface for managing low power mode on a device that supports the Wake On LAN protocol. */
76587678
cluster WakeOnLan = 1283 {
76597679
revision 1;
@@ -8855,26 +8875,6 @@ deprecated cluster ElectricalMeasurement = 2820 {
88558875
command GetMeasurementProfileCommand(GetMeasurementProfileCommandRequest): DefaultSuccess = 1;
88568876
}
88578877

8858-
/** Functionality to retrieve operational information about a managed Wi-Fi network. */
8859-
cluster WiFiNetworkManagement = 3072 {
8860-
revision 1;
8861-
8862-
readonly attribute nullable octet_string<32> ssid = 1;
8863-
readonly attribute command_id generatedCommandList[] = 65528;
8864-
readonly attribute command_id acceptedCommandList[] = 65529;
8865-
readonly attribute event_id eventList[] = 65530;
8866-
readonly attribute attrib_id attributeList[] = 65531;
8867-
readonly attribute bitmap32 featureMap = 65532;
8868-
readonly attribute int16u clusterRevision = 65533;
8869-
8870-
response struct NetworkPassphraseResponse = 1 {
8871-
octet_string<64> passphrase = 0;
8872-
}
8873-
8874-
/** Request the current WPA-Personal passphrase or PSK associated with the managed Wi-Fi network. */
8875-
command access(invoke: administer) NetworkPassphraseRequest(): NetworkPassphraseResponse = 0;
8876-
}
8877-
88788878
/** The Test Cluster is meant to validate the generated code */
88798879
internal cluster UnitTesting = 4294048773 {
88808880
revision 1; // NOTE: Default/not specifically set

0 commit comments

Comments
 (0)