Skip to content

Commit

Permalink
ESP32: Workaround to abort in CASE (#8718)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhrishi authored and pull[bot] committed Sep 1, 2021
1 parent 98df1c8 commit 1213872
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/all-clusters-app/esp32/sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,6 @@ CONFIG_ESP_MAIN_TASK_STACK_SIZE=4096

#enable debug shell
CONFIG_ENABLE_CHIP_SHELL=y

#Disable Hardware SHA - Workaround to issue 8702
CONFIG_MBEDTLS_HARDWARE_SHA=n
3 changes: 3 additions & 0 deletions examples/lock-app/esp32/sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@ CONFIG_LWIP_IPV6_AUTOCONFIG=y
# Use a custom partition table
CONFIG_PARTITION_TABLE_CUSTOM=y
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"

#Disable Hardware SHA - Workaround to issue 8702
CONFIG_MBEDTLS_HARDWARE_SHA=n
3 changes: 3 additions & 0 deletions examples/temperature-measurement-app/esp32/sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,6 @@ CONFIG_TCP_SYNMAXRTX=6
# Product id
CONFIG_DEVICE_VENDOR_ID=0x235A
CONFIG_DEVICE_PRODUCT_ID=0x4554

#Disable Hardware SHA - Workaround to issue 8702
CONFIG_MBEDTLS_HARDWARE_SHA=n
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,6 @@ CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF=1
CONFIG_NIMBLE_MAX_CONNECTIONS=1
CONFIG_TCPIP_RECVMBOX_SIZE=16
CONFIG_TCP_SYNMAXRTX=6

#Disable Hardware SHA - Workaround to issue 8702
CONFIG_MBEDTLS_HARDWARE_SHA=n
3 changes: 3 additions & 0 deletions src/test_driver/esp32/sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ CONFIG_ESP_MAIN_TASK_STACK_SIZE=32768

#enable BT
CONFIG_BT_ENABLED=y

#Disable Hardware SHA - Workaround to issue 8702
CONFIG_MBEDTLS_HARDWARE_SHA=n

0 comments on commit 1213872

Please sign in to comment.