Skip to content

Commit 39b2fe1

Browse files
authored
MATTER-5562: Audit Docs and Patch High-Impact Issues (#33)
* docs cleanup * address comments * resolve PR comments
1 parent 844e1b8 commit 39b2fe1

File tree

18 files changed

+17
-156
lines changed

18 files changed

+17
-156
lines changed

sld248-matter-overview-guides/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ The Overview pages offer a general review of Matter topics including:
88
- [Matter Serial Port Communication (Matter Shell)](serial-port-communications.md)
99
- [Matter SLC CLI Setup and Build Instructions](matter-slc-cli.md)
1010
- [Matter Solutions](matter-solutions.md)
11-
- [Code Size Savings](code-size-savings.md)
12-
- [SMG to Matter Extension (SLC/Simplicity Studio) Project Migration Guide](matter-smg-migration-guide.md)
11+
- [Code Size Savings](code-size-savings.md)

sld248-matter-overview-guides/matter-slc-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
**Silicon Labs Configurator (SLC)**: SLC offers command-line access to application configuration and generation functions. [Software Project Generation and Configuration with SLC-CLI](https://docs.silabs.com/simplicity-studio-5-users-guide/latest/ss-5-users-guide-tools-slc-cli/) provides instructions on downloading and using the SLC-CLI tool.
44

5-
Instructions on how to build Matter projects using SLC CLI can be found in the README section of [Matter Extension Repo](https://github.com/SiliconLabsSoftware/matter_extension/tree/release_2.5-1.4)
5+
Instructions on how to build Matter projects using SLC CLI can be found in the README section of [Matter Extension Repo](https://github.com/SiliconLabsSoftware/matter_extension).

sld248-matter-overview-guides/matter-smg-migration-guide.md

Lines changed: 0 additions & 86 deletions
This file was deleted.

sld250-matter-references/custom-matter-device.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ $ mattertool levelcontrol move-to-level {desired_level} 0 1 1 {node_ID} 1
120120
$ mattertool levelcontrol read current-level 1 1 // Returns 10
121121
```
122122

123-
For more information on running a Silicon Labs lighting example on a Thunderboard Sense 2 you can view documentation in the Silicon Labs Matter GitHub Repo.
124-
125123
## Defining a Custom Cluster
126124

127125
Create an XML file with custom cluster definitions. For an example, see [Sample MEI Cluster](https://github.com/project-chip/connectedhomeip/blob/master/src/app/zap-templates/zcl/data-model/chip/sample-mei-cluster.xml). In ZAP click 'Extensions' and add the XML file. The newly defined cluster can then be enabled in any endpoint under the domain for which it was defined (for example General), its Commands and Attributes can be managed like those of any other cluster.

sld250-matter-references/flash-silabs-device.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# How to Flash a Silicon Labs Device
22

3-
Once you have an image built, you can flash it onto your EFR or SiWx917 device (either a development board or the Thunderboard Sense 2) over USB connected to your development machine. This can be done using either Simplicity Studio or the standalone Simplicity Commander.
3+
Once you have an image built, you can flash it onto your EFR or SiWx917 device over USB connected to your development machine. This can be done using either Simplicity Studio or the standalone Simplicity Commander.
44

55
## Simplicity Studio
66

sld250-matter-references/matter-ep.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Matter project will not have been created inside Simplicity Studio.
1111

1212
Complete documentation on using the Simplicity Studio Energy Profiler is
1313
provided in the
14-
[Simplicity Studio 5 Energy Profiler User's Guide](https://docs.silabs.com/simplicity-studio-5-users-guide/1.0/using-the-tools/energy-profiler/)
14+
[Simplicity Studio 5 Energy Profiler User's Guide](https://docs.silabs.com/simplicity-studio-5-users-guide/latest/ss-5-users-guide-tools-energy-profiler/).

sld250-matter-references/matter-gatt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ follows:
4141

4242
Copy the BLE GATT db header files out of your project and into the Matter
4343
project. BLE GATT db header and `.c` files are located in
44-
`./src/platform/EFR32` in the Silicon Labs Matter GitHub repo.
44+
`./src/platform/silabs/efr32` in the CSA Matter GitHub Repo.

sld250-matter-references/versioning-release-maintenance.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Matter Versioning and Release Maintenance
22

3-
**Silicon Labs Matter GitHub is being phased out in favor of using the Matter SiSDK Extension that is available through Simplicity Studio and standalone via SLC-CLI.**
4-
53
## Versioning Scheme
64

75
- **FORMAT: vMAJOR.MINOR.PATCH\_VERSION-PRE\_RELEASE**

sld251-matter-thread/build-flash-mad.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ The Matter Accessory Device, such as the lighting-app, is the actual Matter devi
66

77
Use one of the following options to get the required image to flash the MAD:
88

9-
1. Use the pre-built image file from either Simplicity Studio or Silicon Labs Matter GitHub.
10-
2. Build the image file from Simplicity Studio or out of the Silicon Labs Matter GitHub `matter` repository.
9+
1. Use the pre-built image file from either Simplicity Studio or [Matter Artifacts page](/matter/{build-docspace-version}/matter-prerequisites/matter-artifacts).
10+
2. Build the image file from Simplicity Studio or out of the CSA Matter GitHub repository.
1111

1212
### Using the Pre-Built Image File
1313

@@ -33,10 +33,8 @@ If you are coming from Simplicity Studio, you may have already installed the dem
3333

3434
### Building the Matter Image File
3535

36-
There are two ways to build a Matter Accessory Device image file. You can build it using the Silicon Labs Matter GitHub Repo or you can build it using Simplicity Studio. The entire build process for Simplicity Studio is covered in the [Matter Over Thread Quick Start Guide](/matter/{build-docspace-version}/matter-light-switch-example/02-thread-light-switch-example).
37-
There are two ways to build a Matter Accessory Device image file. You can build it using the Silicon Labs Matter GitHub Repo or you can build it using Simplicity Studio. The entire build process for Simplicity Studio is covered in the [Matter Over Thread Quick Start Guide](/matter/{build-docspace-version}/matter-light-switch-example/02-thread-light-switch-example).
36+
The entire build process for Simplicity Studio is covered in the [Matter Over Thread Quick Start Guide](/matter/{build-docspace-version}/matter-light-switch-example/02-thread-light-switch-example).
3837

39-
- [Build Using the Matter GitHub Repo](https://github.com/project-chip/connectedhomeip/tree/master/examples/lighting-app/silabs)
4038
- [Build Using Simplicity Studio](/matter/{build-docspace-version}/matter-light-switch-example/02-thread-light-switch-example)
4139

4240
## Step 2: Flash the Matter Accessory Device

sld251-matter-thread/matter-rcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# How to Build and Flash the Radio Co-Processor (RCP)
22

3-
The Radio Co-Processor is a 15.4 stack image flashed onto a Silicon Labs development kit or Thunderboard Sense 2. The 15.4 stack on the development kit communicates with the higher layers of the Thread stack running on the Raspberry Pi over a USB connection.
3+
The Radio Co-Processor is a 15.4 stack image flashed onto a Silicon Labs development kit. The 15.4 stack on the development kit communicates with the higher layers of the Thread stack running on the Raspberry Pi over a USB connection.
44

55
A complete list of supported hardware for the RCP is provided on the [Matter Hardware Requirements](/matter/{build-docspace-version}/matter-prerequisites/hardware-requirements) page.
66

0 commit comments

Comments
 (0)