esp32: Deinitialize Bluetooth on soft reset.

This fixes a crash, caused by NimBLE continuing to call the Python BLE
interrupt handler after soft reboot.
pull/5743/head
Thomas Friebel 2020-03-07 22:27:32 +01:00 zatwierdzone przez Damien George
rodzic 41a9f1dec8
commit bd746a4630
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -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