You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -217,6 +217,10 @@ class ClusterCommand(ClusterObject):
@@ -22,7 +22,7 @@ index c3af537da..2d3a73a10 100644
22
22
23
23
class Cluster(ClusterObject):
24
24
'''
25
-
@@ -227,6 +231,13 @@ class Cluster(ClusterObject):
25
+
@@ -227,6 +231,16 @@ class Cluster(ClusterObject):
26
26
especially the TLV decoding logic. Also ThreadNetworkDiagnostics has an attribute with the same name so we
27
27
picked data_version as its name.
28
28
'''
@@ -31,23 +31,29 @@ index c3af537da..2d3a73a10 100644
31
31
+ """Register a subclass."""
32
32
+ super().__init_subclass__(*args, **kwargs)
33
33
+ # register this cluster in the ALL_CLUSTERS dict for quick lookups
34
-
+ ALL_CLUSTERS[cls.id] = cls
34
+
+ try:
35
+
+ ALL_CLUSTERS[cls.id] = cls
36
+
+ except NotImplementedError:
37
+
+ pass # we can safely ignore this
35
38
+
36
39
@property
37
40
def data_version(self) -> int:
38
41
return self._data_version
39
-
@@ -253,6 +264,15 @@ class ClusterAttributeDescriptor:
42
+
@@ -253,6 +267,18 @@ class ClusterAttributeDescriptor:
40
43
41
44
The implementation of this functions is quite tricky, it will create a cluster object on-the-fly, and use it for actual encode / decode routine to save lines of code.
0 commit comments