Skip to content

Commit 09324e7

Browse files
authored
Fix xml tag name for wake on lan cluster (#31714)
* fix name of globalAttribute (global is not a thing) * Zap regen
1 parent e03a83c commit 09324e7

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

examples/all-clusters-app/all-clusters-common/all-clusters-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -6302,7 +6302,7 @@ cluster RadonConcentrationMeasurement = 1071 {
63026302

63036303
/** This cluster provides an interface for managing low power mode on a device that supports the Wake On LAN protocol. */
63046304
cluster WakeOnLan = 1283 {
6305-
revision 1; // NOTE: Default/not specifically set
6305+
revision 1;
63066306

63076307
readonly attribute optional char_string<12> MACAddress = 0;
63086308
readonly attribute optional octet_string<16> linkLocalAddress = 1;

examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -4453,7 +4453,7 @@ cluster OccupancySensing = 1030 {
44534453

44544454
/** This cluster provides an interface for managing low power mode on a device that supports the Wake On LAN protocol. */
44554455
cluster WakeOnLan = 1283 {
4456-
revision 1; // NOTE: Default/not specifically set
4456+
revision 1;
44574457

44584458
readonly attribute optional char_string<12> MACAddress = 0;
44594459
readonly attribute optional octet_string<16> linkLocalAddress = 1;

examples/chef/devices/rootnode_basicvideoplayer_0ff86e943b.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1216,7 +1216,7 @@ cluster FixedLabel = 64 {
12161216

12171217
/** This cluster provides an interface for managing low power mode on a device that supports the Wake On LAN protocol. */
12181218
cluster WakeOnLan = 1283 {
1219-
revision 1; // NOTE: Default/not specifically set
1219+
revision 1;
12201220

12211221
readonly attribute optional char_string<12> MACAddress = 0;
12221222
readonly attribute optional octet_string<16> linkLocalAddress = 1;

examples/tv-app/tv-common/tv-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -2025,7 +2025,7 @@ cluster RelativeHumidityMeasurement = 1029 {
20252025

20262026
/** This cluster provides an interface for managing low power mode on a device that supports the Wake On LAN protocol. */
20272027
cluster WakeOnLan = 1283 {
2028-
revision 1; // NOTE: Default/not specifically set
2028+
revision 1;
20292029

20302030
readonly attribute optional char_string<12> MACAddress = 0;
20312031
readonly attribute optional octet_string<16> linkLocalAddress = 1;

examples/tv-casting-app/tv-casting-common/tv-casting-app.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1487,7 +1487,7 @@ cluster FixedLabel = 64 {
14871487

14881488
/** This cluster provides an interface for managing low power mode on a device that supports the Wake On LAN protocol. */
14891489
cluster WakeOnLan = 1283 {
1490-
revision 1; // NOTE: Default/not specifically set
1490+
revision 1;
14911491

14921492
readonly attribute optional char_string<12> MACAddress = 0;
14931493
readonly attribute optional octet_string<16> linkLocalAddress = 1;

src/app/zap-templates/zcl/data-model/chip/wake-on-lan-cluster.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ limitations under the License.
2525
<server init="false" tick="false">true</server>
2626
<description>This cluster provides an interface for managing low power mode on a device that supports the Wake On LAN protocol.</description>
2727

28-
<global side="either" code="0xFFFD" value="1"/>
28+
<!-- Current cluster version -->
29+
<globalAttribute side="either" code="0xFFFD" value="1"/>
2930

3031
<attribute side="server" code="0x0000" define="WAKE_ON_LAN_MAC_ADDRESS" type="char_string" length="12" writable="false" optional="true">MACAddress</attribute>
3132
<attribute apiMaturity="provisional" side="server" code="0x0001" define="LINK_LOCAL_ADDRESS" type="octet_string" length="16" writable="false" optional="true">LinkLocalAddress</attribute>

src/controller/data_model/controller-clusters.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -7415,7 +7415,7 @@ cluster RadonConcentrationMeasurement = 1071 {
74157415

74167416
/** This cluster provides an interface for managing low power mode on a device that supports the Wake On LAN protocol. */
74177417
cluster WakeOnLan = 1283 {
7418-
revision 1; // NOTE: Default/not specifically set
7418+
revision 1;
74197419

74207420
readonly attribute optional char_string<12> MACAddress = 0;
74217421
readonly attribute optional octet_string<16> linkLocalAddress = 1;

0 commit comments

Comments
 (0)