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:44 UTC

[5/8] incubator-mynewt-site git commit: nimble tutorial: Use my_proj1 instead of larva.

nimble tutorial: Use my_proj1 instead of larva.


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/b337a831
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/b337a831
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/b337a831

Branch: refs/heads/master
Commit: b337a8319328894bfb48c5473edbc6cb40182f35
Parents: c2654a0
Author: Christopher Collins <cc...@apache.org>
Authored: Sat Apr 2 10:35:11 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Sat Apr 2 11:39:40 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b337a831/docs/network/ble/nimble_setup.md
----------------------------------------------------------------------
diff --git a/docs/network/ble/nimble_setup.md b/docs/network/ble/nimble_setup.md
index c00278f..d4ae32a 100644
--- a/docs/network/ble/nimble_setup.md
+++ b/docs/network/ble/nimble_setup.md
@@ -14,8 +14,8 @@ $ newt new my_proj1
 Downloading project skeleton from apache/incubator-mynewt-blinky...
 Installing skeleton in my_proj1...
 Project my_proj1 successfully created.
-$ tree
-.
+$ tree my_proj1
+my_proj1
 ├── DISCLAIMER
 ├── LICENSE
 ├── NOTICE
@@ -146,17 +146,17 @@ Details of the initialization step requirements are covered in [Initialize Stack
 
 ### Building the application
 
-Now that we have created the application and the target we can build it and test it out. The command you need to run is the newt build command with the target we created (ble\_tgt). The output will show the files being compiled and linked. You should see this when all is done (except for the ... of course):
+Now that we have created the application and the target we can build it and test it out. The command you need to run is the `newt build` command with the target we created (_ble\_tgt_). The output will show the files being compiled and linked. You should see this when all is done (except for the _..._ of course):
 
 ```no-highlight
-wes@~/dev/larva$ newt build ble_tgt
+wes@~/dev/my_proj1$ newt build ble_tgt
 ...
 Archiving os.a
 Compiling cons_fmt.c
 Compiling cons_tty.c
 Archiving full.a
 Linking ble_app.elf
-App successfully built: /Users/wes/dev/larva/bin/ble_tgt/apps/ble_app/ble_app.elf
+App successfully built: /Users/wes/dev/my_proj1/bin/ble_tgt/apps/ble_app/ble_app.elf
 ```
 
 ### Conclusion