ESP-Marius
ESP-Marius
Issue split from https://github.com/espressif/esp-idf/issues/12214
Since PSRAM memory comes with some restrictions, task stacks by default allocate from internal memory. But it is possible provide a PSRAM stack manually with `xTaskCreateStatic` if [CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY](https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-reference/kconfig.html#config-spiram-allow-stack-external-memory) is enabled.
> yes already enabled As I said: > Since PSRAM memory comes with some restrictions, task stacks by default allocate from internal memory. But it is possible provide a PSRAM...
Marking this one as resolved, please reopen it if there is still any outstanding issues.
As long as the linker is not reporting an error here then I think we can assume that the actual binary is fine, and this is an error in `esp-idf-size`...
Thanks for you suggestion! I agree that in many cases doing a shallow clone is better, but for our getting-started guide I still think we should recommend doing a full...
Hmm, without some more info it is hard to say why. Maybe you could try enabling [Heap-tracing](https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-reference/system/heap_debug.html#heap-tracing) or [Heap task tracing(https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-reference/system/heap_debug.html#heap-task-tracking) and dump this info when this memory "disappears" to...
Closing this due to lack of information, feel free to re-open if there is any more information about this issue.
Hi, This is actually as intended. C2 doesnt have any RTC memory, so this kconfig option is disabled. (You can actually see its dependency in kconfig `depends on SOC_RTC_FAST_MEM_SUPPORTED`)
Point taken about the docs, I'll make a ticket for it and see if it is somehow possible for us filter out these options that will always be false. Regarding...