Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ESP32] Rename CHIP to Matter in documentation #23728

Merged
merged 2 commits into from
Nov 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions docs/guides/esp32/build_app_and_commission.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ the esp32 application.

## Supported target chips

All the CHIP demo application is intended to work on: the
All the Matter demo application is intended to work on: the
[ESP32-DevKitC](https://www.espressif.com/en/products/hardware/esp32-devkitc/overview),
the
[ESP32-WROVER-KIT_V4.1](https://www.espressif.com/en/products/hardware/esp-wrover-kit/overview),
Expand Down Expand Up @@ -51,7 +51,7 @@ functionality can still work fine.
$ source export.sh
```

- CHIP
- Matter

Before running any other build command, the scripts/activate.sh environment
setup script should be sourced at the top level. This script set up a Python
Expand Down Expand Up @@ -79,10 +79,10 @@ functionality can still work fine.
$ cd examples/<app-name>/esp32
```

- Set the chip target to build
- Set the Matter target to build

```
$ idf.py set-target (CHIP)
$ idf.py set-target (Matter)
```

All the example applications supports target chips: esp32, esp32s3, esp32c3
Expand Down
8 changes: 4 additions & 4 deletions docs/guides/esp32/setup_idf_chip.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Setup ESP-IDF and CHIP Environment
# Setup ESP-IDF and Matter Environment

Setting up IDF and CHIP environment is one time setup.
Setting up IDF and Matter environment is one time setup.

## Setup ESP-IDF (Espressif IoT Development Framework)

Expand Down Expand Up @@ -50,7 +50,7 @@ step.
$ ./install.sh
```

## Setup CHIP environment
## Setup Matter environment

### Install Prerequisites

Expand All @@ -77,5 +77,5 @@ source scripts/bootstrap.sh

---

Once IDF and CHIP environment is set up, head over to
Once IDF and Matter environment is set up, head over to
[application building and commissioning guide](build_app_and_commission.md).