Skip to content

Commit

Permalink
regen all
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinez-silabs committed Oct 21, 2021
1 parent 29a247e commit b1d94a1
Show file tree
Hide file tree
Showing 13 changed files with 118 additions and 60 deletions.
52 changes: 26 additions & 26 deletions src/controller/python/chip/clusters/Objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -5952,7 +5952,7 @@ def descriptor(cls) -> ClusterObjectDescriptor:
return ClusterObjectDescriptor(
Fields=[
ClusterObjectFieldDescriptor(
Label="Name", Tag=0, Type=bytes),
Label="Name", Tag=0, Type=str),
ClusterObjectFieldDescriptor(
Label="FabricConnected", Tag=1, Type=bool),
ClusterObjectFieldDescriptor(
Expand All @@ -5965,7 +5965,7 @@ def descriptor(cls) -> ClusterObjectDescriptor:
Label="Type", Tag=5, Type=GeneralDiagnostics.Enums.InterfaceType),
])

Name: 'bytes' = None
Name: 'str' = None
FabricConnected: 'bool' = None
OffPremiseServicesReachableIPv4: 'bool' = None
OffPremiseServicesReachableIPv6: 'bool' = None
Expand Down Expand Up @@ -6118,7 +6118,7 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="Id", Tag=0, Type=uint),
ClusterObjectFieldDescriptor(
Label="Name", Tag=1, Type=bytes),
Label="Name", Tag=1, Type=str),
ClusterObjectFieldDescriptor(
Label="StackFreeCurrent", Tag=2, Type=uint),
ClusterObjectFieldDescriptor(
Expand All @@ -6128,7 +6128,7 @@ def descriptor(cls) -> ClusterObjectDescriptor:
])

Id: 'uint' = None
Name: 'bytes' = None
Name: 'str' = None
StackFreeCurrent: 'uint' = None
StackFreeMinimum: 'uint' = None
StackSize: 'uint' = None
Expand Down Expand Up @@ -8119,15 +8119,15 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="NodeId", Tag=4, Type=uint),
ClusterObjectFieldDescriptor(
Label="Label", Tag=5, Type=bytes),
Label="Label", Tag=5, Type=str),
])

FabricIndex: 'uint' = None
RootPublicKey: 'bytes' = None
VendorId: 'uint' = None
FabricId: 'uint' = None
NodeId: 'uint' = None
Label: 'bytes' = None
Label: 'str' = None

@dataclass
class NOCStruct(ClusterObject):
Expand Down Expand Up @@ -8300,12 +8300,12 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="FabricIndex", Tag=1, Type=uint),
ClusterObjectFieldDescriptor(
Label="DebugText", Tag=2, Type=bytes),
Label="DebugText", Tag=2, Type=str),
])

StatusCode: 'uint' = None
FabricIndex: 'uint' = None
DebugText: 'bytes' = None
DebugText: 'str' = None

@dataclass
class UpdateFabricLabel(ClusterCommand):
Expand Down Expand Up @@ -8459,13 +8459,13 @@ def descriptor(cls) -> ClusterObjectDescriptor:
return ClusterObjectDescriptor(
Fields=[
ClusterObjectFieldDescriptor(
Label="Label", Tag=0, Type=bytes),
Label="Label", Tag=0, Type=str),
ClusterObjectFieldDescriptor(
Label="Value", Tag=1, Type=bytes),
Label="Value", Tag=1, Type=str),
])

Label: 'bytes' = None
Value: 'bytes' = None
Label: 'str' = None
Value: 'str' = None

class Attributes:
class LabelList(ClusterAttributeDescriptor):
Expand Down Expand Up @@ -17987,18 +17987,18 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="MinorNumber", Tag=1, Type=uint),
ClusterObjectFieldDescriptor(
Label="Name", Tag=2, Type=bytes),
Label="Name", Tag=2, Type=str),
ClusterObjectFieldDescriptor(
Label="CallSign", Tag=3, Type=bytes),
Label="CallSign", Tag=3, Type=str),
ClusterObjectFieldDescriptor(
Label="AffiliateCallSign", Tag=4, Type=bytes),
Label="AffiliateCallSign", Tag=4, Type=str),
])

MajorNumber: 'uint' = None
MinorNumber: 'uint' = None
Name: 'bytes' = None
CallSign: 'bytes' = None
AffiliateCallSign: 'bytes' = None
Name: 'str' = None
CallSign: 'str' = None
AffiliateCallSign: 'str' = None

@dataclass
class TvChannelLineupInfo(ClusterObject):
Expand Down Expand Up @@ -18175,11 +18175,11 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="Identifier", Tag=0, Type=uint),
ClusterObjectFieldDescriptor(
Label="Name", Tag=1, Type=bytes),
Label="Name", Tag=1, Type=str),
])

Identifier: 'uint' = None
Name: 'bytes' = None
Name: 'str' = None

class Commands:
@dataclass
Expand Down Expand Up @@ -18769,15 +18769,15 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="InputType", Tag=1, Type=MediaInput.Enums.MediaInputType),
ClusterObjectFieldDescriptor(
Label="Name", Tag=2, Type=bytes),
Label="Name", Tag=2, Type=str),
ClusterObjectFieldDescriptor(
Label="Description", Tag=3, Type=bytes),
Label="Description", Tag=3, Type=str),
])

Index: 'uint' = None
InputType: 'MediaInput.Enums.MediaInputType' = None
Name: 'bytes' = None
Description: 'bytes' = None
Name: 'str' = None
Description: 'str' = None

class Commands:
@dataclass
Expand Down Expand Up @@ -19370,12 +19370,12 @@ def descriptor(cls) -> ClusterObjectDescriptor:
ClusterObjectFieldDescriptor(
Label="OutputType", Tag=1, Type=AudioOutput.Enums.AudioOutputType),
ClusterObjectFieldDescriptor(
Label="Name", Tag=2, Type=bytes),
Label="Name", Tag=2, Type=str),
])

Index: 'uint' = None
OutputType: 'AudioOutput.Enums.AudioOutputType' = None
Name: 'bytes' = None
Name: 'str' = None

class Commands:
@dataclass
Expand Down
4 changes: 2 additions & 2 deletions src/darwin/Framework/CHIPTests/CHIPClustersTests.m

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion zzz_generated/bridge-app/zap-generated/endpoint_config.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions zzz_generated/chip-tool/zap-generated/test/Commands.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions zzz_generated/lighting-app/zap-generated/CHIPClusters.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions zzz_generated/lighting-app/zap-generated/CHIPClusters.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b1d94a1

Please sign in to comment.