Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
fb5d96a
Add info on the 2.2.2 release
selissia Aug 12, 2025
fa3a022
update cluster.md to correct Cluster header file link
silabs-akosj Aug 19, 2025
17e53a9
Matter App Cluster Logic Addition
silabs-danielV Jul 24, 2025
9146a79
Apps feedback
silabs-danielV Aug 20, 2025
ff37a83
More edits
silabs-danielV Aug 20, 2025
f107e23
Addressing Apps feedback
silabs-danielV Aug 22, 2025
5d0fe2b
Apply suggestions from code review
silabs-danielV Aug 28, 2025
ee2b42b
Link the Code Savings Guide
selissia Sep 2, 2025
e64280c
Mention the doccurator branches
selissia Aug 22, 2025
fc9cd9c
Mention the doccurator branches in the PR template
selissia Aug 22, 2025
902c77c
Update CONTRIBUTING.md
silabs-vm Sep 16, 2025
b566d99
Update CONTRIBUTING.md
silabs-vm Sep 16, 2025
3a71c54
Rename ZclCallbacks.cpp to DataModelCallbacks.cpp
selissia Sep 23, 2025
605f581
Adding the note for the 917SoC matter cli
chirag-silabs Sep 23, 2025
f294c51
Update sld248-matter-overview-guides/serial-port-communications.md
chirag-silabs Sep 23, 2025
4975f1b
RS9116 deprecation documentation
sabollim-silabs Sep 19, 2025
b6b1d67
Apply suggestions from code review
arun-silabs Sep 23, 2025
6668ad6
Revert "use pull_request_target"
arun-silabs Sep 23, 2025
6f61ffe
Revert "use pull_request"
arun-silabs Sep 23, 2025
fc9059c
Revert "enable CLA"
arun-silabs Sep 23, 2025
0318c60
Apply copilot suggestions
arun-silabs Sep 23, 2025
26081ca
MATTER AWS Documentation
sabollim-silabs Sep 22, 2025
33e1ff5
Apply suggestions from code review
arun-silabs Sep 22, 2025
7142bbe
Apply suggestions from code review
arun-silabs Sep 24, 2025
e421552
Add the new features for the 2.7.0 Release
selissia Sep 24, 2025
90e6f60
Update version strings to 2.7.0
selissia Sep 24, 2025
48c386d
Updates to New Features
selissia Sep 25, 2025
9fe5a6d
Updating the MatterHub link to use the 2.6.0 version
selissia Sep 26, 2025
4ee45b3
Add missing image in Matter AWS documentation
arun-silabs Sep 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ As a contributor, you'll want to be familiar with the Silicon Labs tooling:

