stm32-sx1280: fix tx packet queuing

This commit is contained in:
Matthias Ringwald 2020-07-12 00:18:54 +02:00
parent 4e5921a401
commit a65fe4076d

View File

@ -139,6 +139,8 @@ static void controller_handle_acl_data(uint8_t * packet, uint16_t size){
btstack_assert(con_handle == HCI_CON_HANDLE);
// just queue up
btstack_assert(controller_ll_acl_reserved);
controller_ll_acl_reserved = false;
ll_queue_acl_packet(packet, size);
}