Commit Graph

166 Commits

Author SHA1 Message Date
Shubham Patil 3a52432c56 ci: bump component manager to fix managed_component example
Also, bump the esp_lvgl_port's version to fix the example build
2025-12-18 15:22:28 +05:30
Shubham Patil c651b0e839 examples/light: use the specific version of esp_lvgl_port 2025-09-29 12:37:48 +05:30
chendejin 2a735eafca [v1.3] backport: examples: Removed MRP configs and enable CONFIG_ENABLE_PERSIST_SUBSCRIPTIONS 2024-12-27 14:52:09 +08:00
Pavel Borcin 536ea2956c change light_switch example to use bsp, remove unused esp32s3 defaults 2024-06-04 16:36:46 +02:00
chendejin df37795de0 examples: Added MRP configs for Thread device 2024-05-31 10:12:11 +08:00
Pavel Borcin faae30a1c2 examples/light: Fix the issue of on-board LED not turning off 2024-05-29 14:05:17 +08:00
Shripad Deshpande 9783e126b9 Fix the local build for external platform in case of light example 2024-05-13 20:02:12 +08:00
Shu Chen 4575995c5b Merge branch 'fix_relative_paths' into 'main'
Fix building examples if placed outside the repo

See merge request app-frameworks/esp-matter!729
2024-05-09 16:18:34 +08:00
Yuan Ming Fu 7ef1f5e13a example: use 26MHz XTAL default on esp32-c2 2024-05-07 19:28:22 +08:00
Shubham Patil 6dd7a44272 Fix building examples if placed outside the repo
Fixes https://github.com/espressif/esp-matter/issues/916

Build path using ESP_MATTER_PATH variable and not with
CMAKE_CURRENT_LIST_DIR.

If example is moved out from their current place then the compilation
breaks, becuase it tries to find the file wrt to current project
directory.
2024-05-06 11:57:56 +05:30
Shripad Deshpande 0123d1ed2e esp-matter-ci : Changes to fix the arbitary failures in esp-matter CI test cases by using symlink approach. 2024-04-30 13:55:05 +08:00
Shu Chen 8c101cadd1 Merge branch 'remove-diag-logs-from-eg' into 'main'
Revert "Support diagnostic logs cluster in light example"

See merge request app-frameworks/esp-matter!710
2024-04-23 10:07:42 +08:00
Shubham Patil 4a675b503a Revert "Support diagnostic logs cluster in light example"
This reverts commit 9998ef3cb6.
2024-04-19 17:26:58 +05:30
Hrishikesh Dhayagude a81100ad98 Merge branch 'handle_nvs_primitive_types' into 'main'
Ensure backward compatibility for attributes stored in NVS with primitive data type

See merge request app-frameworks/esp-matter!594
2024-04-19 16:45:43 +08:00
YuanMingFu 46c3d4d07b relinker: add support for more idf version 2024-04-18 11:40:34 +08:00
Shubham Patil 68714c0e2d Ensure backward compatibility for attributes stored in NVS with
primitive data type

Removed config option ESP_MATTER_NVS_USE_COMPACT_ATTR_STORAGE.

Previously, the ESP_MATTER_NVS_USE_COMPACT_ATTR_STORAGE option
determined whether to store attributes as a blob or a primitive data
type in NVS. Since this configuration is not backward compatible, we now
read the attribute as a primitive data type if not found. If it's a
blob, we read it and rewrite it as a primitive data type.
2024-04-12 12:38:16 +05:30
Shu Chen aea4a24eda Merge branch 'update_idf_to_v5_2_1' into 'main'
update idf version to v5.2.1

See merge request app-frameworks/esp-matter!680
2024-04-11 12:31:55 +08:00
liyashuai 2ef30e7a47 fix ci error 2024-04-10 16:43:53 +08:00
liyashuai 213d48c6d4 update connectedhomeip to v1.3-branch: 5bb5c9e 2024-04-10 11:19:42 +08:00
Vilem Zavodny bed4aa92e3 fix: Fixed boot GPIO number on ESP32C6, ESP32H2 and ESP32C3. 2024-03-06 10:11:40 +01:00
Shubham Patil 9998ef3cb6 Support diagnostic logs cluster in light example 2024-02-28 14:06:39 +05:30
Hrishikesh Dhayagude f21e7b436e Merge branch 'fix_dynamic_ep_check' into 'main'
Fix dynamic endpoint check and added abort in examples

See merge request app-frameworks/esp-matter!607
2024-02-15 18:07:36 +08:00
Shubham Patil ec72e3209d examples: added ABORT_APP_ON_FAILURE macro to abort if APIs return error 2024-02-07 17:47:54 +05:30
Vilem Zavodny 41ec0e2943 Changed HAL to use BSP 2024-01-30 07:46:48 +01:00
chendejin bc55912270 add openthread cli command support in console 2024-01-25 14:06:42 +08:00
liyashuai 1977e50b09 update esp32c6 ble deinit and mem release config 2024-01-17 19:34:00 +08:00
Shu Chen d0c76f489b Merge branch 'deferred_attribute' into 'main'
esp_matter: Add deferred attribute flag for non-volatile attributes which might change rapidly

