From 8b22887d86df33f235405e196ea43619824e389a Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 23 Sep 2020 14:13:52 +0200 Subject: [PATCH] Revert "hci: skip HCI Read Buffer Size if Classic not enabled" This reverts commit 2ac123ee4e889e88afa3da746b3f78c8670a2953. --- src/hci.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/hci.c b/src/hci.c index 828e074f7..88bd18f44 100644 --- a/src/hci.c +++ b/src/hci.c @@ -1758,13 +1758,11 @@ static void hci_initializing_event_handler(const uint8_t * packet, uint16_t size return; #endif case HCI_INIT_W4_READ_BD_ADDR: -#ifdef ENABLE_CLASSIC // only read buffer size if supported if (hci_stack->local_supported_commands[0u] & 0x01u) { hci_stack->substate = HCI_INIT_READ_BUFFER_SIZE; return; } -#endif // skipping read buffer size hci_stack->substate = HCI_INIT_READ_LOCAL_SUPPORTED_FEATURES; return;