diff options
-rw-r--r-- | ports/esp32/main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ports/esp32/main.c b/ports/esp32/main.c index 8c416d0b8..81e4a6434 100644 --- a/ports/esp32/main.c +++ b/ports/esp32/main.c @@ -58,6 +58,10 @@ #include "modnetwork.h" #include "mpthreadport.h" +#if MICROPY_BLUETOOTH_NIMBLE +#include "extmod/modbluetooth.h" +#endif + // MicroPython runs as a task under FreeRTOS #define MP_TASK_PRIORITY (ESP_TASK_PRIO_MIN + 1) #define MP_TASK_STACK_SIZE (16 * 1024) @@ -136,6 +140,10 @@ soft_reset: } } + #if MICROPY_BLUETOOTH_NIMBLE + mp_bluetooth_deinit(); + #endif + machine_timer_deinit_all(); #if MICROPY_PY_THREAD |