This is an automated email from the ASF dual-hosted git repository.

andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit b24051536a6e5feab45434cf7650800a7677ca31
Author: Andrzej Kaczmarek <andrzej.kaczma...@codecoup.pl>
AuthorDate: Wed May 31 18:10:37 2023 +0200

    nimble/host: Add dummy implementation for ISO rx
    
    This just frees the buffer since host does not handle them (yet).
---
 nimble/host/src/ble_hs.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/nimble/host/src/ble_hs.c b/nimble/host/src/ble_hs.c
index aeace63a..aa97c6bf 100644
--- a/nimble/host/src/ble_hs.c
+++ b/nimble/host/src/ble_hs.c
@@ -799,6 +799,14 @@ ble_transport_to_hs_acl_impl(struct os_mbuf *om)
     return ble_hs_rx_data(om, NULL);
 }
 
+int
+ble_transport_to_hs_iso_impl(struct os_mbuf *om)
+{
+    os_mbuf_free_chain(om);
+
+    return 0;
+}
+
 void
 ble_transport_hs_init(void)
 {

Reply via email to