[mynewt-core] 01/01: Merge pull request #1073 from wes3/lora_stop_rx_bug

2018-05-07 Thread wes3
This is an automated email from the ASF dual-hosted git repository.

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

commit 3a68537bb0dffd4f74672ca38d4a9ac566bc215f
Merge: 3532ba2 3935f83
Author: wes3 
AuthorDate: Mon May 7 11:51:38 2018 -0700

Merge pull request #1073 from wes3/lora_stop_rx_bug

net/lora: Fix issue with radio stop receiving

 net/lora/node/src/mac/LoRaMac.c | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
w...@apache.org.


[GitHub] mkiiskila commented on issue #1074: Newt Manager (McuMgr) config group "save" command

2018-05-07 Thread GitBox
mkiiskila commented on issue #1074: Newt Manager (McuMgr) config group "save" 
command
URL: https://github.com/apache/mynewt-core/issues/1074#issuecomment-387162670
 
 
   Yup, that would be reasonable. I can add it.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] bgiori opened a new issue #1074: Newt Manager (McuMgr) config group "save" command

2018-05-07 Thread GitBox
bgiori opened a new issue #1074: Newt Manager (McuMgr) config group "save" 
command
URL: https://github.com/apache/mynewt-core/issues/1074
 
 
   The newt manager config group currently has a write command which sets the 
config value and commits the value but does not save it. 
   
   It would be very useful to have a command which saves the config in order to 
persist config writes across device resets.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[mynewt-core] branch coverity_scan updated: Install multilib

2018-05-07 Thread utzig
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/coverity_scan by this push:
 new b45a818  Install multilib
b45a818 is described below

commit b45a818013b3fdf30528bce1ae1bfbdce6a8
Author: Fabio Utzig 
AuthorDate: Mon May 7 11:04:11 2018 -0300

Install multilib
---
 .travis.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.travis.yml b/.travis.yml
index 430fd44..bd2e216 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,6 +7,7 @@ before_install:
   #- sudo apt-get -qq update
   #- sudo apt-get install libc6-dev-i386 gcc-5-multilib g++-5-multilib
   #- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 
--slave /usr/bin/g++ g++ /usr/bin/g++-5
+  - sudo apt-get install gcc-multilib g++-multilib
   - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne 
'/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
   - git clone https://github.com/apache/mynewt-newt
   - cd mynewt-newt && ./build.sh && cd ..

-- 
To stop receiving notification emails like this one, please contact
ut...@apache.org.


[GitHub] SharanIoT commented on issue #1027: more than 31 bytes in advertsing and scanning

2018-05-07 Thread GitBox
SharanIoT commented on issue #1027: more than 31 bytes in advertsing and 
scanning
URL: https://github.com/apache/mynewt-core/issues/1027#issuecomment-387073995
 
 
   @swapkada Advertising or Scan Response data length is max 31 Octets as per 
the Bluetooth Core Spec 4.2


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[mynewt-core] branch coverity_scan updated: Use gcc-4.8

2018-05-07 Thread utzig
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/coverity_scan by this push:
 new 4bcbcc9  Use gcc-4.8
4bcbcc9 is described below

commit 4bcbcc98c6b913b0c28f52163955094c936626fc
Author: Fabio Utzig 
AuthorDate: Mon May 7 10:35:14 2018 -0300

Use gcc-4.8
---
 .travis.yml | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index dd15709..430fd44 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,10 +3,10 @@ dist: trusty
 sudo: required
 
 before_install:
-  - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
-  - sudo apt-get -qq update
-  - sudo apt-get install libc6-dev-i386 gcc-5-multilib g++-5-multilib
-  - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 
--slave /usr/bin/g++ g++ /usr/bin/g++-5
+  #- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+  #- sudo apt-get -qq update
+  #- sudo apt-get install libc6-dev-i386 gcc-5-multilib g++-5-multilib
+  #- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 
--slave /usr/bin/g++ g++ /usr/bin/g++-5
   - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne 
