This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch update-ports-syscfg
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
from 98cd77dc3 controller: add missing os/util.h include
add d4b97f371 nimble/ll: Fix missing include
add 694d389e2 nimble/ll: Move HCI command handler out from ble_ll_isoal
add a9ac9116c nimble/ll: Remove unused function
add 03f4d1645 nimble/ll/isoal: Add initial framed PDU ISOAL support
add 559b16b75 nimble/ll/isoal: Fix broadcast of a Zero-Length SDU
add b9a5982cd nimble/ll/isoal: Fix unframed PDU end fragment LLID
add e98e2d239 nimble/ll/test: Add tests for early HCI ISO SDU rx
add 47d1e9c27 nimble/ll/big: Force using framed PDUs if needed
add 47eeaea89 nimble/ll: Increase link-layer default stack size
add 8bb24379f nimble/ll/iso: Add HCI LE ISO Transmit Test command
No new revisions were added by this update.
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