hci_transport_h2_libusb: assert on unknown packet types

This commit is contained in:
Matthias Ringwald 2024-04-08 17:35:44 +02:00
parent d8905293ab
commit 348725bedd

View File

@ -1476,6 +1476,7 @@ static int usb_send_packet(uint8_t packet_type, uint8_t * packet, int size){
return usb_send_sco_packet(packet, size);
#endif
default:
btstack_assert(false);
return -1;
}
}