'/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
   - git clone https://github.com/apache/mynewt-newt
   - cd mynewt-newt && ./build.sh && cd ..
@@ -24,6 +24,7 @@ addons:
   version: 1.3.0
   description: "An OS to build, deploy and securely manage billions of 
devices"
 notification_email: ut...@apache.org
-build_command_prepend: "cov-configure --gcc"
+# build_command_prepend: "cov-configure --gcc"
+build_command_prepend: "cov-configure --comptype gcc --compiler gcc-4.8 
--template"
 build_command: "cov-build --dir cov-int mynewt-newt/newt/newt test 
--executeShell all -e net/ip/mn_socket,net/oic"
 branch_pattern: "coverity_scan"

-- 
To stop receiving notification emails like this one, please contact
ut...@apache.org.


[mynewt-core] branch master updated (3981383 -> 3532ba2)

2018-05-07 Thread janc
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-core.git.


from 3981383  Merge pull request #1071 from kasjer/charge-control-fix
 add 6943d7f  btshell: Fix scan command in legacy mode
 new 3532ba2  Merge pull request #1070 from sjanc/btshell

The 1 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:
 apps/btshell/src/cmd.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
j...@apache.org.


[mynewt-core] 01/01: Merge pull request #1070 from sjanc/btshell

2018-05-07 Thread janc
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 3532ba24c521a37c7f5fa3b3f66108054578a125
Merge: 3981383 6943d7f
Author: Szymon Janc 
AuthorDate: Mon May 7 10:53:17 2018 +0200

Merge pull request #1070 from sjanc/btshell

btshell: Fix scan command in legacy mode

 apps/btshell/src/cmd.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
j...@apache.org.


[GitHub] sjanc closed pull request #1070: btshell: Fix scan command in legacy mode

2018-05-07 Thread GitBox
sjanc closed pull request #1070: btshell: Fix scan command in legacy mode
URL: https://github.com/apache/mynewt-core/pull/1070
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/apps/btshell/src/cmd.c b/apps/btshell/src/cmd.c
index 4dcd9507b..b16a66519 100644
--- a/apps/btshell/src/cmd.c
+++ b/apps/btshell/src/cmd.c
@@ -1185,6 +1185,8 @@ cmd_scan(int argc, char **argv)
 console_printf("error scanning; rc=%d\n", rc);
 return rc;
 }
+
+return 0;
 }
 
 /* Copy above parameters to uncoded params */


 


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] sjanc opened a new issue #80: Move BLE sample apps from core to nimble repo

2018-05-07 Thread GitBox
sjanc opened a new issue #80: Move BLE sample apps from core to nimble repo
URL: https://github.com/apache/mynewt-nimble/issues/80
 
 
   We could have sample apps in nimble instead of core repo.
   Since sample applications are OS specific we probably need to keep them per 
os eg  apps/mynewt/ apps/freertos etc.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] sjanc commented on issue #1070: btshell: Fix scan command in legacy mode

2018-05-07 Thread GitBox
sjanc commented on issue #1070: btshell: Fix scan command in legacy mode
URL: https://github.com/apache/mynewt-core/pull/1070#issuecomment-386979209
 
 
   Hi Sterling,
   
   This is something we were discussing with guys in the office, the thing is 
that our BLE sample apps are Mynewt applications and it feels like those should 
be in mynewt-core repo. Those just depends on apache-nimble for functionality.  
   
   That said, we could have apps/mynewt apps/freertos apps/linux etc in 
apache-nimble and keep those there per OS supported. I'm fine with that too.  
I'll create issue for this.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] rymanluk closed pull request #50: strip trailing whitespace from all files

