File tree 3 files changed +3
-2
lines changed 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 3
3
#define MICROPY_HW_BOARD_NAME "ESP32C2 module"
4
4
#define MICROPY_HW_MCU_NAME "ESP32C2"
5
5
6
- #define MICROPY_PY_BLUETOOTH (0)
7
6
#define MICROPY_HW_ENABLE_SDCARD (0)
8
7
#define MICROPY_PY_MACHINE_I2S (0)
9
8
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ CONFIG_BT_NIMBLE_PINNED_TO_CORE=1
17
17
18
18
# Increase NimBLE task stack size from the default, because Python code
19
19
# (BLE IRQ handlers) will most likely run on this task.
20
- CONFIG_BT_NIMBLE_TASK_STACK_SIZE=6144
20
+ CONFIG_BT_NIMBLE_TASK_STACK_SIZE=4096
Original file line number Diff line number Diff line change 34
34
#define MICROPY_GC_INITIAL_HEAP_SIZE (56 * 1024)
35
35
#elif CONFIG_IDF_TARGET_ESP32S2 && !CONFIG_SPIRAM
36
36
#define MICROPY_GC_INITIAL_HEAP_SIZE (36 * 1024)
37
+ #elif CONFIG_IDF_TARGET_ESP32C2
38
+ #define MICROPY_GC_INITIAL_HEAP_SIZE (40 * 1024)
37
39
#else
38
40
#define MICROPY_GC_INITIAL_HEAP_SIZE (64 * 1024)
39
41
#endif
You can’t perform that action at this time.
0 commit comments