Read the Silicon Labs [coding guidelines](https://github.com/SiliconLabsSoftware/agreements-and-guidelines/blob/main/coding_standard.md).
## Git Setup
We need to know who you are, and how to contact you. Please ass the following information to your Git installation:
We need to know who you are, and how to contact you. Please add the following information to your Git installation:
```
git config --global user.name "FirstName LastName"
git config --global user.email "[email protected]"
Expand Down Expand Up @@ -92,7 +92,7 @@ Please follow the official GitHub [guide](https://opensource.guide/how-to-contri
When you created an issue and based on the discussion you want to contribute with your source-code.
Branching is disabled on the public Silicon Labs repositories. You need to fork your own repo first.
Please follow the official GitHub [guide](https://docs.github.com/en/get-started/exploring-projects-on-github/contributing-to-a-project).
You can create your branch on your own forked repo now.
You can create your branch on your own forked repo now. Pull requests must be merged into the doccurator branches corresponding to the Matter release the change applies to (for example, `doccurator/2.6.2`.

### Branch Naming Convention
Branch naming shall follow the following template: *IssueNumber-issue-title-goes-here*
Expand All @@ -115,7 +115,7 @@ Another line of really good description
```

## Pull Request Guideline
Okay you finished your work committed all your changes to your branch. Time to create a pull request.
Okay you finished your work committed all your changes to your branch. Time to create a pull request. Pull requests must be merged into the doccurator branches corresponding to the Matter release the change applies to (for example, `doccurator/2.6.2`).
Refer to the general pull request [guideline](https://opensource.guide/how-to-contribute/#opening-a-pull-request) from GitHub.
What to consider when raising a Pull Request:
1. **Pull Request Naming**
Expand Down
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Description
<!-- Provide a brief description of the changes in this pull request. -->
<!-- Note that the pull requests must be merged into the doccurator branches corresponding to the Matter release the change applies to, for example doccurator/2.6.2 . -->

## Related Issue
<!-- If this pull request addresses an issue, link to it here. -->
Expand Down
25 changes: 12 additions & 13 deletions .github/workflows/01-CLA-Assistant.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
name: CLA validation
name: 01-CLA-Assistant
## This workflow is used for public repositories

on:
issue_comment:
types: [created]
pull_request_target:
types: [opened, synchronize, reopened]
workflow_dispatch:
#issue_comment:
# types: [created]
#pull_request_target:
# types: [opened,closed,synchronize,reopened]

permissions:
actions: write
contents: read
contents: read # this can be 'read' if the signatures are in remote repository
pull-requests: write
statuses: write

jobs:
CLAAssistant:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Create CLA Assistant Lite bot token
uses: actions/create-github-app-token@v2
id: app-token
with:
app-id: ${{ secrets.SILABSIN_CLA_BOT_APP_ID }}
private-key: ${{ secrets.SILABSIN_CLA_BOT_APP_PRIVATE_KEY }}
app-id: ${{ secrets.GH_APP_ID }}
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
owner: SiliconLabsInternal
repositories: contributor-license-agreements

- name: Mask generated token
run: echo "::add-mask::${{ steps.app-token.outputs.token }}"

- name: "CLA Assistant"
if: ${{ contains(github.event.comment.body, 'I have read the CLA Document and I hereby sign the CLA') }} || github.event_name == 'pull_request_target'
uses: SiliconLabsSoftware/action-cla-assistant@silabs_flavour_v2
Expand All @@ -43,4 +42,4 @@ jobs:
remote-organization-name: "SiliconLabsInternal"
remote-repository-name: "contributor-license-agreements"
create-file-commit-message: "Created the CLA database file. CLA Assistant Lite bot created this file."
signed-commit-message: "$contributorName has signed the CLA in $owner/$repo#$pullRequestNo"
signed-commit-message: "$contributorName has signed the CLA in $owner/$repo#$pullRequestNo"
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Matter hub/chip-tool are ready and working. Keep the PuTTY session open for the

4. Open the Example Projects and Demos tab, select the **Matter** filter and enter "_Wi-Fi_" in **Filter on keywords**.

5. Select the _Matter - SoC Lighting over Wi-Fi_ example for RS9116, click **Create**, rename the project if you wish, and click **Finish**.
5. Select the _Matter - SoC Lighting over Wi-Fi_ example for SiWx917, click **Create**, rename the project if you wish, and click **Finish**.

6. Once the project is created, the perspective changes to the Simplicity IDE perspective. In the Project Explorer view, right-click the project and select _Build Project_.

Expand Down
4 changes: 4 additions & 0 deletions sld246-matter-faq/wifi-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ Where `mySSID` is **your AP's SSID** and `mypassword` is **your AP's password**.

### 3. WLAN connection fails from RS9116 during commissioning when channel 13 is selected on the AP

**Note:** RS9116 is deprecated and no longer supported on Matter.

The required channel becomes available for connection when the WLAN connection region is configured during compilation to one that supports the channel, such as for Japan for channel 13.

In order to use the desired channel, before building, make sure the WLAN connection region is configured correctly by reviewing/modifying the following lines in **/examples/platform/silabs/efr32/rs911x/rsi_wlan_config.h**:
Expand Down Expand Up @@ -168,6 +170,8 @@ Disable QR Code and enable CHIP Logging:

### 11. MG24 device sometimes loses its connection to Ozone during OTA Update with RS9116

**Note:** RS9116 is deprecated and no longer supported on Matter.

While performing an OTA Update with the EFR32MG24 + RS9116 device combination, when the device is reset and bootloading begins with the new image, the Ozone Debugger sometimes loses its connection.

There are two possible workarounds to this:
Expand Down
1 change: 1 addition & 0 deletions sld247-matter-overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ The following boards are supported for the Matter over Wi-Fi demos and developme
- MG24 with WSTK: [xG24-PK6010A](https://www.silabs.com/development-tools/wireless/efr32xg24-pro-kit-20-dbm?tab=overview)
- **Wi-Fi NCP Dev Kits & boards**
- **RS9116**
(**Note:** RS9116 is deprecated and no longer supported on Matter.)
- SB-EVK1 / Single Band Wi-Fi Development Kit / 2.4GHz
- [RS9116X-SB-EVK1](https://www.silabs.com/development-tools/wireless/wi-fi/rs9116x-sb-evk-development-kit)
- SB-EVK2 / Single Band Wi-Fi Development Kit / 2.4GHz
Expand Down
2 changes: 2 additions & 0 deletions sld248-matter-overview-guides/serial-port-communications.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,5 @@ To run matter shell on the Silicon Labs Platform, refer to the [Software Require
./chip-tool doorlock read-event door-lock-alarm "node_id" "endpoint"

**Note**: Type **help** in matterCli terminal for more information about supported features.

**Note**: For 917SoC ICD-enabled devices, only five UULP pins are supported. As a result, the Matter shell is not functional with sleepy applications because they are not mapped to UULP pins. To enable the Matter shell for sleepy 917SoC devices, the P37 pin must be pulled up. Additionally, boards BRD2708A, BRD2911A, and BRD4343A have only three UULP GPIO pins, which prevents the shell from functioning. To enable the shell on these boards, users must repurpose existing UULP GPIO pins.
18 changes: 10 additions & 8 deletions sld249-matter-prerequisites/matter-artifacts.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This page provides links to pre-built software image "artifacts" that can be use

Images for the items listed below are available under the "Assets" section at the bottom of this page:

https://github.com/SiliconLabs/matter_extension/releases/tag/v2.6.1
https://github.com/SiliconLabs/matter_extension/releases/tag/v2.7.0

## Matter Hub Raspberry Pi Image

Expand All @@ -16,25 +16,27 @@ https://www.silabs.com/documents/public/software/SilabsMatterPi_2.6.0-1.4-extens

The Radio Co-Processor firmware is used to turn an EFR into an RCP that can be used with a Raspberry Pi to allow the Raspberry Pi's Open Thread Border Router to access the Thread network. Radio Co-Processor (RCP) images are available in the Assets section of this page:

https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/ot-rcp-binaries-2.6.1-1.4.zip
https://github.com/SiliconLabs/matter_extension/releases/download/v2.7.0/ot-rcp-binaries-2.7.0-1.4.zip

## Matter Accessory Device Images

The Matter Accessory Device Images are used to turn an EFR into a Matter device. These are pre-built binary images for the Matter Demo. Matter Accessory Device Images are located in the Assets section of this page:

https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/matter-accessory-device-images_2.6.1-1.4.zip
https://github.com/SiliconLabs/matter_extension/releases/download/v2.7.0/matter-accessory-device-images_2.7.0-1.4.zip

## Matter Bootloader Binaries

All Silicon Labs board supporting Matter require that a bootloader binary is flashed to the device along with the application image. Bootloader binaries for all of the Matter supported devices are available here:

https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/bootloader_binaries_matter_extension_v2.6.1-1.4.zip
https://github.com/SiliconLabs/matter_extension/releases/download/v2.7.0/bootloader_binaries_matter_extension_v2.7.0-1.4.zip

## RS9116 Firmware

**Note**: RS9116 is deprecated and no longer supported on Matter.

The RS9116 firmware (`rs9116_firmware_files_with_rev.zip`) is used to update the RS9116 which can be found in the Assets section of this page:

https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/rs9116_firmware_files_with_rev_2.6.1-1.4.zip
https://github.com/SiliconLabs/matter_extension/releases/download/v2.7.0/rs9116_firmware_files_with_rev_2.7.0-1.4.zip

**Note**:
RS9116 chip/module needs to be flashed with proper firmware as mentioned below:
Expand All @@ -46,7 +48,7 @@ RS9116 chip/module needs to be flashed with proper firmware as mentioned below:

The SiWx917 firmware(SiWx917_firmware_files.zip) is used to update the SiWN917 NCP and SiWG917 SOC which can be found in the Assets section of this page:

https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/SiWx917_firmware_files_2.6.1-1.4.zip
https://github.com/SiliconLabs/matter_extension/releases/download/v2.7.0/SiWx917_firmware_files_2.7.0-1.4.zip

**Note**:

Expand All @@ -64,12 +66,12 @@ https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/SiWx917

The SiWx917 RCP folder (siwx917_rcp_files.zip) contains the Matter Linux all-cluster-app, which can be run on a Raspberry Pi, and the wfx-sdio-overlay.dts file, a Device Tree Source file used to configure the SDIO interface on the Raspberry Pi to detect and communicate with the SiWx917 RCP.

https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/siwx917_rcp_files.zip
https://github.com/SiliconLabs/matter_extension/releases/download/v2.7.0/siwx917_rcp_files.zip

## SiWx917 SoC Configuration Files For JLink RTT Logging

To check device logs on JLink RTT for the Matter Application on the SiWx917 SoC, the **JLink RTT** must be configured for the SiWx917 SoC device by following the instructions on the [JLink RTT SOC Support](/matter/{build-docspace-version}/matter-wifi-enabling-features/jlink-soc-setup) for SiWx917 SoC.

The [JLinkDevices.xml](https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/JLinkDevices.xml.zip) and [RS9117_SF_4MB_42bsp.elf](https://github.com/SiliconLabs/matter_extension/releases/download/v2.6.1/RS9117_SF_4MB_42bsp.elf.zip) files referenced in the instructions may be found in the Assets section of this page.
The [JLinkDevices.xml](https://github.com/SiliconLabs/matter_extension/releases/download/v2.7.0/JLinkDevices.xml.zip) and [RS9117_SF_4MB_42bsp.elf](https://github.com/SiliconLabs/matter_extension/releases/download/v2.7.0/RS9117_SF_4MB_42bsp.elf.zip) files referenced in the instructions may be found in the Assets section of this page.

>**Note**: For EFR32MG2x devices, JLink RTT Logging support is already enabled.
4 changes: 4 additions & 0 deletions sld249-matter-prerequisites/software-requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,14 @@ Below are the software tools both optional and required for developing Matter ov

2. [WiSeConnect SDK v2.x for RS9116 NCP](/matter/{build-docspace-version}/matter-wifi-getting-started-example/software-installation#installation-of-wiseconnect-sdk-v2x-or-v3x-extension), which can be installed as part of the Simplicity Studio tool installation.

**Note:** RS9116 is deprecated and no longer supported on Matter.

3. [WiSeConnect SDK v3.x for SiWx917 NCP](/matter/{build-docspace-version}/matter-wifi-getting-started-example/software-installation#installation-of-wiseconnect-sdk-v2x-or-v3x-extension), which can be installed as part of the Simplicity Studio tool installation.

4. [Firmware for RS9116 NCP](./matter-artifacts.md#rs9116-firmware)

**Note:** RS9116 is deprecated and no longer supported on Matter.

5. [Firmware for SiWx917 NCP](./matter-artifacts.md#siwx917-firmware-for-siwn917-ncp-and-siwg917-soc)

## Software Packages Required for Wi-Fi SiWx917 SoC Devices
Expand Down
8 changes: 5 additions & 3 deletions sld250-matter-references/versioning-release-maintenance.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,15 @@ Update digits based on the following criteria:
| v2.1.0-1.1 | 27-July-23 | v4.3.1 | v3.0.10 | 1.1 | Obsolete |
| v2.1.1-1.1 | 9-Oct-23 | v4.3.2, v4.3.3 | v3.1.0 | 1.1 | Monitored |
| v2.2.0-1.2 | 13-Dec-23 | v4.4.0, v4.4.1 | v3.1.1 | 1.2 | Obsolete |
| v2.2.1-1.2 | 10-Apr-24 | v4.4.1, v4.4.2 | v3.1.4 | 1.2 | Maintained |
| v2.2.1-1.2 | 10-Apr-24 | v4.4.1, v4.4.2 | v3.1.4 | 1.2 | Obsolete |
| v2.2.2-1.2 | 7-May-24 | v4.4.3 | v3.2.0 | 1.2 | Maintained |
| v2.3.0-1.3 | 18-June-24 | 2024.6.0 | v3.3.0 | 1.3 | Obsolete |
| v2.3.1-1.3 | 14-August-24 | 2024.6.1 | v3.3.1 | 1.3 | Obsolete |
| v2.3.2-1.3 | 10-Oct-24 | 2024.6.2 | v3.3.2 | 1.3 | Maintained |
| v2.4.0-1.4 | 11-Nov-24 | 2024.6.2 | v3.3.4 | 1.4 | Maintained |
| v2.5.0-1.4 | 18-Dec-24 | 2024.12.0 | v3.4.0 | 1.4 | Obsolete |
| v2.5.1-1.4 | 12-Feb-25 | 2024.12.1 | v3.4.1 | 1.4 | Obsolete |
| v2.5.2-1.4 | 10-Apr-25 | 2024.12.2 | v3.4.2 | 1.4 | Maintained |
| v2.6.0-1.4 | 18-Jun-25 | 2025.6.0 | v3.5.0 | 1.4 | Maintained |
| v2.6.1-1.4 | 23-Jul-25 | 2025.6.1 | v3.5.1 | 1.4 | Active |
| v2.6.0-1.4 | 18-Jun-25 | 2025.6.0 | v3.5.0 | 1.4 | Obsolete |
| v2.6.1-1.4 | 23-Jul-25 | 2025.6.1 | v3.5.1 | 1.4 | Maintained |
| v2.7.0-1.4 | 25-Sep-25 | 2025.6.2 | v3.5.1 | 1.4 | Active |
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ The following hardware devices are required for executing Matter over Wi-Fi:
- RS9116 development kit
- WF200 expansion board
- SiWx917 NCP expansion board

**Note:** RS9116 is deprecated and no longer supported on Matter.

- **MG24 boards**

- BRD4186C / SLWSTK6006A / Wireless Starter Kit / 2.4GHz@10dBm
Expand All @@ -27,11 +30,13 @@ The following hardware devices are required for executing Matter over Wi-Fi:
- [XG24-RB4187C](https://www.silabs.com/development-tools/wireless/xg24-rb4187c-efr32xg24-wireless-gecko-radio-board)
- MG24 with WSTK : [xG24-PK6010A](https://www.silabs.com/development-tools/wireless/efr32xg24-pro-kit-20-dbm?tab=overview)

>**Note:** A custom board binary can also be generated. The configuration file `sl_spidrv_eusart_exp_config` for RS9116 and `sl_spidrv_exp_config` for 917NCP and WF200 should have the SPI pin and port defines enabled. The configuration file `sl_custom_board.h` contains the SPI pins, which should be updated according to the custom board's pin configuration.
>**Note:** A custom board binary can also be generated. The configuration file `sl_spidrv_eusart_exp_config` for RS9116 and `sl_spidrv_exp_config` for 917NCP and WF200 should have the SPI pin and port defines enabled. The configuration file `sl_custom_board.h` contains the SPI pins, which should be updated according to the custom board's pin configuration. RS9116 is deprecated and no longer supported on Matter.

- **Wi-Fi Dev Kits & boards**

- **RS9116**

**Note:** RS9116 is deprecated and no longer supported on Matter.
- SB-EVK1 / Single Band Wi-Fi Development Kit / 2.4GHz
- [RS9116X-SB-EVK1](https://www.silabs.com/development-tools/wireless/wi-fi/rs9116x-sb-evk-development-kit)
- SB-EVK2 / Single Band Wi-Fi Development Kit / 2.4GHz
Expand Down
2 changes: 1 addition & 1 deletion sld290-matter-wifi-getting-started-example/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To get started with Matter over Wi-Fi, download the latest version of Simplicity

## Setting up the Matter over Wi-Fi Development Environment

Refer to the [Release Notes](https://github.com/SiliconLabs/matter_extension/releases/tag/v2.6.1) to know more about the latest releases from Silicon Labs.
Refer to the [Release Notes](https://github.com/SiliconLabs/matter_extension/releases/tag/v2.7.0) to know more about the latest releases from Silicon Labs.

To control the Matter Accessory Device, a controller is required which is termed as **chip-tool**. The chip-tool can be set up in two ways:

Expand Down
3 changes: 3 additions & 0 deletions sld291-matter-wifi-run-demo/flashing-using-commander.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ Before flashing the application for EFR32 Boards, flash **bootloader images** as
- **BRD4186C Board**
- For MG24 + RS9116: Internal Bootloader (bootloader-storage-internal-single-512k-BRD4186C-gsdk4.1)
- For MG24 + WF200: External Bootloader (bootloader-storage-spiflash-single-1024k-BRD4186C-gsdk4.1)

- **BRD4187C Board**
- For MG24 + RS9116: Internal Bootloader (bootloader-storage-internal-single-512k-BRD4187C-gsdk4.1)
- For MG24 + WF200: External Bootloader (bootloader-storage-spiflash-single-1024k-BRD4187C-gsdk4.1)

**Note**: RS9116 is deprecated and no longer supported on Matter.

Bootloader binaries are available in the respective path of codebase **third_party/silabs/matter_support/matter/efr32/bootloader_binaries** folder. Silicon Labs recommends always flashing the latest bootloader binaries from the codebase.

**Note**: Bootloader binaries are flashed using Simplicity Commander only. It supports EFR32 Boards only.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ The SiWx917 NCP or RS9116 EVK connectivity firmware can be upgraded using Tera T

#### Firmware Upgrade On RS9116

**Note**: RS9116 is deprecated and no longer supported on Matter.

1. Connect the EVK to PC using the USB interface labeled **UART** as identified below.

![Switch Position before firmware flash](./images/rs916-board.png)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,13 @@ To enable ICD functionality for Wi-Fi, the `ICD Management` cluster/component ne
- For SiWx917 SOC, click on **Replace Subscription Timeout Resumption**. Sleepy support is enabled; build the project. Sleep support on M4 and TA can be enabled by installing `matter_icd_core` component.

- For rs9116 and WF200: `matter_icd_management` component is installed by default for lock-app. For thermostat and window, you need to install the mentioned cluster/component to enable sleepy.

- For 917NCP: `matter_icd_management` component is installed by default for lock-app. For thermostat and window, you need to install the mentioned cluster/component to enable sleepy.

### EFR32 + RS9116 Setup for ICDs (Sleepy Devices)

**Note**: RS9116 is deprecated and no longer supported on Matter.

- The following GPIO pins should be connected for 9116 and Host handshakes.
pin 7 and pin 9 to UULP_2 and UULP_0 respectively.

Expand Down
Loading