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/07/14 00:58:49 UTC

[5/5] incubator-mynewt-site git commit: organized newtmgr tutorials to differentiate between pull request #107 and existing Slinky tutorials

organized newtmgr tutorials to differentiate between pull request #107 and existing Slinky tutorials


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

Branch: refs/heads/develop
Commit: 36994875ad38a8d7b3b2697279fd7a594ede2f47
Parents: cce720e
Author: aditihilbert <ad...@runtime.io>
Authored: Wed Jul 13 17:55:32 2016 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Wed Jul 13 17:55:32 2016 -0700

----------------------------------------------------------------------
 docs/os/tutorials/add_newtmgr.md           |  8 ++++----
 docs/os/tutorials/project-slinky.md        |  8 ++++++--
 docs/os/tutorials/project-target-slinky.md | 10 +++++++---
 mkdocs.yml                                 |  6 ++++--
 4 files changed, 21 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/36994875/docs/os/tutorials/add_newtmgr.md
----------------------------------------------------------------------
diff --git a/docs/os/tutorials/add_newtmgr.md b/docs/os/tutorials/add_newtmgr.md
index e483a3a..24f7483 100644
--- a/docs/os/tutorials/add_newtmgr.md
+++ b/docs/os/tutorials/add_newtmgr.md
@@ -1,8 +1,8 @@
-##Enabling the Newt Manager (newtmgr) in a project
+##Enabling Newt Manager (newtmgr) in a project
 
 <br>
 
-This tutorial explains how to add the newtmgr task to a project so that you can interact with your project over newtmgr
+This tutorial explains how to add the newtmgr task to a project so that you can interact with your project over newtmgr.
 
 <br>
 
@@ -29,9 +29,9 @@ The first thing you'll need to add is a new dependency for your app. In the repo
 
 ```
  - libs/newtmgr
- ```
+```
  
-so that the application will know to pull in the newtmgr code.
+Now the application will know to pull in the newtmgr code.
 
 <br>
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/36994875/docs/os/tutorials/project-slinky.md
----------------------------------------------------------------------
diff --git a/docs/os/tutorials/project-slinky.md b/docs/os/tutorials/project-slinky.md
index 2949437..5537001 100644
--- a/docs/os/tutorials/project-slinky.md
+++ b/docs/os/tutorials/project-slinky.md
@@ -1,9 +1,13 @@
 ## Project Sim Slinky  
 
 
-### Objective
+<br>
+
+The goal of the project is to use a sample app called "Slinky" included in the Mynewt repository to enable remote communications with a device running the Mynewt OS. The protocol for remote communications is called newt manager (newtmgr). In this tutorial we will create a target for a simulated device and define it with the sample app "Slinky". 
 
-The goal of the project is to enable and demonstrate remote communications with the Mynewt OS via newt manager (newtmgr). We will do this through building a project with Mynewt called Slinky that runs via the native platform. 
+If you have an existing project using a target that does not use the Slinky app and you wish to add newtmgt functonality to it, check out the tutorial titled [Enable newtmgr in any app](add_newtmgr.md). 
+
+<br>
 
 ### What you need
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/36994875/docs/os/tutorials/project-target-slinky.md
----------------------------------------------------------------------
diff --git a/docs/os/tutorials/project-target-slinky.md b/docs/os/tutorials/project-target-slinky.md
index 8f71650..ca2d66a 100644
--- a/docs/os/tutorials/project-target-slinky.md
+++ b/docs/os/tutorials/project-target-slinky.md
@@ -1,9 +1,13 @@
-## Project Slinky 
+## Project Slinky using STM32 board
 
 
-### Objective
+<br>
+
+The goal of the project is to enable and demonstrate remote communications with the Mynewt OS via newt manager (newtmgr) by leveraging a sample app "Slinky" included under the /apps directory in the repository. In this project we will define a target for the STM32-E407 board and assign the app "Slinky" to it.
 
-The goal of the project is to enable and demonstrate remote communications with the Mynewt OS via newt manager (newtmgr). We will do this through a project with Mynewt called Slinky that runs on the STM32-E407 board.
+If you have an existing project using a target that does not use the Slinky app and you wish to add newtmgt functonality to it, check out the tutorial titled [Enable newtmgr in any app](add_newtmgr.md). 
+
+<br>
 
 ### What you need
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/36994875/mkdocs.yml
----------------------------------------------------------------------
diff --git a/mkdocs.yml b/mkdocs.yml
index a89d6e4..70ce3f2 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -42,8 +42,10 @@ pages:
         - 'Write a Test Suite for a Package': 'os/tutorials/unit_test.md'
         - 'Air-quality Sensor project': 'os/tutorials/air_quality_sensor.md'
         - 'Add task to manage multiple events': 'os/tutorials/event_queue.md'
-        - 'Enable remote comms on sim device': 'os/tutorials/project-slinky.md'
-        - 'Enable remote comms on STM32 board': 'os/tutorials/project-target-slinky.md'
+        - 'Project Slinky for remote comms': 
+            - 'Slinky on sim device': 'os/tutorials/project-slinky.md'
+            - 'Slinky on STM32 board': 'os/tutorials/project-target-slinky.md'
+        - 'Enable newtmgr in any app': 'os/tutorials/add_newtmgr.md' 
         - 'BLE app to check stats via console': 'os/tutorials/bletiny_project.md'
         - 'BLE peripheral project':
             - toc: 'os/tutorials/bleprph/bleprph-intro.md'