-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial changes for IDF v5.5 and ESP32-C5
- Loading branch information
Showing
5 changed files
with
72 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
CONFIG_BT_ENABLED=y | ||
CONFIG_BT_BLE_BLUFI_ENABLE=y | ||
CONFIG_RTC_CLK_CAL_CYCLES=576 | ||
# CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 is not set | ||
CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=2304 | ||
# This Enables RISCV LP for C6 - but it can't be used within Arduino at this time. | ||
#CONFIG_ULP_COPROC_ENABLED=y | ||
#CONFIG_ULP_COPROC_LP_CORE=y | ||
#CONFIG_ULP_COPROC_RESERVE_MEM=4096 | ||
|
||
# | ||
# OpenThread | ||
# | ||
CONFIG_OPENTHREAD_ENABLED=y | ||
# Border Router disabled | ||
# CONFIG_OPENTHREAD_BORDER_ROUTER=y | ||
# CONFIG_OPENTHREAD_RADIO_SPINEL_UART=y | ||
|
||
# DNS64 and NAT64 will be disabled for a while | ||
# OT IDF issue https://github.com/espressif/esp-idf/issues/15069 | ||
# CONFIG_OPENTHREAD_DNS64_CLIENT=y | ||
|
||
# Radio for RPC | ||
# CONFIG_OPENTHREAD_RADIO=y | ||
# CONFIG_OPENTHREAD_RADIO_NATIVE=y | ||
# CONFIG_OPENTHREAD_DIAG=n | ||
CONFIG_OPENTHREAD_COMMISSIONER=y | ||
CONFIG_OPENTHREAD_JOINER=y | ||
CONFIG_OPENTHREAD_CLI=y | ||
CONFIG_OPENTHREAD_SRP_CLIENT=y | ||
CONFIG_OPENTHREAD_DNS_CLIENT=y | ||
# Default dataset for quick start | ||
CONFIG_OPENTHREAD_NETWORK_NAME="OpenThread-ESP" | ||
CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX="fd00:db8:a0:0::/64" | ||
CONFIG_OPENTHREAD_NETWORK_CHANNEL=15 | ||
CONFIG_OPENTHREAD_NETWORK_PANID=0x1234 | ||
CONFIG_OPENTHREAD_NETWORK_EXTPANID="dead00beef00cafe" | ||
CONFIG_OPENTHREAD_NETWORK_MASTERKEY="00112233445566778899aabbccddeeff" | ||
CONFIG_OPENTHREAD_NETWORK_PSKC="104810e2315100afd6bc9215a6bfac53" | ||
# end of OpenThread | ||
|
||
# Matter shall use only WiFi | ||
CONFIG_ENABLE_MATTER_OVER_THREAD=n | ||
|
||
# | ||
# Zigbee | ||
# | ||
CONFIG_ZB_ENABLED=y | ||
CONFIG_ZB_ZED=y | ||
CONFIG_ZB_RADIO_NATIVE=y | ||
# end of Zigbee |
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