Skip to content

Commit

Permalink
extmod/btstack: Add missing call to mp_bluetooth_hci_uart_deinit.
Browse files Browse the repository at this point in the history
Signed-off-by: Damien George <damien@micropython.org>
  • Loading branch information
dpgeorge committed Jun 23, 2021
1 parent 38bc5a9 commit 0fc0f75
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions extmod/btstack/btstack_hci_uart.c
Expand Up @@ -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;
}

Expand Down

0 comments on commit 0fc0f75

Please sign in to comment.