Matter remove unused clusters labels (#18951)

This commit is contained in:
s-hadinger 2023-06-24 10:52:37 +02:00 committed by GitHub
parent 1f16693664
commit 9a3d3988a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 16 deletions

View File

@ -1528,7 +1528,7 @@ const matter_cluster_t matterAllClusters[] = {
{ 0x0032, "DiagnosticLogs", matter_Attributes_0032, matter_Commands_0032 },
{ 0x0033, "GeneralDiagnostics", matter_Attributes_0033, matter_Commands_0033 },
{ 0x0034, "SoftwareDiagnostics", matter_Attributes_0034, matter_Commands_0034 },
{ 0x0035, "ThreadNetworkDiagnostics", matter_Attributes_0035, matter_Commands_0035 },
// { 0x0035, "ThreadNetworkDiagnostics", matter_Attributes_0035, matter_Commands_0035 },
{ 0x0036, "WiFiNetworkDiagnostics", matter_Attributes_0036, matter_Commands_0036 },
{ 0x0037, "EthernetNetworkDiagnostics", matter_Attributes_0037, matter_Commands_0037 },
{ 0x0039, "BridgedDeviceBasic", matter_Attributes_0039, matter_Commands_0039 },
@ -1542,31 +1542,31 @@ const matter_cluster_t matterAllClusters[] = {
{ 0x0050, "ModeSelect", matter_Attributes_0050, matter_Commands_0050 },
{ 0x0101, "DoorLock", matter_Attributes_0101, matter_Commands_0101 },
{ 0x0102, "WindowCovering", matter_Attributes_0102, matter_Commands_0102 },
{ 0x0103, "BarrierControl", matter_Attributes_0103, matter_Commands_0103 },
// { 0x0103, "BarrierControl", matter_Attributes_0103, matter_Commands_0103 },
{ 0x0200, "PumpConfigurationAndControl", matter_Attributes_0200, matter_Commands_0200 },
{ 0x0201, "Thermostat", matter_Attributes_0201, matter_Commands_0201 },
{ 0x0202, "FanControl", matter_Attributes_0202, matter_Commands_0202 },
{ 0x0204, "ThermostatUserInterfaceConfiguration", matter_Attributes_0204, matter_Commands_0204 },
{ 0x0300, "ColorControl", matter_Attributes_0300, matter_Commands_0300 },
{ 0x0301, "BallastConfiguration", matter_Attributes_0301, matter_Commands_0301 },
// { 0x0301, "BallastConfiguration", matter_Attributes_0301, matter_Commands_0301 },
{ 0x0400, "IlluminanceMeasurement", matter_Attributes_0400, matter_Commands_0400 },
{ 0x0402, "TemperatureMeasurement", matter_Attributes_0402, matter_Commands_0402 },
{ 0x0403, "PressureMeasurement", matter_Attributes_0403, matter_Commands_0403 },
{ 0x0404, "FlowMeasurement", matter_Attributes_0404, matter_Commands_0404 },
{ 0x0405, "RelativeHumidityMeasurement", matter_Attributes_0405, matter_Commands_0405 },
{ 0x0406, "OccupancySensing", matter_Attributes_0406, matter_Commands_0406 },
{ 0x0503, "WakeOnLan", matter_Attributes_0503, matter_Commands_0503 },
{ 0x0504, "Channel", matter_Attributes_0504, matter_Commands_0504 },
{ 0x0505, "TargetNavigator", matter_Attributes_0505, matter_Commands_0505 },
{ 0x0506, "MediaPlayback", matter_Attributes_0506, matter_Commands_0506 },
{ 0x0507, "MediaInput", matter_Attributes_0507, matter_Commands_0507 },
{ 0x0508, "LowPower", matter_Attributes_0508, matter_Commands_0508 },
{ 0x0509, "KeypadInput", matter_Attributes_0509, matter_Commands_0509 },
{ 0x050A, "ContentLauncher", matter_Attributes_050A, matter_Commands_050A },
{ 0x050B, "AudioOutput", matter_Attributes_050B, matter_Commands_050B },
{ 0x050C, "ApplicationLauncher", matter_Attributes_050C, matter_Commands_050C },
{ 0x050D, "ApplicationBasic", matter_Attributes_050D, matter_Commands_050D },
{ 0x050E, "AccountLogin", matter_Attributes_050E, matter_Commands_050E },
{ 0x0B04, "ElectricalMeasurement", matter_Attributes_0B04, matter_Commands_0B04 },
// { 0x0503, "WakeOnLan", matter_Attributes_0503, matter_Commands_0503 },
// { 0x0504, "Channel", matter_Attributes_0504, matter_Commands_0504 },
// { 0x0505, "TargetNavigator", matter_Attributes_0505, matter_Commands_0505 },
// { 0x0506, "MediaPlayback", matter_Attributes_0506, matter_Commands_0506 },
// { 0x0507, "MediaInput", matter_Attributes_0507, matter_Commands_0507 },
// { 0x0508, "LowPower", matter_Attributes_0508, matter_Commands_0508 },
// { 0x0509, "KeypadInput", matter_Attributes_0509, matter_Commands_0509 },
// { 0x050A, "ContentLauncher", matter_Attributes_050A, matter_Commands_050A },
// { 0x050B, "AudioOutput", matter_Attributes_050B, matter_Commands_050B },
// { 0x050C, "ApplicationLauncher", matter_Attributes_050C, matter_Commands_050C },
// { 0x050D, "ApplicationBasic", matter_Attributes_050D, matter_Commands_050D },
// { 0x050E, "AccountLogin", matter_Attributes_050E, matter_Commands_050E },
// { 0x0B04, "ElectricalMeasurement", matter_Attributes_0B04, matter_Commands_0B04 },
{ 0xFFFF, NULL, NULL },
};