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 2017/03/17 23:08:08 UTC

[1/3] incubator-mynewt-site git commit: 1) Updated Newtmgr command guide. 2) Fixed formatting in newt sycn command. 3) Added nmgr_uart to enabling newtmgr in any app

Repository: incubator-mynewt-site
Updated Branches:
  refs/heads/develop 47b782124 -> df02a73d2


1) Updated Newtmgr command guide.
2) Fixed formatting in newt sycn command.
3) Added nmgr_uart to enabling newtmgr in any app


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

Branch: refs/heads/develop
Commit: 8aaf93e9ce95b311a7bda429abdad0ebe12ecd7a
Parents: 8dcf979
Author: cwanda <wa...@happycity.com>
Authored: Sun Mar 5 14:32:44 2017 -0800
Committer: cwanda <wa...@happycity.com>
Committed: Mon Mar 6 06:38:49 2017 -0800

----------------------------------------------------------------------
 docs/newt/command_list/newt_sync.md            |   3 +-
 docs/newtmgr/command_list/newtmgr_config.md    |  28 +++
 docs/newtmgr/command_list/newtmgr_conn.md      |  36 +++
 docs/newtmgr/command_list/newtmgr_crash.md     |  28 +++
 docs/newtmgr/command_list/newtmgr_datetime.md  |  30 +++
 docs/newtmgr/command_list/newtmgr_echo.md      |  26 +++
 docs/newtmgr/command_list/newtmgr_fs.md        |  32 +++
 docs/newtmgr/command_list/newtmgr_image.md     |  56 +++++
 docs/newtmgr/command_list/newtmgr_logs.md      |  39 ++++
 docs/newtmgr/command_list/newtmgr_mpstats.md   |  56 +++++
 docs/newtmgr/command_list/newtmgr_reset.md     |  26 +++
 docs/newtmgr/command_list/newtmgr_run.md       |  33 +++
 docs/newtmgr/command_list/newtmgr_stat.md      |  82 +++++++
 docs/newtmgr/command_list/newtmgr_taskstats.md |  47 ++++
 docs/newtmgr/overview.md                       | 233 ++------------------
 docs/os/tutorials/add_newtmgr.md               |   5 +-
 mkdocs.yml                                     |  14 ++
 17 files changed, 557 insertions(+), 217 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newt/command_list/newt_sync.md
