mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-31 00:32:52 +00:00
att_dispatch: forward att pdu from classic
This commit is contained in:
parent
e6dbc98e5d
commit
fd3d2f4c4d
@ -152,6 +152,11 @@ static void att_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *p
|
||||
case ATT_DATA_PACKET:
|
||||
att_dispatch_handle_att_pdu(packet_type, channel, packet, size);
|
||||
break;
|
||||
#ifdef ENABLE_GATT_OVER_CLASSIC
|
||||
case L2CAP_DATA_PACKET:
|
||||
att_dispatch_handle_att_pdu(packet_type, channel, packet, size);
|
||||
break;
|
||||
#endif
|
||||
case HCI_EVENT_PACKET:
|
||||
switch (hci_event_packet_get_type(packet)) {
|
||||
case L2CAP_EVENT_CAN_SEND_NOW:
|
||||
|
Loading…
x
Reference in New Issue
Block a user