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 b2ebf763 nimble/host: Fix data type of power level and delta to handle
negative values
new 2a566fa8 nimble/ll: Cleanup transport handlers
new d56bd9de nimble/ll: Add macros to handle conn handles
new 6d02d340 nimble/ll: Initial support for ISO Broadcasting state
new 6349d771 nimble/ll: Add BIGInfo to periodic adv train
new ca043593 nimble/transport: Add ISO support
new c1cfe3de nimble/ll: Initial ISOAL implementation
new dacbdbe5 nimble/ll: Add LE BIG Create command handling
new 4dfc8eee nimble/ll: Update supported commands bitmask
new b2405153 nimble/host: Add dummy implementation for ISO rx
The 9 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.h | 30 +
nimble/controller/include/controller/ble_ll_adv.h | 14 +
nimble/controller/include/controller/ble_ll_hci.h | 4 +
.../controller/include/controller/ble_ll_iso_big.h | 60 +
.../controller/include/controller/ble_ll_isoal.h | 84 ++
.../controller/include/controller/ble_ll_sched.h | 5 +
nimble/controller/src/ble_ll.c | 36 +-
nimble/controller/src/ble_ll_adv.c | 98 ++
nimble/controller/src/ble_ll_conn_priv.h | 3 -
nimble/controller/src/ble_ll_hci.c | 71 +-
nimble/controller/src/ble_ll_hci_supp_cmd.c | 14 +-
nimble/controller/src/ble_ll_iso_big.c | 1376 ++++++++++++++++++++
nimble/controller/src/ble_ll_isoal.c | 403 ++++++
nimble/controller/src/ble_ll_sched.c | 36 +
nimble/controller/syscfg.yml | 17 +
nimble/host/src/ble_hs.c | 8 +
nimble/include/nimble/ble.h | 5 +
nimble/include/nimble/hci_common.h | 31 +
.../hci_h4/include/nimble/transport/hci_h4.h | 2 +
nimble/transport/common/hci_h4/src/hci_h4.c | 14 +
.../hci_ipc/include/nimble/transport/hci_ipc.h | 1 +
nimble/transport/common/hci_ipc/src/hci_ipc.c | 15 +
nimble/transport/include/nimble/transport.h | 4 +
.../transport/include/nimble/transport/monitor.h | 12 +
nimble/transport/include/nimble/transport_impl.h | 2 +
nimble/transport/nrf5340/src/nrf5340_ble_hci.c | 35 +
nimble/transport/src/monitor.c | 16 +
nimble/transport/src/monitor_priv.h | 2 +
nimble/transport/src/transport.c | 69 +
nimble/transport/syscfg.yml | 21 +
nimble/transport/uart/src/hci_uart.c | 30 +
31 files changed, 2485 insertions(+), 33 deletions(-)
create mode 100644 nimble/controller/include/controller/ble_ll_iso_big.h
create mode 100644 nimble/controller/include/controller/ble_ll_isoal.h
create mode 100644 nimble/controller/src/ble_ll_iso_big.c
create mode 100644 nimble/controller/src/ble_ll_isoal.c