Dear Nordic Team,
I'm currently working on an application that uses ACL and ISO to transmit data between 2 devices.
ACL is used for transmitting operations that are then performed on the receiving device and ISO is used for transmitting time sensitive data.
Sometimes the receiving application may block the receiving ACL data for a few seconds (which leads to no more ACL buffers), which is okay and expected.
However, I would expect that while the ACL data is blocked, I still may be able to receive data from ISO.
Unfortunately, this is not the case and I assume that this use case should work.
After some investigation into the issue, I saw that the Zephyr SDC HCI driver calls `sdc_hci_get` to get data from the controller and then tries to obtain the buffer until it is available. If the data is now for e.g. ACL data and we have no more available ACL buffers, we also block the reception of ISO data (and also regular HCI events).
I've seen that for sending there are multiple function calls (`sdc_hci_data_put` and `sdc_hci_iso_data_put`) and in previous SDC versions there were also different get functions for obtaining data from the controller, but this was unfortunately removed.
Would it be able to again get multiple SDC get functions instead of the single one, or are there internal limitations (e.g. single HCI queue) that do not allow for splitting these?
Thank you.
nRF SDK v3.2.0