1
0
mirror of https://github.com/bluekitchen/btstack.git synced 2025-04-04 22:20:26 +00:00

gatt_client: handle l2cap connection fail without active hci connection

This commit is contained in:
Matthias Ringwald 2023-07-05 17:29:46 +02:00
parent 9ed6f53c12
commit ab6f9d8f7c

@ -2125,7 +2125,8 @@ static void gatt_client_att_packet_handler(uint8_t packet_type, uint16_t handle,
btstack_assert(gatt_client != NULL);
con_handle = l2cap_event_channel_opened_get_handle(packet);
hci_connection = hci_connection_for_handle(con_handle);
if ((status == L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_RESOURCES) && hci_connection->att_server.incoming_connection_request){
if (status == L2CAP_CONNECTION_RESPONSE_RESULT_REFUSED_RESOURCES){
if ((hci_connection != NULL) && hci_connection->att_server.incoming_connection_request) {
log_info("Collision, retry in 100ms");
gatt_client->state = P_W2_L2CAP_CONNECT;
// set timer for retry
@ -2134,6 +2135,7 @@ static void gatt_client_att_packet_handler(uint8_t packet_type, uint16_t handle,
btstack_run_loop_add_timer(&gatt_client->gc_timeout);
break;
}
}
// if status != 0, gatt_client will be discarded
gatt_client->state = P_READY;
gatt_client->con_handle = l2cap_event_channel_opened_get_handle(packet);