This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
esp32/mbedtls: Added in/out buffer allocation strategy
"Internal IRAM" strategy allocates in/out buffers in IRAM thus saving memory in DRAM. To select this strategy: idf.py menuconfig -> Component config -> ESP32 Specific -> Enable IRAM as 8 bit accessible memory idf.py menuconfig -> Component config -> mbedTLS -> Memory allocation strategy -> Internal IRAM
- Loading branch information
1 parent
991c9c2
commit 5671ca8
Showing
3 changed files
with
22 additions
and
1 deletion.
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
Submodule esp-idf
updated
7 files
+7 −3 | components/bt/bt.c | |
+9 −1 | components/driver/gpio.c | |
+4 −1 | components/esp32/CMakeLists.txt | |
+4 −0 | components/esp32/component.mk | |
+0 −1 | components/esp32/cpu_start.c | |
+9 −1 | components/esp32/intr_alloc.c | |
+3 −4 | components/esp32/test/test_ipc.c |