mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-16 08:42:28 +00:00
avrcp_controller: add missing break in switch
This commit is contained in:
parent
aaf84b48fb
commit
d7913bdc28
@ -1136,7 +1136,7 @@ static void avrcp_handle_l2cap_data_packet_for_signaling_connection(avrcp_connec
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case AVRCP_PDU_ID_GET_ELEMENT_ATTRIBUTES:{
|
case AVRCP_PDU_ID_GET_ELEMENT_ATTRIBUTES:
|
||||||
switch (vendor_dependent_avrcp_packet_type){
|
switch (vendor_dependent_avrcp_packet_type){
|
||||||
case AVRCP_START_PACKET:
|
case AVRCP_START_PACKET:
|
||||||
case AVRCP_SINGLE_PACKET:
|
case AVRCP_SINGLE_PACKET:
|
||||||
@ -1173,7 +1173,8 @@ static void avrcp_handle_l2cap_data_packet_for_signaling_connection(avrcp_connec
|
|||||||
btstack_assert(false);
|
btstack_assert(false);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
// custom command response comes here
|
// custom command response comes here
|
||||||
switch (pdu_id){
|
switch (pdu_id){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user