2018-05-07 Thread GitBox
rymanluk closed pull request #50: strip trailing whitespace from all files
URL: https://github.com/apache/mynewt-nimble/pull/50
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/nimble/controller/pkg.yml b/nimble/controller/pkg.yml
index 8ccb9f8c..d4efe806 100644
--- a/nimble/controller/pkg.yml
+++ b/nimble/controller/pkg.yml
@@ -6,7 +6,7 @@
 # to you under the Apache License, Version 2.0 (the
 # "License"); you may not use this file except in compliance
 # with the License.  You may obtain a copy of the License at
-# 
+#
 #  http://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing,
diff --git a/nimble/controller/src/ble_ll_scan.c 
b/nimble/controller/src/ble_ll_scan.c
index 33a180ed..67b60d79 100644
--- a/nimble/controller/src/ble_ll_scan.c
+++ b/nimble/controller/src/ble_ll_scan.c
@@ -963,7 +963,7 @@ ble_ll_scan_start(struct ble_ll_scan_sm *scansm, struct 
ble_ll_sched_item *sch)
  */
 assert(!sch || scan_chan < BLE_PHY_ADV_CHAN_START);
 assert(sch || scan_chan >= BLE_PHY_ADV_CHAN_START);
-
+
 /* Set channel */
 rc = ble_phy_setchan(scan_chan, BLE_ACCESS_ADDR_ADV, BLE_LL_CRCINIT_ADV);
 assert(rc == 0);
@@ -2602,7 +2602,7 @@ ble_ll_scan_set_scan_params(uint8_t *cmd)
 scanp->scan_window = scan_window;
 scanp->scan_filt_policy = filter_policy;
 scanp->own_addr_type = own_addr_type;
-
+
 #if (BLE_LL_SCAN_PHY_NUMBER == 2)
 g_ble_ll_scan_params[PHY_CODED].configured = 0;
 #endif
diff --git a/nimble/drivers/native/pkg.yml b/nimble/drivers/native/pkg.yml
index 87958986..d0af185b 100644
--- a/nimble/drivers/native/pkg.yml
+++ b/nimble/drivers/native/pkg.yml
@@ -6,7 +6,7 @@
 # to you under the Apache License, Version 2.0 (the
 # "License"); you may not use this file except in compliance
 # with the License.  You may obtain a copy of the License at
-# 
+#
 #  http://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing,
diff --git a/nimble/drivers/nrf51/pkg.yml b/nimble/drivers/nrf51/pkg.yml
index 5f17d6fa..816a5635 100644
--- a/nimble/drivers/nrf51/pkg.yml
+++ b/nimble/drivers/nrf51/pkg.yml
@@ -6,7 +6,7 @@
 # to you under the Apache License, Version 2.0 (the
 # "License"); you may not use this file except in compliance
 # with the License.  You may obtain a copy of the License at
-# 
+#
 #  http://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing,
diff --git a/nimble/drivers/nrf52/pkg.yml b/nimble/drivers/nrf52/pkg.yml
index 180919cb..a1ff457e 100644
--- a/nimble/drivers/nrf52/pkg.yml
+++ b/nimble/drivers/nrf52/pkg.yml
@@ -6,7 +6,7 @@
 # to you under the Apache License, Version 2.0 (the
 # "License"); you may not use this file except in compliance
 # with the License.  You may obtain a copy of the License at
-# 
+#
 #  http://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing,
