feat(mbedtls): disable unnecessary buffer allocation in dynamic buffer session reset

This commit is contained in:
Ashish Sharma
2025-06-25 11:24:11 +08:00
parent 65cf3d0a20
commit 6259505f18
5 changed files with 3 additions and 18 deletions

View File

@@ -243,7 +243,7 @@ static void https_get_task(void *pvParameters)
static int request_count;
ESP_LOGI(TAG, "Completed %d requests", ++request_count);
printf("Minimum free heap size: %" PRIu32 " bytes\n", esp_get_minimum_free_heap_size());
ESP_LOGI(TAG, "Minimum free heap size: %" PRIu32 " bytes\n", esp_get_minimum_free_heap_size());
for (int countdown = 10; countdown >= 0; countdown--) {
ESP_LOGI(TAG, "%d...", countdown);

View File

@@ -9,3 +9,4 @@ CONFIG_EXAMPLE_ETH_MDIO_GPIO=18
CONFIG_EXAMPLE_ETH_PHY_RST_GPIO=5
CONFIG_EXAMPLE_ETH_PHY_ADDR=1
CONFIG_EXAMPLE_CONNECT_IPV6=y
CONFIG_MBEDTLS_DYNAMIC_BUFFER=y