We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d66876a commit 9d8ffcaCopy full SHA for 9d8ffca
targets/ESP32/_nanoCLR/Memory.cpp
@@ -23,6 +23,8 @@ static const char *TAG = "Memory";
23
// Minimum memory needed for IDF (native code)
24
#if defined(CONFIG_IDF_TARGET_ESP32H2)
25
#define MINIMUM_FREE_MEMORY_FOR_IDF (20 * 1024)
26
+#elif defined(CONFIG_IDF_TARGET_ESP32C6)
27
+#define MINIMUM_FREE_MEMORY_FOR_IDF (90 * 1024)
28
#else
29
#define MINIMUM_FREE_MEMORY_FOR_IDF (100 * 1024)
30
#endif
0 commit comments