mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-16 08:42:28 +00:00
hci: reset iso task on create big or big create sync command status error
This commit is contained in:
parent
0fc451bcf7
commit
15f9bb6dad
12
src/hci.c
12
src/hci.c
@ -3288,6 +3288,18 @@ static void handle_command_status_event(uint8_t * packet, uint16_t size) {
|
||||
hci_iso_stream_requested_finalize(HCI_ISO_GROUP_ID_INVALID);
|
||||
}
|
||||
break;
|
||||
case HCI_OPCODE_HCI_LE_CREATE_BIG:
|
||||
if (status != ERROR_CODE_SUCCESS){
|
||||
log_info("TODO: handle Create BIG failed");
|
||||
hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
|
||||
}
|
||||
break;
|
||||
case HCI_OPCODE_HCI_LE_BIG_CREATE_SYNC:
|
||||
if (status != ERROR_CODE_SUCCESS){
|
||||
log_info("TODO: handle BIG Sync failed");
|
||||
hci_stack->iso_active_operation_type = HCI_ISO_TYPE_INVALID;
|
||||
}
|
||||
break;
|
||||
#endif /* ENABLE_LE_ISOCHRONOUS_STREAMS */
|
||||
default:
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user