extmod/btstack: Add missing call to mp_bluetooth_hci_uart_deinit.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2021-05-20 12:19:34 +10:00
parent 38bc5a9f67
commit 0fc0f7536b
1 changed files with 1 additions and 0 deletions

View File

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