You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2017/07/20 09:47:38 UTC

[mynewt-core] 01/01: Merge pull request #437 from sjanc/master_bluetooth5

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

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

commit 54a77a0d5b4515967ae0e298064410031b2850f1
Merge: 9403e75 a19b552
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Thu Jul 20 11:47:31 2017 +0200

    Merge pull request #437 from sjanc/master_bluetooth5
    
    merge bluetooth5 branch into master

 apps/bletest/src/bletest_hci.c                     |   10 +-
 apps/bletest/src/bletest_priv.h                    |    2 +-
 apps/bletest/src/main.c                            |   12 +-
 apps/bletiny/src/bletiny.h                         |   12 +
 apps/bletiny/src/cmd.c                             |  582 +++++-
 apps/bletiny/src/main.c                            |  163 +-
 hw/bsp/ada_feather_nrf52/syscfg.yml                |   11 +
 hw/bsp/arduino_primo_nrf52/syscfg.yml              |   11 +
 hw/bsp/bbc_microbit/syscfg.yml                     |   15 +
 hw/bsp/ble400/syscfg.yml                           |   11 +
 hw/bsp/bmd200/syscfg.yml                           |   15 +
 hw/bsp/bmd300eval/syscfg.yml                       |   11 +
 hw/bsp/native-armv7/syscfg.yml                     |    3 +
 hw/bsp/native-mips/syscfg.yml                      |    3 +
 hw/bsp/native/syscfg.yml                           |    3 +
 hw/bsp/nina-b1/syscfg.yml                          |   11 +
 hw/bsp/nrf51-arduino_101/syscfg.yml                |   11 +
 hw/bsp/nrf51-blenano/syscfg.yml                    |   11 +
 hw/bsp/nrf51dk-16kbram/syscfg.yml                  |   11 +
 hw/bsp/nrf51dk/syscfg.yml                          |   11 +
 hw/bsp/nrf52-thingy/syscfg.yml                     |   11 +
 hw/bsp/nrf52840pdk/syscfg.yml                      |   11 +
 hw/bsp/nrf52dk/syscfg.yml                          |   11 +
 hw/bsp/rb-blend2/syscfg.yml                        |   11 +
 hw/bsp/rb-nano2/syscfg.yml                         |   11 +
 hw/bsp/ruuvi_tag_revb2/syscfg.yml                  |   11 +
 hw/bsp/telee02/syscfg.yml                          |   11 +
 hw/bsp/vbluno51/syscfg.yml                         |   11 +
 hw/bsp/vbluno52/syscfg.yml                         |   11 +
 hw/drivers/nimble/native/src/ble_phy.c             |   58 +-
 hw/drivers/nimble/nrf51/include/ble/xcvr.h         |    9 +-
 hw/drivers/nimble/nrf51/src/ble_phy.c              |  184 +-
 hw/drivers/nimble/nrf52/include/ble/xcvr.h         |    9 +-
 hw/drivers/nimble/nrf52/src/ble_phy.c              |  357 ++--
 net/nimble/controller/include/controller/ble_hw.h  |    4 +-
 net/nimble/controller/include/controller/ble_ll.h  |  180 +-
 .../controller/include/controller/ble_ll_adv.h     |   37 +-
 .../controller/include/controller/ble_ll_conn.h    |   94 +-
 .../controller/include/controller/ble_ll_ctrl.h    |   34 +-
 .../controller/include/controller/ble_ll_hci.h     |    6 +-
 .../controller/include/controller/ble_ll_resolv.h  |    6 +-
 .../controller/include/controller/ble_ll_scan.h    |  101 +-
 .../controller/include/controller/ble_ll_sched.h   |   27 +-
 .../include/controller/ble_ll_test.h}              |    9 +-
 net/nimble/controller/include/controller/ble_phy.h |   83 +-
 net/nimble/controller/src/ble_ll.c                 |  248 ++-
 net/nimble/controller/src/ble_ll_adv.c             | 1919 ++++++++++++++++----
 net/nimble/controller/src/ble_ll_conn.c            | 1272 +++++++++----
 net/nimble/controller/src/ble_ll_conn_hci.c        |  421 ++++-
 net/nimble/controller/src/ble_ll_conn_priv.h       |   33 +-
 net/nimble/controller/src/ble_ll_ctrl.c            |  629 ++++++-
 net/nimble/controller/src/ble_ll_hci.c             |  238 ++-
 net/nimble/controller/src/ble_ll_hci_ev.c          |  114 +-
 net/nimble/controller/src/ble_ll_resolv.c          |   42 +-
 net/nimble/controller/src/ble_ll_scan.c            | 1685 ++++++++++++++---
 net/nimble/controller/src/ble_ll_sched.c           |  279 ++-
 net/nimble/controller/src/ble_ll_supp_cmd.c        |  186 +-
 net/nimble/controller/src/ble_ll_xcvr.c            |    1 +
 net/nimble/controller/syscfg.yml                   |   46 +-
 .../nimble/controller/test/pkg.yml                 |   30 +-
 net/nimble/controller/test/src/ble_ll_csa2_test.c  |  123 ++
 .../test/src/ble_ll_test.c}                        |   22 +-
 .../nimble/controller/test}/syscfg.yml             |   17 +-
 net/nimble/host/include/host/ble_gap.h             |   94 +
 net/nimble/host/include/host/ble_hs_hci.h          |    2 +
 net/nimble/host/pts/pts-gap.txt                    |   89 +-
 net/nimble/host/pts/pts-gatt.txt                   |   18 +-
 net/nimble/host/pts/pts-l2cap.txt                  |    2 +-
 net/nimble/host/pts/pts-sm.txt                     |   27 +-
 net/nimble/host/services/ans/src/ble_svc_ans.c     |    3 +
 net/nimble/host/src/ble_att_svr.c                  |   12 +-
 net/nimble/host/src/ble_gap.c                      |  976 +++++++++-
 net/nimble/host/src/ble_gap_priv.h                 |    5 +
 net/nimble/host/src/ble_hs_adv.c                   |    4 +
 net/nimble/host/src/ble_hs_conn_priv.h             |    2 +
 net/nimble/host/src/ble_hs_dbg.c                   |    5 +
 net/nimble/host/src/ble_hs_hci.c                   |   13 +
 net/nimble/host/src/ble_hs_hci_cmd.c               |  874 +++++++--
 net/nimble/host/src/ble_hs_hci_evt.c               |  131 +-
 net/nimble/host/src/ble_hs_hci_priv.h              |  116 +-
 net/nimble/host/src/ble_hs_hci_util.c              |   23 +-
 net/nimble/host/src/ble_hs_pvcy.c                  |   15 +
 net/nimble/host/src/ble_hs_pvcy_priv.h             |    1 +
 net/nimble/host/src/ble_hs_startup.c               |   52 +-
 net/nimble/host/src/ble_sm_lgcy.c                  |   12 +-
 net/nimble/host/src/ble_sm_sc.c                    |   12 +-
 net/nimble/host/test/src/ble_gap_test.c            |   98 +-
 net/nimble/host/test/src/ble_hs_conn_test.c        |   12 +
 net/nimble/host/test/src/ble_hs_test_util.c        |   38 +-
 net/nimble/host/test/src/ble_hs_test_util.h        |    7 +
 net/nimble/host/test/src/ble_os_test.c             |   10 +
 net/nimble/host/test/src/ble_sm_lgcy_test.c        |    2 +-
 net/nimble/host/test/src/ble_sm_test_util.c        |   12 +-
 net/nimble/include/nimble/ble.h                    |  186 +-
 net/nimble/include/nimble/hci_common.h             |  408 ++++-
 net/nimble/include/nimble/hci_vendor.h             |  112 --
 net/nimble/src/hci_common.c                        |   35 +-
 net/nimble/syscfg.yml                              |   13 +-
 net/nimble/transport/ram/syscfg.yml                |    3 +
 net/nimble/transport/socket/syscfg.yml             |    3 +
 net/nimble/transport/uart/syscfg.yml               |    3 +
 101 files changed, 10528 insertions(+), 2423 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"commits@mynewt.apache.org" <co...@mynewt.apache.org>.