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

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


    from 89e49d6  nimble/mesh: Fix provisioning rx_buf initialization
     add 9c6f8b1  nimble: Use packed structures for HCI commands and events

No new revisions were added by this update.

Summary of changes:
 apps/btshell/src/main.c                            |    4 +-
 apps/bttester/src/gap.c                            |    6 +-
 nimble/controller/include/controller/ble_hw.h      |    4 +-
 nimble/controller/include/controller/ble_ll.h      |    6 +-
 nimble/controller/include/controller/ble_ll_adv.h  |   35 +-
 nimble/controller/include/controller/ble_ll_conn.h |   33 +
 nimble/controller/include/controller/ble_ll_ctrl.h |    2 +-
 nimble/controller/include/controller/ble_ll_hci.h  |   13 +-
 .../controller/include/controller/ble_ll_resolv.h  |   20 +-
 nimble/controller/include/controller/ble_ll_scan.h |   18 +-
 nimble/controller/include/controller/ble_ll_sync.h |    8 +-
 .../include/controller/ble_ll_whitelist.h          |    4 +-
 nimble/controller/src/ble_ll.c                     |   18 +-
 nimble/controller/src/ble_ll_adv.c                 |  405 ++---
 nimble/controller/src/ble_ll_conn.c                |    2 +-
 nimble/controller/src/ble_ll_conn_hci.c            |  973 ++++++-----
 nimble/controller/src/ble_ll_conn_priv.h           |   74 +-
 nimble/controller/src/ble_ll_dtm.c                 |  178 +-
 nimble/controller/src/ble_ll_dtm_priv.h            |    8 +-
 nimble/controller/src/ble_ll_hci.c                 |  760 ++++-----
 nimble/controller/src/ble_ll_hci_ev.c              |  437 +++--
 nimble/controller/src/ble_ll_resolv.c              |  155 +-
 nimble/controller/src/ble_ll_scan.c                |  636 +++----
 nimble/controller/src/ble_ll_sync.c                |  264 ++-
 nimble/controller/src/ble_ll_whitelist.c           |   40 +-
 nimble/drivers/native/src/ble_hw.c                 |    4 +-
 nimble/drivers/nrf51/src/ble_hw.c                  |    4 +-
 nimble/drivers/nrf52/src/ble_hw.c                  |    4 +-
 nimble/host/include/host/ble_gap.h                 |    6 +-
 nimble/host/include/host/ble_hs_adv.h              |   28 +-
 nimble/host/src/ble_gap.c                          | 1417 ++++++++--------
 nimble/host/src/ble_gap_priv.h                     |   38 +-
 nimble/host/src/ble_hs.c                           |   10 +-
 nimble/host/src/ble_hs_adv.c                       |   19 +-
 nimble/host/src/ble_hs_hci.c                       |  134 +-
 nimble/host/src/ble_hs_hci_cmd.c                   | 1750 +-------------------
 nimble/host/src/ble_hs_hci_evt.c                   |  589 +++----
 nimble/host/src/ble_hs_hci_priv.h                  |  214 +--
 nimble/host/src/ble_hs_hci_util.c                  |  134 +-
 nimble/host/src/ble_hs_pvcy.c                      |  102 +-
 nimble/host/src/ble_hs_startup.c                   |  123 +-
 nimble/host/src/ble_sm.c                           |   98 +-
 nimble/host/src/ble_sm_priv.h                      |    6 +-
 nimble/host/test/src/ble_gap_test.c                |  119 +-
 nimble/host/test/src/ble_gatt_conn_test.c          |    7 +-
 nimble/host/test/src/ble_hs_adv_test.c             |    3 +
 nimble/host/test/src/ble_hs_conn_test.c            |   10 +-
 nimble/host/test/src/ble_hs_hci_test.c             |   10 +-
 nimble/host/test/src/ble_hs_test_util.c            |   17 +-
 nimble/host/test/src/ble_hs_test_util.h            |   20 +
 nimble/host/test/src/ble_hs_test_util_hci.c        |   23 +-
 nimble/host/test/src/ble_hs_test_util_hci.h        |    4 +-
 nimble/host/test/src/ble_l2cap_test.c              |    2 +
 nimble/host/test/src/ble_os_test.c                 |   18 +-
 nimble/host/test/src/ble_sm_test.c                 |    4 +-
 nimble/host/test/src/ble_sm_test_util.c            |   23 +-
 nimble/include/nimble/hci_common.h                 | 1579 ++++++++++--------
 nimble/transport/emspi/src/ble_hci_emspi.c         |    6 +-
 nimble/transport/socket/src/ble_hci_socket.c       |   12 +-
 nimble/transport/uart/src/ble_hci_uart.c           |   28 +-
 60 files changed, 4519 insertions(+), 6149 deletions(-)

Reply via email to