diff --git a/nimble/host/include/host/ble_att.h 
b/nimble/host/include/host/ble_att.h
index 3f156110..f2ccc2cd 100644
--- a/nimble/host/include/host/ble_att.h
+++ b/nimble/host/include/host/ble_att.h
@@ -6,7 +6,7 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *  http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing,
diff --git a/nimble/host/include/host/ble_gatt.h 
b/nimble/host/include/host/ble_gatt.h
index 68d95585..86a99bfd 100644
--- a/nimble/host/include/host/ble_gatt.h
+++ b/nimble/host/include/host/ble_gatt.h
@@ -6,7 +6,7 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *  http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing,
@@ -231,7 +231,7 @@ struct ble_gatt_chr_def {
 /** Specifies minimum required key size to access this characteristic. */
 uint8_t min_key_size;
 
-/** 
+/**
  * At registration time, this is filled in with the characteristic's value
  * attribute handle.
  */
diff --git a/nimble/host/include/host/ble_hs_test.h 
b/nimble/host/include/host/ble_hs_test.h
index a7f60853..8fc580df 100644
--- a/nimble/host/include/host/ble_hs_test.h
+++ b/nimble/host/include/host/ble_hs_test.h
@@ -6,7 +6,7 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *  

[mynewt-nimble] 01/01: Merge pull request #50 from samveen/small_fixes

2018-05-07 Thread rymek
This is an automated email from the ASF dual-hosted git repository.

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

commit 03d349488407c389ad3348d0730d9a8b82a6ceb7
Merge: a22f6e8 e4065a0
Author: Ɓukasz Rymanowski 
AuthorDate: Mon May 7 09:08:21 2018 +0200

Merge pull request #50 from samveen/small_fixes

Strip trailing whitespace from all files

 nimble/controller/pkg.yml  |   2 +-
 nimble/controller/src/ble_ll_scan.c|   4 +-
 nimble/drivers/native/pkg.yml  |   2 +-
 nimble/drivers/nrf51/pkg.yml   |   2 +-
 nimble/drivers/nrf52/pkg.yml   |   2 +-
 nimble/host/include/host/ble_att.h |   2 +-
 nimble/host/include/host/ble_gatt.h|   4 +-
 nimble/host/include/host/ble_hs_test.h |   2 +-
 nimble/host/include/host/ble_monitor.h |   2 +-
 nimble/host/include/host/ble_store.h   |   4 +-
 nimble/host/include/host/ble_uuid.h|   2 +-
 nimble/host/mesh/pkg.yml   |   4 +-
 nimble/host/mesh/syscfg.yml|  24 ++---
 nimble/host/pkg.yml|   2 +-
 nimble/host/pts/pts-gap.txt|   2 +-
 nimble/host/pts/pts-gatt.txt   |  14 +--
 .../ans/include/services/ans/ble_svc_ans.h |   8 +-
 nimble/host/services/ans/pkg.yml   |   8 +-
 nimble/host/services/ans/src/ble_svc_ans.c | 112 ++---
 nimble/host/services/bas/pkg.yml   |   6 +-
 .../dis/include/services/dis/ble_svc_dis.h |   4 +-
 nimble/host/services/dis/pkg.yml   |   4 +-
 nimble/host/services/dis/src/ble_svc_dis.c |  12 +--
 nimble/host/services/gap/pkg.yml   |   4 +-
 nimble/host/services/gatt/pkg.yml  |   2 +-
 .../ias/include/services/ias/ble_svc_ias.h |   2 +-
 nimble/host/services/ias/pkg.yml   |   6 +-
 nimble/host/services/ias/src/ble_svc_ias.c |  20 ++--
 .../lls/include/services/lls/ble_svc_lls.h |   4 +-
 nimble/host/services/lls/pkg.yml   |   4 +-
 nimble/host/services/lls/src/ble_svc_lls.c |  38 +++
 nimble/host/services/tps/pkg.yml   |   4 +-
 nimble/host/services/tps/src/ble_svc_tps.c |   4 +-
 nimble/host/src/ble_att.c  |   2 +-
 nimble/host/src/ble_att_clt.c  |   4 +-
 nimble/host/src/ble_att_cmd.c  |   2 +-
 nimble/host/src/ble_att_cmd_priv.h |   2 +-
 nimble/host/src/ble_att_svr.c  |   6 +-
 nimble/host/src/ble_eddystone.c|   2 +-
 nimble/host/src/ble_gap.c  |   2 +-
 nimble/host/src/ble_gatt_priv.h|   2 +-
 nimble/host/src/ble_gatts.c|   4 +-
 nimble/host/src/ble_hs_adv.c   |   2 +-
 nimble/host/src/ble_hs_conn.c  |   6 +-
 nimble/host/src/ble_hs_conn_priv.h |   2 +-
 nimble/host/src/ble_hs_dbg_priv.h  |   2 +-
 nimble/host/src/ble_hs_flow.c  |   6 +-
 nimble/host/src/ble_hs_flow_priv.h |   2 +-
 nimble/host/src/ble_hs_hci.c   |   4 +-
 nimble/host/src/ble_hs_mbuf.c  |   2 +-
 nimble/host/src/ble_hs_mbuf_priv.h |   2 +-
 nimble/host/src/ble_hs_misc.c  |   2 +-
 nimble/host/src/ble_hs_startup_priv.h  |   2 +-
 nimble/host/src/ble_l2cap.c|   4 +-
 nimble/host/src/ble_l2cap_coc.c|   2 +-
 nimble/host/src/ble_l2cap_priv.h   |   2 +-
 nimble/host/src/ble_l2cap_sig.c|   6 +-
 nimble/host/src/ble_l2cap_sig_cmd.c|   2 +-
 nimble/host/src/ble_l2cap_sig_priv.h   |   2 +-
 nimble/host/src/ble_monitor_priv.h |   2 +-
 nimble/host/src/ble_sm_priv.h  |   2 +-
 nimble/host/src/ble_store_util.c   |   4 +-
 nimble/host/src/ble_uuid.c |   2 +-
 nimble/host/store/config/pkg.yml   |   2 +-
 nimble/host/store/ram/pkg.yml  |   2 +-
 nimble/host/test/pkg.yml   |   2 +-
 nimble/host/test/src/ble_att_clt_test.c|   2 +-
 nimble/host/test/src/ble_att_svr_test.c|   2 +-
 nimble/host/test/src/ble_gap_test.c|   2 +-
 nimble/host/test/src/ble_gatt_conn_test.c  |   2 +-
 nimble/host/test/src/ble_gatt_disc_c_test.c|   2 +-
 nimble/host/test/src/ble_gatt_disc_d_test.c|   2 +-
 nimble/host/test/src/ble_gatt_disc_s_test.c|   2 +-
 nimble/host/test/src/ble_gatt_find_s_test.c|   2 +-
 

[GitHub] rymanluk commented on issue #50: strip trailing whitespace from all files

2018-05-07 Thread GitBox
rymanluk commented on issue #50: strip trailing whitespace from all files
URL: https://github.com/apache/mynewt-nimble/pull/50#issuecomment-386977662
 
 
   @samveen , Thanks, it is merged now.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[mynewt-nimble] branch master updated (a22f6e8 -> 03d3494)

2018-05-07 Thread rymek
This is an automated email from the ASF dual-hosted git repository.

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


from a22f6e8  Merge pull request #79 from andrzej-kaczmarek/ll-trng
 add e4065a0  strip all trailing whitespace
 new 03d3494  Merge pull request #50 from samveen/small_fixes

The 1 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/pkg.yml  |   2 +-
 nimble/controller/src/ble_ll_scan.c|   4 +-
 nimble/drivers/native/pkg.yml  |   2 +-
 nimble/drivers/nrf51/pkg.yml   |   2 +-
 nimble/drivers/nrf52/pkg.yml   |   2 +-
 nimble/host/include/host/ble_att.h |   2 +-
 nimble/host/include/host/ble_gatt.h|   4 +-
 nimble/host/include/host/ble_hs_test.h |   2 +-
 nimble/host/include/host/ble_monitor.h |   2 +-
 nimble/host/include/host/ble_store.h   |   4 +-
 nimble/host/include/host/ble_uuid.h|   2 +-
 nimble/host/mesh/pkg.yml   |   4 +-
 nimble/host/mesh/syscfg.yml|  24 ++---
 nimble/host/pkg.yml|   2 +-
 nimble/host/pts/pts-gap.txt|   2 +-
 nimble/host/pts/pts-gatt.txt   |  14 +--
 .../ans/include/services/ans/ble_svc_ans.h |   8 +-
 nimble/host/services/ans/pkg.yml   |   8 +-
 nimble/host/services/ans/src/ble_svc_ans.c | 112 ++---
 nimble/host/services/bas/pkg.yml   |   6 +-
 .../dis/include/services/dis/ble_svc_dis.h |   4 +-
 nimble/host/services/dis/pkg.yml   |   4 +-
 nimble/host/services/dis/src/ble_svc_dis.c |  12 +--
 nimble/host/services/gap/pkg.yml   |   4 +-
 nimble/host/services/gatt/pkg.yml  |   2 +-
 .../ias/include/services/ias/ble_svc_ias.h |   2 +-
 nimble/host/services/ias/pkg.yml   |   6 +-
 nimble/host/services/ias/src/ble_svc_ias.c |  20 ++--
 .../lls/include/services/lls/ble_svc_lls.h |   4 +-
 nimble/host/services/lls/pkg.yml   |   4 +-
 nimble/host/services/lls/src/ble_svc_lls.c |  38 +++
 nimble/host/services/tps/pkg.yml   |   4 +-
 nimble/host/services/tps/src/ble_svc_tps.c |   4 +-
 nimble/host/src/ble_att.c  |   2 +-
 nimble/host/src/ble_att_clt.c  |   4 +-
 nimble/host/src/ble_att_cmd.c  |   2 +-
 nimble/host/src/ble_att_cmd_priv.h |   2 +-
 nimble/host/src/ble_att_svr.c  |   6 +-
 nimble/host/src/ble_eddystone.c|   2 +-
 nimble/host/src/ble_gap.c  |   2 +-
 nimble/host/src/ble_gatt_priv.h|   2 +-
 nimble/host/src/ble_gatts.c|   4 +-
 nimble/host/src/ble_hs_adv.c   |   2 +-
 nimble/host/src/ble_hs_conn.c  |   6 +-
 nimble/host/src/ble_hs_conn_priv.h |   2 +-
 nimble/host/src/ble_hs_dbg_priv.h  |   2 +-
 nimble/host/src/ble_hs_flow.c  |   6 +-
 nimble/host/src/ble_hs_flow_priv.h |   2 +-
 nimble/host/src/ble_hs_hci.c   |   4 +-
 nimble/host/src/ble_hs_mbuf.c  |   2 +-
 nimble/host/src/ble_hs_mbuf_priv.h |   2 +-
 nimble/host/src/ble_hs_misc.c  |   2 +-
 nimble/host/src/ble_hs_startup_priv.h  |   2 +-
 nimble/host/src/ble_l2cap.c|   4 +-
 nimble/host/src/ble_l2cap_coc.c|   2 +-
 nimble/host/src/ble_l2cap_priv.h   |   2 +-
 nimble/host/src/ble_l2cap_sig.c|   6 +-
 nimble/host/src/ble_l2cap_sig_cmd.c|   2 +-
 nimble/host/src/ble_l2cap_sig_priv.h   |   2 +-
 nimble/host/src/ble_monitor_priv.h |   2 +-
 nimble/host/src/ble_sm_priv.h  |   2 +-
 nimble/host/src/ble_store_util.c   |   4 +-
 nimble/host/src/ble_uuid.c |   2 +-
 nimble/host/store/config/pkg.yml   |   2 +-
 nimble/host/store/ram/pkg.yml  |   2 +-
 nimble/host/test/pkg.yml   |   2 +-
 nimble/host/test/src/ble_att_clt_test.c|   2 +-
 nimble/host/test/src/ble_att_svr_test.c|   2 +-
 nimble/host/test/src/ble_gap_test.c|   2 +-
 nimble/host/test/src/ble_gatt_conn_test.c  |   2 +-
 nimble/host/test/src/ble_gatt_disc_c_test.c|   2 +-