Skip to content

Commit 7832912

Browse files
committed
Merge branch 'v1_2/update_idf_to_v5_2_1' into 'release/v1.2'
[v1.2] update idf version to v5.2.1 See merge request app-frameworks/esp-matter!682
2 parents 28dc66a + c20a21b commit 7832912

File tree

8 files changed

+33
-29
lines changed

8 files changed

+33
-29
lines changed

.github/workflows/docker-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030
# Github runner is running out of space when we are building for multiple architectures in single runner
3131
BUILD_PLATFORMS: linux/amd64
3232
DOCKERHUB_REPO: ${{ github.repository }}
33-
REQUIRED_IDF_VERSION: v5.1.1
33+
REQUIRED_IDF_VERSION: v5.2.1
3434

3535
jobs:
3636
build:

.gitlab-ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ variables:
7272
- cd ${CI_PROJECT_DIR}
7373
- git clone ${ESP_THREAD_BR_REPO_URL}
7474
- cd ${BR_PATH}/examples/basic_thread_border_router
75-
- git checkout f03f1ca
75+
- git checkout v1.0
7676
- idf.py set-target esp32s3
7777
- idf.py build
7878

@@ -166,7 +166,7 @@ build_esp_matter_examples_pytest_C6_idf_v5_1:
166166
when: always
167167
expire_in: 4 days
168168
variables:
169-
IDF_VERSION: "6b1f40b9bfb91ec82fab4a60e5bfb4ca0c9b062f"
169+
IDF_VERSION: "v5.2.1"
170170
script:
171171
- cd ${ESP_MATTER_PATH}
172172
- pip install -r tools/ci/requirements-build.txt
@@ -198,7 +198,7 @@ build_esp_matter_examples_pytest_H2_idf_v5_1:
198198
when: always
199199
expire_in: 4 days
200200
variables:
201-
IDF_VERSION: "6b1f40b9bfb91ec82fab4a60e5bfb4ca0c9b062f"
201+
IDF_VERSION: "v5.2.1"
202202
script:
203203
- *setup_ot_rcp
204204
- *setup_ot_br
@@ -221,7 +221,7 @@ build_esp_matter_examples_non_pytest_idf_v5_1:
221221
when: always
222222
expire_in: 4 days
223223
variables:
224-
IDF_VERSION: "6b1f40b9bfb91ec82fab4a60e5bfb4ca0c9b062f"
224+
IDF_VERSION: "v5.2.1"
225225
script:
226226
- *build_external_platform_example
227227
- *build_esp32c6_thread_example

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ section in the ESP-Matter Programming Guide.
2828
## Supported ESP-IDF and connectedhomeip versions
2929

