This is an automated email from the ASF dual-hosted git repository.
andk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
from 98cd77dc3 controller: add missing os/util.h include
new d4b97f371 nimble/ll: Fix missing include
new 694d389e2 nimble/ll: Move HCI command handler out from ble_ll_isoal
new a9ac9116c nimble/ll: Remove unused function
new 03f4d1645 nimble/ll/isoal: Add initial framed PDU ISOAL support
new 559b16b75 nimble/ll/isoal: Fix broadcast of a Zero-Length SDU
new b9a5982cd nimble/ll/isoal: Fix unframed PDU end fragment LLID
new e98e2d239 nimble/ll/test: Add tests for early HCI ISO SDU rx
new 47d1e9c27 nimble/ll/big: Force using framed PDUs if needed
new 47eeaea89 nimble/ll: Increase link-layer default stack size
new 8bb24379f nimble/ll/iso: Add HCI LE ISO Transmit Test command
The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
nimble/controller/include/controller/ble_ll_iso.h | 76 +-
.../controller/include/controller/ble_ll_iso_big.h | 6 -
.../controller/include/controller/ble_ll_isoal.h | 51 +-
nimble/controller/src/ble_ll.c | 11 +-
nimble/controller/src/ble_ll_hci.c | 14 +-
nimble/controller/src/ble_ll_hci_supp_cmd.c | 6 +
nimble/controller/src/ble_ll_iso.c | 437 +++++++
nimble/controller/src/ble_ll_iso_big.c | 144 +--
nimble/controller/src/ble_ll_isoal.c | 448 ++++---
nimble/controller/syscfg.yml | 2 +-
nimble/controller/test/src/ble_ll_iso.c | 191 +++
nimble/controller/test/src/ble_ll_isoal.c | 1332 ++++++++++++++++++++
nimble/controller/test/src/ble_ll_test.c | 4 +
nimble/controller/test/syscfg.yml | 4 +
nimble/include/nimble/ble.h | 2 +
nimble/include/nimble/hci_common.h | 9 +
16 files changed, 2401 insertions(+), 336 deletions(-)
create mode 100644 nimble/controller/src/ble_ll_iso.c
create mode 100644 nimble/controller/test/src/ble_ll_iso.c
create mode 100644 nimble/controller/test/src/ble_ll_isoal.c