extmod/btstack: Add missing call to mp_bluetooth_hci_uart_deinit.

Signed-off-by: Damien George <damien@micropython.org>
pull/7284/head
Damien George 2021-05-20 12:19:34 +10:00
rodzic 38bc5a9f67
commit 0fc0f7536b
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -86,6 +86,7 @@ STATIC int btstack_uart_open(void) {
STATIC int btstack_uart_close(void) {
mp_bluetooth_hci_controller_deinit();
mp_bluetooth_hci_uart_deinit();
return 0;
}