-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ESP32] ESP-IDF v5.0 support in few apps (#24720)
* [ESP32] all-clusters-app: changes to support idf v5.0 - Fixed few format specifier - Using the older version of led_strip, v1.0.0-alpha, which is present in idf v4.4.3 to avoid putting in more ifdefs in the code. * [ESP32] all-clusters-minimal-app: changes to support idf v5.0 - Fixed few format specifier - Using the older version of led_strip, v1.0.0-alpha, which is present in idf v4.4.3 to avoid putting in more ifdefs in the code. * Added esp idf component manager related files to .gitignore * [ESP32] bridge-app: changes to support idf v5.0 - Fixed few format specifier * [ESP32] light-switch-app: changes to support idf v5.0 - Fixed few format specifiers * restyle * remove ErrorStr.h from bridge app * added reason for adding files to .gitignore
- Loading branch information
Showing
28 changed files
with
149 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dependencies: | ||
espressif/led_strip: "^1.0.0-alpha" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
examples/all-clusters-app/esp32/sdkconfig.defaults.esp32c2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Disable chip shell | ||
CONFIG_ENABLE_CHIP_SHELL=n | ||
|
||
# CONFIG_ESP32_WIFI_IRAM_OPT is not set | ||
# CONFIG_ESP32_WIFI_RX_IRAM_OPT is not set | ||
CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y | ||
CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y | ||
|
||
CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y | ||
|
||
CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=16 | ||
CONFIG_LWIP_TCP_RECVMBOX_SIZE=8 | ||
|
||
CONFIG_BT_NIMBLE_ROLE_CENTRAL=n | ||
CONFIG_BT_NIMBLE_ROLE_OBSERVER=n | ||
|
||
CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=4 | ||
CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=8 | ||
CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
examples/all-clusters-minimal-app/esp32/main/idf_component.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dependencies: | ||
espressif/led_strip: "^1.0.0-alpha" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
examples/all-clusters-minimal-app/esp32/sdkconfig.defaults.esp32c2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Disable chip shell | ||
CONFIG_ENABLE_CHIP_SHELL=n | ||
|
||
# CONFIG_ESP32_WIFI_IRAM_OPT is not set | ||
# CONFIG_ESP32_WIFI_RX_IRAM_OPT is not set | ||
CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y | ||
CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y | ||
|
||
CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y | ||
|
||
CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=16 | ||
CONFIG_LWIP_TCP_RECVMBOX_SIZE=8 | ||
|
||
CONFIG_BT_NIMBLE_ROLE_CENTRAL=n | ||
CONFIG_BT_NIMBLE_ROLE_OBSERVER=n | ||
|
||
CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=4 | ||
CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=8 | ||
CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.