You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2016/04/05 05:32:42 UTC

[3/8] incubator-mynewt-site git commit: nimble tutorial: Use correct core repo in examples

nimble tutorial: Use correct core repo in examples


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/c2654a00
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/c2654a00
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/c2654a00

Branch: refs/heads/master
Commit: c2654a0088d5811ddc8f8495c71e040b9506b467
Parents: 884fb87
Author: Christopher Collins <cc...@apache.org>
Authored: Sat Apr 2 10:26:18 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Sat Apr 2 11:39:39 2016 -0700

----------------------------------------------------------------------
 docs/network/ble/nimble_setup.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c2654a00/docs/network/ble/nimble_setup.md
----------------------------------------------------------------------
diff --git a/docs/network/ble/nimble_setup.md b/docs/network/ble/nimble_setup.md
index 51f7f0b..c00278f 100644
--- a/docs/network/ble/nimble_setup.md
+++ b/docs/network/ble/nimble_setup.md
@@ -114,22 +114,22 @@ The target is not yet complete though! We need to set some target variables for
 Here is the command you will need to set up your target for the nrf52:
 
 ```no-highlight
-$ newt target set ble_tgt app=apps/ble_app          \
-                          bsp=hw/bsp/nrf52pdk       \
+$ newt target set ble_tgt app=apps/ble_app                              \
+                          bsp=@apache-mynewt-core/hw/bsp/nrf52pdk       \
                           build_profile=optimized
 Target targets/ble_tgt successfully set target.app to apps/ble_app
-Target targets/ble_tgt successfully set target.bsp to hw/bsp/nrf52pdk
+Target targets/ble_tgt successfully set target.bsp to @apache-mynewt-core/hw/bsp/nrf52pdk
 Target targets/ble_tgt successfully set target.build_profile to optimized
 ```
 
 Here is the command you will need to set up your target for the nrf51:
 
 ```no-highlight
-$ newt target set ble_tgt app=apps/ble_app          \
-                          bsp=hw/bsp/nrf51dk        \
+$ newt target set ble_tgt app=apps/ble_app                              \
+                          bsp=@apache-mynewt-core/hw/bsp/nrf51dk        \
                           build_profile=optimized
 Target targets/ble_tgt successfully set target.app to apps/ble_app
-Target targets/ble_tgt successfully set target.bsp to hw/bsp/nrf51dk
+Target targets/ble_tgt successfully set target.bsp to @apache-mynewt-core/hw/bsp/nrf51dk
 Target targets/ble_tgt successfully set target.build_profile to optimized
 ```