3030
- This SDK currently works with [v1.2-branch](https://github.com/espressif/connectedhomeip/tree/v1.2-branch) of espressif/connectedhomeip.
31-
- For Matter projects development with this SDK, it is recommended to utilize ESP-IDF [v5.1.2](https://github.com/espressif/esp-idf/tree/v5.1.2).
31+
- For Matter projects development with this SDK, it is recommended to utilize ESP-IDF [v5.2.1](https://github.com/espressif/esp-idf/tree/v5.2.1).
3232

3333

3434
## Documentation

docs/en/developing.rst

+11-11
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Additionally, we also support developing on Windows Host using WSL.
2323

2424
The Prerequisites for ESP-IDF and Matter:
2525

26-
- Please see `Prerequisites <https://docs.espressif.com/projects/esp-idf/en/v5.1.1/esp32/get-started/index.html#step-1-install-prerequisites>`__ for ESP IDF.
26+
- Please see `Prerequisites <https://docs.espressif.com/projects/esp-idf/en/v5.2.1/esp32/get-started/index.html#step-1-install-prerequisites>`__ for ESP IDF.
2727
- Please get the `Prerequisites <https://github.com/espressif/connectedhomeip/blob/v1.1-branch/docs/guides/BUILDING.md#prerequisites>`__ for Matter.
2828

2929

@@ -41,7 +41,7 @@ Development on Windows is supported using Windows Subsystem for Linux (WSL). Ple
4141
- Windows does not support exposing COM ports to WSL distros. Install usbipd-win on `Windows <https://github.com/dorssel/usbipd-win>`__
4242
and `WSL <https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/WSL.md#usbipd>`__ (usbipd-win `WSL Support <https://github.com/dorssel/usbipd-win/wiki/WSL-support>`__).
4343
- Here onwards process for setting esp-matter and building examples is same as other hosts.
44-
- Please clone the repositories from inside the WSL environment and not inside a mounted directory.
44+
- Please clone the repositories from inside the WSL environment and not inside a mounted directory.
4545

4646
For using VSCode for development, please check `Developing in WSL <https://code.visualstudio.com/docs/remote/wsl>`__.
4747

@@ -233,7 +233,7 @@ Choose IDF target.
233233
::
234234

235235
ERROR: This script was called from a virtual environment, can not create a virtual environment again
236-
236+
237237
Run:
238238

239239
::
@@ -632,14 +632,14 @@ creating in the *app_main.cpp* of the example. Examples:
632632
- on_off_light:
633633

634634
::
635-
635+
636636
on_off_light::config_t light_config;
637637
endpoint_t *endpoint = on_off_light::create(node, &light_config, ENDPOINT_FLAG_NONE);
638638

639639
- fan:
640640

641641
::
642-
642+
643643
fan::config_t fan_config;
644644
endpoint_t *endpoint = fan::create(node, &fan_config, ENDPOINT_FLAG_NONE);
645645

@@ -677,7 +677,7 @@ creating in the *app_main.cpp* of the example. Examples:
677677
2.4.2.2 Clusters
678678
^^^^^^^^^^^^^^^^
679679

680-
Additional clusters can also be added to an endpoint. Examples:
680+
Additional clusters can also be added to an endpoint. Examples:
681681

682682
- on_off:
683683

@@ -696,7 +696,7 @@ Additional clusters can also be added to an endpoint. Examples:
696696
- window_covering:
697697

698698
::
699-
699+
700700
window_covering::config_t window_covering_config(static_cast<uint8_t>(chip::app::Clusters::WindowCovering::EndProductType::kTiltOnlyInteriorBlind));
701701
cluster_t *cluster = window_covering::create(endpoint, &window_covering_config, CLUSTER_FLAG_SERVER);
702702

@@ -719,7 +719,7 @@ Additional clusters can also be added to an endpoint. Examples:
719719
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
720720

721721
Additional attributes and commands can also be added to a cluster.
722-
Examples:
722+
Examples:
723723

724724
- attribute: on_off:
725725

@@ -768,19 +768,19 @@ Non-Standard endpoint can be created, without any clusters.
768768
2.4.3.2 Clusters
769769
^^^^^^^^^^^^^^^^
770770

771-
Non-Standard/Custom clusters can also be created:
771+
Non-Standard/Custom clusters can also be created:
772772

773773
- Cluster create:
774774

775775
::
776-
776+
777777
uint32_t custom_cluster_id = 0x131bfc00;
778778
cluster_t *cluster = cluster::create(endpoint, custom_cluster_id, CLUSTER_FLAG_SERVER);
779779

780780
2.4.3.3 Attributes and Commands
781781
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
782782

783-
Non-Standard/Custom attributes can also be created on any cluster:
783+
Non-Standard/Custom attributes can also be created on any cluster:
784784

785785
- Attribute create:
786786

docs/en/security.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
5. Security Considerations
22
==========================
33

4-
{IDF_TARGET_RELEASE:default="v5.1.1"}
4+
{IDF_TARGET_RELEASE:default="v5.2.1"}
55

66
5.1 Overview
77
------------

examples/all_device_types_app/main/esp_matter_console_helpers.cpp

+13-9
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,14 @@ static void initialize_console(void)
7777
.source_clk = UART_SCLK_XTAL,
7878
#endif
7979
};
80+
#if (CONFIG_ESP_CONSOLE_UART_NUM == 0)
81+
uart_port_t uart_port = UART_NUM_0;
82+
#elif (CONFIG_ESP_CONSOLE_UART_NUM == 1)
83+
uart_port_t uart_port = UART_NUM_1;
84+
#endif
8085
/* Install UART driver for interrupt-driven reads and writes */
81-
ESP_ERROR_CHECK( uart_driver_install(CONFIG_ESP_CONSOLE_UART_NUM,
82-
256, 0, 0, NULL, 0) );
83-
ESP_ERROR_CHECK( uart_param_config(CONFIG_ESP_CONSOLE_UART_NUM, &uart_config) );
86+
ESP_ERROR_CHECK( uart_driver_install(uart_port, 256, 0, 0, NULL, 0) );
87+
ESP_ERROR_CHECK( uart_param_config(uart_port, &uart_config) );
8488

8589
/* Tell VFS to use UART driver */
8690
esp_vfs_dev_uart_use_driver(CONFIG_ESP_CONSOLE_UART_NUM);
@@ -354,7 +358,7 @@ int create(uint8_t device_type_index)
354358
break;
355359
}
356360
}
357-
361+
358362
if (!endpoint) {
359363
ESP_LOGE(TAG, "Matter create endpoint failed");
360364
return 1;
@@ -372,7 +376,7 @@ int create(uint8_t device_type_index)
372376
xSemaphoreGive(semaphoreHandle);
373377
}
374378
}
375-
379+
376380
return 0;
377381
}
378382

@@ -387,7 +391,7 @@ namespace console {
387391
struct arg_str *device_type;
388392
struct arg_end *end;
389393
} create_device_args;
390-
394+
391395
static int create(int argc, char **argv)
392396
{
393397
int nerrors = arg_parse(argc, argv, (void **) &create_device_args);
@@ -426,11 +430,11 @@ esp_err_t register_create_device_commands()
426430
};
427431

428432
return esp_console_cmd_register(&create_cmd);
429-
433+
430434
}
431435

432436
void init(void)
433-
{
437+
{
434438
#if CONFIG_STORE_HISTORY
435439
initialize_filesystem();
436440
ESP_LOGI(TAG, "Command history enabled");
@@ -498,7 +502,7 @@ void init(void)
498502
}
499503

500504
void deinit(void)
501-
{
505+
{
502506
fflush(stdout);
503507
fsync(fileno(stdout));
504508
esp_console_deinit();

examples/common/relinker/esp32c2/object.csv

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ libesp_wifi.a,esp_adapter.c.obj,esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/e
4444
libfreertos.a,list.c.obj,esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj
4545
libfreertos.a,port.c.obj,esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj
4646
libfreertos.a,port_common.c.obj,esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj
47-
libfreertos.a,port_systick.c.obj,esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj
47+
libfreertos.a,port_systick.c.obj,esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj
4848
libfreertos.a,queue.c.obj,esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj
4949
libfreertos.a,tasks.c.obj,esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj
5050
libhal.a,brownout_hal.c.obj,esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj

examples/controller/main/esp_ot_config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
{ \
2929
.radio_mode = RADIO_MODE_UART_RCP, \
3030
.radio_uart_config = { \
31-
.port = 1, \
31+
.port = UART_NUM_1, \
3232
.uart_config = \
3333
{ \
3434
.baud_rate = 460800, \

0 commit comments

Comments
 (0)