Closes CON-909

See merge request app-frameworks/esp-matter!563
2024-01-11 20:00:58 +08:00
WanqQixiang 80a0868271 esp_matter: Add deferred attribute flag for non-volatile attributes which might change rapidly
Closes CON-909
2024-01-10 17:56:59 +08:00
Shu Chen c0f10e3a92 Merge branch 'release_ble_iram_c2' into 'main'
Add CONFIG_BT_RELEASE_IRAM option to sdkconfig.defaults.esp32c2

See merge request app-frameworks/esp-matter!591
2024-01-10 12:26:47 +08:00
WanqQixiang 080926c56a Update connectedhomeip submodule to d38a6496c3 and re-enable external platform CI buildings
Closes CON-946
2024-01-05 17:37:25 +08:00
Shubham Patil 7973dae303 Add CONFIG_BT_RELEASE_IRAM option to sdkconfig.defaults.esp32c2
This will free up the BLE IRAM when BLE is not in use.
2024-01-04 14:06:32 +05:30
Shubham Patil 5bebd3bdde Added an event when BLE is deinitialized and memory is reclaimed
Fixes https://github.com/espressif/esp-matter/issues/777
2023-12-20 21:24:40 +05:30
WanqQixiang 0e8dcb9c60 Update connectedhomeip submodule to 8e3d98c039 2023-12-15 15:24:54 +08:00
WanqQixiang 64bd657cc5 examples: all the examples of ESP32-C6 over Wi-Fi and add thread-example build CI for c6 2023-11-03 10:52:32 +08:00
Shubham Patil 54a8903f32 Few documentation fixes
- Added some docs for attribute and identify callback
- mfg_tool: Add the sourcing of esp-idf's export.sh script
- Added the link for getting the repository in top level README.md
- Table for Matter specification version and release branches
- FAQ for stuck at "Solving dependencies requirements"
- Change the link and doc in rainmaker example
2023-10-05 12:47:35 +05:30
PSONALl d4c8b65772 Matter v1.2 TE-2 optional features and submodule update 2023-09-11 09:16:55 +05:30
WanqQixiang b2be128c96 Update IDF to v5.1.1 tag for ESP32-H2 and ESP32-C6 builds 2023-08-29 10:48:16 +08:00
WanqQixiang 250b202d2e examples: Remove requirements for main components 2023-08-10 16:48:13 +08:00
Shu Chen 85963d2ca8 Merge branch 'nvs/change_default_nvs_size_to_48k' into 'main'
change example default nvs size to 48k

See merge request app-frameworks/esp-matter!443
2023-07-27 20:22:48 +08:00
liyashuai de530ef5d0 change example default nvs size to 48k 2023-07-27 14:51:32 +08:00
PSONALl b9cb1b2fa5 Fix enhanced color mode's default value 2023-07-19 11:53:23 +05:30
liyashuai 7a3748edb3 change example software version string format form v1.0 to 1.0 for apple homekit show 2023-06-27 10:08:28 +08:00
WanqQixiang 0687657ede examples: Increase LwIP IPv6 address number to 6 (MAX_FABRIC + 1) 2023-06-25 10:40:42 +08:00
WanqQixiang fee4a9330f esp-matter: update zap-common and clean zap-file for zap-light example 2023-06-21 14:38:06 +08:00
Shu Chen bd692f3b9e Merge branch 'example/clean_mbedtls_config' into 'main'
examples: Clean the mbedtls config and add otadata partition for esp32h2

See merge request app-frameworks/esp-matter!397
2023-06-15 09:34:11 +08:00
WanqQixiang 476e403e53 examples: Clean the mbedtls config and add otadata partition for esp32h2 2023-06-14 17:34:35 +08:00
WanqQixiang cd7457684f Submodule: update submodule to 6382144be 2023-06-13 12:07:49 +08:00
Shubham Patil e04c1eb302 ota: Enable the handling of encrypted OTA image
Also, added the docs around OTA and sample usage in light example.
2023-06-07 19:32:12 +05:30
Shu Chen a6b958ba05 Merge branch 'bump_submodule' into 'main'
Changes to bump connectedhomeip submodule to revision: 8642c0d

See merge request app-frameworks/esp-matter!386
2023-05-30 18:55:39 +08:00
Shubham Patil d0b81170f3 Changes to bump connectedhomeip submodule to revision: 65b6ed4
- Replaced component esp32_mbedtls with mbedtls from requirements
- Enabled CONFIG_MBEDTLS_HKDF_C option in all the sdkconfig.defaults
- Removed secure cert dac provider from here and using one in
  connectedhomeip repo
- Enabled CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL in sdkconfig.defaults.esp32h2
2023-05-30 18:05:25 +08:00