diff --git a/.github/.wordlist.txt b/.github/.wordlist.txt
index 18c158117a1a88..2061c3a630bccb 100644
--- a/.github/.wordlist.txt
+++ b/.github/.wordlist.txt
@@ -125,6 +125,7 @@ backtrace
BallastConfiguration
BarrierControl
BasicCHIPRegression
+BasicInformation
baudrate
BD
BDX
diff --git a/.github/workflows/zap_regeneration.yaml b/.github/workflows/zap_regeneration.yaml
index 106911c86fa90d..b329059f096259 100644
--- a/.github/workflows/zap_regeneration.yaml
+++ b/.github/workflows/zap_regeneration.yaml
@@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-20.04
container:
- image: connectedhomeip/chip-build:0.6.22
+ image: connectedhomeip/chip-build:0.6.23
defaults:
run:
shell: sh
diff --git a/.github/workflows/zap_templates.yaml b/.github/workflows/zap_templates.yaml
index e9c5b14c246397..d6367a9abe1aa9 100644
--- a/.github/workflows/zap_templates.yaml
+++ b/.github/workflows/zap_templates.yaml
@@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-20.04
container:
- image: connectedhomeip/chip-build:0.6.22
+ image: connectedhomeip/chip-build:0.6.23
defaults:
run:
shell: sh
diff --git a/docs/guides/access-control-guide.md b/docs/guides/access-control-guide.md
index 8d81b32298acc7..53275f6308ed08 100644
--- a/docs/guides/access-control-guide.md
+++ b/docs/guides/access-control-guide.md
@@ -395,7 +395,7 @@ Some typical clusters:
- Clusters.Descriptor.id
- Clusters.Binding.id
- Clusters.AccessControl.id
-- Clusters.Basic.id
+- Clusters.BasicInformation.id
### Examples
diff --git a/docs/guides/python_chip_controller_building.md b/docs/guides/python_chip_controller_building.md
index 2d6ad8278e7928..661072fb87fdc5 100644
--- a/docs/guides/python_chip_controller_building.md
+++ b/docs/guides/python_chip_controller_building.md
@@ -287,24 +287,25 @@ chip-device-ctrl > zcl LevelControl MoveToLevel 1234 1 0 level=50
### Step 7: Read basic information out of the accessory.
-Every Matter accessory device supports a Basic Cluster, which maintains
-collection of attributes that a controller can obtain from a device, such as the
-vendor name, the product name, or software version. Use `zclread` command to
-read those values from the device:
+Every Matter accessory device supports a Basic Information Cluster, which
+maintains collection of attributes that a controller can obtain from a device,
+such as the vendor name, the product name, or software version. Use `zclread`
+command to read those values from the device:
```
-chip-device-ctrl > zclread Basic VendorName 1234 1 0
-chip-device-ctrl > zclread Basic ProductName 1234 1 0
-chip-device-ctrl > zclread Basic SoftwareVersion 1234 1 0
+chip-device-ctrl > zclread BasicInformation VendorName 1234 1 0
+chip-device-ctrl > zclread BasicInformation ProductName 1234 1 0
+chip-device-ctrl > zclread BasicInformation SoftwareVersion 1234 1 0
```
**REPL Command:**
-`await devCtrl.ReadAttribute(1234, [(1, Clusters.Basic.Attributes.VendorName)])`
+`await devCtrl.ReadAttribute(1234, [(1, Clusters.BasicInformation.Attributes.VendorName)])`
-> Use the `zcl ? Basic` command to list all available commands for Basic
-> Cluster.
+> Use the `zcl ? BasicInformation` command to list all available commands for
+> Basic Information Cluster.
>
-> In REPL, you can type `Clusters.Basic.Attributes.` and then use the TAB key.
+> In REPL, you can type `Clusters.BasicInformation.Attributes.` and then use the
+> TAB key.
@@ -524,7 +525,7 @@ ApplicationBasic
ApplicationLauncher
AudioOutput
BarrierControl
-Basic
+BasicInformation
Binding
BridgedDeviceBasic
ColorControl
@@ -567,10 +568,11 @@ Type `Clusters.` and hit TAB
### `zcl ? `
-List available commands in cluster. For example, for _Basic_ cluster:
+List available commands in cluster. For example, for _Basic Information_
+cluster:
```
-chip-device-ctrl > zcl ? Basic
+chip-device-ctrl > zcl ? BasicInformation
DataModelRevision
VendorName
VendorID
@@ -600,7 +602,7 @@ Type `Clusters.(cluster name).Commands.` and hit TAB
Read the value of ZCL attribute. For example:
```
-chip-device-ctrl > zclread Basic VendorName 1234 1 0
+chip-device-ctrl > zclread BasicInformation VendorName 1234 1 0
```
**REPL Commands**
@@ -608,7 +610,7 @@ chip-device-ctrl > zclread Basic VendorName 1234 1 0
```python
# devCtrl.ReadAttribute(, [(, Clusters..Attributes.)])
# e.g.
-await devCtrl.ReadAttribute(1234, [(1, Clusters.Basic.Attributes.VendorName)])
+await devCtrl.ReadAttribute(1234, [(1, Clusters.BasicInformation.Attributes.VendorName)])
```
### `zclwrite `
diff --git a/docs/guides/repl/Matter_REPL_Intro.ipynb b/docs/guides/repl/Matter_REPL_Intro.ipynb
index 2960cbac92cb1a..69e0a6c603452a 100644
--- a/docs/guides/repl/Matter_REPL_Intro.ipynb
+++ b/docs/guides/repl/Matter_REPL_Intro.ipynb
@@ -559,10 +559,10 @@
"│ e.g. │\n",
"│ ReadAttribute(1, [ 1 ] ) -- case 4 │\n",
"│ above. │\n",
- "│ ReadAttribute(1, [ Clusters.Basic ] ) │\n",
+ "│ ReadAttribute(1, [ Clusters.BasicInformation ] ) │\n",
"│ -- case 5 above. │\n",
"│ ReadAttribute(1, [ (1, │\n",
- "│ Clusters.Basic.Attributes.Location ] ) -- │\n",
+ "│ Clusters.BasicInformation.Attributes.Location ] ) -- │\n",
"│ case 1 above. │\n",
"│ │\n",
"│ returnClusterObject: This returns the data as │\n",
@@ -616,10 +616,10 @@
"│ │\n",
"│ e.g. │\n",
"│ ReadEvent(1, [ 1 ] ) -- case 4 above. │\n",
- "│ ReadEvent(1, [ Clusters.Basic ] ) -- case │\n",
+ "│ ReadEvent(1, [ Clusters.BasicInformation ] ) -- case │\n",
"│ 5 above. │\n",
"│ ReadEvent(1, [ (1, │\n",
- "│ Clusters.Basic.Events.Location ] ) -- case 1 │\n",
+ "│ Clusters.BasicInformation.Events.Location ] ) -- case 1 │\n",
"│ above. │\n",
"│ │\n",
"│ reportInterval: A tuple of two int-s for │\n",
@@ -782,10 +782,10 @@
"\u001b[34m│\u001b[0m \u001b[2m e.g.\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2m \u001b[0m\u001b[1;2;35mReadAttribute\u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m\u001b[1;2m[\u001b[0m\u001b[2m \u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m\u001b[2m -- case \u001b[0m\u001b[1;2;36m4\u001b[0m\u001b[2m \u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2mabove.\u001b[0m \u001b[34m│\u001b[0m\n",
- "\u001b[34m│\u001b[0m \u001b[2m \u001b[0m\u001b[1;2;35mReadAttribute\u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m\u001b[1;2m[\u001b[0m\u001b[2m Clusters.Basic \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m \u001b[34m│\u001b[0m\n",
+ "\u001b[34m│\u001b[0m \u001b[2m \u001b[0m\u001b[1;2;35mReadAttribute\u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m\u001b[1;2m[\u001b[0m\u001b[2m Clusters.BasicInformation \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2m-- case \u001b[0m\u001b[1;2;36m5\u001b[0m\u001b[2m above.\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2m \u001b[0m\u001b[1;2;35mReadAttribute\u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m\u001b[1;2m[\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m \u001b[34m│\u001b[0m\n",
- "\u001b[34m│\u001b[0m \u001b[2mClusters.Basic.Attributes.Location \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m\u001b[2m -- \u001b[0m \u001b[34m│\u001b[0m\n",
+ "\u001b[34m│\u001b[0m \u001b[2mClusters.BasicInformation.Attributes.Location \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m\u001b[2m -- \u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2mcase \u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m above.\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2mreturnClusterObject: This returns the data as\u001b[0m \u001b[34m│\u001b[0m\n",
@@ -839,10 +839,10 @@
"\u001b[34m│\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2me.g.\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2m \u001b[0m\u001b[1;2;35mReadEvent\u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m\u001b[1;2m[\u001b[0m\u001b[2m \u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m\u001b[2m -- case \u001b[0m\u001b[1;2;36m4\u001b[0m\u001b[2m above.\u001b[0m \u001b[34m│\u001b[0m\n",
- "\u001b[34m│\u001b[0m \u001b[2m \u001b[0m\u001b[1;2;35mReadEvent\u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m\u001b[1;2m[\u001b[0m\u001b[2m Clusters.Basic \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m\u001b[2m -- case\u001b[0m \u001b[34m│\u001b[0m\n",
+ "\u001b[34m│\u001b[0m \u001b[2m \u001b[0m\u001b[1;2;35mReadEvent\u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m\u001b[1;2m[\u001b[0m\u001b[2m Clusters.BasicInformation \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m\u001b[2m -- case\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[1;2;36m5\u001b[0m\u001b[2m above.\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2m \u001b[0m\u001b[1;2;35mReadEvent\u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m\u001b[1;2m[\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m(\u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m, \u001b[0m \u001b[34m│\u001b[0m\n",
- "\u001b[34m│\u001b[0m \u001b[2mClusters.Basic.Events.Location \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m\u001b[2m -- case \u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m \u001b[0m \u001b[34m│\u001b[0m\n",
+ "\u001b[34m│\u001b[0m \u001b[2mClusters.BasicInformation.Events.Location \u001b[0m\u001b[1;2m]\u001b[0m\u001b[2m \u001b[0m\u001b[1;2m)\u001b[0m\u001b[2m -- case \u001b[0m\u001b[1;2;36m1\u001b[0m\u001b[2m \u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2mabove.\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[34m│\u001b[0m\n",
"\u001b[34m│\u001b[0m \u001b[2mreportInterval: A tuple of two int-s for \u001b[0m \u001b[34m│\u001b[0m\n",
diff --git a/examples/all-clusters-app/all-clusters-common/all-clusters-app.matter b/examples/all-clusters-app/all-clusters-common/all-clusters-app.matter
index 7de2619f5f25d7..e5781c207776a5 100644
--- a/examples/all-clusters-app/all-clusters-common/all-clusters-app.matter
+++ b/examples/all-clusters-app/all-clusters-common/all-clusters-app.matter
@@ -567,7 +567,7 @@ server cluster Actions = 37 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -3921,7 +3921,7 @@ endpoint 0 {
callback attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/all-clusters-app/all-clusters-common/all-clusters-app.zap b/examples/all-clusters-app/all-clusters-common/all-clusters-app.zap
index ed35bec1d79b9d..cd24d151ec0ac8 100644
--- a/examples/all-clusters-app/all-clusters-common/all-clusters-app.zap
+++ b/examples/all-clusters-app/all-clusters-common/all-clusters-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 87,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -16,6 +16,12 @@
}
],
"package": [
+ {
+ "pathRelativity": "relativeToZap",
+ "path": "../../../src/app/zap-templates/app-templates.json",
+ "type": "gen-templates-json",
+ "version": "chip-v1"
+ },
{
"pathRelativity": "relativeToZap",
"path": "../../../src/app/zap-templates/zcl/zcl-with-test-extensions.json",
@@ -23,12 +29,6 @@
"category": "matter",
"version": 1,
"description": "Matter SDK ZCL data with some extensions"
- },
- {
- "pathRelativity": "relativeToZap",
- "path": "../../../src/app/zap-templates/app-templates.json",
- "type": "gen-templates-json",
- "version": "chip-v1"
}
],
"endpointTypes": [
@@ -1139,10 +1139,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1165,10 +1165,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -10395,10 +10395,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -10421,10 +10421,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
@@ -21701,10 +21701,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -21727,10 +21727,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
@@ -24740,6 +24740,5 @@
"endpointVersion": 1,
"deviceIdentifier": 61442
}
- ],
- "log": []
+ ]
}
\ No newline at end of file
diff --git a/examples/all-clusters-app/esp32/main/CMakeLists.txt b/examples/all-clusters-app/esp32/main/CMakeLists.txt
index 3293a8334d5e20..ee4b0639094d63 100644
--- a/examples/all-clusters-app/esp32/main/CMakeLists.txt
+++ b/examples/all-clusters-app/esp32/main/CMakeLists.txt
@@ -78,7 +78,7 @@ set(SRC_DIRS_LIST
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/switch-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/general-diagnostics-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/group-key-mgmt-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/door-lock-server"
diff --git a/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter b/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter
index 225bc9b5fd6dcb..288a32def968f1 100644
--- a/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter
+++ b/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter
@@ -510,7 +510,7 @@ server cluster Actions = 37 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -3310,7 +3310,7 @@ endpoint 0 {
callback attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.zap b/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.zap
index c79516f63b4df4..775df034c55364 100644
--- a/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.zap
+++ b/examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 87,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -16,12 +16,6 @@
}
],
"package": [
- {
- "pathRelativity": "relativeToZap",
- "path": "../../../src/app/zap-templates/app-templates.json",
- "type": "gen-templates-json",
- "version": "chip-v1"
- },
{
"pathRelativity": "relativeToZap",
"path": "../../../src/app/zap-templates/zcl/zcl.json",
@@ -29,6 +23,12 @@
"category": "matter",
"version": 1,
"description": "Matter SDK ZCL data"
+ },
+ {
+ "pathRelativity": "relativeToZap",
+ "path": "../../../src/app/zap-templates/app-templates.json",
+ "type": "gen-templates-json",
+ "version": "chip-v1"
}
],
"endpointTypes": [
@@ -1139,10 +1139,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1165,10 +1165,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -10245,10 +10245,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -10271,10 +10271,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
@@ -21477,10 +21477,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -21503,10 +21503,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
@@ -24516,6 +24516,5 @@
"endpointVersion": 1,
"deviceIdentifier": 61442
}
- ],
- "log": []
+ ]
}
\ No newline at end of file
diff --git a/examples/all-clusters-minimal-app/esp32/main/CMakeLists.txt b/examples/all-clusters-minimal-app/esp32/main/CMakeLists.txt
index 6b0dc3f6f0d6ca..c0fafc5861ff08 100644
--- a/examples/all-clusters-minimal-app/esp32/main/CMakeLists.txt
+++ b/examples/all-clusters-minimal-app/esp32/main/CMakeLists.txt
@@ -75,7 +75,7 @@ set(SRC_DIRS_LIST
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/switch-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/general-diagnostics-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/group-key-mgmt-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/door-lock-server"
diff --git a/examples/android/CHIPTool/app/src/main/java/com/google/chip/chiptool/clusterclient/BasicClientFragment.kt b/examples/android/CHIPTool/app/src/main/java/com/google/chip/chiptool/clusterclient/BasicClientFragment.kt
index 28b59cebf8fbb6..37c7fa7ab1cdd1 100644
--- a/examples/android/CHIPTool/app/src/main/java/com/google/chip/chiptool/clusterclient/BasicClientFragment.kt
+++ b/examples/android/CHIPTool/app/src/main/java/com/google/chip/chiptool/clusterclient/BasicClientFragment.kt
@@ -10,7 +10,7 @@ import android.widget.ArrayAdapter
import androidx.fragment.app.Fragment
import androidx.lifecycle.lifecycleScope
import chip.devicecontroller.ChipClusters
-import chip.devicecontroller.ChipClusters.BasicCluster
+import chip.devicecontroller.ChipClusters.BasicInformationCluster
import chip.devicecontroller.ChipDeviceController
import com.google.chip.chiptool.ChipClient
import com.google.chip.chiptool.GenericChipDeviceListener
@@ -179,7 +179,7 @@ class BasicClientFragment : Fragment() {
}
private suspend fun sendReadVendorIDAttribute() {
- getBasicClusterForDevice().readVendorIDAttribute(object : ChipClusters.BasicCluster.VendorIDAttributeCallback {
+ getBasicClusterForDevice().readVendorIDAttribute(object : ChipClusters.BasicInformationCluster.VendorIDAttributeCallback {
override fun onSuccess(value: Int) {
Log.i(TAG,"[Read Success] VendorID: $value")
showMessage("[Read Success] VendorID: $value")
@@ -461,8 +461,8 @@ class BasicClientFragment : Fragment() {
}
}
- private suspend fun getBasicClusterForDevice(): BasicCluster {
- return BasicCluster(
+ private suspend fun getBasicClusterForDevice(): BasicInformationCluster {
+ return BasicInformationCluster(
ChipClient.getConnectedDevicePointer(requireContext(), addressUpdateFragment.deviceId), ENDPOINT
)
}
diff --git a/examples/bridge-app/bridge-common/bridge-app.matter b/examples/bridge-app/bridge-common/bridge-app.matter
index 1d162d6635192c..7a6bea24441155 100644
--- a/examples/bridge-app/bridge-common/bridge-app.matter
+++ b/examples/bridge-app/bridge-common/bridge-app.matter
@@ -451,7 +451,7 @@ server cluster Actions = 37 {
command InstantAction(InstantActionRequest): DefaultSuccess = 0;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1481,7 +1481,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/bridge-app/bridge-common/bridge-app.zap b/examples/bridge-app/bridge-common/bridge-app.zap
index c8ea2b9adc1c19..47d910200b1004 100644
--- a/examples/bridge-app/bridge-common/bridge-app.zap
+++ b/examples/bridge-app/bridge-common/bridge-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -447,10 +447,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -489,10 +489,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6471,7 +6471,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -6745,10 +6745,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -6771,10 +6771,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/bridge-app/esp32/main/CMakeLists.txt b/examples/bridge-app/esp32/main/CMakeLists.txt
index 9ed6f0f1410c68..6dee91afaf7952 100644
--- a/examples/bridge-app/esp32/main/CMakeLists.txt
+++ b/examples/bridge-app/esp32/main/CMakeLists.txt
@@ -28,7 +28,7 @@ idf_component_register(PRIV_INCLUDE_DIRS
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/reporting"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/access-control-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/administrator-commissioning-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bridged-device-basic-information-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/level-control"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/identify-server"
diff --git a/examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.matter b/examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.matter
index 8d429ea93bbef5..4dd2570986fd4f 100644
--- a/examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.matter
+++ b/examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.matter
@@ -347,7 +347,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1324,7 +1324,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.zap b/examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.zap
index 47e37502acdfd5..edf180ba895f16 100644
--- a/examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.zap
+++ b/examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6413,7 +6413,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -7292,6 +7292,5 @@
"endpointVersion": 1,
"deviceIdentifier": 257
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.matter b/examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.matter
index 574d43954ab3a5..8ea622527a82d2 100644
--- a/examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.matter
+++ b/examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.matter
@@ -352,7 +352,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1400,7 +1400,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.zap b/examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.zap
index dedd809170434a..f4cd517e9a21d6 100644
--- a/examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.zap
+++ b/examples/chef/devices/rootnode_colortemperaturelight_hbUnzYVeyn.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1133,10 +1133,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1159,10 +1159,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6573,7 +6573,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -8098,6 +8098,5 @@
"endpointVersion": 1,
"deviceIdentifier": 268
}
- ],
- "log": []
+ ]
}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.matter b/examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.matter
index 855cea4c4b1e68..7515f9055d5ed5 100644
--- a/examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.matter
+++ b/examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.matter
@@ -198,7 +198,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1062,7 +1062,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.zap b/examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.zap
index 9e29e9eb5a799d..2ff3308cb778eb 100644
--- a/examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.zap
+++ b/examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6120,6 +6120,5 @@
"endpointVersion": 1,
"deviceIdentifier": 21
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.matter b/examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.matter
index 3a49ba744dcbf5..220c3493ca6bd5 100644
--- a/examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.matter
+++ b/examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.matter
@@ -347,7 +347,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1208,7 +1208,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.zap b/examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.zap
index bc11f60cb11b3a..064213069b157e 100644
--- a/examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.zap
+++ b/examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6413,7 +6413,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -7292,6 +7292,5 @@
"endpointVersion": 1,
"deviceIdentifier": 257
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_doorlock_aNKYAreMXE.matter b/examples/chef/devices/rootnode_doorlock_aNKYAreMXE.matter
index a7215a34d2cd00..fc1f5da4f75fe0 100644
--- a/examples/chef/devices/rootnode_doorlock_aNKYAreMXE.matter
+++ b/examples/chef/devices/rootnode_doorlock_aNKYAreMXE.matter
@@ -198,7 +198,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1447,7 +1447,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_doorlock_aNKYAreMXE.zap b/examples/chef/devices/rootnode_doorlock_aNKYAreMXE.zap
index 688b51add16475..68cde1f3f6871b 100644
--- a/examples/chef/devices/rootnode_doorlock_aNKYAreMXE.zap
+++ b/examples/chef/devices/rootnode_doorlock_aNKYAreMXE.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6413,7 +6413,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 0,
"storageOption": "RAM",
"singleton": 0,
@@ -8992,6 +8992,5 @@
"endpointVersion": 1,
"deviceIdentifier": 10
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.matter b/examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.matter
index 0c2da0d4114024..774e7065d99d33 100644
--- a/examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.matter
+++ b/examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.matter
@@ -347,7 +347,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1463,7 +1463,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.zap b/examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.zap
index 6654567e585f41..e0eae000faa891 100644
--- a/examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.zap
+++ b/examples/chef/devices/rootnode_extendedcolorlight_8lcaaYJVAa.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6413,7 +6413,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -8410,6 +8410,5 @@
"endpointVersion": 1,
"deviceIdentifier": 269
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_fan_7N2TobIlOX.matter b/examples/chef/devices/rootnode_fan_7N2TobIlOX.matter
index b0157731cf14ff..59b42def6f6ea7 100644
--- a/examples/chef/devices/rootnode_fan_7N2TobIlOX.matter
+++ b/examples/chef/devices/rootnode_fan_7N2TobIlOX.matter
@@ -191,7 +191,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1117,7 +1117,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_fan_7N2TobIlOX.zap b/examples/chef/devices/rootnode_fan_7N2TobIlOX.zap
index b1ad6043e45780..55cde9980340c1 100644
--- a/examples/chef/devices/rootnode_fan_7N2TobIlOX.zap
+++ b/examples/chef/devices/rootnode_fan_7N2TobIlOX.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1133,10 +1133,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1159,10 +1159,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6316,6 +6316,5 @@
"endpointVersion": 1,
"deviceIdentifier": 43
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.matter b/examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.matter
index 71251a9891b3b8..665d0720ff4250 100644
--- a/examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.matter
+++ b/examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.matter
@@ -211,7 +211,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1074,7 +1074,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.zap b/examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.zap
index c02cddf8927e73..08e484e552a5bc 100644
--- a/examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.zap
+++ b/examples/chef/devices/rootnode_flowsensor_1zVxHedlaV.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6168,6 +6168,5 @@
"endpointVersion": 1,
"deviceIdentifier": 774
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.matter b/examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.matter
index c2f732cf5a4fff..eee4e4754bfcb1 100644
--- a/examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.matter
+++ b/examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.matter
@@ -340,7 +340,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1316,7 +1316,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.zap b/examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.zap
index 5eed8a85a55e00..9fd12c98429f73 100644
--- a/examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.zap
+++ b/examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6345,7 +6345,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 0,
"storageOption": "RAM",
"singleton": 0,
@@ -7471,7 +7471,7 @@
"code": 50,
"mfgCode": null,
"side": "server",
- "type": "utc",
+ "type": "epoch_s",
"included": 0,
"storageOption": "RAM",
"singleton": 0,
@@ -7988,6 +7988,5 @@
"endpointVersion": 1,
"deviceIdentifier": 768
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.matter b/examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.matter
index 2465a587d3bc2f..4f0c7c0f14b129 100644
--- a/examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.matter
+++ b/examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.matter
@@ -211,7 +211,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1074,7 +1074,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.zap b/examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.zap
index 5401943fad938f..b40907aae4e0c7 100644
--- a/examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.zap
+++ b/examples/chef/devices/rootnode_humiditysensor_Xyj4gda6Hb.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6168,6 +6168,5 @@
"endpointVersion": 1,
"deviceIdentifier": 775
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.matter b/examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.matter
index 6dbbbc8c29704c..993e09d3cb3491 100644
--- a/examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.matter
+++ b/examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.matter
@@ -211,7 +211,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1078,7 +1078,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.zap b/examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.zap
index 7a42a45b1352ad..a8960bde887757 100644
--- a/examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.zap
+++ b/examples/chef/devices/rootnode_lightsensor_lZQycTFcJK.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6184,6 +6184,5 @@
"endpointVersion": 1,
"deviceIdentifier": 262
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.matter b/examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.matter
index 43f0dc420e138b..aecd711bca2c46 100644
--- a/examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.matter
+++ b/examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.matter
@@ -211,7 +211,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1073,7 +1073,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.zap b/examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.zap
index 341342115cecfe..c6ff45dc52f256 100644
--- a/examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.zap
+++ b/examples/chef/devices/rootnode_occupancysensor_iHyVgifZuo.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6296,6 +6296,5 @@
"endpointVersion": 1,
"deviceIdentifier": 263
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.matter b/examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.matter
index 0cb0145e16d660..45a58c4b1657df 100644
--- a/examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.matter
+++ b/examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.matter
@@ -347,7 +347,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1198,7 +1198,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.zap b/examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.zap
index 2b9c4941f21145..db66e1622218af 100644
--- a/examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.zap
+++ b/examples/chef/devices/rootnode_onofflight_bbs1b7IaOV.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6413,7 +6413,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -7292,6 +7292,5 @@
"endpointVersion": 1,
"deviceIdentifier": 256
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.matter b/examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.matter
index d82e6d9dbbd2ad..d6420b00798d7e 100644
--- a/examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.matter
+++ b/examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.matter
@@ -290,7 +290,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1141,7 +1141,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.zap b/examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.zap
index ee7c5ffa63be10..7b636644d1ccc5 100644
--- a/examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.zap
+++ b/examples/chef/devices/rootnode_onofflightswitch_FsPlMr090Q.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6413,7 +6413,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 0,
"storageOption": "RAM",
"singleton": 0,
@@ -7292,6 +7292,5 @@
"endpointVersion": 1,
"deviceIdentifier": 259
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.matter b/examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.matter
index 90161aa0fc018a..5558267d95063b 100644
--- a/examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.matter
+++ b/examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.matter
@@ -248,7 +248,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1099,7 +1099,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.zap b/examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.zap
index 9b09c5893c3e13..896114ca8782f6 100644
--- a/examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.zap
+++ b/examples/chef/devices/rootnode_onoffpluginunit_Wtf8ss5EBY.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6413,7 +6413,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 0,
"storageOption": "RAM",
"singleton": 0,
@@ -6968,6 +6968,5 @@
"endpointVersion": 1,
"deviceIdentifier": 266
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.matter b/examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.matter
index 8d42299065c622..c6ebe078910881 100644
--- a/examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.matter
+++ b/examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.matter
@@ -216,7 +216,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1083,7 +1083,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.zap b/examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.zap
index 7d48e7f85e4ae9..5862b26714eeef 100644
--- a/examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.zap
+++ b/examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6248,6 +6248,5 @@
"endpointVersion": 1,
"deviceIdentifier": 773
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_speaker_RpzeXdimqA.matter b/examples/chef/devices/rootnode_speaker_RpzeXdimqA.matter
index 4bd96a0b65173f..218f76f0dca83f 100644
--- a/examples/chef/devices/rootnode_speaker_RpzeXdimqA.matter
+++ b/examples/chef/devices/rootnode_speaker_RpzeXdimqA.matter
@@ -338,7 +338,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1189,7 +1189,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_speaker_RpzeXdimqA.zap b/examples/chef/devices/rootnode_speaker_RpzeXdimqA.zap
index 0512c454fc1f91..ff9e37a86e3e2a 100644
--- a/examples/chef/devices/rootnode_speaker_RpzeXdimqA.zap
+++ b/examples/chef/devices/rootnode_speaker_RpzeXdimqA.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -5845,7 +5845,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -6400,6 +6400,5 @@
"endpointVersion": 1,
"deviceIdentifier": 34
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.matter b/examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.matter
index 01536ea35bdc79..614cce0bbda109 100644
--- a/examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.matter
+++ b/examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.matter
@@ -211,7 +211,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1073,7 +1073,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.zap b/examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.zap
index 324c56eed2aad8..1fc5fd080cbd11 100644
--- a/examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.zap
+++ b/examples/chef/devices/rootnode_temperaturesensor_Qy1zkNW7c3.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6168,6 +6168,5 @@
"endpointVersion": 1,
"deviceIdentifier": 770
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.matter b/examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.matter
index dcec5623cb7e77..99cef508b903ef 100644
--- a/examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.matter
+++ b/examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.matter
@@ -198,7 +198,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1211,7 +1211,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.zap b/examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.zap
index d0278af5482f29..ecc339f0352de6 100644
--- a/examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.zap
+++ b/examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -7059,7 +7059,7 @@
"code": 50,
"mfgCode": null,
"side": "server",
- "type": "utc",
+ "type": "epoch_s",
"included": 0,
"storageOption": "RAM",
"singleton": 0,
@@ -7648,6 +7648,5 @@
"endpointVersion": 1,
"deviceIdentifier": 769
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.matter b/examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.matter
index f61138c0f9f943..637104a944361a 100644
--- a/examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.matter
+++ b/examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.matter
@@ -198,7 +198,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
critical event StartUp = 0 {
INT32U softwareVersion = 0;
}
@@ -1191,7 +1191,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.zap b/examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.zap
index 70eba61ed56f89..b2e73a9a2e62dc 100644
--- a/examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.zap
+++ b/examples/chef/devices/rootnode_windowcovering_RLCxaGi9Yx.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 82,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1085,10 +1085,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1111,10 +1111,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6850,6 +6850,5 @@
"endpointVersion": 1,
"deviceIdentifier": 514
}
- ],
- "log": []
-}
+ ]
+}
\ No newline at end of file
diff --git a/examples/chef/sample_app_util/test_files/sample_zap_file.zap b/examples/chef/sample_app_util/test_files/sample_zap_file.zap
index 0d24e4ac9d3a88..4ae4707493e858 100644
--- a/examples/chef/sample_app_util/test_files/sample_zap_file.zap
+++ b/examples/chef/sample_app_util/test_files/sample_zap_file.zap
@@ -1140,7 +1140,7 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
"define": "BASIC_CLUSTER",
@@ -1167,7 +1167,7 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
"define": "BASIC_CLUSTER",
@@ -6590,7 +6590,7 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
"define": "BASIC_CLUSTER",
@@ -6617,7 +6617,7 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
"define": "BASIC_CLUSTER",
diff --git a/examples/chef/sample_app_util/test_files/sample_zap_file_hashmeta.yaml b/examples/chef/sample_app_util/test_files/sample_zap_file_hashmeta.yaml
index b42a98e0d8943a..bb39542a4c1767 100644
--- a/examples/chef/sample_app_util/test_files/sample_zap_file_hashmeta.yaml
+++ b/examples/chef/sample_app_util/test_files/sample_zap_file_hashmeta.yaml
@@ -10,7 +10,7 @@
AdministratorCommissioning/60:
attributes:
FeatureMap/65532: '0'
- Basic/40:
+ BasicInformation/40:
attributes:
FeatureMap/65532: '0'
Descriptor/29:
diff --git a/examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.matter b/examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.matter
index 10d4a9698fa39d..07f78d80522646 100644
--- a/examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.matter
+++ b/examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.matter
@@ -193,7 +193,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1284,7 +1284,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.zap b/examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.zap
index 56dd9d1b244863..bac7da6ce486b5 100644
--- a/examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.zap
+++ b/examples/contact-sensor-app/contact-sensor-common/contact-sensor-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1133,10 +1133,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1159,10 +1159,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6389,7 +6389,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -6923,10 +6923,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -6949,10 +6949,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/dynamic-bridge-app/bridge-common/bridge-app.matter b/examples/dynamic-bridge-app/bridge-common/bridge-app.matter
index 1d162d6635192c..7a6bea24441155 100644
--- a/examples/dynamic-bridge-app/bridge-common/bridge-app.matter
+++ b/examples/dynamic-bridge-app/bridge-common/bridge-app.matter
@@ -451,7 +451,7 @@ server cluster Actions = 37 {
command InstantAction(InstantActionRequest): DefaultSuccess = 0;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1481,7 +1481,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/dynamic-bridge-app/bridge-common/bridge-app.zap b/examples/dynamic-bridge-app/bridge-common/bridge-app.zap
index c8ea2b9adc1c19..47d910200b1004 100644
--- a/examples/dynamic-bridge-app/bridge-common/bridge-app.zap
+++ b/examples/dynamic-bridge-app/bridge-common/bridge-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -447,10 +447,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -489,10 +489,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6471,7 +6471,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -6745,10 +6745,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -6771,10 +6771,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/light-switch-app/esp32/main/CMakeLists.txt b/examples/light-switch-app/esp32/main/CMakeLists.txt
index 5d4e4dbdce2f08..bca86c5408a1c5 100644
--- a/examples/light-switch-app/esp32/main/CMakeLists.txt
+++ b/examples/light-switch-app/esp32/main/CMakeLists.txt
@@ -36,7 +36,7 @@ idf_component_register(PRIV_INCLUDE_DIRS
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/reporting"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/access-control-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/administrator-commissioning-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/descriptor"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
diff --git a/examples/light-switch-app/light-switch-common/light-switch-app.matter b/examples/light-switch-app/light-switch-common/light-switch-app.matter
index 176bb914c61dea..f6d8f6bb5ae616 100644
--- a/examples/light-switch-app/light-switch-common/light-switch-app.matter
+++ b/examples/light-switch-app/light-switch-common/light-switch-app.matter
@@ -395,7 +395,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1748,7 +1748,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/light-switch-app/light-switch-common/light-switch-app.zap b/examples/light-switch-app/light-switch-common/light-switch-app.zap
index d28695f5333ddf..3559d6a467bcbd 100644
--- a/examples/light-switch-app/light-switch-common/light-switch-app.zap
+++ b/examples/light-switch-app/light-switch-common/light-switch-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1181,10 +1181,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1207,10 +1207,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6435,7 +6435,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -6857,10 +6857,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -6883,10 +6883,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/lighting-app/esp32/main/CMakeLists.txt b/examples/lighting-app/esp32/main/CMakeLists.txt
index 1e25058d3cb3d5..7b2f18556db7a5 100644
--- a/examples/lighting-app/esp32/main/CMakeLists.txt
+++ b/examples/lighting-app/esp32/main/CMakeLists.txt
@@ -40,7 +40,7 @@ set(SRC_DIRS_LIST
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/reporting"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/access-control-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/administrator-commissioning-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/descriptor"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
diff --git a/examples/lighting-app/infineon/cyw30739/src/ZclCallbacks.cpp b/examples/lighting-app/infineon/cyw30739/src/ZclCallbacks.cpp
index ba9eb4056d3b72..fc07d131340dbd 100644
--- a/examples/lighting-app/infineon/cyw30739/src/ZclCallbacks.cpp
+++ b/examples/lighting-app/infineon/cyw30739/src/ZclCallbacks.cpp
@@ -26,7 +26,7 @@ using namespace chip;
using namespace chip::app::Clusters;
using namespace chip::DeviceLayer;
-void emberAfBasicClusterInitCallback(EndpointId endpoint)
+void emberAfBasicInformationClusterInitCallback(EndpointId endpoint)
{
uint16_t year;
uint8_t month;
@@ -37,7 +37,7 @@ void emberAfBasicClusterInitCallback(EndpointId endpoint)
{
snprintf(cString, sizeof(cString), "%04u%02u%02u", year, month, dayOfMonth);
}
- Basic::Attributes::ManufacturingDate::Set(endpoint, CharSpan(cString));
+ BasicInformation::Attributes::ManufacturingDate::Set(endpoint, CharSpan(cString));
}
void MatterPostAttributeChangeCallback(const app::ConcreteAttributePath & attributePath, uint8_t type, uint16_t size,
diff --git a/examples/lighting-app/lighting-common/lighting-app.matter b/examples/lighting-app/lighting-common/lighting-app.matter
index c8349802e7da65..2c2635d0b86ca0 100644
--- a/examples/lighting-app/lighting-common/lighting-app.matter
+++ b/examples/lighting-app/lighting-common/lighting-app.matter
@@ -351,7 +351,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1735,7 +1735,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/lighting-app/lighting-common/lighting-app.zap b/examples/lighting-app/lighting-common/lighting-app.zap
index d42c36437fe3e3..5a366ae96fe18f 100644
--- a/examples/lighting-app/lighting-common/lighting-app.zap
+++ b/examples/lighting-app/lighting-common/lighting-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1133,10 +1133,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1159,10 +1159,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6261,7 +6261,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -6583,10 +6583,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -6609,10 +6609,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/lighting-app/nxp/zap/lighting-on-off.matter b/examples/lighting-app/nxp/zap/lighting-on-off.matter
index a26c5db83cdee2..af2b51c8fd8a7c 100644
--- a/examples/lighting-app/nxp/zap/lighting-on-off.matter
+++ b/examples/lighting-app/nxp/zap/lighting-on-off.matter
@@ -348,7 +348,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1211,7 +1211,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/lighting-app/nxp/zap/lighting-on-off.zap b/examples/lighting-app/nxp/zap/lighting-on-off.zap
index 5f82ebb3268c4d..edbc585cd2b22d 100644
--- a/examples/lighting-app/nxp/zap/lighting-on-off.zap
+++ b/examples/lighting-app/nxp/zap/lighting-on-off.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1149,10 +1149,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1175,10 +1175,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6760,7 +6760,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -7294,10 +7294,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -7320,10 +7320,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/lock-app/esp32/main/CMakeLists.txt b/examples/lock-app/esp32/main/CMakeLists.txt
index 2ba9539afdbf5f..1bf3401dc890c9 100644
--- a/examples/lock-app/esp32/main/CMakeLists.txt
+++ b/examples/lock-app/esp32/main/CMakeLists.txt
@@ -46,7 +46,7 @@ idf_component_register(INCLUDE_DIRS
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/reporting"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/access-control-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/administrator-commissioning-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/descriptor"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/fixed-label-server"
@@ -161,7 +161,7 @@ idf_component_register(PRIV_INCLUDE_DIRS
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/reporting"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/access-control-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/administrator-commissioning-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/descriptor"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
diff --git a/examples/lock-app/infineon/cyw30739/src/ZclCallbacks.cpp b/examples/lock-app/infineon/cyw30739/src/ZclCallbacks.cpp
index d092def7f63db9..1607c9e053ec91 100644
--- a/examples/lock-app/infineon/cyw30739/src/ZclCallbacks.cpp
+++ b/examples/lock-app/infineon/cyw30739/src/ZclCallbacks.cpp
@@ -27,7 +27,7 @@ using namespace chip;
using namespace chip::app::Clusters;
using namespace chip::DeviceLayer;
-void emberAfBasicClusterInitCallback(EndpointId endpoint)
+void emberAfBasicInformationClusterInitCallback(EndpointId endpoint)
{
uint16_t year;
uint8_t month;
@@ -38,7 +38,7 @@ void emberAfBasicClusterInitCallback(EndpointId endpoint)
{
snprintf(cString, sizeof(cString), "%04u%02u%02u", year, month, dayOfMonth);
}
- Basic::Attributes::ManufacturingDate::Set(endpoint, CharSpan(cString));
+ BasicInformation::Attributes::ManufacturingDate::Set(endpoint, CharSpan(cString));
}
void MatterPostAttributeChangeCallback(const chip::app::ConcreteAttributePath & attributePath, uint8_t type, uint16_t size,
diff --git a/examples/lock-app/lock-common/lock-app.matter b/examples/lock-app/lock-common/lock-app.matter
index dd2071ec6d6f25..f325a5b3a7c55f 100644
--- a/examples/lock-app/lock-common/lock-app.matter
+++ b/examples/lock-app/lock-common/lock-app.matter
@@ -168,7 +168,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1891,7 +1891,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/lock-app/lock-common/lock-app.zap b/examples/lock-app/lock-common/lock-app.zap
index 0b66ed69502e04..a4ab26aab325a5 100644
--- a/examples/lock-app/lock-common/lock-app.zap
+++ b/examples/lock-app/lock-common/lock-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -881,10 +881,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -907,10 +907,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6199,10 +6199,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -6225,10 +6225,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/log-source-app/log-source-common/log-source-app.zap b/examples/log-source-app/log-source-common/log-source-app.zap
index ba9ef1ecc2e27b..20f81f455cc722 100644
--- a/examples/log-source-app/log-source-common/log-source-app.zap
+++ b/examples/log-source-app/log-source-common/log-source-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -883,10 +883,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -909,10 +909,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/ota-provider-app/esp32/main/CMakeLists.txt b/examples/ota-provider-app/esp32/main/CMakeLists.txt
index e5a6cf7327fcd6..01b8c67ad9d788 100644
--- a/examples/ota-provider-app/esp32/main/CMakeLists.txt
+++ b/examples/ota-provider-app/esp32/main/CMakeLists.txt
@@ -31,7 +31,7 @@ idf_component_register(PRIV_INCLUDE_DIRS
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/reporting"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/access-control-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/administrator-commissioning-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/descriptor"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
diff --git a/examples/ota-provider-app/ota-provider-common/ota-provider-app.matter b/examples/ota-provider-app/ota-provider-common/ota-provider-app.matter
index 892c5c6deb165b..d7326bba12c170 100644
--- a/examples/ota-provider-app/ota-provider-common/ota-provider-app.matter
+++ b/examples/ota-provider-app/ota-provider-common/ota-provider-app.matter
@@ -138,7 +138,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -813,7 +813,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/ota-provider-app/ota-provider-common/ota-provider-app.zap b/examples/ota-provider-app/ota-provider-common/ota-provider-app.zap
index f317dbe599207d..d49c8005dd3231 100644
--- a/examples/ota-provider-app/ota-provider-common/ota-provider-app.zap
+++ b/examples/ota-provider-app/ota-provider-common/ota-provider-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -901,10 +901,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -927,10 +927,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
diff --git a/examples/ota-requestor-app/esp32/main/CMakeLists.txt b/examples/ota-requestor-app/esp32/main/CMakeLists.txt
index c711b84c438ef5..bcb8d1908d0619 100644
--- a/examples/ota-requestor-app/esp32/main/CMakeLists.txt
+++ b/examples/ota-requestor-app/esp32/main/CMakeLists.txt
@@ -36,7 +36,7 @@ set(SRC_DIRS_LIST
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/reporting"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/access-control-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/administrator-commissioning-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/descriptor"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
diff --git a/examples/ota-requestor-app/ota-requestor-common/ota-requestor-app.matter b/examples/ota-requestor-app/ota-requestor-common/ota-requestor-app.matter
index 52ef6e1109a4ef..5e7c2196fc5ed3 100644
--- a/examples/ota-requestor-app/ota-requestor-common/ota-requestor-app.matter
+++ b/examples/ota-requestor-app/ota-requestor-common/ota-requestor-app.matter
@@ -251,7 +251,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1004,7 +1004,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/ota-requestor-app/ota-requestor-common/ota-requestor-app.zap b/examples/ota-requestor-app/ota-requestor-common/ota-requestor-app.zap
index 06cdae7a50d658..34fd76cba36170 100644
--- a/examples/ota-requestor-app/ota-requestor-common/ota-requestor-app.zap
+++ b/examples/ota-requestor-app/ota-requestor-common/ota-requestor-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1079,10 +1079,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1105,10 +1105,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6293,7 +6293,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
diff --git a/examples/placeholder/linux/apps/app1/config.matter b/examples/placeholder/linux/apps/app1/config.matter
index c2fa5f0028e989..7f0d172ef41925 100644
--- a/examples/placeholder/linux/apps/app1/config.matter
+++ b/examples/placeholder/linux/apps/app1/config.matter
@@ -510,7 +510,7 @@ server cluster Actions = 37 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -2681,7 +2681,7 @@ endpoint 0 {
callback attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
@@ -3098,7 +3098,7 @@ endpoint 1 {
ram attribute clusterRevision default = 5;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/placeholder/linux/apps/app1/config.zap b/examples/placeholder/linux/apps/app1/config.zap
index 18b4834c3909da..b19559d673991d 100644
--- a/examples/placeholder/linux/apps/app1/config.zap
+++ b/examples/placeholder/linux/apps/app1/config.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -533,10 +533,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -559,10 +559,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -7627,10 +7627,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -7653,10 +7653,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -8014,6 +8014,74 @@
}
]
},
+ {
+ "name": "Fixed Label",
+ "code": 64,
+ "mfgCode": null,
+ "define": "FIXED_LABEL_CLUSTER",
+ "side": "client",
+ "enabled": 1,
+ "attributes": [
+ {
+ "name": "ClusterRevision",
+ "code": 65533,
+ "mfgCode": null,
+ "side": "client",
+ "type": "int16u",
+ "included": 1,
+ "storageOption": "RAM",
+ "singleton": 0,
+ "bounded": 0,
+ "defaultValue": "1",
+ "reportable": 1,
+ "minInterval": 0,
+ "maxInterval": 65344,
+ "reportableChange": 0
+ }
+ ]
+ },
+ {
+ "name": "Fixed Label",
+ "code": 64,
+ "mfgCode": null,
+ "define": "FIXED_LABEL_CLUSTER",
+ "side": "server",
+ "enabled": 1,
+ "attributes": [
+ {
+ "name": "label list",
+ "code": 0,
+ "mfgCode": null,
+ "side": "server",
+ "type": "array",
+ "included": 1,
+ "storageOption": "External",
+ "singleton": 0,
+ "bounded": 0,
+ "defaultValue": "",
+ "reportable": 1,
+ "minInterval": 0,
+ "maxInterval": 65344,
+ "reportableChange": 0
+ },
+ {
+ "name": "ClusterRevision",
+ "code": 65533,
+ "mfgCode": null,
+ "side": "server",
+ "type": "int16u",
+ "included": 1,
+ "storageOption": "RAM",
+ "singleton": 0,
+ "bounded": 0,
+ "defaultValue": "1",
+ "reportable": 1,
+ "minInterval": 0,
+ "maxInterval": 65344,
+ "reportableChange": 0
+ }
+ ]
+ },
{
"name": "Color Control",
"code": 768,
@@ -8235,90 +8303,6 @@
"reportableChange": 0
}
]
- },
- {
- "name": "Fixed Label",
- "code": 64,
- "mfgCode": null,
- "define": "FIXED_LABEL_CLUSTER",
- "side": "client",
- "enabled": 1,
- "attributes": [
- {
- "name": "LabelList",
- "code": 0,
- "mfgCode": null,
- "side": "client",
- "type": "array",
- "included": 1,
- "storageOption": "RAM",
- "singleton": 0,
- "bounded": 0,
- "defaultValue": "",
- "reportable": 1,
- "minInterval": 0,
- "maxInterval": 65344,
- "reportableChange": 0
- },
- {
- "name": "ClusterRevision",
- "code": 65533,
- "mfgCode": null,
- "side": "client",
- "type": "int16u",
- "included": 1,
- "storageOption": "RAM",
- "singleton": 0,
- "bounded": 0,
- "defaultValue": "1",
- "reportable": 1,
- "minInterval": 0,
- "maxInterval": 65344,
- "reportableChange": 0
- }
- ]
- },
- {
- "name": "Fixed Label",
- "code": 64,
- "mfgCode": null,
- "define": "FIXED_LABEL_CLUSTER",
- "side": "server",
- "enabled": 1,
- "attributes": [
- {
- "name": "LabelList",
- "code": 0,
- "mfgCode": null,
- "side": "server",
- "type": "array",
- "included": 1,
- "storageOption": "RAM",
- "singleton": 0,
- "bounded": 0,
- "defaultValue": "",
- "reportable": 1,
- "minInterval": 0,
- "maxInterval": 65344,
- "reportableChange": 0
- },
- {
- "name": "ClusterRevision",
- "code": 65533,
- "mfgCode": null,
- "side": "server",
- "type": "int16u",
- "included": 1,
- "storageOption": "RAM",
- "singleton": 0,
- "bounded": 0,
- "defaultValue": "1",
- "reportable": 1,
- "minInterval": 0,
- "maxInterval": 65344,
- "reportableChange": 0
- }
- ]
}
]
}
diff --git a/examples/placeholder/linux/apps/app2/config.matter b/examples/placeholder/linux/apps/app2/config.matter
index c2fa5f0028e989..7f0d172ef41925 100644
--- a/examples/placeholder/linux/apps/app2/config.matter
+++ b/examples/placeholder/linux/apps/app2/config.matter
@@ -510,7 +510,7 @@ server cluster Actions = 37 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -2681,7 +2681,7 @@ endpoint 0 {
callback attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
@@ -3098,7 +3098,7 @@ endpoint 1 {
ram attribute clusterRevision default = 5;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/placeholder/linux/apps/app2/config.zap b/examples/placeholder/linux/apps/app2/config.zap
index a85e66cdef9859..ff3ba116ab937d 100644
--- a/examples/placeholder/linux/apps/app2/config.zap
+++ b/examples/placeholder/linux/apps/app2/config.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -533,10 +533,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -559,10 +559,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -7627,10 +7627,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -7653,10 +7653,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -8015,38 +8015,12 @@
]
},
{
- "name": "Color Control",
- "code": 768,
+ "name": "Fixed Label",
+ "code": 64,
"mfgCode": null,
- "define": "COLOR_CONTROL_CLUSTER",
+ "define": "FIXED_LABEL_CLUSTER",
"side": "client",
- "enabled": 0,
- "commands": [
- {
- "name": "MoveToColor",
- "code": 7,
- "mfgCode": null,
- "source": "client",
- "incoming": 1,
- "outgoing": 0
- },
- {
- "name": "MoveColor",
- "code": 8,
- "mfgCode": null,
- "source": "client",
- "incoming": 1,
- "outgoing": 0
- },
- {
- "name": "StepColor",
- "code": 9,
- "mfgCode": null,
- "source": "client",
- "incoming": 1,
- "outgoing": 0
- }
- ],
+ "enabled": 1,
"attributes": [
{
"name": "ClusterRevision",
@@ -8058,10 +8032,10 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
- "defaultValue": "5",
+ "defaultValue": "1",
"reportable": 1,
- "minInterval": 1,
- "maxInterval": 65534,
+ "minInterval": 0,
+ "maxInterval": 65344,
"reportableChange": 0
}
]
@@ -8071,17 +8045,17 @@
"code": 64,
"mfgCode": null,
"define": "FIXED_LABEL_CLUSTER",
- "side": "client",
+ "side": "server",
"enabled": 1,
"attributes": [
{
- "name": "LabelList",
+ "name": "label list",
"code": 0,
"mfgCode": null,
- "side": "client",
+ "side": "server",
"type": "array",
"included": 1,
- "storageOption": "RAM",
+ "storageOption": "External",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
@@ -8094,7 +8068,7 @@
"name": "ClusterRevision",
"code": 65533,
"mfgCode": null,
- "side": "client",
+ "side": "server",
"type": "int16u",
"included": 1,
"storageOption": "RAM",
@@ -8109,43 +8083,53 @@
]
},
{
- "name": "Fixed Label",
- "code": 64,
+ "name": "Color Control",
+ "code": 768,
"mfgCode": null,
- "define": "FIXED_LABEL_CLUSTER",
- "side": "server",
- "enabled": 1,
- "attributes": [
+ "define": "COLOR_CONTROL_CLUSTER",
+ "side": "client",
+ "enabled": 0,
+ "commands": [
{
- "name": "LabelList",
- "code": 0,
+ "name": "MoveToColor",
+ "code": 7,
"mfgCode": null,
- "side": "server",
- "type": "array",
- "included": 1,
- "storageOption": "RAM",
- "singleton": 0,
- "bounded": 0,
- "defaultValue": "",
- "reportable": 1,
- "minInterval": 0,
- "maxInterval": 65344,
- "reportableChange": 0
+ "source": "client",
+ "incoming": 1,
+ "outgoing": 0
},
+ {
+ "name": "MoveColor",
+ "code": 8,
+ "mfgCode": null,
+ "source": "client",
+ "incoming": 1,
+ "outgoing": 0
+ },
+ {
+ "name": "StepColor",
+ "code": 9,
+ "mfgCode": null,
+ "source": "client",
+ "incoming": 1,
+ "outgoing": 0
+ }
+ ],
+ "attributes": [
{
"name": "ClusterRevision",
"code": 65533,
"mfgCode": null,
- "side": "server",
+ "side": "client",
"type": "int16u",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
- "defaultValue": "1",
+ "defaultValue": "5",
"reportable": 1,
- "minInterval": 0,
- "maxInterval": 65344,
+ "minInterval": 1,
+ "maxInterval": 65534,
"reportableChange": 0
}
]
diff --git a/examples/pump-app/pump-common/pump-app.matter b/examples/pump-app/pump-common/pump-app.matter
index 8d670ca2600f03..f48ce24db8d6b4 100644
--- a/examples/pump-app/pump-common/pump-app.matter
+++ b/examples/pump-app/pump-common/pump-app.matter
@@ -284,7 +284,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1275,7 +1275,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/pump-app/pump-common/pump-app.zap b/examples/pump-app/pump-common/pump-app.zap
index 47b1c82c1bc326..e74ae94ee74348 100644
--- a/examples/pump-app/pump-common/pump-app.zap
+++ b/examples/pump-app/pump-common/pump-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1143,10 +1143,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"commands": [
@@ -1195,10 +1195,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -6207,7 +6207,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
diff --git a/examples/pump-controller-app/pump-controller-common/pump-controller-app.matter b/examples/pump-controller-app/pump-controller-common/pump-controller-app.matter
index 3fda4212f7a072..b5e2093a66a48b 100644
--- a/examples/pump-controller-app/pump-controller-common/pump-controller-app.matter
+++ b/examples/pump-controller-app/pump-controller-common/pump-controller-app.matter
@@ -183,7 +183,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1131,7 +1131,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/pump-controller-app/pump-controller-common/pump-controller-app.zap b/examples/pump-controller-app/pump-controller-common/pump-controller-app.zap
index 7902e94a4c6dd6..a8eec31d3b3bb6 100644
--- a/examples/pump-controller-app/pump-controller-common/pump-controller-app.zap
+++ b/examples/pump-controller-app/pump-controller-common/pump-controller-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1101,10 +1101,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1143,10 +1143,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
diff --git a/examples/temperature-measurement-app/esp32/main/CMakeLists.txt b/examples/temperature-measurement-app/esp32/main/CMakeLists.txt
index dbf518ff18844a..0f138ab0d442e8 100644
--- a/examples/temperature-measurement-app/esp32/main/CMakeLists.txt
+++ b/examples/temperature-measurement-app/esp32/main/CMakeLists.txt
@@ -34,7 +34,7 @@ set(SRC_DIRS_LIST
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/reporting"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/access-control-server"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/administrator-commissioning-server"
- "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic"
+ "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/basic-information"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/bindings"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/descriptor"
"${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/src/app/clusters/diagnostic-logs-server"
diff --git a/examples/temperature-measurement-app/esp32/main/temperature-measurement.matter b/examples/temperature-measurement-app/esp32/main/temperature-measurement.matter
index 99fee8ee46a6ac..52b56ed2c4f91d 100644
--- a/examples/temperature-measurement-app/esp32/main/temperature-measurement.matter
+++ b/examples/temperature-measurement-app/esp32/main/temperature-measurement.matter
@@ -86,7 +86,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -859,7 +859,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/temperature-measurement-app/esp32/main/temperature-measurement.zap b/examples/temperature-measurement-app/esp32/main/temperature-measurement.zap
index 397a94a8355600..42b4b659900568 100644
--- a/examples/temperature-measurement-app/esp32/main/temperature-measurement.zap
+++ b/examples/temperature-measurement-app/esp32/main/temperature-measurement.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -547,10 +547,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -573,10 +573,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -3611,10 +3611,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -3637,10 +3637,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/thermostat/thermostat-common/thermostat.matter b/examples/thermostat/thermostat-common/thermostat.matter
index 03f3b4201c8104..60a9c708e1cfc0 100644
--- a/examples/thermostat/thermostat-common/thermostat.matter
+++ b/examples/thermostat/thermostat-common/thermostat.matter
@@ -338,7 +338,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1524,7 +1524,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/thermostat/thermostat-common/thermostat.zap b/examples/thermostat/thermostat-common/thermostat.zap
index 376f877bc7f67e..ba937d1043aa4c 100644
--- a/examples/thermostat/thermostat-common/thermostat.zap
+++ b/examples/thermostat/thermostat-common/thermostat.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 87,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -16,12 +16,6 @@
}
],
"package": [
- {
- "pathRelativity": "relativeToZap",
- "path": "../../../src/app/zap-templates/app-templates.json",
- "type": "gen-templates-json",
- "version": "chip-v1"
- },
{
"pathRelativity": "relativeToZap",
"path": "../../../src/app/zap-templates/zcl/zcl.json",
@@ -29,6 +23,12 @@
"category": "matter",
"version": 1,
"description": "Matter SDK ZCL data"
+ },
+ {
+ "pathRelativity": "relativeToZap",
+ "path": "../../../src/app/zap-templates/app-templates.json",
+ "type": "gen-templates-json",
+ "version": "chip-v1"
}
],
"endpointTypes": [
@@ -1115,10 +1115,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1141,10 +1141,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -8845,10 +8845,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -8871,10 +8871,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
@@ -14634,6 +14634,5 @@
"endpointVersion": 1,
"deviceIdentifier": 769
}
- ],
- "log": []
+ ]
}
\ No newline at end of file
diff --git a/examples/tv-app/tv-common/tv-app.matter b/examples/tv-app/tv-common/tv-app.matter
index afec0ee0c4a6b8..904b841097fd33 100644
--- a/examples/tv-app/tv-common/tv-app.matter
+++ b/examples/tv-app/tv-common/tv-app.matter
@@ -260,7 +260,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -2163,7 +2163,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/tv-app/tv-common/tv-app.zap b/examples/tv-app/tv-common/tv-app.zap
index 72f8bfe4df751b..bb3e5878e7ef16 100644
--- a/examples/tv-app/tv-common/tv-app.zap
+++ b/examples/tv-app/tv-common/tv-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 87,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -16,12 +16,6 @@
}
],
"package": [
- {
- "pathRelativity": "relativeToZap",
- "path": "../../../src/app/zap-templates/app-templates.json",
- "type": "gen-templates-json",
- "version": "chip-v1"
- },
{
"pathRelativity": "relativeToZap",
"path": "../../../src/app/zap-templates/zcl/zcl.json",
@@ -29,6 +23,12 @@
"category": "matter",
"version": 1,
"description": "Matter SDK ZCL data"
+ },
+ {
+ "pathRelativity": "relativeToZap",
+ "path": "../../../src/app/zap-templates/app-templates.json",
+ "type": "gen-templates-json",
+ "version": "chip-v1"
}
],
"endpointTypes": [
@@ -1099,10 +1099,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1125,10 +1125,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -12364,6 +12364,5 @@
"endpointVersion": 1,
"deviceIdentifier": 36
}
- ],
- "log": []
+ ]
}
\ No newline at end of file
diff --git a/examples/tv-casting-app/tv-casting-common/tv-casting-app.matter b/examples/tv-casting-app/tv-casting-common/tv-casting-app.matter
index b94bac44d601a1..90e17e0de986d1 100644
--- a/examples/tv-casting-app/tv-casting-common/tv-casting-app.matter
+++ b/examples/tv-casting-app/tv-casting-common/tv-casting-app.matter
@@ -625,7 +625,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -2177,7 +2177,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/tv-casting-app/tv-casting-common/tv-casting-app.zap b/examples/tv-casting-app/tv-casting-common/tv-casting-app.zap
index f5b9081f4b73ca..3b7aa956e4b67e 100644
--- a/examples/tv-casting-app/tv-casting-common/tv-casting-app.zap
+++ b/examples/tv-casting-app/tv-casting-common/tv-casting-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1081,10 +1081,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1107,10 +1107,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -7689,7 +7689,7 @@
"code": 15,
"mfgCode": null,
"side": "server",
- "type": "bitmap8",
+ "type": "LevelControlOptions",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
@@ -8163,10 +8163,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -8189,10 +8189,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
@@ -14345,10 +14345,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -14371,10 +14371,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
diff --git a/examples/window-app/common/window-app.matter b/examples/window-app/common/window-app.matter
index 84b08282881f00..8f2177004bedff 100644
--- a/examples/window-app/common/window-app.matter
+++ b/examples/window-app/common/window-app.matter
@@ -309,7 +309,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1608,7 +1608,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/examples/window-app/common/window-app.zap b/examples/window-app/common/window-app.zap
index 57c6ded0a0b67c..a9a56ff2f42823 100644
--- a/examples/window-app/common/window-app.zap
+++ b/examples/window-app/common/window-app.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 81,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -1149,10 +1149,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 0,
"attributes": [
@@ -1191,10 +1191,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 1,
"attributes": [
@@ -9241,6 +9241,5 @@
"endpointVersion": 2,
"deviceIdentifier": 514
}
- ],
- "log": []
+ ]
}
\ No newline at end of file
diff --git a/scripts/idl/tests/inputs/large_all_clusters_app.matter b/scripts/idl/tests/inputs/large_all_clusters_app.matter
index 6cadd621bc383b..47810281dfd37f 100644
--- a/scripts/idl/tests/inputs/large_all_clusters_app.matter
+++ b/scripts/idl/tests/inputs/large_all_clusters_app.matter
@@ -562,7 +562,7 @@ server cluster Actions = 37 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -3916,7 +3916,7 @@ endpoint 0 {
callback attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/scripts/idl/tests/inputs/large_lighting_app.matter b/scripts/idl/tests/inputs/large_lighting_app.matter
index b4097981369589..67b2390fe614b7 100644
--- a/scripts/idl/tests/inputs/large_lighting_app.matter
+++ b/scripts/idl/tests/inputs/large_lighting_app.matter
@@ -346,7 +346,7 @@ server cluster AccessControl = 31 {
readonly attribute int16u clusterRevision = 65533;
}
-server cluster Basic = 40 {
+server cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -1730,7 +1730,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;
}
- server cluster Basic {
+ server cluster BasicInformation {
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
diff --git a/scripts/idl/tests/outputs/large_all_clusters_app/cpp-app/PluginApplicationCallbacks.h b/scripts/idl/tests/outputs/large_all_clusters_app/cpp-app/PluginApplicationCallbacks.h
index c1f45b2d088240..713ef6ef5ab70e 100644
--- a/scripts/idl/tests/outputs/large_all_clusters_app/cpp-app/PluginApplicationCallbacks.h
+++ b/scripts/idl/tests/outputs/large_all_clusters_app/cpp-app/PluginApplicationCallbacks.h
@@ -7,7 +7,7 @@ void MatterApplicationBasicPluginServerInitCallback();
void MatterApplicationLauncherPluginServerInitCallback();
void MatterAudioOutputPluginServerInitCallback();
void MatterBarrierControlPluginServerInitCallback();
-void MatterBasicPluginServerInitCallback();
+void MatterBasicInformationPluginServerInitCallback();
void MatterBinaryInputBasicPluginServerInitCallback();
void MatterBindingPluginServerInitCallback();
void MatterBooleanStatePluginServerInitCallback();
@@ -72,7 +72,7 @@ void MatterWindowCoveringPluginServerInitCallback();
MatterApplicationLauncherPluginServerInitCallback(); \
MatterAudioOutputPluginServerInitCallback(); \
MatterBarrierControlPluginServerInitCallback(); \
- MatterBasicPluginServerInitCallback(); \
+ MatterBasicInformationPluginServerInitCallback(); \
MatterBinaryInputBasicPluginServerInitCallback(); \
MatterBindingPluginServerInitCallback(); \
MatterBooleanStatePluginServerInitCallback(); \
diff --git a/scripts/idl/tests/outputs/large_all_clusters_app/cpp-app/callback-stub.cpp b/scripts/idl/tests/outputs/large_all_clusters_app/cpp-app/callback-stub.cpp
index a0bc3f39be80be..3ca10516cd3a58 100644
--- a/scripts/idl/tests/outputs/large_all_clusters_app/cpp-app/callback-stub.cpp
+++ b/scripts/idl/tests/outputs/large_all_clusters_app/cpp-app/callback-stub.cpp
@@ -34,8 +34,8 @@ void emberAfClusterInitCallback(EndpointId endpoint, ClusterId clusterId)
case app::Clusters::BarrierControl::Id:
emberAfBarrierControlClusterInitCallback(endpoint);
break;
- case app::Clusters::Basic::Id:
- emberAfBasicClusterInitCallback(endpoint);
+ case app::Clusters::BasicInformation::Id:
+ emberAfBasicInformationClusterInitCallback(endpoint);
break;
case app::Clusters::BinaryInputBasic::Id:
emberAfBinaryInputBasicClusterInitCallback(endpoint);
@@ -247,7 +247,7 @@ void __attribute__((weak)) emberAfBarrierControlClusterInitCallback(EndpointId e
// To prevent warning
(void) endpoint;
}
-void __attribute__((weak)) emberAfBasicClusterInitCallback(EndpointId endpoint)
+void __attribute__((weak)) emberAfBasicInformationClusterInitCallback(EndpointId endpoint)
{
// To prevent warning
(void) endpoint;
diff --git a/scripts/idl/tests/outputs/large_lighting_app/cpp-app/PluginApplicationCallbacks.h b/scripts/idl/tests/outputs/large_lighting_app/cpp-app/PluginApplicationCallbacks.h
index cab97ff0897bbb..de27155a6c4896 100644
--- a/scripts/idl/tests/outputs/large_lighting_app/cpp-app/PluginApplicationCallbacks.h
+++ b/scripts/idl/tests/outputs/large_lighting_app/cpp-app/PluginApplicationCallbacks.h
@@ -1,7 +1,7 @@
#pragma once
void MatterAccessControlPluginServerInitCallback();
void MatterAdministratorCommissioningPluginServerInitCallback();
-void MatterBasicPluginServerInitCallback();
+void MatterBasicInformationPluginServerInitCallback();
void MatterColorControlPluginServerInitCallback();
void MatterDescriptorPluginServerInitCallback();
void MatterDiagnosticLogsPluginServerInitCallback();
@@ -29,7 +29,7 @@ void MatterWiFiNetworkDiagnosticsPluginServerInitCallback();
#define MATTER_PLUGINS_INIT \
MatterAccessControlPluginServerInitCallback(); \
MatterAdministratorCommissioningPluginServerInitCallback(); \
- MatterBasicPluginServerInitCallback(); \
+ MatterBasicInformationPluginServerInitCallback(); \
MatterColorControlPluginServerInitCallback(); \
MatterDescriptorPluginServerInitCallback(); \
MatterDiagnosticLogsPluginServerInitCallback(); \
diff --git a/scripts/idl/tests/outputs/large_lighting_app/cpp-app/callback-stub.cpp b/scripts/idl/tests/outputs/large_lighting_app/cpp-app/callback-stub.cpp
index 54955e5a834a06..edaf1f292fc935 100644
--- a/scripts/idl/tests/outputs/large_lighting_app/cpp-app/callback-stub.cpp
+++ b/scripts/idl/tests/outputs/large_lighting_app/cpp-app/callback-stub.cpp
@@ -16,8 +16,8 @@ void emberAfClusterInitCallback(EndpointId endpoint, ClusterId clusterId)
case app::Clusters::AdministratorCommissioning::Id:
emberAfAdministratorCommissioningClusterInitCallback(endpoint);
break;
- case app::Clusters::Basic::Id:
- emberAfBasicClusterInitCallback(endpoint);
+ case app::Clusters::BasicInformation::Id:
+ emberAfBasicInformationClusterInitCallback(endpoint);
break;
case app::Clusters::ColorControl::Id:
emberAfColorControlClusterInitCallback(endpoint);
@@ -106,7 +106,7 @@ void __attribute__((weak)) emberAfAdministratorCommissioningClusterInitCallback(
// To prevent warning
(void) endpoint;
}
-void __attribute__((weak)) emberAfBasicClusterInitCallback(EndpointId endpoint)
+void __attribute__((weak)) emberAfBasicInformationClusterInitCallback(EndpointId endpoint)
{
// To prevent warning
(void) endpoint;
diff --git a/src/app/chip_data_model.gni b/src/app/chip_data_model.gni
index a7627cb678ebff..3430cb10e8759d 100644
--- a/src/app/chip_data_model.gni
+++ b/src/app/chip_data_model.gni
@@ -99,7 +99,7 @@ template("chip_data_model") {
sources += [
"${_app_root}/clusters/barrier-control-server/barrier-control-server.h",
- "${_app_root}/clusters/basic/basic.h",
+ "${_app_root}/clusters/basic-information/basic-information.h",
"${_app_root}/clusters/client-monitoring-server/client-monitoring-server.h",
"${_app_root}/clusters/color-control-server/color-control-server.h",
"${_app_root}/clusters/door-lock-server/door-lock-server.h",
diff --git a/src/app/clusters/basic/basic.cpp b/src/app/clusters/basic-information/basic-information.cpp
similarity index 96%
rename from src/app/clusters/basic/basic.cpp
rename to src/app/clusters/basic-information/basic-information.cpp
index fb43a7e57c3540..d280c41e130d62 100644
--- a/src/app/clusters/basic/basic.cpp
+++ b/src/app/clusters/basic-information/basic-information.cpp
@@ -16,7 +16,7 @@
*
*/
-#include "basic.h"
+#include "basic-information.h"
#include
#include
@@ -35,8 +35,8 @@
using namespace chip;
using namespace chip::app;
using namespace chip::app::Clusters;
-using namespace chip::app::Clusters::Basic;
-using namespace chip::app::Clusters::Basic::Attributes;
+using namespace chip::app::Clusters::BasicInformation;
+using namespace chip::app::Clusters::BasicInformation::Attributes;
using namespace chip::DeviceLayer;
namespace {
@@ -49,7 +49,7 @@ class BasicAttrAccess : public AttributeAccessInterface
{
public:
// Register for the Basic cluster on all endpoints.
- BasicAttrAccess() : AttributeAccessInterface(Optional::Missing(), Basic::Id) {}
+ BasicAttrAccess() : AttributeAccessInterface(Optional::Missing(), BasicInformation::Id) {}
CHIP_ERROR Read(const ConcreteReadAttributePath & aPath, AttributeValueEncoder & aEncoder) override;
CHIP_ERROR Write(const ConcreteDataAttributePath & aPath, AttributeValueDecoder & aDecoder) override;
@@ -70,7 +70,7 @@ CHIP_ERROR EncodeStringOnSuccess(CHIP_ERROR status, AttributeValueEncoder & enco
CHIP_ERROR BasicAttrAccess::Read(const ConcreteReadAttributePath & aPath, AttributeValueEncoder & aEncoder)
{
- if (aPath.mClusterId != Basic::Id)
+ if (aPath.mClusterId != BasicInformation::Id)
{
// We shouldn't have been called at all.
return CHIP_ERROR_INVALID_ARGUMENT;
@@ -269,7 +269,7 @@ CHIP_ERROR BasicAttrAccess::Read(const ConcreteReadAttributePath & aPath, Attrib
}
case CapabilityMinima::Id: {
- Basic::Structs::CapabilityMinimaStruct::Type capabilityMinima;
+ BasicInformation::Structs::CapabilityMinimaStruct::Type capabilityMinima;
// TODO: These values must be set from something based on the SDK impl, but there are no such constants today.
constexpr uint16_t kMinCaseSessionsPerFabricMandatedBySpec = 3;
@@ -315,7 +315,7 @@ CHIP_ERROR BasicAttrAccess::ReadLocation(AttributeValueEncoder & aEncoder)
CHIP_ERROR BasicAttrAccess::Write(const ConcreteDataAttributePath & aPath, AttributeValueDecoder & aDecoder)
{
- VerifyOrDie(aPath.mClusterId == Basic::Id);
+ VerifyOrDie(aPath.mClusterId == BasicInformation::Id);
switch (aPath.mAttributeId)
{
@@ -350,7 +350,7 @@ class PlatformMgrDelegate : public DeviceLayer::PlatformManagerDelegate
// The StartUp event SHALL be emitted by a Node after completing a boot or reboot process
ChipLogDetail(Zcl, "Emitting StartUp event");
- for (auto endpoint : EnabledEndpointsWithServerCluster(Basic::Id))
+ for (auto endpoint : EnabledEndpointsWithServerCluster(BasicInformation::Id))
{
// If Basic cluster is implemented on this endpoint
Events::StartUp::Type event{ softwareVersion };
@@ -369,7 +369,7 @@ class PlatformMgrDelegate : public DeviceLayer::PlatformManagerDelegate
// The ShutDown event SHOULD be emitted on a best-effort basis by a Node prior to any orderly shutdown sequence.
ChipLogDetail(Zcl, "Emitting ShutDown event");
- for (auto endpoint : EnabledEndpointsWithServerCluster(Basic::Id))
+ for (auto endpoint : EnabledEndpointsWithServerCluster(BasicInformation::Id))
{
// If Basic cluster is implemented on this endpoint
Events::ShutDown::Type event;
@@ -394,21 +394,21 @@ PlatformMgrDelegate gPlatformMgrDelegate;
namespace chip {
namespace app {
namespace Clusters {
-namespace Basic {
+namespace BasicInformation {
bool IsLocalConfigDisabled()
{
bool disabled = false;
EmberAfStatus status = LocalConfigDisabled::Get(0, &disabled);
return status == EMBER_ZCL_STATUS_SUCCESS && disabled;
}
-} // namespace Basic
+} // namespace BasicInformation
} // namespace Clusters
} // namespace app
} // namespace chip
void emberAfBasicClusterServerInitCallback(chip::EndpointId endpoint) {}
-void MatterBasicPluginServerInitCallback()
+void MatterBasicInformationPluginServerInitCallback()
{
registerAttributeAccessOverride(&gAttrAccess);
PlatformMgr().SetDelegate(&gPlatformMgrDelegate);
diff --git a/src/app/clusters/basic/basic.h b/src/app/clusters/basic-information/basic-information.h
similarity index 95%
rename from src/app/clusters/basic/basic.h
rename to src/app/clusters/basic-information/basic-information.h
index 16d1f1e6b08624..4639c1c645df46 100644
--- a/src/app/clusters/basic/basic.h
+++ b/src/app/clusters/basic-information/basic-information.h
@@ -22,14 +22,14 @@
namespace chip {
namespace app {
namespace Clusters {
-namespace Basic {
+namespace BasicInformation {
/**
* Check whether LocalConfigDisabled is set (on endpoint 0, which is the only
* place the Basic Information cluster exists and can have the attribute be
* set).
*/
bool IsLocalConfigDisabled();
-} // namespace Basic
+} // namespace BasicInformation
} // namespace Clusters
} // namespace app
} // namespace chip
diff --git a/src/app/clusters/operational-credentials-server/operational-credentials-server.cpp b/src/app/clusters/operational-credentials-server/operational-credentials-server.cpp
index bfcdc9c7339947..7b6bf7f5009b9c 100644
--- a/src/app/clusters/operational-credentials-server/operational-credentials-server.cpp
+++ b/src/app/clusters/operational-credentials-server/operational-credentials-server.cpp
@@ -330,10 +330,10 @@ class OpCredsFabricTableDelegate : public chip::FabricTable::Delegate
void FabricWillBeRemoved(const FabricTable & fabricTable, FabricIndex fabricIndex) override
{
// The Leave event SHOULD be emitted by a Node prior to permanently leaving the Fabric.
- for (auto endpoint : EnabledEndpointsWithServerCluster(Basic::Id))
+ for (auto endpoint : EnabledEndpointsWithServerCluster(BasicInformation::Id))
{
// If Basic cluster is implemented on this endpoint
- Basic::Events::Leave::Type event;
+ BasicInformation::Events::Leave::Type event;
event.fabricIndex = fabricIndex;
EventNumber eventNumber;
diff --git a/src/app/clusters/ota-requestor/DefaultOTARequestor.cpp b/src/app/clusters/ota-requestor/DefaultOTARequestor.cpp
index a46f51f086fd6e..e339659b716019 100644
--- a/src/app/clusters/ota-requestor/DefaultOTARequestor.cpp
+++ b/src/app/clusters/ota-requestor/DefaultOTARequestor.cpp
@@ -20,7 +20,7 @@
* OTA Requestor logic is contained in this class.
*/
-#include
+#include
#include
#include
#include
@@ -744,7 +744,7 @@ CHIP_ERROR DefaultOTARequestor::SendQueryImageRequest(Messaging::ExchangeManager
ReturnErrorOnFailure(DeviceLayer::ConfigurationMgr().GetSoftwareVersion(args.softwareVersion));
args.protocolsSupported = kProtocolsSupported;
- args.requestorCanConsent.SetValue(!Basic::IsLocalConfigDisabled() && mOtaRequestorDriver->CanConsent());
+ args.requestorCanConsent.SetValue(!BasicInformation::IsLocalConfigDisabled() && mOtaRequestorDriver->CanConsent());
uint16_t hardwareVersion;
if (DeviceLayer::GetDeviceInstanceInfoProvider()->GetHardwareVersion(hardwareVersion) == CHIP_NO_ERROR)
diff --git a/src/app/tests/suites/TestArmFailSafe.yaml b/src/app/tests/suites/TestArmFailSafe.yaml
index 245788fd71cc0d..599164d74ecd0f 100644
--- a/src/app/tests/suites/TestArmFailSafe.yaml
+++ b/src/app/tests/suites/TestArmFailSafe.yaml
@@ -56,7 +56,7 @@ tests:
- label: "Reads NodeLabel mandatory attribute of target device"
command: "readAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
response:
value: ""
diff --git a/src/app/tests/suites/TestBasicInformation.yaml b/src/app/tests/suites/TestBasicInformation.yaml
index 64fc0cca945730..340d6ddf2f3e36 100644
--- a/src/app/tests/suites/TestBasicInformation.yaml
+++ b/src/app/tests/suites/TestBasicInformation.yaml
@@ -16,7 +16,7 @@ name: Basic Information Cluster Tests
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/TestCASERecovery.yaml b/src/app/tests/suites/TestCASERecovery.yaml
index efd0e8094fd46d..69ecf23a9f50fe 100644
--- a/src/app/tests/suites/TestCASERecovery.yaml
+++ b/src/app/tests/suites/TestCASERecovery.yaml
@@ -16,7 +16,7 @@ name: Test for CASE recovery
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/TestGroupDemoCommand.yaml b/src/app/tests/suites/TestGroupDemoCommand.yaml
index 5db244622f38ab..950e0dcdfd6a7e 100644
--- a/src/app/tests/suites/TestGroupDemoCommand.yaml
+++ b/src/app/tests/suites/TestGroupDemoCommand.yaml
@@ -28,7 +28,7 @@ name: Group Messaging Demo Commands
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/TestGroupMessaging.yaml b/src/app/tests/suites/TestGroupMessaging.yaml
index df7355429e8dba..1cd3fc9ba2ef31 100644
--- a/src/app/tests/suites/TestGroupMessaging.yaml
+++ b/src/app/tests/suites/TestGroupMessaging.yaml
@@ -20,7 +20,7 @@ name: Basic Group Messaging Tests
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
nodeId2:
type: node_id
diff --git a/src/app/tests/suites/TestMultiAdmin.yaml b/src/app/tests/suites/TestMultiAdmin.yaml
index b26e0b2159edc0..e8156282e8b739 100644
--- a/src/app/tests/suites/TestMultiAdmin.yaml
+++ b/src/app/tests/suites/TestMultiAdmin.yaml
@@ -166,7 +166,7 @@ tests:
- label: "read the mandatory attribute: NodeLabel from alpha"
identity: "alpha"
- cluster: "Basic"
+ cluster: "Basic Information"
command: "readAttribute"
attribute: "NodeLabel"
response:
@@ -175,7 +175,7 @@ tests:
- label: "write the mandatory attribute NodeLabel from beta"
identity: "beta"
- cluster: "Basic"
+ cluster: "Basic Information"
command: "writeAttribute"
attribute: "NodeLabel"
arguments:
@@ -183,7 +183,7 @@ tests:
- label: "read the mandatory attribute: NodeLabel from gamma"
identity: "gamma"
- cluster: "Basic"
+ cluster: "Basic Information"
command: "readAttribute"
attribute: "NodeLabel"
response:
@@ -192,7 +192,7 @@ tests:
- label: "write the mandatory attribute NodeLabel back to default"
identity: "alpha"
- cluster: "Basic"
+ cluster: "Basic Information"
command: "writeAttribute"
attribute: "NodeLabel"
arguments:
diff --git a/src/app/tests/suites/certification/Test_TC_ACE_1_1.yaml b/src/app/tests/suites/certification/Test_TC_ACE_1_1.yaml
index 13eb032c0e9ff1..42ebf301f876a0 100644
--- a/src/app/tests/suites/certification/Test_TC_ACE_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACE_1_1.yaml
@@ -17,7 +17,7 @@ name: 42.1.1. [TC-ACE-1.1] Privileges - REMOVED
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACE_1_2.yaml b/src/app/tests/suites/certification/Test_TC_ACE_1_2.yaml
index 2617632cfbb62c..c1107070f61759 100644
--- a/src/app/tests/suites/certification/Test_TC_ACE_1_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACE_1_2.yaml
@@ -17,7 +17,7 @@ name: 42.1.2. [TC-ACE-1.2] Subscriptions - REMOVED
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACL_2_10.yaml b/src/app/tests/suites/certification/Test_TC_ACL_2_10.yaml
index 159e03c6a6f7e4..37480af0742d97 100644
--- a/src/app/tests/suites/certification/Test_TC_ACL_2_10.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACL_2_10.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACL_2_4.yaml b/src/app/tests/suites/certification/Test_TC_ACL_2_4.yaml
index 1d7aad81dd0635..7867035b8710f9 100644
--- a/src/app/tests/suites/certification/Test_TC_ACL_2_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACL_2_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACL_2_5.yaml b/src/app/tests/suites/certification/Test_TC_ACL_2_5.yaml
index 60f9e277dbea10..04f3ef604c4332 100644
--- a/src/app/tests/suites/certification/Test_TC_ACL_2_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACL_2_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACL_2_6.yaml b/src/app/tests/suites/certification/Test_TC_ACL_2_6.yaml
index 29f6c021e96c02..ff419fefe44c7c 100644
--- a/src/app/tests/suites/certification/Test_TC_ACL_2_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACL_2_6.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACL_2_7.yaml b/src/app/tests/suites/certification/Test_TC_ACL_2_7.yaml
index dac6858d339444..cd5ef68b9291c3 100644
--- a/src/app/tests/suites/certification/Test_TC_ACL_2_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACL_2_7.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACL_2_8.yaml b/src/app/tests/suites/certification/Test_TC_ACL_2_8.yaml
index 80d0e91163ae2e..cad730fe39ed73 100644
--- a/src/app/tests/suites/certification/Test_TC_ACL_2_8.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACL_2_8.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACL_2_9.yaml b/src/app/tests/suites/certification/Test_TC_ACL_2_9.yaml
index bd2a99487a82dc..0b0fee2eaa325c 100644
--- a/src/app/tests/suites/certification/Test_TC_ACL_2_9.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACL_2_9.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACT_2_1.yaml b/src/app/tests/suites/certification/Test_TC_ACT_2_1.yaml
index bd6efc3e244448..b15a166e1a3a09 100644
--- a/src/app/tests/suites/certification/Test_TC_ACT_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACT_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACT_2_2.yaml b/src/app/tests/suites/certification/Test_TC_ACT_2_2.yaml
index 659c95c871835d..be15c23303658c 100644
--- a/src/app/tests/suites/certification/Test_TC_ACT_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACT_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ACT_3_2.yaml b/src/app/tests/suites/certification/Test_TC_ACT_3_2.yaml
index d5bcb1a0514275..6803e942a96e4d 100644
--- a/src/app/tests/suites/certification/Test_TC_ACT_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ACT_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ALOGIN_12_2.yaml b/src/app/tests/suites/certification/Test_TC_ALOGIN_12_2.yaml
index 759afcac170a4a..df2723dc9dbad9 100644
--- a/src/app/tests/suites/certification/Test_TC_ALOGIN_12_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ALOGIN_12_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_7_1.yaml b/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_7_1.yaml
index d07860f8241765..e98a7d9556f535 100644
--- a/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_7_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_7_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_8_1.yaml b/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_8_1.yaml
index 2e8d999ea1b3f2..c111c2284f800e 100644
--- a/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_8_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_8_1.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_9_1.yaml b/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_9_1.yaml
index ab3748ba234aca..a7bbf930f1aeb4 100644
--- a/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_9_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_APPLAUNCHER_3_9_1.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_AUDIOOUTPUT_7_3.yaml b/src/app/tests/suites/certification/Test_TC_AUDIOOUTPUT_7_3.yaml
index acc4746075a831..0ce9582c3ed75c 100644
--- a/src/app/tests/suites/certification/Test_TC_AUDIOOUTPUT_7_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_AUDIOOUTPUT_7_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_AUDIOOUTPUT_7_4.yaml b/src/app/tests/suites/certification/Test_TC_AUDIOOUTPUT_7_4.yaml
index 19b8f2fb2d0569..6a75b321c4996c 100644
--- a/src/app/tests/suites/certification/Test_TC_AUDIOOUTPUT_7_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_AUDIOOUTPUT_7_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_1_1.yaml b/src/app/tests/suites/certification/Test_TC_BDX_1_1.yaml
index 0f23c46ab9cec7..d9f18a7f93250d 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_1_1.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_1_2.yaml b/src/app/tests/suites/certification/Test_TC_BDX_1_2.yaml
index 3c755cd927f1b2..a32ae8b2257840 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_1_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_1_2.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_1_3.yaml b/src/app/tests/suites/certification/Test_TC_BDX_1_3.yaml
index 40612c83c75b76..3f28c87548466a 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_1_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_1_3.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_1_4.yaml b/src/app/tests/suites/certification/Test_TC_BDX_1_4.yaml
index 992be636e12a7c..e05c31c42bc04f 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_1_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_1_4.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_1_5.yaml b/src/app/tests/suites/certification/Test_TC_BDX_1_5.yaml
index b74f837b9ced88..fdcd642c2ff2b1 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_1_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_1_5.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_1_6.yaml b/src/app/tests/suites/certification/Test_TC_BDX_1_6.yaml
index 2c58ce429d8cdd..cf7f45b216d87f 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_1_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_1_6.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_2_1.yaml b/src/app/tests/suites/certification/Test_TC_BDX_2_1.yaml
index 449215850abb40..4ae671a1471a76 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_2_2.yaml b/src/app/tests/suites/certification/Test_TC_BDX_2_2.yaml
index 21a032bf91f87f..c55f47cdbad622 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_2_3.yaml b/src/app/tests/suites/certification/Test_TC_BDX_2_3.yaml
index 8b192ba746163b..e6aa54799d10ed 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_2_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_2_4.yaml b/src/app/tests/suites/certification/Test_TC_BDX_2_4.yaml
index 627c4ecbe2006b..63ef4020f44627 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_2_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_2_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BDX_2_5.yaml b/src/app/tests/suites/certification/Test_TC_BDX_2_5.yaml
index aa33eb1ad1753e..625e9da6b42faf 100644
--- a/src/app/tests/suites/certification/Test_TC_BDX_2_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BDX_2_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BIND_2_1.yaml b/src/app/tests/suites/certification/Test_TC_BIND_2_1.yaml
index 273a4d3a3ad9ad..344f6b90fe40bf 100644
--- a/src/app/tests/suites/certification/Test_TC_BIND_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BIND_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BIND_2_2.yaml b/src/app/tests/suites/certification/Test_TC_BIND_2_2.yaml
index 7f579e150485c8..07db427d472984 100644
--- a/src/app/tests/suites/certification/Test_TC_BIND_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BIND_2_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BIND_2_3.yaml b/src/app/tests/suites/certification/Test_TC_BIND_2_3.yaml
index 4425224b2579f5..c6b9bd69fcedb0 100644
--- a/src/app/tests/suites/certification/Test_TC_BIND_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BIND_2_3.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BINFO_1_1.yaml b/src/app/tests/suites/certification/Test_TC_BINFO_1_1.yaml
index b515d49a865771..c21058ce983913 100644
--- a/src/app/tests/suites/certification/Test_TC_BINFO_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BINFO_1_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BINFO_2_1.yaml b/src/app/tests/suites/certification/Test_TC_BINFO_2_1.yaml
index 56996da12951aa..e50c76874010d9 100644
--- a/src/app/tests/suites/certification/Test_TC_BINFO_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BINFO_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BINFO_2_2.yaml b/src/app/tests/suites/certification/Test_TC_BINFO_2_2.yaml
index 5a504395bb9b5c..8969d6ae76ae53 100644
--- a/src/app/tests/suites/certification/Test_TC_BINFO_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BINFO_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BINFO_2_3_Simulated.yaml b/src/app/tests/suites/certification/Test_TC_BINFO_2_3_Simulated.yaml
index efb10eaeb8dc8a..47c37b29b8d6d4 100644
--- a/src/app/tests/suites/certification/Test_TC_BINFO_2_3_Simulated.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BINFO_2_3_Simulated.yaml
@@ -19,7 +19,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BINFO_2_4.yaml b/src/app/tests/suites/certification/Test_TC_BINFO_2_4.yaml
index 0b89e541ac18bd..cb4a57f2710c6f 100644
--- a/src/app/tests/suites/certification/Test_TC_BINFO_2_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BINFO_2_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BOOL_2_2.yaml b/src/app/tests/suites/certification/Test_TC_BOOL_2_2.yaml
index 27166db07e5fbe..35c115c597cd69 100644
--- a/src/app/tests/suites/certification/Test_TC_BOOL_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BOOL_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BRBINFO_2_2.yaml b/src/app/tests/suites/certification/Test_TC_BRBINFO_2_2.yaml
index 8f9c01ccd13edb..2cfd64b2f8b0f4 100644
--- a/src/app/tests/suites/certification/Test_TC_BRBINFO_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BRBINFO_2_2.yaml
@@ -17,7 +17,7 @@ name: 3.2.2. [TC-BRBINFO-2.2] Events [DUT-Server]
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BRBINFO_2_3.yaml b/src/app/tests/suites/certification/Test_TC_BRBINFO_2_3.yaml
index 6ef05a6f489a14..c2058fbed890d8 100644
--- a/src/app/tests/suites/certification/Test_TC_BRBINFO_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BRBINFO_2_3.yaml
@@ -17,7 +17,7 @@ name: 3.2.3. [TC-BRBINFO-2.3] Attributes [DUT-Client]
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BR_1.yaml b/src/app/tests/suites/certification/Test_TC_BR_1.yaml
index a48b1f6d56ba07..cca28694527dde 100644
--- a/src/app/tests/suites/certification/Test_TC_BR_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BR_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BR_2.yaml b/src/app/tests/suites/certification/Test_TC_BR_2.yaml
index 2c13bfdddbe5bb..23a7dddcc0c444 100644
--- a/src/app/tests/suites/certification/Test_TC_BR_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BR_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BR_3.yaml b/src/app/tests/suites/certification/Test_TC_BR_3.yaml
index 52dcf84ac812d8..ba0c7154fd5fab 100644
--- a/src/app/tests/suites/certification/Test_TC_BR_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BR_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_BR_4.yaml b/src/app/tests/suites/certification/Test_TC_BR_4.yaml
index 9c1bfb0836f417..bc063c32b7bd35 100644
--- a/src/app/tests/suites/certification/Test_TC_BR_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_BR_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_1.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_1.yaml
index e89160b7568c9d..7f032ff986bff5 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_12.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_12.yaml
index c1e46edfc3815f..30600c1ffd9503 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_12.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_12.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_14.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_14.yaml
index ea68982b4244f8..deab406e2727f7 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_14.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_14.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_15.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_15.yaml
index 211fc1315a994c..d26e0c6207da11 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_15.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_15.yaml
@@ -183,7 +183,7 @@ tests:
PICS: BINFO.S.A0005
identity: "beta"
command: "writeAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
arguments:
value: "chiptest"
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_16.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_16.yaml
index 92f1e4c650b870..9e2a503373925c 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_16.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_16.yaml
@@ -169,7 +169,7 @@ tests:
PICS: BINFO.S.A0005
identity: "beta"
command: "writeAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
arguments:
value: "chiptest"
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_17.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_17.yaml
index 7e3f09de5e6cf1..33a6319e18a663 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_17.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_17.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_18.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_18.yaml
index 5189b69c536f72..87733c70d319fe 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_18.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_18.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_19.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_19.yaml
index 5458b1bec42e47..2bb39f7804c3e1 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_19.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_19.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_2.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_2.yaml
index 7b9b854b37ec6a..26a2a91638cd53 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_20.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_20.yaml
index f61c2d425265ad..f2ddedaf0f045b 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_20.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_20.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_3.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_3.yaml
index c2bd4f4e8394f1..ee32c447850692 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_3.yaml
@@ -108,7 +108,7 @@ tests:
attribute of DUT_CE"
command: "writeAttribute"
PICS: BINFO.S.A0005
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
arguments:
value: "chiptest"
@@ -118,7 +118,7 @@ tests:
attribute of DUT_CE"
command: "readAttribute"
PICS: BINFO.S.A0005
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
response:
value: "chiptest"
@@ -207,7 +207,7 @@ tests:
"TH_CR1 writes the Basic Information Clusters NodeLabel mandatory
attribute of DUT_CE"
command: "writeAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
PICS: OPCREDS.S.A0001
attribute: "NodeLabel"
arguments:
@@ -217,7 +217,7 @@ tests:
"TH_CR1 reads the Basic Information Clusters NodeLabel mandatory
attribute of DUT_CE"
command: "readAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
PICS: OPCREDS.S.A0001
attribute: "NodeLabel"
response:
@@ -231,7 +231,7 @@ tests:
attribute of DUT_CE"
identity: "beta"
command: "writeAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
PICS: OPCREDS.S.A0001
attribute: "NodeLabel"
arguments:
@@ -242,7 +242,7 @@ tests:
attribute of DUT_CE"
identity: "beta"
command: "readAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
PICS: OPCREDS.S.A0001
attribute: "NodeLabel"
response:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_4.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_4.yaml
index abcb35415ab4fa..5dfc34a509f2be 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_4.yaml
@@ -98,7 +98,7 @@ tests:
"TH_CR1 writes the Basic Information Clusters NodeLabel mandatory
attribute of DUT_CE"
command: "writeAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
arguments:
@@ -108,7 +108,7 @@ tests:
"TH_CR1 reads the Basic Information Clusters NodeLabel mandatory
attribute of DUT_CE"
command: "readAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
response:
@@ -196,7 +196,7 @@ tests:
"TH_CR1 writes the Basic Information Clusters NodeLabel mandatory
attribute of DUT_CE"
command: "writeAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
arguments:
@@ -206,7 +206,7 @@ tests:
"TH_CR1 reads the Basic Information Clusters NodeLabel mandatory
attribute of DUT_CE"
command: "readAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
response:
@@ -220,7 +220,7 @@ tests:
attribute of DUT_CE"
identity: "beta"
command: "writeAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
arguments:
@@ -231,7 +231,7 @@ tests:
attribute of DUT_CE"
identity: "beta"
command: "readAttribute"
- cluster: "Basic"
+ cluster: "Basic Information"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
response:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_5.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_5.yaml
index 240b0eadfebe19..b44ec1edf8ca01 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_5.yaml
@@ -182,7 +182,7 @@ tests:
error: FAILURE
- label: "TH_CR1 writes the mandatory attribute NodeLabel of DUT_CE"
- cluster: "Basic"
+ cluster: "Basic Information"
command: "writeAttribute"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
@@ -190,7 +190,7 @@ tests:
value: "chiptest"
- label: "TH_CR1 read the mandatory attribute NodeLabel of DUT_CE"
- cluster: "Basic"
+ cluster: "Basic Information"
command: "readAttribute"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_6.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_6.yaml
index f7b1df9d4c8116..d0b35b4ab4988c 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_6.yaml
@@ -168,7 +168,7 @@ tests:
- label: "TH_CR1 writes the mandatory attribute NodeLabel of DUT_CE"
identity: "alpha"
- cluster: "Basic"
+ cluster: "Basic Information"
command: "writeAttribute"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
@@ -177,7 +177,7 @@ tests:
- label: "TH_CR1 read the mandatory attribute NodeLabel of DUT_CE"
identity: "alpha"
- cluster: "Basic"
+ cluster: "Basic Information"
command: "readAttribute"
attribute: "NodeLabel"
PICS: BINFO.S.A0005
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_7.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_7.yaml
index 78d0cdcdd8e081..792216c1f78f26 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_7.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CADMIN_1_8.yaml b/src/app/tests/suites/certification/Test_TC_CADMIN_1_8.yaml
index 88151eae936eef..487c4252505116 100644
--- a/src/app/tests/suites/certification/Test_TC_CADMIN_1_8.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CADMIN_1_8.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CC_2_2.yaml b/src/app/tests/suites/certification/Test_TC_CC_2_2.yaml
index 17ba93d3ad91eb..d7a57ff876ac5d 100644
--- a/src/app/tests/suites/certification/Test_TC_CC_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CC_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CC_3_4.yaml b/src/app/tests/suites/certification/Test_TC_CC_3_4.yaml
index 2ecdbaf1a3773d..1bf97283ac8138 100644
--- a/src/app/tests/suites/certification/Test_TC_CC_3_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CC_3_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CC_4_5.yaml b/src/app/tests/suites/certification/Test_TC_CC_4_5.yaml
index 9846bd5b49d83e..997e08462c2036 100644
--- a/src/app/tests/suites/certification/Test_TC_CC_4_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CC_4_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CC_5_4.yaml b/src/app/tests/suites/certification/Test_TC_CC_5_4.yaml
index f4df770cc02415..6988f6a8472b9a 100644
--- a/src/app/tests/suites/certification/Test_TC_CC_5_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CC_5_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CC_6_4.yaml b/src/app/tests/suites/certification/Test_TC_CC_6_4.yaml
index beeb124203607c..550f818213615e 100644
--- a/src/app/tests/suites/certification/Test_TC_CC_6_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CC_6_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CC_7_5.yaml b/src/app/tests/suites/certification/Test_TC_CC_7_5.yaml
index ccbdc1c1500bae..06ec82f0485fb5 100644
--- a/src/app/tests/suites/certification/Test_TC_CC_7_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CC_7_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CC_9_4.yaml b/src/app/tests/suites/certification/Test_TC_CC_9_4.yaml
index c490980b4a6dce..36dbce732c9f57 100644
--- a/src/app/tests/suites/certification/Test_TC_CC_9_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CC_9_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CGEN_2_2.yaml b/src/app/tests/suites/certification/Test_TC_CGEN_2_2.yaml
index 7b1c3292a7b051..32a9a17a08e966 100644
--- a/src/app/tests/suites/certification/Test_TC_CGEN_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CGEN_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CGEN_2_4.yaml b/src/app/tests/suites/certification/Test_TC_CGEN_2_4.yaml
index 7cfc6e6f1fb871..221a1b38b64afd 100644
--- a/src/app/tests/suites/certification/Test_TC_CGEN_2_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CGEN_2_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CHANNEL_5_4.yaml b/src/app/tests/suites/certification/Test_TC_CHANNEL_5_4.yaml
index 733be0ec654fa3..868c18f3389979 100644
--- a/src/app/tests/suites/certification/Test_TC_CHANNEL_5_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CHANNEL_5_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CHANNEL_5_5.yaml b/src/app/tests/suites/certification/Test_TC_CHANNEL_5_5.yaml
index 6b15fad2bcc826..144148f465a03d 100644
--- a/src/app/tests/suites/certification/Test_TC_CHANNEL_5_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CHANNEL_5_5.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CHANNEL_5_6.yaml b/src/app/tests/suites/certification/Test_TC_CHANNEL_5_6.yaml
index 0deb3255022d64..ae894bada69adb 100644
--- a/src/app/tests/suites/certification/Test_TC_CHANNEL_5_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CHANNEL_5_6.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_1.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_1.yaml
index 8316b094da261c..61a3aad08a9c77 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_1.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_10.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_10.yaml
index c79d8b63b3675f..c5e242c9486cde 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_10.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_10.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_11.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_11.yaml
index dc946e5a1d2290..5d0d7b654c6b5b 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_11.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_11.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_12.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_12.yaml
index 88049276ae725b..f68e201538cbe7 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_12.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_12.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_13.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_13.yaml
index 68bbd8f20f9910..6b0ab50f6b406d 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_13.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_13.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_14.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_14.yaml
index 4ef2f85f6b4df0..3d7938b5674db5 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_14.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_14.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_15.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_15.yaml
index 69655eaf265ec9..7ba0cc0abe3fd2 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_15.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_15.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_16.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_16.yaml
index fc8874e97d57bf..7242621e6d5060 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_16.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_16.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_17.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_17.yaml
index 6ee0bd0cb910f7..9bf78490e45c33 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_17.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_17.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_18.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_18.yaml
index bb52c4a6dbb41e..922c48ced9bb14 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_18.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_18.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_19.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_19.yaml
index 9c4cf9f517a729..ed841c47e403f9 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_19.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_19.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_2.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_2.yaml
index d1f001c157f52f..73041a04f080a6 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_20.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_20.yaml
index 12fa0286fb9d5f..40282f1c2805ed 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_20.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_20.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_21.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_21.yaml
index d1f7dd4fc90ae0..08aca0edc5e131 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_21.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_21.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_22.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_22.yaml
index 7be01ff5a7fe9d..2dfd7343cb3dd9 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_22.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_22.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_3.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_3.yaml
index 86ebd9f2c22b7e..bcdf7c355bd340 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_3.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_4.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_4.yaml
index ae7d031e7e0eaa..36f26b1b0e9700 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_5.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_5.yaml
index f74c55e8283bfa..a5a8c6c8057312 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_5.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_6.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_6.yaml
index 7bada371bcb4cc..083b0860d07363 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_6.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CNET_4_9.yaml b/src/app/tests/suites/certification/Test_TC_CNET_4_9.yaml
index 7f814d445035cb..18aae2565d7ff4 100644
--- a/src/app/tests/suites/certification/Test_TC_CNET_4_9.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CNET_4_9.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_3.yaml b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_3.yaml
index 32312c80c1858a..d3e48a11944073 100644
--- a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_4.yaml b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_4.yaml
index 55d2371e60d42d..399c7ccb48a7de 100644
--- a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_5.yaml b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_5.yaml
index aa6bd9c9913aec..ff9eed762040cd 100644
--- a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_6.yaml b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_6.yaml
index a9e2290f5e0024..7e35b0e536598c 100644
--- a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_6.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_7.yaml b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_7.yaml
index 78f2d2f9465953..ea38cb5930b920 100644
--- a/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_CONTENTLAUNCHER_10_7.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DA_1_1.yaml b/src/app/tests/suites/certification/Test_TC_DA_1_1.yaml
index e4f6da9009b013..2cf51432222371 100644
--- a/src/app/tests/suites/certification/Test_TC_DA_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DA_1_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DA_1_2.yaml b/src/app/tests/suites/certification/Test_TC_DA_1_2.yaml
index 81cadd47d012eb..37975eed949de1 100644
--- a/src/app/tests/suites/certification/Test_TC_DA_1_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DA_1_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DA_1_3.yaml b/src/app/tests/suites/certification/Test_TC_DA_1_3.yaml
index 7eff4aa56fa801..2bda1bd32c6ff1 100644
--- a/src/app/tests/suites/certification/Test_TC_DA_1_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DA_1_3.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DA_1_4.yaml b/src/app/tests/suites/certification/Test_TC_DA_1_4.yaml
index 1162ec1d4226af..bb3520a932d85e 100644
--- a/src/app/tests/suites/certification/Test_TC_DA_1_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DA_1_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DA_1_5.yaml b/src/app/tests/suites/certification/Test_TC_DA_1_5.yaml
index 19cb85a9ef2784..c10edf860dddd0 100644
--- a/src/app/tests/suites/certification/Test_TC_DA_1_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DA_1_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DA_1_6.yaml b/src/app/tests/suites/certification/Test_TC_DA_1_6.yaml
index 2f721a080b2795..92a737907e5600 100644
--- a/src/app/tests/suites/certification/Test_TC_DA_1_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DA_1_6.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DA_1_7.yaml b/src/app/tests/suites/certification/Test_TC_DA_1_7.yaml
index 3fe14d11fc219c..15996dd9576df6 100644
--- a/src/app/tests/suites/certification/Test_TC_DA_1_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DA_1_7.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_10.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_10.yaml
index e8db3afc37a2e6..c63da864ae0e3c 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_10.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_10.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_11.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_11.yaml
index fbc359456faba2..34cd262d956eaa 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_11.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_11.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_12.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_12.yaml
index a71ae7c5d1d491..cf0efa88d6421f 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_12.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_12.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_13.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_13.yaml
index 0c0cd89084fecc..316ea544f7e53f 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_13.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_13.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_14.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_14.yaml
index 37dea4cf954852..4f52b0e47d8c7d 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_14.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_14.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_15.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_15.yaml
index 35e8f4f6d594e2..fbb5e55c6851c0 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_15.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_15.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_5.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_5.yaml
index c0163acbf8f5cc..a0b48dbd0c13ac 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_5.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_6.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_6.yaml
index 721c334cf07c80..9e4d463d596a0b 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_6.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_7.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_7.yaml
index 9f2689fe3b10bb..70227d3b471e6f 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_7.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_8.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_8.yaml
index 0cdf7781ea6b68..09f0f2ac749ced 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_8.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_8.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_1_9.yaml b/src/app/tests/suites/certification/Test_TC_DD_1_9.yaml
index 4da2369b612653..a0fd5edbdd18d8 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_1_9.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_1_9.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_2_1.yaml b/src/app/tests/suites/certification/Test_TC_DD_2_1.yaml
index da46bd937eabf5..2dd5001dbdfab3 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_2_1.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_2_2.yaml b/src/app/tests/suites/certification/Test_TC_DD_2_2.yaml
index 9a48e3588b20bb..d56e226aeed369 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_2_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_1.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_1.yaml
index 4aaf3a0f5f1017..083130abd9a24f 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_10.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_10.yaml
index b81143cb4ce851..c47f3e1c1cd600 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_10.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_10.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_11.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_11.yaml
index 82ab752313d6d3..45b8eb1e9eb6d5 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_11.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_11.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_12.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_12.yaml
index 9adbd5d30f2adf..cdbf7d5f959acf 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_12.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_12.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_13.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_13.yaml
index 462dce0ec17513..f0fef1676cc094 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_13.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_13.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_14.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_14.yaml
index e09184f8560eeb..17d5e590d9e886 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_14.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_14.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_15.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_15.yaml
index 30475e9ee7f05e..21fd142ebb2382 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_15.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_15.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_16.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_16.yaml
index 6e9dd0f317e56b..aea7315d228ed0 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_16.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_16.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_17.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_17.yaml
index 746197044cba01..10f8031a163b28 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_17.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_17.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_18.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_18.yaml
index 2531691ed693f2..7810bb57517dc8 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_18.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_18.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_19.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_19.yaml
index 601cc49bbf8db3..a7e1b578009156 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_19.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_19.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_2.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_2.yaml
index 27b21af3206274..f49d4b59a53811 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_2.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_20.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_20.yaml
index d78e3ffc11e3be..8011c52b653ff8 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_20.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_20.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_21.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_21.yaml
index a860d0ddbf32f1..a343865567a104 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_21.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_21.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_3.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_3.yaml
index d57af20dbf9a61..a8156345c98c73 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_3.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_4.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_4.yaml
index de3bb357ac2a44..803e555adcf121 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_5.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_5.yaml
index 8a5a2bca9192e7..cc5e8b4856cf63 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_6.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_6.yaml
index 8a641bdd92815e..3e260e87be7c91 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_6.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_7.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_7.yaml
index b6ba6b2d73b862..621918a9a370c9 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_7.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_8.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_8.yaml
index b6c7ac79961a11..28844d87cee3c2 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_8.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_8.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DD_3_9.yaml b/src/app/tests/suites/certification/Test_TC_DD_3_9.yaml
index a1095fc60102da..83d530ccd2682a 100644
--- a/src/app/tests/suites/certification/Test_TC_DD_3_9.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DD_3_9.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DESC_2_1.yaml b/src/app/tests/suites/certification/Test_TC_DESC_2_1.yaml
index 5430d2d0d1ab0c..3a96132de9ff6d 100644
--- a/src/app/tests/suites/certification/Test_TC_DESC_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DESC_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGGEN_2_2.yaml b/src/app/tests/suites/certification/Test_TC_DGGEN_2_2.yaml
index f48c38130e6605..fced36127ede15 100644
--- a/src/app/tests/suites/certification/Test_TC_DGGEN_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGGEN_2_2.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGGEN_2_3.yaml b/src/app/tests/suites/certification/Test_TC_DGGEN_2_3.yaml
index 081735de1e0924..6284642840ae1a 100644
--- a/src/app/tests/suites/certification/Test_TC_DGGEN_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGGEN_2_3.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGGEN_3_1.yaml b/src/app/tests/suites/certification/Test_TC_DGGEN_3_1.yaml
index 68b21c03add167..9a6ad83de61abe 100644
--- a/src/app/tests/suites/certification/Test_TC_DGGEN_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGGEN_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGSW_2_1.yaml b/src/app/tests/suites/certification/Test_TC_DGSW_2_1.yaml
index 733aa658228680..9f6834274cc322 100644
--- a/src/app/tests/suites/certification/Test_TC_DGSW_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGSW_2_1.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGSW_2_2.yaml b/src/app/tests/suites/certification/Test_TC_DGSW_2_2.yaml
index d3b65e48c52435..11630fab141dea 100644
--- a/src/app/tests/suites/certification/Test_TC_DGSW_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGSW_2_2.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGSW_2_3.yaml b/src/app/tests/suites/certification/Test_TC_DGSW_2_3.yaml
index 00e8b1a12df60b..25ed283d6a9049 100644
--- a/src/app/tests/suites/certification/Test_TC_DGSW_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGSW_2_3.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGTHREAD_2_5.yaml b/src/app/tests/suites/certification/Test_TC_DGTHREAD_2_5.yaml
index eab7dae15ceaa9..b880e7704c39cf 100644
--- a/src/app/tests/suites/certification/Test_TC_DGTHREAD_2_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGTHREAD_2_5.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_1.yaml b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_1.yaml
index 3ac28719f68bbb..ad3eeb2a45b896 100644
--- a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_2.yaml b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_2.yaml
index 3cf18135bf4298..651381722cb814 100644
--- a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_3.yaml b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_3.yaml
index d4f3d9a1cc8d87..bf4d50af2ea8d1 100644
--- a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_4.yaml b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_4.yaml
index 10119cfb35fa7e..6f53631baebd74 100644
--- a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_5.yaml b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_5.yaml
index 95fb4890184a5f..5515eb57c0729b 100644
--- a/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGTHREAD_3_5.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DGWIFI_2_2.yaml b/src/app/tests/suites/certification/Test_TC_DGWIFI_2_2.yaml
index facee9e6ce51af..3e22d65b3ee77e 100644
--- a/src/app/tests/suites/certification/Test_TC_DGWIFI_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DGWIFI_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DLOG_2_1.yaml b/src/app/tests/suites/certification/Test_TC_DLOG_2_1.yaml
index 036ecfb06571a2..c2e5fabca1c3c6 100644
--- a/src/app/tests/suites/certification/Test_TC_DLOG_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DLOG_2_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DLOG_2_2.yaml b/src/app/tests/suites/certification/Test_TC_DLOG_2_2.yaml
index f96ff70989fdcc..e5c97714fdd18c 100644
--- a/src/app/tests/suites/certification/Test_TC_DLOG_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DLOG_2_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DLOG_3_1.yaml b/src/app/tests/suites/certification/Test_TC_DLOG_3_1.yaml
index 3cec819ee8b8b5..bad81da2be1322 100644
--- a/src/app/tests/suites/certification/Test_TC_DLOG_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DLOG_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DRLK_2_1.yaml b/src/app/tests/suites/certification/Test_TC_DRLK_2_1.yaml
index 9903e4b342bd5e..37f3d7d11d2d3e 100644
--- a/src/app/tests/suites/certification/Test_TC_DRLK_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DRLK_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DRLK_2_10.yaml b/src/app/tests/suites/certification/Test_TC_DRLK_2_10.yaml
index ce5269763799ba..c091349203469a 100644
--- a/src/app/tests/suites/certification/Test_TC_DRLK_2_10.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DRLK_2_10.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DRLK_2_8.yaml b/src/app/tests/suites/certification/Test_TC_DRLK_2_8.yaml
index 70b507eb81fcbf..40aa4276f0fc99 100644
--- a/src/app/tests/suites/certification/Test_TC_DRLK_2_8.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DRLK_2_8.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DRLK_3_1.yaml b/src/app/tests/suites/certification/Test_TC_DRLK_3_1.yaml
index e0dba94eac3990..4da62b0e0a5ce5 100644
--- a/src/app/tests/suites/certification/Test_TC_DRLK_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DRLK_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DRLK_3_2.yaml b/src/app/tests/suites/certification/Test_TC_DRLK_3_2.yaml
index eae707cc6c5c68..d0580ec58d69eb 100644
--- a/src/app/tests/suites/certification/Test_TC_DRLK_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DRLK_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_DRLK_3_3.yaml b/src/app/tests/suites/certification/Test_TC_DRLK_3_3.yaml
index 3b55deac358bbe..28fc524dc9748f 100644
--- a/src/app/tests/suites/certification/Test_TC_DRLK_3_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_DRLK_3_3.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_G_2_2.yaml b/src/app/tests/suites/certification/Test_TC_G_2_2.yaml
index 60870da484c069..1ff8701e3631d2 100644
--- a/src/app/tests/suites/certification/Test_TC_G_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_G_2_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_G_2_3.yaml b/src/app/tests/suites/certification/Test_TC_G_2_3.yaml
index f25cd52f401232..9564198509225f 100644
--- a/src/app/tests/suites/certification/Test_TC_G_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_G_2_3.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_G_3_2.yaml b/src/app/tests/suites/certification/Test_TC_G_3_2.yaml
index 3a3180a56245f7..c143a1fe10d700 100644
--- a/src/app/tests/suites/certification/Test_TC_G_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_G_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_1_1.yaml b/src/app/tests/suites/certification/Test_TC_IDM_1_1.yaml
index f437d4b8518b07..03746456749848 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_1_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_1_2.yaml b/src/app/tests/suites/certification/Test_TC_IDM_1_2.yaml
index 3f891d2db133fe..3cc08c4887ee2d 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_1_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_1_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_2_1.yaml b/src/app/tests/suites/certification/Test_TC_IDM_2_1.yaml
index ee60cf388ac721..1283e505679f6a 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_2_2.yaml b/src/app/tests/suites/certification/Test_TC_IDM_2_2.yaml
index 3271a4a958925b..a12f684673959e 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_3_1.yaml b/src/app/tests/suites/certification/Test_TC_IDM_3_1.yaml
index be72e71408c125..b313ce74298b98 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_3_2.yaml b/src/app/tests/suites/certification/Test_TC_IDM_3_2.yaml
index 213433aa363da7..5bddeb08ddd00d 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_4_1.yaml b/src/app/tests/suites/certification/Test_TC_IDM_4_1.yaml
index b9542642bca810..7c34d0686393e7 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_4_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_4_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_4_2.yaml b/src/app/tests/suites/certification/Test_TC_IDM_4_2.yaml
index 7161818f8f8f83..60de3ec614b95b 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_4_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_4_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_4_3.yaml b/src/app/tests/suites/certification/Test_TC_IDM_4_3.yaml
index d6b93862812cb5..13fa875e029cd2 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_4_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_4_3.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_5_1.yaml b/src/app/tests/suites/certification/Test_TC_IDM_5_1.yaml
index a0ea2ea2f013f5..02166054f47ebb 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_5_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_5_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_5_2.yaml b/src/app/tests/suites/certification/Test_TC_IDM_5_2.yaml
index c2f6ed887889a1..b40be558d8fc1e 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_5_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_5_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_6_1.yaml b/src/app/tests/suites/certification/Test_TC_IDM_6_1.yaml
index 2e7542d0b05cbd..a99fef6fa9bb76 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_6_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_6_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_6_2.yaml b/src/app/tests/suites/certification/Test_TC_IDM_6_2.yaml
index 53dbe35abb6f9d..3d325063b9ec42 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_6_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_6_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_6_3.yaml b/src/app/tests/suites/certification/Test_TC_IDM_6_3.yaml
index bf3ebdf8496a50..e192d02854703e 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_6_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_6_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_6_4.yaml b/src/app/tests/suites/certification/Test_TC_IDM_6_4.yaml
index d61cab18bab216..17a430213fdc66 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_6_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_6_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_7_1.yaml b/src/app/tests/suites/certification/Test_TC_IDM_7_1.yaml
index b48bfba1e276e8..5ea29d80669dc6 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_7_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_7_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_IDM_8_1.yaml b/src/app/tests/suites/certification/Test_TC_IDM_8_1.yaml
index 1ea5fb74b3a3d8..9411aabbde5847 100644
--- a/src/app/tests/suites/certification/Test_TC_IDM_8_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_IDM_8_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ILL_3_1.yaml b/src/app/tests/suites/certification/Test_TC_ILL_3_1.yaml
index 6fab3293e7d9b6..c112cf0171b6ca 100644
--- a/src/app/tests/suites/certification/Test_TC_ILL_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ILL_3_1.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_I_3_2.yaml b/src/app/tests/suites/certification/Test_TC_I_3_2.yaml
index 69b14fa6d3be9c..40189898076a20 100644
--- a/src/app/tests/suites/certification/Test_TC_I_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_I_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_KEYPADINPUT_3_1.yaml b/src/app/tests/suites/certification/Test_TC_KEYPADINPUT_3_1.yaml
index edfa5fbac41fd9..b6312f31afb475 100644
--- a/src/app/tests/suites/certification/Test_TC_KEYPADINPUT_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_KEYPADINPUT_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LCFG_2_1.yaml b/src/app/tests/suites/certification/Test_TC_LCFG_2_1.yaml
index 67facdbb55b9f1..d31de71804ec99 100644
--- a/src/app/tests/suites/certification/Test_TC_LCFG_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LCFG_2_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LCFG_3_1.yaml b/src/app/tests/suites/certification/Test_TC_LCFG_3_1.yaml
index 59008c478d7748..f7b73b3d0e38de 100644
--- a/src/app/tests/suites/certification/Test_TC_LCFG_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LCFG_3_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LOWPOWER_2_2.yaml b/src/app/tests/suites/certification/Test_TC_LOWPOWER_2_2.yaml
index d4bd33da276d8f..0d11e5d96e9826 100644
--- a/src/app/tests/suites/certification/Test_TC_LOWPOWER_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LOWPOWER_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LTIME_1_1.yaml b/src/app/tests/suites/certification/Test_TC_LTIME_1_1.yaml
index ffa3ddb2dddb99..af365feb551204 100644
--- a/src/app/tests/suites/certification/Test_TC_LTIME_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LTIME_1_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LTIME_2_1.yaml b/src/app/tests/suites/certification/Test_TC_LTIME_2_1.yaml
index 461fcd7b006adb..02322cf7a0ce46 100644
--- a/src/app/tests/suites/certification/Test_TC_LTIME_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LTIME_2_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LTIME_3_1.yaml b/src/app/tests/suites/certification/Test_TC_LTIME_3_1.yaml
index 267c5c118a92f4..e367af4db6b090 100644
--- a/src/app/tests/suites/certification/Test_TC_LTIME_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LTIME_3_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LUNIT_1_1.yaml b/src/app/tests/suites/certification/Test_TC_LUNIT_1_1.yaml
index ee79e7e6fac1da..31cac947bd5dd9 100644
--- a/src/app/tests/suites/certification/Test_TC_LUNIT_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LUNIT_1_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LUNIT_2_1.yaml b/src/app/tests/suites/certification/Test_TC_LUNIT_2_1.yaml
index d3ceb77f3451f3..9c37cc32c6e84d 100644
--- a/src/app/tests/suites/certification/Test_TC_LUNIT_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LUNIT_2_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LVL_2_3.yaml b/src/app/tests/suites/certification/Test_TC_LVL_2_3.yaml
index 0ef22f6180a4d0..2a58840efb2b86 100644
--- a/src/app/tests/suites/certification/Test_TC_LVL_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LVL_2_3.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LVL_7_1.yaml b/src/app/tests/suites/certification/Test_TC_LVL_7_1.yaml
index 18bc441f9e2c37..05694ff7bb9551 100644
--- a/src/app/tests/suites/certification/Test_TC_LVL_7_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LVL_7_1.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_LVL_8_1.yaml b/src/app/tests/suites/certification/Test_TC_LVL_8_1.yaml
index c82402fe853b40..c5df0cdccec92f 100644
--- a/src/app/tests/suites/certification/Test_TC_LVL_8_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_LVL_8_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MC_11_1.yaml b/src/app/tests/suites/certification/Test_TC_MC_11_1.yaml
index 0395ba61e54ab8..9a1319b2733c7a 100644
--- a/src/app/tests/suites/certification/Test_TC_MC_11_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MC_11_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MC_11_2.yaml b/src/app/tests/suites/certification/Test_TC_MC_11_2.yaml
index ee30cdbe1a7dd6..f397a7f3e31004 100644
--- a/src/app/tests/suites/certification/Test_TC_MC_11_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MC_11_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_14.yaml b/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_14.yaml
index b712c49668e6b6..ce5cf4fb4f6587 100644
--- a/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_14.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_14.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_15.yaml b/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_15.yaml
index 9750a3257f029b..10a47a65c3faf6 100644
--- a/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_15.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_15.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_16.yaml b/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_16.yaml
index 066cf95027c6d4..5d151899cf1f81 100644
--- a/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_16.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_16.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_17.yaml b/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_17.yaml
index adbc51b0cab2f5..01b132de55520c 100644
--- a/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_17.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MEDIAINPUT_3_17.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MEDIAPLAYBACK_6_5.yaml b/src/app/tests/suites/certification/Test_TC_MEDIAPLAYBACK_6_5.yaml
index 487ec25676eb94..192778c540b75a 100644
--- a/src/app/tests/suites/certification/Test_TC_MEDIAPLAYBACK_6_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MEDIAPLAYBACK_6_5.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MEDIAPLAYBACK_6_7.yaml b/src/app/tests/suites/certification/Test_TC_MEDIAPLAYBACK_6_7.yaml
index 270b23166e1275..542842363950c7 100644
--- a/src/app/tests/suites/certification/Test_TC_MEDIAPLAYBACK_6_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MEDIAPLAYBACK_6_7.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MOD_1_2.yaml b/src/app/tests/suites/certification/Test_TC_MOD_1_2.yaml
index 2ea667dc0acf32..aba5a3b3b0e846 100644
--- a/src/app/tests/suites/certification/Test_TC_MOD_1_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MOD_1_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MOD_1_3.yaml b/src/app/tests/suites/certification/Test_TC_MOD_1_3.yaml
index 5a92a02a5fc3cb..f61e28a9f737e0 100644
--- a/src/app/tests/suites/certification/Test_TC_MOD_1_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MOD_1_3.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MOD_2_1.yaml b/src/app/tests/suites/certification/Test_TC_MOD_2_1.yaml
index a4fb3db49bba06..5f60542a93d99c 100644
--- a/src/app/tests/suites/certification/Test_TC_MOD_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MOD_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MOD_2_2.yaml b/src/app/tests/suites/certification/Test_TC_MOD_2_2.yaml
index 806b9c05f89290..e18b8e939bf08c 100644
--- a/src/app/tests/suites/certification/Test_TC_MOD_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MOD_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MOD_3_1.yaml b/src/app/tests/suites/certification/Test_TC_MOD_3_1.yaml
index 92d237f11cc5d2..bad0e5b89f0cb5 100644
--- a/src/app/tests/suites/certification/Test_TC_MOD_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MOD_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MOD_3_2.yaml b/src/app/tests/suites/certification/Test_TC_MOD_3_2.yaml
index 6b912613ad15db..c51be16959a2e8 100644
--- a/src/app/tests/suites/certification/Test_TC_MOD_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MOD_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MOD_3_3.yaml b/src/app/tests/suites/certification/Test_TC_MOD_3_3.yaml
index 63288a4d31c98d..b85a1efabd812c 100644
--- a/src/app/tests/suites/certification/Test_TC_MOD_3_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MOD_3_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_MOD_3_4.yaml b/src/app/tests/suites/certification/Test_TC_MOD_3_4.yaml
index c4fa7a44e196ac..9c55369eea08e8 100644
--- a/src/app/tests/suites/certification/Test_TC_MOD_3_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_MOD_3_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_OCC_2_2.yaml b/src/app/tests/suites/certification/Test_TC_OCC_2_2.yaml
index 94f483cd93ea9f..4d8279b864dd9a 100644
--- a/src/app/tests/suites/certification/Test_TC_OCC_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_OCC_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_OO_3_1.yaml b/src/app/tests/suites/certification/Test_TC_OO_3_1.yaml
index efea15f75ef5b9..5639c9c62e08a6 100644
--- a/src/app/tests/suites/certification/Test_TC_OO_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_OO_3_1.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_OO_3_2.yaml b/src/app/tests/suites/certification/Test_TC_OO_3_2.yaml
index d52e3585c5ccc8..9c92550bd8d7e1 100644
--- a/src/app/tests/suites/certification/Test_TC_OO_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_OO_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_1.yaml b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_1.yaml
index 31842313691537..785e80f681c86f 100644
--- a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_2.yaml b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_2.yaml
index e8a8c3d394cc91..0e04ecc3b0479b 100644
--- a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_3.yaml b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_3.yaml
index fe5d51a5a79502..7fb60b575b5011 100644
--- a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_4.yaml b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_4.yaml
index 8a7b21bc930221..b8d24ee4cb1064 100644
--- a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_5.yaml b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_5.yaml
index b23a32faff72e5..c68da89465a13c 100644
--- a/src/app/tests/suites/certification/Test_TC_OPCREDS_3_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_OPCREDS_3_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_PCC_3_1.yaml b/src/app/tests/suites/certification/Test_TC_PCC_3_1.yaml
index 31976c44d997b2..629338012858da 100644
--- a/src/app/tests/suites/certification/Test_TC_PCC_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_PCC_3_1.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_PSCFG_2_2.yaml b/src/app/tests/suites/certification/Test_TC_PSCFG_2_2.yaml
index 9c2669aa6d7bb2..d1f57e6c835e46 100644
--- a/src/app/tests/suites/certification/Test_TC_PSCFG_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_PSCFG_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_PS_2_2.yaml b/src/app/tests/suites/certification/Test_TC_PS_2_2.yaml
index 05c649368c094c..321d911577f413 100644
--- a/src/app/tests/suites/certification/Test_TC_PS_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_PS_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_1_1.yaml b/src/app/tests/suites/certification/Test_TC_SC_1_1.yaml
index 7f6bbfca3c59a1..462e9e3188fcf0 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_1_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_1_2.yaml b/src/app/tests/suites/certification/Test_TC_SC_1_2.yaml
index af73d7f85f1afd..f0b3aacb23106f 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_1_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_1_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_1_3.yaml b/src/app/tests/suites/certification/Test_TC_SC_1_3.yaml
index bcbd8ada6ade2a..69becee944a722 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_1_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_1_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_1_4.yaml b/src/app/tests/suites/certification/Test_TC_SC_1_4.yaml
index 41e14548127e68..17161a7eb0e278 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_1_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_1_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_2_1.yaml b/src/app/tests/suites/certification/Test_TC_SC_2_1.yaml
index eeac3a03aa8172..f29673a2fb2930 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_2_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_2_2.yaml b/src/app/tests/suites/certification/Test_TC_SC_2_2.yaml
index bd51a12a310abc..1809191a4df427 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_2_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_2_3.yaml b/src/app/tests/suites/certification/Test_TC_SC_2_3.yaml
index aab3515c12f59a..73ed501ed7ffc1 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_2_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_2_4.yaml b/src/app/tests/suites/certification/Test_TC_SC_2_4.yaml
index 2e39bb55547273..04aca5d5993cb9 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_2_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_2_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_3_1.yaml b/src/app/tests/suites/certification/Test_TC_SC_3_1.yaml
index 15b64d441034f9..fbf3a8e9911526 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_3_2.yaml b/src/app/tests/suites/certification/Test_TC_SC_3_2.yaml
index 94037e0e401b68..b075887c8329ff 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_3_3.yaml b/src/app/tests/suites/certification/Test_TC_SC_3_3.yaml
index c43e62d54df21f..91b99180b188a3 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_3_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_3_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_3_4.yaml b/src/app/tests/suites/certification/Test_TC_SC_3_4.yaml
index 36525ba6ddd2dc..76cd5191152d68 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_3_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_3_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_3_6.yaml b/src/app/tests/suites/certification/Test_TC_SC_3_6.yaml
index 5a978d914d066b..2a5634b2b286c5 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_3_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_3_6.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_1.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_1.yaml
index e92cba67a2088d..a5f18656e246e3 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_10.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_10.yaml
index 5398b18c3430ec..6373d60cae62d5 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_10.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_10.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_2.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_2.yaml
index e05fd234acce8c..a60ebf2f0199c4 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_3.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_3.yaml
index c137d70c6a29e7..708d1233593a7c 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_4.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_4.yaml
index 0703e6c8f9b512..84a493a5330cc7 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_4.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_5.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_5.yaml
index 86928965385ed7..fc47635673a8e6 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_5.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_6.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_6.yaml
index 0062e1c7f3e949..912a59f46302df 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_6.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_7.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_7.yaml
index c15b29067ed8b1..bb50c99c551e04 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_7.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_8.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_8.yaml
index 2f1f014a24ce38..9780c59ef2f39e 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_8.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_8.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_4_9.yaml b/src/app/tests/suites/certification/Test_TC_SC_4_9.yaml
index 4d56dd2c32492c..242cddee410532 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_4_9.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_4_9.yaml
@@ -23,7 +23,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_5_1.yaml b/src/app/tests/suites/certification/Test_TC_SC_5_1.yaml
index 016040397ad665..91fcdcf8911002 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_5_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_5_1.yaml
@@ -19,7 +19,7 @@ name:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_5_2.yaml b/src/app/tests/suites/certification/Test_TC_SC_5_2.yaml
index b18c8837d30bd9..bae5304f8095b1 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_5_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_5_2.yaml
@@ -17,7 +17,7 @@ name: 19.1.2. [TC-SC-5.2] Receiving a group message - TH to DUT
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_5_3.yaml b/src/app/tests/suites/certification/Test_TC_SC_5_3.yaml
index ce108cc06ddc99..85b0c415be5109 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_5_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_5_3.yaml
@@ -17,7 +17,7 @@ name: 19.1.3. [TC-SC-5.3] Sending a group message - DUT to TH
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SC_6_1.yaml b/src/app/tests/suites/certification/Test_TC_SC_6_1.yaml
index ef8f9139a39aa8..95835a05340640 100644
--- a/src/app/tests/suites/certification/Test_TC_SC_6_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SC_6_1.yaml
@@ -19,7 +19,7 @@ name:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_1_1.yaml b/src/app/tests/suites/certification/Test_TC_SU_1_1.yaml
index 2d8008fa9a9c74..48e7c25c5686a3 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_1_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_2_1.yaml b/src/app/tests/suites/certification/Test_TC_SU_2_1.yaml
index d8adbc2fd98d3b..3b5275496808fc 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_2_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_2_2.yaml b/src/app/tests/suites/certification/Test_TC_SU_2_2.yaml
index 60c480a7aed7e1..93bdacd0c955a5 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_2_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_2_3.yaml b/src/app/tests/suites/certification/Test_TC_SU_2_3.yaml
index c8cc4bf02c6219..50eff91790a4e0 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_2_3.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_2_4.yaml b/src/app/tests/suites/certification/Test_TC_SU_2_4.yaml
index 46135eb834e188..47964c22ac11a4 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_2_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_2_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_2_5.yaml b/src/app/tests/suites/certification/Test_TC_SU_2_5.yaml
index 27ae788313ead8..5f54d5feed3fcc 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_2_5.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_2_5.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_2_6.yaml b/src/app/tests/suites/certification/Test_TC_SU_2_6.yaml
index f42599b8c7e691..c51e372fe4913f 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_2_6.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_2_6.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_2_7.yaml b/src/app/tests/suites/certification/Test_TC_SU_2_7.yaml
index 4b161cf03692b5..bc175d276a163c 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_2_7.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_2_7.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_2_8.yaml b/src/app/tests/suites/certification/Test_TC_SU_2_8.yaml
index 076710a8b9d060..d2ee5d71ba9bc7 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_2_8.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_2_8.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_3_1.yaml b/src/app/tests/suites/certification/Test_TC_SU_3_1.yaml
index ca23a1312f9ddd..77adccd5b34bff 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_3_2.yaml b/src/app/tests/suites/certification/Test_TC_SU_3_2.yaml
index 57df1b850a7384..659ae9c603b6b8 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_3_2.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_3_3.yaml b/src/app/tests/suites/certification/Test_TC_SU_3_3.yaml
index 372cb6b2153247..c022c60857aadc 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_3_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_3_3.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_3_4.yaml b/src/app/tests/suites/certification/Test_TC_SU_3_4.yaml
index ce5efd98d27c5c..8153852db9e76b 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_3_4.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_3_4.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_4_1.yaml b/src/app/tests/suites/certification/Test_TC_SU_4_1.yaml
index e86f7dc90f7263..b3d5cf344862ad 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_4_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_4_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SU_4_2.yaml b/src/app/tests/suites/certification/Test_TC_SU_4_2.yaml
index 6735b493d920fb..fb59af3902cd90 100644
--- a/src/app/tests/suites/certification/Test_TC_SU_4_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SU_4_2.yaml
@@ -21,7 +21,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SWTCH_2_2.yaml b/src/app/tests/suites/certification/Test_TC_SWTCH_2_2.yaml
index 9dc41af585e626..a4e0e1629b525e 100644
--- a/src/app/tests/suites/certification/Test_TC_SWTCH_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SWTCH_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SWTCH_3_1.yaml b/src/app/tests/suites/certification/Test_TC_SWTCH_3_1.yaml
index fb54dddd4cac1b..b35dd23cf69b84 100644
--- a/src/app/tests/suites/certification/Test_TC_SWTCH_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SWTCH_3_1.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_SWTCH_3_2.yaml b/src/app/tests/suites/certification/Test_TC_SWTCH_3_2.yaml
index 732419bb175e9c..8ae5d01ca0db3a 100644
--- a/src/app/tests/suites/certification/Test_TC_SWTCH_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_SWTCH_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_S_1_1.yaml b/src/app/tests/suites/certification/Test_TC_S_1_1.yaml
index 6cafd4e5369635..625d937f7adce9 100644
--- a/src/app/tests/suites/certification/Test_TC_S_1_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_S_1_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_S_2_1.yaml b/src/app/tests/suites/certification/Test_TC_S_2_1.yaml
index d05661804b3e77..950ccb32380c94 100644
--- a/src/app/tests/suites/certification/Test_TC_S_2_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_S_2_1.yaml
@@ -22,7 +22,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_S_2_2.yaml b/src/app/tests/suites/certification/Test_TC_S_2_2.yaml
index 5f66c76b52d9b1..651a61c2a4d8f4 100644
--- a/src/app/tests/suites/certification/Test_TC_S_2_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_S_2_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_S_2_3.yaml b/src/app/tests/suites/certification/Test_TC_S_2_3.yaml
index bc6dde05f667b2..6abe8540d25882 100644
--- a/src/app/tests/suites/certification/Test_TC_S_2_3.yaml
+++ b/src/app/tests/suites/certification/Test_TC_S_2_3.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_S_3_1.yaml b/src/app/tests/suites/certification/Test_TC_S_3_1.yaml
index 4b49684135bbf1..7523eb6e9fed07 100644
--- a/src/app/tests/suites/certification/Test_TC_S_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_S_3_1.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_TGTNAV_8_2.yaml b/src/app/tests/suites/certification/Test_TC_TGTNAV_8_2.yaml
index f65c21592207f2..8993dab7ecf349 100644
--- a/src/app/tests/suites/certification/Test_TC_TGTNAV_8_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_TGTNAV_8_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_TMP_3_1.yaml b/src/app/tests/suites/certification/Test_TC_TMP_3_1.yaml
index f2dc3a06570cfa..38a6b38ef5fd98 100644
--- a/src/app/tests/suites/certification/Test_TC_TMP_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_TMP_3_1.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_TSTAT_3_1.yaml b/src/app/tests/suites/certification/Test_TC_TSTAT_3_1.yaml
index 90989264ca2dff..5d753937f0ed5d 100644
--- a/src/app/tests/suites/certification/Test_TC_TSTAT_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_TSTAT_3_1.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_TSTAT_3_2.yaml b/src/app/tests/suites/certification/Test_TC_TSTAT_3_2.yaml
index ab6f0e52bac81c..8d4bd01d185632 100644
--- a/src/app/tests/suites/certification/Test_TC_TSTAT_3_2.yaml
+++ b/src/app/tests/suites/certification/Test_TC_TSTAT_3_2.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_TSUIC_3_1.yaml b/src/app/tests/suites/certification/Test_TC_TSUIC_3_1.yaml
index efb786cb64b22d..4b9d1bb4aca130 100644
--- a/src/app/tests/suites/certification/Test_TC_TSUIC_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_TSUIC_3_1.yaml
@@ -24,7 +24,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_ULABEL_3_1.yaml b/src/app/tests/suites/certification/Test_TC_ULABEL_3_1.yaml
index 6dd8050f22b3e4..be6d0a80a186dc 100644
--- a/src/app/tests/suites/certification/Test_TC_ULABEL_3_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ULABEL_3_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_WNCV_6_1.yaml b/src/app/tests/suites/certification/Test_TC_WNCV_6_1.yaml
index 2abc47a33f6544..d78f30c6600efd 100644
--- a/src/app/tests/suites/certification/Test_TC_WNCV_6_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_WNCV_6_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/certification/Test_TC_WNCV_7_1.yaml b/src/app/tests/suites/certification/Test_TC_WNCV_7_1.yaml
index ed819bfa2a0754..6b80516e4cd9a8 100644
--- a/src/app/tests/suites/certification/Test_TC_WNCV_7_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_WNCV_7_1.yaml
@@ -20,7 +20,7 @@ PICS:
config:
nodeId: 0x12344321
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
tests:
diff --git a/src/app/tests/suites/examples/Test_Example_1.yaml b/src/app/tests/suites/examples/Test_Example_1.yaml
index fd8994ec43d9c3..23068546b91666 100644
--- a/src/app/tests/suites/examples/Test_Example_1.yaml
+++ b/src/app/tests/suites/examples/Test_Example_1.yaml
@@ -1,5 +1,5 @@
config:
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
testOneVariable:
type: INT16U
diff --git a/src/app/tests/suites/examples/Test_Example_2.yaml b/src/app/tests/suites/examples/Test_Example_2.yaml
index 6d23a57d0266ad..cc987ca0c0bc55 100644
--- a/src/app/tests/suites/examples/Test_Example_2.yaml
+++ b/src/app/tests/suites/examples/Test_Example_2.yaml
@@ -1,5 +1,5 @@
config:
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
testTwoVariable:
type: INT16U
diff --git a/src/app/tests/suites/examples/Test_Example_3.yaml b/src/app/tests/suites/examples/Test_Example_3.yaml
index 3ebfe6ea322d73..f2ca0a06d7bbd6 100644
--- a/src/app/tests/suites/examples/Test_Example_3.yaml
+++ b/src/app/tests/suites/examples/Test_Example_3.yaml
@@ -1,5 +1,5 @@
config:
- cluster: "Basic"
+ cluster: "Basic Information"
endpoint: 0
testThreeVariable:
type: INT16U
diff --git a/src/app/util/debug-printing-test.h b/src/app/util/debug-printing-test.h
index e399b249b91dba..da6ab7f90688c6 100644
--- a/src/app/util/debug-printing-test.h
+++ b/src/app/util/debug-printing-test.h
@@ -149,7 +149,7 @@
#define EMBER_AF_PRINT_NAMES \
{ \
- "Basic", "Power Configuration", "Device Temperature Configuration", "Identify", "Groups", "Scenes", "On/off", \
+ "Basic Information", "Power Configuration", "Device Temperature Configuration", "Identify", "Groups", "Scenes", "On/off", \
"On/off Switch Configuration", "Level Control", "Alarms", "Time", "RSSI Location", "Binary Input (Basic)", \
"Commissioning", "Partition", "Over the Air Bootloading", "Power Profile", "Appliance Control", "Poll Control", \
"Green Power", "Keep-Alive", "Shade Configuration", "Door Lock", "Window Covering", "Barrier Control", \
diff --git a/src/app/zap-templates/zcl/data-model/chip/basic-information-cluster.xml b/src/app/zap-templates/zcl/data-model/chip/basic-information-cluster.xml
index b111eaab078639..f86bb84a582715 100644
--- a/src/app/zap-templates/zcl/data-model/chip/basic-information-cluster.xml
+++ b/src/app/zap-templates/zcl/data-model/chip/basic-information-cluster.xml
@@ -24,10 +24,10 @@ limitations under the License.
- Basic
+ Basic Information
CHIP
0x0028
- BASIC_CLUSTER
+ BASIC_INFORMATION_CLUSTER
This cluster provides attributes and events for determining basic information about Nodes, which supports both
Commissioning and operational determination of Node characteristics, such as Vendor ID, Product ID and serial number,
which apply to the whole Node. Also allows setting user device information such as location.
diff --git a/src/app/zap-templates/zcl/data-model/chip/matter-devices.xml b/src/app/zap-templates/zcl/data-model/chip/matter-devices.xml
index 1dfe3d554868c3..be554e8e2d2671 100644
--- a/src/app/zap-templates/zcl/data-model/chip/matter-devices.xml
+++ b/src/app/zap-templates/zcl/data-model/chip/matter-devices.xml
@@ -40,7 +40,7 @@ limitations under the License.
ACL
EXTENSION
-
+
DATA_MODEL_REVISION
VENDOR_NAME
VENDOR_ID
diff --git a/src/app/zap-templates/zcl/data-model/silabs/lo-devices.xml b/src/app/zap-templates/zcl/data-model/silabs/lo-devices.xml
index 5a7b8a775a273f..c85f0017d6ee6a 100644
--- a/src/app/zap-templates/zcl/data-model/silabs/lo-devices.xml
+++ b/src/app/zap-templates/zcl/data-model/silabs/lo-devices.xml
@@ -23,7 +23,7 @@ limitations under the License.
0x0104
0x0100
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -96,7 +96,7 @@ limitations under the License.
0x0104
0x0101
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -182,7 +182,7 @@ limitations under the License.
0x0104
0x0102
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -320,7 +320,7 @@ limitations under the License.
0x0104
0x0103
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -361,7 +361,7 @@ limitations under the License.
0x0104
0x0104
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -404,7 +404,7 @@ limitations under the License.
0x0104
0x0105
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -449,7 +449,7 @@ limitations under the License.
0x0104
0x0106
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -489,7 +489,7 @@ limitations under the License.
0x0104
0x0107
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -528,7 +528,7 @@ limitations under the License.
0x0104
0x0108
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -628,7 +628,7 @@ limitations under the License.
0x0104
0x0109
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -728,7 +728,7 @@ limitations under the License.
0x0104
0x010A
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -814,7 +814,7 @@ limitations under the License.
0x0104
0x010B
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -900,7 +900,7 @@ limitations under the License.
0x0104
0x010C
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -1035,7 +1035,7 @@ limitations under the License.
0x0104
0x010D
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -1180,7 +1180,7 @@ limitations under the License.
0x0104
0x010E
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -1219,7 +1219,7 @@ limitations under the License.
0x0104
0x0800
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -1259,7 +1259,7 @@ limitations under the License.
0x0104
0x0810
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -1301,7 +1301,7 @@ limitations under the License.
0x0104
0x0820
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -1339,7 +1339,7 @@ limitations under the License.
0x0104
0x0830
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -1379,7 +1379,7 @@ limitations under the License.
0x0104
0x0840
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -1427,7 +1427,7 @@ limitations under the License.
0x0104
0x0850
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
diff --git a/src/app/zap-templates/zcl/data-model/silabs/zll-devices.xml b/src/app/zap-templates/zcl/data-model/silabs/zll-devices.xml
index 9a947ce9393c84..cc855104f4b233 100644
--- a/src/app/zap-templates/zcl/data-model/silabs/zll-devices.xml
+++ b/src/app/zap-templates/zcl/data-model/silabs/zll-devices.xml
@@ -23,7 +23,7 @@ limitations under the License.
0x0104
0x0000
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -101,7 +101,7 @@ limitations under the License.
0x0104
0x0010
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -179,7 +179,7 @@ limitations under the License.
0x0104
0x0100
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -257,7 +257,7 @@ limitations under the License.
0x0104
0x0110
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -335,7 +335,7 @@ limitations under the License.
0x0104
0x0200
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -470,7 +470,7 @@ limitations under the License.
0x0104
0x0210
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -605,7 +605,7 @@ limitations under the License.
0x0104
0x0220
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -740,7 +740,7 @@ limitations under the License.
0x0104
0x0800
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -774,7 +774,7 @@ limitations under the License.
0x0104
0x0810
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -819,7 +819,7 @@ limitations under the License.
0x0104
0x0820
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -852,7 +852,7 @@ limitations under the License.
0x0104
0x0830
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -896,7 +896,7 @@ limitations under the License.
0x0104
0x0840
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
@@ -941,7 +941,7 @@ limitations under the License.
0x0104
0x0850
-
+
VERSION
APPLICATION_VERSION
STACK_VERSION
diff --git a/src/app/zap-templates/zcl/zcl-with-test-extensions.json b/src/app/zap-templates/zcl/zcl-with-test-extensions.json
index 51f9acc0a93d58..3fc66139e925a4 100644
--- a/src/app/zap-templates/zcl/zcl-with-test-extensions.json
+++ b/src/app/zap-templates/zcl/zcl-with-test-extensions.json
@@ -113,7 +113,7 @@
"AdminFabricIndex",
"AdminVendorId"
],
- "Basic": [
+ "Basic Information": [
"DataModelRevision",
"VendorName",
"VendorID",
diff --git a/src/app/zap-templates/zcl/zcl.json b/src/app/zap-templates/zcl/zcl.json
index 52f482acb70847..8634aaebb488d2 100644
--- a/src/app/zap-templates/zcl/zcl.json
+++ b/src/app/zap-templates/zcl/zcl.json
@@ -107,7 +107,7 @@
"AdminFabricIndex",
"AdminVendorId"
],
- "Basic": [
+ "Basic Information": [
"DataModelRevision",
"VendorName",
"VendorID",
diff --git a/src/app/zap_cluster_list.py b/src/app/zap_cluster_list.py
index 1515eee90d2bad..9c420b92f5f859 100755
--- a/src/app/zap_cluster_list.py
+++ b/src/app/zap_cluster_list.py
@@ -18,7 +18,7 @@
'AUDIO_OUTPUT_CLUSTER': ['audio-output-server'],
'BALLAST_CONFIGURATION_CLUSTER': [],
'BARRIER_CONTROL_CLUSTER': ['barrier-control-server'],
- 'BASIC_CLUSTER': ['basic'],
+ 'BASIC_INFORMATION_CLUSTER': ['basic-information'],
'BINARY_INPUT_BASIC_CLUSTER': [],
'BINDING_CLUSTER': ['bindings'],
'BOOLEAN_STATE_CLUSTER': [],
@@ -104,7 +104,7 @@
'AUDIO_OUTPUT_CLUSTER': [],
'BALLAST_CONFIGURATION_CLUSTER': [],
'BARRIER_CONTROL_CLUSTER': [],
- 'BASIC_CLUSTER': [],
+ 'BASIC_INFORMATION_CLUSTER': [],
'BINARY_INPUT_BASIC_CLUSTER': [],
'BINDING_CLUSTER': [],
'BOOLEAN_STATE_CLUSTER': [],
diff --git a/src/controller/CHIPDeviceController.cpp b/src/controller/CHIPDeviceController.cpp
index 49bd9848d8f771..201cb22a34270c 100644
--- a/src/controller/CHIPDeviceController.cpp
+++ b/src/controller/CHIPDeviceController.cpp
@@ -1782,24 +1782,27 @@ void DeviceCommissioner::OnDone(app::ReadClient *)
// Try to parse as much as we can here before returning, even if this is an error.
return_err = err == CHIP_NO_ERROR ? return_err : err;
- err = mAttributeCache->ForEachAttribute(app::Clusters::Basic::Id, [this, &info](const app::ConcreteAttributePath & path) {
- if (path.mAttributeId != app::Clusters::Basic::Attributes::VendorID::Id &&
- path.mAttributeId != app::Clusters::Basic::Attributes::ProductID::Id)
- {
- // Continue on
- return CHIP_NO_ERROR;
- }
+ err = mAttributeCache->ForEachAttribute(
+ app::Clusters::BasicInformation::Id, [this, &info](const app::ConcreteAttributePath & path) {
+ if (path.mAttributeId != app::Clusters::BasicInformation::Attributes::VendorID::Id &&
+ path.mAttributeId != app::Clusters::BasicInformation::Attributes::ProductID::Id)
+ {
+ // Continue on
+ return CHIP_NO_ERROR;
+ }
- switch (path.mAttributeId)
- {
- case app::Clusters::Basic::Attributes::VendorID::Id:
- return this->mAttributeCache->Get(path, info.basic.vendorId);
- case app::Clusters::Basic::Attributes::ProductID::Id:
- return this->mAttributeCache->Get(path, info.basic.productId);
- default:
- return CHIP_NO_ERROR;
- }
- });
+ switch (path.mAttributeId)
+ {
+ case app::Clusters::BasicInformation::Attributes::VendorID::Id:
+ return this->mAttributeCache->Get(
+ path, info.basic.vendorId);
+ case app::Clusters::BasicInformation::Attributes::ProductID::Id:
+ return this->mAttributeCache->Get(
+ path, info.basic.productId);
+ default:
+ return CHIP_NO_ERROR;
+ }
+ });
// Try to parse as much as we can here before returning, even if this is an error.
return_err = (err == CHIP_NO_ERROR) ? return_err : err;
@@ -2136,9 +2139,10 @@ void DeviceCommissioner::PerformCommissioningStep(DeviceProxy * proxy, Commissio
readPaths[4] = app::AttributePathParams(endpoint, app::Clusters::GeneralCommissioning::Id,
app::Clusters::GeneralCommissioning::Attributes::LocationCapability::Id);
// Read attributes from the basic info cluster (vendor id / product id / software version)
- readPaths[5] = app::AttributePathParams(endpoint, app::Clusters::Basic::Id, app::Clusters::Basic::Attributes::VendorID::Id);
- readPaths[6] =
- app::AttributePathParams(endpoint, app::Clusters::Basic::Id, app::Clusters::Basic::Attributes::ProductID::Id);
+ readPaths[5] = app::AttributePathParams(endpoint, app::Clusters::BasicInformation::Id,
+ app::Clusters::BasicInformation::Attributes::VendorID::Id);
+ readPaths[6] = app::AttributePathParams(endpoint, app::Clusters::BasicInformation::Id,
+ app::Clusters::BasicInformation::Attributes::ProductID::Id);
// Read the requested minimum connection times from all network commissioning clusters
readPaths[7] = app::AttributePathParams(app::Clusters::NetworkCommissioning::Id,
app::Clusters::NetworkCommissioning::Attributes::ConnectMaxTimeSeconds::Id);
diff --git a/src/controller/CommissioningWindowOpener.cpp b/src/controller/CommissioningWindowOpener.cpp
index f2beabc8d3c750..99f7a0946e8615 100644
--- a/src/controller/CommissioningWindowOpener.cpp
+++ b/src/controller/CommissioningWindowOpener.cpp
@@ -271,20 +271,18 @@ void CommissioningWindowOpener::OnDeviceConnectedCallback(void * context, Messag
switch (self->mNextStep)
{
case Step::kReadVID: {
- constexpr EndpointId kBasicClusterEndpoint = 0;
- BasicCluster cluster(exchangeMgr, sessionHandle, kBasicClusterEndpoint);
- err = cluster.ReadAttribute(context, OnVIDReadResponse,
- OnVIDPIDReadFailureResponse);
+ BasicInformationCluster cluster(exchangeMgr, sessionHandle, kRootEndpointId);
+ err = cluster.ReadAttribute(context, OnVIDReadResponse,
+ OnVIDPIDReadFailureResponse);
#if CHIP_ERROR_LOGGING
messageIfError = "Could not read VID for opening commissioning window";
#endif // CHIP_ERROR_LOGGING
break;
}
case Step::kReadPID: {
- constexpr EndpointId kBasicClusterEndpoint = 0;
- BasicCluster cluster(exchangeMgr, sessionHandle, kBasicClusterEndpoint);
- err = cluster.ReadAttribute(context, OnPIDReadResponse,
- OnVIDPIDReadFailureResponse);
+ BasicInformationCluster cluster(exchangeMgr, sessionHandle, kRootEndpointId);
+ err = cluster.ReadAttribute(context, OnPIDReadResponse,
+ OnVIDPIDReadFailureResponse);
#if CHIP_ERROR_LOGGING
messageIfError = "Could not read PID for opening commissioning window";
#endif // CHIP_ERROR_LOGGING
diff --git a/src/controller/data_model/BUILD.gn b/src/controller/data_model/BUILD.gn
index 95b0e6cf02072a..7e7aafcb35b57f 100644
--- a/src/controller/data_model/BUILD.gn
+++ b/src/controller/data_model/BUILD.gn
@@ -64,8 +64,8 @@ if (current_os == "android" || build_java_matter_controller) {
"jni/AccessControlClient-InvokeSubscribeImpl.cpp",
"jni/ActionsClient-ReadImpl.cpp",
"jni/ActionsClient-InvokeSubscribeImpl.cpp",
- "jni/BasicClient-ReadImpl.cpp",
- "jni/BasicClient-InvokeSubscribeImpl.cpp",
+ "jni/BasicInformationClient-ReadImpl.cpp",
+ "jni/BasicInformationClient-InvokeSubscribeImpl.cpp",
"jni/OtaSoftwareUpdateProviderClient-ReadImpl.cpp",
"jni/OtaSoftwareUpdateProviderClient-InvokeSubscribeImpl.cpp",
"jni/OtaSoftwareUpdateRequestorClient-ReadImpl.cpp",
diff --git a/src/controller/data_model/controller-clusters.matter b/src/controller/data_model/controller-clusters.matter
index 7b448f4a558053..2b37fb7e7a054e 100644
--- a/src/controller/data_model/controller-clusters.matter
+++ b/src/controller/data_model/controller-clusters.matter
@@ -678,7 +678,7 @@ client cluster Actions = 37 {
command DisableActionWithDuration(DisableActionWithDurationRequest): DefaultSuccess = 11;
}
-client cluster Basic = 40 {
+client cluster BasicInformation = 40 {
struct CapabilityMinimaStruct {
int16u caseSessionsPerFabric = 0;
int16u subscriptionsPerFabric = 1;
@@ -4418,7 +4418,7 @@ endpoint 1 {
binding cluster Binding;
binding cluster AccessControl;
binding cluster Actions;
- binding cluster Basic;
+ binding cluster BasicInformation;
binding cluster OtaSoftwareUpdateProvider;
binding cluster OtaSoftwareUpdateRequestor;
binding cluster LocalizationConfiguration;
diff --git a/src/controller/data_model/controller-clusters.zap b/src/controller/data_model/controller-clusters.zap
index 217d7aefafe6bb..6a6e911c88ce24 100644
--- a/src/controller/data_model/controller-clusters.zap
+++ b/src/controller/data_model/controller-clusters.zap
@@ -1,5 +1,5 @@
{
- "featureLevel": 87,
+ "featureLevel": 89,
"creator": "zap",
"keyValuePairs": [
{
@@ -16,12 +16,6 @@
}
],
"package": [
- {
- "pathRelativity": "relativeToZap",
- "path": "../../app/zap-templates/app-templates.json",
- "type": "gen-templates-json",
- "version": "chip-v1"
- },
{
"pathRelativity": "relativeToZap",
"path": "../../app/zap-templates/zcl/zcl.json",
@@ -29,6 +23,12 @@
"category": "matter",
"version": 1,
"description": "Matter SDK ZCL data"
+ },
+ {
+ "pathRelativity": "relativeToZap",
+ "path": "../../app/zap-templates/app-templates.json",
+ "type": "gen-templates-json",
+ "version": "chip-v1"
}
],
"endpointTypes": [
@@ -2603,10 +2603,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "client",
"enabled": 1,
"attributes": [
@@ -2629,10 +2629,10 @@
]
},
{
- "name": "Basic",
+ "name": "Basic Information",
"code": 40,
"mfgCode": null,
- "define": "BASIC_CLUSTER",
+ "define": "BASIC_INFORMATION_CLUSTER",
"side": "server",
"enabled": 0,
"attributes": [
@@ -19557,6 +19557,5 @@
"endpointVersion": 1,
"deviceIdentifier": 22
}
- ],
- "log": []
+ ]
}
\ No newline at end of file
diff --git a/src/controller/java/zap-generated/CHIPAttributeTLVValueDecoder.cpp b/src/controller/java/zap-generated/CHIPAttributeTLVValueDecoder.cpp
index 3e375f92f32085..b497ca97384004 100644
--- a/src/controller/java/zap-generated/CHIPAttributeTLVValueDecoder.cpp
+++ b/src/controller/java/zap-generated/CHIPAttributeTLVValueDecoder.cpp
@@ -2435,8 +2435,8 @@ jobject DecodeAttributeValue(const app::ConcreteAttributePath & aPath, TLV::TLVR
}
break;
}
- case app::Clusters::Basic::Id: {
- using namespace app::Clusters::Basic;
+ case app::Clusters::BasicInformation::Id: {
+ using namespace app::Clusters::BasicInformation;
switch (aPath.mAttributeId)
{
case Attributes::DataModelRevision::Id: {
@@ -2712,17 +2712,18 @@ jobject DecodeAttributeValue(const app::ConcreteAttributePath & aPath, TLV::TLVR
jclass capabilityMinimaStructStructClass_0;
err = chip::JniReferences::GetInstance().GetClassRef(
- env, "chip/devicecontroller/ChipStructs$BasicClusterCapabilityMinimaStruct", capabilityMinimaStructStructClass_0);
+ env, "chip/devicecontroller/ChipStructs$BasicInformationClusterCapabilityMinimaStruct",
+ capabilityMinimaStructStructClass_0);
if (err != CHIP_NO_ERROR)
{
- ChipLogError(Zcl, "Could not find class ChipStructs$BasicClusterCapabilityMinimaStruct");
+ ChipLogError(Zcl, "Could not find class ChipStructs$BasicInformationClusterCapabilityMinimaStruct");
return nullptr;
}
jmethodID capabilityMinimaStructStructCtor_0 =
env->GetMethodID(capabilityMinimaStructStructClass_0, "", "(Ljava/lang/Integer;Ljava/lang/Integer;)V");
if (capabilityMinimaStructStructCtor_0 == nullptr)
{
- ChipLogError(Zcl, "Could not find ChipStructs$BasicClusterCapabilityMinimaStruct constructor");
+ ChipLogError(Zcl, "Could not find ChipStructs$BasicInformationClusterCapabilityMinimaStruct constructor");
return nullptr;
}
diff --git a/src/controller/java/zap-generated/CHIPCallbackTypes.h b/src/controller/java/zap-generated/CHIPCallbackTypes.h
index 2a1d813a06d313..660ddda61e66a2 100644
--- a/src/controller/java/zap-generated/CHIPCallbackTypes.h
+++ b/src/controller/java/zap-generated/CHIPCallbackTypes.h
@@ -254,56 +254,56 @@ typedef void (*CHIPActionsClusterFeatureMapAttributeCallbackType)(
typedef void (*CHIPActionsClusterClusterRevisionAttributeCallbackType)(
void *, chip::app::Clusters::Actions::Attributes::ClusterRevision::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterDataModelRevisionAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::DataModelRevision::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterVendorNameAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::VendorName::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterVendorIDAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::VendorID::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterProductNameAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::ProductName::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterProductIDAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::ProductID::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterNodeLabelAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::NodeLabel::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterLocationAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::Location::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterHardwareVersionAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::HardwareVersion::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterHardwareVersionStringAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::HardwareVersionString::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterSoftwareVersionAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::SoftwareVersion::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterSoftwareVersionStringAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::SoftwareVersionString::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterManufacturingDateAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::ManufacturingDate::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterPartNumberAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::PartNumber::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterProductURLAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::ProductURL::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterProductLabelAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::ProductLabel::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterSerialNumberAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::SerialNumber::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterLocalConfigDisabledAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::LocalConfigDisabled::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterReachableAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::Reachable::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterUniqueIDAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::UniqueID::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterCapabilityMinimaAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::CapabilityMinima::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterGeneratedCommandListAttributeCallbackType)(
- void *, const chip::app::Clusters::Basic::Attributes::GeneratedCommandList::TypeInfo::DecodableType &);
-typedef void (*CHIPBasicClusterAcceptedCommandListAttributeCallbackType)(
- void *, const chip::app::Clusters::Basic::Attributes::AcceptedCommandList::TypeInfo::DecodableType &);
-typedef void (*CHIPBasicClusterAttributeListAttributeCallbackType)(
- void *, const chip::app::Clusters::Basic::Attributes::AttributeList::TypeInfo::DecodableType &);
-typedef void (*CHIPBasicClusterFeatureMapAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::FeatureMap::TypeInfo::DecodableArgType);
-typedef void (*CHIPBasicClusterClusterRevisionAttributeCallbackType)(
- void *, chip::app::Clusters::Basic::Attributes::ClusterRevision::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterDataModelRevisionAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::DataModelRevision::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterVendorNameAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::VendorName::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterVendorIDAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::VendorID::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterProductNameAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::ProductName::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterProductIDAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::ProductID::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterNodeLabelAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::NodeLabel::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterLocationAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::Location::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterHardwareVersionAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::HardwareVersion::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterHardwareVersionStringAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::HardwareVersionString::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterSoftwareVersionAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::SoftwareVersion::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterSoftwareVersionStringAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::SoftwareVersionString::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterManufacturingDateAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::ManufacturingDate::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterPartNumberAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::PartNumber::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterProductURLAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::ProductURL::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterProductLabelAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::ProductLabel::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterSerialNumberAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::SerialNumber::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterLocalConfigDisabledAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::LocalConfigDisabled::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterReachableAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::Reachable::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterUniqueIDAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::UniqueID::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterCapabilityMinimaAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::CapabilityMinima::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterGeneratedCommandListAttributeCallbackType)(
+ void *, const chip::app::Clusters::BasicInformation::Attributes::GeneratedCommandList::TypeInfo::DecodableType &);
+typedef void (*CHIPBasicInformationClusterAcceptedCommandListAttributeCallbackType)(
+ void *, const chip::app::Clusters::BasicInformation::Attributes::AcceptedCommandList::TypeInfo::DecodableType &);
+typedef void (*CHIPBasicInformationClusterAttributeListAttributeCallbackType)(
+ void *, const chip::app::Clusters::BasicInformation::Attributes::AttributeList::TypeInfo::DecodableType &);
+typedef void (*CHIPBasicInformationClusterFeatureMapAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::FeatureMap::TypeInfo::DecodableArgType);
+typedef void (*CHIPBasicInformationClusterClusterRevisionAttributeCallbackType)(
+ void *, chip::app::Clusters::BasicInformation::Attributes::ClusterRevision::TypeInfo::DecodableArgType);
typedef void (*CHIPOtaSoftwareUpdateProviderClusterQueryImageResponseCallbackType)(
void *, const chip::app::Clusters::OtaSoftwareUpdateProvider::Commands::QueryImageResponse::DecodableType &);
typedef void (*CHIPOtaSoftwareUpdateProviderClusterApplyUpdateResponseCallbackType)(
diff --git a/src/controller/java/zap-generated/CHIPClustersWrite-JNI.cpp b/src/controller/java/zap-generated/CHIPClustersWrite-JNI.cpp
index 8fa0e3d7020618..265a5323c3877a 100644
--- a/src/controller/java/zap-generated/CHIPClustersWrite-JNI.cpp
+++ b/src/controller/java/zap-generated/CHIPClustersWrite-JNI.cpp
@@ -1234,12 +1234,12 @@ JNI_METHOD(void, AccessControlCluster, writeExtensionAttribute)
onFailure.release();
}
-JNI_METHOD(void, BasicCluster, writeNodeLabelAttribute)
+JNI_METHOD(void, BasicInformationCluster, writeNodeLabelAttribute)
(JNIEnv * env, jobject self, jlong clusterPtr, jobject callback, jstring value, jobject timedWriteTimeoutMs)
{
chip::DeviceLayer::StackLock lock;
ListFreer listFreer;
- using TypeInfo = chip::app::Clusters::Basic::Attributes::NodeLabel::TypeInfo;
+ using TypeInfo = chip::app::Clusters::BasicInformation::Attributes::NodeLabel::TypeInfo;
TypeInfo::Type cppValue;
std::vector> cleanupByteArrays;
@@ -1260,8 +1260,8 @@ JNI_METHOD(void, BasicCluster, writeNodeLabelAttribute)
chip::AndroidClusterExceptions::GetInstance().ReturnIllegalStateException(
env, callback, "Error creating native failure callback", CHIP_ERROR_NO_MEMORY));
- CHIP_ERROR err = CHIP_NO_ERROR;
- BasicCluster * cppCluster = reinterpret_cast(clusterPtr);
+ CHIP_ERROR err = CHIP_NO_ERROR;
+ BasicInformationCluster * cppCluster = reinterpret_cast(clusterPtr);
VerifyOrReturn(cppCluster != nullptr,
chip::AndroidClusterExceptions::GetInstance().ReturnIllegalStateException(
env, callback, "Could not get native cluster", CHIP_ERROR_INCORRECT_STATE));
@@ -1286,12 +1286,12 @@ JNI_METHOD(void, BasicCluster, writeNodeLabelAttribute)
onFailure.release();
}
-JNI_METHOD(void, BasicCluster, writeLocationAttribute)
+JNI_METHOD(void, BasicInformationCluster, writeLocationAttribute)
(JNIEnv * env, jobject self, jlong clusterPtr, jobject callback, jstring value, jobject timedWriteTimeoutMs)
{
chip::DeviceLayer::StackLock lock;
ListFreer listFreer;
- using TypeInfo = chip::app::Clusters::Basic::Attributes::Location::TypeInfo;
+ using TypeInfo = chip::app::Clusters::BasicInformation::Attributes::Location::TypeInfo;
TypeInfo::Type cppValue;
std::vector> cleanupByteArrays;
@@ -1312,8 +1312,8 @@ JNI_METHOD(void, BasicCluster, writeLocationAttribute)
chip::AndroidClusterExceptions::GetInstance().ReturnIllegalStateException(
env, callback, "Error creating native failure callback", CHIP_ERROR_NO_MEMORY));
- CHIP_ERROR err = CHIP_NO_ERROR;
- BasicCluster * cppCluster = reinterpret_cast(clusterPtr);
+ CHIP_ERROR err = CHIP_NO_ERROR;
+ BasicInformationCluster * cppCluster = reinterpret_cast(clusterPtr);
VerifyOrReturn(cppCluster != nullptr,
chip::AndroidClusterExceptions::GetInstance().ReturnIllegalStateException(
env, callback, "Could not get native cluster", CHIP_ERROR_INCORRECT_STATE));
@@ -1338,12 +1338,12 @@ JNI_METHOD(void, BasicCluster, writeLocationAttribute)
onFailure.release();
}
-JNI_METHOD(void, BasicCluster, writeLocalConfigDisabledAttribute)
+JNI_METHOD(void, BasicInformationCluster, writeLocalConfigDisabledAttribute)
(JNIEnv * env, jobject self, jlong clusterPtr, jobject callback, jobject value, jobject timedWriteTimeoutMs)
{
chip::DeviceLayer::StackLock lock;
ListFreer listFreer;
- using TypeInfo = chip::app::Clusters::Basic::Attributes::LocalConfigDisabled::TypeInfo;
+ using TypeInfo = chip::app::Clusters::BasicInformation::Attributes::LocalConfigDisabled::TypeInfo;
TypeInfo::Type cppValue;
std::vector> cleanupByteArrays;
@@ -1364,8 +1364,8 @@ JNI_METHOD(void, BasicCluster, writeLocalConfigDisabledAttribute)
chip::AndroidClusterExceptions::GetInstance().ReturnIllegalStateException(
env, callback, "Error creating native failure callback", CHIP_ERROR_NO_MEMORY));
- CHIP_ERROR err = CHIP_NO_ERROR;
- BasicCluster * cppCluster = reinterpret_cast(clusterPtr);
+ CHIP_ERROR err = CHIP_NO_ERROR;
+ BasicInformationCluster * cppCluster = reinterpret_cast(clusterPtr);
VerifyOrReturn(cppCluster != nullptr,
chip::AndroidClusterExceptions::GetInstance().ReturnIllegalStateException(
env, callback, "Could not get native cluster", CHIP_ERROR_INCORRECT_STATE));
diff --git a/src/controller/java/zap-generated/CHIPEventTLVValueDecoder.cpp b/src/controller/java/zap-generated/CHIPEventTLVValueDecoder.cpp
index eb53f82a2cefd7..3b71620f1306cc 100644
--- a/src/controller/java/zap-generated/CHIPEventTLVValueDecoder.cpp
+++ b/src/controller/java/zap-generated/CHIPEventTLVValueDecoder.cpp
@@ -583,8 +583,8 @@ jobject DecodeEventValue(const app::ConcreteEventPath & aPath, TLV::TLVReader &
}
break;
}
- case app::Clusters::Basic::Id: {
- using namespace app::Clusters::Basic;
+ case app::Clusters::BasicInformation::Id: {
+ using namespace app::Clusters::BasicInformation;
switch (aPath.mEventId)
{
case Events::StartUp::Id: {
@@ -603,16 +603,16 @@ jobject DecodeEventValue(const app::ConcreteEventPath & aPath, TLV::TLVReader &
jclass startUpStructClass;
err = chip::JniReferences::GetInstance().GetClassRef(
- env, "chip/devicecontroller/ChipEventStructs$BasicClusterStartUpEvent", startUpStructClass);
+ env, "chip/devicecontroller/ChipEventStructs$BasicInformationClusterStartUpEvent", startUpStructClass);
if (err != CHIP_NO_ERROR)
{
- ChipLogError(Zcl, "Could not find class ChipEventStructs$BasicClusterStartUpEvent");
+ ChipLogError(Zcl, "Could not find class ChipEventStructs$BasicInformationClusterStartUpEvent");
return nullptr;
}
jmethodID startUpStructCtor = env->GetMethodID(startUpStructClass, "", "(Ljava/lang/Long;)V");
if (startUpStructCtor == nullptr)
{
- ChipLogError(Zcl, "Could not find ChipEventStructs$BasicClusterStartUpEvent constructor");
+ ChipLogError(Zcl, "Could not find ChipEventStructs$BasicInformationClusterStartUpEvent constructor");
return nullptr;
}
@@ -629,16 +629,16 @@ jobject DecodeEventValue(const app::ConcreteEventPath & aPath, TLV::TLVReader &
}
jclass shutDownStructClass;
err = chip::JniReferences::GetInstance().GetClassRef(
- env, "chip/devicecontroller/ChipEventStructs$BasicClusterShutDownEvent", shutDownStructClass);
+ env, "chip/devicecontroller/ChipEventStructs$BasicInformationClusterShutDownEvent", shutDownStructClass);
if (err != CHIP_NO_ERROR)
{
- ChipLogError(Zcl, "Could not find class ChipEventStructs$BasicClusterShutDownEvent");
+ ChipLogError(Zcl, "Could not find class ChipEventStructs$BasicInformationClusterShutDownEvent");
return nullptr;
}
jmethodID shutDownStructCtor = env->GetMethodID(shutDownStructClass, "", "()V");
if (shutDownStructCtor == nullptr)
{
- ChipLogError(Zcl, "Could not find ChipEventStructs$BasicClusterShutDownEvent constructor");
+ ChipLogError(Zcl, "Could not find ChipEventStructs$BasicInformationClusterShutDownEvent constructor");
return nullptr;
}
@@ -662,16 +662,16 @@ jobject DecodeEventValue(const app::ConcreteEventPath & aPath, TLV::TLVReader &
jclass leaveStructClass;
err = chip::JniReferences::GetInstance().GetClassRef(
- env, "chip/devicecontroller/ChipEventStructs$BasicClusterLeaveEvent", leaveStructClass);
+ env, "chip/devicecontroller/ChipEventStructs$BasicInformationClusterLeaveEvent", leaveStructClass);
if (err != CHIP_NO_ERROR)
{
- ChipLogError(Zcl, "Could not find class ChipEventStructs$BasicClusterLeaveEvent");
+ ChipLogError(Zcl, "Could not find class ChipEventStructs$BasicInformationClusterLeaveEvent");
return nullptr;
}
jmethodID leaveStructCtor = env->GetMethodID(leaveStructClass, "", "(Ljava/lang/Integer;)V");
if (leaveStructCtor == nullptr)
{
- ChipLogError(Zcl, "Could not find ChipEventStructs$BasicClusterLeaveEvent constructor");
+ ChipLogError(Zcl, "Could not find ChipEventStructs$BasicInformationClusterLeaveEvent constructor");
return nullptr;
}
@@ -695,17 +695,18 @@ jobject DecodeEventValue(const app::ConcreteEventPath & aPath, TLV::TLVReader &
jclass reachableChangedStructClass;
err = chip::JniReferences::GetInstance().GetClassRef(
- env, "chip/devicecontroller/ChipEventStructs$BasicClusterReachableChangedEvent", reachableChangedStructClass);
+ env, "chip/devicecontroller/ChipEventStructs$BasicInformationClusterReachableChangedEvent",
+ reachableChangedStructClass);
if (err != CHIP_NO_ERROR)
{
- ChipLogError(Zcl, "Could not find class ChipEventStructs$BasicClusterReachableChangedEvent");
+ ChipLogError(Zcl, "Could not find class ChipEventStructs$BasicInformationClusterReachableChangedEvent");
return nullptr;
}
jmethodID reachableChangedStructCtor =
env->GetMethodID(reachableChangedStructClass, "", "(Ljava/lang/Boolean;)V");
if (reachableChangedStructCtor == nullptr)
{
- ChipLogError(Zcl, "Could not find ChipEventStructs$BasicClusterReachableChangedEvent constructor");
+ ChipLogError(Zcl, "Could not find ChipEventStructs$BasicInformationClusterReachableChangedEvent constructor");
return nullptr;
}
diff --git a/src/controller/java/zap-generated/CHIPReadCallbacks.cpp b/src/controller/java/zap-generated/CHIPReadCallbacks.cpp
index 65e9a4218f26f9..4e87497189d35b 100644
--- a/src/controller/java/zap-generated/CHIPReadCallbacks.cpp
+++ b/src/controller/java/zap-generated/CHIPReadCallbacks.cpp
@@ -4506,8 +4506,8 @@ void CHIPActionsAttributeListAttributeCallback::CallbackFn(void * context,
env->CallVoidMethod(javaCallbackRef, javaMethod, arrayListObj);
}
-CHIPBasicVendorIDAttributeCallback::CHIPBasicVendorIDAttributeCallback(jobject javaCallback, bool keepAlive) :
- chip::Callback::Callback(CallbackFn, this), keepAlive(keepAlive)
+CHIPBasicInformationVendorIDAttributeCallback::CHIPBasicInformationVendorIDAttributeCallback(jobject javaCallback, bool keepAlive) :
+ chip::Callback::Callback(CallbackFn, this), keepAlive(keepAlive)
{
JNIEnv * env = chip::JniReferences::GetInstance().GetEnvForCurrentThread();
if (env == nullptr)
@@ -4523,7 +4523,7 @@ CHIPBasicVendorIDAttributeCallback::CHIPBasicVendorIDAttributeCallback(jobject j
}
}
-CHIPBasicVendorIDAttributeCallback::~CHIPBasicVendorIDAttributeCallback()
+CHIPBasicInformationVendorIDAttributeCallback::~CHIPBasicInformationVendorIDAttributeCallback()
{
JNIEnv * env = chip::JniReferences::GetInstance().GetEnvForCurrentThread();
if (env == nullptr)
@@ -4534,7 +4534,7 @@ CHIPBasicVendorIDAttributeCallback::~CHIPBasicVendorIDAttributeCallback()
env->DeleteGlobalRef(javaCallbackRef);
}
-void CHIPBasicVendorIDAttributeCallback::CallbackFn(void * context, chip::VendorId value)
+void CHIPBasicInformationVendorIDAttributeCallback::CallbackFn(void * context, chip::VendorId value)
{
chip::DeviceLayer::StackUnlock unlock;
CHIP_ERROR err = CHIP_NO_ERROR;
@@ -4542,8 +4542,8 @@ void CHIPBasicVendorIDAttributeCallback::CallbackFn(void * context, chip::Vendor
jobject javaCallbackRef;
VerifyOrReturn(env != nullptr, ChipLogError(Zcl, "Could not get JNI env"));
- std::unique_ptr cppCallback(
- reinterpret_cast(context), maybeDestroy);
+ std::unique_ptr cppCallback(
+ reinterpret_cast(context), maybeDestroy);
// It's valid for javaCallbackRef to be nullptr if the Java code passed in a null callback.
javaCallbackRef = cppCallback.get()->javaCallbackRef;
@@ -4563,9 +4563,9 @@ void CHIPBasicVendorIDAttributeCallback::CallbackFn(void * context, chip::Vendor
env->CallVoidMethod(javaCallbackRef, javaMethod, javaValue);
}
-CHIPBasicGeneratedCommandListAttributeCallback::CHIPBasicGeneratedCommandListAttributeCallback(jobject javaCallback,
- bool keepAlive) :
- chip::Callback::Callback(CallbackFn, this),
+CHIPBasicInformationGeneratedCommandListAttributeCallback::CHIPBasicInformationGeneratedCommandListAttributeCallback(
+ jobject javaCallback, bool keepAlive) :
+ chip::Callback::Callback(CallbackFn, this),
keepAlive(keepAlive)
{
JNIEnv * env = chip::JniReferences::GetInstance().GetEnvForCurrentThread();
@@ -4582,7 +4582,7 @@ CHIPBasicGeneratedCommandListAttributeCallback::CHIPBasicGeneratedCommandListAtt
}
}
-CHIPBasicGeneratedCommandListAttributeCallback::~CHIPBasicGeneratedCommandListAttributeCallback()
+CHIPBasicInformationGeneratedCommandListAttributeCallback::~CHIPBasicInformationGeneratedCommandListAttributeCallback()
{
JNIEnv * env = chip::JniReferences::GetInstance().GetEnvForCurrentThread();
if (env == nullptr)
@@ -4593,8 +4593,8 @@ CHIPBasicGeneratedCommandListAttributeCallback::~CHIPBasicGeneratedCommandListAt
env->DeleteGlobalRef(javaCallbackRef);
}
-void CHIPBasicGeneratedCommandListAttributeCallback::CallbackFn(void * context,
- const chip::app::DataModel::DecodableList & list)
+void CHIPBasicInformationGeneratedCommandListAttributeCallback::CallbackFn(
+ void * context, const chip::app::DataModel::DecodableList & list)
{
chip::DeviceLayer::StackUnlock unlock;
CHIP_ERROR err = CHIP_NO_ERROR;
@@ -4603,8 +4603,8 @@ void CHIPBasicGeneratedCommandListAttributeCallback::CallbackFn(void * context,
VerifyOrReturn(env != nullptr, ChipLogError(Zcl, "Could not get JNI env"));
- std::unique_ptr cppCallback(
- reinterpret_cast(context), maybeDestroy);
+ std::unique_ptr cppCallback(
+ reinterpret_cast(context), maybeDestroy);
// It's valid for javaCallbackRef to be nullptr if the Java code passed in a null callback.
javaCallbackRef = cppCallback.get()->javaCallbackRef;
@@ -4634,8 +4634,10 @@ void CHIPBasicGeneratedCommandListAttributeCallback::CallbackFn(void * context,
env->CallVoidMethod(javaCallbackRef, javaMethod, arrayListObj);
}
-CHIPBasicAcceptedCommandListAttributeCallback::CHIPBasicAcceptedCommandListAttributeCallback(jobject javaCallback, bool keepAlive) :
- chip::Callback::Callback(CallbackFn, this), keepAlive(keepAlive)
+CHIPBasicInformationAcceptedCommandListAttributeCallback::CHIPBasicInformationAcceptedCommandListAttributeCallback(
+ jobject javaCallback, bool keepAlive) :
+ chip::Callback::Callback(CallbackFn, this),
+ keepAlive(keepAlive)
{
JNIEnv * env = chip::JniReferences::GetInstance().GetEnvForCurrentThread();
if (env == nullptr)
@@ -4651,7 +4653,7 @@ CHIPBasicAcceptedCommandListAttributeCallback::CHIPBasicAcceptedCommandListAttri
}
}
-CHIPBasicAcceptedCommandListAttributeCallback::~CHIPBasicAcceptedCommandListAttributeCallback()
+CHIPBasicInformationAcceptedCommandListAttributeCallback::~CHIPBasicInformationAcceptedCommandListAttributeCallback()
{
JNIEnv * env = chip::JniReferences::GetInstance().GetEnvForCurrentThread();
if (env == nullptr)
@@ -4662,8 +4664,8 @@ CHIPBasicAcceptedCommandListAttributeCallback::~CHIPBasicAcceptedCommandListAttr
env->DeleteGlobalRef(javaCallbackRef);
}
-void CHIPBasicAcceptedCommandListAttributeCallback::CallbackFn(void * context,
- const chip::app::DataModel::DecodableList & list)
+void CHIPBasicInformationAcceptedCommandListAttributeCallback::CallbackFn(
+ void * context, const chip::app::DataModel::DecodableList & list)
{
chip::DeviceLayer::StackUnlock unlock;
CHIP_ERROR err = CHIP_NO_ERROR;
@@ -4672,8 +4674,8 @@ void CHIPBasicAcceptedCommandListAttributeCallback::CallbackFn(void * context,
VerifyOrReturn(env != nullptr, ChipLogError(Zcl, "Could not get JNI env"));
- std::unique_ptr cppCallback(
- reinterpret_cast(context), maybeDestroy);
+ std::unique_ptr cppCallback(
+ reinterpret_cast(context), maybeDestroy);
// It's valid for javaCallbackRef to be nullptr if the Java code passed in a null callback.
javaCallbackRef = cppCallback.get()->javaCallbackRef;
@@ -4703,8 +4705,10 @@ void CHIPBasicAcceptedCommandListAttributeCallback::CallbackFn(void * context,
env->CallVoidMethod(javaCallbackRef, javaMethod, arrayListObj);
}
-CHIPBasicAttributeListAttributeCallback::CHIPBasicAttributeListAttributeCallback(jobject javaCallback, bool keepAlive) :
- chip::Callback::Callback(CallbackFn, this), keepAlive(keepAlive)
+CHIPBasicInformationAttributeListAttributeCallback::CHIPBasicInformationAttributeListAttributeCallback(jobject javaCallback,
+ bool keepAlive) :
+ chip::Callback::Callback(CallbackFn, this),
+ keepAlive(keepAlive)
{
JNIEnv * env = chip::JniReferences::GetInstance().GetEnvForCurrentThread();
if (env == nullptr)
@@ -4720,7 +4724,7 @@ CHIPBasicAttributeListAttributeCallback::CHIPBasicAttributeListAttributeCallback
}
}
-CHIPBasicAttributeListAttributeCallback::~CHIPBasicAttributeListAttributeCallback()
+CHIPBasicInformationAttributeListAttributeCallback::~CHIPBasicInformationAttributeListAttributeCallback()
{
JNIEnv * env = chip::JniReferences::GetInstance().GetEnvForCurrentThread();
if (env == nullptr)
@@ -4731,8 +4735,8 @@ CHIPBasicAttributeListAttributeCallback::~CHIPBasicAttributeListAttributeCallbac
env->DeleteGlobalRef(javaCallbackRef);
}
-void CHIPBasicAttributeListAttributeCallback::CallbackFn(void * context,
- const chip::app::DataModel::DecodableList & list)
+void CHIPBasicInformationAttributeListAttributeCallback::CallbackFn(
+ void * context, const chip::app::DataModel::DecodableList & list)
{
chip::DeviceLayer::StackUnlock unlock;
CHIP_ERROR err = CHIP_NO_ERROR;
@@ -4741,8 +4745,8 @@ void CHIPBasicAttributeListAttributeCallback::CallbackFn(void * context,
VerifyOrReturn(env != nullptr, ChipLogError(Zcl, "Could not get JNI env"));
- std::unique_ptr cppCallback(
- reinterpret_cast(context), maybeDestroy);
+ std::unique_ptr cppCallback(
+ reinterpret_cast(context), maybeDestroy);
// It's valid for javaCallbackRef to be nullptr if the Java code passed in a null callback.
javaCallbackRef = cppCallback.get()->javaCallbackRef;
diff --git a/src/controller/java/zap-generated/CHIPReadCallbacks.h b/src/controller/java/zap-generated/CHIPReadCallbacks.h
index c3787ecc43b9fa..aa4dc9c77396ae 100644
--- a/src/controller/java/zap-generated/CHIPReadCallbacks.h
+++ b/src/controller/java/zap-generated/CHIPReadCallbacks.h
@@ -1899,19 +1899,20 @@ class CHIPActionsAttributeListAttributeCallback
bool keepAlive;
};
-class CHIPBasicVendorIDAttributeCallback : public chip::Callback::Callback
+class CHIPBasicInformationVendorIDAttributeCallback
+ : public chip::Callback::Callback
{
public:
- CHIPBasicVendorIDAttributeCallback(jobject javaCallback, bool keepAlive = false);
+ CHIPBasicInformationVendorIDAttributeCallback(jobject javaCallback, bool keepAlive = false);
- ~CHIPBasicVendorIDAttributeCallback();
+ ~CHIPBasicInformationVendorIDAttributeCallback();
- static void maybeDestroy(CHIPBasicVendorIDAttributeCallback * callback)
+ static void maybeDestroy(CHIPBasicInformationVendorIDAttributeCallback * callback)
{
if (!callback->keepAlive)
{
callback->Cancel();
- chip::Platform::Delete(callback);
+ chip::Platform::Delete(callback);
}
}
@@ -1919,7 +1920,7 @@ class CHIPBasicVendorIDAttributeCallback : public chip::Callback::Callback(context)->javaCallbackRef);
+ reinterpret_cast(context)->javaCallbackRef);
VerifyOrReturn(err == CHIP_NO_ERROR, ChipLogError(Zcl, "Error calling onSubscriptionEstablished: %s", ErrorStr(err)));
};
@@ -1928,20 +1929,20 @@ class CHIPBasicVendorIDAttributeCallback : public chip::Callback::Callback
+class CHIPBasicInformationGeneratedCommandListAttributeCallback
+ : public chip::Callback::Callback
{
public:
- CHIPBasicGeneratedCommandListAttributeCallback(jobject javaCallback, bool keepAlive = false);
+ CHIPBasicInformationGeneratedCommandListAttributeCallback(jobject javaCallback, bool keepAlive = false);
- ~CHIPBasicGeneratedCommandListAttributeCallback();
+ ~CHIPBasicInformationGeneratedCommandListAttributeCallback();
- static void maybeDestroy(CHIPBasicGeneratedCommandListAttributeCallback * callback)
+ static void maybeDestroy(CHIPBasicInformationGeneratedCommandListAttributeCallback * callback)
{
if (!callback->keepAlive)
{
callback->Cancel();
- chip::Platform::Delete(callback);
+ chip::Platform::Delete(callback);
}
}
@@ -1949,7 +1950,7 @@ class CHIPBasicGeneratedCommandListAttributeCallback
static void OnSubscriptionEstablished(void * context)
{
CHIP_ERROR err = chip::JniReferences::GetInstance().CallSubscriptionEstablished(
- reinterpret_cast(context)->javaCallbackRef);
+ reinterpret_cast(context)->javaCallbackRef);
VerifyOrReturn(err == CHIP_NO_ERROR, ChipLogError(Zcl, "Error calling onSubscriptionEstablished: %s", ErrorStr(err)));
};
@@ -1958,20 +1959,20 @@ class CHIPBasicGeneratedCommandListAttributeCallback
bool keepAlive;
};
-class CHIPBasicAcceptedCommandListAttributeCallback
- : public chip::Callback::Callback
+class CHIPBasicInformationAcceptedCommandListAttributeCallback
+ : public chip::Callback::Callback
{
public:
- CHIPBasicAcceptedCommandListAttributeCallback(jobject javaCallback, bool keepAlive = false);
+ CHIPBasicInformationAcceptedCommandListAttributeCallback(jobject javaCallback, bool keepAlive = false);
- ~CHIPBasicAcceptedCommandListAttributeCallback();
+ ~CHIPBasicInformationAcceptedCommandListAttributeCallback();
- static void maybeDestroy(CHIPBasicAcceptedCommandListAttributeCallback * callback)
+ static void maybeDestroy(CHIPBasicInformationAcceptedCommandListAttributeCallback * callback)
{
if (!callback->keepAlive)
{
callback->Cancel();
- chip::Platform::Delete(callback);
+ chip::Platform::Delete(callback);
}
}
@@ -1979,7 +1980,7 @@ class CHIPBasicAcceptedCommandListAttributeCallback
static void OnSubscriptionEstablished(void * context)
{
CHIP_ERROR err = chip::JniReferences::GetInstance().CallSubscriptionEstablished(
- reinterpret_cast(context)->javaCallbackRef);
+ reinterpret_cast(context)->javaCallbackRef);
VerifyOrReturn(err == CHIP_NO_ERROR, ChipLogError(Zcl, "Error calling onSubscriptionEstablished: %s", ErrorStr(err)));
};
@@ -1988,19 +1989,20 @@ class CHIPBasicAcceptedCommandListAttributeCallback
bool keepAlive;
};
-class CHIPBasicAttributeListAttributeCallback : public chip::Callback::Callback
+class CHIPBasicInformationAttributeListAttributeCallback
+ : public chip::Callback::Callback
{
public:
- CHIPBasicAttributeListAttributeCallback(jobject javaCallback, bool keepAlive = false);
+ CHIPBasicInformationAttributeListAttributeCallback(jobject javaCallback, bool keepAlive = false);
- ~CHIPBasicAttributeListAttributeCallback();
+ ~CHIPBasicInformationAttributeListAttributeCallback();
- static void maybeDestroy(CHIPBasicAttributeListAttributeCallback * callback)
+ static void maybeDestroy(CHIPBasicInformationAttributeListAttributeCallback * callback)
{
if (!callback->keepAlive)
{
callback->Cancel();
- chip::Platform::Delete(callback);
+ chip::Platform::Delete(callback);
}
}
@@ -2008,7 +2010,7 @@ class CHIPBasicAttributeListAttributeCallback : public chip::Callback::Callback<
static void OnSubscriptionEstablished(void * context)
{
CHIP_ERROR err = chip::JniReferences::GetInstance().CallSubscriptionEstablished(
- reinterpret_cast(context)->javaCallbackRef);
+ reinterpret_cast(context)->javaCallbackRef);
VerifyOrReturn(err == CHIP_NO_ERROR, ChipLogError(Zcl, "Error calling onSubscriptionEstablished: %s", ErrorStr(err)));
};
diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ChipClusters.java b/src/controller/java/zap-generated/chip/devicecontroller/ChipClusters.java
index a6200f343ce3e7..817a5bab1a9b20 100644
--- a/src/controller/java/zap-generated/chip/devicecontroller/ChipClusters.java
+++ b/src/controller/java/zap-generated/chip/devicecontroller/ChipClusters.java
@@ -3560,10 +3560,10 @@ private native void subscribeClusterRevisionAttribute(
long chipClusterPtr, IntegerAttributeCallback callback, int minInterval, int maxInterval);
}
- public static class BasicCluster extends BaseChipCluster {
+ public static class BasicInformationCluster extends BaseChipCluster {
public static final long CLUSTER_ID = 40L;
- public BasicCluster(long devicePtr, int endpointId) {
+ public BasicInformationCluster(long devicePtr, int endpointId) {
super(devicePtr, endpointId);
}
diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ChipEventStructs.java b/src/controller/java/zap-generated/chip/devicecontroller/ChipEventStructs.java
index c3068410dcb48a..e9c60d7c72cd17 100644
--- a/src/controller/java/zap-generated/chip/devicecontroller/ChipEventStructs.java
+++ b/src/controller/java/zap-generated/chip/devicecontroller/ChipEventStructs.java
@@ -176,17 +176,17 @@ public String toString() {
}
}
- public static class BasicClusterStartUpEvent {
+ public static class BasicInformationClusterStartUpEvent {
public Long softwareVersion;
- public BasicClusterStartUpEvent(Long softwareVersion) {
+ public BasicInformationClusterStartUpEvent(Long softwareVersion) {
this.softwareVersion = softwareVersion;
}
@Override
public String toString() {
StringBuilder output = new StringBuilder();
- output.append("BasicClusterStartUpEvent {\n");
+ output.append("BasicInformationClusterStartUpEvent {\n");
output.append("\tsoftwareVersion: ");
output.append(softwareVersion);
output.append("\n");
@@ -195,30 +195,30 @@ public String toString() {
}
}
- public static class BasicClusterShutDownEvent {
+ public static class BasicInformationClusterShutDownEvent {
- public BasicClusterShutDownEvent() {}
+ public BasicInformationClusterShutDownEvent() {}
@Override
public String toString() {
StringBuilder output = new StringBuilder();
- output.append("BasicClusterShutDownEvent {\n");
+ output.append("BasicInformationClusterShutDownEvent {\n");
output.append("}\n");
return output.toString();
}
}
- public static class BasicClusterLeaveEvent {
+ public static class BasicInformationClusterLeaveEvent {
public Integer fabricIndex;
- public BasicClusterLeaveEvent(Integer fabricIndex) {
+ public BasicInformationClusterLeaveEvent(Integer fabricIndex) {
this.fabricIndex = fabricIndex;
}
@Override
public String toString() {
StringBuilder output = new StringBuilder();
- output.append("BasicClusterLeaveEvent {\n");
+ output.append("BasicInformationClusterLeaveEvent {\n");
output.append("\tfabricIndex: ");
output.append(fabricIndex);
output.append("\n");
@@ -227,17 +227,17 @@ public String toString() {
}
}
- public static class BasicClusterReachableChangedEvent {
+ public static class BasicInformationClusterReachableChangedEvent {
public Boolean reachableNewValue;
- public BasicClusterReachableChangedEvent(Boolean reachableNewValue) {
+ public BasicInformationClusterReachableChangedEvent(Boolean reachableNewValue) {
this.reachableNewValue = reachableNewValue;
}
@Override
public String toString() {
StringBuilder output = new StringBuilder();
- output.append("BasicClusterReachableChangedEvent {\n");
+ output.append("BasicInformationClusterReachableChangedEvent {\n");
output.append("\treachableNewValue: ");
output.append(reachableNewValue);
output.append("\n");
diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ChipIdLookup.java b/src/controller/java/zap-generated/chip/devicecontroller/ChipIdLookup.java
index 46be764d7d6958..8538488775242f 100644
--- a/src/controller/java/zap-generated/chip/devicecontroller/ChipIdLookup.java
+++ b/src/controller/java/zap-generated/chip/devicecontroller/ChipIdLookup.java
@@ -59,7 +59,7 @@ public static String clusterIdToName(long clusterId) {
return "Actions";
}
if (clusterId == 40L) {
- return "Basic";
+ return "BasicInformation";
}
if (clusterId == 41L) {
return "OtaSoftwareUpdateProvider";
diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ChipStructs.java b/src/controller/java/zap-generated/chip/devicecontroller/ChipStructs.java
index 19873b04162950..5c721f652b3e45 100644
--- a/src/controller/java/zap-generated/chip/devicecontroller/ChipStructs.java
+++ b/src/controller/java/zap-generated/chip/devicecontroller/ChipStructs.java
@@ -325,11 +325,11 @@ public String toString() {
}
}
- public static class BasicClusterCapabilityMinimaStruct {
+ public static class BasicInformationClusterCapabilityMinimaStruct {
public Integer caseSessionsPerFabric;
public Integer subscriptionsPerFabric;
- public BasicClusterCapabilityMinimaStruct(
+ public BasicInformationClusterCapabilityMinimaStruct(
Integer caseSessionsPerFabric, Integer subscriptionsPerFabric) {
this.caseSessionsPerFabric = caseSessionsPerFabric;
this.subscriptionsPerFabric = subscriptionsPerFabric;
@@ -338,7 +338,7 @@ public BasicClusterCapabilityMinimaStruct(
@Override
public String toString() {
StringBuilder output = new StringBuilder();
- output.append("BasicClusterCapabilityMinimaStruct {\n");
+ output.append("BasicInformationClusterCapabilityMinimaStruct {\n");
output.append("\tcaseSessionsPerFabric: ");
output.append(caseSessionsPerFabric);
output.append("\n");
diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java b/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java
index 9a357cb064a1a1..c3a06e9b6813c4 100644
--- a/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java
+++ b/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java
@@ -1523,8 +1523,8 @@ public void onError(Exception ex) {
}
}
- public static class DelegatedBasicClusterGeneratedCommandListAttributeCallback
- implements ChipClusters.BasicCluster.GeneratedCommandListAttributeCallback,
+ public static class DelegatedBasicInformationClusterGeneratedCommandListAttributeCallback
+ implements ChipClusters.BasicInformationCluster.GeneratedCommandListAttributeCallback,
DelegatedClusterCallback {
private ClusterCommandCallback callback;
@@ -1547,8 +1547,8 @@ public void onError(Exception ex) {
}
}
- public static class DelegatedBasicClusterAcceptedCommandListAttributeCallback
- implements ChipClusters.BasicCluster.AcceptedCommandListAttributeCallback,
+ public static class DelegatedBasicInformationClusterAcceptedCommandListAttributeCallback
+ implements ChipClusters.BasicInformationCluster.AcceptedCommandListAttributeCallback,
DelegatedClusterCallback {
private ClusterCommandCallback callback;
@@ -1571,8 +1571,8 @@ public void onError(Exception ex) {
}
}
- public static class DelegatedBasicClusterAttributeListAttributeCallback
- implements ChipClusters.BasicCluster.AttributeListAttributeCallback,
+ public static class DelegatedBasicInformationClusterAttributeListAttributeCallback
+ implements ChipClusters.BasicInformationCluster.AttributeListAttributeCallback,
DelegatedClusterCallback {
private ClusterCommandCallback callback;
@@ -7197,10 +7197,11 @@ public Map initializeClusterMap() {
new ClusterInfo(
(ptr, endpointId) -> new ChipClusters.ActionsCluster(ptr, endpointId), new HashMap<>());
clusterMap.put("actions", actionsClusterInfo);
- ClusterInfo basicClusterInfo =
+ ClusterInfo basicInformationClusterInfo =
new ClusterInfo(
- (ptr, endpointId) -> new ChipClusters.BasicCluster(ptr, endpointId), new HashMap<>());
- clusterMap.put("basic", basicClusterInfo);
+ (ptr, endpointId) -> new ChipClusters.BasicInformationCluster(ptr, endpointId),
+ new HashMap<>());
+ clusterMap.put("basicInformation", basicInformationClusterInfo);
ClusterInfo otaSoftwareUpdateProviderClusterInfo =
new ClusterInfo(
(ptr, endpointId) -> new ChipClusters.OtaSoftwareUpdateProviderCluster(ptr, endpointId),
@@ -7489,7 +7490,7 @@ public void combineCommand(
destination.get("binding").combineCommands(source.get("binding"));
destination.get("accessControl").combineCommands(source.get("accessControl"));
destination.get("actions").combineCommands(source.get("actions"));
- destination.get("basic").combineCommands(source.get("basic"));
+ destination.get("basicInformation").combineCommands(source.get("basicInformation"));
destination
.get("otaSoftwareUpdateProvider")
.combineCommands(source.get("otaSoftwareUpdateProvider"));
@@ -8598,8 +8599,8 @@ public Map> getCommandMap() {
actionsClusterInteractionInfoMap.put(
"disableActionWithDuration", actionsdisableActionWithDurationInteractionInfo);
commandMap.put("actions", actionsClusterInteractionInfoMap);
- Map basicClusterInteractionInfoMap = new LinkedHashMap<>();
- commandMap.put("basic", basicClusterInteractionInfoMap);
+ Map basicInformationClusterInteractionInfoMap = new LinkedHashMap<>();
+ commandMap.put("basicInformation", basicInformationClusterInteractionInfoMap);
Map otaSoftwareUpdateProviderClusterInteractionInfoMap =
new LinkedHashMap<>();
Map otaSoftwareUpdateProviderqueryImageCommandParams =
diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ClusterReadMapping.java b/src/controller/java/zap-generated/chip/devicecontroller/ClusterReadMapping.java
index 49837fd2efbd96..679955f977665c 100644
--- a/src/controller/java/zap-generated/chip/devicecontroller/ClusterReadMapping.java
+++ b/src/controller/java/zap-generated/chip/devicecontroller/ClusterReadMapping.java
@@ -1398,308 +1398,323 @@ public Map> getReadAttributeMap() {
readActionsInteractionInfo.put(
"readClusterRevisionAttribute", readActionsClusterRevisionAttributeInteractionInfo);
readAttributeMap.put("actions", readActionsInteractionInfo);
- Map readBasicInteractionInfo = new LinkedHashMap<>();
- Map readBasicDataModelRevisionCommandParams =
+ Map readBasicInformationInteractionInfo = new LinkedHashMap<>();
+ Map readBasicInformationDataModelRevisionCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicDataModelRevisionAttributeInteractionInfo =
+ InteractionInfo readBasicInformationDataModelRevisionAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readDataModelRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(),
- readBasicDataModelRevisionCommandParams);
- readBasicInteractionInfo.put(
- "readDataModelRevisionAttribute", readBasicDataModelRevisionAttributeInteractionInfo);
- Map readBasicVendorNameCommandParams =
+ readBasicInformationDataModelRevisionCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readDataModelRevisionAttribute",
+ readBasicInformationDataModelRevisionAttributeInteractionInfo);
+ Map readBasicInformationVendorNameCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicVendorNameAttributeInteractionInfo =
+ InteractionInfo readBasicInformationVendorNameAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readVendorNameAttribute((ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicVendorNameCommandParams);
- readBasicInteractionInfo.put(
- "readVendorNameAttribute", readBasicVendorNameAttributeInteractionInfo);
- Map readBasicVendorIDCommandParams =
+ readBasicInformationVendorNameCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readVendorNameAttribute", readBasicInformationVendorNameAttributeInteractionInfo);
+ Map readBasicInformationVendorIDCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicVendorIDAttributeInteractionInfo =
+ InteractionInfo readBasicInformationVendorIDAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readVendorIDAttribute(
- (ChipClusters.BasicCluster.VendorIDAttributeCallback) callback);
+ (ChipClusters.BasicInformationCluster.VendorIDAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(),
- readBasicVendorIDCommandParams);
- readBasicInteractionInfo.put(
- "readVendorIDAttribute", readBasicVendorIDAttributeInteractionInfo);
- Map readBasicProductNameCommandParams =
+ readBasicInformationVendorIDCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readVendorIDAttribute", readBasicInformationVendorIDAttributeInteractionInfo);
+ Map readBasicInformationProductNameCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicProductNameAttributeInteractionInfo =
+ InteractionInfo readBasicInformationProductNameAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readProductNameAttribute((ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicProductNameCommandParams);
- readBasicInteractionInfo.put(
- "readProductNameAttribute", readBasicProductNameAttributeInteractionInfo);
- Map readBasicProductIDCommandParams =
+ readBasicInformationProductNameCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readProductNameAttribute", readBasicInformationProductNameAttributeInteractionInfo);
+ Map readBasicInformationProductIDCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicProductIDAttributeInteractionInfo =
+ InteractionInfo readBasicInformationProductIDAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readProductIDAttribute((ChipClusters.IntegerAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(),
- readBasicProductIDCommandParams);
- readBasicInteractionInfo.put(
- "readProductIDAttribute", readBasicProductIDAttributeInteractionInfo);
- Map readBasicNodeLabelCommandParams =
+ readBasicInformationProductIDCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readProductIDAttribute", readBasicInformationProductIDAttributeInteractionInfo);
+ Map readBasicInformationNodeLabelCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicNodeLabelAttributeInteractionInfo =
+ InteractionInfo readBasicInformationNodeLabelAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readNodeLabelAttribute((ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicNodeLabelCommandParams);
- readBasicInteractionInfo.put(
- "readNodeLabelAttribute", readBasicNodeLabelAttributeInteractionInfo);
- Map readBasicLocationCommandParams =
+ readBasicInformationNodeLabelCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readNodeLabelAttribute", readBasicInformationNodeLabelAttributeInteractionInfo);
+ Map readBasicInformationLocationCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicLocationAttributeInteractionInfo =
+ InteractionInfo readBasicInformationLocationAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readLocationAttribute((ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicLocationCommandParams);
- readBasicInteractionInfo.put(
- "readLocationAttribute", readBasicLocationAttributeInteractionInfo);
- Map readBasicHardwareVersionCommandParams =
+ readBasicInformationLocationCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readLocationAttribute", readBasicInformationLocationAttributeInteractionInfo);
+ Map readBasicInformationHardwareVersionCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicHardwareVersionAttributeInteractionInfo =
+ InteractionInfo readBasicInformationHardwareVersionAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readHardwareVersionAttribute((ChipClusters.IntegerAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(),
- readBasicHardwareVersionCommandParams);
- readBasicInteractionInfo.put(
- "readHardwareVersionAttribute", readBasicHardwareVersionAttributeInteractionInfo);
- Map readBasicHardwareVersionStringCommandParams =
+ readBasicInformationHardwareVersionCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readHardwareVersionAttribute",
+ readBasicInformationHardwareVersionAttributeInteractionInfo);
+ Map readBasicInformationHardwareVersionStringCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicHardwareVersionStringAttributeInteractionInfo =
+ InteractionInfo readBasicInformationHardwareVersionStringAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readHardwareVersionStringAttribute(
(ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicHardwareVersionStringCommandParams);
- readBasicInteractionInfo.put(
+ readBasicInformationHardwareVersionStringCommandParams);
+ readBasicInformationInteractionInfo.put(
"readHardwareVersionStringAttribute",
- readBasicHardwareVersionStringAttributeInteractionInfo);
- Map readBasicSoftwareVersionCommandParams =
+ readBasicInformationHardwareVersionStringAttributeInteractionInfo);
+ Map readBasicInformationSoftwareVersionCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicSoftwareVersionAttributeInteractionInfo =
+ InteractionInfo readBasicInformationSoftwareVersionAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readSoftwareVersionAttribute((ChipClusters.LongAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedLongAttributeCallback(),
- readBasicSoftwareVersionCommandParams);
- readBasicInteractionInfo.put(
- "readSoftwareVersionAttribute", readBasicSoftwareVersionAttributeInteractionInfo);
- Map readBasicSoftwareVersionStringCommandParams =
+ readBasicInformationSoftwareVersionCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readSoftwareVersionAttribute",
+ readBasicInformationSoftwareVersionAttributeInteractionInfo);
+ Map readBasicInformationSoftwareVersionStringCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicSoftwareVersionStringAttributeInteractionInfo =
+ InteractionInfo readBasicInformationSoftwareVersionStringAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readSoftwareVersionStringAttribute(
(ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicSoftwareVersionStringCommandParams);
- readBasicInteractionInfo.put(
+ readBasicInformationSoftwareVersionStringCommandParams);
+ readBasicInformationInteractionInfo.put(
"readSoftwareVersionStringAttribute",
- readBasicSoftwareVersionStringAttributeInteractionInfo);
- Map readBasicManufacturingDateCommandParams =
+ readBasicInformationSoftwareVersionStringAttributeInteractionInfo);
+ Map readBasicInformationManufacturingDateCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicManufacturingDateAttributeInteractionInfo =
+ InteractionInfo readBasicInformationManufacturingDateAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readManufacturingDateAttribute(
(ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicManufacturingDateCommandParams);
- readBasicInteractionInfo.put(
- "readManufacturingDateAttribute", readBasicManufacturingDateAttributeInteractionInfo);
- Map readBasicPartNumberCommandParams =
+ readBasicInformationManufacturingDateCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readManufacturingDateAttribute",
+ readBasicInformationManufacturingDateAttributeInteractionInfo);
+ Map readBasicInformationPartNumberCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicPartNumberAttributeInteractionInfo =
+ InteractionInfo readBasicInformationPartNumberAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readPartNumberAttribute((ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicPartNumberCommandParams);
- readBasicInteractionInfo.put(
- "readPartNumberAttribute", readBasicPartNumberAttributeInteractionInfo);
- Map readBasicProductURLCommandParams =
+ readBasicInformationPartNumberCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readPartNumberAttribute", readBasicInformationPartNumberAttributeInteractionInfo);
+ Map readBasicInformationProductURLCommandParams =
new LinkedHashMap();
- InteractionInfo readBasicProductURLAttributeInteractionInfo =
+ InteractionInfo readBasicInformationProductURLAttributeInteractionInfo =
new InteractionInfo(
(cluster, callback, commandArguments) -> {
- ((ChipClusters.BasicCluster) cluster)
+ ((ChipClusters.BasicInformationCluster) cluster)
.readProductURLAttribute((ChipClusters.CharStringAttributeCallback) callback);
},
() -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(),
- readBasicProductURLCommandParams);
- readBasicInteractionInfo.put(
- "readProductURLAttribute", readBasicProductURLAttributeInteractionInfo);
- Map readBasicProductLabelCommandParams =
+ readBasicInformationProductURLCommandParams);
+ readBasicInformationInteractionInfo.put(
+ "readProductURLAttribute", readBasicInformationProductURLAttributeInteractionInfo);
+ Map