You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2018/01/15 17:42:33 UTC

[GitHub] aditihilbert closed pull request #366: Add missing `store/config` dep to BLE tutorial.

aditihilbert closed pull request #366: Add missing `store/config` dep to BLE tutorial.
URL: https://github.com/apache/mynewt-site/pull/366
 
 
   

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/docs/os/tutorials/ble_bare_bones.md b/docs/os/tutorials/ble_bare_bones.md
index 156183149..418929d33 100644
--- a/docs/os/tutorials/ble_bare_bones.md
+++ b/docs/os/tutorials/ble_bare_bones.md
@@ -123,8 +123,7 @@ Target targets/ble_tgt successfully set target.build_profile to optimized
 Since our application will support BLE functionality, we need to give it access
 to a BLE stack.  We do this by adding the necessary NimBLE packages to the
 app's dependency list.  To enable a combined host-controller in the app, add
-dependencies for the NimBLE controller, host, and in-RAM transport to
-`apps/ble_app/pkg.yml`:
+dependencies for the NimBLE controller, host, in-RAM transport, and persistence store to `apps/ble_app/pkg.yml`:
 
 ```hl_lines="6 7 8"
 pkg.deps:
@@ -134,6 +133,7 @@ pkg.deps:
     - "@apache-mynewt-core/sys/stats/full"
     - "@apache-mynewt-core/net/nimble/controller"
     - "@apache-mynewt-core/net/nimble/host"
+    - "@apache-mynewt-core/net/nimble/host/store/config"
     - "@apache-mynewt-core/net/nimble/transport/ram"
 ```
 


 

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services