From da16b0c648b167191b8a0adb53a21e2c6abce0cb Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 2 Nov 2020 19:49:30 +0100 Subject: [PATCH] Revert "stm32-sx1280: report ACL buffer size of 16 by Controller until autotx timeout issued is fixed" This reverts commit b9a848a40577fe2a43717382c19aab221f956231. --- chipset/sx128x/controller.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chipset/sx128x/controller.c b/chipset/sx128x/controller.c index 6d6db8642..4a93b63f7 100644 --- a/chipset/sx128x/controller.c +++ b/chipset/sx128x/controller.c @@ -96,8 +96,7 @@ static void controller_handle_hci_command(uint8_t * packet, uint16_t size){ btstack_assert(hci_outgoing_event_ready == false); const uint8_t local_supported_features[] = { 0, 0, 0, 0, 0x40, 0, 0, 0}; - // return buffer size = 20 (instead of 27) until auto-timeout for SXx1280 is fixed - const uint8_t read_buffer_size_result[] = { 16, 0, HCI_NUM_TX_BUFFERS_STACK }; + const uint8_t read_buffer_size_result[] = { 0x1b, 0, HCI_NUM_TX_BUFFERS_STACK }; uint8_t status; uint16_t opcode = little_endian_read_16(packet, 0);