----------------------------------------------------------------------
diff --git a/docs/newt/command_list/newt_sync.md b/docs/newt/command_list/newt_sync.md
index bc8f243..4f9eb4b 100644
--- a/docs/newt/command_list/newt_sync.md
+++ b/docs/newt/command_list/newt_sync.md
@@ -10,7 +10,8 @@ Synchronize and refresh the contents of the local copy of all the repositories u
 #### Flags:
 ```no-highlight
     -f, --force             Force overwrite of existing remote repository
-   
+```   
+
 #### Global Flags:
 ```no-highlight
     -h, --help              Help for newt commands

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_config.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_config.md b/docs/newtmgr/command_list/newtmgr_config.md
new file mode 100644
index 0000000..e3cbec2
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_config.md
@@ -0,0 +1,28 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr config </font>
+Read and write config values on a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr config <var-name> [var-value] -c <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+Reads and sets the value for the `var-name` config variable on a device. Specify a `var-value` to set the value for the `var-name` variable.   Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+             | newtmgr config myvar -c profile01 | Reads the `myvar` config variable value from a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+             | newtmgr config myvar 2 -c profile01 | Sets the `myvar` config variable to the value `2` on a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_conn.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_conn.md b/docs/newtmgr/command_list/newtmgr_conn.md
new file mode 100644
index 0000000..7f7e5f7
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_conn.md
@@ -0,0 +1,36 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr conn </font>
+Manage newtmgr connection profiles.
+
+#### Usage:
+
+```no-highlight
+    newtmgr conn [command] [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+The conn command provides subcommands to add, delete, and view configuration profiles.
+
+Sub-command  | Explanation
+-------------| ------------------------
+add       | The newtmgr conn add <conn_profile> <var-name=var-value> command creates a connection profile named `conn_profile`. A profile consists of these variables: <ul><li>`name`: Connection name. Defaults to `conn_profile` when the variable is not set in the command. </li><li>`type`: Connection type. Valid types are: `serial`, `oic_serial`, `ble`, `oic_ble`, `udp`, `oic_udp`.</li><li>`connstring`: The physical or virtual port to use for the connection.</li><li>`addrtype`: Device address type. Use with type `ble`.</li><li>`addr`:  Device address. Use with type `ble`.</ul>
+delete    | The newtmgr conn delete &lt;conn_profile&gt; command deletes the `conn_profile` connection profile.
+show      | The newtmgr conn show [conn_profile] command shows the information for the `conn_profile` connection profile. It shows information for all the connection profiles if `conn_profile` is not specified.
+    
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+add       | newtmgr conn add myserial02 type=serial connstring=/dev/ttys002 | Creates a connection profile for the serial port /dev/ttys002 and names it `myserial02`
+delete    | newtmgr conn delete myserial02  | Deletes the connection profile named `myserial02`
+show      | newtmgr conn show myserial01 | Displays the information for the `myserial01` connection profile.
+show      | newtmgr conn show  | Displays the information for all connection profiles.

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_crash.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_crash.md b/docs/newtmgr/command_list/newtmgr_crash.md
new file mode 100644
index 0000000..c51ec2e
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_crash.md
@@ -0,0 +1,28 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr crash </font>
+Send a crash command to a device.
+
+
+#### Usage:
+
+```no-highlight
+    newtmgr crash <div0|jump0|ref0|assert|wdog> -c <conn_profile>; [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+Sends a crash command to a device to run one of the following crash tests: `div0`, `jump0`, `ref0`, `assert`, `wdog`.  Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+             | newtmgr crash div0<br>-c profile01 | Sends a request to a device to execute a divide by 0 test. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+             | newtmgr crash ref0<br>-c profile01 | Sends a request to a device to execute a nil pointer reference test. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_datetime.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_datetime.md b/docs/newtmgr/command_list/newtmgr_datetime.md
new file mode 100644
index 0000000..1aed280
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_datetime.md
@@ -0,0 +1,30 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr datetime </font>
+Manage datetime on a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr datetime [datetime-value] -c <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+Reads or sets the datetime on a device. Specify a `datetime-value` in the command to set the datetime on the device. Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+**Note**: You must specify the  `datetime-value` in the RFC 3339 format.  
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+             | newtmgr datetime<br>-c profile01 | Reads the datetime value from a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+	     | newtmgr datetime 2017-03-01T22:44:00<br>-c profile01 | Sets the datetime on a device to March 1st 2017 22:44:00 UTC. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+	     | newtmgr datetime 2017-03-01T22:44:00-08:00<br>-c profile01| Sets the datetime on a device to March 1st 2017 22:44:00 PST. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_echo.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_echo.md b/docs/newtmgr/command_list/newtmgr_echo.md
new file mode 100644
index 0000000..0e6c92a
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_echo.md
@@ -0,0 +1,26 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr echo </font>
+Send data to a device and display the echoed back data.
+
+#### Usage:
+
+```no-highlight
+    newtmgr echo <text> -c <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+Sends the `text` to a device and outputs the text response from the device. Newtmgr uses the `conn_profile` connection profile to connect to the device. 
+
+#### Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+             | newtmgr echo hello<br>-c profile01 | Sends the text 'hello' to a device and displays the echoed back data. Newtmgr connects to the device over a connection specified in the `profile01` profile.

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_fs.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_fs.md b/docs/newtmgr/command_list/newtmgr_fs.md
new file mode 100644
index 0000000..d124cff
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_fs.md
@@ -0,0 +1,32 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr fs</font>
+Access files on a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr fs [command] -c <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+The fs command provides the subcommands to download a file from and upload a file to a device.  Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+Sub-command  | Explanation
+-------------| ------------------------
+download     | The newtmgr download &lt;src-filename&gt; &lt;dst-filename&gt; command downloads the file named &lt;src-filename&gt; from a device and names it &lt;dst-filename&gt; on your host.
+upload       | The newtmgr upload &lt;src-filename&gt; &lt;dst-filename&gt; command uploads the file named &lt;src-filename&gt; to a device and names the file &lt;dst-filename&gt; on the device.
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+download       | newtmgr fs download /cfg/mfg mfg.txt -c profile01 | Downloads the file name `/cfg/mfg` from a device and names the file `mfg.txt` on your host.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile. 
+upload       | newtmgr fs upload mymfg.txt /cfg/mfg -c profile01 | Uploads the file name `mymfg.txt` to a device and names the file `cfg/mfg` on the device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile. 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_image.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_image.md b/docs/newtmgr/command_list/newtmgr_image.md
new file mode 100644
index 0000000..7072b60
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_image.md
@@ -0,0 +1,56 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr image </font>
+Manage images on a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr image [command] -c <connection_profile> [flags] 
+```
+
+#### Flags:
+The coredownload subcommand uses the following local flags:
+
+```no-highlight
+    -n, --bytes uint32         Number of bytes of the core to download 
+    -e, --elfify               Create an ELF file 
+        --offset unint32       Offset of the core file to start the download 
+
+```
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+The image command provides subcommands to manage core and image files on a device.  Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+Sub-command  | Explanation
+-------------| ------------------------
+confirm      | The newtmgr image confirm [hex-image-hash] command makes an image setup permanent on a device. If a `hex-image-hash` hash value is specified, Mynewt permanently switches to the image identified by the hash value. If a hash value is not specified, the current image is made permanent.
+coreconvert  | The newtmgr image coreconvert &lt;core-filename&gt; &lt;elf-file&gt; command converts the `core-filename` core file to an ELF format and names it `elf-file`. <br><br> **Note**: This command does not download the core file from a device. The core file must exist on your host.
+coredownload | The newtmgr image coredownload &lt;core-filename&gt; command downloads the core file from a device and names the file `core-filename` on your host. Use the local flags under Flags to customize the command.
+coreerase    | The newtmgr image coreerase command erases the core file on a device.
+corelist     | The newtmgr image corelist command lists the core(s) on a device.
+list         | The newtmgr image list command displays information for the images on a device.
+test         | The newtmgr test &lt;hex-image-hash&gt; command tests the image, identified by the `hex-image-hash` hash value, on next reboot.
+upload       | The newtmgr image upload &lt;image-file&gt; command uploads the `image-file` image file to a device.
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+confirm       | newtmgr confirm<br>-c profile01 | Makes the current image setup on a device permanent.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+confirm       | newtmgr confirm<br>be9699809a049...73d77f<br>-c profile01 | Makes the image, identified by the `be9699809a049...73d77f` hash value, setup on a device permanent.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+coreconvert    | newtmgr image coreconvert mycore mycore.elf | Converts the `mycore` file to the ELF format and saves it in the `mycore.elf` file.
+coredownload | newtmgr image coredownload <br>mycore -c profile01 | Downloads the core from a device and saves it in the `mycore` file.   Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+coredownload | newtmgr image coredownload <br>mycore -e <br>-c profile01 | Downloads the core from a device, converts the core file into the ELF format, and saves it in the `mycore` file.   Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+coredownload | newtmgr image coredownload <br>mycore <br>--offset 10 -n 30<br>-c profile01 | Downloads 30 bytes, starting at offset 10, of the core from a device and saves it in the `mycore` file.   Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+coreerase    | newtmgr image coreerase <br>-c profile01 | Erases the core file on a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+corelist     | newtmgr image corelist<br>-c profile01 | Lists the core files on a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+list         | newtmgr image list<br>-c profile01 | Lists the images on a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+test         | newtmgr image test <br>be9699809a049...73d77f | Tests the image, identified by the `be9699809a049...73d77f` hash value, during the next reboot on a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.  
+upload       | newtmgr image <br>upload bletiny.img<br>-c profile01 | Uploads the `bletiny.img` image to a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_logs.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_logs.md b/docs/newtmgr/command_list/newtmgr_logs.md
new file mode 100644
index 0000000..d32205a
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_logs.md
@@ -0,0 +1,39 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr log </font>
+Manage logs on a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr log [command] [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+The log command provides subcommands to manage logs on a device. Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+Sub-command  | Explanation
+-------------| ------------------------
+clear      | The newtmgr log clear command clears the logs on a device. 
+level_list | The newtmgr level_list command shows the log levels on a device.
+list      | The newtmgr log list command shows the log names on a device. 
+module_list | The newtmgr log module_list command shows the log module names on a device. 
+show      | The newtmgr log show command shows the logs on a device.
+    
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+clear       | newtmgr log clear<br>-c profile01 | Clears the logs on a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+level_list   | newtmgr log level_list <br>-c profile01  | Shows the log levels on a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+list   | newtmgr log list<br>-c profile01  | Shows the log names on a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+module_list   | newtmgr log module_list<br>-c profile01  | Shows the log module names on a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+show  | newtmgr log show<br>-c profile01  | Shows the logs on a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_mpstats.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_mpstats.md b/docs/newtmgr/command_list/newtmgr_mpstats.md
new file mode 100644
index 0000000..722fa92
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_mpstats.md
@@ -0,0 +1,56 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr mpstats </font>
+Read memory pool statistics from a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr mpstats -c <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+Reads and displays the memory pool statistics from a device.  Newtmgr uses the `conn_profile` connection profile to connect to the device.  It lists the following statistics for each memory pool: 
+
+* **name**: Memory pool name
+* **blksz**:  Size (number of bytes) of each memory block 
+* **cnt**: Number of blocks allocated for the pool
+* **free**: Number of free blocks 
+* **min**: The lowest number of free blocks that were available
+
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+             | newtmgr mpstats -c profile01 | Reads and displays the memory pool statistics from a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+
+Here is an example output for the `myble` application from the [Enabling Newt Manager in any app](/os/tutorials/add_newtmgr.md) tutiorial:
+
+```no-highlight
+newtmgr mpstats -c myserial 
+Return Code = 0
+                            name blksz  cnt free  min
+         ble_l2cap_sig_proc_pool    20    1    1    1
+     ble_att_svr_prep_entry_pool    12   64   64   64
+         ble_hci_ram_evt_hi_pool    72    2    2    1
+              ble_hs_hci_ev_pool    16   10   10    9
+          ble_att_svr_entry_pool    20   75    0    0
+             ble_gattc_proc_pool    56    4    4    4
+                bletiny_dsc_pool    28   64   64   64
+                ble_hs_conn_pool    84    1    1    1
+                  ble_gap_update    24    1    1    1
+                bletiny_svc_pool    32   32   32   32
+          ble_gatts_clt_cfg_pool    12    2    1    1
+                          msys_1   292   12    9    6
+         ble_hci_ram_evt_lo_pool    72    8    8    8
+             ble_l2cap_chan_pool    24    3    3    3
+                bletiny_chr_pool    36   64   64   64
+```

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_reset.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_reset.md b/docs/newtmgr/command_list/newtmgr_reset.md
new file mode 100644
index 0000000..726bd6d
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_reset.md
@@ -0,0 +1,26 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr reset </font>
+Send a reset request to a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr reset <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+Resets a device.  Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+            | newtmgr reset<br>-c profile01 |Resets a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_run.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_run.md b/docs/newtmgr/command_list/newtmgr_run.md
new file mode 100644
index 0000000..a28bb69
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_run.md
@@ -0,0 +1,33 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr run </font>
+Run test procedures on a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr run [command] -c <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+The run command provides subcommands to run test procedures on a device. Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+Sub-command  | Explanation
+-------------| ------------------------
+list       | The newtmgr run list command lists the registered tests on a device.
+test       | The newtmgr run test [all&#124;testname] [token-value] command runs the `testname` test or all tests on a device.  All tests are run if `all` or no `testname` is specified. If a `token-value` is specified, the token value is output with the log messages.
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+list         | newtmgr run<br>list -c profile01 | Lists all the registered tests on a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+test | newtmgr run <br>test all<br>201612161220<br>-c profile01 | Runs all the tests on a device. Outputs the `201612161220` token with the log messages. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+test | newtmgr run <br>test mynewtsanity<br>-c profile01 | Runs the `mynewtsanity` test on a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_stat.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_stat.md b/docs/newtmgr/command_list/newtmgr_stat.md
new file mode 100644
index 0000000..890a43b
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_stat.md
@@ -0,0 +1,82 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr stat</font>
+Read statistics from a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr stat [stats_name] -c <conn_profile> [flags] 
+    newtmgr stat [command] -c <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+Displays statistic for the Stats named `stats_name` from a device.  You can use the `list` subcommand to get a list of the Stats names from the device.  Newtmgr uses the `conn_profile` connection profile to connect to the device.
+
+Sub-command  |  Explanation
+-------------| -----------------------
+             | The newtmgr stat [stats_name] command displays the statistics for the `stats_name` Stats from a device. It displays the list of Stats names if a `stats_name` value is not specified.
+list         | The newtmgr stat list command displays the list of Stats names from a device.  
+
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+             | newtmgr stat ble_att -c profile01 | Displays the `ble_att` statistics on a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+             | newtmgr stat -c profile01 | Displays the list of Stats names from a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+list         | newtmgr stat list -c profile01 | Displays the list of Stats names from a device.  Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+ 
+Here are some example outputs for the `myble` application from the [Enabling Newt Manager in any app](/os/tutorials/add_newtmgr.md) tutiorial:
+
+The statistics for the ble_att Stats:
+```no-highlight
+
+$ newtmgr stat ble_att -c myserial
+Return Code = 0
+Stats Name: ble_att
+  read_type_req_rx: 0
+  read_rsp_rx: 0
+  read_group_type_rsp_tx: 0
+  prep_write_rsp_tx: 0
+  find_type_value_req_tx: 0
+  read_type_rsp_rx: 0
+  read_mult_req_rx: 0
+  notify_req_tx: 0
+  indicate_req_tx: 0
+
+       ...
+  write_cmd_rx: 0
+  prep_write_rsp_rx: 0
+  read_type_rsp_tx: 0
+  read_req_tx: 0
+  read_mult_req_tx: 0
+  read_group_type_req_rx: 0
+  write_rsp_tx: 0
+  exec_write_rsp_rx: 0
+
+```
+
+The list of Stats names:
+```no-highlight
+
+$ newtmgr stat -c myserial
+[stat ble_l2cap ble_att ble_gap ble_gattc ble_gatts ble_hs ble_ll_conn ble_ll ble_phy]
+Return Code = 0
+
+```
+The list of Stats names  using the list subcommand:
+```no-highlight
+
+$ newtmgr stat list -c myserial
+[stat ble_l2cap ble_att ble_gap ble_gattc ble_gatts ble_hs ble_ll_conn ble_ll ble_phy]
+Return Code = 0
+
+```

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/command_list/newtmgr_taskstats.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/command_list/newtmgr_taskstats.md b/docs/newtmgr/command_list/newtmgr_taskstats.md
new file mode 100644
index 0000000..3e4feea
--- /dev/null
+++ b/docs/newtmgr/command_list/newtmgr_taskstats.md
@@ -0,0 +1,47 @@
+## <font color="#F2853F" style="font-size:24pt">newtmgr taskstats </font>
+Read task statistics from a device.
+
+#### Usage:
+
+```no-highlight
+    newtmgr taskstats -c <conn_profile> [flags] 
+```
+
+#### Global Flags:
+
+```no-highlight
+    -c, --conn string       connection profile to use.
+    -h, --help              Help for newtmgr commands
+    -l, --loglevel string   log level to use (default "info")
+    -t, --trace             print all bytes transmitted and received
+```
+
+####Description
+Reads and displays the task statistics from a device. Newtmgr uses the `conn_profile` connection profile to connect to the device.  It lists the following statistics for each task: 
+
+* **task**: Task name
+* **pri**:  Task priority
+* **runtime**: The time (ms) that the task has been running for
+* **csw**: Number of times the task has switched context
+* **stksz**: Stack size allocated for the task 
+* **stkuse**: Actual stack size the task uses
+* **last_checkin**: Last sanity checkin with the [Sanity Task](/os/core_os/sanity/sanity.md)
+* **next_checkin**: Next sanity checkin
+
+
+####Examples
+
+Sub-command  | Usage                  | Explanation
+-------------| -----------------------|-----------------
+             | newtmgr taskstats<br>-c profile0 | Reads and displays the task statistics from a device. Newtmgr connects to the device over a connection specified in the `profile01` connection profile.
+
+Here is an example output for the `myble` application from the [Enabling Newt Manager in any app](/os/tutorials/add_newtmgr.md) tutiorial:
+
+```no-highlight
+newtmgr taskstats -c myserial 
+Return Code = 0
+      task pri tid  runtime      csw    stksz   stkuse last_checkin next_checkin
+      idle 255   0   151917       47       64       34        0        0
+      main 127   1        2       59      512      188        0        0
+    ble_ll   0   2        0       14       80       56        0        0
+```

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/newtmgr/overview.md
----------------------------------------------------------------------
diff --git a/docs/newtmgr/overview.md b/docs/newtmgr/overview.md
index 0b17e65..43b5610 100644
--- a/docs/newtmgr/overview.md
+++ b/docs/newtmgr/overview.md
@@ -1,226 +1,31 @@
 ## Newt Manager
 
-Newt Manager (newtmgr) is the application tool that enables a user to communicate with and manage remote instances of Mynewt OS. 
+Newt Manager (newtmgr) is the application tool that enables a user to communicate with and manage remote devices running the Mynewt OS. It uses a connection profile to establish a connection with a device and sends command requests to the device.  The tool follows the same command structure as the [newt tool](../newt/newt_ops.md). 
 
 
-## Description
-
-
-
-## Command List
-
 ### Available high-level commands
+The following are the high-level newtmgr commands. Some of these commands have subcommands. You can use the -h flag to get help for each command. See the documentation for each command in this guide if you need more information and examples.
 
 ```no-highlight
-    help        Lists commands and flags available 
-    conn        Manage newtmgr connection profiles
-    echo        Send data to remote endpoint using newtmgr, and receive data back
-    image       Manage images on remote instance
-    stat        Read statistics from a remote endpoint
-    taskstats   Read statistics from a remote endpoint
-    mpstats     Read statistics from a remote endpoint
-    config      Read or write config value on target
-```
-
-### Available Flags
-
-```no-highlight
-  -c, --connection string       connection profile to use.
-  -l, --loglevel string   log level to use (default WARN.)
-```
-
-Examples
-
-Sub-command  | Usage                  | Explanation
--------------| -----------------------|-----------------
-newtmgr -caditi03 taskstats
-
-### *help*
-
-#### Usage:
-```no-highlight
-    newtmgr help [input1]
-```    
-You can also use "newtmgr [command] --help" to display the help text for a newtmgr command.
-
-Flags:
-
-```no-highlight
-  -c, --connection string      connection profile to use.
-  -l, --loglevel string   log level to use (default WARN.)
-```
-    
-Examples
-
-Sub-command | Available Flags | Explanation
-------------| ----------------|-----------------
-taskstats  | newtmgr -cprofile1 taskstats | Run the taskstats subcommand on the device connected via the 'profile1' connection
-   
-### *conn*
-
-#### Usage:
-```no-highlight
-    newtmgr conn [flags]
-    newtmgr conn [command]
-```    
-
-Available commands: 
-
-```no-highlight
-    add         Add a newtmgr connection profile
-    delete      Delete a newtmgr connection profile
-    show        Show newtmgr connection profiles
-```
-
-Flags:
-
-```no-highlight
-  -c, --conn string       connection profile to use.
-  -l, --loglevel string   log level to use (default WARN.)
-```
-
-Description
-
-Sub-command  | Explanation
--------------| ------------------------
-add       | Adds a connection profile. A properly defined profile needs a name, a connection type, and the physical or virtual port to be used for communication.
-delete    | Deletes a connection profile associated with the given name
-show      | List the specified or all the connection profiles with the name, connection type, and the controlling terminal or port.
-    
-
-Examples
-
-Sub-command  | Usage                  | Explanation
--------------| -----------------------|-----------------
-add       | newtmgr conn add myserial02 type=serial connstring=/dev/ttys002 | Adds a newtmgr connection profile for the serial port /dev/ttys002 and names it 'myserial02'
-delete    | newtmgr conn delete myserial02  | Deletes the connection profile named 'myserial02'
-show      | newtmgr conn show myserial01 | Shows the details of the profile named 'myserial01'
-show      | newtmgr conn show  | Shows all the current profiles defined
-    
-### *echo*
-
-#### Usage:
-```no-highlight
-    newtmgr echo [flags] [text]
-```    
-This command sends the text to the remote device at the other end of the connection specified with the -c flag and outputs the text when it gets a response from the device. If the device is not responding or if the connection profile is invalid it displays errors. 
-
-Flags:
-
-```no-highlight
-  -c, --conn string       connection profile to use.
-  -l, --loglevel string   log level to use (default WARN.)
-```
-
-Examples
-
-Sub-command  | Usage                  | Explanation
--------------| -----------------------|-----------------
-echo       | newtmgr echo -c profile01 hello | Sends the string 'hello' to the remote device over the connection profile 'profile01' and receives the string back and displays it.
-
-
-   
-### *image*
-
-#### Usage:
-```no-highlight
-  newtmgr image [flags]
-  newtmgr image [command]
-```    
+Available Commands:
 
-Available commands: 
-
-```no-highlight
-    list         Show target images
-    upload       Upload image to target
-    boot         Which image to boot
-    fileupload   Upload file to target
-    filedownload Download file from target
-```
+  config      Read or write a config value on a device
+  conn        Manage newtmgr connection profiles
+  crash       Send a crash command to a device
+  datetime    Manage datetime on a device
+  echo        Send data to a device and display the echoed back data
+  fs          Access files on a device
+  image       Manage images on a device
+  log         Manage logs on a device
+  mpstats     Read memory pool statistics from a device
+  reset       Send reset request to a device
+  run         Run test procedures on a device
+  stat        Read statistics from a device
+  taskstats   Read task statistics from a device
 
 Flags:
-
-```no-highlight
   -c, --conn string       connection profile to use.
-  -l, --loglevel string   log level to use (default WARN.)
+  -h, --help              Help for newtmgr commands
+  -l, --loglevel string   log level to use (default "info")
+  -t, --trace             print all bytes transmitted and received
 ```
-
-Description
-
-Sub-command  | Explanation
--------------| ------------------------
-list      | Adds a connection profile. A properly defined profile needs a name, a connection type, and the physical or virtual port to be used for communication.
-upload    | Deletes a connection profile associated with the given name
-boot      | Specify the image to boot 
-fileupload | upload file to the remote target
-filedownload | download/retrieve file from remote target
-    
-
-Examples
-
-Sub-command  | Usage                  | Explanation
--------------| -----------------------|-----------------
-list       | newtmgr list | 
-upload     | newtmgr upload  | 
-boot       | newtmgr boot | 
-fileupload | newtmgr fileupload  | 
-filedownload | newtmgr filedownload | 
-
-
-### *stat*
-
-#### Usage:
-```no-highlight
-  newtmgr stat [flags]
-  newtmgr stat [command]
-```    
-Flags:
-
-```no-highlight
-  -c, --conn string       connection profile to use.
-  -l, --loglevel string   log level to use (default WARN.)
-```
-
-Examples
-
-Sub-command  | Usage                  | Explanation
--------------| -----------------------|-----------------
-stat       | newtmgr stat | 
-
-
-### *taskstats*
-
-#### Usage:
-```no-highlight
-  newtmgr taskstats [flags]
-  newtmgr taskstats [command]
-```    
-
-Lists all the tasks running on the remote endpoint at the end of the specified connection and for each task lists statistics such as priority, task id, runtime (how long the task has been running in ms), context switch count, stack size allocated, actual stack usage, last sanity checkin, next sanity check-in. 
-
-Flags:
-
-```no-highlight
-  -c, --conn string       connection profile to use.
-  -l, --loglevel string   log level to use (default WARN.)
-```
-
-Examples
-
-Sub-command  | Usage                  | Explanation
--------------| -----------------------|-----------------
-stat       | newtmgr taskstats -c profile01 | Lists all the tasks running on the remote device at the end of connection named 'profile01' 
-
-Example output
-
-```no-highlight
-$ newtmgr  -c profile01 taskstats
-Return Code = 0
-  idle (prio=255 tid=0 runtime=3299340 cswcnt=280342 stksize=1024 stkusage=1000 last_checkin=0 next_checkin=0)
-  os_sanity (prio=254 tid=1 runtime=0 cswcnt=3287 stksize=1024 stkusage=1000 last_checkin=0 next_checkin=0)
-  shell (prio=3 tid=2 runtime=0 cswcnt=165 stksize=1024 stkusage=1000 last_checkin=0 next_checkin=0)
-  uart_poller (prio=0 tid=3 runtime=0 cswcnt=279368 stksize=1024 stkusage=1000 last_checkin=0 next_checkin=0)
-  newtmgr (prio=4 tid=4 runtime=0 cswcnt=14 stksize=1024 stkusage=1000 last_checkin=0 next_checkin=0)
-  task1 (prio=1 tid=5 runtime=0 cswcnt=3287 stksize=1024 stkusage=1000 last_checkin=0 next_checkin=0)
-  task2 (prio=2 tid=6 runtime=0 cswcnt=3287 stksize=1024 stkusage=1000 last_checkin=0 next_checkin=0)
-```
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/docs/os/tutorials/add_newtmgr.md
----------------------------------------------------------------------
diff --git a/docs/os/tutorials/add_newtmgr.md b/docs/os/tutorials/add_newtmgr.md
index ac8d509..5d975cc 100644
--- a/docs/os/tutorials/add_newtmgr.md
+++ b/docs/os/tutorials/add_newtmgr.md
@@ -82,7 +82,7 @@ syscfg.vals:
     RUNTEST_NEWTMGR: 1
     SHELL_TASK: 1
 ```
-The first five configuration settings enable support for the Newt Manager `log`, `stats`, `config`, `crash`, 
+The first five configuration settings enable support for the Newt Manager `log`, `stat`, `config`, `crash`, 
 and `run` commands. The `SHELL_TASK` setting enables the shell for serial transport.
 
 Note that you may need to override additional configuration settings that are specific to each package to customize the 
@@ -162,7 +162,7 @@ $ newt load myble
 ### Set Up a Connection Profile
 
 The newtmgr tool requires a connection profile in order to connect to your board. If you have not done so, 
-follow the [instructions](../../newtmgr/overview.md) for setting up your connection profile.
+follow the [instructions](../../newtmgr/command_list/newtmgr_conn.md) for setting up your connection profile.
 
 <br>
 
@@ -223,6 +223,7 @@ and `syscfg.yml` files as follows:
 * Add the `mgmt/newtmgr/transport/ble` package to `pkg.deps` parameter to enable BLE transport.
 * Add the `mgmt/newtmgr/transport/nmgr_shell` package to 
 the `pkg.deps` parameter,  and add `SHELL_TASK: 1` to the `syscfg.vals` parameter to enable serial transport.
+* Add the `mgmt/newtmgr/transport/nmgr_uart` package, and add `SHELL_TASK: 1` to enable serial communication over a UARTport.
 
 <br>
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8aaf93e9/mkdocs.yml
----------------------------------------------------------------------
diff --git a/mkdocs.yml b/mkdocs.yml
index 87a7cfd..20a10ad 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -506,6 +506,20 @@ pages:
             - 'newt version': 'newt/command_list/newt_version.md'
     - Newt Manager Guide:
         - toc: 'newtmgr/overview.md'
+        - Command Guide:
+            - 'newtmgr config': 'newtmgr/command_list/newtmgr_config.md'
+            - 'newtmgr conn': 'newtmgr/command_list/newtmgr_conn.md'
+            - 'newtmgr crash': 'newtmgr/command_list/newtmgr_crash.md'
+            - 'newtmgr datetime': 'newtmgr/command_list/newtmgr_datetime.md'
+            - 'newtmgr echo': 'newtmgr/command_list/newtmgr_echo.md'
+            - 'newtmgr fs': 'newtmgr/command_list/newtmgr_fs.md'
+            - 'newtmgr image': 'newtmgr/command_list/newtmgr_image.md'
+            - 'newtmgr log': 'newtmgr/command_list/newtmgr_logs.md'
+            - 'newtmgr mpstats': 'newtmgr/command_list/newtmgr_mpstats.md'
+            - 'newtmgr reset': 'newtmgr/command_list/newtmgr_reset.md'
+            - 'newtmgr run': 'newtmgr/command_list/newtmgr_run.md'
+            - 'newtmgr stat': 'newtmgr/command_list/newtmgr_stat.md'
+            - 'newtmgr taskstats': 'newtmgr/command_list/newtmgr_taskstats.md'
         - 'Install': 'newtmgr/installing.md'
 - Appendix:
     - 'Edit Docs': 'faq/how_to_edit_docs.md'



[3/3] incubator-mynewt-site git commit: fixed errors in nimble_setup.md as described in MYNEWT-658

Posted by ad...@apache.org.
fixed errors in nimble_setup.md as described in MYNEWT-658


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

Branch: refs/heads/develop
Commit: df02a73d251b187fad961d7f9cf4ab278f9e37a6
Parents: f4a3b6c
Author: aditihilbert <ad...@runtime.io>
Authored: Fri Mar 17 14:24:14 2017 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Fri Mar 17 14:24:14 2017 -0700

----------------------------------------------------------------------
 docs/network/ble/nimble_setup.md | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/df02a73d/docs/network/ble/nimble_setup.md
----------------------------------------------------------------------
diff --git a/docs/network/ble/nimble_setup.md b/docs/network/ble/nimble_setup.md
index 5ad94a3..13187a6 100644
--- a/docs/network/ble/nimble_setup.md
+++ b/docs/network/ble/nimble_setup.md
@@ -108,9 +108,12 @@ pkg.name: apps/ble_app
 pkg.type: app
 
 pkg.deps:
-    - "@apache-mynewt-core/libs/baselibc"
-    - "@apache-mynewt-core/libs/console/full"
-    - "@apache-mynewt-core/libs/os"
+    - "@apache-mynewt-core/kernel/os"
+    - "@apache-mynewt-core/hw/hal"
+    - "@apache-mynewt-core/sys/console/full"
+    - "@apache-mynewt-core/sys/log/full"
+    - "@apache-mynewt-core/sys/stats/full"
+    - "@apache-mynewt-core/net/nimble/transport/ram"
     - "@apache-mynewt-core/net/nimble/controller"
     - "@apache-mynewt-core/net/nimble/host"
 ```
@@ -124,7 +127,7 @@ int
 main(void)
 {
     /* Initialize OS */
-    os_init();
+    os_init(NULL);
 
     /* Start the OS */
     os_start();


[2/3] incubator-mynewt-site git commit: Merge branch 'newtmgr_tool' of https://github.com/cwanda/incubator-mynewt-site into develop

Posted by ad...@apache.org.
Merge branch 'newtmgr_tool' of https://github.com/cwanda/incubator-mynewt-site into develop

This closes #162


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

Branch: refs/heads/develop
Commit: f4a3b6cd175691fcd839e55eda2e8e359b838864
Parents: 47b7821 8aaf93e
Author: aditihilbert <ad...@runtime.io>
Authored: Fri Mar 17 14:11:52 2017 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Fri Mar 17 14:11:52 2017 -0700

----------------------------------------------------------------------
 docs/newt/command_list/newt_sync.md            |   3 +-
 docs/newtmgr/command_list/newtmgr_config.md    |  28 +++
 docs/newtmgr/command_list/newtmgr_conn.md      |  36 +++
 docs/newtmgr/command_list/newtmgr_crash.md     |  28 +++
 docs/newtmgr/command_list/newtmgr_datetime.md  |  30 +++
 docs/newtmgr/command_list/newtmgr_echo.md      |  26 +++
 docs/newtmgr/command_list/newtmgr_fs.md        |  32 +++
 docs/newtmgr/command_list/newtmgr_image.md     |  56 +++++
 docs/newtmgr/command_list/newtmgr_logs.md      |  39 ++++
 docs/newtmgr/command_list/newtmgr_mpstats.md   |  56 +++++
 docs/newtmgr/command_list/newtmgr_reset.md     |  26 +++
 docs/newtmgr/command_list/newtmgr_run.md       |  33 +++
 docs/newtmgr/command_list/newtmgr_stat.md      |  82 +++++++
 docs/newtmgr/command_list/newtmgr_taskstats.md |  47 ++++
 docs/newtmgr/overview.md                       | 233 ++------------------
 docs/os/tutorials/add_newtmgr.md               |   5 +-
 mkdocs.yml                                     |  14 ++
 17 files changed, 557 insertions(+), 217 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/f4a3b6cd/mkdocs.yml
----------------------------------------------------------------------