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/25 06:24:51 UTC

[01/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Repository: incubator-mynewt-site
Updated Branches:
  refs/heads/asf-site 306578b0d -> c1a9e073b


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/blinky_primo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/blinky_primo/index.html b/latest/os/tutorials/blinky_primo/index.html
index 4b33582..ec721f2 100644
--- a/latest/os/tutorials/blinky_primo/index.html
+++ b/latest/os/tutorials/blinky_primo/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -558,13 +545,16 @@
 <p>Create a project with a simple app that blinks an LED on the Arduino Primo board.  Download the application to the target and watch it blink!</p>
 <p>Note that the Mynewt OS will run on the nRF52 chip in the Arduino Primo board. However, the board support package for the Arduino Primo is different from the nRF52 dev kit board support package.</p>
 <p><br></p>
-<h3 id="hardware-and-software-needed">Hardware and Software needed</h3>
+<h3 id="prerequisites">Prerequisites</h3>
+<p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
-<li>Arduino Primo</li>
-<li>Laptop running Mac OS</li>
-<li>A micro USB 2.0 cable to power the Arduino primo board</li>
-<li>It is assumed you have already installed newt tool. </li>
-<li>It is assumed you already installed native tools as described <a href="../../get_started/native_tools/">here</a></li>
+<li>Have an Arduino Primo</li>
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a Micro-USB cable to connect the board and the computer.</li>
+<li>Have a computer to build a Mynewt application and connect to your board over USB.</li>
+<li>Install the Newt tool and toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
+<li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>
+<li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section.</li>
 <li>Debugger - choose one of the two options below. Option 1 requires additional hardware but very easy to set up. Option 2 is free software install but not as simple as Option 1.</li>
 </ul>
 <p><br></p>
@@ -605,57 +595,48 @@ $ go install
 <h3 id="install-jlinkexe">Install jlinkEXE</h3>
 <p>In order to be able to communicate with the SEGGER J-Link debugger on the dev board, you have to download and install the J-Link GDB Server software on to your laptop. You may download the "Software and documentation pack for Mac OS X" from <a href="https://www.segger.com/jlink-software.html">https://www.segger.com/jlink-software.html</a>. </p>
 <p><br></p>
-<h3 id="create-a-project">Create a project.</h3>
-<p>Create a new project to hold your work.  For a deeper understanding, you can read about project creation in 
-<a href="../../get_started/project_create/">Get Started -- Creating Your First Project</a>
-or just follow the commands below.</p>
+<h3 id="create-a-project">Create a Project</h3>
+<p>Create a new project if you do not have an existing one.  You can skip this step and proceed to <a href="#create_targets">create the targets</a> if you already created a project.</p>
+<p>Run the following commands to create a new project:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ mkdir ~/dev
     $ cd ~/dev
     $ newt new myproj
     Downloading project skeleton from apache/incubator-mynewt-blinky...
     Installing skeleton in myproj...
     Project myproj successfully created.
-
     $ cd myproj
-
-    $ newt install -v 
+    $ newt install
     apache-mynewt-core
-    Downloading repository description for apache-mynewt-core... success!
-    ...
-    apache-mynewt-core successfully installed version 0.9.0
+    $
 </pre></div>
 
 
 <p><br></p>
-<p>If you are working with 0.9.0 release (and not any subsequent releases), you will have to instruct newt to download code for the Arduino Primo Board Support Package (bsp) from the <code>develop</code> branch. You first edit the <code>project.yml</code> file in your project directory to change <code>vers:0-latest</code> to <code>0-dev</code>:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">&lt;snip&gt;
-#
-repository.apache-mynewt-core:
-    type: github
-<span style="background-color: #ffffcc">    vers: 0-dev
-</span>    user: apache
-    repo: incubator-mynewt-core
+<h3 id="create-the-targets"><a name="create_targets"></a>Create the Targets</h3>
+<p>Create two targets for the Arduino Primo board - one for the bootloader and one for the Blinky application.</p>
+<p>Run the following <code>newt target</code> commands to create a bootloader target. We name the target <code>primo_boot</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create primo_boot
+$ newt target set primo_boot app=@apache-mynewt-core/apps/boot bsp=@apache-mynewt-core/hw/bsp/arduino_primo_nrf52 build_profile=optimized
 </pre></div>
 
 
-<p>Then you run <code>newt upgrade</code>:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt upgrade
-apache-mynewt-core
-Would you like to upgrade repository apache-mynewt-core from 0.9.0-none to 0.0.0-none ? [Yn] Y
+<p><br>
+Run the following <code>newt target</code> commands to create a target for your Blinky application. We name the target <code>primoblinky</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create primoblinky
+$ newt target set primoblinky app=apps/blinky bsp=@apache-mynewt-core/hw/bsp/arduino_primo_nrf52 build_profile=debug
 </pre></div>
 
 
-<p><strong>Note</strong>: With the next release, the Arduino Primo bsp will be included in the main release package. The above edit and <code>newt upgrade</code> step will not be required.</p>
-<p><br></p>
-<h3 id="create-the-targets">Create the targets</h3>
-<p>Create two targets - one for the bootloader and one for the Primo board.  </p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create primoblinky
-$ newt target set primoblinky app=@apache-mynewt-core/apps/blinky bsp=@apache-mynewt-core/hw/bsp/arduino_primo_nrf52 build_profile=debug
+<p><br>
+If you are using openocd, run the following <code>newt target set</code> commands:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target set primoblinky syscfg=OPENCD_DEBUG=1
+$ newt target set primo_boot syscfg=OPENCD_DEBUG=1
+</pre></div>
 
-$ newt target create primo_boot
-$ newt target set primo_boot app=@apache-mynewt-core/apps/boot bsp=@apache-mynewt-core/hw/bsp/arduino_primo_nrf52 build_profile=optimized
 
-$ newt target show
+<p><br>
+You can run the <code>newt target show</code> command to verify your target settings:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target show
 targets/my_blinky_sim
     app=apps/blinky
     bsp=@apache-mynewt-core/hw/bsp/native
@@ -671,52 +652,83 @@ targets/primoblinky
 </pre></div>
 
 
-<p>If you are using openocd you must set the openocd_debug feature for both primo_boot and primoblinky.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target set primo_boot features=openocd_debug
-$ newt target set primoblinky features=openocd_debug
-</pre></div>
-
-
 <p><br></p>
-<h3 id="build-the-target-executables">Build the target executables</h3>
+<h3 id="build-the-target-executables">Build the Target Executables</h3>
+<p>Run the <code>newt build primo_boot</code> command to build the bootloader:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build primo_boot
-&lt;snip&gt;
-Compiling log_shell.c
-Archiving log.a
-Linking boot.elf
-App successfully built: ~/dev/myproj/bin/primo_boot/apps/boot/boot.elf
+Building target targets/primo_boot
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aes.c
+Compiling repos/apache-mynewt-core/apps/boot/src/boot.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/loader.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/bootutil_misc.c
+
+      ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/primo_boot/app/apps/boot/boot.elf
+Target successfully built: targets/primo_boot
 </pre></div>
 
 
+<p><br>
+Run the <code>newt build primoblinky</code> command to build the Blinky application:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build primoblinky
-&lt;snip&gt;
-Compiling stats_shell.c
-Archiving stats.a
-Linking blinky.elf
-App successfully built: ~/dev/myproj/bin/primoblinky/apps/blinky/blinky.elf
+Building target targets/primoblinky
+Compiling repos/apache-mynewt-core/hw/drivers/uart/src/uart.c
+Assembling repos/apache-mynewt-core/hw/bsp/arduino_primo_nrf52/src/arch/cortex_m4/gcc_startup_nrf52.s
+Compiling repos/apache-mynewt-core/hw/bsp/arduino_primo_nrf52/src/sbrk.c
+Compiling repos/apache-mynewt-core/hw/cmsis-core/src/cmsis_nvic.c
+Assembling repos/apache-mynewt-core/hw/bsp/arduino_primo_nrf52/src/arch/cortex_m4/gcc_startup_nrf52_split.s
+Compiling apps/blinky/src/main.c
+Compiling repos/apache-mynewt-core/hw/drivers/uart/uart_bitbang/src/uart_bitbang.c
+Compiling repos/apache-mynewt-core/hw/bsp/arduino_primo_nrf52/src/hal_bsp.c
+
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/primoblinky/app/apps/blinky/blinky.elf
+Target successfully built: targets/primoblinky
 </pre></div>
 
 
 <p><br></p>
-<h3 id="sign-and-create-the-blinky-application-image">Sign and create the blinky application image</h3>
-<p>You must sign and version your application image to download it using newt to the board. Use the newt create-image command to perform this action. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
+<h3 id="sign-and-create-the-blinky-application-image">Sign and Create the Blinky Application Image</h3>
+<p>Run the <code>newt create-image primoblinky 1.0.0</code> command to create and sign the application image. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image primoblinky 1.0.0
+App image succesfully generated: ~/dev/myproj/bin/targets/primoblinky/app/apps/blinky/blinky.img
 </pre></div>
 
 
 <p><br></p>
-<h3 id="connect-the-board">Connect the board</h3>
+<h3 id="connect-to-the-board">Connect to the Board</h3>
 <p>Connect the Segger J-Link debug probe to the JTAG port on the Primo board using the Jlink 9-pin adapter and cable. Note that there are two JTAG ports on the board. Use the one nearest to the reset button as shown in the picture. Also use a micro USB 2.0 cable to connect the Primo board to one of your laptop's USB host ports.</p>
 <p><img alt="J-Link debug probe to Arduino" src="../pics/primo-jlink.jpg" title="Connecting J-Link debug probe to Arduino Primo" /></p>
 <p><br></p>
 <p><strong>Note:</strong> If you are going the OpenOCD route, you do not need to attach this connector. </p>
-<h3 id="download-to-the-target">Download to the target</h3>
-<p>Download the bootloader first and then the blinky executable to the target platform. Don't forget to reset the board if you don't see the LED blinking right away. If the reset button doesn't work, powercycle the board!</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt -v load primo_boot
-$ newt -v load primoblinky
+<h3 id="load-the-bootloader-and-the-blinky-application-image">Load the Bootloader and the Blinky Application Image</h3>
+<p>Run the <code>newt load primo_boot</code> command to load the bootloader onto your board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt load primo_boot
+Loading bootloader
+$
+</pre></div>
+
+
+<p><br>
+Run the <code>newt load primoblinky</code> command to load Blinky application image onto your board.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt  load primoblinky 
+Loading app image into slot 1
+$
 </pre></div>
 
 
+<p>You should see the LED on your board blink!</p>
+<p>Note: If the LED does not blink, try resetting your board.</p>
 <p><br></p>
 <p><strong>Note:</strong> If you want to erase the flash and load the image again, you can use JLinkExe to issue an <code>erase</code> command.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ JLinkExe -device nRF52 -speed 4000 -if SWD

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/blinky_sram_olimex/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/blinky_sram_olimex/index.html b/latest/os/tutorials/blinky_sram_olimex/index.html
index 427f0bd..937e661 100644
--- a/latest/os/tutorials/blinky_sram_olimex/index.html
+++ b/latest/os/tutorials/blinky_sram_olimex/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/eddystone/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/eddystone/index.html b/latest/os/tutorials/eddystone/index.html
index bd887bd..ece6384 100644
--- a/latest/os/tutorials/eddystone/index.html
+++ b/latest/os/tutorials/eddystone/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/event_queue/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/event_queue/index.html b/latest/os/tutorials/event_queue/index.html
index 8e4388d..fa73d57 100644
--- a/latest/os/tutorials/event_queue/index.html
+++ b/latest/os/tutorials/event_queue/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li class="active">
       <a href="./">Events and Event Queues</a>
     </li>
@@ -952,9 +939,9 @@ Implement the <code>my_interrupt_ev_cb()</code> callback function to process an
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../air_quality_ble/>
+    <a href=../unit_test/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Bluetooth-enabled Air Quality Sensor
+        Previous: Write a Test Suite for a Package
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/ibeacon/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/ibeacon/index.html b/latest/os/tutorials/ibeacon/index.html
index 3f43bc7..b3caf55 100644
--- a/latest/os/tutorials/ibeacon/index.html
+++ b/latest/os/tutorials/ibeacon/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/nRF52/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/nRF52/index.html b/latest/os/tutorials/nRF52/index.html
index c494a13..fe879f9 100644
--- a/latest/os/tutorials/nRF52/index.html
+++ b/latest/os/tutorials/nRF52/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -558,63 +545,68 @@
 <p>Create a project with a simple app that blinks an LED on the nRF52 board from Nordic Semiconductors.  Download the application to the target and watch it blink!</p>
 <p>Note that there are several versions of the nRF52 in the market. The boards tested with this tutorial are listed under "Hardware needed" below.</p>
 <p><br></p>
-<h3 id="hardware-needed">Hardware needed</h3>
+<h3 id="prerequistes">Prerequistes</h3>
+<p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
-<li>nRF52 Development Kit (one of the following)<ul>
+<li>Have a nRF52 Development Kit (one of the following)<ul>
 <li>Dev Kit from Nordic - PCA 10040</li>
 <li>Eval Kit from Rigado - BMD-300-EVAL-ES</li>
 </ul>
 </li>
-<li>Laptop running Mac OS</li>
-<li>It is assumed you have already installed newt tool. </li>
-<li>It is assumed you already installed native tools as described <a href="../../get_started/native_tools/">here</a></li>
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a Micro-USB cable to connect the board and the computer.</li>
+<li>Have computer to build a Mynewt application and connect to your board over USB.</li>
+<li>Install the Newt tool and toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
+<li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>
+<li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section.</li>
 </ul>
 <p><br></p>
-<h3 id="install-jlinkexe">Install jlinkEXE</h3>
-<p>In order to be able to communicate with the SEGGER J-Link debugger on the dev board, you have to download and install the J-Link GDB Server software on to your laptop. You may download the "Software and documentation pack for Mac OS X" from <a href="https://www.segger.com/jlink-software.html">https://www.segger.com/jlink-software.html</a>. </p>
-<p><br></p>
-<h3 id="create-a-project">Create a project.</h3>
-<p>Create a new project to hold your work.  For a deeper understanding, you can read about project creation in 
-<a href="../../get_started/project_create/">Get Started -- Creating Your First Project</a>
-or just follow the commands below.</p>
+<h3 id="create-a-project">Create a Project</h3>
+<p>Create a new project if you do not have an existing one.  You can skip this step and proceed to <a href="#create_targets">create the targets</a> if you already have a project created.  </p>
+<p>Run the following commands to create a new project:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ mkdir ~/dev
     $ cd ~/dev
     $ newt new myproj
     Downloading project skeleton from apache/incubator-mynewt-blinky...
     Installing skeleton in myproj...
     Project myproj successfully created.
-
     $ cd myproj
-
-    $ newt install -v 
+    $ newt install
     apache-mynewt-core
-    Downloading repository description for apache-mynewt-core... success!
-    ...
-    apache-mynewt-core successfully installed version 0.9.0-none
+    $
 </pre></div>
 
 
 <p><br></p>
-<h3 id="create-the-targets">Create the targets</h3>
-<p>Create two targets - one for the bootloader and one for the nrf52 board.  </p>
+<h3 id="create-the-targets"><a name="create_targets"></a>Create the Targets</h3>
+<p>Create two targets for the nRF52-DK board - one for the bootloader and one for the Blinky application.</p>
+<p>Run the following <code>newt target</code> commands, from your project directory (~/dev/myproj), to create a bootloader target. We name the target <code>nrf52_boot</code>:</p>
 <p><font color="#F2853F">
-Note: The correct bsp must be chosen for the board you are using. </font></p>
+Note: For this tutorial, we are using the nRF52-DK board.  You must specify the correct bsp for the board you are using. </font> </p>
 <ul>
 <li>For the Nordic Dev Kit choose @apache-mynewt-core/hw/bsp/nrf52dk instead (in the highlighted lines)</li>
 <li>For the Rigado Eval Kit choose @apache-mynewt-core/hw/bsp/bmd300eval instead (in the highlighted lines)</li>
 </ul>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create blink_nordic
-$ newt target set blink_nordic app=apps/blinky
-<span style="background-color: #ffffcc">$ newt target set blink_nordic bsp=@apache-mynewt-core/hw/bsp/nrf52dk
-</span>$ newt target set blink_nordic build_profile=debug
-
-$ newt target create nrf52_boot
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create nrf52_boot
 $ newt target set nrf52_boot app=@apache-mynewt-core/apps/boot
 <span style="background-color: #ffffcc">$ newt target set nrf52_boot bsp=@apache-mynewt-core/hw/bsp/nrf52dk
 </span>$ newt target set nrf52_boot build_profile=optimized
+</pre></div>
+
+
+<p><br>
+Run the following <code>newt target</code> commands to create a target for your Blinky application. We name the target <code>nrf52_blinky</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create nrf52_blinky
+$ newt target set nrf52_blinky app=apps/blinky
+<span style="background-color: #ffffcc">$ newt target set nrf52_blinky bsp=@apache-mynewt-core/hw/bsp/nrf52dk
+</span>$ newt target set nrf52_blinky build_profile=debug
+</pre></div>
+
 
-$ newt target show 
-targets/blink_nordic
+<p><br>
+You can run the <code>newt target show</code> command to verify your target settings:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target show 
+targets/nrf52_blinky
     app=apps/blinky
     bsp=@apache-mynewt-core/hw/bsp/nrf52dk
     build_profile=debug
@@ -626,45 +618,81 @@ targets/nrf52_boot
 
 
 <p><br></p>
-<h3 id="build-the-target-executables">Build the target executables</h3>
+<h3 id="build-the-target-executables">Build the Target Executables</h3>
+<p>Run the <code>newt build nrf52_boot</code> command to build the bootloader:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build nrf52_boot
-...
-Compiling boot.c
-Archiving boot.a
-Linking boot.elf
-App successfully built: ~/dev/myproj/bin/nrf52_boot/apps/boot/boot.elf
+Building target targets/nrf52_boot
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aes.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/loader.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_validate.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/bootutil_misc.c
+Compiling repos/apache-mynewt-core/apps/boot/src/boot.c
+    ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/nrf52_boot/app/apps/boot/boot.elf
+Target successfully built: targets/nrf52_boot
 </pre></div>
 
 
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build blink_nordic
-...
-Compiling main.c
-Archiving blinky.a
-Linking blinky.elf
-App successfully built: ~/dev/myproj/bin/blink_nordic/apps/blinky/blinky.elf
+<p><br>
+Run the <code>newt build nrf52_blinky</code> command to build the Blinky application:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build nrf52_blinky
+Building target targets/nrf52_blinky
+Assembling repos/apache-mynewt-core/hw/bsp/nrf52dk/src/arch/cortex_m4/gcc_startup_nrf52_split.s
+Compiling repos/apache-mynewt-core/hw/bsp/nrf52dk/src/sbrk.c
+Compiling repos/apache-mynewt-core/hw/cmsis-core/src/cmsis_nvic.c
+Compiling repos/apache-mynewt-core/hw/drivers/uart/uart_hal/src/uart_hal.c
+Assembling repos/apache-mynewt-core/hw/bsp/nrf52dk/src/arch/cortex_m4/gcc_startup_nrf52.s
+Compiling apps/blinky/src/main.c
+
+    ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/nrf52_blinky/app/apps/blinky/blinky.elf
+Target successfully built: targets/nrf52_blinky
 </pre></div>
 
 
 <p><br></p>
-<h3 id="sign-and-create-the-blinky-application-image">Sign and create the blinky application image</h3>
-<p>You must sign and version your application image to download it using newt to the board. Use the newt create-image command to perform this action. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image blink_nordic 1.0.0
-App image successfully generated: ~/dev/myproj/bin/blink_nordic/apps/blinky/blinky.img
-Build manifest: ~/dev/myproj/bin/blink_nordic/apps/blinky/manifest.json
+<h3 id="sign-and-create-the-blinky-application-image">Sign and Create the Blinky Application Image</h3>
+<p>Run the <code>newt create-image nrf52_blinky 1.0.0</code> command to create and sign the application image. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image nrf52_blinky 1.0.0
+newt create-image nrf52_blinky 1.0.0
+App image succesfully generated: ~/dev/myproj/bin/targets/nrf52_blinky/app/apps/blinky/blinky.img
 </pre></div>
 
 
 <p><br></p>
-<h3 id="connect-the-board">Connect the board</h3>
-<p>Connect the evaluation board via micro-USB to your PC via USB cable.</p>
-<p><br></p>
-<h3 id="download-to-the-target">Download to the target</h3>
-<p>Download the bootloader first and then the blinky executable to the target platform. Don't forget to reset the board if you don't see the LED blinking right away!</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt -v load nrf52_boot
-$ newt -v load blink_nordic
+<h3 id="connect-to-the-board">Connect to the Board</h3>
+<ul>
+<li>Connect a micro-USB cable from your computer to the micro-USB port on your nRF52-DK board.</li>
+<li>Turn the power on the board to ON. You should see the green LED light up on the board.</li>
+</ul>
+<h3 id="load-the-bootloader-and-the-blinky-application-image">Load the Bootloader and the Blinky Application Image</h3>
+<p>Run the <code>newt load nrf52_boot</code> command to load the bootloader onto your board: </p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt load nrf52_boot
+Loading bootloader
+$
+</pre></div>
+
+
+<p><br>
+Run the <code>newt load nrf52_blinky</code> command to load Blinky application image onto your board.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt -v load nrf52_blinky
+Loading app image into slot 1
 </pre></div>
 
 
+<p>You should see the LED1 on your board blink!</p>
+<p>Note: If the LED does not blink, try resetting your board.</p>
 <p><br></p>
 <p><strong>Note:</strong> If you want to erase the flash and load the image again, you can use JLinkExe to issue an <code>erase</code> command.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ JLinkExe -device nRF52 -speed 4000 -if SWD
@@ -693,8 +721,7 @@ $
 
 
 <h3 id="conclusion">Conclusion</h3>
-<p>You have created, setup, compiled, loaded, and ran your first mynewt application
-for an nrf52 board.</p>
+<p>You have created, setup, compiled, loaded, and ran your first mynewt application for an nrf52 board.</p>
 <p>We have more fun tutorials for you to get your hands dirty. Be bold and work on the OS with tutorials on <a href="../unit_test/">writing a test suite</a> or try enabling additional functionality such as <a href="../project-target-slinky/">remote comms</a> or <a href="../bletiny_project/">Bluetooth Low Energy</a> on your current board.</p>
 <p>If you see anything missing or want to send us feedback, please do so by signing up for appropriate mailing lists on our <a href="../../../community/">Community Page</a>.</p>
 <p>Keep on hacking and blinking!</p>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/nrf52_adc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/nrf52_adc/index.html b/latest/os/tutorials/nrf52_adc/index.html
index 5e9ee3d..07a7bfd 100644
--- a/latest/os/tutorials/nrf52_adc/index.html
+++ b/latest/os/tutorials/nrf52_adc/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/olimex/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/olimex/index.html b/latest/os/tutorials/olimex/index.html
index 7528d3c..47acbfa 100644
--- a/latest/os/tutorials/olimex/index.html
+++ b/latest/os/tutorials/olimex/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -554,29 +541,24 @@
                             <h2 id="blinky-your-hello-world-on-olimex">Blinky, your "Hello World!", on Olimex</h2>
 <h3 id="objective">Objective</h3>
 <p>Learn how to use packages from a default application repository of Mynewt to build your first <em>Hello World</em> application (Blinky) on a target board. Once built using the <em>newt</em> tool, this application will blink the LED lights on the target board. Fun stuff!</p>
-<p>This tutorial shows you how to create a runtime image for an Olimex board to make its LED blink. Download the image to its flash memory and see the LED blink!</p>
-<p><br></p>
-<h3 id="what-you-need">What you need</h3>
-<ol>
-<li>STM32-E407 development board from Olimex. You can order it from <a href="http://www.mouser.com/search/ProductDetail.aspx?R=0virtualkey0virtualkeySTM32-E407">http://www.mouser.com</a>, <a href="http://www.digikey.com/product-detail/en/STM32-E407/1188-1093-ND/3726951">http://www.digikey.com</a>, and other places.</li>
-<li>ARM-USB-TINY-H connector with JTAG interface for debugging ARM microcontrollers (comes with the ribbon cable to hook up to the board)</li>
-<li>USB A-B type cable to connect the debugger to your personal computer</li>
-<li>Personal Computer with Mac OS (Mac: OS X Yosemite Version 10.10.5) or Linux box (Ubuntu 14.10: Utopic Unicorn)</li>
-<li>An account on Github repository and <em>git</em> installed on your computer.</li>
-<li>It is assumed you have already installed newt tool.</li>
-<li>It is assumed you already installed native tools as described <a href="../../get_started/native_tools/">here</a></li>
-</ol>
-<p>Also, we assume that you're familiar with UNIX shells. Let's gets started!</p>
+<p>This tutorial shows you how to create a blinky application for the Olimex board. It also shows you how to load the application onto the board's flash memory and run the application.</p>
 <p><br></p>
-<h3 id="prepare-the-software">Prepare the Software</h3>
+<h3 id="prerequisites">Prerequisites</h3>
+<p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
-<li>Make sure the PATH environment variable includes the $HOME/dev/go/bin directory.</li>
+<li>Have a STM32-E407 development board from Olimex. </li>
+<li>Have a ARM-USB-TINY-H connector with JTAG interface for debugging ARM microcontrollers (comes with the ribbon cable to hook up to the board)</li>
+<li>Have USB A-B type cable to connect the debugger to your personal computer.</li>
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a computer to build a Mynewt application and connect to your board over USB.</li>
+<li>Install the Newt tool and toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
+<li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>
+<li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section.</li>
 </ul>
 <p><br></p>
-<h3 id="create-a-project">Create a project.</h3>
-<p>Create a new project to hold your work.  For a deeper understanding, you can read about project creation in
-<a href="../../get_started/project_create/">Get Started -- Creating Your First Project</a>
-or just follow the commands below.</p>
+<h3 id="create-a-project">Create a Project</h3>
+<p>Create a new project if you do not have an existing one.  You can skip this step and proceed to <a href="#create_targets">create the targets</a> if you already created a project.</p>
+<p>Run the following commands to create a new project:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ mkdir ~/dev
     $ cd ~/dev
     $ newt new myproj
@@ -586,112 +568,139 @@ or just follow the commands below.</p>
 
     $cd myproj
 
-    $ newt install -v
+    $ newt install
     apache-mynewt-core
-    Downloading repository description for apache-mynewt-core... success!
-    ...
-    apache-mynewt-core successfully installed version 0.7.9-none
+    $
 </pre></div>
 
 
 <p><br></p>
-<h3 id="create-targets">Create targets</h3>
-<p>Change directory to ~/dev/myproj directory and define the <em>blinky</em> target inside myproj, using the <em>newt</em> tool. Starting with the target name, assign specific aspects of the project, as shown below, to pull the appropriate packages and build the right bundle or list for the board. For example, we set the build_profile, board support package (bsp), and app.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt target create blinky
-    $ newt target set blinky build_profile=debug
-    $ newt target set blinky bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
-    $ newt target set blinky app=apps/blinky
-
-    $ newt target create boot_olimex
-    $ newt target set boot_olimex app=@apache-mynewt-core/apps/boot
-    $ newt target set boot_olimex bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
-    $ newt target set boot_olimex build_profile=optimized
-
-    $ newt target show
-    targets/blinky
-        app=apps/blinky
-        bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
-        build_profile=debug
-    targets/boot_olimex
-        app=@apache-mynewt-core/apps/boot
-        bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
-        build_profile=optimized
+<h3 id="create-the-targets"><a name="create_targets"></a>Create the Targets</h3>
+<p>Create two targets for the Olimex board - one for the bootloader and one for the Blinky application.</p>
+<p>Run the following <code>newt target</code> commands to create a bootloader target. We name the target <code>boot_olimex</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create boot_olimex
+$ newt target set boot_olimex build_profile=optimized
+$ newt target set boot_olimex app=@apache-mynewt-core/apps/boot
+$ newt target set boot_olimex bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
+</pre></div>
+
+
+<p><br>
+Run the following <code>newt target</code> commands to create a target for your Blinky application. We name the target <code>olimex_blinky</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create olimex_blinky
+$ newt target set olimex_blinky build_profile=debug
+$ newt target set olimex_blinky bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
+$ newt target set olimex_blinky app=apps/blinky
 </pre></div>
 
 
 <p><br></p>
-<h3 id="build-the-images">Build the images</h3>
-<p>Next, let's build the images for the above targets. Afer you build the target, you can find the executable <em>blinky.elf</em> in the project directory <em>~/dev/myproj/bin/blinky/apps/blinky/.</em></p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt build blinky
-    Compiling case.c
-    Compiling suite.c
-    ...
-    Linking blinky.elf
-    App successfully built:~/dev/myproj/bin/blinky/apps/blinky/blinky.elf
-    $ ls ~/dev/myproj/bin/blinky/apps/blinky/
-        blinky.elf      blinky.elf.bin     blinky.elf.cmd  
-        blinky.elf.lst  blinky.elf.map
-
-    $ newt build boot_olimex
-    Building target targets/boot_olimex
-    App successfully built: ~/dev/myproj/bin/boot_olimex/apps/boot/boot.elf
+<h3 id="build-the-bootloader">Build the Bootloader</h3>
+<p>Run the <code>newt build boot_olimex</code> command to build the boot loader image:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build boot_olimex
+Building target targets/boot_olimex
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+Compiling bin/targets/boot_olimex/generated/src/boot_olimex-sysflash.c
+
+     ...
+
+Archiving libc_baselibc.a
+Archiving sys_flash_map.a
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/boot_olimex/app/apps/boot/boot.elf
+Target successfully built: targets/boot_olimex
 </pre></div>
 
 
 <p><br></p>
-<h3 id="sign-and-create-the-blinky-application-image">Sign and create the blinky application image</h3>
-<p>You must sign and version your application image to download it using newt to the board. Use the newt create-image command to perform this action. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image blinky 1.0.0
-App image successfully generated: ~/dev/myproj/bin/blinky/apps/blinky/blinky.img
-Build manifest: ~/dev/myproj/bin/blinky/apps/blinky/manifest.json
+<h3 id="build-the-blinky-application">Build the Blinky Application</h3>
+<p>Run the <code>newt build olimex_blinky</code> command to build the blinky application:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build olimex_blinky
+Building target targets/olimex_blinky
+Assembling repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/src/arch/cortex_m4/startup_STM32F40x.s
+Compiling repos/apache-mynewt-core/hw/drivers/uart/src/uart.c
+Compiling repos/apache-mynewt-core/hw/cmsis-core/src/cmsis_nvic.c
+Compiling repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/src/sbrk.c
+Compiling apps/blinky/src/main.c
+Compiling repos/apache-mynewt-core/hw/drivers/uart/uart_hal/src/uart_hal.c
+Compiling repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c
+Compiling repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/src/system_stm32f4xx.c
+Compiling repos/apache-mynewt-core/hw/hal/src/hal_common.c
+Compiling repos/apache-mynewt-core/hw/hal/src/hal_flash.c
+
+   ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/olimex_blinky/app/apps/blinky/blinky.elf
+Target successfully built: targets/olimex_blinky
 </pre></div>
 
 
 <p><br></p>
-<h3 id="prepare-the-hardware-to-boot-from-flash">Prepare the hardware to boot from flash</h3>
-<ul>
-<li>Locate the boot jumpers on the board.</li>
-</ul>
+<h3 id="sign-and-create-the-blinky-application-image">Sign and Create the Blinky Application Image</h3>
+<p>Run the <code>newt create-image olimex_blinky 1.0.0</code> command to sign and create an image file for your blinky application. You may assign an arbitrary version (e.g. 1.0.0) number.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image olimex_blinky 1.0.0
+App image succesfully generated: ~/dev/myproj/bin/targets/olimex_blinky/app/apps/blinky/blinky.img
+</pre></div>
+
+
 <p><br></p>
-<p><img alt="Alt Layout - Top View" src="../pics/topview.png" />
-<img alt="Alt Layout - Bottom View" src="../pics/bottomview.png" /></p>
+<h3 id="connect-to-the-board">Connect to the Board</h3>
+<p>Configure your board to bootload from flash memory and to use the JTAG/SWD for the power source. Refer to the following diagrams to locate the boot jumpers and power input select jumpers on your board.
+<br></p>
+<p align="center">
+<img src="../pics/STM32-E407_top_small.jpg"></img>
+<br>
+<img src="../pics/STM32-E407_bot_small.jpg"></img>
+</p>
+
 <p><br></p>
 <ul>
 <li>
-<p>B1_1/B1_0 and B0_1/B0_0 are PTH jumpers. Note that because the markings on the board may not always be accurate, when in doubt, you should always refer to the manual for the correct positioning. Since the jumpers are a pair, they should move together, and as such, the pair is responsible for the boot mode when bootloader is present.
-To locate the bootloader, the board searches in three places: User Flash Memory, System Memory or the Embedded SRAM. For this Blinky project, we will configure it to boot from flash by jumpering <strong>B0_0</strong> and <strong>B1_0</strong>.</p>
+<p>Locate the boot jumpers on the lower right corner of the board.  <strong>B1_1/B1_0</strong> and <strong>B0_1/B0_0</strong> are PTH jumpers to control the boot mode when a bootloader is present.  These two jumpers must be moved together.  The board searches for the bootloader in three places: User Flash Memory, System Memory or the Embedded SRAM. For this Blinky project, we configure the board to boot from flash by jumpering <strong>B0_0</strong> and <strong>B1_0</strong>.
+<strong>Note:</strong> The markings on the board may not always be accurate, and you should always refer to the manual for the correct positioning. </p>
 </li>
 <li>
-<p>Connect USB-OTG#2 in the picture above to a USB port on your computer (or a powered USB hub to make sure there is enough power available to the board).</p>
+<p>Locate the <strong>Power Input Select</strong> jumpers on the lower left corner of the board.  Set the Power Select jumpers to position 3 and 4 to use the JTAG/SWD for the power source. If you would like to use a different power source, refer to [OLIMEZ STM32-E407] user manual](https://www.olimex.com/Products/ARM/ST/STM32-E407/resources/STM32-E407.pdf) to pin specificiation.</p>
 </li>
 <li>
-<p>The red PWR LED should be lit.</p>
+<p>Connect the JTAG connector to the JTAG/SWD interface on the board. </p>
 </li>
 <li>
-<p>Connect the JTAG connector to the SWD/JTAG interface on the board. The other end of the cable should be connected to the USB port or hub of your computer.</p>
+<p>Connect the USB A-B cable to the ARM-USB-TINY-H connector and your personal computer. </p>
+</li>
+<li>
+<p>Check that the red PWR LED lights up.
+<br></p>
 </li>
 </ul>
-<p><br></p>
-<h3 id="lets-go">Let's Go!</h3>
-<ul>
-<li>Load the images</li>
-</ul>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt -v load boot_olimex
-Loading image with: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/olimex_stm32-e407_devboard_download.sh ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/ ~/dev/myproj/bin/boot_olimex/apps/boot/boot BASELIBC FS LIBC NFFS bootloader
+<h3 id="load-the-bootloader-and-blinky-application">Load the Bootloader and Blinky Application</h3>
+<p>Run the <code>newt load boot_olimex</code> command to load the bootloader image onto the board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$newt load -v boot_olimex
+Loading bootloader
+Load command: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/olimex_stm32-e407_devboard_download.sh ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard ~/dev/myproj/bin/targets/boot_olimex/app/apps/boot/boot
 Successfully loaded image.
+</pre></div>
+
 
-$ newt -v load blinky
-Loading image with: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/olimex_stm32-e407_devboard_download.sh ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/ ~/dev/myproj/bin/blinky/apps/blinky/blinky BASELIBC LIBC
+<p>Run the <code>newt load olimex_blinky</code> command to load the blinky application image onto the board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">newt load -v olimex_blinky
+Loading app image into slot 1
+Load command: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/olimex_stm32-e407_devboard_download.sh ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard ~/dev/myproj/bin/targets/olimex_blinky/app/apps/blinky/blinky
 Successfully loaded image.
 </pre></div>
 
 
-<p><br></p>
-<ul>
-<li>Voil�! The LED should be blinking! Success!</li>
-</ul>
-<p><br></p>
-<p><strong>But wait...not so fast.</strong> Let's double check that it is indeed booting from flash and making the LED blink from the image in flash. Pull the USB cable off the Olimex JTAG adaptor, severing the debug connection to the JTAG port. Next power off the Olimex board by pulling out the USB cable from the board. Wait for a couple of seconds and plug the USB cable back to the board.</p>
+<p><br>
+The LED should be blinking!</p>
+<p><br>
+<strong>But wait...not so fast.</strong> Let's double check that it is indeed booting from flash and making the LED blink from the image in flash. Pull the USB cable off the Olimex JTAG adaptor, severing the debug connection to the JTAG port. Next power off the Olimex board by pulling out the USB cable from the board. Wait for a couple of seconds and plug the USB cable back to the board.</p>
 <p>The LED light will start blinking again. Success!</p>
 <p><strong>Note #1:</strong> If you want to download the image to flash and a gdb session opened up, use <code>newt debug blinky</code>. Type <code>c</code> to continue inside the gdb session.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt debug blinky

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/pics/STM32-E407_bot_small.jpg
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/pics/STM32-E407_bot_small.jpg b/latest/os/tutorials/pics/STM32-E407_bot_small.jpg
new file mode 100755
index 0000000..da1889e
Binary files /dev/null and b/latest/os/tutorials/pics/STM32-E407_bot_small.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/pics/STM32-E407_top_small.jpg
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/pics/STM32-E407_top_small.jpg b/latest/os/tutorials/pics/STM32-E407_top_small.jpg
new file mode 100755
index 0000000..938a04b
Binary files /dev/null and b/latest/os/tutorials/pics/STM32-E407_top_small.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/pin-wheel-mods/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/pin-wheel-mods/index.html b/latest/os/tutorials/pin-wheel-mods/index.html
index 0f7e37c..92436af 100644
--- a/latest/os/tutorials/pin-wheel-mods/index.html
+++ b/latest/os/tutorials/pin-wheel-mods/index.html
@@ -355,19 +355,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/project-slinky/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/project-slinky/index.html b/latest/os/tutorials/project-slinky/index.html
index f5eed98..1c9bb8a 100644
--- a/latest/os/tutorials/project-slinky/index.html
+++ b/latest/os/tutorials/project-slinky/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -564,24 +551,38 @@
 <p>To build your target, use <code>newt build</code>.  When complete, an executable file
 is created.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt build sim_slinky 
-    Compiling main.c
-    ...
-    Linking slinky.elf
-    App successfully built: ~/dev/slinky/bin/sim_slinky/apps/slinky/slinky.elf
+    Building target targets/sim_slinky
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+    Compiling repos/apache-mynewt-core/boot/split/src/split.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/image_validate.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/loader.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/bootutil_misc.c
+    Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aesni.c
+    Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aes.c
+    Compiling repos/apache-mynewt-core/boot/split/src/split_config.c
+    Compiling repos/apache-mynewt-core/apps/slinky/src/main.c
+
+              ...
+
+    Archiving util_crc.a
+    Archiving util_mem.a
+    Linking ~/dev/slinky/bin/targets/sim_slinky/app/apps/slinky/slinky.elf
+    Target successfully built: targets/sim_slinky
 </pre></div>
 
 
 <h3 id="run-the-target">Run the target</h3>
 <p>Run the executable you have build for the simulated environment. The serial port name on which the simulated target is connected is shown in the output
 when mynewt slinky starts.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ ~/dev/slinky/bin/sim_slinky/apps/slinky/slinky.elf
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ ~/dev/slinky/bin/targets/sim_slinky/app/apps/slinky/slinky.elf
     uart0 at /dev/ttys005
 </pre></div>
 
 
 <p><br></p>
-<p>In this example, the slinky app opened up a com port <code>/dev/ttys005</code>
-for communications with newtmgr. </p>
+<p>In this example, the slinky app opened up a com port <code>/dev/ttys005</code> for communications with newtmgr. </p>
 <p><strong>NOTE:</strong> This application will block. You will need to open a new console (or execute this in another console) to continue the tutorial.*</p>
 <p><br></p>
 <h3 id="setting-up-a-connection-profile">Setting up a connection profile</h3>
@@ -590,34 +591,28 @@ for communications with newtmgr. </p>
     Connection profile sim1 successfully added
     $ newtmgr conn show
     Connection profiles: 
-      sim1: type=serial, connstring=&#39;/dev/ttys007&#39;
+      sim1: type=serial, connstring=&#39;/dev/ttys005&#39;
 </pre></div>
 
 
 <h3 id="executing-newtmgr-commands-with-the-target">Executing newtmgr commands with the target</h3>
-<p>You can now use connection profile <code>sim1</code> to talk to the running sim_blinky.
+<p>You can now use connection profile <code>sim1</code> to talk to the running sim_slinky.
 As an example, we will query the running mynewt OS for the usage of its 
 memory pools.  </p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newtmgr -c sim1 mpstats
     Return Code = 0
-      nffs_cache_inode_pool (blksize=36 nblocks=4 nfree=4)
-      nffs_cache_block_pool (blksize=32 nblocks=64 nfree=64)
-      nffs_dir_pool (blksize=8 nblocks=4 nfree=4)
-      default_mbuf_data (blksize=256 nblocks=10 nfree=8)
-      nffs_file_pool (blksize=12 nblocks=4 nfree=4)
-      nffs_inode_entry_pool (blksize=24 nblocks=100 nfree=98)
-      nffs_block_entry_pool (blksize=12 nblocks=100 nfree=100)
+                            name blksz  cnt free  min
+                          msys_1   292   12   10   10
 </pre></div>
 
 
 <p>As a test command, you can send an arbitrary string to the target and it
 will echo that string back in a response to newtmgr.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newtmgr -c sim1 echo &quot;Hello Mynewt&quot;
-    {&quot;r&quot;: &quot;Hello Mynewt&quot;}
+    Hello Mynewt
 </pre></div>
 
 
-<p>The response comes back as a json string.</p>
 <p>In addition to these, you can also examine running tasks, statistics, 
 logs, image status (not on sim), and configuration.</p>
                         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/project-target-slinky/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/project-target-slinky/index.html b/latest/os/tutorials/project-target-slinky/index.html
index 5144d9b..d378dc2 100644
--- a/latest/os/tutorials/project-target-slinky/index.html
+++ b/latest/os/tutorials/project-target-slinky/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/repo/add_repos/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/repo/add_repos/index.html b/latest/os/tutorials/repo/add_repos/index.html
index 9d94d02..ccf97da 100644
--- a/latest/os/tutorials/repo/add_repos/index.html
+++ b/latest/os/tutorials/repo/add_repos/index.html
@@ -308,19 +308,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/repo/create_repo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/repo/create_repo/index.html b/latest/os/tutorials/repo/create_repo/index.html
index f47e18e..377edc4 100644
--- a/latest/os/tutorials/repo/create_repo/index.html
+++ b/latest/os/tutorials/repo/create_repo/index.html
@@ -308,19 +308,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/repo/private_repo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/repo/private_repo/index.html b/latest/os/tutorials/repo/private_repo/index.html
index a23649d..d160527 100644
--- a/latest/os/tutorials/repo/private_repo/index.html
+++ b/latest/os/tutorials/repo/private_repo/index.html
@@ -308,19 +308,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/repo/upgrade_repo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/repo/upgrade_repo/index.html b/latest/os/tutorials/repo/upgrade_repo/index.html
index 603767d..d916294 100644
--- a/latest/os/tutorials/repo/upgrade_repo/index.html
+++ b/latest/os/tutorials/repo/upgrade_repo/index.html
@@ -308,19 +308,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/tasks_lesson/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/tasks_lesson/index.html b/latest/os/tutorials/tasks_lesson/index.html
index 4695335..feabcbd 100644
--- a/latest/os/tutorials/tasks_lesson/index.html
+++ b/latest/os/tutorials/tasks_lesson/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/tutorials/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/tutorials/index.html b/latest/os/tutorials/tutorials/index.html
index c254605..b1584e0 100644
--- a/latest/os/tutorials/tutorials/index.html
+++ b/latest/os/tutorials/tutorials/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/unit_test/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/unit_test/index.html b/latest/os/tutorials/unit_test/index.html
index c3e5511..4523244 100644
--- a/latest/os/tutorials/unit_test/index.html
+++ b/latest/os/tutorials/unit_test/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -674,8 +661,8 @@ the message shown below.</p>
     </li>
     <li class="pull-right">
     
-    <a href=../air_quality_sensor/>
-        Next: Basic Air Quality Sensor
+    <a href=../event_queue/>
+        Next: Events and Event Queues
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/wi-fi_on_arduino/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/wi-fi_on_arduino/index.html b/latest/os/tutorials/wi-fi_on_arduino/index.html
index 5dc1b91..2dbacde 100644
--- a/latest/os/tutorials/wi-fi_on_arduino/index.html
+++ b/latest/os/tutorials/wi-fi_on_arduino/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/sitemap.xml
----------------------------------------------------------------------
diff --git a/latest/sitemap.xml b/latest/sitemap.xml
index cd069f3..5bf7961 100644
--- a/latest/sitemap.xml
+++ b/latest/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,7 +13,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -22,7 +22,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -30,7 +30,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -38,7 +38,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -46,7 +46,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -54,7 +54,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -62,7 +62,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -71,7 +71,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -83,7 +83,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -123,13 +123,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/os/tutorials/pics/STM32-E407_bot_small.jpg
----------------------------------------------------------------------
diff --git a/os/tutorials/pics/STM32-E407_bot_small.jpg b/os/tutorials/pics/STM32-E407_bot_small.jpg
new file mode 100755
index 0000000..da1889e
Binary files /dev/null and b/os/tutorials/pics/STM32-E407_bot_small.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/os/tutorials/pics/STM32-E407_top_small.jpg
----------------------------------------------------------------------
diff --git a/os/tutorials/pics/STM32-E407_top_small.jpg b/os/tutorials/pics/STM32-E407_top_small.jpg
new file mode 100755
index 0000000..938a04b
Binary files /dev/null and b/os/tutorials/pics/STM32-E407_top_small.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/sitemap.xml
----------------------------------------------------------------------
diff --git a/sitemap.xml b/sitemap.xml
index 86e4c9b..7c5d2e1 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -129,13 +129,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/v0_9_0/index.html
----------------------------------------------------------------------
diff --git a/v0_9_0/index.html b/v0_9_0/index.html
index 0284379..ab2ae6f 100644
--- a/v0_9_0/index.html
+++ b/v0_9_0/index.html
@@ -249,13 +249,16 @@
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF52832/"> nRF52 DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
-                  <li>
-                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                   <li>
+                      <a href="https://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK"> nRF52840 Preview DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF51822"> nRF51 DK </a> from Nordic Semiconductor (Cortex-M0)
                   </li>
                   <li>
+                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                  </li>
+                  <li>
                       <a href="http://redbearlab.com/blenano/"> BLE Nano </a> from RedBear (Nordic nRF51822 SoC based)
                   </li>
                   <li>
@@ -265,9 +268,6 @@
                       <a href="https://www.rigado.com/products/bmd-300-eval-kit/"> BMD-300-EVAL-ES </a> from Rigado (Cortex-M4)
                   </li>
                   <li>
-                      <a href="http://www.st.com/en/evaluation-tools/stm32f3discovery.html"> STM32F3DISCOVERY </a> from ST Micro (Cortex-M4)
-                  </li>
-                  <li>
                       <a href="http://www.st.com/en/evaluation-tools/stm32f4discovery.html"> STM32F4DISCOVERY </a> from ST Micro (Cortex-M4)
                   </li>
                   <li>
@@ -291,8 +291,13 @@
                   <li>
                       <a href="https://creatordev.io/ci40-iot-dev-kit.html"> Creator Ci40 IoT Kit </a> from Imagination Technologies (MIPS CPU)
                   </li>
+                  <li>
+                      <a href="http://microbit.org/hardware"> BBB micro:bit </a> with Nordic nRF51822 (Cortex-M0)
+                  </li> 
+                  <li>
+                      <a href="https://www.adafruit.com/feather"> Adafruit Feather </a> with Nordic nRF52 (Cortex-M4) 
+                  </li>
               </ul>
-
             </div>
           </div>
         </div>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/v0_9_0/landing.html
----------------------------------------------------------------------
diff --git a/v0_9_0/landing.html b/v0_9_0/landing.html
index ccc7ec2..a0ad2e9 100644
--- a/v0_9_0/landing.html
+++ b/v0_9_0/landing.html
@@ -108,13 +108,16 @@
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF52832/"> nRF52 DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
-                  <li>
-                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                   <li>
+                      <a href="https://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK"> nRF52840 Preview DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF51822"> nRF51 DK </a> from Nordic Semiconductor (Cortex-M0)
                   </li>
                   <li>
+                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                  </li>
+                  <li>
                       <a href="http://redbearlab.com/blenano/"> BLE Nano </a> from RedBear (Nordic nRF51822 SoC based)
                   </li>
                   <li>
@@ -124,9 +127,6 @@
                       <a href="https://www.rigado.com/products/bmd-300-eval-kit/"> BMD-300-EVAL-ES </a> from Rigado (Cortex-M4)
                   </li>
                   <li>
-                      <a href="http://www.st.com/en/evaluation-tools/stm32f3discovery.html"> STM32F3DISCOVERY </a> from ST Micro (Cortex-M4)
-                  </li>
-                  <li>
                       <a href="http://www.st.com/en/evaluation-tools/stm32f4discovery.html"> STM32F4DISCOVERY </a> from ST Micro (Cortex-M4)
                   </li>
                   <li>
@@ -150,8 +150,13 @@
                   <li>
                       <a href="https://creatordev.io/ci40-iot-dev-kit.html"> Creator Ci40 IoT Kit </a> from Imagination Technologies (MIPS CPU)
                   </li>
+                  <li>
+                      <a href="http://microbit.org/hardware"> BBB micro:bit </a> with Nordic nRF51822 (Cortex-M0)
+                  </li> 
+                  <li>
+                      <a href="https://www.adafruit.com/feather"> Adafruit Feather </a> with Nordic nRF52 (Cortex-M4) 
+                  </li>
               </ul>
-
             </div>
           </div>
         </div>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/v0_9_0/os/tutorials/pics/STM32-E407_bot_small.jpg
----------------------------------------------------------------------
diff --git a/v0_9_0/os/tutorials/pics/STM32-E407_bot_small.jpg b/v0_9_0/os/tutorials/pics/STM32-E407_bot_small.jpg
new file mode 100755
index 0000000..da1889e
Binary files /dev/null and b/v0_9_0/os/tutorials/pics/STM32-E407_bot_small.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/v0_9_0/os/tutorials/pics/STM32-E407_top_small.jpg
----------------------------------------------------------------------
diff --git a/v0_9_0/os/tutorials/pics/STM32-E407_top_small.jpg b/v0_9_0/os/tutorials/pics/STM32-E407_top_small.jpg
new file mode 100755
index 0000000..938a04b
Binary files /dev/null and b/v0_9_0/os/tutorials/pics/STM32-E407_top_small.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/v0_9_0/sitemap.xml
----------------------------------------------------------------------
diff --git a/v0_9_0/sitemap.xml b/v0_9_0/sitemap.xml
index 86e4c9b..7c5d2e1 100644
--- a/v0_9_0/sitemap.xml
+++ b/v0_9_0/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -129,13 +129,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         


[04/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/newt/install/newt_linux/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/install/newt_linux/index.html b/latest/newt/install/newt_linux/index.html
index dac09ae..2e481ee 100644
--- a/latest/newt/install/newt_linux/index.html
+++ b/latest/newt/install/newt_linux/index.html
@@ -439,7 +439,7 @@
 <ul>
 <li>
 <p>Next, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import <em>newt</em> repo into your local Go environment.</p>
-<p><strong>Note</strong>: The Newt tool requires Go version 1.5 or later. It uses the support for "vendoring" that was added in Go 1.5. Depending on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.5 or 1.6 from <a href="https://golang.org/dl/">https://golang.org/dl/</a>. You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at <a href="https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04">https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04</a>.</p>
+<p><strong>Note</strong>: The Newt tool requires Go version 1.6 or later. Depending on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.6 from <a href="https://golang.org/dl/">https://golang.org/dl/</a>. You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at <a href="https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04">https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04</a>.</p>
 </li>
 </ul>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">        $ sudo apt-get install golang 
@@ -485,42 +485,55 @@
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">        $ newt version
         Newt version:  1.0
         $ newt -h
-        Newt allows you to create your own embedded project based on the Mynewt
-        operating system. Newt provides both build and package management in a
-        single tool, which allows you to compose an embedded workspace, and set
-        of projects, and then build the necessary artifacts from those projects.
-        For more information on the Mynewt operating system, please visit
-        https://www.github.com/mynewt/documentation.
+        Newt allows you to create your own embedded application based on the Mynewt 
+        operating system. Newt provides both build and package management in a single 
+        tool, which allows you to compose an embedded application, and set of 
+        projects, and then build the necessary artifacts from those projects. For more 
+        information on the Mynewt operating system, please visit 
+        https://mynewt.apache.org/. 
 
-        Please use the newt help command, and specify the name of the command
-        you want help for, for help on how to use a specific command
+        Please use the newt help command, and specify the name of the command you want 
+        help for, for help on how to use a specific command
 
         Usage:
-         newt [flags]
-         newt [command]
+          newt [flags]
+          newt [command]
 
         Examples:
-         newt
-         newt help [&lt;command-name&gt;]
-           For help on &lt;command-name&gt;.  If not specified, print this message.
-
+          newt
+          newt help [&lt;command-name&gt;]
+            For help on &lt;command-name&gt;.  If not specified, print this message.
 
         Available Commands:
-         version     Display the Newt version number.
-         target      Set and view target information
-         egg         Commands to list and inspect eggs on a nest
-         nest        Commands to manage nests &amp; clutches (remote egg repositories)
-         help        Help about any command
+          build        Build one or more targets
+          clean        Delete build artifacts for one or more targets
+          create-image Add image header to target binary
+          debug        Open debugger session to target
+          info         Show project info
+          install      Install project dependencies
+          load         Load built target to board
+          mfg          Manufacturing flash image commands
+          new          Create a new project
+          pkg          Create and manage packages in the current workspace
+          run          build/create-image/download/debug &lt;target&gt;
+          size         Size of target components
+          sync         Synchronize project dependencies
+          target       Commands to create, delete, configure, and query targets
+          test         Executes unit tests for one or more packages
+          upgrade      Upgrade project dependencies
+          vals         Display valid values for the specified element type(s)
+          version      Display the Newt version number
 
         Flags:
-         -h, --help=false: help for newt
-         -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-         -q, --quiet=false: Be quiet; only display error output.
-         -s, --silent=false: Be silent; don&#39;t output anything.
-         -v, --verbose=false: Enable verbose output when executing commands.
-
-
-        Use &quot;newt help [command]&quot; for more information about a command.
+          -h, --help              Help for newt commands
+          -j, --jobs int          Number of concurrent build jobs (default 8)
+          -l, --loglevel string   Log level (default &quot;WARN&quot;)
+          -o, --outfile string    Filename to tee output to
+          -q, --quiet             Be quiet; only display error output
+          -s, --silent            Be silent; don&#39;t output anything
+          -v, --verbose           Enable verbose output when executing commands
+
+        Use &quot;newt [command] --help&quot; for more information about a comma
 </pre></div>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/newt/install/newt_mac/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/install/newt_mac/index.html b/latest/newt/install/newt_mac/index.html
index ab1a2cf..0afa490 100644
--- a/latest/newt/install/newt_mac/index.html
+++ b/latest/newt/install/newt_mac/index.html
@@ -490,42 +490,55 @@
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">        $ newt version
         Newt version:  1.0
         $ newt -h
-        Newt allows you to create your own embedded project based on the Mynewt
-        operating system. Newt provides both build and package management in a
-        single tool, which allows you to compose an embedded workspace, and set
-        of projects, and then build the necessary artifacts from those projects.
-        For more information on the Mynewt operating system, please visit
-        https://www.github.com/mynewt/documentation.
+        Newt allows you to create your own embedded application based on the Mynewt 
+        operating system. Newt provides both build and package management in a single 
+        tool, which allows you to compose an embedded application, and set of 
+        projects, and then build the necessary artifacts from those projects. For more 
+        information on the Mynewt operating system, please visit 
+        https://mynewt.apache.org/. 
 
-        Please use the newt help command, and specify the name of the command
-        you want help for, for help on how to use a specific command
+        Please use the newt help command, and specify the name of the command you want 
+        help for, for help on how to use a specific command
 
         Usage:
-         newt [flags]
-         newt [command]
+          newt [flags]
+          newt [command]
 
         Examples:
-         newt
-         newt help [&lt;command-name&gt;]
-           For help on &lt;command-name&gt;.  If not specified, print this message.
-
+          newt
+          newt help [&lt;command-name&gt;]
+            For help on &lt;command-name&gt;.  If not specified, print this message.
 
         Available Commands:
-         version     Display the Newt version number.
-         target      Set and view target information
-         egg         Commands to list and inspect eggs on a nest
-         nest        Commands to manage nests &amp; clutches (remote egg repositories)
-         help        Help about any command
+          build        Build one or more targets
+          clean        Delete build artifacts for one or more targets
+          create-image Add image header to target binary
+          debug        Open debugger session to target
+          info         Show project info
+          install      Install project dependencies
+          load         Load built target to board
+          mfg          Manufacturing flash image commands
+          new          Create a new project
+          pkg          Create and manage packages in the current workspace
+          run          build/create-image/download/debug &lt;target&gt;
+          size         Size of target components
+          sync         Synchronize project dependencies
+          target       Commands to create, delete, configure, and query targets
+          test         Executes unit tests for one or more packages
+          upgrade      Upgrade project dependencies
+          vals         Display valid values for the specified element type(s)
+          version      Display the Newt version number
 
         Flags:
-         -h, --help=false: help for newt
-         -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-         -q, --quiet=false: Be quiet; only display error output.
-         -s, --silent=false: Be silent; don&#39;t output anything.
-         -v, --verbose=false: Enable verbose output when executing commands.
-
-
-        Use &quot;newt help [command]&quot; for more information about a command.
+          -h, --help              Help for newt commands
+          -j, --jobs int          Number of concurrent build jobs (default 8)
+          -l, --loglevel string   Log level (default &quot;WARN&quot;)
+          -o, --outfile string    Filename to tee output to
+          -q, --quiet             Be quiet; only display error output
+          -s, --silent            Be silent; don&#39;t output anything
+          -v, --verbose           Enable verbose output when executing commands
+
+        Use &quot;newt [command] --help&quot; for more information about a comma
 </pre></div>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/newtmgr/command_list/newtmgr_conn/index.html
----------------------------------------------------------------------
diff --git a/latest/newtmgr/command_list/newtmgr_conn/index.html b/latest/newtmgr/command_list/newtmgr_conn/index.html
index 6f72445..cbec47a 100644
--- a/latest/newtmgr/command_list/newtmgr_conn/index.html
+++ b/latest/newtmgr/command_list/newtmgr_conn/index.html
@@ -482,7 +482,7 @@
 <tbody>
 <tr>
 <td>add</td>
-<td>The newtmgr conn add <conn_profile> <var-name=var-value> command creates a connection profile named <code>conn_profile</code>. A profile consists of these variables: <ul><li><code>name</code>: Connection name. Defaults to <code>conn_profile</code> when the variable is not set in the command. </li><li><code>type</code>: Connection type. Valid types are: <code>serial</code>, <code>oic_serial</code>, <code>ble</code>, <code>oic_ble</code>, <code>udp</code>, <code>oic_udp</code>.</li><li><code>connstring</code>: The physical or virtual port to use for the connection.</li><li><code>addrtype</code>: Device address type. Use with type <code>ble</code>.</li><li><code>addr</code>:  Device address. Use with type <code>ble</code>.</ul></td>
+<td>The newtmgr conn add &lt;conn_profile&gt; &lt;var-name=var-value...&gt; command creates a connection profile named <code>conn_profile</code>. A profile consists of these variables: <ul><li><code>name</code>: Connection name. Defaults to <code>conn_profile</code> when the variable is not set in the command. </li><li><code>type</code>: Connection type. Valid types are: <code>serial</code>, <code>oic_serial</code>, <code>ble</code>, <code>oic_ble</code>, <code>udp</code>, <code>oic_udp</code>.</li><li><code>connstring</code>: The physical or virtual port to use for the connection.</li><li><code>addrtype</code>: Device address type. Use with type <code>ble</code>.</li><li><code>addr</code>:  Device address. Use with type <code>ble</code>.</ul></td>
 </tr>
 <tr>
 <td>delete</td>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/newtmgr/command_list/newtmgr_crash/index.html
----------------------------------------------------------------------
diff --git a/latest/newtmgr/command_list/newtmgr_crash/index.html b/latest/newtmgr/command_list/newtmgr_crash/index.html
index 9c2a88d..6b1beaf 100644
--- a/latest/newtmgr/command_list/newtmgr_crash/index.html
+++ b/latest/newtmgr/command_list/newtmgr_crash/index.html
@@ -458,7 +458,7 @@
                             <h2 id="newtmgr-crash"><font color="#F2853F" style="font-size:24pt">newtmgr crash </font></h2>
 <p>Send a crash command to a device.</p>
 <h4 id="usage">Usage:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newtmgr crash &lt;div0|jump0|ref0|assert|wdog&gt; -c &lt;conn_profile&gt;; [flags] 
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newtmgr crash &lt;div0|jump0|ref0|assert|wdog&gt; -c &lt;conn_profile&gt; [flags] 
 </pre></div>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/callout/callout/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/callout/callout/index.html b/latest/os/core_os/callout/callout/index.html
index b7ea326..5bdc3d8 100644
--- a/latest/os/core_os/callout/callout/index.html
+++ b/latest/os/core_os/callout/callout/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/callout/os_callout_func_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/callout/os_callout_func_init/index.html b/latest/os/core_os/callout/os_callout_func_init/index.html
index 49ead95..85ddcd3 100644
--- a/latest/os/core_os/callout/os_callout_func_init/index.html
+++ b/latest/os/core_os/callout/os_callout_func_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/callout/os_callout_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/callout/os_callout_init/index.html b/latest/os/core_os/callout/os_callout_init/index.html
index ed166ce..4848c8f 100644
--- a/latest/os/core_os/callout/os_callout_init/index.html
+++ b/latest/os/core_os/callout/os_callout_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/callout/os_callout_queued/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/callout/os_callout_queued/index.html b/latest/os/core_os/callout/os_callout_queued/index.html
index 67ed37c..c1e75e6 100644
--- a/latest/os/core_os/callout/os_callout_queued/index.html
+++ b/latest/os/core_os/callout/os_callout_queued/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/callout/os_callout_reset/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/callout/os_callout_reset/index.html b/latest/os/core_os/callout/os_callout_reset/index.html
index 6fb1a86..1241cd3 100644
--- a/latest/os/core_os/callout/os_callout_reset/index.html
+++ b/latest/os/core_os/callout/os_callout_reset/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/callout/os_callout_stop/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/callout/os_callout_stop/index.html b/latest/os/core_os/callout/os_callout_stop/index.html
index 30d895b..36c5ed5 100644
--- a/latest/os/core_os/callout/os_callout_stop/index.html
+++ b/latest/os/core_os/callout/os_callout_stop/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/context_switch/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/context_switch/index.html b/latest/os/core_os/context_switch/context_switch/index.html
index 98738c7..fd5b2cb 100644
--- a/latest/os/core_os/context_switch/context_switch/index.html
+++ b/latest/os/core_os/context_switch/context_switch/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html b/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html
index 5130272..796ed97 100644
--- a/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html
+++ b/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched/index.html b/latest/os/core_os/context_switch/os_sched/index.html
index a1fa021..82f2cc2 100644
--- a/latest/os/core_os/context_switch/os_sched/index.html
+++ b/latest/os/core_os/context_switch/os_sched/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html b/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
index 2be733f..52602f9 100644
--- a/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
+++ b/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_get_current_task/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_get_current_task/index.html b/latest/os/core_os/context_switch/os_sched_get_current_task/index.html
index 1c324f1..8746b65 100644
--- a/latest/os/core_os/context_switch/os_sched_get_current_task/index.html
+++ b/latest/os/core_os/context_switch/os_sched_get_current_task/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_insert/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_insert/index.html b/latest/os/core_os/context_switch/os_sched_insert/index.html
index dcb356e..2643af2 100644
--- a/latest/os/core_os/context_switch/os_sched_insert/index.html
+++ b/latest/os/core_os/context_switch/os_sched_insert/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_next_task/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_next_task/index.html b/latest/os/core_os/context_switch/os_sched_next_task/index.html
index 38fcb0b..5904d06 100644
--- a/latest/os/core_os/context_switch/os_sched_next_task/index.html
+++ b/latest/os/core_os/context_switch/os_sched_next_task/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html b/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html
index 05e048f..afd1371 100644
--- a/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html
+++ b/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_resort/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_resort/index.html b/latest/os/core_os/context_switch/os_sched_resort/index.html
index 908db0a..f48c116 100644
--- a/latest/os/core_os/context_switch/os_sched_resort/index.html
+++ b/latest/os/core_os/context_switch/os_sched_resort/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_set_current_task/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_set_current_task/index.html b/latest/os/core_os/context_switch/os_sched_set_current_task/index.html
index 6dba4aa..95c51be 100644
--- a/latest/os/core_os/context_switch/os_sched_set_current_task/index.html
+++ b/latest/os/core_os/context_switch/os_sched_set_current_task/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_sleep/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_sleep/index.html b/latest/os/core_os/context_switch/os_sched_sleep/index.html
index 90f8438..194ca49 100644
--- a/latest/os/core_os/context_switch/os_sched_sleep/index.html
+++ b/latest/os/core_os/context_switch/os_sched_sleep/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/context_switch/os_sched_wakeup/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/context_switch/os_sched_wakeup/index.html b/latest/os/core_os/context_switch/os_sched_wakeup/index.html
index 4ccb6e6..3db9621 100644
--- a/latest/os/core_os/context_switch/os_sched_wakeup/index.html
+++ b/latest/os/core_os/context_switch/os_sched_wakeup/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/event_queue/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/event_queue/index.html b/latest/os/core_os/event_queue/event_queue/index.html
index c633a01..91aa44b 100644
--- a/latest/os/core_os/event_queue/event_queue/index.html
+++ b/latest/os/core_os/event_queue/event_queue/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/os_eventq_designate/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_designate/index.html b/latest/os/core_os/event_queue/os_eventq_designate/index.html
index c01a088..4f1e4b8 100644
--- a/latest/os/core_os/event_queue/os_eventq_designate/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_designate/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html b/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html
index 3eb5073..3052bd4 100644
--- a/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/os_eventq_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_get/index.html b/latest/os/core_os/event_queue/os_eventq_get/index.html
index 03ce103..4555d8c 100644
--- a/latest/os/core_os/event_queue/os_eventq_get/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_get/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/os_eventq_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_init/index.html b/latest/os/core_os/event_queue/os_eventq_init/index.html
index 69ca26a..6e1bd0e 100644
--- a/latest/os/core_os/event_queue/os_eventq_init/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_init/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/os_eventq_inited/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_inited/index.html b/latest/os/core_os/event_queue/os_eventq_inited/index.html
index ef6532e..1e2b601 100644
--- a/latest/os/core_os/event_queue/os_eventq_inited/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_inited/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/os_eventq_put/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_put/index.html b/latest/os/core_os/event_queue/os_eventq_put/index.html
index 15e5950..891bffd 100644
--- a/latest/os/core_os/event_queue/os_eventq_put/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_put/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/os_eventq_remove/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_remove/index.html b/latest/os/core_os/event_queue/os_eventq_remove/index.html
index 0c5ac47..1f7e908 100644
--- a/latest/os/core_os/event_queue/os_eventq_remove/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_remove/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/event_queue/os_eventq_run/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_run/index.html b/latest/os/core_os/event_queue/os_eventq_run/index.html
index 7aa1732..d9e2e7e 100644
--- a/latest/os/core_os/event_queue/os_eventq_run/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_run/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/heap/heap/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/heap/heap/index.html b/latest/os/core_os/heap/heap/index.html
index 360c86d..5f5f9ad 100644
--- a/latest/os/core_os/heap/heap/index.html
+++ b/latest/os/core_os/heap/heap/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/heap/os_free/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/heap/os_free/index.html b/latest/os/core_os/heap/os_free/index.html
index da71ceb..ec5bfaf 100644
--- a/latest/os/core_os/heap/os_free/index.html
+++ b/latest/os/core_os/heap/os_free/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/heap/os_malloc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/heap/os_malloc/index.html b/latest/os/core_os/heap/os_malloc/index.html
index 382427b..b48bf3d 100644
--- a/latest/os/core_os/heap/os_malloc/index.html
+++ b/latest/os/core_os/heap/os_malloc/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/heap/os_realloc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/heap/os_realloc/index.html b/latest/os/core_os/heap/os_realloc/index.html
index c9679b8..3a268b4 100644
--- a/latest/os/core_os/heap/os_realloc/index.html
+++ b/latest/os/core_os/heap/os_realloc/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html b/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html
index 9b1a8a0..90ba9cb 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html b/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
index 2e3912d..5703603 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html b/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
index 3cd822a..0076a0f 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html b/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
index 421dc88..2e03009 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html b/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
index 41e9bb5..322c050 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html b/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
index 540de42..c4baabc 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html b/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
index b5688a2..5073bc7 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html b/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
index da5f009..237dc42 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/mbuf/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/mbuf/index.html b/latest/os/core_os/mbuf/mbuf/index.html
index 72b583e..f5a26b8 100644
--- a/latest/os/core_os/mbuf/mbuf/index.html
+++ b/latest/os/core_os/mbuf/mbuf/index.html
@@ -589,17 +589,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_adj/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_adj/index.html b/latest/os/core_os/mbuf/os_mbuf_adj/index.html
index 1eb7464..72ae743 100644
--- a/latest/os/core_os/mbuf/os_mbuf_adj/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_adj/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_append/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_append/index.html b/latest/os/core_os/mbuf/os_mbuf_append/index.html
index 13908a5..1e649d4 100644
--- a/latest/os/core_os/mbuf/os_mbuf_append/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_append/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_concat/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_concat/index.html b/latest/os/core_os/mbuf/os_mbuf_concat/index.html
index cfc4663..58b9b60 100644
--- a/latest/os/core_os/mbuf/os_mbuf_concat/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_concat/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_copydata/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_copydata/index.html b/latest/os/core_os/mbuf/os_mbuf_copydata/index.html
index 1f8093f..3430379 100644
--- a/latest/os/core_os/mbuf/os_mbuf_copydata/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_copydata/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html b/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html
index a3fd446..b8e05b3 100644
--- a/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_dup/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_dup/index.html b/latest/os/core_os/mbuf/os_mbuf_dup/index.html
index debbff2..b487bee 100644
--- a/latest/os/core_os/mbuf/os_mbuf_dup/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_dup/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_extend/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_extend/index.html b/latest/os/core_os/mbuf/os_mbuf_extend/index.html
index 2835bfe..2a348e2 100644
--- a/latest/os/core_os/mbuf/os_mbuf_extend/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_extend/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html b/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html
index f0c2a14..68ceeb6 100644
--- a/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_get/index.html b/latest/os/core_os/mbuf/os_mbuf_get/index.html
index e047f6c..568f034 100644
--- a/latest/os/core_os/mbuf/os_mbuf_get/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_get/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html b/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
index f63a7f9..9b0a795 100644
--- a/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html b/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html
index 87dd400..142bfdc 100644
--- a/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_off/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_off/index.html b/latest/os/core_os/mbuf/os_mbuf_off/index.html
index 9a23a02..989811e 100644
--- a/latest/os/core_os/mbuf/os_mbuf_off/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_off/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html b/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html
index c22ab4f..03390f3 100644
--- a/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_prepend/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_prepend/index.html b/latest/os/core_os/mbuf/os_mbuf_prepend/index.html
index 6ab009e..09b6848 100644
--- a/latest/os/core_os/mbuf/os_mbuf_prepend/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_prepend/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mbuf/os_mbuf_pullup/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_pullup/index.html b/latest/os/core_os/mbuf/os_mbuf_pullup/index.html
index c0e9304..895e720 100644
--- a/latest/os/core_os/mbuf/os_mbuf_pullup/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_pullup/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html b/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
index a6f3df3..f888c8e 100644
--- a/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
+++ b/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html b/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
index e4e8908..03ccf46 100644
--- a/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
+++ b/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/memory_pool/memory_pool/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/memory_pool/index.html b/latest/os/core_os/memory_pool/memory_pool/index.html
index ec34246..218d5ca 100644
--- a/latest/os/core_os/memory_pool/memory_pool/index.html
+++ b/latest/os/core_os/memory_pool/memory_pool/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/memory_pool/os_memblock_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/os_memblock_get/index.html b/latest/os/core_os/memory_pool/os_memblock_get/index.html
index 7cd759a..14e8be4 100644
--- a/latest/os/core_os/memory_pool/os_memblock_get/index.html
+++ b/latest/os/core_os/memory_pool/os_memblock_get/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/memory_pool/os_memblock_put/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/os_memblock_put/index.html b/latest/os/core_os/memory_pool/os_memblock_put/index.html
index 67d9be3..2f0c348 100644
--- a/latest/os/core_os/memory_pool/os_memblock_put/index.html
+++ b/latest/os/core_os/memory_pool/os_memblock_put/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/memory_pool/os_mempool_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/os_mempool_init/index.html b/latest/os/core_os/memory_pool/os_mempool_init/index.html
index c5ebf7c..3291e97 100644
--- a/latest/os/core_os/memory_pool/os_mempool_init/index.html
+++ b/latest/os/core_os/memory_pool/os_mempool_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mqueue/mqueue/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mqueue/mqueue/index.html b/latest/os/core_os/mqueue/mqueue/index.html
index 91d310f..02da7bc 100644
--- a/latest/os/core_os/mqueue/mqueue/index.html
+++ b/latest/os/core_os/mqueue/mqueue/index.html
@@ -589,17 +589,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mqueue/os_mqueue_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mqueue/os_mqueue_get/index.html b/latest/os/core_os/mqueue/os_mqueue_get/index.html
index f3ed3bc..88adc17 100644
--- a/latest/os/core_os/mqueue/os_mqueue_get/index.html
+++ b/latest/os/core_os/mqueue/os_mqueue_get/index.html
@@ -617,17 +617,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mqueue/os_mqueue_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mqueue/os_mqueue_init/index.html b/latest/os/core_os/mqueue/os_mqueue_init/index.html
index cdb501a..289f2a6 100644
--- a/latest/os/core_os/mqueue/os_mqueue_init/index.html
+++ b/latest/os/core_os/mqueue/os_mqueue_init/index.html
@@ -617,17 +617,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mqueue/os_mqueue_put/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mqueue/os_mqueue_put/index.html b/latest/os/core_os/mqueue/os_mqueue_put/index.html
index 01b2a64..bed9b5d 100644
--- a/latest/os/core_os/mqueue/os_mqueue_put/index.html
+++ b/latest/os/core_os/mqueue/os_mqueue_put/index.html
@@ -617,17 +617,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/msys/msys/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/msys/index.html b/latest/os/core_os/msys/msys/index.html
index 14d162b..1c56726 100644
--- a/latest/os/core_os/msys/msys/index.html
+++ b/latest/os/core_os/msys/msys/index.html
@@ -589,17 +589,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/msys/os_msys_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/os_msys_get/index.html b/latest/os/core_os/msys/os_msys_get/index.html
index 223960a..f159918 100644
--- a/latest/os/core_os/msys/os_msys_get/index.html
+++ b/latest/os/core_os/msys/os_msys_get/index.html
@@ -625,17 +625,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/msys/os_msys_get_pkthdr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/os_msys_get_pkthdr/index.html b/latest/os/core_os/msys/os_msys_get_pkthdr/index.html
index 4ce1b63..b1469db 100644
--- a/latest/os/core_os/msys/os_msys_get_pkthdr/index.html
+++ b/latest/os/core_os/msys/os_msys_get_pkthdr/index.html
@@ -625,17 +625,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/msys/os_msys_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/os_msys_register/index.html b/latest/os/core_os/msys/os_msys_register/index.html
index aea7e19..da8bfb3 100644
--- a/latest/os/core_os/msys/os_msys_register/index.html
+++ b/latest/os/core_os/msys/os_msys_register/index.html
@@ -625,17 +625,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/msys/os_msys_reset/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/os_msys_reset/index.html b/latest/os/core_os/msys/os_msys_reset/index.html
index 472902e..60254e5 100644
--- a/latest/os/core_os/msys/os_msys_reset/index.html
+++ b/latest/os/core_os/msys/os_msys_reset/index.html
@@ -625,17 +625,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mutex/mutex/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mutex/mutex/index.html b/latest/os/core_os/mutex/mutex/index.html
index a73d4a3..63253c1 100644
--- a/latest/os/core_os/mutex/mutex/index.html
+++ b/latest/os/core_os/mutex/mutex/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mutex/os_mutex_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mutex/os_mutex_init/index.html b/latest/os/core_os/mutex/os_mutex_init/index.html
index 7eaad40..3726af9 100644
--- a/latest/os/core_os/mutex/os_mutex_init/index.html
+++ b/latest/os/core_os/mutex/os_mutex_init/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mutex/os_mutex_pend/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mutex/os_mutex_pend/index.html b/latest/os/core_os/mutex/os_mutex_pend/index.html
index d67558f..fcbbdd2 100644
--- a/latest/os/core_os/mutex/os_mutex_pend/index.html
+++ b/latest/os/core_os/mutex/os_mutex_pend/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mutex/os_mutex_release/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mutex/os_mutex_release/index.html b/latest/os/core_os/mutex/os_mutex_release/index.html
index af74a39..a10e95b 100644
--- a/latest/os/core_os/mutex/os_mutex_release/index.html
+++ b/latest/os/core_os/mutex/os_mutex_release/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/mynewt_os/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mynewt_os/index.html b/latest/os/core_os/mynewt_os/index.html
index 4883f28..c105078 100644
--- a/latest/os/core_os/mynewt_os/index.html
+++ b/latest/os/core_os/mynewt_os/index.html
@@ -533,17 +533,6 @@
                 
   
   
-    <li ><a href="../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/os_started/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/os_started/index.html b/latest/os/core_os/os_started/index.html
index c6daa83..f86bcfe 100644
--- a/latest/os/core_os/os_started/index.html
+++ b/latest/os/core_os/os_started/index.html
@@ -545,17 +545,6 @@
                 
   
   
-    <li ><a href="../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/porting/port_bsp/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/porting/port_bsp/index.html b/latest/os/core_os/porting/port_bsp/index.html
index a0dc06e..14c8dd8 100644
--- a/latest/os/core_os/porting/port_bsp/index.html
+++ b/latest/os/core_os/porting/port_bsp/index.html
@@ -418,17 +418,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/porting/port_cpu/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/porting/port_cpu/index.html b/latest/os/core_os/porting/port_cpu/index.html
index 206d166..dce5dfc 100644
--- a/latest/os/core_os/porting/port_cpu/index.html
+++ b/latest/os/core_os/porting/port_cpu/index.html
@@ -418,17 +418,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/porting/port_mcu/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/porting/port_mcu/index.html b/latest/os/core_os/porting/port_mcu/index.html
index 28c08c2..34bdaf9 100644
--- a/latest/os/core_os/porting/port_mcu/index.html
+++ b/latest/os/core_os/porting/port_mcu/index.html
@@ -418,17 +418,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/porting/port_os/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/porting/port_os/index.html b/latest/os/core_os/porting/port_os/index.html
index d4feff1..9c5249a 100644
--- a/latest/os/core_os/porting/port_os/index.html
+++ b/latest/os/core_os/porting/port_os/index.html
@@ -418,17 +418,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/sanity/os_sanity_check_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_check_init/index.html b/latest/os/core_os/sanity/os_sanity_check_init/index.html
index c7b07be..19f3814 100644
--- a/latest/os/core_os/sanity/os_sanity_check_init/index.html
+++ b/latest/os/core_os/sanity/os_sanity_check_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/sanity/os_sanity_check_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_check_register/index.html b/latest/os/core_os/sanity/os_sanity_check_register/index.html
index 58343a5..a0b8dfa 100644
--- a/latest/os/core_os/sanity/os_sanity_check_register/index.html
+++ b/latest/os/core_os/sanity/os_sanity_check_register/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/sanity/os_sanity_check_reset/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_check_reset/index.html b/latest/os/core_os/sanity/os_sanity_check_reset/index.html
index a61e274..f5baa1c 100644
--- a/latest/os/core_os/sanity/os_sanity_check_reset/index.html
+++ b/latest/os/core_os/sanity/os_sanity_check_reset/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/sanity/os_sanity_task_checkin/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_task_checkin/index.html b/latest/os/core_os/sanity/os_sanity_task_checkin/index.html
index b43b747..24ad464 100644
--- a/latest/os/core_os/sanity/os_sanity_task_checkin/index.html
+++ b/latest/os/core_os/sanity/os_sanity_task_checkin/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/sanity/os_sanity_task_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_task_init/index.html b/latest/os/core_os/sanity/os_sanity_task_init/index.html
index 8febb9b..de97648 100644
--- a/latest/os/core_os/sanity/os_sanity_task_init/index.html
+++ b/latest/os/core_os/sanity/os_sanity_task_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/sanity/sanity/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/sanity/index.html b/latest/os/core_os/sanity/sanity/index.html
index d9dafef..efa0c69 100644
--- a/latest/os/core_os/sanity/sanity/index.html
+++ b/latest/os/core_os/sanity/sanity/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/semaphore/os_sem_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/semaphore/os_sem_init/index.html b/latest/os/core_os/semaphore/os_sem_init/index.html
index 1684321..c9eafd7 100644
--- a/latest/os/core_os/semaphore/os_sem_init/index.html
+++ b/latest/os/core_os/semaphore/os_sem_init/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/semaphore/os_sem_pend/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/semaphore/os_sem_pend/index.html b/latest/os/core_os/semaphore/os_sem_pend/index.html
index 49d6b9b..b08c3fe 100644
--- a/latest/os/core_os/semaphore/os_sem_pend/index.html
+++ b/latest/os/core_os/semaphore/os_sem_pend/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/semaphore/os_sem_release/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/semaphore/os_sem_release/index.html b/latest/os/core_os/semaphore/os_sem_release/index.html
index 81127f2..ee466ae 100644
--- a/latest/os/core_os/semaphore/os_sem_release/index.html
+++ b/latest/os/core_os/semaphore/os_sem_release/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/semaphore/semaphore/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/semaphore/semaphore/index.html b/latest/os/core_os/semaphore/semaphore/index.html
index b193ec1..64db02e 100644
--- a/latest/os/core_os/semaphore/semaphore/index.html
+++ b/latest/os/core_os/semaphore/semaphore/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/task/os_task_count/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/os_task_count/index.html b/latest/os/core_os/task/os_task_count/index.html
index fce3fb0..29af7d9 100644
--- a/latest/os/core_os/task/os_task_count/index.html
+++ b/latest/os/core_os/task/os_task_count/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/task/os_task_info_get_next/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/os_task_info_get_next/index.html b/latest/os/core_os/task/os_task_info_get_next/index.html
index 73fc7fa..d3a9faa 100644
--- a/latest/os/core_os/task/os_task_info_get_next/index.html
+++ b/latest/os/core_os/task/os_task_info_get_next/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/task/os_task_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/os_task_init/index.html b/latest/os/core_os/task/os_task_init/index.html
index 571b28d..6d5d872 100644
--- a/latest/os/core_os/task/os_task_init/index.html
+++ b/latest/os/core_os/task/os_task_init/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/task/task/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/task/index.html b/latest/os/core_os/task/task/index.html
index edda7c3..6ab76a6 100644
--- a/latest/os/core_os/task/task/index.html
+++ b/latest/os/core_os/task/task/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/time/os_gettimeofday/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_gettimeofday/index.html b/latest/os/core_os/time/os_gettimeofday/index.html
index 377b1b3..048d801 100644
--- a/latest/os/core_os/time/os_gettimeofday/index.html
+++ b/latest/os/core_os/time/os_gettimeofday/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/time/os_settimeofday/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_settimeofday/index.html b/latest/os/core_os/time/os_settimeofday/index.html
index 118f3b1..4121a1a 100644
--- a/latest/os/core_os/time/os_settimeofday/index.html
+++ b/latest/os/core_os/time/os_settimeofday/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/time/os_time/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time/index.html b/latest/os/core_os/time/os_time/index.html
index fda8099..efcd9a4 100644
--- a/latest/os/core_os/time/os_time/index.html
+++ b/latest/os/core_os/time/os_time/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/time/os_time_delay/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time_delay/index.html b/latest/os/core_os/time/os_time_delay/index.html
index 565d26f..239928e 100644
--- a/latest/os/core_os/time/os_time_delay/index.html
+++ b/latest/os/core_os/time/os_time_delay/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/time/os_time_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time_get/index.html b/latest/os/core_os/time/os_time_get/index.html
index f6457af..c65d4ba 100644
--- a/latest/os/core_os/time/os_time_get/index.html
+++ b/latest/os/core_os/time/os_time_get/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/core_os/time/os_time_tick/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time_tick/index.html b/latest/os/core_os/time/os_time_tick/index.html
index 44dac76..1bccb5b 100644
--- a/latest/os/core_os/time/os_time_tick/index.html
+++ b/latest/os/core_os/time/os_time_tick/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   


[09/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/newt/install/newt_linux/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/install/newt_linux/index.html b/develop/newt/install/newt_linux/index.html
index 3c8534f..5f8cd09 100644
--- a/develop/newt/install/newt_linux/index.html
+++ b/develop/newt/install/newt_linux/index.html
@@ -439,7 +439,7 @@
 <ul>
 <li>
 <p>Next, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import <em>newt</em> repo into your local Go environment.</p>
-<p><strong>Note</strong>: The Newt tool requires Go version 1.5 or later. It uses the support for "vendoring" that was added in Go 1.5. Depending on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.5 or 1.6 from <a href="https://golang.org/dl/">https://golang.org/dl/</a>. You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at <a href="https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04">https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04</a>.</p>
+<p><strong>Note</strong>: The Newt tool requires Go version 1.6 or later. Depending on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.6 from <a href="https://golang.org/dl/">https://golang.org/dl/</a>. You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at <a href="https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04">https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04</a>.</p>
 </li>
 </ul>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">        $ sudo apt-get install golang 
@@ -485,42 +485,55 @@
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">        $ newt version
         Newt version:  1.0
         $ newt -h
-        Newt allows you to create your own embedded project based on the Mynewt
-        operating system. Newt provides both build and package management in a
-        single tool, which allows you to compose an embedded workspace, and set
-        of projects, and then build the necessary artifacts from those projects.
-        For more information on the Mynewt operating system, please visit
-        https://www.github.com/mynewt/documentation.
+        Newt allows you to create your own embedded application based on the Mynewt 
+        operating system. Newt provides both build and package management in a single 
+        tool, which allows you to compose an embedded application, and set of 
+        projects, and then build the necessary artifacts from those projects. For more 
+        information on the Mynewt operating system, please visit 
+        https://mynewt.apache.org/. 
 
-        Please use the newt help command, and specify the name of the command
-        you want help for, for help on how to use a specific command
+        Please use the newt help command, and specify the name of the command you want 
+        help for, for help on how to use a specific command
 
         Usage:
-         newt [flags]
-         newt [command]
+          newt [flags]
+          newt [command]
 
         Examples:
-         newt
-         newt help [&lt;command-name&gt;]
-           For help on &lt;command-name&gt;.  If not specified, print this message.
-
+          newt
+          newt help [&lt;command-name&gt;]
+            For help on &lt;command-name&gt;.  If not specified, print this message.
 
         Available Commands:
-         version     Display the Newt version number.
-         target      Set and view target information
-         egg         Commands to list and inspect eggs on a nest
-         nest        Commands to manage nests &amp; clutches (remote egg repositories)
-         help        Help about any command
+          build        Build one or more targets
+          clean        Delete build artifacts for one or more targets
+          create-image Add image header to target binary
+          debug        Open debugger session to target
+          info         Show project info
+          install      Install project dependencies
+          load         Load built target to board
+          mfg          Manufacturing flash image commands
+          new          Create a new project
+          pkg          Create and manage packages in the current workspace
+          run          build/create-image/download/debug &lt;target&gt;
+          size         Size of target components
+          sync         Synchronize project dependencies
+          target       Commands to create, delete, configure, and query targets
+          test         Executes unit tests for one or more packages
+          upgrade      Upgrade project dependencies
+          vals         Display valid values for the specified element type(s)
+          version      Display the Newt version number
 
         Flags:
-         -h, --help=false: help for newt
-         -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-         -q, --quiet=false: Be quiet; only display error output.
-         -s, --silent=false: Be silent; don&#39;t output anything.
-         -v, --verbose=false: Enable verbose output when executing commands.
-
-
-        Use &quot;newt help [command]&quot; for more information about a command.
+          -h, --help              Help for newt commands
+          -j, --jobs int          Number of concurrent build jobs (default 8)
+          -l, --loglevel string   Log level (default &quot;WARN&quot;)
+          -o, --outfile string    Filename to tee output to
+          -q, --quiet             Be quiet; only display error output
+          -s, --silent            Be silent; don&#39;t output anything
+          -v, --verbose           Enable verbose output when executing commands
+
+        Use &quot;newt [command] --help&quot; for more information about a comma
 </pre></div>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/newt/install/newt_mac/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/install/newt_mac/index.html b/develop/newt/install/newt_mac/index.html
index d6414e7..a3162cb 100644
--- a/develop/newt/install/newt_mac/index.html
+++ b/develop/newt/install/newt_mac/index.html
@@ -490,42 +490,55 @@
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">        $ newt version
         Newt version:  1.0
         $ newt -h
-        Newt allows you to create your own embedded project based on the Mynewt
-        operating system. Newt provides both build and package management in a
-        single tool, which allows you to compose an embedded workspace, and set
-        of projects, and then build the necessary artifacts from those projects.
-        For more information on the Mynewt operating system, please visit
-        https://www.github.com/mynewt/documentation.
+        Newt allows you to create your own embedded application based on the Mynewt 
+        operating system. Newt provides both build and package management in a single 
+        tool, which allows you to compose an embedded application, and set of 
+        projects, and then build the necessary artifacts from those projects. For more 
+        information on the Mynewt operating system, please visit 
+        https://mynewt.apache.org/. 
 
-        Please use the newt help command, and specify the name of the command
-        you want help for, for help on how to use a specific command
+        Please use the newt help command, and specify the name of the command you want 
+        help for, for help on how to use a specific command
 
         Usage:
-         newt [flags]
-         newt [command]
+          newt [flags]
+          newt [command]
 
         Examples:
-         newt
-         newt help [&lt;command-name&gt;]
-           For help on &lt;command-name&gt;.  If not specified, print this message.
-
+          newt
+          newt help [&lt;command-name&gt;]
+            For help on &lt;command-name&gt;.  If not specified, print this message.
 
         Available Commands:
-         version     Display the Newt version number.
-         target      Set and view target information
-         egg         Commands to list and inspect eggs on a nest
-         nest        Commands to manage nests &amp; clutches (remote egg repositories)
-         help        Help about any command
+          build        Build one or more targets
+          clean        Delete build artifacts for one or more targets
+          create-image Add image header to target binary
+          debug        Open debugger session to target
+          info         Show project info
+          install      Install project dependencies
+          load         Load built target to board
+          mfg          Manufacturing flash image commands
+          new          Create a new project
+          pkg          Create and manage packages in the current workspace
+          run          build/create-image/download/debug &lt;target&gt;
+          size         Size of target components
+          sync         Synchronize project dependencies
+          target       Commands to create, delete, configure, and query targets
+          test         Executes unit tests for one or more packages
+          upgrade      Upgrade project dependencies
+          vals         Display valid values for the specified element type(s)
+          version      Display the Newt version number
 
         Flags:
-         -h, --help=false: help for newt
-         -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-         -q, --quiet=false: Be quiet; only display error output.
-         -s, --silent=false: Be silent; don&#39;t output anything.
-         -v, --verbose=false: Enable verbose output when executing commands.
-
-
-        Use &quot;newt help [command]&quot; for more information about a command.
+          -h, --help              Help for newt commands
+          -j, --jobs int          Number of concurrent build jobs (default 8)
+          -l, --loglevel string   Log level (default &quot;WARN&quot;)
+          -o, --outfile string    Filename to tee output to
+          -q, --quiet             Be quiet; only display error output
+          -s, --silent            Be silent; don&#39;t output anything
+          -v, --verbose           Enable verbose output when executing commands
+
+        Use &quot;newt [command] --help&quot; for more information about a comma
 </pre></div>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/newtmgr/command_list/newtmgr_conn/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_conn/index.html b/develop/newtmgr/command_list/newtmgr_conn/index.html
index 2d44862..f3d7825 100644
--- a/develop/newtmgr/command_list/newtmgr_conn/index.html
+++ b/develop/newtmgr/command_list/newtmgr_conn/index.html
@@ -482,7 +482,7 @@
 <tbody>
 <tr>
 <td>add</td>
-<td>The newtmgr conn add <conn_profile> <var-name=var-value> command creates a connection profile named <code>conn_profile</code>. A profile consists of these variables: <ul><li><code>name</code>: Connection name. Defaults to <code>conn_profile</code> when the variable is not set in the command. </li><li><code>type</code>: Connection type. Valid types are: <code>serial</code>, <code>oic_serial</code>, <code>ble</code>, <code>oic_ble</code>, <code>udp</code>, <code>oic_udp</code>.</li><li><code>connstring</code>: The physical or virtual port to use for the connection.</li><li><code>addrtype</code>: Device address type. Use with type <code>ble</code>.</li><li><code>addr</code>:  Device address. Use with type <code>ble</code>.</ul></td>
+<td>The newtmgr conn add &lt;conn_profile&gt; &lt;var-name=var-value...&gt; command creates a connection profile named <code>conn_profile</code>. A profile consists of these variables: <ul><li><code>name</code>: Connection name. Defaults to <code>conn_profile</code> when the variable is not set in the command. </li><li><code>type</code>: Connection type. Valid types are: <code>serial</code>, <code>oic_serial</code>, <code>ble</code>, <code>oic_ble</code>, <code>udp</code>, <code>oic_udp</code>.</li><li><code>connstring</code>: The physical or virtual port to use for the connection.</li><li><code>addrtype</code>: Device address type. Use with type <code>ble</code>.</li><li><code>addr</code>:  Device address. Use with type <code>ble</code>.</ul></td>
 </tr>
 <tr>
 <td>delete</td>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/newtmgr/command_list/newtmgr_crash/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_crash/index.html b/develop/newtmgr/command_list/newtmgr_crash/index.html
index bfb2dbd..c7244ae 100644
--- a/develop/newtmgr/command_list/newtmgr_crash/index.html
+++ b/develop/newtmgr/command_list/newtmgr_crash/index.html
@@ -458,7 +458,7 @@
                             <h2 id="newtmgr-crash"><font color="#F2853F" style="font-size:24pt">newtmgr crash </font></h2>
 <p>Send a crash command to a device.</p>
 <h4 id="usage">Usage:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newtmgr crash &lt;div0|jump0|ref0|assert|wdog&gt; -c &lt;conn_profile&gt;; [flags] 
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newtmgr crash &lt;div0|jump0|ref0|assert|wdog&gt; -c &lt;conn_profile&gt; [flags] 
 </pre></div>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/callout/callout/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/callout/index.html b/develop/os/core_os/callout/callout/index.html
index aa72a81..b4b19c8 100644
--- a/develop/os/core_os/callout/callout/index.html
+++ b/develop/os/core_os/callout/callout/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/callout/os_callout_func_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_func_init/index.html b/develop/os/core_os/callout/os_callout_func_init/index.html
index 6f5c510..8537785 100644
--- a/develop/os/core_os/callout/os_callout_func_init/index.html
+++ b/develop/os/core_os/callout/os_callout_func_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/callout/os_callout_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_init/index.html b/develop/os/core_os/callout/os_callout_init/index.html
index 6c8a75f..b421559 100644
--- a/develop/os/core_os/callout/os_callout_init/index.html
+++ b/develop/os/core_os/callout/os_callout_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/callout/os_callout_queued/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_queued/index.html b/develop/os/core_os/callout/os_callout_queued/index.html
index e0624fd..4733148 100644
--- a/develop/os/core_os/callout/os_callout_queued/index.html
+++ b/develop/os/core_os/callout/os_callout_queued/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/callout/os_callout_reset/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_reset/index.html b/develop/os/core_os/callout/os_callout_reset/index.html
index a154e2e..9bbc14d 100644
--- a/develop/os/core_os/callout/os_callout_reset/index.html
+++ b/develop/os/core_os/callout/os_callout_reset/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/callout/os_callout_stop/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_stop/index.html b/develop/os/core_os/callout/os_callout_stop/index.html
index 421c454..9a84065 100644
--- a/develop/os/core_os/callout/os_callout_stop/index.html
+++ b/develop/os/core_os/callout/os_callout_stop/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/context_switch/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/context_switch/index.html b/develop/os/core_os/context_switch/context_switch/index.html
index 28dc6bd..f918a88 100644
--- a/develop/os/core_os/context_switch/context_switch/index.html
+++ b/develop/os/core_os/context_switch/context_switch/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html b/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html
index 055d546..1d5aee8 100644
--- a/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html
+++ b/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched/index.html b/develop/os/core_os/context_switch/os_sched/index.html
index e7e1351..7e2e288 100644
--- a/develop/os/core_os/context_switch/os_sched/index.html
+++ b/develop/os/core_os/context_switch/os_sched/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html b/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
index ca2daeb..c57d0c9 100644
--- a/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
+++ b/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_get_current_task/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_get_current_task/index.html b/develop/os/core_os/context_switch/os_sched_get_current_task/index.html
index 462f6f5..4bac204 100644
--- a/develop/os/core_os/context_switch/os_sched_get_current_task/index.html
+++ b/develop/os/core_os/context_switch/os_sched_get_current_task/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_insert/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_insert/index.html b/develop/os/core_os/context_switch/os_sched_insert/index.html
index 45eb0d6..9b5c20e 100644
--- a/develop/os/core_os/context_switch/os_sched_insert/index.html
+++ b/develop/os/core_os/context_switch/os_sched_insert/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_next_task/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_next_task/index.html b/develop/os/core_os/context_switch/os_sched_next_task/index.html
index 2527f0b..3c507dd 100644
--- a/develop/os/core_os/context_switch/os_sched_next_task/index.html
+++ b/develop/os/core_os/context_switch/os_sched_next_task/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html b/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html
index ffc382a..4b9541b 100644
--- a/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html
+++ b/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_resort/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_resort/index.html b/develop/os/core_os/context_switch/os_sched_resort/index.html
index bb2e926..3c7286b 100644
--- a/develop/os/core_os/context_switch/os_sched_resort/index.html
+++ b/develop/os/core_os/context_switch/os_sched_resort/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_set_current_task/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_set_current_task/index.html b/develop/os/core_os/context_switch/os_sched_set_current_task/index.html
index 836e042..7e42cb2 100644
--- a/develop/os/core_os/context_switch/os_sched_set_current_task/index.html
+++ b/develop/os/core_os/context_switch/os_sched_set_current_task/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_sleep/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_sleep/index.html b/develop/os/core_os/context_switch/os_sched_sleep/index.html
index 68d3dfb..b99b6ba 100644
--- a/develop/os/core_os/context_switch/os_sched_sleep/index.html
+++ b/develop/os/core_os/context_switch/os_sched_sleep/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/context_switch/os_sched_wakeup/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_wakeup/index.html b/develop/os/core_os/context_switch/os_sched_wakeup/index.html
index 9982230..315452a 100644
--- a/develop/os/core_os/context_switch/os_sched_wakeup/index.html
+++ b/develop/os/core_os/context_switch/os_sched_wakeup/index.html
@@ -644,17 +644,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/event_queue/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/event_queue/index.html b/develop/os/core_os/event_queue/event_queue/index.html
index 4dfceb2..c174396 100644
--- a/develop/os/core_os/event_queue/event_queue/index.html
+++ b/develop/os/core_os/event_queue/event_queue/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/os_eventq_designate/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_designate/index.html b/develop/os/core_os/event_queue/os_eventq_designate/index.html
index c0b9f58..4ce3987 100644
--- a/develop/os/core_os/event_queue/os_eventq_designate/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_designate/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html b/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html
index 1504b2b..b8ab640 100644
--- a/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/os_eventq_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_get/index.html b/develop/os/core_os/event_queue/os_eventq_get/index.html
index 18cdf6c..c2c3fa4 100644
--- a/develop/os/core_os/event_queue/os_eventq_get/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_get/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/os_eventq_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_init/index.html b/develop/os/core_os/event_queue/os_eventq_init/index.html
index 4780c5c..6c70e81 100644
--- a/develop/os/core_os/event_queue/os_eventq_init/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_init/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/os_eventq_inited/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_inited/index.html b/develop/os/core_os/event_queue/os_eventq_inited/index.html
index eef13eb..6a641fd 100644
--- a/develop/os/core_os/event_queue/os_eventq_inited/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_inited/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/os_eventq_put/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_put/index.html b/develop/os/core_os/event_queue/os_eventq_put/index.html
index 1dad9b3..b68d899 100644
--- a/develop/os/core_os/event_queue/os_eventq_put/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_put/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/os_eventq_remove/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_remove/index.html b/develop/os/core_os/event_queue/os_eventq_remove/index.html
index 5c2cd3c..6ede6ec 100644
--- a/develop/os/core_os/event_queue/os_eventq_remove/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_remove/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/event_queue/os_eventq_run/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_run/index.html b/develop/os/core_os/event_queue/os_eventq_run/index.html
index f943cad..013da5d 100644
--- a/develop/os/core_os/event_queue/os_eventq_run/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_run/index.html
@@ -620,17 +620,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/heap/heap/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/heap/heap/index.html b/develop/os/core_os/heap/heap/index.html
index 833024b..3f7a6eb 100644
--- a/develop/os/core_os/heap/heap/index.html
+++ b/develop/os/core_os/heap/heap/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/heap/os_free/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/heap/os_free/index.html b/develop/os/core_os/heap/os_free/index.html
index 713f714..4a0eeb7 100644
--- a/develop/os/core_os/heap/os_free/index.html
+++ b/develop/os/core_os/heap/os_free/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/heap/os_malloc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/heap/os_malloc/index.html b/develop/os/core_os/heap/os_malloc/index.html
index 0c774a8..8e037b5 100644
--- a/develop/os/core_os/heap/os_malloc/index.html
+++ b/develop/os/core_os/heap/os_malloc/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/heap/os_realloc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/heap/os_realloc/index.html b/develop/os/core_os/heap/os_realloc/index.html
index 294eb76..c10dc3e 100644
--- a/develop/os/core_os/heap/os_realloc/index.html
+++ b/develop/os/core_os/heap/os_realloc/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html b/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html
index ce0a69a..7aa4589 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html b/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
index e7ad702..a2e7207 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html b/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
index 8553337..20bcdc0 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html b/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
index ab06ab0..3e599ae 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html b/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
index 0667057..047bbe3 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html b/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
index fdc0c35..dd475cd 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html b/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
index cbb2aa8..cc85033 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html b/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
index b15167e..806d171 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/mbuf/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/mbuf/index.html b/develop/os/core_os/mbuf/mbuf/index.html
index 92dd4bb..f423630 100644
--- a/develop/os/core_os/mbuf/mbuf/index.html
+++ b/develop/os/core_os/mbuf/mbuf/index.html
@@ -589,17 +589,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_adj/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_adj/index.html b/develop/os/core_os/mbuf/os_mbuf_adj/index.html
index 158ec9b..4572aae 100644
--- a/develop/os/core_os/mbuf/os_mbuf_adj/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_adj/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_append/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_append/index.html b/develop/os/core_os/mbuf/os_mbuf_append/index.html
index e6d48c5..f2f3284 100644
--- a/develop/os/core_os/mbuf/os_mbuf_append/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_append/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_concat/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_concat/index.html b/develop/os/core_os/mbuf/os_mbuf_concat/index.html
index 60431e8..74144af 100644
--- a/develop/os/core_os/mbuf/os_mbuf_concat/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_concat/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_copydata/index.html b/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
index 00be551..a42da58 100644
--- a/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html b/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
index 6a12d21..92a1b90 100644
--- a/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_dup/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_dup/index.html b/develop/os/core_os/mbuf/os_mbuf_dup/index.html
index c20cae4..a0bf05a 100644
--- a/develop/os/core_os/mbuf/os_mbuf_dup/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_dup/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_extend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_extend/index.html b/develop/os/core_os/mbuf/os_mbuf_extend/index.html
index 965ab63..ed48340 100644
--- a/develop/os/core_os/mbuf/os_mbuf_extend/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_extend/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html b/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
index 33073fc..f9c0ae2 100644
--- a/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_get/index.html b/develop/os/core_os/mbuf/os_mbuf_get/index.html
index f968e15..c14d62f 100644
--- a/develop/os/core_os/mbuf/os_mbuf_get/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_get/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html b/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
index 14be7a5..284d8f1 100644
--- a/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html b/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html
index 1e288e1..9ae722d 100644
--- a/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_off/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_off/index.html b/develop/os/core_os/mbuf/os_mbuf_off/index.html
index a1227c9..ca4b7be 100644
--- a/develop/os/core_os/mbuf/os_mbuf_off/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_off/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html b/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html
index 461d663..45b310c 100644
--- a/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_prepend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_prepend/index.html b/develop/os/core_os/mbuf/os_mbuf_prepend/index.html
index bca0c47..f66258c 100644
--- a/develop/os/core_os/mbuf/os_mbuf_prepend/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_prepend/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mbuf/os_mbuf_pullup/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_pullup/index.html b/develop/os/core_os/mbuf/os_mbuf_pullup/index.html
index 1d5a70b..4849ad2 100644
--- a/develop/os/core_os/mbuf/os_mbuf_pullup/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_pullup/index.html
@@ -777,17 +777,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html b/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
index 6c3d9e3..fafc106 100644
--- a/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
+++ b/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html b/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
index 0663e11..37edec0 100644
--- a/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
+++ b/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/memory_pool/memory_pool/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/memory_pool/index.html b/develop/os/core_os/memory_pool/memory_pool/index.html
index 18f9602..b76d8eb 100644
--- a/develop/os/core_os/memory_pool/memory_pool/index.html
+++ b/develop/os/core_os/memory_pool/memory_pool/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/memory_pool/os_memblock_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/os_memblock_get/index.html b/develop/os/core_os/memory_pool/os_memblock_get/index.html
index 583fd39..c775e00 100644
--- a/develop/os/core_os/memory_pool/os_memblock_get/index.html
+++ b/develop/os/core_os/memory_pool/os_memblock_get/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/memory_pool/os_memblock_put/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/os_memblock_put/index.html b/develop/os/core_os/memory_pool/os_memblock_put/index.html
index 403af32..d1a5af7 100644
--- a/develop/os/core_os/memory_pool/os_memblock_put/index.html
+++ b/develop/os/core_os/memory_pool/os_memblock_put/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/memory_pool/os_mempool_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/os_mempool_init/index.html b/develop/os/core_os/memory_pool/os_mempool_init/index.html
index 890d422..bfdb2ec 100644
--- a/develop/os/core_os/memory_pool/os_mempool_init/index.html
+++ b/develop/os/core_os/memory_pool/os_mempool_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mqueue/mqueue/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mqueue/mqueue/index.html b/develop/os/core_os/mqueue/mqueue/index.html
index 024be79..2184bd3 100644
--- a/develop/os/core_os/mqueue/mqueue/index.html
+++ b/develop/os/core_os/mqueue/mqueue/index.html
@@ -589,17 +589,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mqueue/os_mqueue_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mqueue/os_mqueue_get/index.html b/develop/os/core_os/mqueue/os_mqueue_get/index.html
index 43d51bd..4ad52ed 100644
--- a/develop/os/core_os/mqueue/os_mqueue_get/index.html
+++ b/develop/os/core_os/mqueue/os_mqueue_get/index.html
@@ -617,17 +617,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mqueue/os_mqueue_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mqueue/os_mqueue_init/index.html b/develop/os/core_os/mqueue/os_mqueue_init/index.html
index 6cd6bc6..9209e9c 100644
--- a/develop/os/core_os/mqueue/os_mqueue_init/index.html
+++ b/develop/os/core_os/mqueue/os_mqueue_init/index.html
@@ -617,17 +617,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mqueue/os_mqueue_put/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mqueue/os_mqueue_put/index.html b/develop/os/core_os/mqueue/os_mqueue_put/index.html
index 928a934..4bddb24 100644
--- a/develop/os/core_os/mqueue/os_mqueue_put/index.html
+++ b/develop/os/core_os/mqueue/os_mqueue_put/index.html
@@ -617,17 +617,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/msys/msys/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/msys/index.html b/develop/os/core_os/msys/msys/index.html
index 5f8008c..b7970d6 100644
--- a/develop/os/core_os/msys/msys/index.html
+++ b/develop/os/core_os/msys/msys/index.html
@@ -589,17 +589,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/msys/os_msys_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/os_msys_get/index.html b/develop/os/core_os/msys/os_msys_get/index.html
index c695a49..30ac15c 100644
--- a/develop/os/core_os/msys/os_msys_get/index.html
+++ b/develop/os/core_os/msys/os_msys_get/index.html
@@ -625,17 +625,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/msys/os_msys_get_pkthdr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/os_msys_get_pkthdr/index.html b/develop/os/core_os/msys/os_msys_get_pkthdr/index.html
index 37a9e05..9450463 100644
--- a/develop/os/core_os/msys/os_msys_get_pkthdr/index.html
+++ b/develop/os/core_os/msys/os_msys_get_pkthdr/index.html
@@ -625,17 +625,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/msys/os_msys_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/os_msys_register/index.html b/develop/os/core_os/msys/os_msys_register/index.html
index a7c4237..a7193e2 100644
--- a/develop/os/core_os/msys/os_msys_register/index.html
+++ b/develop/os/core_os/msys/os_msys_register/index.html
@@ -625,17 +625,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/msys/os_msys_reset/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/os_msys_reset/index.html b/develop/os/core_os/msys/os_msys_reset/index.html
index 365b56f..a98051d 100644
--- a/develop/os/core_os/msys/os_msys_reset/index.html
+++ b/develop/os/core_os/msys/os_msys_reset/index.html
@@ -625,17 +625,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mutex/mutex/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mutex/mutex/index.html b/develop/os/core_os/mutex/mutex/index.html
index d8622d9..7d494f3 100644
--- a/develop/os/core_os/mutex/mutex/index.html
+++ b/develop/os/core_os/mutex/mutex/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mutex/os_mutex_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mutex/os_mutex_init/index.html b/develop/os/core_os/mutex/os_mutex_init/index.html
index b27c76a..fe842a0 100644
--- a/develop/os/core_os/mutex/os_mutex_init/index.html
+++ b/develop/os/core_os/mutex/os_mutex_init/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mutex/os_mutex_pend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mutex/os_mutex_pend/index.html b/develop/os/core_os/mutex/os_mutex_pend/index.html
index 062d653..040667b 100644
--- a/develop/os/core_os/mutex/os_mutex_pend/index.html
+++ b/develop/os/core_os/mutex/os_mutex_pend/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mutex/os_mutex_release/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mutex/os_mutex_release/index.html b/develop/os/core_os/mutex/os_mutex_release/index.html
index 3f6e5ec..4ae1ae9 100644
--- a/develop/os/core_os/mutex/os_mutex_release/index.html
+++ b/develop/os/core_os/mutex/os_mutex_release/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/mynewt_os/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mynewt_os/index.html b/develop/os/core_os/mynewt_os/index.html
index 4bc23d2..b6b36fc 100644
--- a/develop/os/core_os/mynewt_os/index.html
+++ b/develop/os/core_os/mynewt_os/index.html
@@ -533,17 +533,6 @@
                 
   
   
-    <li ><a href="../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/os_started/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/os_started/index.html b/develop/os/core_os/os_started/index.html
index dde2841..d3a0c71 100644
--- a/develop/os/core_os/os_started/index.html
+++ b/develop/os/core_os/os_started/index.html
@@ -545,17 +545,6 @@
                 
   
   
-    <li ><a href="../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/porting/port_bsp/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/porting/port_bsp/index.html b/develop/os/core_os/porting/port_bsp/index.html
index b304c7b..a9469be 100644
--- a/develop/os/core_os/porting/port_bsp/index.html
+++ b/develop/os/core_os/porting/port_bsp/index.html
@@ -418,17 +418,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/porting/port_cpu/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/porting/port_cpu/index.html b/develop/os/core_os/porting/port_cpu/index.html
index 1fef9d2..52e0392 100644
--- a/develop/os/core_os/porting/port_cpu/index.html
+++ b/develop/os/core_os/porting/port_cpu/index.html
@@ -418,17 +418,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/porting/port_mcu/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/porting/port_mcu/index.html b/develop/os/core_os/porting/port_mcu/index.html
index 442079a..3e2902d 100644
--- a/develop/os/core_os/porting/port_mcu/index.html
+++ b/develop/os/core_os/porting/port_mcu/index.html
@@ -418,17 +418,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/porting/port_os/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/porting/port_os/index.html b/develop/os/core_os/porting/port_os/index.html
index 9af29c0..5cc50a2 100644
--- a/develop/os/core_os/porting/port_os/index.html
+++ b/develop/os/core_os/porting/port_os/index.html
@@ -418,17 +418,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/sanity/os_sanity_check_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_check_init/index.html b/develop/os/core_os/sanity/os_sanity_check_init/index.html
index 6793e67..8ce7693 100644
--- a/develop/os/core_os/sanity/os_sanity_check_init/index.html
+++ b/develop/os/core_os/sanity/os_sanity_check_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/sanity/os_sanity_check_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_check_register/index.html b/develop/os/core_os/sanity/os_sanity_check_register/index.html
index ecaed50..f66bfd0 100644
--- a/develop/os/core_os/sanity/os_sanity_check_register/index.html
+++ b/develop/os/core_os/sanity/os_sanity_check_register/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/sanity/os_sanity_check_reset/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_check_reset/index.html b/develop/os/core_os/sanity/os_sanity_check_reset/index.html
index de3924c..d3a5579 100644
--- a/develop/os/core_os/sanity/os_sanity_check_reset/index.html
+++ b/develop/os/core_os/sanity/os_sanity_check_reset/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/sanity/os_sanity_task_checkin/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_task_checkin/index.html b/develop/os/core_os/sanity/os_sanity_task_checkin/index.html
index 7d73582..15add1c 100644
--- a/develop/os/core_os/sanity/os_sanity_task_checkin/index.html
+++ b/develop/os/core_os/sanity/os_sanity_task_checkin/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/sanity/os_sanity_task_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_task_init/index.html b/develop/os/core_os/sanity/os_sanity_task_init/index.html
index ccdb9d2..9fac538 100644
--- a/develop/os/core_os/sanity/os_sanity_task_init/index.html
+++ b/develop/os/core_os/sanity/os_sanity_task_init/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/sanity/sanity/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/sanity/index.html b/develop/os/core_os/sanity/sanity/index.html
index f83977e..f8b43ab 100644
--- a/develop/os/core_os/sanity/sanity/index.html
+++ b/develop/os/core_os/sanity/sanity/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/semaphore/os_sem_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/semaphore/os_sem_init/index.html b/develop/os/core_os/semaphore/os_sem_init/index.html
index 99976a2..182af33 100644
--- a/develop/os/core_os/semaphore/os_sem_init/index.html
+++ b/develop/os/core_os/semaphore/os_sem_init/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/semaphore/os_sem_pend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/semaphore/os_sem_pend/index.html b/develop/os/core_os/semaphore/os_sem_pend/index.html
index 7872679..bb37468 100644
--- a/develop/os/core_os/semaphore/os_sem_pend/index.html
+++ b/develop/os/core_os/semaphore/os_sem_pend/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/semaphore/os_sem_release/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/semaphore/os_sem_release/index.html b/develop/os/core_os/semaphore/os_sem_release/index.html
index ba6109f..bf0d2de 100644
--- a/develop/os/core_os/semaphore/os_sem_release/index.html
+++ b/develop/os/core_os/semaphore/os_sem_release/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/semaphore/semaphore/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/semaphore/semaphore/index.html b/develop/os/core_os/semaphore/semaphore/index.html
index df64c74..6968316 100644
--- a/develop/os/core_os/semaphore/semaphore/index.html
+++ b/develop/os/core_os/semaphore/semaphore/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/task/os_task_count/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/os_task_count/index.html b/develop/os/core_os/task/os_task_count/index.html
index de32872..b65d6e1 100644
--- a/develop/os/core_os/task/os_task_count/index.html
+++ b/develop/os/core_os/task/os_task_count/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/task/os_task_info_get_next/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/os_task_info_get_next/index.html b/develop/os/core_os/task/os_task_info_get_next/index.html
index ac7af5a..d1e9712 100644
--- a/develop/os/core_os/task/os_task_info_get_next/index.html
+++ b/develop/os/core_os/task/os_task_info_get_next/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/task/os_task_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/os_task_init/index.html b/develop/os/core_os/task/os_task_init/index.html
index 924a7b9..26036da 100644
--- a/develop/os/core_os/task/os_task_init/index.html
+++ b/develop/os/core_os/task/os_task_init/index.html
@@ -580,17 +580,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/task/task/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/task/index.html b/develop/os/core_os/task/task/index.html
index bf407fb..59d0605 100644
--- a/develop/os/core_os/task/task/index.html
+++ b/develop/os/core_os/task/task/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/time/os_gettimeofday/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_gettimeofday/index.html b/develop/os/core_os/time/os_gettimeofday/index.html
index 247f2ae..a06e48e 100644
--- a/develop/os/core_os/time/os_gettimeofday/index.html
+++ b/develop/os/core_os/time/os_gettimeofday/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/time/os_settimeofday/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_settimeofday/index.html b/develop/os/core_os/time/os_settimeofday/index.html
index ce4c63d..23e5112 100644
--- a/develop/os/core_os/time/os_settimeofday/index.html
+++ b/develop/os/core_os/time/os_settimeofday/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/time/os_time/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time/index.html b/develop/os/core_os/time/os_time/index.html
index daaf0ff..d09dedb 100644
--- a/develop/os/core_os/time/os_time/index.html
+++ b/develop/os/core_os/time/os_time/index.html
@@ -552,17 +552,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/time/os_time_delay/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time_delay/index.html b/develop/os/core_os/time/os_time_delay/index.html
index faaedbf..074b26c 100644
--- a/develop/os/core_os/time/os_time_delay/index.html
+++ b/develop/os/core_os/time/os_time_delay/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/time/os_time_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time_get/index.html b/develop/os/core_os/time/os_time_get/index.html
index 0af1414..bdfe32b 100644
--- a/develop/os/core_os/time/os_time_get/index.html
+++ b/develop/os/core_os/time/os_time_get/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/core_os/time/os_time_tick/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time_tick/index.html b/develop/os/core_os/time/os_time_tick/index.html
index c66f892..9503db2 100644
--- a/develop/os/core_os/time/os_time_tick/index.html
+++ b/develop/os/core_os/time/os_time_tick/index.html
@@ -596,17 +596,6 @@
                 
   
   
-    <li ><a href="../../../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../modules/json/json/">JSON</a>
   
   


[02/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_dirent_name/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_dirent_name/index.html b/latest/os/modules/fs/fs/fs_dirent_name/index.html
index db0750d..3181044 100644
--- a/latest/os/modules/fs/fs/fs_dirent_name/index.html
+++ b/latest/os/modules/fs/fs/fs_dirent_name/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_filelen/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_filelen/index.html b/latest/os/modules/fs/fs/fs_filelen/index.html
index b498680..bbf2a7c 100644
--- a/latest/os/modules/fs/fs/fs_filelen/index.html
+++ b/latest/os/modules/fs/fs/fs_filelen/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_getpos/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_getpos/index.html b/latest/os/modules/fs/fs/fs_getpos/index.html
index 303109f..12592ca 100644
--- a/latest/os/modules/fs/fs/fs_getpos/index.html
+++ b/latest/os/modules/fs/fs/fs_getpos/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_mkdir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_mkdir/index.html b/latest/os/modules/fs/fs/fs_mkdir/index.html
index a1b3e53..e2b4aa4 100644
--- a/latest/os/modules/fs/fs/fs_mkdir/index.html
+++ b/latest/os/modules/fs/fs/fs_mkdir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_open/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_open/index.html b/latest/os/modules/fs/fs/fs_open/index.html
index 0adbda6..7dbb47f 100644
--- a/latest/os/modules/fs/fs/fs_open/index.html
+++ b/latest/os/modules/fs/fs/fs_open/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_opendir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_opendir/index.html b/latest/os/modules/fs/fs/fs_opendir/index.html
index 9ae1842..2687e5e 100644
--- a/latest/os/modules/fs/fs/fs_opendir/index.html
+++ b/latest/os/modules/fs/fs/fs_opendir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_ops/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_ops/index.html b/latest/os/modules/fs/fs/fs_ops/index.html
index 8294693..bad8a9e 100644
--- a/latest/os/modules/fs/fs/fs_ops/index.html
+++ b/latest/os/modules/fs/fs/fs_ops/index.html
@@ -482,17 +482,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_read/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_read/index.html b/latest/os/modules/fs/fs/fs_read/index.html
index 580e700..88d8677 100644
--- a/latest/os/modules/fs/fs/fs_read/index.html
+++ b/latest/os/modules/fs/fs/fs_read/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_readdir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_readdir/index.html b/latest/os/modules/fs/fs/fs_readdir/index.html
index ec948f4..c955d5b 100644
--- a/latest/os/modules/fs/fs/fs_readdir/index.html
+++ b/latest/os/modules/fs/fs/fs_readdir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_register/index.html b/latest/os/modules/fs/fs/fs_register/index.html
index 4dbaea3..bf22f45 100644
--- a/latest/os/modules/fs/fs/fs_register/index.html
+++ b/latest/os/modules/fs/fs/fs_register/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_rename/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_rename/index.html b/latest/os/modules/fs/fs/fs_rename/index.html
index 2964bd2..80ef075 100644
--- a/latest/os/modules/fs/fs/fs_rename/index.html
+++ b/latest/os/modules/fs/fs/fs_rename/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_return_codes/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_return_codes/index.html b/latest/os/modules/fs/fs/fs_return_codes/index.html
index a2cb042..4783ddb 100644
--- a/latest/os/modules/fs/fs/fs_return_codes/index.html
+++ b/latest/os/modules/fs/fs/fs_return_codes/index.html
@@ -470,17 +470,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_seek/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_seek/index.html b/latest/os/modules/fs/fs/fs_seek/index.html
index 3d00c54..d925005 100644
--- a/latest/os/modules/fs/fs/fs_seek/index.html
+++ b/latest/os/modules/fs/fs/fs_seek/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_unlink/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_unlink/index.html b/latest/os/modules/fs/fs/fs_unlink/index.html
index c0ee734..15c3c70 100644
--- a/latest/os/modules/fs/fs/fs_unlink/index.html
+++ b/latest/os/modules/fs/fs/fs_unlink/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_write/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_write/index.html b/latest/os/modules/fs/fs/fs_write/index.html
index d0fd979..130d940 100644
--- a/latest/os/modules/fs/fs/fs_write/index.html
+++ b/latest/os/modules/fs/fs/fs_write/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fsutil_read_file/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fsutil_read_file/index.html b/latest/os/modules/fs/fs/fsutil_read_file/index.html
index 1818bd8..98e7d97 100644
--- a/latest/os/modules/fs/fs/fsutil_read_file/index.html
+++ b/latest/os/modules/fs/fs/fsutil_read_file/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fsutil_write_file/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fsutil_write_file/index.html b/latest/os/modules/fs/fs/fsutil_write_file/index.html
index ecfb69b..ed3c6a8 100644
--- a/latest/os/modules/fs/fs/fsutil_write_file/index.html
+++ b/latest/os/modules/fs/fs/fsutil_write_file/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/nffs/nffs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs/index.html b/latest/os/modules/fs/nffs/nffs/index.html
index 1922aca..a0398ea 100644
--- a/latest/os/modules/fs/nffs/nffs/index.html
+++ b/latest/os/modules/fs/nffs/nffs/index.html
@@ -470,17 +470,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/nffs/nffs_area_desc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_area_desc/index.html b/latest/os/modules/fs/nffs/nffs_area_desc/index.html
index 54af4de..f206240 100644
--- a/latest/os/modules/fs/nffs/nffs_area_desc/index.html
+++ b/latest/os/modules/fs/nffs/nffs_area_desc/index.html
@@ -490,17 +490,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/nffs/nffs_config/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_config/index.html b/latest/os/modules/fs/nffs/nffs_config/index.html
index 4885d2a..b102eee 100644
--- a/latest/os/modules/fs/nffs/nffs_config/index.html
+++ b/latest/os/modules/fs/nffs/nffs_config/index.html
@@ -490,17 +490,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/nffs/nffs_detect/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_detect/index.html b/latest/os/modules/fs/nffs/nffs_detect/index.html
index bbc2539..320afac 100644
--- a/latest/os/modules/fs/nffs/nffs_detect/index.html
+++ b/latest/os/modules/fs/nffs/nffs_detect/index.html
@@ -498,17 +498,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/nffs/nffs_format/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_format/index.html b/latest/os/modules/fs/nffs/nffs_format/index.html
index f46b30c..b6727e7 100644
--- a/latest/os/modules/fs/nffs/nffs_format/index.html
+++ b/latest/os/modules/fs/nffs/nffs_format/index.html
@@ -498,17 +498,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/nffs/nffs_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_init/index.html b/latest/os/modules/fs/nffs/nffs_init/index.html
index 811ef74..4e8b9c2 100644
--- a/latest/os/modules/fs/nffs/nffs_init/index.html
+++ b/latest/os/modules/fs/nffs/nffs_init/index.html
@@ -498,17 +498,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/nffs/nffs_internals/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_internals/index.html b/latest/os/modules/fs/nffs/nffs_internals/index.html
index 4a10cab..b6c6d09 100644
--- a/latest/os/modules/fs/nffs/nffs_internals/index.html
+++ b/latest/os/modules/fs/nffs/nffs_internals/index.html
@@ -470,17 +470,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/otherfs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/otherfs/index.html b/latest/os/modules/fs/otherfs/index.html
index b7094c6..516263f 100644
--- a/latest/os/modules/fs/otherfs/index.html
+++ b/latest/os/modules/fs/otherfs/index.html
@@ -430,17 +430,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal/index.html b/latest/os/modules/hal/hal/index.html
index 745af6d..618806d 100644
--- a/latest/os/modules/hal/hal/index.html
+++ b/latest/os/modules/hal/hal/index.html
@@ -423,17 +423,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_api/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_api/index.html b/latest/os/modules/hal/hal_api/index.html
index 6ad18c9..3403f6d 100644
--- a/latest/os/modules/hal/hal_api/index.html
+++ b/latest/os/modules/hal/hal_api/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_bsp/hal_bsp/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_bsp/hal_bsp/index.html b/latest/os/modules/hal/hal_bsp/hal_bsp/index.html
index dca71c0..8543dea 100644
--- a/latest/os/modules/hal/hal_bsp/hal_bsp/index.html
+++ b/latest/os/modules/hal/hal_bsp/hal_bsp/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_creation/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_creation/index.html b/latest/os/modules/hal/hal_creation/index.html
index 5f90fdf..4abdaec 100644
--- a/latest/os/modules/hal/hal_creation/index.html
+++ b/latest/os/modules/hal/hal_creation/index.html
@@ -423,17 +423,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_flash/hal_flash/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_flash/hal_flash/index.html b/latest/os/modules/hal/hal_flash/hal_flash/index.html
index f0b5ecf..9386697 100644
--- a/latest/os/modules/hal/hal_flash/hal_flash/index.html
+++ b/latest/os/modules/hal/hal_flash/hal_flash/index.html
@@ -540,17 +540,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_flash/hal_flash_int/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_flash/hal_flash_int/index.html b/latest/os/modules/hal/hal_flash/hal_flash_int/index.html
index 8be442e..9ad914d 100644
--- a/latest/os/modules/hal/hal_flash/hal_flash_int/index.html
+++ b/latest/os/modules/hal/hal_flash/hal_flash_int/index.html
@@ -540,17 +540,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_gpio/hal_gpio/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_gpio/hal_gpio/index.html b/latest/os/modules/hal/hal_gpio/hal_gpio/index.html
index 48500e1..e14b257 100644
--- a/latest/os/modules/hal/hal_gpio/hal_gpio/index.html
+++ b/latest/os/modules/hal/hal_gpio/hal_gpio/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_i2c/hal_i2c/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_i2c/hal_i2c/index.html b/latest/os/modules/hal/hal_i2c/hal_i2c/index.html
index c4aaec4..0abd40a 100644
--- a/latest/os/modules/hal/hal_i2c/hal_i2c/index.html
+++ b/latest/os/modules/hal/hal_i2c/hal_i2c/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_in_libraries/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_in_libraries/index.html b/latest/os/modules/hal/hal_in_libraries/index.html
index 60a1d56..f7d4517 100644
--- a/latest/os/modules/hal/hal_in_libraries/index.html
+++ b/latest/os/modules/hal/hal_in_libraries/index.html
@@ -423,17 +423,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html b/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html
index 3cc226e..5bd177a 100644
--- a/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html
+++ b/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_spi/hal_spi/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_spi/hal_spi/index.html b/latest/os/modules/hal/hal_spi/hal_spi/index.html
index 4a8244f..02599df 100644
--- a/latest/os/modules/hal/hal_spi/hal_spi/index.html
+++ b/latest/os/modules/hal/hal_spi/hal_spi/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_system/hal_sys/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_system/hal_sys/index.html b/latest/os/modules/hal/hal_system/hal_sys/index.html
index d83b511..3d8bebc 100644
--- a/latest/os/modules/hal/hal_system/hal_sys/index.html
+++ b/latest/os/modules/hal/hal_system/hal_sys/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_timer/hal_timer/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_timer/hal_timer/index.html b/latest/os/modules/hal/hal_timer/hal_timer/index.html
index 0ca2f9a..d255310 100644
--- a/latest/os/modules/hal/hal_timer/hal_timer/index.html
+++ b/latest/os/modules/hal/hal_timer/hal_timer/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_uart/hal_uart/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_uart/hal_uart/index.html b/latest/os/modules/hal/hal_uart/hal_uart/index.html
index fb5da96..ccd97dc 100644
--- a/latest/os/modules/hal/hal_uart/hal_uart/index.html
+++ b/latest/os/modules/hal/hal_uart/hal_uart/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html b/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html
index a284730..a9d1a64 100644
--- a/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html
+++ b/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/imgmgr/imgmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/imgmgr/imgmgr/index.html b/latest/os/modules/imgmgr/imgmgr/index.html
index c47df3a..948f611 100644
--- a/latest/os/modules/imgmgr/imgmgr/index.html
+++ b/latest/os/modules/imgmgr/imgmgr/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/imgmgr/imgr_ver_parse/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/imgmgr/imgr_ver_parse/index.html b/latest/os/modules/imgmgr/imgr_ver_parse/index.html
index 0612d8c..60241b2 100644
--- a/latest/os/modules/imgmgr/imgr_ver_parse/index.html
+++ b/latest/os/modules/imgmgr/imgr_ver_parse/index.html
@@ -427,17 +427,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/imgmgr/imgr_ver_str/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/imgmgr/imgr_ver_str/index.html b/latest/os/modules/imgmgr/imgr_ver_str/index.html
index f094c38..bac5a96 100644
--- a/latest/os/modules/imgmgr/imgr_ver_str/index.html
+++ b/latest/os/modules/imgmgr/imgr_ver_str/index.html
@@ -427,17 +427,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/json/json/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json/index.html b/latest/os/modules/json/json/index.html
index 579a500..62b1e7d 100644
--- a/latest/os/modules/json/json/index.html
+++ b/latest/os/modules/json/json/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li class="active"><a href="./">JSON</a>
   
   
@@ -731,9 +720,9 @@ This function should collect all the data encoder function generates. It can col
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../../elua/lua_main/>
+    <a href=../../baselibc/>
         <span class="fa fa-arrow-left"></span>
-        Previous: lua_main
+        Previous: Baselibc library
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/json/json_encode_object_entry/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_encode_object_entry/index.html b/latest/os/modules/json/json_encode_object_entry/index.html
index baa5f13..553c795 100644
--- a/latest/os/modules/json/json_encode_object_entry/index.html
+++ b/latest/os/modules/json/json_encode_object_entry/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/json/json_encode_object_finish/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_encode_object_finish/index.html b/latest/os/modules/json/json_encode_object_finish/index.html
index 8fa713e..4ade7fa 100644
--- a/latest/os/modules/json/json_encode_object_finish/index.html
+++ b/latest/os/modules/json/json_encode_object_finish/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/json/json_encode_object_key/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_encode_object_key/index.html b/latest/os/modules/json/json_encode_object_key/index.html
index 2d1e017..cf74e17 100644
--- a/latest/os/modules/json/json_encode_object_key/index.html
+++ b/latest/os/modules/json/json_encode_object_key/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/json/json_encode_object_start/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_encode_object_start/index.html b/latest/os/modules/json/json_encode_object_start/index.html
index 9bad0b9..2d96f14 100644
--- a/latest/os/modules/json/json_encode_object_start/index.html
+++ b/latest/os/modules/json/json_encode_object_start/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/json/json_read_object/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_read_object/index.html b/latest/os/modules/json/json_read_object/index.html
index a5088f0..488ec9b 100644
--- a/latest/os/modules/json/json_read_object/index.html
+++ b/latest/os/modules/json/json_read_object/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/logs/logs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/logs/logs/index.html b/latest/os/modules/logs/logs/index.html
index c2b3f3f..dc36b3c 100644
--- a/latest/os/modules/logs/logs/index.html
+++ b/latest/os/modules/logs/logs/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/shell/shell/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell/index.html b/latest/os/modules/shell/shell/index.html
index 3fb7939..6dc64bd 100644
--- a/latest/os/modules/shell/shell/index.html
+++ b/latest/os/modules/shell/shell/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/shell/shell_cmd_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell_cmd_register/index.html b/latest/os/modules/shell/shell_cmd_register/index.html
index 7645277..23ebc69 100644
--- a/latest/os/modules/shell/shell_cmd_register/index.html
+++ b/latest/os/modules/shell/shell_cmd_register/index.html
@@ -443,17 +443,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/shell/shell_evq_set/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell_evq_set/index.html b/latest/os/modules/shell/shell_evq_set/index.html
index 2f2e1a3..3775585 100644
--- a/latest/os/modules/shell/shell_evq_set/index.html
+++ b/latest/os/modules/shell/shell_evq_set/index.html
@@ -443,17 +443,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/shell/shell_nlip_input_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell_nlip_input_register/index.html b/latest/os/modules/shell/shell_nlip_input_register/index.html
index 8b9ddc0..6475b63 100644
--- a/latest/os/modules/shell/shell_nlip_input_register/index.html
+++ b/latest/os/modules/shell/shell_nlip_input_register/index.html
@@ -443,17 +443,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/shell/shell_nlip_output/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell_nlip_output/index.html b/latest/os/modules/shell/shell_nlip_output/index.html
index b8dbe6f..b933c65 100644
--- a/latest/os/modules/shell/shell_nlip_output/index.html
+++ b/latest/os/modules/shell/shell_nlip_output/index.html
@@ -443,17 +443,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/split/split/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/split/split/index.html b/latest/os/modules/split/split/index.html
index 08920b9..9b2be3a 100644
--- a/latest/os/modules/split/split/index.html
+++ b/latest/os/modules/split/split/index.html
@@ -394,17 +394,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/stats/stats/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/stats/stats/index.html b/latest/os/modules/stats/stats/index.html
index 1c20998..c64d97d 100644
--- a/latest/os/modules/stats/stats/index.html
+++ b/latest/os/modules/stats/stats/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/sysinitconfig/sysconfig_error/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/sysinitconfig/sysconfig_error/index.html b/latest/os/modules/sysinitconfig/sysconfig_error/index.html
index 76ef450..093d6d9 100644
--- a/latest/os/modules/sysinitconfig/sysconfig_error/index.html
+++ b/latest/os/modules/sysinitconfig/sysconfig_error/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/sysinitconfig/sysinitconfig/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/sysinitconfig/sysinitconfig/index.html b/latest/os/modules/sysinitconfig/sysinitconfig/index.html
index a4e1a5f..2712f79 100644
--- a/latest/os/modules/sysinitconfig/sysinitconfig/index.html
+++ b/latest/os/modules/sysinitconfig/sysinitconfig/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/testutil/test_assert/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_assert/index.html b/latest/os/modules/testutil/test_assert/index.html
index 152086a..032c9c9 100644
--- a/latest/os/modules/testutil/test_assert/index.html
+++ b/latest/os/modules/testutil/test_assert/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/testutil/test_case/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_case/index.html b/latest/os/modules/testutil/test_case/index.html
index 2ea2800..c9c4b8c 100644
--- a/latest/os/modules/testutil/test_case/index.html
+++ b/latest/os/modules/testutil/test_case/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/testutil/test_decl/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_decl/index.html b/latest/os/modules/testutil/test_decl/index.html
index 8c707d9..3d57fc4 100644
--- a/latest/os/modules/testutil/test_decl/index.html
+++ b/latest/os/modules/testutil/test_decl/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/testutil/test_pass/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_pass/index.html b/latest/os/modules/testutil/test_pass/index.html
index f6c6744..7414276 100644
--- a/latest/os/modules/testutil/test_pass/index.html
+++ b/latest/os/modules/testutil/test_pass/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/testutil/test_suite/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_suite/index.html b/latest/os/modules/testutil/test_suite/index.html
index c6cb82a..8c2ba0e 100644
--- a/latest/os/modules/testutil/test_suite/index.html
+++ b/latest/os/modules/testutil/test_suite/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/testutil/testutil/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/testutil/index.html b/latest/os/modules/testutil/testutil/index.html
index dcfab70..2bb7075 100644
--- a/latest/os/modules/testutil/testutil/index.html
+++ b/latest/os/modules/testutil/testutil/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/testutil/tu_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/tu_init/index.html b/latest/os/modules/testutil/tu_init/index.html
index 69a2b55..26bb755 100644
--- a/latest/os/modules/testutil/tu_init/index.html
+++ b/latest/os/modules/testutil/tu_init/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/testutil/tu_restart/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/tu_restart/index.html b/latest/os/modules/testutil/tu_restart/index.html
index f5c3f32..0666558 100644
--- a/latest/os/modules/testutil/tu_restart/index.html
+++ b/latest/os/modules/testutil/tu_restart/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/os_user_guide/index.html
----------------------------------------------------------------------
diff --git a/latest/os/os_user_guide/index.html b/latest/os/os_user_guide/index.html
index 8447dd1..4aebb20 100644
--- a/latest/os/os_user_guide/index.html
+++ b/latest/os/os_user_guide/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/STM32F303/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/STM32F303/index.html b/latest/os/tutorials/STM32F303/index.html
index da89862..791c937 100644
--- a/latest/os/tutorials/STM32F303/index.html
+++ b/latest/os/tutorials/STM32F303/index.html
@@ -355,19 +355,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/add_newtmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/add_newtmgr/index.html b/latest/os/tutorials/add_newtmgr/index.html
index f21758c..c0320a1 100644
--- a/latest/os/tutorials/add_newtmgr/index.html
+++ b/latest/os/tutorials/add_newtmgr/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/add_shell/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/add_shell/index.html b/latest/os/tutorials/add_shell/index.html
index b3d275e..92e53d1 100644
--- a/latest/os/tutorials/add_shell/index.html
+++ b/latest/os/tutorials/add_shell/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/air_quality_ble/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/air_quality_ble/index.html b/latest/os/tutorials/air_quality_ble/index.html
index d398c14..feb0095 100644
--- a/latest/os/tutorials/air_quality_ble/index.html
+++ b/latest/os/tutorials/air_quality_ble/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/air_quality_sensor/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/air_quality_sensor/index.html b/latest/os/tutorials/air_quality_sensor/index.html
index 9fec212..b586f78 100644
--- a/latest/os/tutorials/air_quality_sensor/index.html
+++ b/latest/os/tutorials/air_quality_sensor/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ./
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/arduino_zero/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/arduino_zero/index.html b/latest/os/tutorials/arduino_zero/index.html
index 3b09f31..db79882 100644
--- a/latest/os/tutorials/arduino_zero/index.html
+++ b/latest/os/tutorials/arduino_zero/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -555,29 +542,41 @@
 <p>Learn how to use packages from a default application repository of Mynewt to build your first <em>Hello World</em> application (Blinky) on a target board. Once built using the <em>newt</em> tool, this application will blink the LED lights on the target board.</p>
 <p>This tutorial describes how to run Mynewt OS on Arduino Zero. Follow these simple steps and your board will be blinking in no time!</p>
 <h3 id="prerequisites">Prerequisites</h3>
-<p>Before tackling this tutorial, it's best to read about Mynewt in the <a href="../../get_started/get_started">Introduction</a> section of this documentation.</p>
-<h3 id="equipment">Equipment</h3>
-<p>You will need the following equipment</p>
+<p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
-<li>An Arduino Zero board.  NOTE: There are many flavors of Arduino. Ensure that
-you have an Arduino Zero. See below for the versions of Arduino Zero that are
-compatible with this tutorial</li>
-<li>A computer that can connect to the Arduino Zero over USB</li>
-<li>A USB cable (Type A to micro B) that can connect the computer to the Arduino</li>
-<li>The Mynewt Release</li>
+<li>Have an Arduino Zero board.<br />
+Note: There are many flavors of Arduino. Make sure you are using an Arduino Zero. See below for the versions of Arduino Zero that are compatible with this tutorial.</li>
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a Micro-USB cable to connect the board and the computer.</li>
+<li>Have a computer to build a Mynewt application and connect to your board over USB.</li>
+<li>Install the Newt tool and toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
+<li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>
+<li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section. </li>
 </ul>
 <p>This tutorial has been tested on the following three Arduino Zero boards - Zero, M0 Pro, and Zero-Pro.</p>
 <p><img src="https://www.arduino.cc/en/uploads/Main/Zero_Usb_Ports.jpg" alt="Drawing" style="width: 390px;"/>
 <img src="http://www.arduino.org/images/products/Arduino-M0Pro-flat.jpg" alt="Drawing" style="width: 310px;"/>
 <img src="http://www.arduino.org//images/products/ArduinoZeroPro-flat-org.jpg" alt="Drawing" style="width: 310px;"/></p>
 <p>Mynewt has not been tested on Arduino M0 which has no internal debugger support.</p>
-<h3 id="install-mynewt-and-newt">Install Mynewt and Newt</h3>
-<ul>
-<li>If you have not already done so, install Newt as shown in the <a href="../../../newt/install/newt_mac/">Newt install tutorial</a></li>
-<li>If you have not already done so, create a project as shown in the Quick Start guide on how to <a href="../../get_started/project_create/">Create Your First Project</a>. Skip the testing and building the project steps in that tutorial since you will be defining a target for your Arduino board in this tutorial.</li>
-</ul>
 <p><br></p>
-<h3 id="fetch-external-packages">Fetch External Packages</h3>
+<h3 id="create-a-project">Create a Project</h3>
+<p>Create a new project if you do not have an existing one.  You can skip this step and proceed to <a href="#fetchexternal">fetch external packages</a> if you already created a project.  </p>
+<p>Run the following commands to create a new project: </p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ mkdir ~/dev
+    $ cd ~/dev
+    $ newt new myproj
+    Downloading project skeleton from apache/incubator-mynewt-blinky...
+    Installing skeleton in myproj...
+    Project myproj successfully created.
+    $ cd myproj
+    $ newt install
+    apache-mynewt-core
+    $
+</pre></div>
+
+
+<p><br></p>
+<h3 id="fetch-external-packages"><a name="fetchexternal"></a> Fetch External Packages</h3>
 <p>Mynewt uses source code provided directly from the chip manufacturer for
 low level operations. Sometimes this code is licensed only for the specific manufacturer of the chipset and cannot live in the Apache Mynewt repository. That happens to be the case for the Arduino Zero board which uses Atmel SAMD21. Runtime's github repository hosts such external third-party packages and the Newt tool can fetch them.</p>
 <p>To fetch the package with MCU support for Atmel SAMD21 for Arduino Zero from the Runtime git repository, you need to add
@@ -594,23 +593,21 @@ project.repositories:
 </span>
 repository.apache-mynewt-core:
     type: github
-    vers: 0-latest
+    vers: 1-latest
     user: apache
     repo: incubator-mynewt-core
 
 <span style="background-color: #ffffcc">repository.mynewt_arduino_zero:
 </span><span style="background-color: #ffffcc">    type: github
-</span><span style="background-color: #ffffcc">    vers: 0-latest
+</span><span style="background-color: #ffffcc">    vers: 1-latest
 </span><span style="background-color: #ffffcc">    user: runtimeinc
 </span><span style="background-color: #ffffcc">    repo: mynewt_arduino_zero
 </span>$
 </pre></div>
 
 
-<p><br></p>
-<p>Once you've edited your <code>project.yml</code> file, the next step is to install the
-project dependencies, this can be done with the <code>newt install</code> command
-(to see more output, provide the <code>-v</code> verbose option.):</p>
+<p><br>
+Install the project dependencies using the <code>newt install</code> command (You can specify <code>-v</code> for verbose output):</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt install
 apache-mynewt-core
 mynewt_arduino_zero
@@ -619,12 +616,12 @@ $
 
 
 <p><br></p>
-<p><strong>NOTE:</strong> If there has been a new release of a repo used in your project since you last installed it, the <code>0-latest</code> version for the repo in the <code>project.yml</code> file will refer to the new release and will not match the installed files. In that case you will get an error message saying so and you will need to run <code>newt upgrade</code> to overwrite the existing files with the latest codebase.</p>
+<p><strong>NOTE:</strong> If there has been a new release of a repo used in your project since you last installed it, the <code>1-latest</code> version for the repo in the <code>project.yml</code> file will refer to the new release and will not match the installed files. In that case you will get an error message saying so and you will need to run <code>newt upgrade</code> to overwrite the existing files with the latest codebase.</p>
 <p><br></p>
-<h3 id="create-your-bootloader-target">Create your bootloader target</h3>
-<p>Next, you need to tell Newt what to build.  For the Arduino Zero, we are going to
-generate both a bootloader, and an image target.</p>
-<p>To generate the bootloader target, you need to specify the following options. The output of the commands (indicating success) have been suppressed for easier readability.</p>
+<h3 id="create-a-target-for-the-bootloader">Create a Target for the Bootloader</h3>
+<p>You need to create two targets, one for the bootloader and one for the Blinky application.<br />
+<br>
+Run the following <code>newt target</code> commands, from your project directory (ex. ~/dev/myproj), to create a bootloader target for the Arduino Zero Pro board.  We name the target <code>arduino_boot</code>.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create arduino_boot
 $ newt target set arduino_boot bsp=@mynewt_arduino_zero/hw/bsp/arduino_zero
 Target targets/arduino_boot successfully created
@@ -634,13 +631,14 @@ $ newt target set arduino_boot build_profile=optimized
 Target targets/arduino_boot successfully set target.build_profile to optimized
 $ newt target set arduino_boot syscfg=BSP_ARDUINO_ZERO_PRO=1
 Target targets/arduino_boot successfully set target.syscfg to BSP_ARDUINO_ZERO_PRO=1
+$
 </pre></div>
 
 
-<p><br></p>
-<p>These commands do a few things:</p>
+<p><strong>Note:</strong> If you have an Arduino Zero instead of a Arduino Zero Pro board, replace <code>BSP_ARDUINO_ZERO_PRO</code>  with <code>BSP_ARDUINO_ZERO</code> in the last <code>newt target set</code> command.</p>
+<p>These commands perform the following:</p>
 <ul>
-<li>Create a target named <code>arduino_boot</code>, in order to build the Arduino Zero Bootloader.</li>
+<li>Create a target named <code>arduino_boot</code>  for the Arduino Zero Bootloader. </li>
 <li>Set the application for the <code>arduino_boot</code> target to the default Apache Mynewt
     bootloader (<code>@apache-mynewt-core/apps/boot</code>)</li>
 <li>Set the board support package for the target to
@@ -649,50 +647,12 @@ Target targets/arduino_boot successfully set target.syscfg to BSP_ARDUINO_ZERO_P
 <li>Use the "optimized" build profile for the <code>arduino_boot</code> target.  This
     instructs Newt to generate smaller and more efficient code for this target.
     This setting is necessary due to the bootloader's strict size constraints.</li>
-<li>Tells the Board Support Package to enable support for the Arduino Zero Pro or the Arduino Zero. Set it to <code>arduino_zero</code> or <code>arduino_zero_pro</code> depending on the board you have.</li>
+<li>Sets the system configuration setting for Board Support Package to support the Arduino Zero Pro. </li>
 </ul>
-<p><br></p>
-<p>If you'd rather, you can also take care of that last part by editing the <code>syscfg.yml</code> file 
-for the target to set options -- at least one that is <em>required</em>.
-Look in the directory for the target, as defined by the target (in this case <code>targets/arduino_boot</code>)
-and edit the syscfg.yml file. It should look like this when you're done:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">### Package: targets/arduino_boot
-
-syscfg.vals:
-    BSP_ARDUINO_ZERO_PRO: 1
-</pre></div>
-
-
-<p>If you have an Arduino Zero Pro or M0 Pro, you'll want <code>BSP_ARDUINO_ZEZRO_PRO: 1</code>. If you have the Arduino Zero, 
-you'll want <code>BSP_ARDUINO_ZERO: 1</code> instead.</p>
-<p>For more information on setting options, see the section on <a href="../../get_started/vocabulary/">Concepts</a>.</p>
-<p>For now, we're not going to set any more options or enable any more features of Mynewt OS.</p>
-<p><br></p>
-<h3 id="build-your-bootloader">Build your bootloader</h3>
-<p>Once you've configured the bootloader target, the next step is to build the bootloader for your Arduino. You can do this by using the <code>newt build</code> command:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build arduino_boot
-Compiling asprintf.c
-Compiling atoi.c
-Compiling atol.c
-Compiling atoll.c
-Compiling bsearch.c
-Compiling bzero.c
-Compiling calloc.c
-Compiling fgets.c
-Compiling inline.c
-&lt;snip&gt;
-App successfully built: myproject/bin/arduino_boot/apps/boot/boot.elf
-</pre></div>
-
-
-<p>If this command finishes successfully, you have successfully built the Arduino
-bootloader, and the next step is to build your application for the Arduino
-board.</p>
-<p><br></p>
-<h3 id="build-your-blinky-app">Build your blinky app</h3>
-<p>To create and download your application, you create another target, this one pointing to the application you want to download to the Arduino board.<br />
-In this tutorial,  we will use the default application that comes with your project, <code>apps/blinky</code>:</p>
-<p><strong>Note</strong>: Remember to set features to <code>arduino_zero</code> if your board is Arduino Zero and not a Pro!</p>
+<p>See the <a href="../../get_started/vocabulary/">Concepts</a> section for more information on setting options.
+<br></p>
+<h3 id="create-a-target-for-the-blinky-application">Create a Target for the Blinky Application</h3>
+<p>Run the following <code>newt target</code> commands to create your Blinky application target.  We name the application target <code>arduino_blinky</code>.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create arduino_blinky
 Target targets/arduino_blinky successfully created
 $ newt target set arduino_blinky app=apps/blinky
@@ -701,51 +661,84 @@ $ newt target set arduino_blinky bsp=@mynewt_arduino_zero/hw/bsp/arduino_zero
 Target targets/arduino_blinky successfully set target.bsp to @mynewt_arduino_zero/hw/bsp/arduino_zero
 $ newt target set arduino_blinky build_profile=debug
 Target targets/arduino_blinky successfully set target.build_profile to debug
-<span style="background-color: #ffffcc">$ newt target set arduino_blinky features=arduino_zero_pro
-</span>Target targets/arduino_blinky successfully set pkg.features to arduino_zero_pro
+$ newt target set arduino_blinky syscfg=BSP_ARDUINO_ZERO_PRO=1
+Target targets/arduino_boot successfully set target.syscfg to BSP_ARDUINO_ZERO_PRO=1
 $
 </pre></div>
 
 
+<p><strong>Note:</strong> If you have an Arduino Zero instead of a Arduino Zero Pro board, replace <code>BSP_ARDUINO_ZERO_PRO</code>  with <code>BSP_ARDUINO_ZERO</code> in the last <code>newt target set</code> command.</p>
 <p><br></p>
-<p>You can now build the target, with <code>newt build</code>:</p>
+<h3 id="build-the-bootloader">Build the Bootloader</h3>
+<p>Run the <code>newt build arduino_boot</code> command to build a bootloader for your arduino board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build arduino_boot
+Building target targets/arduino_boot
+Compiling bin/targets/arduino_boot/generated/src/arduino_boot-sysinit-app.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+Compiling bin/targets/arduino_boot/generated/src/arduino_boot-sysflash.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_validate.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/bootutil_misc.c
+Compiling repos/apache-mynewt-core/apps/boot/src/boot.c
+Compiling repos/apache-mynewt-core/crypto/mbedtls/src/arc4.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/loader.c
+Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aes.c
+
+      ....
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/arduino_boot/app/apps/boot/boot.elf
+Target successfully built: targets/arduino_boot
+</pre></div>
+
+
+<p><br></p>
+<h3 id="build-the-blinky-application">Build the Blinky Application</h3>
+<p>Run the <code>newt build arduino_blinky</code> command to build your Blinky application image:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build arduino_blinky
-Compiling main.c
-Archiving blinky.a
-Compiling cons_fmt.c
-Compiling cons_tty.c
-Archiving full.a
-Compiling case.c
-Compiling suite.c
-Compiling testutil.c
-Archiving testutil.a
-&lt;snip&gt;
-App successfully built: myproject/bin/arduino_blinky/apps/blinky/blinky.elf
+Building target targets/arduino_blinky
+Compiling repos/apache-mynewt-core/hw/hal/src/hal_flash.c
+Compiling apps/blinky/src/main.c
+Compiling repos/mynewt_arduino_zero/hw/mcu/atmel/samd21xx/src/sam0/drivers/i2s/i2s.c
+Compiling repos/mynewt_arduino_zero/hw/bsp/arduino_zero/src/hal_bsp.c
+Compiling repos/mynewt_arduino_zero/hw/mcu/atmel/samd21xx/src/sam0/drivers/i2s/i2s_callback.c
+Compiling repos/mynewt_arduino_zero/hw/mcu/atmel/samd21xx/src/sam0/drivers/nvm/nvm.c
+
+     ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/arduino_blinky/app/apps/blinky/blinky.elf
+Target successfully built: targets/arduino_blinky
 </pre></div>
 
 
-<p><font color="#FF0000"> Congratulations! </font> You have successfully built your application. Now it's time to load both the bootloader and application onto the target.</p>
 <p><br></p>
-<h3 id="connect-the-target">Connect the Target</h3>
+<h3 id="connect-to-the-board">Connect to the Board</h3>
 <p>Connect your computer to the Arduino Zero (from now on we'll call this the
-target) with the Micro-USB cable through the Programming Port as shown below.
-Mynewt will download and debug the target through this port. You should see a
+target) with a Micro-USB cable through the Programming Port as shown below.
+Mynewt will load the image onto the board and  debug the target through this port. You should see a
 little green LED come on. That means the board has power.</p>
 <p>No external debugger is required.  The Arduino Zero comes with an internal
 debugger that can be accessed by Mynewt.</p>
-<p>A image below shows the Arduino Zero Programming Port.</p>
+<p>The images below show the Arduino Zero Programming Port.</p>
 <p><img src="https://www.arduino.cc/en/uploads/Main/Zero_Usb_Ports.jpg" alt="Drawing" style="width: 400px;"/>
 <img src="http://www.arduino.org//images/products/ArduinoZeroPro-flat-org.jpg" alt="Drawing" style="width: 330px;"/></p>
 <p><br></p>
-<h3 id="download-the-bootloader">Download the Bootloader</h3>
-<p>Execute the command to download the bootloader.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    <span style="color: #000000">$</span> <span style="color: #000000">newt</span> <span style="color: #000000">load</span> <span style="color: #000000">arduino_boot</span>
+<h3 id="load-the-bootloader-onto-the-board">Load the Bootloader onto the Board</h3>
+<p>Run the <code>newt load arduino_boot</code> command to load the bootloader onto your board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt load arduino_boot
+Loading bootloader
+$
 </pre></div>
 
 
-<p>If the newt tool finishes without error, that means the bootloader has been
-successfully loaded onto the target.</p>
-<p>If, on the other hand, you get errors like the following:</p>
+<p>The bootloader is loaded onto your board succesfully when the <code>newt load</code> command returns to the command prompt with no messages. You can proceed to load and run your Blinky application image (See <a href="#runimage">Run the Blinky Application</a>).</p>
+<p>If the <code>newt load</code> command outputs the following error messages, you will need to erase your board.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt load arduino_boot -v
 Loading bootloader
 Error: Downloading ~/dev/arduino_zero/bin/targets/arduino_boot/app/apps/boot/boot.elf.bin to 0x0
@@ -770,10 +763,9 @@ Error: Target not halted
 </pre></div>
 
 
-<p>Then you'll need to erase your board first before downloading the <code>arduino_boot</code> application. Here's how you do that using gdb,
-the GNU Debugger. </p>
+<p><br>
+To erase your board, start a debug session and enter the highlighted commands at the <code>(gdb)</code> prompts:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt debug arduino_blinky
-
 (gdb) mon at91samd chip-erase
 chip erased
 chip erased
@@ -790,23 +782,21 @@ chip erased
 </pre></div>
 
 
-<p>Once the chip is erased, go back and download the <code>arduino_boot</code> image to the board as above. </p>
-<p><br></p>
+<p><br>
+Run the <code>newt load arduino_boot</code> command again after erasing the board. </p>
 <p><font color="#FF0000"> Reminder if you are using Docker: </font> When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like <code>Error: unable to find CMSIS-DAP device</code> when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. "Atmel Corp. EDBG CMSIS-DAP[0101]") by clicking on the "Removes selected USB filter" button, and add a new filter by clicking on the "Adds new USB filter" button.</p>
 <p><br></p>
-<h3 id="run-the-image">Run the Image</h3>
-<p>Now that the bootloader is downloaded to the target, the next step is to load
-your image onto the Arduino Zero.  The easiest way to do this, is to use the
-<code>newt run</code> command.  <code>newt run</code> will automatically rebuild your program
-(if necessary), create an image, and load it onto the target device.</p>
-<p>Here, we will load our <code>arduino_blinky</code> target onto the device, and we
-should see it run:</p>
+<h3 id="run-the-blinky-application"><a name="runimage"></a>Run the Blinky Application</h3>
+<p>After you load the bootloader successfully onto your board, you can load and run the Blinky application. </p>
+<p>Run the <code>newt run arduino_blinky 0.0.0</code> command to build the arduino_blinky target (if necessary), create an image with verison 0.0.0, load the image onto the board, and start a debugger session. </p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt run arduino_blinky 0.0.0
-Debugging myproject/bin/arduino_blinky/apps/blinky/blinky.elf
-Open On-Chip Debugger 0.9.0 (2015-09-23-21:46)
+App image succesfully generated: ~/dev/myproj/bin/targets/arduino_blinky/app/apps/blinky/blinky.img
+Loading app image into slot 1
+[~/dev/myproj/repos/mynewt_arduino_zero/hw/bsp/arduino_zero/arduino_zero_debug.sh ~/dev/myproj/repos/mynewt_arduino_zero/hw/bsp/arduino_zero ~/dev/myproj/bin/targets/arduino_blinky/app/apps/blinky/blinky]
+Open On-Chip Debugger 0.9.0 (2015-11-15-13:10)
 Licensed under GNU GPL v2
 For bug reports, read
-    http://openocd.org/doc/doxygen/bugs.html
+http://openocd.org/doc/doxygen/bugs.html
 Info : only one transport option; autoselect &#39;swd&#39;
 adapter speed: 500 kHz
 adapter_nsrst_delay: 100
@@ -820,6 +810,9 @@ Info : CMSIS-DAP: Interface ready
 Info : clock speed 500 kHz
 Info : SWD IDCODE 0x0bc11477
 Info : at91samd21g18.cpu: hardware has 4 breakpoints, 2 watchpoints
+target state: halted
+target halted due to debug-request, current mode: Thread 
+xPSR: 0x21000000 pc: 0x0000fca6 psp: 0x20002408
 GNU gdb (GNU Tools for ARM Embedded Processors) 7.8.0.20150604-cvs
 Copyright (C) 2014 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later &lt;http://gnu.org/licenses/gpl.html&gt;
@@ -834,13 +827,16 @@ Find the GDB manual and other documentation resources online at:
 &lt;http://www.gnu.org/software/gdb/documentation/&gt;.
 For help, type &quot;help&quot;.
 Type &quot;apropos word&quot; to search for commands related to &quot;word&quot;...
-Reading symbols from myproject/bin/arduino_blinky/apps/blinky/blinky.elf...done.
-target state: halted
-target halted due to debug-request, current mode: Thread
-xPSR: 0x21000000 pc: 0x0000030e msp: 0x20008000
+Reading symbols from ~/dev/myproj/bin/targets/arduino_blinky/app/apps/blinky/blinky.elf...(no debugging symbols found)...done.
 Info : accepting &#39;gdb&#39; connection on tcp/3333
 Info : SAMD MCU: SAMD21G18A (256KB Flash, 32KB RAM)
-0x0000030e in ?? ()
+0x0000fca6 in os_tick_idle ()
+target state: halted
+target halted due to debug-request, current mode: Thread 
+xPSR: 0x21000000 pc: 0x000000b8 msp: 0x20008000
+target state: halted
+target halted due to debug-request, current mode: Thread 
+xPSR: 0x21000000 pc: 0x000000b8 msp: 0x20008000
 (gdb) r
 The &quot;remote&quot; target does not support &quot;run&quot;.  Try &quot;help target&quot; or &quot;continue&quot;.
 (gdb) c
@@ -849,15 +845,13 @@ Continuing.
 
 
 <p><br></p>
-<p><strong>NOTE:</strong> The 0.0.0 specified after the target name to <code>newt run</code> is the version
-of the image to load.  If you are not providing remote upgrade, and are just
-developing locally, you can provide 0.0.0 for every image version.</p>
+<p><strong>NOTE:</strong> The 0.0.0 is the version number to assign to the images.  If you are not providing remote upgrade, and are just developing locally, you can provide 0.0.0 for every image version.</p>
 <p>If you want the image to run without the debugger connected, simply quit the
 debugger and restart the board.  The image you programmed will come up and run on 
 the Arduino on the next boot!  </p>
 <p><br></p>
-<h3 id="watch-the-led-blink">Watch the LED blink</h3>
-<p>Congratulations! You have created a Mynewt operating system running on the
+<h3 id="watch-the-led-blink">Watch the LED Blink</h3>
+<p>Congratulations! You have created an Mynewt application running on the
 Arduino Zero. The LED right next to the power LED should be blinking. It is toggled 
 by one task running on the Mynewt OS.   </p>
 <p>We have more fun tutorials for you to get your hands dirty. Be bold and try other 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/blehci_project/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/blehci_project/index.html b/latest/os/tutorials/blehci_project/index.html
index 217be8a..083491a 100644
--- a/latest/os/tutorials/blehci_project/index.html
+++ b/latest/os/tutorials/blehci_project/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/bleprph/bleprph-adv/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-adv/index.html b/latest/os/tutorials/bleprph/bleprph-adv/index.html
index aeff1bd..4230f9c 100644
--- a/latest/os/tutorials/bleprph/bleprph-adv/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-adv/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/bleprph/bleprph-app/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-app/index.html b/latest/os/tutorials/bleprph/bleprph-app/index.html
index bdd14a9..a6e3518 100644
--- a/latest/os/tutorials/bleprph/bleprph-app/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-app/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>
@@ -558,7 +545,7 @@ $ newt target set myperiph app=@apache-mynewt-core/apps/bleprph
 Target targets/myperiph successfully set target.app to @apache-mynewt-core/apps/bleprph
 $ newt target set myperiph build_profile=optimized
 Target targets/myperiph successfully set target.build_profile to optimized
-$ newt build blerph
+$ newt build myblerph
 Building target targets/myperiph
 ...
 Linking ~/dev/nrf52dk/bin/targets/myperiph/app/apps/bleprph/bleprph.elf

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/bleprph/bleprph-chr-access/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-chr-access/index.html b/latest/os/tutorials/bleprph/bleprph-chr-access/index.html
index 49798f1..3c8a45e 100644
--- a/latest/os/tutorials/bleprph/bleprph-chr-access/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-chr-access/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/bleprph/bleprph-gap-event/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-gap-event/index.html b/latest/os/tutorials/bleprph/bleprph-gap-event/index.html
index e1c6b6e..3d9d833 100644
--- a/latest/os/tutorials/bleprph/bleprph-gap-event/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-gap-event/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/bleprph/bleprph-intro/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-intro/index.html b/latest/os/tutorials/bleprph/bleprph-intro/index.html
index a797876..104507c 100644
--- a/latest/os/tutorials/bleprph/bleprph-intro/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-intro/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html b/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html
index eb4f906..fa65e32 100644
--- a/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/bletiny_project/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bletiny_project/index.html b/latest/os/tutorials/bletiny_project/index.html
index 0a6d7e8..1a606a5 100644
--- a/latest/os/tutorials/bletiny_project/index.html
+++ b/latest/os/tutorials/bletiny_project/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/tutorials/blinky_console/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/blinky_console/index.html b/latest/os/tutorials/blinky_console/index.html
index f8b88d3..d771c5a 100644
--- a/latest/os/tutorials/blinky_console/index.html
+++ b/latest/os/tutorials/blinky_console/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>


[10/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/mkdocs/search_index.json
----------------------------------------------------------------------
diff --git a/develop/mkdocs/search_index.json b/develop/mkdocs/search_index.json
index 719ffa4..957c469 100644
--- a/develop/mkdocs/search_index.json
+++ b/develop/mkdocs/search_index.json
@@ -237,7 +237,7 @@
         }, 
         {
             "location": "/newt/install/newt_mac/", 
-            "text": "Install newt tool on your Mac\n\n\nGetting your Mac Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n\n\n1. Install Homebrew on your Mac OS X\n\n\n\n\nDo you have Homebrew? If not, open a terminal on your Mac and paste the following at a Terminal prompt. It will ask you for your sudo password.\n\n\n\n\n        $ ruby -e \n$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\n\n\n\n\n\n\nAlternatively, you can just extract (or \ngit clone\n) Homebrew and install it to \n/usr/local\n.\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo language environment dictates a directory structure. Known in Go parlanace as workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n
 \n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the \nnewt\n tool repository.\n\n\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\nNext, using \nbrew\n, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import \nnewt\n rep
 o into your local Go environment.\n\n\n\n\n        $ brew install go\n        ==\n \n        ...\n        ... \n        ==\n *Summary*\n        \ud83c\udf7a  /usr/local/Cellar/go/1.5.1: 5330 files, 273M\n\n\n\n\n\nAlternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.\n\n\n\n\n3. Create local repository\n\n\n\n\nUse Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.go program to build the \nnewt\n tool. The command \ngo install\n compiles and writes 
 the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile and execute it by calling \n$newt\n at the prompt instead of \nnewt\n. Essentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the 
 updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded project based on the Mynewt\n        operating system. Newt provides both build and package management in a\n        single tool, which allows you to compose an embedded workspace, and set\n        of projects, and then build the necessary artifacts from those projects.\n        For more information on the Mynewt operating system, please visit\n        https://www.github.com/mynewt/documentation.\n\n        Please use the newt help command, and specify the name of the command\n        you want help for, for help on how to use a specific command\n\n        Usage:\n         newt [flags]\n         newt [command]\n\n        Examples:\n         newt\n         newt help [\ncommand-name\n]\n           For help on \ncommand-name\n.  If not specified, print this message.\n\n\n        Availabl
 e Commands:\n         version     Display the Newt version number.\n         target      Set and view target information\n         egg         Commands to list and inspect eggs on a nest\n         nest        Commands to manage nests \n clutches (remote egg repositories)\n         help        Help about any command\n\n        Flags:\n         -h, --help=false: help for newt\n         -l, --loglevel=\nWARN\n: Log level, defaults to WARN.\n         -q, --quiet=false: Be quiet; only display error output.\n         -s, --silent=false: Be silent; don\nt output anything.\n         -v, --verbose=false: Enable verbose output when executing commands.\n\n\n        Use \nnewt help [command]\n for more information about a command.\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if 
 you need to)\n\n\nThen update each of the tools newt, newtmgr and newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
+            "text": "Install newt tool on your Mac\n\n\nGetting your Mac Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n\n\n1. Install Homebrew on your Mac OS X\n\n\n\n\nDo you have Homebrew? If not, open a terminal on your Mac and paste the following at a Terminal prompt. It will ask you for your sudo password.\n\n\n\n\n        $ ruby -e \n$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\n\n\n\n\n\n\nAlternatively, you can just extract (or \ngit clone\n) Homebrew and install it to \n/usr/local\n.\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo language environment dictates a directory structure. Known in Go parlanace as workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n
 \n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the \nnewt\n tool repository.\n\n\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\nNext, using \nbrew\n, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import \nnewt\n rep
 o into your local Go environment.\n\n\n\n\n        $ brew install go\n        ==\n \n        ...\n        ... \n        ==\n *Summary*\n        \ud83c\udf7a  /usr/local/Cellar/go/1.5.1: 5330 files, 273M\n\n\n\n\n\nAlternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.\n\n\n\n\n3. Create local repository\n\n\n\n\nUse Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.go program to build the \nnewt\n tool. The command \ngo install\n compiles and writes 
 the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile and execute it by calling \n$newt\n at the prompt instead of \nnewt\n. Essentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the 
 updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n          newt help [\ncommand-name\n]\n            For help on \ncommand-name\n.  If not specified, print this message.\n\n        Available
  Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug \ntarget\n\n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade project dependencies\n          vals         Display valid values f
 or the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default \nWARN\n)\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don\nt output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use \nnewt [command] --help\n for more information about a comma\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if you need to)\n\n\nThen update each of the tools newt, newtmgr a
 nd newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
             "title": "Install Newt on Mac"
         }, 
         {
@@ -267,7 +267,7 @@
         }, 
         {
             "location": "/newt/install/newt_mac/#4-build-the-newt-tool", 
-            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.   (Note: If you are going to be modifying the  newt  often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compile
 d binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded project based on the Mynewt\n        operating system. Newt provides both build and package management in a\n        single tool, which allows you to compose an embedded workspace, and set\n        of projects, and then build the necessary artifacts from those projects.\n        For more information on the Mynewt operating system, please visit\n        https://www.github.com/mynewt/documentation.\n\n        Please use the newt help command, and specify the name of the command\n        you want help for, for help on how to use a specific command\n\n        Usage:\n         newt [flags]\n         newt [command]\n\n        Examples:\n         newt\n         newt help [ command-name ]\n           For help on  command
 -name .  If not specified, print this message.\n\n\n        Available Commands:\n         version     Display the Newt version number.\n         target      Set and view target information\n         egg         Commands to list and inspect eggs on a nest\n         nest        Commands to manage nests   clutches (remote egg repositories)\n         help        Help about any command\n\n        Flags:\n         -h, --help=false: help for newt\n         -l, --loglevel= WARN : Log level, defaults to WARN.\n         -q, --quiet=false: Be quiet; only display error output.\n         -s, --silent=false: Be silent; don t output anything.\n         -v, --verbose=false: Enable verbose output when executing commands.\n\n\n        Use  newt help [command]  for more information about a command.", 
+            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.   (Note: If you are going to be modifying the  newt  often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compile
 d binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n          newt help [ command-name ]\n            For help on  comman
 d-name .  If not specified, print this message.\n\n        Available Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug  target \n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade p
 roject dependencies\n          vals         Display valid values for the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default  WARN )\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don t output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use  newt [command] --help  for more information about a comma", 
             "title": "4. Build the Newt tool"
         }, 
         {
@@ -277,7 +277,7 @@
         }, 
         {
             "location": "/newt/install/newt_linux/", 
-            "text": "Install newt tool on Linux\n\n\n\n\nGetting your Linux box Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n1. Install git, libcurl\n\n\n        $ sudo apt-get install git \n        $ sudo apt-get install libcurl4-gnutls-dev \n\n\n\n\n\nNOTE:\n On 64-bit host, you may also need to install gcc-multilib, if you encounter compilation errors related to 'sys/cdefs.h'\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo language environment dictates a directory structure. Known in Go parlance as a workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n\n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe GOPATH environment variable specifies the location of your workspace. To setup this work
 space environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the \nnewt\n tool repository.\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\n\n\nNext, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import \nnewt\n repo into your local Go environment.\n\n\nNote\n: The Newt tool requires Go version 1.5 or later. It uses the support for \"vendoring\" that was added in Go 1.5. Depend
 ing on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.5 or 1.6 from \nhttps://golang.org/dl/\n. You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at \nhttps://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04\n.\n\n\n\n\n\n\n        $ sudo apt-get install golang \n\n\n\n\n\n    \n\n\n3. Create local repository\n\n\n\n\nUse Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.g
 o program to build the \nnewt\n tool. The command \ngo install\n compiles and writes the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin. If you get errors it is likely because of path resolution issues. Try \ngo build\n  followed by \ngo install\n in that case.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile a
 nd execute it by calling \n$newt\n at the prompt instead of \nnewt\n. Essentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded project based on the Mynewt\n        operating system. Newt provides both build and package management in a\n        single tool, which allows you to compose an embedded workspace, and set\n        of projects, and then build the necessary artifacts from those projects.\n        For more information on the Mynewt operating system, please visit\n        https://www.github.com/mynewt/documentation.\n\n        Please use the newt help command, and specify the name of the command\n        you want help for, for help on how to use a specific command\n\n        Usage:\n         newt 
 [flags]\n         newt [command]\n\n        Examples:\n         newt\n         newt help [\ncommand-name\n]\n           For help on \ncommand-name\n.  If not specified, print this message.\n\n\n        Available Commands:\n         version     Display the Newt version number.\n         target      Set and view target information\n         egg         Commands to list and inspect eggs on a nest\n         nest        Commands to manage nests \n clutches (remote egg repositories)\n         help        Help about any command\n\n        Flags:\n         -h, --help=false: help for newt\n         -l, --loglevel=\nWARN\n: Log level, defaults to WARN.\n         -q, --quiet=false: Be quiet; only display error output.\n         -s, --silent=false: Be silent; don\nt output anything.\n         -v, --verbose=false: Enable verbose output when executing commands.\n\n\n        Use \nnewt help [command]\n for more information about a command.\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will
  update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if you need to)\n\n\nThen update each of the tools newt, newtmgr and newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
+            "text": "Install newt tool on Linux\n\n\n\n\nGetting your Linux box Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n1. Install git, libcurl\n\n\n        $ sudo apt-get install git \n        $ sudo apt-get install libcurl4-gnutls-dev \n\n\n\n\n\nNOTE:\n On 64-bit host, you may also need to install gcc-multilib, if you encounter compilation errors related to 'sys/cdefs.h'\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo language environment dictates a directory structure. Known in Go parlance as a workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n\n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe GOPATH environment variable specifies the location of your workspace. To setup this work
 space environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the \nnewt\n tool repository.\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\n\n\nNext, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import \nnewt\n repo into your local Go environment.\n\n\nNote\n: The Newt tool requires Go version 1.6 or later. Depending on the Ubuntu version you have, the following may install an
  earlier version. In that case, download the latest package of Go 1.6 from \nhttps://golang.org/dl/\n. You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at \nhttps://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04\n.\n\n\n\n\n\n\n        $ sudo apt-get install golang \n\n\n\n\n\n    \n\n\n3. Create local repository\n\n\n\n\nUse Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.go program to build the \nnewt\n tool. The command \ngo install\n compil
 es and writes the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin. If you get errors it is likely because of path resolution issues. Try \ngo build\n  followed by \ngo install\n in that case.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile and execute it by calling \n$newt\n at the prompt instead of \nnewt\n. E
 ssentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n  
         newt help [\ncommand-name\n]\n            For help on \ncommand-name\n.  If not specified, print this message.\n\n        Available Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug \ntarget\n\n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Execu
 tes unit tests for one or more packages\n          upgrade      Upgrade project dependencies\n          vals         Display valid values for the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default \nWARN\n)\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don\nt output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use \nnewt [command] --help\n for more information about a comma\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the new
 t tool (you can change to a different branch using git checkout [branch] if you need to)\n\n\nThen update each of the tools newt, newtmgr and newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
             "title": "Install Newt on Linux"
         }, 
         {
@@ -297,7 +297,7 @@
         }, 
         {
             "location": "/newt/install/newt_linux/#2-install-go-the-programming-language", 
-            "text": "Go language environment dictates a directory structure. Known in Go parlance as a workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below.     src contains Go source files organized into packages (one package per directory),    pkg contains package objects, and    bin contains executable commands.    The GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the  newt  tool repository.            $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`  (Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)           $ vi ~/.bash_profile\n        $ source ~/.bash_profile   
   Next, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import  newt  repo into your local Go environment.  Note : The Newt tool requires Go version 1.5 or later. It uses the support for \"vendoring\" that was added in Go 1.5. Depending on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.5 or 1.6 from  https://golang.org/dl/ . You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at  https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04 .            $ sudo apt-get install golang", 
+            "text": "Go language environment dictates a directory structure. Known in Go parlance as a workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below.     src contains Go source files organized into packages (one package per directory),    pkg contains package objects, and    bin contains executable commands.    The GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the  newt  tool repository.            $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`  (Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)           $ vi ~/.bash_profile\n        $ source ~/.bash_profile   
   Next, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import  newt  repo into your local Go environment.  Note : The Newt tool requires Go version 1.6 or later. Depending on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.6 from  https://golang.org/dl/ . You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at  https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04 .            $ sudo apt-get install golang", 
             "title": "2. Install Go, the programming language"
         }, 
         {
@@ -307,7 +307,7 @@
         }, 
         {
             "location": "/newt/install/newt_linux/#4-build-the-newt-tool", 
-            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin. If you get errors it is likely because of path resolution issues. Try  go build   followed by  go install  in that case.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.   (Note: If you are going to be modifying the  newt  often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and 
 execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded project based on the Mynewt\n        operating system. Newt provides both build and package management in a\n        single tool, which allows you to compose an embedded workspace, and set\n        of projects, and then build the necessary artifacts from those projects.\n        For more information on the Mynewt operating system, please visit\n        https://www.github.com/mynewt/documentation.\n\n        Please use the newt help command, and specify the name of the command\n        you want help for, for help on how to use a specific command\n\n        Usage:\n         newt [flags]\n        
  newt [command]\n\n        Examples:\n         newt\n         newt help [ command-name ]\n           For help on  command-name .  If not specified, print this message.\n\n\n        Available Commands:\n         version     Display the Newt version number.\n         target      Set and view target information\n         egg         Commands to list and inspect eggs on a nest\n         nest        Commands to manage nests   clutches (remote egg repositories)\n         help        Help about any command\n\n        Flags:\n         -h, --help=false: help for newt\n         -l, --loglevel= WARN : Log level, defaults to WARN.\n         -q, --quiet=false: Be quiet; only display error output.\n         -s, --silent=false: Be silent; don t output anything.\n         -v, --verbose=false: Enable verbose output when executing commands.\n\n\n        Use  newt help [command]  for more information about a command.", 
+            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin. If you get errors it is likely because of path resolution issues. Try  go build   followed by  go install  in that case.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.   (Note: If you are going to be modifying the  newt  often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and 
 execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          n
 ewt [command]\n\n        Examples:\n          newt\n          newt help [ command-name ]\n            For help on  command-name .  If not specified, print this message.\n\n        Available Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug  target \n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure,
  and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade project dependencies\n          vals         Display valid values for the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default  WARN )\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don t output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use  newt [command] --help  for more information about a comma", 
             "title": "4. Build the Newt tool"
         }, 
         {
@@ -432,7 +432,7 @@
         }, 
         {
             "location": "/os/get_started/vocabulary/", 
-            "text": "Concepts\n\n\nThis page is meant to introduce you to some of the concepts inherent to \nthe Apache Mynewt Operating System, and \nNewt\n the tool that stitches a \nproject built on Apache Mynewt together.\n\n\nProject\n\n\nThe project is the base directory of your embedded software tree.  It is a \nworkspace that contains a logical collection of source code, for one or \nmore of your applications.  A project consists of the following items:\n\n\n\n\nProject Definition: defines project level dependencies, and parameters\n    (located in \nproject.yml\n)\n\n\nPackages\n\n\n\n\nPackages\n are described in detail in the section below.  \n\n\nHere is an example project definition file from the default Apache Mynewt \nproject: \n\n\n$ more project.yml \n\nsnip\n\nproject.name: \nmy_project\n\n\nproject.repositories:\n    - apache-mynewt-core\n\n# Use github\ns distribution mechanism for core ASF libraries.\n# This provides mirroring automatically for us.\n#\nrepositor
 y.apache-mynewt-core:\n    type: github\n    vers: 0-latest\n    user: apache\n    repo: incubator-mynewt-core\n$ \n\n\n\n\n\nA couple of things to note in the project definition:\n\n\n\n\n\n\nproject.repositories\n: Defines the remote repositories that this project\nrelies upon.\n\n\n\n\n\n\nrepository.apache-mynewt-core\n: Defines the repository information for \nthe \napache-mynewt-core\n repository.\n\n\n\n\n\n\nvers=0-latest\n: Defines the repository version. This string will use the \nlatest code in the 'Master' github branch. To use the latest version in the \ndevelop branch, just change it to \nvers=0-dev\n\n\n\n\n\n\nRepositories are versioned collections of packages.  \n\n\nProjects can rely on remote repositories for functionality, and the newt tool \nwill resolve those remote repositories, and download the correct version into \nyour local source tree.  Newly fetched repositories are put in the \nrepos\n\ndirectory of your project, and can be referenced throughout the sy
 stem by using\nthe \n@\n specifier.  \n\n\nBy default, the \n@apache-mynewt-core\n repository is included in every \nproject.  Apache Mynewt Core contains all the base functionality of the Apache \nMynewt Operating System, including the Real Time Kernel, Bluetooth Networking \nStack, Flash File System, Console, Shell and Bootloader.\n\n\nNOTE:\n Any project can be converted into a repository by providing it with a \n\nrepository.yml\n file and putting it up onto Github.  More information\nabout repositories can be found in the Newt documentation.\n\n\nPackage\n\n\nA package is a collection items that form a fundamental unit in the Mynewt \nOperating System.  Packages can be:\n\n\n\n\nApplications\n\n\nLibraries\n\n\nCompiler definitions\n\n\nTargets\n\n\n\n\nA package is identified by having a \npkg.yml\n file in it's base \ndirectory.  Here is a sample \npkg.yml\n file for the blinky applicaton:\n\n\n$ more pkg.yml \n\nsnip\n\npkg.name: apps/blinky\npkg.type: app\npkg.description: 
 Basic example application which blinks an LED.\npkg.author: \nApache Mynewt \ndev@mynewt.incubator.apache.org\n\npkg.homepage: \nhttp://mynewt.apache.org/\n\npkg.keywords:\n\npkg.deps:\n    - \n@apache-mynewt-core/libs/os\n\n    - \n@apache-mynewt-core/hw/hal\n\n    - \n@apache-mynewt-core/libs/console/full\n\n\n\n\n\n\nPackages have a few features worth noting:\n\n\n\n\nDependencies: Packages can rely upon other packages, and when they do\n    they will inherit their functionality (header files, library definitions, etc.)\n\n\nAPIs: Packages can export named APIs, and they can require that certain \n    APIs be present, in order to compile.\n\n\nFeatures: Packages can operate differently depending on what named features are \n    present in the system.  Packages can also export features to the rest of the \n    Mynewt system.\n\n\n\n\nEverything that newt knows about within a project's directory is a package.  This \nmakes it very clean and easy to write re-usable components, which
  can describe their \nDependencies and APIs to the rest of the system.\n\n\nTarget\n\n\nA target in Apache Mynewt is very similar to a target in \nmake\n.  It is the collection\nof parameters that must be passed to Newt in order to generate a reproducible build.  A \ntarget represents the top of the build tree, and any packages or parameters specified at \nthe target level, cascade down to all dependencies.\n\n\nTargets are also packages, and are stored in the \ntargets/\n directory at the base \nof your project.  Most targets consist of: \n\n\n\n\napp\n: The application to build.\n\n\nbsp\n: The board support package to combine with that application\n\n\nbuild_profile\n: Either \ndebug\n or \noptimized\n. \n\n\n\n\nTargets can also have additional items specified, including: \n\n\n\n\ncflags\n: Any additional compiler flags you might want to specify to the build.\n\n\nfeatures\n: Any system level features you want to enable.\n\n\n\n\nIn order to create and manipulate targets, the \
 nnewt\n tool offers a set of helper commands,\nyou can find more information about these by issuing:\n\n\n$ newt target\n\n\nUsage:\n  newt target [flags]\n  newt target [command]\n\nAvailable Commands:\n  config      View target system configuration\n  copy        Copy target\n  create      Create a target\n  delete      Delete target\n  set         Set target configuration variable\n  show        View target configuration variables\n\nGlobal Flags:\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse \nnewt target [command] --help\n for more information about a command.\n$ \n\n\n\n\n\nConfiguration\n\n\nThere are a lot of configuration options available when building your application in MyNewt. System Configuration options ar
 e set in \na file called \nsyscfg.yml\n and you will find these configuration files throughout the MyNewt packages. While you can edit these\nfiles directly to change some default settings, it is best to override the default settings in a \nsyscfg.yml\n file in your project\ndirectory rather than editing the package configurations directly.\n\n\nTo see all \nall\n the system configuration settings, simply type\n\n\n$ newt target config \ntarget-name\n\n...\n* PACKAGE: sys/stats\n  * Setting: STATS_CLI\n    * Description: Expose the \nstat\n shell command.\n    * Value: 0\n  * Setting: STATS_NAMES\n    * Description: Include and report the textual name of each statistic.\n    * Value: 0\n  * Setting: STATS_NEWTMGR\n    * Description: Expose the \nstat\n newtmgr command.\n    * Value: 0\n...\n$\n\n\n\n\n\nKeep in mind that this will only show the configuration options for any packages that are included in your applicaiton. \n\n\nIf you really want to see \nall\n the available configur
 ation options, you can go rough each package and look at the\n\nsyscfg.yml\n file in each.", 
+            "text": "Concepts\n\n\nThis page is meant to introduce you to some of the concepts inherent to \nthe Apache Mynewt Operating System, and \nNewt\n the tool that stitches a \nproject built on Apache Mynewt together.\n\n\nProject\n\n\nThe project is the base directory of your embedded software tree.  It is a \nworkspace that contains a logical collection of source code, for one or \nmore of your applications.  A project consists of the following items:\n\n\n\n\nProject Definition: defines project level dependencies, and parameters\n    (located in \nproject.yml\n)\n\n\nPackages\n\n\n\n\nPackages\n are described in detail in the section below.  \n\n\nHere is an example project definition file from the default Apache Mynewt \nproject: \n\n\n$ more project.yml \n\nsnip\n\nproject.name: \nmy_project\n\n\nproject.repositories:\n    - apache-mynewt-core\n\n# Use github\ns distribution mechanism for core ASF libraries.\n# This provides mirroring automatically for us.\n#\nrepositor
 y.apache-mynewt-core:\n    type: github\n    vers: 1-latest\n    user: apache\n    repo: incubator-mynewt-core\n$ \n\n\n\n\n\nA couple of things to note in the project definition:\n\n\n\n\n\n\nproject.repositories\n: Defines the remote repositories that this project\nrelies upon.\n\n\n\n\n\n\nrepository.apache-mynewt-core\n: Defines the repository information for \nthe \napache-mynewt-core\n repository.\n\n\n\n\n\n\nvers=1-latest\n: Defines the repository version. This string will use the \nlatest code in the 'Master' github branch. To use the latest version in the \ndevelop branch, just change it to \nvers=1-dev\n\n\n\n\n\n\nRepositories are versioned collections of packages.  \n\n\nProjects can rely on remote repositories for functionality, and the newt tool \nwill resolve those remote repositories, and download the correct version into \nyour local source tree.  Newly fetched repositories are put in the \nrepos\n\ndirectory of your project, and can be referenced throughout the sy
 stem by using\nthe \n@\n specifier.  \n\n\nBy default, the \n@apache-mynewt-core\n repository is included in every \nproject.  Apache Mynewt Core contains all the base functionality of the Apache \nMynewt Operating System, including the Real Time Kernel, Bluetooth Networking \nStack, Flash File System, Console, Shell and Bootloader.\n\n\nNOTE:\n Any project can be converted into a repository by providing it with a \n\nrepository.yml\n file and putting it up onto Github.  More information\nabout repositories can be found in the Newt documentation.\n\n\nPackage\n\n\nA package is a collection items that form a fundamental unit in the Mynewt \nOperating System.  Packages can be:\n\n\n\n\nApplications\n\n\nLibraries\n\n\nCompiler definitions\n\n\nTargets\n\n\n\n\nA package is identified by having a \npkg.yml\n file in it's base \ndirectory.  Here is a sample \npkg.yml\n file for the blinky applicaton:\n\n\n$ more pkg.yml \n\nsnip\n\npkg.name: apps/blinky\npkg.type: app\npkg.description: 
 Basic example application which blinks an LED.\npkg.author: \nApache Mynewt \ndev@mynewt.incubator.apache.org\n\npkg.homepage: \nhttp://mynewt.apache.org/\n\npkg.keywords:\n\npkg.deps:\n    - \n@apache-mynewt-core/libs/os\n\n    - \n@apache-mynewt-core/hw/hal\n\n    - \n@apache-mynewt-core/libs/console/full\n\n\n\n\n\n\nPackages have a few features worth noting:\n\n\n\n\nDependencies: Packages can rely upon other packages, and when they do\n    they will inherit their functionality (header files, library definitions, etc.)\n\n\nAPIs: Packages can export named APIs, and they can require that certain \n    APIs be present, in order to compile.\n\n\nFeatures: Packages can operate differently depending on what named features are \n    present in the system.  Packages can also export features to the rest of the \n    Mynewt system.\n\n\n\n\nEverything that newt knows about within a project's directory is a package.  This \nmakes it very clean and easy to write re-usable components, which
  can describe their \nDependencies and APIs to the rest of the system.\n\n\nTarget\n\n\nA target in Apache Mynewt is very similar to a target in \nmake\n.  It is the collection\nof parameters that must be passed to Newt in order to generate a reproducible build.  A \ntarget represents the top of the build tree, and any packages or parameters specified at \nthe target level, cascade down to all dependencies.\n\n\nTargets are also packages, and are stored in the \ntargets/\n directory at the base \nof your project.  Most targets consist of: \n\n\n\n\napp\n: The application to build.\n\n\nbsp\n: The board support package to combine with that application\n\n\nbuild_profile\n: Either \ndebug\n or \noptimized\n. \n\n\n\n\nTargets can also have additional items specified, including: \n\n\n\n\ncflags\n: Any additional compiler flags you might want to specify to the build.\n\n\nfeatures\n: Any system level features you want to enable.\n\n\n\n\nIn order to create and manipulate targets, the \
 nnewt\n tool offers a set of helper commands,\nyou can find more information about these by issuing:\n\n\n$ newt target\n\n\nnewt target\nUsage:\n  newt target [flags]\n  newt target [command]\n\nAvailable Commands:\n  config      View or populate a target\ns system configuration\n  copy        Copy target\n  create      Create a target\n  delete      Delete target\n  dep         View target\ns dependency graph\n  revdep      View target\ns reverse-dependency graph\n  set         Set target configuration variable\n  show        View target configuration variables\n\nGlobal Flags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when ex
 ecuting commands\n\nUse \nnewt target [command] --help\n for more information about a command.\n\n$ \n\n\n\n\n\nConfiguration\n\n\nThere are a lot of configuration options available when building your application in MyNewt. System Configuration options are set in \na file called \nsyscfg.yml\n and you will find these configuration files throughout the MyNewt packages. While you can edit these\nfiles directly to change some default settings, it is best to override the default settings in a \nsyscfg.yml\n file in your project\ndirectory rather than editing the package configurations directly.\n\n\nTo see all \nall\n the system configuration settings, simply type\n\n\n$ newt target config show \ntarget-name\n\n...\n* PACKAGE: sys/stats\n  * Setting: STATS_CLI\n    * Description: Expose the \nstat\n shell command.\n    * Value: 0\n  * Setting: STATS_NAMES\n    * Description: Include and report the textual name of each statistic.\n    * Value: 0\n  * Setting: STATS_NEWTMGR\n    * Descrip
 tion: Expose the \nstat\n newtmgr command.\n    * Value: 0\n...\n$\n\n\n\n\n\nKeep in mind that this will only show the configuration options for any packages that are included in your applicaiton. \n\n\nIf you really want to see \nall\n the available configuration options, you can go rough each package and look at the\n\nsyscfg.yml\n file in each.", 
             "title": "Concepts"
         }, 
         {
@@ -442,7 +442,7 @@
         }, 
         {
             "location": "/os/get_started/vocabulary/#project", 
-            "text": "The project is the base directory of your embedded software tree.  It is a \nworkspace that contains a logical collection of source code, for one or \nmore of your applications.  A project consists of the following items:   Project Definition: defines project level dependencies, and parameters\n    (located in  project.yml )  Packages   Packages  are described in detail in the section below.    Here is an example project definition file from the default Apache Mynewt \nproject:   $ more project.yml  snip \nproject.name:  my_project \n\nproject.repositories:\n    - apache-mynewt-core\n\n# Use github s distribution mechanism for core ASF libraries.\n# This provides mirroring automatically for us.\n#\nrepository.apache-mynewt-core:\n    type: github\n    vers: 0-latest\n    user: apache\n    repo: incubator-mynewt-core\n$   A couple of things to note in the project definition:    project.repositories : Defines the remote repositories that this project\nrelies upon.
     repository.apache-mynewt-core : Defines the repository information for \nthe  apache-mynewt-core  repository.    vers=0-latest : Defines the repository version. This string will use the \nlatest code in the 'Master' github branch. To use the latest version in the \ndevelop branch, just change it to  vers=0-dev    Repositories are versioned collections of packages.    Projects can rely on remote repositories for functionality, and the newt tool \nwill resolve those remote repositories, and download the correct version into \nyour local source tree.  Newly fetched repositories are put in the  repos \ndirectory of your project, and can be referenced throughout the system by using\nthe  @  specifier.    By default, the  @apache-mynewt-core  repository is included in every \nproject.  Apache Mynewt Core contains all the base functionality of the Apache \nMynewt Operating System, including the Real Time Kernel, Bluetooth Networking \nStack, Flash File System, Console, Shell and Bootlo
 ader.  NOTE:  Any project can be converted into a repository by providing it with a  repository.yml  file and putting it up onto Github.  More information\nabout repositories can be found in the Newt documentation.", 
+            "text": "The project is the base directory of your embedded software tree.  It is a \nworkspace that contains a logical collection of source code, for one or \nmore of your applications.  A project consists of the following items:   Project Definition: defines project level dependencies, and parameters\n    (located in  project.yml )  Packages   Packages  are described in detail in the section below.    Here is an example project definition file from the default Apache Mynewt \nproject:   $ more project.yml  snip \nproject.name:  my_project \n\nproject.repositories:\n    - apache-mynewt-core\n\n# Use github s distribution mechanism for core ASF libraries.\n# This provides mirroring automatically for us.\n#\nrepository.apache-mynewt-core:\n    type: github\n    vers: 1-latest\n    user: apache\n    repo: incubator-mynewt-core\n$   A couple of things to note in the project definition:    project.repositories : Defines the remote repositories that this project\nrelies upon.
     repository.apache-mynewt-core : Defines the repository information for \nthe  apache-mynewt-core  repository.    vers=1-latest : Defines the repository version. This string will use the \nlatest code in the 'Master' github branch. To use the latest version in the \ndevelop branch, just change it to  vers=1-dev    Repositories are versioned collections of packages.    Projects can rely on remote repositories for functionality, and the newt tool \nwill resolve those remote repositories, and download the correct version into \nyour local source tree.  Newly fetched repositories are put in the  repos \ndirectory of your project, and can be referenced throughout the system by using\nthe  @  specifier.    By default, the  @apache-mynewt-core  repository is included in every \nproject.  Apache Mynewt Core contains all the base functionality of the Apache \nMynewt Operating System, including the Real Time Kernel, Bluetooth Networking \nStack, Flash File System, Console, Shell and Bootlo
 ader.  NOTE:  Any project can be converted into a repository by providing it with a  repository.yml  file and putting it up onto Github.  More information\nabout repositories can be found in the Newt documentation.", 
             "title": "Project"
         }, 
         {
@@ -452,12 +452,12 @@
         }, 
         {
             "location": "/os/get_started/vocabulary/#target", 
-            "text": "A target in Apache Mynewt is very similar to a target in  make .  It is the collection\nof parameters that must be passed to Newt in order to generate a reproducible build.  A \ntarget represents the top of the build tree, and any packages or parameters specified at \nthe target level, cascade down to all dependencies.  Targets are also packages, and are stored in the  targets/  directory at the base \nof your project.  Most targets consist of:    app : The application to build.  bsp : The board support package to combine with that application  build_profile : Either  debug  or  optimized .    Targets can also have additional items specified, including:    cflags : Any additional compiler flags you might want to specify to the build.  features : Any system level features you want to enable.   In order to create and manipulate targets, the  newt  tool offers a set of helper commands,\nyou can find more information about these by issuing:  $ newt target  Usage:\n 
  newt target [flags]\n  newt target [command]\n\nAvailable Commands:\n  config      View target system configuration\n  copy        Copy target\n  create      Create a target\n  delete      Delete target\n  set         Set target configuration variable\n  show        View target configuration variables\n\nGlobal Flags:\n  -l, --loglevel string   Log level (default  WARN )\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don t output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse  newt target [command] --help  for more information about a command.\n$", 
+            "text": "A target in Apache Mynewt is very similar to a target in  make .  It is the collection\nof parameters that must be passed to Newt in order to generate a reproducible build.  A \ntarget represents the top of the build tree, and any packages or parameters specified at \nthe target level, cascade down to all dependencies.  Targets are also packages, and are stored in the  targets/  directory at the base \nof your project.  Most targets consist of:    app : The application to build.  bsp : The board support package to combine with that application  build_profile : Either  debug  or  optimized .    Targets can also have additional items specified, including:    cflags : Any additional compiler flags you might want to specify to the build.  features : Any system level features you want to enable.   In order to create and manipulate targets, the  newt  tool offers a set of helper commands,\nyou can find more information about these by issuing:  $ newt target  newt targ
 et\nUsage:\n  newt target [flags]\n  newt target [command]\n\nAvailable Commands:\n  config      View or populate a target s system configuration\n  copy        Copy target\n  create      Create a target\n  delete      Delete target\n  dep         View target s dependency graph\n  revdep      View target s reverse-dependency graph\n  set         Set target configuration variable\n  show        View target configuration variables\n\nGlobal Flags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default  WARN )\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don t output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse  newt target [command] --help  for more information about a command.\n\n$", 
             "title": "Target"
         }, 
         {
             "location": "/os/get_started/vocabulary/#configuration", 
-            "text": "There are a lot of configuration options available when building your application in MyNewt. System Configuration options are set in \na file called  syscfg.yml  and you will find these configuration files throughout the MyNewt packages. While you can edit these\nfiles directly to change some default settings, it is best to override the default settings in a  syscfg.yml  file in your project\ndirectory rather than editing the package configurations directly.  To see all  all  the system configuration settings, simply type  $ newt target config  target-name \n...\n* PACKAGE: sys/stats\n  * Setting: STATS_CLI\n    * Description: Expose the  stat  shell command.\n    * Value: 0\n  * Setting: STATS_NAMES\n    * Description: Include and report the textual name of each statistic.\n    * Value: 0\n  * Setting: STATS_NEWTMGR\n    * Description: Expose the  stat  newtmgr command.\n    * Value: 0\n...\n$  Keep in mind that this will only show the configuration options for
  any packages that are included in your applicaiton.   If you really want to see  all  the available configuration options, you can go rough each package and look at the syscfg.yml  file in each.", 
+            "text": "There are a lot of configuration options available when building your application in MyNewt. System Configuration options are set in \na file called  syscfg.yml  and you will find these configuration files throughout the MyNewt packages. While you can edit these\nfiles directly to change some default settings, it is best to override the default settings in a  syscfg.yml  file in your project\ndirectory rather than editing the package configurations directly.  To see all  all  the system configuration settings, simply type  $ newt target config show  target-name \n...\n* PACKAGE: sys/stats\n  * Setting: STATS_CLI\n    * Description: Expose the  stat  shell command.\n    * Value: 0\n  * Setting: STATS_NAMES\n    * Description: Include and report the textual name of each statistic.\n    * Value: 0\n  * Setting: STATS_NEWTMGR\n    * Description: Expose the  stat  newtmgr command.\n    * Value: 0\n...\n$  Keep in mind that this will only show the configuration option
 s for any packages that are included in your applicaiton.   If you really want to see  all  the available configuration options, you can go rough each package and look at the syscfg.yml  file in each.", 
             "title": "Configuration"
         }, 
         {
@@ -482,7 +482,7 @@
         }, 
         {
             "location": "/os/tutorials/arduino_zero/", 
-            "text": "Blinky, your \"Hello World!\", on Arduino Zero\n\n\nLearn how to use packages from a default application repository of Mynewt to build your first \nHello World\n application (Blinky) on a target board. Once built using the \nnewt\n tool, this application will blink the LED lights on the target board.\n\n\nThis tutorial describes how to run Mynewt OS on Arduino Zero. Follow these simple steps and your board will be blinking in no time!\n\n\nPrerequisites\n\n\nBefore tackling this tutorial, it's best to read about Mynewt in the \nIntroduction\n section of this documentation.\n\n\nEquipment\n\n\nYou will need the following equipment\n\n\n\n\nAn Arduino Zero board.  NOTE: There are many flavors of Arduino. Ensure that\nyou have an Arduino Zero. See below for the versions of Arduino Zero that are\ncompatible with this tutorial\n\n\nA computer that can connect to the Arduino Zero over USB\n\n\nA USB cable (Type A to micro B) that can connect the computer to the Arduin
 o\n\n\nThe Mynewt Release\n\n\n\n\nThis tutorial has been tested on the following three Arduino Zero boards - Zero, M0 Pro, and Zero-Pro.\n\n\n\n\n\n\n\n\nMynewt has not been tested on Arduino M0 which has no internal debugger support.\n\n\nInstall Mynewt and Newt\n\n\n\n\nIf you have not already done so, install Newt as shown in the \nNewt install tutorial\n\n\nIf you have not already done so, create a project as shown in the Quick Start guide on how to \nCreate Your First Project\n. Skip the testing and building the project steps in that tutorial since you will be defining a target for your Arduino board in this tutorial.\n\n\n\n\n\n\nFetch External Packages\n\n\nMynewt uses source code provided directly from the chip manufacturer for\nlow level operations. Sometimes this code is licensed only for the specific manufacturer of the chipset and cannot live in the Apache Mynewt repository. That happens to be the case for the Arduino Zero board which uses Atmel SAMD21. Runtime's github
  repository hosts such external third-party packages and the Newt tool can fetch them.\n\n\nTo fetch the package with MCU support for Atmel SAMD21 for Arduino Zero from the Runtime git repository, you need to add\nthe repository to the \nproject.yml\n file in your base project directory.\n\n\nHere is an example \nproject.yml\n file with the Arduino Zero repository\nadded. The sections with \nmynewt_arduino_zero\n that need to be added to\nyour project file are highlighted.\n\n\n$ more project.yml\nproject.name: \nmy_project\n\n\nproject.repositories:\n    - apache-mynewt-core\n\n    - mynewt_arduino_zero\n\n\nrepository.apache-mynewt-core:\n    type: github\n    vers: 0-latest\n    user: apache\n    repo: incubator-mynewt-core\n\n\nrepository.mynewt_arduino_zero:\n\n    type: github\n\n    vers: 0-latest\n\n    user: runtimeinc\n\n    repo: mynewt_arduino_zero\n\n$\n\n\n\n\n\n\n\nOnce you've edited your \nproject.yml\n file, the next step is to install the\nproject dependencies, thi
 s can be done with the \nnewt install\n command\n(to see more output, provide the \n-v\n verbose option.):\n\n\n$ newt install\napache-mynewt-core\nmynewt_arduino_zero\n$\n\n\n\n\n\n\n\nNOTE:\n If there has been a new release of a repo used in your project since you last installed it, the \n0-latest\n version for the repo in the \nproject.yml\n file will refer to the new release and will not match the installed files. In that case you will get an error message saying so and you will need to run \nnewt upgrade\n to overwrite the existing files with the latest codebase.\n\n\n\n\nCreate your bootloader target\n\n\nNext, you need to tell Newt what to build.  For the Arduino Zero, we are going to\ngenerate both a bootloader, and an image target.\n\n\nTo generate the bootloader target, you need to specify the following options. The output of the commands (indicating success) have been suppressed for easier readability.\n\n\n$ newt target create arduino_boot\n$ newt target set arduino_boot
  bsp=@mynewt_arduino_zero/hw/bsp/arduino_zero\nTarget targets/arduino_boot successfully created\n$ newt target set arduino_boot app=@apache-mynewt-core/apps/boot\nTarget targets/arduino_boot successfully set target.app to @apache-mynewt-core/apps/boot\n$ newt target set arduino_boot build_profile=optimized\nTarget targets/arduino_boot successfully set target.build_profile to optimized\n$ newt target set arduino_boot syscfg=BSP_ARDUINO_ZERO_PRO=1\nTarget targets/arduino_boot successfully set target.syscfg to BSP_ARDUINO_ZERO_PRO=1\n\n\n\n\n\n\n\nThese commands do a few things:\n\n\n\n\nCreate a target named \narduino_boot\n, in order to build the Arduino Zero Bootloader.\n\n\nSet the application for the \narduino_boot\n target to the default Apache Mynewt\n    bootloader (\n@apache-mynewt-core/apps/boot\n)\n\n\nSet the board support package for the target to\n    \n@mynewt_arduino_zero/hw/bsp/arduino_zero\n.  This is a reference to the downloaded\n    Arduino Zero support from Github
 .\n\n\nUse the \"optimized\" build profile for the \narduino_boot\n target.  This\n    instructs Newt to generate smaller and more efficient code for this target.\n    This setting is necessary due to the bootloader's strict size constraints.\n\n\nTells the Board Support Package to enable support for the Arduino Zero Pro or the Arduino Zero. Set it to \narduino_zero\n or \narduino_zero_pro\n depending on the board you have.\n\n\n\n\n\n\nIf you'd rather, you can also take care of that last part by editing the \nsyscfg.yml\n file \nfor the target to set options -- at least one that is \nrequired\n.\nLook in the directory for the target, as defined by the target (in this case \ntargets/arduino_boot\n)\nand edit the syscfg.yml file. It should look like this when you're done:\n\n\n### Package: targets/arduino_boot\n\nsyscfg.vals:\n    BSP_ARDUINO_ZERO_PRO: 1\n\n\n\n\n\nIf you have an Arduino Zero Pro or M0 Pro, you'll want \nBSP_ARDUINO_ZEZRO_PRO: 1\n. If you have the Arduino Zero, \nyou
 'll want \nBSP_ARDUINO_ZERO: 1\n instead.\n\n\nFor more information on setting options, see the section on \nConcepts\n.\n\n\nFor now, we're not going to set any more options or enable any more features of Mynewt OS.\n\n\n\n\nBuild your bootloader\n\n\nOnce you've configured the bootloader target, the next step is to build the bootloader for your Arduino. You can do this by using the \nnewt build\n command:\n\n\n$ newt build arduino_boot\nCompiling asprintf.c\nCompiling atoi.c\nCompiling atol.c\nCompiling atoll.c\nCompiling bsearch.c\nCompiling bzero.c\nCompiling calloc.c\nCompiling fgets.c\nCompiling inline.c\n\nsnip\n\nApp successfully built: myproject/bin/arduino_boot/apps/boot/boot.elf\n\n\n\n\n\nIf this command finishes successfully, you have successfully built the Arduino\nbootloader, and the next step is to build your application for the Arduino\nboard.\n\n\n\n\nBuild your blinky app\n\n\nTo create and download your application, you create another target, this one pointing to
  the application you want to download to the Arduino board.\n\nIn this tutorial,  we will use the default application that comes with your project, \napps/blinky\n:\n\n\nNote\n: Remember to set features to \narduino_zero\n if your board is Arduino Zero and not a Pro!\n\n\n$ newt target create arduino_blinky\nTarget targets/arduino_blinky successfully created\n$ newt target set arduino_blinky app=apps/blinky\nTarget targets/arduino_blinky successfully set target.app to apps/blinky\n$ newt target set arduino_blinky bsp=@mynewt_arduino_zero/hw/bsp/arduino_zero\nTarget targets/arduino_blinky successfully set target.bsp to @mynewt_arduino_zero/hw/bsp/arduino_zero\n$ newt target set arduino_blinky build_profile=debug\nTarget targets/arduino_blinky successfully set target.build_profile to debug\n\n$ newt target set arduino_blinky features=arduino_zero_pro\n\nTarget targets/arduino_blinky successfully set pkg.features to arduino_zero_pro\n$\n\n\n\n\n\n\n\nYou can now build the target, with 
 \nnewt build\n:\n\n\n$ newt build arduino_blinky\nCompiling main.c\nArchiving blinky.a\nCompiling cons_fmt.c\nCompiling cons_tty.c\nArchiving full.a\nCompiling case.c\nCompiling suite.c\nCompiling testutil.c\nArchiving testutil.a\n\nsnip\n\nApp successfully built: myproject/bin/arduino_blinky/apps/blinky/blinky.elf\n\n\n\n\n\n Congratulations! \n You have successfully built your application. Now it's time to load both the bootloader and application onto the target.\n\n\n\n\nConnect the Target\n\n\nConnect your computer to the Arduino Zero (from now on we'll call this the\ntarget) with the Micro-USB cable through the Programming Port as shown below.\nMynewt will download and debug the target through this port. You should see a\nlittle green LED come on. That means the board has power.\n\n\nNo external debugger is required.  The Arduino Zero comes with an internal\ndebugger that can be accessed by Mynewt.\n\n\nA image below shows the Arduino Zero Programming Port.\n\n\n\n\n\n\n\n\nDow
 nload the Bootloader\n\n\nExecute the command to download the bootloader.\n\n\n    \n$\n \nnewt\n \nload\n \narduino_boot\n\n\n\n\n\n\nIf the newt tool finishes without error, that means the bootloader has been\nsuccessfully loaded onto the target.\n\n\nIf, on the other hand, you get errors like the following:\n\n\n$ newt load arduino_boot -v\nLoading bootloader\nError: Downloading ~/dev/arduino_zero/bin/targets/arduino_boot/app/apps/boot/boot.elf.bin to 0x0\nOpen On-Chip Debugger 0.9.0 (2015-11-15-05:39)\nLicensed under GNU GPL v2\nFor bug reports, read\n    http://openocd.org/doc/doxygen/bugs.html\nInfo : only one transport option; autoselect \nswd\n\nadapter speed: 500 kHz\nadapter_nsrst_delay: 100\ncortex_m reset_config sysresetreq\nInfo : CMSIS-DAP: SWD  Supported\nInfo : CMSIS-DAP: JTAG Supported\nInfo : CMSIS-DAP: Interface Initialised (SWD)\nInfo : CMSIS-DAP: FW Version = 01.1F.0118\nInfo : SWCLK/TCK = 1 SWDIO/TMS = 1 TDI = 1 TDO = 1 nTRST = 0 nRESET = 1\nInfo : CMSIS-DAP: I
 nterface ready\nInfo : clock speed 500 kHz\nInfo : SWD IDCODE 0x0bc11477\nInfo : at91samd21g18.cpu: hardware has 4 breakpoints, 2 watchpoints\nError: Target not halted\n\n\n\n\n\nThen you'll need to erase your board first before downloading the \narduino_boot\n application. Here's how you do that using gdb,\nthe GNU Debugger. \n\n\n$ newt debug arduino_blinky\n\n(gdb) mon at91samd chip-erase\nchip erased\nchip erased\n(gdb) x/32wx 0\n0x0:    0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x10:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x20:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x30:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x40:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x50:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x60:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x70:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n(gdb) q\n\n\n\n\n\nOnce the chip is erased, go back and download the \narduino_boot\n image to the board as abo
 ve. \n\n\n\n\n Reminder if you are using Docker: \n When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like \nError: unable to find CMSIS-DAP device\n when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.\n\n\n\n\nRun the Image\n\n\nNow that the bootloader is downloaded to the target, the next step is to load\nyour image onto the Arduino Zero.  The easiest way to do this, is to use the\n\nnewt run\n command.  \nnewt run\n will automatically rebuild your program\n(if necessary), crea
 te an image, and load it onto the target device.\n\n\nHere, we will load our \narduino_blinky\n target onto the device, and we\nshould see it run:\n\n\n$ newt run arduino_blinky 0.0.0\nDebugging myproject/bin/arduino_blinky/apps/blinky/blinky.elf\nOpen On-Chip Debugger 0.9.0 (2015-09-23-21:46)\nLicensed under GNU GPL v2\nFor bug reports, read\n    http://openocd.org/doc/doxygen/bugs.html\nInfo : only one transport option; autoselect \nswd\n\nadapter speed: 500 kHz\nadapter_nsrst_delay: 100\ncortex_m reset_config sysresetreq\nInfo : CMSIS-DAP: SWD  Supported\nInfo : CMSIS-DAP: JTAG Supported\nInfo : CMSIS-DAP: Interface Initialised (SWD)\nInfo : CMSIS-DAP: FW Version = 01.1F.0118\nInfo : SWCLK/TCK = 1 SWDIO/TMS = 1 TDI = 1 TDO = 1 nTRST = 0 nRESET = 1\nInfo : CMSIS-DAP: Interface ready\nInfo : clock speed 500 kHz\nInfo : SWD IDCODE 0x0bc11477\nInfo : at91samd21g18.cpu: hardware has 4 breakpoints, 2 watchpoints\nGNU gdb (GNU Tools for ARM Embedded Processors) 7.8.0.20150604-cvs\nCopyr
 ight (C) 2014 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL version 3 or later \nhttp://gnu.org/licenses/gpl.html\n\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.  Type \nshow copying\n\nand \nshow warranty\n for details.\nThis GDB was configured as \n--host=x86_64-apple-darwin10 --target=arm-none-eabi\n.\nType \nshow configuration\n for configuration details.\nFor bug reporting instructions, please see:\n\nhttp://www.gnu.org/software/gdb/bugs/\n.\nFind the GDB manual and other documentation resources online at:\n\nhttp://www.gnu.org/software/gdb/documentation/\n.\nFor help, type \nhelp\n.\nType \napropos word\n to search for commands related to \nword\n...\nReading symbols from myproject/bin/arduino_blinky/apps/blinky/blinky.elf...done.\ntarget state: halted\ntarget halted due to debug-request, current mode: Thread\nxPSR: 0x21000000 pc: 0x0000030e msp: 0x20008000\nInfo : accepting \ngdb\n connecti
 on on tcp/3333\nInfo : SAMD MCU: SAMD21G18A (256KB Flash, 32KB RAM)\n0x0000030e in ?? ()\n(gdb) r\nThe \nremote\n target does not support \nrun\n.  Try \nhelp target\n or \ncontinue\n.\n(gdb) c\nContinuing.\n\n\n\n\n\n\n\nNOTE:\n The 0.0.0 specified after the target name to \nnewt run\n is the version\nof the image to load.  If you are not providing remote upgrade, and are just\ndeveloping locally, you can provide 0.0.0 for every image version.\n\n\nIf you want the image to run without the debugger connected, simply quit the\ndebugger and restart the board.  The image you programmed will come up and run on \nthe Arduino on the next boot!  \n\n\n\n\nWatch the LED blink\n\n\nCongratulations! You have created a Mynewt operating system running on the\nArduino Zero. The LED right next to the power LED should be blinking. It is toggled \nby one task running on the Mynewt OS.   \n\n\nWe have more fun tutorials for you to get your hands dirty. Be bold and try other \nBlinky-like \ntutorials
 \n or try enabling additional functionality \nsuch as \nremote comms\n on the current board.\n\n\nIf you see anything missing or want to send us feedback, please do so by signing up for \nappropriate mailing lists on our \nCommunity Page\n.\n\n\nKeep on hacking and blinking!", 
+            "text": "Blinky, your \"Hello World!\", on Arduino Zero\n\n\nLearn how to use packages from a default application repository of Mynewt to build your first \nHello World\n application (Blinky) on a target board. Once built using the \nnewt\n tool, this application will blink the LED lights on the target board.\n\n\nThis tutorial describes how to run Mynewt OS on Arduino Zero. Follow these simple steps and your board will be blinking in no time!\n\n\nPrerequisites\n\n\nEnsure that you have met the following prerequisites before continuing with this tutorial:\n\n\n\n\nHave an Arduino Zero board.\n\nNote: There are many flavors of Arduino. Make sure you are using an Arduino Zero. See below for the versions of Arduino Zero that are compatible with this tutorial.\n\n\nHave Internet connectivity to fetch remote Mynewt components.\n\n\nHave a Micro-USB cable to connect the board and the computer.\n\n\nHave a computer to build a Mynewt application and connect to your board over U
 SB.\n\n\nInstall the Newt tool and toolchains (See \nBasic Setup\n).\n\n\nCreate a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in \nCreating Your First Project\n.\n\n\nRead the Mynewt OS \nConcepts\n section. \n\n\n\n\nThis tutorial has been tested on the following three Arduino Zero boards - Zero, M0 Pro, and Zero-Pro.\n\n\n\n\n\n\n\n\nMynewt has not been tested on Arduino M0 which has no internal debugger support.\n\n\n\n\nCreate a Project\n\n\nCreate a new project if you do not have an existing one.  You can skip this step and proceed to \nfetch external packages\n if you already created a project.  \n\n\nRun the following commands to create a new project: \n\n\n    $ mkdir ~/dev\n    $ cd ~/dev\n    $ newt new myproj\n    Downloading project skeleton from apache/incubator-mynewt-blinky...\n    Installing skeleton in myproj...\n    Project myproj successfully created.\n    $ cd myproj\n    $ n
 ewt install\n    apache-mynewt-core\n    $\n\n\n\n\n\n\n\n Fetch External Packages\n\n\nMynewt uses source code provided directly from the chip manufacturer for\nlow level operations. Sometimes this code is licensed only for the specific manufacturer of the chipset and cannot live in the Apache Mynewt repository. That happens to be the case for the Arduino Zero board which uses Atmel SAM

<TRUNCATED>


[11/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
Closes PR 163 and 164. Updates events and BSPs supported.


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

Branch: refs/heads/asf-site
Commit: c1a9e073b9c7b1cbc0b82c28e069306fa52d77ad
Parents: 306578b
Author: aditihilbert <ad...@runtime.io>
Authored: Fri Mar 24 23:24:34 2017 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Fri Mar 24 23:24:34 2017 -0700

----------------------------------------------------------------------
 develop/index.html                              |  17 +-
 develop/landing.html                            |  17 +-
 develop/mkdocs/search_index.json                | 366 +++-------
 develop/newt/install/newt_linux/index.html      |  69 +-
 develop/newt/install/newt_mac/index.html        |  67 +-
 .../command_list/newtmgr_conn/index.html        |   2 +-
 .../command_list/newtmgr_crash/index.html       |   2 +-
 develop/os/core_os/callout/callout/index.html   |  11 -
 .../callout/os_callout_func_init/index.html     |  11 -
 .../core_os/callout/os_callout_init/index.html  |  11 -
 .../callout/os_callout_queued/index.html        |  11 -
 .../core_os/callout/os_callout_reset/index.html |  11 -
 .../core_os/callout/os_callout_stop/index.html  |  11 -
 .../context_switch/context_switch/index.html    |  11 -
 .../context_switch/os_arch_ctx_sw/index.html    |  11 -
 .../core_os/context_switch/os_sched/index.html  |  11 -
 .../os_sched_ctx_sw_hook/index.html             |  11 -
 .../os_sched_get_current_task/index.html        |  11 -
 .../context_switch/os_sched_insert/index.html   |  11 -
 .../os_sched_next_task/index.html               |  11 -
 .../os_sched_os_timer_exp/index.html            |  11 -
 .../context_switch/os_sched_resort/index.html   |  11 -
 .../os_sched_set_current_task/index.html        |  11 -
 .../context_switch/os_sched_sleep/index.html    |  11 -
 .../context_switch/os_sched_wakeup/index.html   |  11 -
 .../core_os/event_queue/event_queue/index.html  |  11 -
 .../event_queue/os_eventq_designate/index.html  |  11 -
 .../event_queue/os_eventq_dflt_get/index.html   |  11 -
 .../event_queue/os_eventq_get/index.html        |  11 -
 .../event_queue/os_eventq_init/index.html       |  11 -
 .../event_queue/os_eventq_inited/index.html     |  11 -
 .../event_queue/os_eventq_put/index.html        |  11 -
 .../event_queue/os_eventq_remove/index.html     |  11 -
 .../event_queue/os_eventq_run/index.html        |  11 -
 develop/os/core_os/heap/heap/index.html         |  11 -
 develop/os/core_os/heap/os_free/index.html      |  11 -
 develop/os/core_os/heap/os_malloc/index.html    |  11 -
 develop/os/core_os/heap/os_realloc/index.html   |  11 -
 develop/os/core_os/mbuf/OS_MBUF_DATA/index.html |  11 -
 .../mbuf/OS_MBUF_LEADINGSPACE/index.html        |  11 -
 .../os/core_os/mbuf/OS_MBUF_PKTHDR/index.html   |  11 -
 .../mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html      |  11 -
 .../os/core_os/mbuf/OS_MBUF_PKTLEN/index.html   |  11 -
 .../mbuf/OS_MBUF_TRAILINGSPACE/index.html       |  11 -
 .../os/core_os/mbuf/OS_MBUF_USRHDR/index.html   |  11 -
 .../core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html  |  11 -
 develop/os/core_os/mbuf/mbuf/index.html         |  11 -
 develop/os/core_os/mbuf/os_mbuf_adj/index.html  |  11 -
 .../os/core_os/mbuf/os_mbuf_append/index.html   |  11 -
 .../os/core_os/mbuf/os_mbuf_concat/index.html   |  11 -
 .../os/core_os/mbuf/os_mbuf_copydata/index.html |  11 -
 .../os/core_os/mbuf/os_mbuf_copyinto/index.html |  11 -
 develop/os/core_os/mbuf/os_mbuf_dup/index.html  |  11 -
 .../os/core_os/mbuf/os_mbuf_extend/index.html   |  11 -
 .../core_os/mbuf/os_mbuf_free_chain/index.html  |  11 -
 develop/os/core_os/mbuf/os_mbuf_get/index.html  |  11 -
 .../core_os/mbuf/os_mbuf_get_pkthdr/index.html  |  11 -
 .../os/core_os/mbuf/os_mbuf_memcmp/index.html   |  11 -
 develop/os/core_os/mbuf/os_mbuf_off/index.html  |  11 -
 .../core_os/mbuf/os_mbuf_pool_init/index.html   |  11 -
 .../os/core_os/mbuf/os_mbuf_prepend/index.html  |  11 -
 .../os/core_os/mbuf/os_mbuf_pullup/index.html   |  11 -
 .../memory_pool/OS_MEMPOOL_BYTES/index.html     |  11 -
 .../memory_pool/OS_MEMPOOL_SIZE/index.html      |  11 -
 .../core_os/memory_pool/memory_pool/index.html  |  11 -
 .../memory_pool/os_memblock_get/index.html      |  11 -
 .../memory_pool/os_memblock_put/index.html      |  11 -
 .../memory_pool/os_mempool_init/index.html      |  11 -
 develop/os/core_os/mqueue/mqueue/index.html     |  11 -
 .../os/core_os/mqueue/os_mqueue_get/index.html  |  11 -
 .../os/core_os/mqueue/os_mqueue_init/index.html |  11 -
 .../os/core_os/mqueue/os_mqueue_put/index.html  |  11 -
 develop/os/core_os/msys/msys/index.html         |  11 -
 develop/os/core_os/msys/os_msys_get/index.html  |  11 -
 .../core_os/msys/os_msys_get_pkthdr/index.html  |  11 -
 .../os/core_os/msys/os_msys_register/index.html |  11 -
 .../os/core_os/msys/os_msys_reset/index.html    |  11 -
 develop/os/core_os/mutex/mutex/index.html       |  11 -
 .../os/core_os/mutex/os_mutex_init/index.html   |  11 -
 .../os/core_os/mutex/os_mutex_pend/index.html   |  11 -
 .../core_os/mutex/os_mutex_release/index.html   |  11 -
 develop/os/core_os/mynewt_os/index.html         |  11 -
 develop/os/core_os/os_started/index.html        |  11 -
 develop/os/core_os/porting/port_bsp/index.html  |  11 -
 develop/os/core_os/porting/port_cpu/index.html  |  11 -
 develop/os/core_os/porting/port_mcu/index.html  |  11 -
 develop/os/core_os/porting/port_os/index.html   |  11 -
 .../sanity/os_sanity_check_init/index.html      |  11 -
 .../sanity/os_sanity_check_register/index.html  |  11 -
 .../sanity/os_sanity_check_reset/index.html     |  11 -
 .../sanity/os_sanity_task_checkin/index.html    |  11 -
 .../sanity/os_sanity_task_init/index.html       |  11 -
 develop/os/core_os/sanity/sanity/index.html     |  11 -
 .../os/core_os/semaphore/os_sem_init/index.html |  11 -
 .../os/core_os/semaphore/os_sem_pend/index.html |  11 -
 .../core_os/semaphore/os_sem_release/index.html |  11 -
 .../os/core_os/semaphore/semaphore/index.html   |  11 -
 .../os/core_os/task/os_task_count/index.html    |  11 -
 .../task/os_task_info_get_next/index.html       |  11 -
 develop/os/core_os/task/os_task_init/index.html |  11 -
 develop/os/core_os/task/task/index.html         |  11 -
 .../os/core_os/time/os_gettimeofday/index.html  |  11 -
 .../os/core_os/time/os_settimeofday/index.html  |  11 -
 develop/os/core_os/time/os_time/index.html      |  11 -
 .../os/core_os/time/os_time_delay/index.html    |  11 -
 develop/os/core_os/time/os_time_get/index.html  |  11 -
 develop/os/core_os/time/os_time_tick/index.html |  11 -
 develop/os/get_started/vocabulary/index.html    |  18 +-
 develop/os/modules/baselibc/index.html          |  15 +-
 .../bootloader/boot_build_status/index.html     |  11 -
 .../bootloader/boot_build_status_one/index.html |  11 -
 .../bootloader/boot_clear_status/index.html     |  11 -
 .../bootloader/boot_copy_area/index.html        |  11 -
 .../bootloader/boot_copy_image/index.html       |  11 -
 .../bootloader/boot_erase_area/index.html       |  11 -
 .../bootloader/boot_fill_slot/index.html        |  11 -
 .../boot_find_image_area_idx/index.html         |  11 -
 .../bootloader/boot_find_image_part/index.html  |  11 -
 .../bootloader/boot_find_image_slot/index.html  |  11 -
 .../os/modules/bootloader/boot_go/index.html    |  11 -
 .../bootloader/boot_init_flash/index.html       |  11 -
 .../bootloader/boot_move_area/index.html        |  11 -
 .../boot_read_image_header/index.html           |  11 -
 .../boot_read_image_headers/index.html          |  11 -
 .../bootloader/boot_read_status/index.html      |  11 -
 .../boot_select_image_slot/index.html           |  11 -
 .../bootloader/boot_slot_addr/index.html        |  11 -
 .../bootloader/boot_slot_to_area_idx/index.html |  11 -
 .../bootloader/boot_swap_areas/index.html       |  11 -
 .../bootloader/boot_vect_delete_main/index.html |  11 -
 .../bootloader/boot_vect_delete_test/index.html |  11 -
 .../bootloader/boot_vect_read_main/index.html   |  11 -
 .../bootloader/boot_vect_read_one/index.html    |  11 -
 .../bootloader/boot_vect_read_test/index.html   |  11 -
 .../bootloader/boot_write_status/index.html     |  11 -
 .../os/modules/bootloader/bootloader/index.html |  11 -
 develop/os/modules/console/console/index.html   |  11 -
 .../console/console_blocking_mode/index.html    |  11 -
 .../os/modules/console/console_echo/index.html  |  11 -
 .../os/modules/console/console_init/index.html  |  11 -
 .../modules/console/console_is_init/index.html  |  11 -
 .../modules/console/console_printf/index.html   |  11 -
 .../os/modules/console/console_read/index.html  |  11 -
 .../os/modules/console/console_write/index.html |  11 -
 .../devmgmt/customize_newtmgr/index.html        |  11 -
 develop/os/modules/devmgmt/newtmgr/index.html   |  11 -
 develop/os/modules/devmgmt/oicmgr/index.html    |  11 -
 develop/os/modules/drivers/driver/index.html    |  11 -
 develop/os/modules/drivers/flash/index.html     |  11 -
 develop/os/modules/drivers/mmc/index.html       |  11 -
 develop/os/modules/elua/elua/index.html         | 638 ------------------
 develop/os/modules/elua/lua_init/index.html     | 657 ------------------
 develop/os/modules/elua/lua_main/index.html     | 670 -------------------
 develop/os/modules/fcb/fcb/index.html           |  11 -
 develop/os/modules/fcb/fcb_append/index.html    |  11 -
 .../os/modules/fcb/fcb_append_finish/index.html |  11 -
 .../fcb/fcb_append_to_scratch/index.html        |  11 -
 develop/os/modules/fcb/fcb_clear/index.html     |  11 -
 develop/os/modules/fcb/fcb_getnext/index.html   |  11 -
 develop/os/modules/fcb/fcb_init/index.html      |  11 -
 develop/os/modules/fcb/fcb_is_empty/index.html  |  11 -
 .../os/modules/fcb/fcb_offset_last_n/index.html |  11 -
 develop/os/modules/fcb/fcb_rotate/index.html    |  11 -
 develop/os/modules/fcb/fcb_walk/index.html      |  11 -
 develop/os/modules/fs/fatfs/index.html          |  11 -
 develop/os/modules/fs/fs/fs/index.html          |  11 -
 develop/os/modules/fs/fs/fs_close/index.html    |  11 -
 develop/os/modules/fs/fs/fs_closedir/index.html |  11 -
 .../modules/fs/fs/fs_dirent_is_dir/index.html   |  11 -
 .../os/modules/fs/fs/fs_dirent_name/index.html  |  11 -
 develop/os/modules/fs/fs/fs_filelen/index.html  |  11 -
 develop/os/modules/fs/fs/fs_getpos/index.html   |  11 -
 develop/os/modules/fs/fs/fs_mkdir/index.html    |  11 -
 develop/os/modules/fs/fs/fs_open/index.html     |  11 -
 develop/os/modules/fs/fs/fs_opendir/index.html  |  11 -
 develop/os/modules/fs/fs/fs_ops/index.html      |  11 -
 develop/os/modules/fs/fs/fs_read/index.html     |  11 -
 develop/os/modules/fs/fs/fs_readdir/index.html  |  11 -
 develop/os/modules/fs/fs/fs_register/index.html |  11 -
 develop/os/modules/fs/fs/fs_rename/index.html   |  11 -
 .../os/modules/fs/fs/fs_return_codes/index.html |  11 -
 develop/os/modules/fs/fs/fs_seek/index.html     |  11 -
 develop/os/modules/fs/fs/fs_unlink/index.html   |  11 -
 develop/os/modules/fs/fs/fs_write/index.html    |  11 -
 .../modules/fs/fs/fsutil_read_file/index.html   |  11 -
 .../modules/fs/fs/fsutil_write_file/index.html  |  11 -
 develop/os/modules/fs/nffs/nffs/index.html      |  11 -
 .../modules/fs/nffs/nffs_area_desc/index.html   |  11 -
 .../os/modules/fs/nffs/nffs_config/index.html   |  11 -
 .../os/modules/fs/nffs/nffs_detect/index.html   |  11 -
 .../os/modules/fs/nffs/nffs_format/index.html   |  11 -
 develop/os/modules/fs/nffs/nffs_init/index.html |  11 -
 .../modules/fs/nffs/nffs_internals/index.html   |  11 -
 develop/os/modules/fs/otherfs/index.html        |  11 -
 develop/os/modules/hal/hal/index.html           |  11 -
 develop/os/modules/hal/hal_api/index.html       |  11 -
 .../os/modules/hal/hal_bsp/hal_bsp/index.html   |  11 -
 develop/os/modules/hal/hal_creation/index.html  |  11 -
 .../modules/hal/hal_flash/hal_flash/index.html  |  11 -
 .../hal/hal_flash/hal_flash_int/index.html      |  11 -
 .../os/modules/hal/hal_gpio/hal_gpio/index.html |  11 -
 .../os/modules/hal/hal_i2c/hal_i2c/index.html   |  11 -
 .../os/modules/hal/hal_in_libraries/index.html  |  11 -
 .../hal/hal_os_tick/hal_os_tick/index.html      |  11 -
 .../os/modules/hal/hal_spi/hal_spi/index.html   |  11 -
 .../modules/hal/hal_system/hal_sys/index.html   |  11 -
 .../modules/hal/hal_timer/hal_timer/index.html  |  11 -
 .../os/modules/hal/hal_uart/hal_uart/index.html |  11 -
 .../hal/hal_watchdog/hal_watchdog/index.html    |  11 -
 develop/os/modules/imgmgr/imgmgr/index.html     |  11 -
 .../os/modules/imgmgr/imgr_ver_parse/index.html |  11 -
 .../os/modules/imgmgr/imgr_ver_str/index.html   |  11 -
 develop/os/modules/json/json/index.html         |  15 +-
 .../json/json_encode_object_entry/index.html    |  11 -
 .../json/json_encode_object_finish/index.html   |  11 -
 .../json/json_encode_object_key/index.html      |  11 -
 .../json/json_encode_object_start/index.html    |  11 -
 .../os/modules/json/json_read_object/index.html |  11 -
 develop/os/modules/logs/logs/index.html         |  11 -
 develop/os/modules/shell/shell/index.html       |  11 -
 .../modules/shell/shell_cmd_register/index.html |  11 -
 .../os/modules/shell/shell_evq_set/index.html   |  11 -
 .../shell/shell_nlip_input_register/index.html  |  11 -
 .../modules/shell/shell_nlip_output/index.html  |  11 -
 develop/os/modules/split/split/index.html       |  11 -
 develop/os/modules/stats/stats/index.html       |  11 -
 .../sysinitconfig/sysconfig_error/index.html    |  11 -
 .../sysinitconfig/sysinitconfig/index.html      |  11 -
 .../os/modules/testutil/test_assert/index.html  |  11 -
 .../os/modules/testutil/test_case/index.html    |  11 -
 .../os/modules/testutil/test_decl/index.html    |  11 -
 .../os/modules/testutil/test_pass/index.html    |  11 -
 .../os/modules/testutil/test_suite/index.html   |  11 -
 develop/os/modules/testutil/testutil/index.html |  11 -
 develop/os/modules/testutil/tu_init/index.html  |  11 -
 .../os/modules/testutil/tu_restart/index.html   |  11 -
 develop/os/os_user_guide/index.html             |  11 -
 develop/os/tutorials/STM32F303/index.html       |  13 -
 develop/os/tutorials/add_newtmgr/index.html     |  13 -
 develop/os/tutorials/add_shell/index.html       |  13 -
 develop/os/tutorials/air_quality_ble/index.html |  13 -
 .../os/tutorials/air_quality_sensor/index.html  |  13 -
 develop/os/tutorials/arduino_zero/index.html    | 264 ++++----
 develop/os/tutorials/blehci_project/index.html  |  13 -
 .../os/tutorials/bleprph/bleprph-adv/index.html |  13 -
 .../os/tutorials/bleprph/bleprph-app/index.html |  15 +-
 .../bleprph/bleprph-chr-access/index.html       |  13 -
 .../bleprph/bleprph-gap-event/index.html        |  13 -
 .../tutorials/bleprph/bleprph-intro/index.html  |  13 -
 .../bleprph/bleprph-svc-reg/index.html          |  13 -
 develop/os/tutorials/bletiny_project/index.html |  13 -
 develop/os/tutorials/blinky_console/index.html  |  13 -
 develop/os/tutorials/blinky_primo/index.html    | 160 +++--
 .../os/tutorials/blinky_sram_olimex/index.html  |  13 -
 develop/os/tutorials/eddystone/index.html       |  13 -
 develop/os/tutorials/event_queue/index.html     |  17 +-
 develop/os/tutorials/ibeacon/index.html         |  13 -
 develop/os/tutorials/nRF52/index.html           | 163 +++--
 develop/os/tutorials/nrf52_adc/index.html       |  13 -
 develop/os/tutorials/olimex/index.html          | 215 +++---
 .../os/tutorials/pics/STM32-E407_bot_small.jpg  | Bin 0 -> 140793 bytes
 .../os/tutorials/pics/STM32-E407_top_small.jpg  | Bin 0 -> 165366 bytes
 develop/os/tutorials/pin-wheel-mods/index.html  |  13 -
 develop/os/tutorials/project-slinky/index.html  |  57 +-
 .../tutorials/project-target-slinky/index.html  |  13 -
 develop/os/tutorials/repo/add_repos/index.html  |  13 -
 .../os/tutorials/repo/create_repo/index.html    |  13 -
 .../os/tutorials/repo/private_repo/index.html   |  13 -
 .../os/tutorials/repo/upgrade_repo/index.html   |  13 -
 develop/os/tutorials/tasks_lesson/index.html    |  13 -
 develop/os/tutorials/tutorials/index.html       |  13 -
 develop/os/tutorials/unit_test/index.html       |  17 +-
 .../os/tutorials/wi-fi_on_arduino/index.html    |  13 -
 develop/sitemap.xml                             |  24 +-
 events/index.html                               |   4 +-
 index.html                                      |  17 +-
 landing.html                                    |  17 +-
 latest/index.html                               |  17 +-
 latest/landing.html                             |  17 +-
 latest/mkdocs/search_index.json                 | 366 +++-------
 latest/newt/install/newt_linux/index.html       |  69 +-
 latest/newt/install/newt_mac/index.html         |  67 +-
 .../command_list/newtmgr_conn/index.html        |   2 +-
 .../command_list/newtmgr_crash/index.html       |   2 +-
 latest/os/core_os/callout/callout/index.html    |  11 -
 .../callout/os_callout_func_init/index.html     |  11 -
 .../core_os/callout/os_callout_init/index.html  |  11 -
 .../callout/os_callout_queued/index.html        |  11 -
 .../core_os/callout/os_callout_reset/index.html |  11 -
 .../core_os/callout/os_callout_stop/index.html  |  11 -
 .../context_switch/context_switch/index.html    |  11 -
 .../context_switch/os_arch_ctx_sw/index.html    |  11 -
 .../core_os/context_switch/os_sched/index.html  |  11 -
 .../os_sched_ctx_sw_hook/index.html             |  11 -
 .../os_sched_get_current_task/index.html        |  11 -
 .../context_switch/os_sched_insert/index.html   |  11 -
 .../os_sched_next_task/index.html               |  11 -
 .../os_sched_os_timer_exp/index.html            |  11 -
 .../context_switch/os_sched_resort/index.html   |  11 -
 .../os_sched_set_current_task/index.html        |  11 -
 .../context_switch/os_sched_sleep/index.html    |  11 -
 .../context_switch/os_sched_wakeup/index.html   |  11 -
 .../core_os/event_queue/event_queue/index.html  |  11 -
 .../event_queue/os_eventq_designate/index.html  |  11 -
 .../event_queue/os_eventq_dflt_get/index.html   |  11 -
 .../event_queue/os_eventq_get/index.html        |  11 -
 .../event_queue/os_eventq_init/index.html       |  11 -
 .../event_queue/os_eventq_inited/index.html     |  11 -
 .../event_queue/os_eventq_put/index.html        |  11 -
 .../event_queue/os_eventq_remove/index.html     |  11 -
 .../event_queue/os_eventq_run/index.html        |  11 -
 latest/os/core_os/heap/heap/index.html          |  11 -
 latest/os/core_os/heap/os_free/index.html       |  11 -
 latest/os/core_os/heap/os_malloc/index.html     |  11 -
 latest/os/core_os/heap/os_realloc/index.html    |  11 -
 latest/os/core_os/mbuf/OS_MBUF_DATA/index.html  |  11 -
 .../mbuf/OS_MBUF_LEADINGSPACE/index.html        |  11 -
 .../os/core_os/mbuf/OS_MBUF_PKTHDR/index.html   |  11 -
 .../mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html      |  11 -
 .../os/core_os/mbuf/OS_MBUF_PKTLEN/index.html   |  11 -
 .../mbuf/OS_MBUF_TRAILINGSPACE/index.html       |  11 -
 .../os/core_os/mbuf/OS_MBUF_USRHDR/index.html   |  11 -
 .../core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html  |  11 -
 latest/os/core_os/mbuf/mbuf/index.html          |  11 -
 latest/os/core_os/mbuf/os_mbuf_adj/index.html   |  11 -
 .../os/core_os/mbuf/os_mbuf_append/index.html   |  11 -
 .../os/core_os/mbuf/os_mbuf_concat/index.html   |  11 -
 .../os/core_os/mbuf/os_mbuf_copydata/index.html |  11 -
 .../os/core_os/mbuf/os_mbuf_copyinto/index.html |  11 -
 latest/os/core_os/mbuf/os_mbuf_dup/index.html   |  11 -
 .../os/core_os/mbuf/os_mbuf_extend/index.html   |  11 -
 .../core_os/mbuf/os_mbuf_free_chain/index.html  |  11 -
 latest/os/core_os/mbuf/os_mbuf_get/index.html   |  11 -
 .../core_os/mbuf/os_mbuf_get_pkthdr/index.html  |  11 -
 .../os/core_os/mbuf/os_mbuf_memcmp/index.html   |  11 -
 latest/os/core_os/mbuf/os_mbuf_off/index.html   |  11 -
 .../core_os/mbuf/os_mbuf_pool_init/index.html   |  11 -
 .../os/core_os/mbuf/os_mbuf_prepend/index.html  |  11 -
 .../os/core_os/mbuf/os_mbuf_pullup/index.html   |  11 -
 .../memory_pool/OS_MEMPOOL_BYTES/index.html     |  11 -
 .../memory_pool/OS_MEMPOOL_SIZE/index.html      |  11 -
 .../core_os/memory_pool/memory_pool/index.html  |  11 -
 .../memory_pool/os_memblock_get/index.html      |  11 -
 .../memory_pool/os_memblock_put/index.html      |  11 -
 .../memory_pool/os_mempool_init/index.html      |  11 -
 latest/os/core_os/mqueue/mqueue/index.html      |  11 -
 .../os/core_os/mqueue/os_mqueue_get/index.html  |  11 -
 .../os/core_os/mqueue/os_mqueue_init/index.html |  11 -
 .../os/core_os/mqueue/os_mqueue_put/index.html  |  11 -
 latest/os/core_os/msys/msys/index.html          |  11 -
 latest/os/core_os/msys/os_msys_get/index.html   |  11 -
 .../core_os/msys/os_msys_get_pkthdr/index.html  |  11 -
 .../os/core_os/msys/os_msys_register/index.html |  11 -
 latest/os/core_os/msys/os_msys_reset/index.html |  11 -
 latest/os/core_os/mutex/mutex/index.html        |  11 -
 .../os/core_os/mutex/os_mutex_init/index.html   |  11 -
 .../os/core_os/mutex/os_mutex_pend/index.html   |  11 -
 .../core_os/mutex/os_mutex_release/index.html   |  11 -
 latest/os/core_os/mynewt_os/index.html          |  11 -
 latest/os/core_os/os_started/index.html         |  11 -
 latest/os/core_os/porting/port_bsp/index.html   |  11 -
 latest/os/core_os/porting/port_cpu/index.html   |  11 -
 latest/os/core_os/porting/port_mcu/index.html   |  11 -
 latest/os/core_os/porting/port_os/index.html    |  11 -
 .../sanity/os_sanity_check_init/index.html      |  11 -
 .../sanity/os_sanity_check_register/index.html  |  11 -
 .../sanity/os_sanity_check_reset/index.html     |  11 -
 .../sanity/os_sanity_task_checkin/index.html    |  11 -
 .../sanity/os_sanity_task_init/index.html       |  11 -
 latest/os/core_os/sanity/sanity/index.html      |  11 -
 .../os/core_os/semaphore/os_sem_init/index.html |  11 -
 .../os/core_os/semaphore/os_sem_pend/index.html |  11 -
 .../core_os/semaphore/os_sem_release/index.html |  11 -
 .../os/core_os/semaphore/semaphore/index.html   |  11 -
 latest/os/core_os/task/os_task_count/index.html |  11 -
 .../task/os_task_info_get_next/index.html       |  11 -
 latest/os/core_os/task/os_task_init/index.html  |  11 -
 latest/os/core_os/task/task/index.html          |  11 -
 .../os/core_os/time/os_gettimeofday/index.html  |  11 -
 .../os/core_os/time/os_settimeofday/index.html  |  11 -
 latest/os/core_os/time/os_time/index.html       |  11 -
 latest/os/core_os/time/os_time_delay/index.html |  11 -
 latest/os/core_os/time/os_time_get/index.html   |  11 -
 latest/os/core_os/time/os_time_tick/index.html  |  11 -
 latest/os/get_started/vocabulary/index.html     |  18 +-
 latest/os/modules/baselibc/index.html           |  15 +-
 .../bootloader/boot_build_status/index.html     |  11 -
 .../bootloader/boot_build_status_one/index.html |  11 -
 .../bootloader/boot_clear_status/index.html     |  11 -
 .../bootloader/boot_copy_area/index.html        |  11 -
 .../bootloader/boot_copy_image/index.html       |  11 -
 .../bootloader/boot_erase_area/index.html       |  11 -
 .../bootloader/boot_fill_slot/index.html        |  11 -
 .../boot_find_image_area_idx/index.html         |  11 -
 .../bootloader/boot_find_image_part/index.html  |  11 -
 .../bootloader/boot_find_image_slot/index.html  |  11 -
 latest/os/modules/bootloader/boot_go/index.html |  11 -
 .../bootloader/boot_init_flash/index.html       |  11 -
 .../bootloader/boot_move_area/index.html        |  11 -
 .../boot_read_image_header/index.html           |  11 -
 .../boot_read_image_headers/index.html          |  11 -
 .../bootloader/boot_read_status/index.html      |  11 -
 .../boot_select_image_slot/index.html           |  11 -
 .../bootloader/boot_slot_addr/index.html        |  11 -
 .../bootloader/boot_slot_to_area_idx/index.html |  11 -
 .../bootloader/boot_swap_areas/index.html       |  11 -
 .../bootloader/boot_vect_delete_main/index.html |  11 -
 .../bootloader/boot_vect_delete_test/index.html |  11 -
 .../bootloader/boot_vect_read_main/index.html   |  11 -
 .../bootloader/boot_vect_read_one/index.html    |  11 -
 .../bootloader/boot_vect_read_test/index.html   |  11 -
 .../bootloader/boot_write_status/index.html     |  11 -
 .../os/modules/bootloader/bootloader/index.html |  11 -
 latest/os/modules/console/console/index.html    |  11 -
 .../console/console_blocking_mode/index.html    |  11 -
 .../os/modules/console/console_echo/index.html  |  11 -
 .../os/modules/console/console_init/index.html  |  11 -
 .../modules/console/console_is_init/index.html  |  11 -
 .../modules/console/console_printf/index.html   |  11 -
 .../os/modules/console/console_read/index.html  |  11 -
 .../os/modules/console/console_write/index.html |  11 -
 .../devmgmt/customize_newtmgr/index.html        |  11 -
 latest/os/modules/devmgmt/newtmgr/index.html    |  11 -
 latest/os/modules/devmgmt/oicmgr/index.html     |  11 -
 latest/os/modules/drivers/driver/index.html     |  11 -
 latest/os/modules/drivers/flash/index.html      |  11 -
 latest/os/modules/drivers/mmc/index.html        |  11 -
 latest/os/modules/elua/elua/index.html          | 638 ------------------
 latest/os/modules/elua/lua_init/index.html      | 657 ------------------
 latest/os/modules/elua/lua_main/index.html      | 670 -------------------
 latest/os/modules/fcb/fcb/index.html            |  11 -
 latest/os/modules/fcb/fcb_append/index.html     |  11 -
 .../os/modules/fcb/fcb_append_finish/index.html |  11 -
 .../fcb/fcb_append_to_scratch/index.html        |  11 -
 latest/os/modules/fcb/fcb_clear/index.html      |  11 -
 latest/os/modules/fcb/fcb_getnext/index.html    |  11 -
 latest/os/modules/fcb/fcb_init/index.html       |  11 -
 latest/os/modules/fcb/fcb_is_empty/index.html   |  11 -
 .../os/modules/fcb/fcb_offset_last_n/index.html |  11 -
 latest/os/modules/fcb/fcb_rotate/index.html     |  11 -
 latest/os/modules/fcb/fcb_walk/index.html       |  11 -
 latest/os/modules/fs/fatfs/index.html           |  11 -
 latest/os/modules/fs/fs/fs/index.html           |  11 -
 latest/os/modules/fs/fs/fs_close/index.html     |  11 -
 latest/os/modules/fs/fs/fs_closedir/index.html  |  11 -
 .../modules/fs/fs/fs_dirent_is_dir/index.html   |  11 -
 .../os/modules/fs/fs/fs_dirent_name/index.html  |  11 -
 latest/os/modules/fs/fs/fs_filelen/index.html   |  11 -
 latest/os/modules/fs/fs/fs_getpos/index.html    |  11 -
 latest/os/modules/fs/fs/fs_mkdir/index.html     |  11 -
 latest/os/modules/fs/fs/fs_open/index.html      |  11 -
 latest/os/modules/fs/fs/fs_opendir/index.html   |  11 -
 latest/os/modules/fs/fs/fs_ops/index.html       |  11 -
 latest/os/modules/fs/fs/fs_read/index.html      |  11 -
 latest/os/modules/fs/fs/fs_readdir/index.html   |  11 -
 latest/os/modules/fs/fs/fs_register/index.html  |  11 -
 latest/os/modules/fs/fs/fs_rename/index.html    |  11 -
 .../os/modules/fs/fs/fs_return_codes/index.html |  11 -
 latest/os/modules/fs/fs/fs_seek/index.html      |  11 -
 latest/os/modules/fs/fs/fs_unlink/index.html    |  11 -
 latest/os/modules/fs/fs/fs_write/index.html     |  11 -
 .../modules/fs/fs/fsutil_read_file/index.html   |  11 -
 .../modules/fs/fs/fsutil_write_file/index.html  |  11 -
 latest/os/modules/fs/nffs/nffs/index.html       |  11 -
 .../modules/fs/nffs/nffs_area_desc/index.html   |  11 -
 .../os/modules/fs/nffs/nffs_config/index.html   |  11 -
 .../os/modules/fs/nffs/nffs_detect/index.html   |  11 -
 .../os/modules/fs/nffs/nffs_format/index.html   |  11 -
 latest/os/modules/fs/nffs/nffs_init/index.html  |  11 -
 .../modules/fs/nffs/nffs_internals/index.html   |  11 -
 latest/os/modules/fs/otherfs/index.html         |  11 -
 latest/os/modules/hal/hal/index.html            |  11 -
 latest/os/modules/hal/hal_api/index.html        |  11 -
 .../os/modules/hal/hal_bsp/hal_bsp/index.html   |  11 -
 latest/os/modules/hal/hal_creation/index.html   |  11 -
 .../modules/hal/hal_flash/hal_flash/index.html  |  11 -
 .../hal/hal_flash/hal_flash_int/index.html      |  11 -
 .../os/modules/hal/hal_gpio/hal_gpio/index.html |  11 -
 .../os/modules/hal/hal_i2c/hal_i2c/index.html   |  11 -
 .../os/modules/hal/hal_in_libraries/index.html  |  11 -
 .../hal/hal_os_tick/hal_os_tick/index.html      |  11 -
 .../os/modules/hal/hal_spi/hal_spi/index.html   |  11 -
 .../modules/hal/hal_system/hal_sys/index.html   |  11 -
 .../modules/hal/hal_timer/hal_timer/index.html  |  11 -
 .../os/modules/hal/hal_uart/hal_uart/index.html |  11 -
 .../hal/hal_watchdog/hal_watchdog/index.html    |  11 -
 latest/os/modules/imgmgr/imgmgr/index.html      |  11 -
 .../os/modules/imgmgr/imgr_ver_parse/index.html |  11 -
 .../os/modules/imgmgr/imgr_ver_str/index.html   |  11 -
 latest/os/modules/json/json/index.html          |  15 +-
 .../json/json_encode_object_entry/index.html    |  11 -
 .../json/json_encode_object_finish/index.html   |  11 -
 .../json/json_encode_object_key/index.html      |  11 -
 .../json/json_encode_object_start/index.html    |  11 -
 .../os/modules/json/json_read_object/index.html |  11 -
 latest/os/modules/logs/logs/index.html          |  11 -
 latest/os/modules/shell/shell/index.html        |  11 -
 .../modules/shell/shell_cmd_register/index.html |  11 -
 .../os/modules/shell/shell_evq_set/index.html   |  11 -
 .../shell/shell_nlip_input_register/index.html  |  11 -
 .../modules/shell/shell_nlip_output/index.html  |  11 -
 latest/os/modules/split/split/index.html        |  11 -
 latest/os/modules/stats/stats/index.html        |  11 -
 .../sysinitconfig/sysconfig_error/index.html    |  11 -
 .../sysinitconfig/sysinitconfig/index.html      |  11 -
 .../os/modules/testutil/test_assert/index.html  |  11 -
 latest/os/modules/testutil/test_case/index.html |  11 -
 latest/os/modules/testutil/test_decl/index.html |  11 -
 latest/os/modules/testutil/test_pass/index.html |  11 -
 .../os/modules/testutil/test_suite/index.html   |  11 -
 latest/os/modules/testutil/testutil/index.html  |  11 -
 latest/os/modules/testutil/tu_init/index.html   |  11 -
 .../os/modules/testutil/tu_restart/index.html   |  11 -
 latest/os/os_user_guide/index.html              |  11 -
 latest/os/tutorials/STM32F303/index.html        |  13 -
 latest/os/tutorials/add_newtmgr/index.html      |  13 -
 latest/os/tutorials/add_shell/index.html        |  13 -
 latest/os/tutorials/air_quality_ble/index.html  |  13 -
 .../os/tutorials/air_quality_sensor/index.html  |  13 -
 latest/os/tutorials/arduino_zero/index.html     | 264 ++++----
 latest/os/tutorials/blehci_project/index.html   |  13 -
 .../os/tutorials/bleprph/bleprph-adv/index.html |  13 -
 .../os/tutorials/bleprph/bleprph-app/index.html |  15 +-
 .../bleprph/bleprph-chr-access/index.html       |  13 -
 .../bleprph/bleprph-gap-event/index.html        |  13 -
 .../tutorials/bleprph/bleprph-intro/index.html  |  13 -
 .../bleprph/bleprph-svc-reg/index.html          |  13 -
 latest/os/tutorials/bletiny_project/index.html  |  13 -
 latest/os/tutorials/blinky_console/index.html   |  13 -
 latest/os/tutorials/blinky_primo/index.html     | 160 +++--
 .../os/tutorials/blinky_sram_olimex/index.html  |  13 -
 latest/os/tutorials/eddystone/index.html        |  13 -
 latest/os/tutorials/event_queue/index.html      |  17 +-
 latest/os/tutorials/ibeacon/index.html          |  13 -
 latest/os/tutorials/nRF52/index.html            | 163 +++--
 latest/os/tutorials/nrf52_adc/index.html        |  13 -
 latest/os/tutorials/olimex/index.html           | 215 +++---
 .../os/tutorials/pics/STM32-E407_bot_small.jpg  | Bin 0 -> 140793 bytes
 .../os/tutorials/pics/STM32-E407_top_small.jpg  | Bin 0 -> 165366 bytes
 latest/os/tutorials/pin-wheel-mods/index.html   |  13 -
 latest/os/tutorials/project-slinky/index.html   |  57 +-
 .../tutorials/project-target-slinky/index.html  |  13 -
 latest/os/tutorials/repo/add_repos/index.html   |  13 -
 latest/os/tutorials/repo/create_repo/index.html |  13 -
 .../os/tutorials/repo/private_repo/index.html   |  13 -
 .../os/tutorials/repo/upgrade_repo/index.html   |  13 -
 latest/os/tutorials/tasks_lesson/index.html     |  13 -
 latest/os/tutorials/tutorials/index.html        |  13 -
 latest/os/tutorials/unit_test/index.html        |  17 +-
 latest/os/tutorials/wi-fi_on_arduino/index.html |  13 -
 latest/sitemap.xml                              |  24 +-
 os/tutorials/pics/STM32-E407_bot_small.jpg      | Bin 0 -> 140793 bytes
 os/tutorials/pics/STM32-E407_top_small.jpg      | Bin 0 -> 165366 bytes
 sitemap.xml                                     |  26 +-
 v0_9_0/index.html                               |  17 +-
 v0_9_0/landing.html                             |  17 +-
 .../os/tutorials/pics/STM32-E407_bot_small.jpg  | Bin 0 -> 140793 bytes
 .../os/tutorials/pics/STM32-E407_top_small.jpg  | Bin 0 -> 165366 bytes
 v0_9_0/sitemap.xml                              |  26 +-
 559 files changed, 1440 insertions(+), 11258 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/index.html
----------------------------------------------------------------------
diff --git a/develop/index.html b/develop/index.html
index 0284379..ab2ae6f 100644
--- a/develop/index.html
+++ b/develop/index.html
@@ -249,13 +249,16 @@
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF52832/"> nRF52 DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
-                  <li>
-                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                   <li>
+                      <a href="https://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK"> nRF52840 Preview DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF51822"> nRF51 DK </a> from Nordic Semiconductor (Cortex-M0)
                   </li>
                   <li>
+                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                  </li>
+                  <li>
                       <a href="http://redbearlab.com/blenano/"> BLE Nano </a> from RedBear (Nordic nRF51822 SoC based)
                   </li>
                   <li>
@@ -265,9 +268,6 @@
                       <a href="https://www.rigado.com/products/bmd-300-eval-kit/"> BMD-300-EVAL-ES </a> from Rigado (Cortex-M4)
                   </li>
                   <li>
-                      <a href="http://www.st.com/en/evaluation-tools/stm32f3discovery.html"> STM32F3DISCOVERY </a> from ST Micro (Cortex-M4)
-                  </li>
-                  <li>
                       <a href="http://www.st.com/en/evaluation-tools/stm32f4discovery.html"> STM32F4DISCOVERY </a> from ST Micro (Cortex-M4)
                   </li>
                   <li>
@@ -291,8 +291,13 @@
                   <li>
                       <a href="https://creatordev.io/ci40-iot-dev-kit.html"> Creator Ci40 IoT Kit </a> from Imagination Technologies (MIPS CPU)
                   </li>
+                  <li>
+                      <a href="http://microbit.org/hardware"> BBB micro:bit </a> with Nordic nRF51822 (Cortex-M0)
+                  </li> 
+                  <li>
+                      <a href="https://www.adafruit.com/feather"> Adafruit Feather </a> with Nordic nRF52 (Cortex-M4) 
+                  </li>
               </ul>
-
             </div>
           </div>
         </div>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/landing.html
----------------------------------------------------------------------
diff --git a/develop/landing.html b/develop/landing.html
index ccc7ec2..a0ad2e9 100644
--- a/develop/landing.html
+++ b/develop/landing.html
@@ -108,13 +108,16 @@
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF52832/"> nRF52 DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
-                  <li>
-                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                   <li>
+                      <a href="https://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK"> nRF52840 Preview DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF51822"> nRF51 DK </a> from Nordic Semiconductor (Cortex-M0)
                   </li>
                   <li>
+                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                  </li>
+                  <li>
                       <a href="http://redbearlab.com/blenano/"> BLE Nano </a> from RedBear (Nordic nRF51822 SoC based)
                   </li>
                   <li>
@@ -124,9 +127,6 @@
                       <a href="https://www.rigado.com/products/bmd-300-eval-kit/"> BMD-300-EVAL-ES </a> from Rigado (Cortex-M4)
                   </li>
                   <li>
-                      <a href="http://www.st.com/en/evaluation-tools/stm32f3discovery.html"> STM32F3DISCOVERY </a> from ST Micro (Cortex-M4)
-                  </li>
-                  <li>
                       <a href="http://www.st.com/en/evaluation-tools/stm32f4discovery.html"> STM32F4DISCOVERY </a> from ST Micro (Cortex-M4)
                   </li>
                   <li>
@@ -150,8 +150,13 @@
                   <li>
                       <a href="https://creatordev.io/ci40-iot-dev-kit.html"> Creator Ci40 IoT Kit </a> from Imagination Technologies (MIPS CPU)
                   </li>
+                  <li>
+                      <a href="http://microbit.org/hardware"> BBB micro:bit </a> with Nordic nRF51822 (Cortex-M0)
+                  </li> 
+                  <li>
+                      <a href="https://www.adafruit.com/feather"> Adafruit Feather </a> with Nordic nRF52 (Cortex-M4) 
+                  </li>
               </ul>
-
             </div>
           </div>
         </div>



[05/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/mkdocs/search_index.json
----------------------------------------------------------------------
diff --git a/latest/mkdocs/search_index.json b/latest/mkdocs/search_index.json
index 719ffa4..957c469 100644
--- a/latest/mkdocs/search_index.json
+++ b/latest/mkdocs/search_index.json
@@ -237,7 +237,7 @@
         }, 
         {
             "location": "/newt/install/newt_mac/", 
-            "text": "Install newt tool on your Mac\n\n\nGetting your Mac Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n\n\n1. Install Homebrew on your Mac OS X\n\n\n\n\nDo you have Homebrew? If not, open a terminal on your Mac and paste the following at a Terminal prompt. It will ask you for your sudo password.\n\n\n\n\n        $ ruby -e \n$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\n\n\n\n\n\n\nAlternatively, you can just extract (or \ngit clone\n) Homebrew and install it to \n/usr/local\n.\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo language environment dictates a directory structure. Known in Go parlanace as workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n
 \n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the \nnewt\n tool repository.\n\n\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\nNext, using \nbrew\n, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import \nnewt\n rep
 o into your local Go environment.\n\n\n\n\n        $ brew install go\n        ==\n \n        ...\n        ... \n        ==\n *Summary*\n        \ud83c\udf7a  /usr/local/Cellar/go/1.5.1: 5330 files, 273M\n\n\n\n\n\nAlternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.\n\n\n\n\n3. Create local repository\n\n\n\n\nUse Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.go program to build the \nnewt\n tool. The command \ngo install\n compiles and writes 
 the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile and execute it by calling \n$newt\n at the prompt instead of \nnewt\n. Essentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the 
 updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded project based on the Mynewt\n        operating system. Newt provides both build and package management in a\n        single tool, which allows you to compose an embedded workspace, and set\n        of projects, and then build the necessary artifacts from those projects.\n        For more information on the Mynewt operating system, please visit\n        https://www.github.com/mynewt/documentation.\n\n        Please use the newt help command, and specify the name of the command\n        you want help for, for help on how to use a specific command\n\n        Usage:\n         newt [flags]\n         newt [command]\n\n        Examples:\n         newt\n         newt help [\ncommand-name\n]\n           For help on \ncommand-name\n.  If not specified, print this message.\n\n\n        Availabl
 e Commands:\n         version     Display the Newt version number.\n         target      Set and view target information\n         egg         Commands to list and inspect eggs on a nest\n         nest        Commands to manage nests \n clutches (remote egg repositories)\n         help        Help about any command\n\n        Flags:\n         -h, --help=false: help for newt\n         -l, --loglevel=\nWARN\n: Log level, defaults to WARN.\n         -q, --quiet=false: Be quiet; only display error output.\n         -s, --silent=false: Be silent; don\nt output anything.\n         -v, --verbose=false: Enable verbose output when executing commands.\n\n\n        Use \nnewt help [command]\n for more information about a command.\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if 
 you need to)\n\n\nThen update each of the tools newt, newtmgr and newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
+            "text": "Install newt tool on your Mac\n\n\nGetting your Mac Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n\n\n1. Install Homebrew on your Mac OS X\n\n\n\n\nDo you have Homebrew? If not, open a terminal on your Mac and paste the following at a Terminal prompt. It will ask you for your sudo password.\n\n\n\n\n        $ ruby -e \n$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\n\n\n\n\n\n\nAlternatively, you can just extract (or \ngit clone\n) Homebrew and install it to \n/usr/local\n.\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo language environment dictates a directory structure. Known in Go parlanace as workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n
 \n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the \nnewt\n tool repository.\n\n\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\nNext, using \nbrew\n, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import \nnewt\n rep
 o into your local Go environment.\n\n\n\n\n        $ brew install go\n        ==\n \n        ...\n        ... \n        ==\n *Summary*\n        \ud83c\udf7a  /usr/local/Cellar/go/1.5.1: 5330 files, 273M\n\n\n\n\n\nAlternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.\n\n\n\n\n3. Create local repository\n\n\n\n\nUse Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.go program to build the \nnewt\n tool. The command \ngo install\n compiles and writes 
 the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile and execute it by calling \n$newt\n at the prompt instead of \nnewt\n. Essentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the 
 updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n          newt help [\ncommand-name\n]\n            For help on \ncommand-name\n.  If not specified, print this message.\n\n        Available
  Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug \ntarget\n\n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade project dependencies\n          vals         Display valid values f
 or the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default \nWARN\n)\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don\nt output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use \nnewt [command] --help\n for more information about a comma\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if you need to)\n\n\nThen update each of the tools newt, newtmgr a
 nd newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
             "title": "Install Newt on Mac"
         }, 
         {
@@ -267,7 +267,7 @@
         }, 
         {
             "location": "/newt/install/newt_mac/#4-build-the-newt-tool", 
-            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.   (Note: If you are going to be modifying the  newt  often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compile
 d binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded project based on the Mynewt\n        operating system. Newt provides both build and package management in a\n        single tool, which allows you to compose an embedded workspace, and set\n        of projects, and then build the necessary artifacts from those projects.\n        For more information on the Mynewt operating system, please visit\n        https://www.github.com/mynewt/documentation.\n\n        Please use the newt help command, and specify the name of the command\n        you want help for, for help on how to use a specific command\n\n        Usage:\n         newt [flags]\n         newt [command]\n\n        Examples:\n         newt\n         newt help [ command-name ]\n           For help on  command
 -name .  If not specified, print this message.\n\n\n        Available Commands:\n         version     Display the Newt version number.\n         target      Set and view target information\n         egg         Commands to list and inspect eggs on a nest\n         nest        Commands to manage nests   clutches (remote egg repositories)\n         help        Help about any command\n\n        Flags:\n         -h, --help=false: help for newt\n         -l, --loglevel= WARN : Log level, defaults to WARN.\n         -q, --quiet=false: Be quiet; only display error output.\n         -s, --silent=false: Be silent; don t output anything.\n         -v, --verbose=false: Enable verbose output when executing commands.\n\n\n        Use  newt help [command]  for more information about a command.", 
+            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.   (Note: If you are going to be modifying the  newt  often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compile
 d binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n          newt help [ command-name ]\n            For help on  comman
 d-name .  If not specified, print this message.\n\n        Available Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug  target \n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade p
 roject dependencies\n          vals         Display valid values for the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default  WARN )\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don t output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use  newt [command] --help  for more information about a comma", 
             "title": "4. Build the Newt tool"
         }, 
         {
@@ -277,7 +277,7 @@
         }, 
         {
             "location": "/newt/install/newt_linux/", 
-            "text": "Install newt tool on Linux\n\n\n\n\nGetting your Linux box Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n1. Install git, libcurl\n\n\n        $ sudo apt-get install git \n        $ sudo apt-get install libcurl4-gnutls-dev \n\n\n\n\n\nNOTE:\n On 64-bit host, you may also need to install gcc-multilib, if you encounter compilation errors related to 'sys/cdefs.h'\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo language environment dictates a directory structure. Known in Go parlance as a workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n\n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe GOPATH environment variable specifies the location of your workspace. To setup this work
 space environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the \nnewt\n tool repository.\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\n\n\nNext, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import \nnewt\n repo into your local Go environment.\n\n\nNote\n: The Newt tool requires Go version 1.5 or later. It uses the support for \"vendoring\" that was added in Go 1.5. Depend
 ing on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.5 or 1.6 from \nhttps://golang.org/dl/\n. You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at \nhttps://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04\n.\n\n\n\n\n\n\n        $ sudo apt-get install golang \n\n\n\n\n\n    \n\n\n3. Create local repository\n\n\n\n\nUse Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.g
 o program to build the \nnewt\n tool. The command \ngo install\n compiles and writes the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin. If you get errors it is likely because of path resolution issues. Try \ngo build\n  followed by \ngo install\n in that case.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile a
 nd execute it by calling \n$newt\n at the prompt instead of \nnewt\n. Essentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded project based on the Mynewt\n        operating system. Newt provides both build and package management in a\n        single tool, which allows you to compose an embedded workspace, and set\n        of projects, and then build the necessary artifacts from those projects.\n        For more information on the Mynewt operating system, please visit\n        https://www.github.com/mynewt/documentation.\n\n        Please use the newt help command, and specify the name of the command\n        you want help for, for help on how to use a specific command\n\n        Usage:\n         newt 
 [flags]\n         newt [command]\n\n        Examples:\n         newt\n         newt help [\ncommand-name\n]\n           For help on \ncommand-name\n.  If not specified, print this message.\n\n\n        Available Commands:\n         version     Display the Newt version number.\n         target      Set and view target information\n         egg         Commands to list and inspect eggs on a nest\n         nest        Commands to manage nests \n clutches (remote egg repositories)\n         help        Help about any command\n\n        Flags:\n         -h, --help=false: help for newt\n         -l, --loglevel=\nWARN\n: Log level, defaults to WARN.\n         -q, --quiet=false: Be quiet; only display error output.\n         -s, --silent=false: Be silent; don\nt output anything.\n         -v, --verbose=false: Enable verbose output when executing commands.\n\n\n        Use \nnewt help [command]\n for more information about a command.\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will
  update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if you need to)\n\n\nThen update each of the tools newt, newtmgr and newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
+            "text": "Install newt tool on Linux\n\n\n\n\nGetting your Linux box Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n1. Install git, libcurl\n\n\n        $ sudo apt-get install git \n        $ sudo apt-get install libcurl4-gnutls-dev \n\n\n\n\n\nNOTE:\n On 64-bit host, you may also need to install gcc-multilib, if you encounter compilation errors related to 'sys/cdefs.h'\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo language environment dictates a directory structure. Known in Go parlance as a workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n\n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe GOPATH environment variable specifies the location of your workspace. To setup this work
 space environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the \nnewt\n tool repository.\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\n\n\nNext, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import \nnewt\n repo into your local Go environment.\n\n\nNote\n: The Newt tool requires Go version 1.6 or later. Depending on the Ubuntu version you have, the following may install an
  earlier version. In that case, download the latest package of Go 1.6 from \nhttps://golang.org/dl/\n. You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at \nhttps://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04\n.\n\n\n\n\n\n\n        $ sudo apt-get install golang \n\n\n\n\n\n    \n\n\n3. Create local repository\n\n\n\n\nUse Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.go program to build the \nnewt\n tool. The command \ngo install\n compil
 es and writes the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin. If you get errors it is likely because of path resolution issues. Try \ngo build\n  followed by \ngo install\n in that case.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile and execute it by calling \n$newt\n at the prompt instead of \nnewt\n. E
 ssentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n  
         newt help [\ncommand-name\n]\n            For help on \ncommand-name\n.  If not specified, print this message.\n\n        Available Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug \ntarget\n\n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Execu
 tes unit tests for one or more packages\n          upgrade      Upgrade project dependencies\n          vals         Display valid values for the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default \nWARN\n)\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don\nt output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use \nnewt [command] --help\n for more information about a comma\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the new
 t tool (you can change to a different branch using git checkout [branch] if you need to)\n\n\nThen update each of the tools newt, newtmgr and newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
             "title": "Install Newt on Linux"
         }, 
         {
@@ -297,7 +297,7 @@
         }, 
         {
             "location": "/newt/install/newt_linux/#2-install-go-the-programming-language", 
-            "text": "Go language environment dictates a directory structure. Known in Go parlance as a workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below.     src contains Go source files organized into packages (one package per directory),    pkg contains package objects, and    bin contains executable commands.    The GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the  newt  tool repository.            $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`  (Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)           $ vi ~/.bash_profile\n        $ source ~/.bash_profile   
   Next, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import  newt  repo into your local Go environment.  Note : The Newt tool requires Go version 1.5 or later. It uses the support for \"vendoring\" that was added in Go 1.5. Depending on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.5 or 1.6 from  https://golang.org/dl/ . You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at  https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04 .            $ sudo apt-get install golang", 
+            "text": "Go language environment dictates a directory structure. Known in Go parlance as a workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below.     src contains Go source files organized into packages (one package per directory),    pkg contains package objects, and    bin contains executable commands.    The GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the  newt  tool repository.            $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`  (Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)           $ vi ~/.bash_profile\n        $ source ~/.bash_profile   
   Next, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import  newt  repo into your local Go environment.  Note : The Newt tool requires Go version 1.6 or later. Depending on the Ubuntu version you have, the following may install an earlier version. In that case, download the latest package of Go 1.6 from  https://golang.org/dl/ . You can search for more detailed instructions such as installing Go 1.6 on Ubuntu 14.04 which can be found at  https://www.digitalocean.com/community/tutorials/how-to-install-go-1-6-on-ubuntu-14-04 .            $ sudo apt-get install golang", 
             "title": "2. Install Go, the programming language"
         }, 
         {
@@ -307,7 +307,7 @@
         }, 
         {
             "location": "/newt/install/newt_linux/#4-build-the-newt-tool", 
-            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin. If you get errors it is likely because of path resolution issues. Try  go build   followed by  go install  in that case.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.   (Note: If you are going to be modifying the  newt  often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and 
 execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded project based on the Mynewt\n        operating system. Newt provides both build and package management in a\n        single tool, which allows you to compose an embedded workspace, and set\n        of projects, and then build the necessary artifacts from those projects.\n        For more information on the Mynewt operating system, please visit\n        https://www.github.com/mynewt/documentation.\n\n        Please use the newt help command, and specify the name of the command\n        you want help for, for help on how to use a specific command\n\n        Usage:\n         newt [flags]\n        
  newt [command]\n\n        Examples:\n         newt\n         newt help [ command-name ]\n           For help on  command-name .  If not specified, print this message.\n\n\n        Available Commands:\n         version     Display the Newt version number.\n         target      Set and view target information\n         egg         Commands to list and inspect eggs on a nest\n         nest        Commands to manage nests   clutches (remote egg repositories)\n         help        Help about any command\n\n        Flags:\n         -h, --help=false: help for newt\n         -l, --loglevel= WARN : Log level, defaults to WARN.\n         -q, --quiet=false: Be quiet; only display error output.\n         -s, --silent=false: Be silent; don t output anything.\n         -v, --verbose=false: Enable verbose output when executing commands.\n\n\n        Use  newt help [command]  for more information about a command.", 
+            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin. If you get errors it is likely because of path resolution issues. Try  go build   followed by  go install  in that case.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.   (Note: If you are going to be modifying the  newt  often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and 
 execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          n
 ewt [command]\n\n        Examples:\n          newt\n          newt help [ command-name ]\n            For help on  command-name .  If not specified, print this message.\n\n        Available Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug  target \n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure,
  and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade project dependencies\n          vals         Display valid values for the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default  WARN )\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don t output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use  newt [command] --help  for more information about a comma", 
             "title": "4. Build the Newt tool"
         }, 
         {
@@ -432,7 +432,7 @@
         }, 
         {
             "location": "/os/get_started/vocabulary/", 
-            "text": "Concepts\n\n\nThis page is meant to introduce you to some of the concepts inherent to \nthe Apache Mynewt Operating System, and \nNewt\n the tool that stitches a \nproject built on Apache Mynewt together.\n\n\nProject\n\n\nThe project is the base directory of your embedded software tree.  It is a \nworkspace that contains a logical collection of source code, for one or \nmore of your applications.  A project consists of the following items:\n\n\n\n\nProject Definition: defines project level dependencies, and parameters\n    (located in \nproject.yml\n)\n\n\nPackages\n\n\n\n\nPackages\n are described in detail in the section below.  \n\n\nHere is an example project definition file from the default Apache Mynewt \nproject: \n\n\n$ more project.yml \n\nsnip\n\nproject.name: \nmy_project\n\n\nproject.repositories:\n    - apache-mynewt-core\n\n# Use github\ns distribution mechanism for core ASF libraries.\n# This provides mirroring automatically for us.\n#\nrepositor
 y.apache-mynewt-core:\n    type: github\n    vers: 0-latest\n    user: apache\n    repo: incubator-mynewt-core\n$ \n\n\n\n\n\nA couple of things to note in the project definition:\n\n\n\n\n\n\nproject.repositories\n: Defines the remote repositories that this project\nrelies upon.\n\n\n\n\n\n\nrepository.apache-mynewt-core\n: Defines the repository information for \nthe \napache-mynewt-core\n repository.\n\n\n\n\n\n\nvers=0-latest\n: Defines the repository version. This string will use the \nlatest code in the 'Master' github branch. To use the latest version in the \ndevelop branch, just change it to \nvers=0-dev\n\n\n\n\n\n\nRepositories are versioned collections of packages.  \n\n\nProjects can rely on remote repositories for functionality, and the newt tool \nwill resolve those remote repositories, and download the correct version into \nyour local source tree.  Newly fetched repositories are put in the \nrepos\n\ndirectory of your project, and can be referenced throughout the sy
 stem by using\nthe \n@\n specifier.  \n\n\nBy default, the \n@apache-mynewt-core\n repository is included in every \nproject.  Apache Mynewt Core contains all the base functionality of the Apache \nMynewt Operating System, including the Real Time Kernel, Bluetooth Networking \nStack, Flash File System, Console, Shell and Bootloader.\n\n\nNOTE:\n Any project can be converted into a repository by providing it with a \n\nrepository.yml\n file and putting it up onto Github.  More information\nabout repositories can be found in the Newt documentation.\n\n\nPackage\n\n\nA package is a collection items that form a fundamental unit in the Mynewt \nOperating System.  Packages can be:\n\n\n\n\nApplications\n\n\nLibraries\n\n\nCompiler definitions\n\n\nTargets\n\n\n\n\nA package is identified by having a \npkg.yml\n file in it's base \ndirectory.  Here is a sample \npkg.yml\n file for the blinky applicaton:\n\n\n$ more pkg.yml \n\nsnip\n\npkg.name: apps/blinky\npkg.type: app\npkg.description: 
 Basic example application which blinks an LED.\npkg.author: \nApache Mynewt \ndev@mynewt.incubator.apache.org\n\npkg.homepage: \nhttp://mynewt.apache.org/\n\npkg.keywords:\n\npkg.deps:\n    - \n@apache-mynewt-core/libs/os\n\n    - \n@apache-mynewt-core/hw/hal\n\n    - \n@apache-mynewt-core/libs/console/full\n\n\n\n\n\n\nPackages have a few features worth noting:\n\n\n\n\nDependencies: Packages can rely upon other packages, and when they do\n    they will inherit their functionality (header files, library definitions, etc.)\n\n\nAPIs: Packages can export named APIs, and they can require that certain \n    APIs be present, in order to compile.\n\n\nFeatures: Packages can operate differently depending on what named features are \n    present in the system.  Packages can also export features to the rest of the \n    Mynewt system.\n\n\n\n\nEverything that newt knows about within a project's directory is a package.  This \nmakes it very clean and easy to write re-usable components, which
  can describe their \nDependencies and APIs to the rest of the system.\n\n\nTarget\n\n\nA target in Apache Mynewt is very similar to a target in \nmake\n.  It is the collection\nof parameters that must be passed to Newt in order to generate a reproducible build.  A \ntarget represents the top of the build tree, and any packages or parameters specified at \nthe target level, cascade down to all dependencies.\n\n\nTargets are also packages, and are stored in the \ntargets/\n directory at the base \nof your project.  Most targets consist of: \n\n\n\n\napp\n: The application to build.\n\n\nbsp\n: The board support package to combine with that application\n\n\nbuild_profile\n: Either \ndebug\n or \noptimized\n. \n\n\n\n\nTargets can also have additional items specified, including: \n\n\n\n\ncflags\n: Any additional compiler flags you might want to specify to the build.\n\n\nfeatures\n: Any system level features you want to enable.\n\n\n\n\nIn order to create and manipulate targets, the \
 nnewt\n tool offers a set of helper commands,\nyou can find more information about these by issuing:\n\n\n$ newt target\n\n\nUsage:\n  newt target [flags]\n  newt target [command]\n\nAvailable Commands:\n  config      View target system configuration\n  copy        Copy target\n  create      Create a target\n  delete      Delete target\n  set         Set target configuration variable\n  show        View target configuration variables\n\nGlobal Flags:\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse \nnewt target [command] --help\n for more information about a command.\n$ \n\n\n\n\n\nConfiguration\n\n\nThere are a lot of configuration options available when building your application in MyNewt. System Configuration options ar
 e set in \na file called \nsyscfg.yml\n and you will find these configuration files throughout the MyNewt packages. While you can edit these\nfiles directly to change some default settings, it is best to override the default settings in a \nsyscfg.yml\n file in your project\ndirectory rather than editing the package configurations directly.\n\n\nTo see all \nall\n the system configuration settings, simply type\n\n\n$ newt target config \ntarget-name\n\n...\n* PACKAGE: sys/stats\n  * Setting: STATS_CLI\n    * Description: Expose the \nstat\n shell command.\n    * Value: 0\n  * Setting: STATS_NAMES\n    * Description: Include and report the textual name of each statistic.\n    * Value: 0\n  * Setting: STATS_NEWTMGR\n    * Description: Expose the \nstat\n newtmgr command.\n    * Value: 0\n...\n$\n\n\n\n\n\nKeep in mind that this will only show the configuration options for any packages that are included in your applicaiton. \n\n\nIf you really want to see \nall\n the available configur
 ation options, you can go rough each package and look at the\n\nsyscfg.yml\n file in each.", 
+            "text": "Concepts\n\n\nThis page is meant to introduce you to some of the concepts inherent to \nthe Apache Mynewt Operating System, and \nNewt\n the tool that stitches a \nproject built on Apache Mynewt together.\n\n\nProject\n\n\nThe project is the base directory of your embedded software tree.  It is a \nworkspace that contains a logical collection of source code, for one or \nmore of your applications.  A project consists of the following items:\n\n\n\n\nProject Definition: defines project level dependencies, and parameters\n    (located in \nproject.yml\n)\n\n\nPackages\n\n\n\n\nPackages\n are described in detail in the section below.  \n\n\nHere is an example project definition file from the default Apache Mynewt \nproject: \n\n\n$ more project.yml \n\nsnip\n\nproject.name: \nmy_project\n\n\nproject.repositories:\n    - apache-mynewt-core\n\n# Use github\ns distribution mechanism for core ASF libraries.\n# This provides mirroring automatically for us.\n#\nrepositor
 y.apache-mynewt-core:\n    type: github\n    vers: 1-latest\n    user: apache\n    repo: incubator-mynewt-core\n$ \n\n\n\n\n\nA couple of things to note in the project definition:\n\n\n\n\n\n\nproject.repositories\n: Defines the remote repositories that this project\nrelies upon.\n\n\n\n\n\n\nrepository.apache-mynewt-core\n: Defines the repository information for \nthe \napache-mynewt-core\n repository.\n\n\n\n\n\n\nvers=1-latest\n: Defines the repository version. This string will use the \nlatest code in the 'Master' github branch. To use the latest version in the \ndevelop branch, just change it to \nvers=1-dev\n\n\n\n\n\n\nRepositories are versioned collections of packages.  \n\n\nProjects can rely on remote repositories for functionality, and the newt tool \nwill resolve those remote repositories, and download the correct version into \nyour local source tree.  Newly fetched repositories are put in the \nrepos\n\ndirectory of your project, and can be referenced throughout the sy
 stem by using\nthe \n@\n specifier.  \n\n\nBy default, the \n@apache-mynewt-core\n repository is included in every \nproject.  Apache Mynewt Core contains all the base functionality of the Apache \nMynewt Operating System, including the Real Time Kernel, Bluetooth Networking \nStack, Flash File System, Console, Shell and Bootloader.\n\n\nNOTE:\n Any project can be converted into a repository by providing it with a \n\nrepository.yml\n file and putting it up onto Github.  More information\nabout repositories can be found in the Newt documentation.\n\n\nPackage\n\n\nA package is a collection items that form a fundamental unit in the Mynewt \nOperating System.  Packages can be:\n\n\n\n\nApplications\n\n\nLibraries\n\n\nCompiler definitions\n\n\nTargets\n\n\n\n\nA package is identified by having a \npkg.yml\n file in it's base \ndirectory.  Here is a sample \npkg.yml\n file for the blinky applicaton:\n\n\n$ more pkg.yml \n\nsnip\n\npkg.name: apps/blinky\npkg.type: app\npkg.description: 
 Basic example application which blinks an LED.\npkg.author: \nApache Mynewt \ndev@mynewt.incubator.apache.org\n\npkg.homepage: \nhttp://mynewt.apache.org/\n\npkg.keywords:\n\npkg.deps:\n    - \n@apache-mynewt-core/libs/os\n\n    - \n@apache-mynewt-core/hw/hal\n\n    - \n@apache-mynewt-core/libs/console/full\n\n\n\n\n\n\nPackages have a few features worth noting:\n\n\n\n\nDependencies: Packages can rely upon other packages, and when they do\n    they will inherit their functionality (header files, library definitions, etc.)\n\n\nAPIs: Packages can export named APIs, and they can require that certain \n    APIs be present, in order to compile.\n\n\nFeatures: Packages can operate differently depending on what named features are \n    present in the system.  Packages can also export features to the rest of the \n    Mynewt system.\n\n\n\n\nEverything that newt knows about within a project's directory is a package.  This \nmakes it very clean and easy to write re-usable components, which
  can describe their \nDependencies and APIs to the rest of the system.\n\n\nTarget\n\n\nA target in Apache Mynewt is very similar to a target in \nmake\n.  It is the collection\nof parameters that must be passed to Newt in order to generate a reproducible build.  A \ntarget represents the top of the build tree, and any packages or parameters specified at \nthe target level, cascade down to all dependencies.\n\n\nTargets are also packages, and are stored in the \ntargets/\n directory at the base \nof your project.  Most targets consist of: \n\n\n\n\napp\n: The application to build.\n\n\nbsp\n: The board support package to combine with that application\n\n\nbuild_profile\n: Either \ndebug\n or \noptimized\n. \n\n\n\n\nTargets can also have additional items specified, including: \n\n\n\n\ncflags\n: Any additional compiler flags you might want to specify to the build.\n\n\nfeatures\n: Any system level features you want to enable.\n\n\n\n\nIn order to create and manipulate targets, the \
 nnewt\n tool offers a set of helper commands,\nyou can find more information about these by issuing:\n\n\n$ newt target\n\n\nnewt target\nUsage:\n  newt target [flags]\n  newt target [command]\n\nAvailable Commands:\n  config      View or populate a target\ns system configuration\n  copy        Copy target\n  create      Create a target\n  delete      Delete target\n  dep         View target\ns dependency graph\n  revdep      View target\ns reverse-dependency graph\n  set         Set target configuration variable\n  show        View target configuration variables\n\nGlobal Flags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when ex
 ecuting commands\n\nUse \nnewt target [command] --help\n for more information about a command.\n\n$ \n\n\n\n\n\nConfiguration\n\n\nThere are a lot of configuration options available when building your application in MyNewt. System Configuration options are set in \na file called \nsyscfg.yml\n and you will find these configuration files throughout the MyNewt packages. While you can edit these\nfiles directly to change some default settings, it is best to override the default settings in a \nsyscfg.yml\n file in your project\ndirectory rather than editing the package configurations directly.\n\n\nTo see all \nall\n the system configuration settings, simply type\n\n\n$ newt target config show \ntarget-name\n\n...\n* PACKAGE: sys/stats\n  * Setting: STATS_CLI\n    * Description: Expose the \nstat\n shell command.\n    * Value: 0\n  * Setting: STATS_NAMES\n    * Description: Include and report the textual name of each statistic.\n    * Value: 0\n  * Setting: STATS_NEWTMGR\n    * Descrip
 tion: Expose the \nstat\n newtmgr command.\n    * Value: 0\n...\n$\n\n\n\n\n\nKeep in mind that this will only show the configuration options for any packages that are included in your applicaiton. \n\n\nIf you really want to see \nall\n the available configuration options, you can go rough each package and look at the\n\nsyscfg.yml\n file in each.", 
             "title": "Concepts"
         }, 
         {
@@ -442,7 +442,7 @@
         }, 
         {
             "location": "/os/get_started/vocabulary/#project", 
-            "text": "The project is the base directory of your embedded software tree.  It is a \nworkspace that contains a logical collection of source code, for one or \nmore of your applications.  A project consists of the following items:   Project Definition: defines project level dependencies, and parameters\n    (located in  project.yml )  Packages   Packages  are described in detail in the section below.    Here is an example project definition file from the default Apache Mynewt \nproject:   $ more project.yml  snip \nproject.name:  my_project \n\nproject.repositories:\n    - apache-mynewt-core\n\n# Use github s distribution mechanism for core ASF libraries.\n# This provides mirroring automatically for us.\n#\nrepository.apache-mynewt-core:\n    type: github\n    vers: 0-latest\n    user: apache\n    repo: incubator-mynewt-core\n$   A couple of things to note in the project definition:    project.repositories : Defines the remote repositories that this project\nrelies upon.
     repository.apache-mynewt-core : Defines the repository information for \nthe  apache-mynewt-core  repository.    vers=0-latest : Defines the repository version. This string will use the \nlatest code in the 'Master' github branch. To use the latest version in the \ndevelop branch, just change it to  vers=0-dev    Repositories are versioned collections of packages.    Projects can rely on remote repositories for functionality, and the newt tool \nwill resolve those remote repositories, and download the correct version into \nyour local source tree.  Newly fetched repositories are put in the  repos \ndirectory of your project, and can be referenced throughout the system by using\nthe  @  specifier.    By default, the  @apache-mynewt-core  repository is included in every \nproject.  Apache Mynewt Core contains all the base functionality of the Apache \nMynewt Operating System, including the Real Time Kernel, Bluetooth Networking \nStack, Flash File System, Console, Shell and Bootlo
 ader.  NOTE:  Any project can be converted into a repository by providing it with a  repository.yml  file and putting it up onto Github.  More information\nabout repositories can be found in the Newt documentation.", 
+            "text": "The project is the base directory of your embedded software tree.  It is a \nworkspace that contains a logical collection of source code, for one or \nmore of your applications.  A project consists of the following items:   Project Definition: defines project level dependencies, and parameters\n    (located in  project.yml )  Packages   Packages  are described in detail in the section below.    Here is an example project definition file from the default Apache Mynewt \nproject:   $ more project.yml  snip \nproject.name:  my_project \n\nproject.repositories:\n    - apache-mynewt-core\n\n# Use github s distribution mechanism for core ASF libraries.\n# This provides mirroring automatically for us.\n#\nrepository.apache-mynewt-core:\n    type: github\n    vers: 1-latest\n    user: apache\n    repo: incubator-mynewt-core\n$   A couple of things to note in the project definition:    project.repositories : Defines the remote repositories that this project\nrelies upon.
     repository.apache-mynewt-core : Defines the repository information for \nthe  apache-mynewt-core  repository.    vers=1-latest : Defines the repository version. This string will use the \nlatest code in the 'Master' github branch. To use the latest version in the \ndevelop branch, just change it to  vers=1-dev    Repositories are versioned collections of packages.    Projects can rely on remote repositories for functionality, and the newt tool \nwill resolve those remote repositories, and download the correct version into \nyour local source tree.  Newly fetched repositories are put in the  repos \ndirectory of your project, and can be referenced throughout the system by using\nthe  @  specifier.    By default, the  @apache-mynewt-core  repository is included in every \nproject.  Apache Mynewt Core contains all the base functionality of the Apache \nMynewt Operating System, including the Real Time Kernel, Bluetooth Networking \nStack, Flash File System, Console, Shell and Bootlo
 ader.  NOTE:  Any project can be converted into a repository by providing it with a  repository.yml  file and putting it up onto Github.  More information\nabout repositories can be found in the Newt documentation.", 
             "title": "Project"
         }, 
         {
@@ -452,12 +452,12 @@
         }, 
         {
             "location": "/os/get_started/vocabulary/#target", 
-            "text": "A target in Apache Mynewt is very similar to a target in  make .  It is the collection\nof parameters that must be passed to Newt in order to generate a reproducible build.  A \ntarget represents the top of the build tree, and any packages or parameters specified at \nthe target level, cascade down to all dependencies.  Targets are also packages, and are stored in the  targets/  directory at the base \nof your project.  Most targets consist of:    app : The application to build.  bsp : The board support package to combine with that application  build_profile : Either  debug  or  optimized .    Targets can also have additional items specified, including:    cflags : Any additional compiler flags you might want to specify to the build.  features : Any system level features you want to enable.   In order to create and manipulate targets, the  newt  tool offers a set of helper commands,\nyou can find more information about these by issuing:  $ newt target  Usage:\n 
  newt target [flags]\n  newt target [command]\n\nAvailable Commands:\n  config      View target system configuration\n  copy        Copy target\n  create      Create a target\n  delete      Delete target\n  set         Set target configuration variable\n  show        View target configuration variables\n\nGlobal Flags:\n  -l, --loglevel string   Log level (default  WARN )\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don t output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse  newt target [command] --help  for more information about a command.\n$", 
+            "text": "A target in Apache Mynewt is very similar to a target in  make .  It is the collection\nof parameters that must be passed to Newt in order to generate a reproducible build.  A \ntarget represents the top of the build tree, and any packages or parameters specified at \nthe target level, cascade down to all dependencies.  Targets are also packages, and are stored in the  targets/  directory at the base \nof your project.  Most targets consist of:    app : The application to build.  bsp : The board support package to combine with that application  build_profile : Either  debug  or  optimized .    Targets can also have additional items specified, including:    cflags : Any additional compiler flags you might want to specify to the build.  features : Any system level features you want to enable.   In order to create and manipulate targets, the  newt  tool offers a set of helper commands,\nyou can find more information about these by issuing:  $ newt target  newt targ
 et\nUsage:\n  newt target [flags]\n  newt target [command]\n\nAvailable Commands:\n  config      View or populate a target s system configuration\n  copy        Copy target\n  create      Create a target\n  delete      Delete target\n  dep         View target s dependency graph\n  revdep      View target s reverse-dependency graph\n  set         Set target configuration variable\n  show        View target configuration variables\n\nGlobal Flags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default  WARN )\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don t output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse  newt target [command] --help  for more information about a command.\n\n$", 
             "title": "Target"
         }, 
         {
             "location": "/os/get_started/vocabulary/#configuration", 
-            "text": "There are a lot of configuration options available when building your application in MyNewt. System Configuration options are set in \na file called  syscfg.yml  and you will find these configuration files throughout the MyNewt packages. While you can edit these\nfiles directly to change some default settings, it is best to override the default settings in a  syscfg.yml  file in your project\ndirectory rather than editing the package configurations directly.  To see all  all  the system configuration settings, simply type  $ newt target config  target-name \n...\n* PACKAGE: sys/stats\n  * Setting: STATS_CLI\n    * Description: Expose the  stat  shell command.\n    * Value: 0\n  * Setting: STATS_NAMES\n    * Description: Include and report the textual name of each statistic.\n    * Value: 0\n  * Setting: STATS_NEWTMGR\n    * Description: Expose the  stat  newtmgr command.\n    * Value: 0\n...\n$  Keep in mind that this will only show the configuration options for
  any packages that are included in your applicaiton.   If you really want to see  all  the available configuration options, you can go rough each package and look at the syscfg.yml  file in each.", 
+            "text": "There are a lot of configuration options available when building your application in MyNewt. System Configuration options are set in \na file called  syscfg.yml  and you will find these configuration files throughout the MyNewt packages. While you can edit these\nfiles directly to change some default settings, it is best to override the default settings in a  syscfg.yml  file in your project\ndirectory rather than editing the package configurations directly.  To see all  all  the system configuration settings, simply type  $ newt target config show  target-name \n...\n* PACKAGE: sys/stats\n  * Setting: STATS_CLI\n    * Description: Expose the  stat  shell command.\n    * Value: 0\n  * Setting: STATS_NAMES\n    * Description: Include and report the textual name of each statistic.\n    * Value: 0\n  * Setting: STATS_NEWTMGR\n    * Description: Expose the  stat  newtmgr command.\n    * Value: 0\n...\n$  Keep in mind that this will only show the configuration option
 s for any packages that are included in your applicaiton.   If you really want to see  all  the available configuration options, you can go rough each package and look at the syscfg.yml  file in each.", 
             "title": "Configuration"
         }, 
         {
@@ -482,7 +482,7 @@
         }, 
         {
             "location": "/os/tutorials/arduino_zero/", 
-            "text": "Blinky, your \"Hello World!\", on Arduino Zero\n\n\nLearn how to use packages from a default application repository of Mynewt to build your first \nHello World\n application (Blinky) on a target board. Once built using the \nnewt\n tool, this application will blink the LED lights on the target board.\n\n\nThis tutorial describes how to run Mynewt OS on Arduino Zero. Follow these simple steps and your board will be blinking in no time!\n\n\nPrerequisites\n\n\nBefore tackling this tutorial, it's best to read about Mynewt in the \nIntroduction\n section of this documentation.\n\n\nEquipment\n\n\nYou will need the following equipment\n\n\n\n\nAn Arduino Zero board.  NOTE: There are many flavors of Arduino. Ensure that\nyou have an Arduino Zero. See below for the versions of Arduino Zero that are\ncompatible with this tutorial\n\n\nA computer that can connect to the Arduino Zero over USB\n\n\nA USB cable (Type A to micro B) that can connect the computer to the Arduin
 o\n\n\nThe Mynewt Release\n\n\n\n\nThis tutorial has been tested on the following three Arduino Zero boards - Zero, M0 Pro, and Zero-Pro.\n\n\n\n\n\n\n\n\nMynewt has not been tested on Arduino M0 which has no internal debugger support.\n\n\nInstall Mynewt and Newt\n\n\n\n\nIf you have not already done so, install Newt as shown in the \nNewt install tutorial\n\n\nIf you have not already done so, create a project as shown in the Quick Start guide on how to \nCreate Your First Project\n. Skip the testing and building the project steps in that tutorial since you will be defining a target for your Arduino board in this tutorial.\n\n\n\n\n\n\nFetch External Packages\n\n\nMynewt uses source code provided directly from the chip manufacturer for\nlow level operations. Sometimes this code is licensed only for the specific manufacturer of the chipset and cannot live in the Apache Mynewt repository. That happens to be the case for the Arduino Zero board which uses Atmel SAMD21. Runtime's github
  repository hosts such external third-party packages and the Newt tool can fetch them.\n\n\nTo fetch the package with MCU support for Atmel SAMD21 for Arduino Zero from the Runtime git repository, you need to add\nthe repository to the \nproject.yml\n file in your base project directory.\n\n\nHere is an example \nproject.yml\n file with the Arduino Zero repository\nadded. The sections with \nmynewt_arduino_zero\n that need to be added to\nyour project file are highlighted.\n\n\n$ more project.yml\nproject.name: \nmy_project\n\n\nproject.repositories:\n    - apache-mynewt-core\n\n    - mynewt_arduino_zero\n\n\nrepository.apache-mynewt-core:\n    type: github\n    vers: 0-latest\n    user: apache\n    repo: incubator-mynewt-core\n\n\nrepository.mynewt_arduino_zero:\n\n    type: github\n\n    vers: 0-latest\n\n    user: runtimeinc\n\n    repo: mynewt_arduino_zero\n\n$\n\n\n\n\n\n\n\nOnce you've edited your \nproject.yml\n file, the next step is to install the\nproject dependencies, thi
 s can be done with the \nnewt install\n command\n(to see more output, provide the \n-v\n verbose option.):\n\n\n$ newt install\napache-mynewt-core\nmynewt_arduino_zero\n$\n\n\n\n\n\n\n\nNOTE:\n If there has been a new release of a repo used in your project since you last installed it, the \n0-latest\n version for the repo in the \nproject.yml\n file will refer to the new release and will not match the installed files. In that case you will get an error message saying so and you will need to run \nnewt upgrade\n to overwrite the existing files with the latest codebase.\n\n\n\n\nCreate your bootloader target\n\n\nNext, you need to tell Newt what to build.  For the Arduino Zero, we are going to\ngenerate both a bootloader, and an image target.\n\n\nTo generate the bootloader target, you need to specify the following options. The output of the commands (indicating success) have been suppressed for easier readability.\n\n\n$ newt target create arduino_boot\n$ newt target set arduino_boot
  bsp=@mynewt_arduino_zero/hw/bsp/arduino_zero\nTarget targets/arduino_boot successfully created\n$ newt target set arduino_boot app=@apache-mynewt-core/apps/boot\nTarget targets/arduino_boot successfully set target.app to @apache-mynewt-core/apps/boot\n$ newt target set arduino_boot build_profile=optimized\nTarget targets/arduino_boot successfully set target.build_profile to optimized\n$ newt target set arduino_boot syscfg=BSP_ARDUINO_ZERO_PRO=1\nTarget targets/arduino_boot successfully set target.syscfg to BSP_ARDUINO_ZERO_PRO=1\n\n\n\n\n\n\n\nThese commands do a few things:\n\n\n\n\nCreate a target named \narduino_boot\n, in order to build the Arduino Zero Bootloader.\n\n\nSet the application for the \narduino_boot\n target to the default Apache Mynewt\n    bootloader (\n@apache-mynewt-core/apps/boot\n)\n\n\nSet the board support package for the target to\n    \n@mynewt_arduino_zero/hw/bsp/arduino_zero\n.  This is a reference to the downloaded\n    Arduino Zero support from Github
 .\n\n\nUse the \"optimized\" build profile for the \narduino_boot\n target.  This\n    instructs Newt to generate smaller and more efficient code for this target.\n    This setting is necessary due to the bootloader's strict size constraints.\n\n\nTells the Board Support Package to enable support for the Arduino Zero Pro or the Arduino Zero. Set it to \narduino_zero\n or \narduino_zero_pro\n depending on the board you have.\n\n\n\n\n\n\nIf you'd rather, you can also take care of that last part by editing the \nsyscfg.yml\n file \nfor the target to set options -- at least one that is \nrequired\n.\nLook in the directory for the target, as defined by the target (in this case \ntargets/arduino_boot\n)\nand edit the syscfg.yml file. It should look like this when you're done:\n\n\n### Package: targets/arduino_boot\n\nsyscfg.vals:\n    BSP_ARDUINO_ZERO_PRO: 1\n\n\n\n\n\nIf you have an Arduino Zero Pro or M0 Pro, you'll want \nBSP_ARDUINO_ZEZRO_PRO: 1\n. If you have the Arduino Zero, \nyou
 'll want \nBSP_ARDUINO_ZERO: 1\n instead.\n\n\nFor more information on setting options, see the section on \nConcepts\n.\n\n\nFor now, we're not going to set any more options or enable any more features of Mynewt OS.\n\n\n\n\nBuild your bootloader\n\n\nOnce you've configured the bootloader target, the next step is to build the bootloader for your Arduino. You can do this by using the \nnewt build\n command:\n\n\n$ newt build arduino_boot\nCompiling asprintf.c\nCompiling atoi.c\nCompiling atol.c\nCompiling atoll.c\nCompiling bsearch.c\nCompiling bzero.c\nCompiling calloc.c\nCompiling fgets.c\nCompiling inline.c\n\nsnip\n\nApp successfully built: myproject/bin/arduino_boot/apps/boot/boot.elf\n\n\n\n\n\nIf this command finishes successfully, you have successfully built the Arduino\nbootloader, and the next step is to build your application for the Arduino\nboard.\n\n\n\n\nBuild your blinky app\n\n\nTo create and download your application, you create another target, this one pointing to
  the application you want to download to the Arduino board.\n\nIn this tutorial,  we will use the default application that comes with your project, \napps/blinky\n:\n\n\nNote\n: Remember to set features to \narduino_zero\n if your board is Arduino Zero and not a Pro!\n\n\n$ newt target create arduino_blinky\nTarget targets/arduino_blinky successfully created\n$ newt target set arduino_blinky app=apps/blinky\nTarget targets/arduino_blinky successfully set target.app to apps/blinky\n$ newt target set arduino_blinky bsp=@mynewt_arduino_zero/hw/bsp/arduino_zero\nTarget targets/arduino_blinky successfully set target.bsp to @mynewt_arduino_zero/hw/bsp/arduino_zero\n$ newt target set arduino_blinky build_profile=debug\nTarget targets/arduino_blinky successfully set target.build_profile to debug\n\n$ newt target set arduino_blinky features=arduino_zero_pro\n\nTarget targets/arduino_blinky successfully set pkg.features to arduino_zero_pro\n$\n\n\n\n\n\n\n\nYou can now build the target, with 
 \nnewt build\n:\n\n\n$ newt build arduino_blinky\nCompiling main.c\nArchiving blinky.a\nCompiling cons_fmt.c\nCompiling cons_tty.c\nArchiving full.a\nCompiling case.c\nCompiling suite.c\nCompiling testutil.c\nArchiving testutil.a\n\nsnip\n\nApp successfully built: myproject/bin/arduino_blinky/apps/blinky/blinky.elf\n\n\n\n\n\n Congratulations! \n You have successfully built your application. Now it's time to load both the bootloader and application onto the target.\n\n\n\n\nConnect the Target\n\n\nConnect your computer to the Arduino Zero (from now on we'll call this the\ntarget) with the Micro-USB cable through the Programming Port as shown below.\nMynewt will download and debug the target through this port. You should see a\nlittle green LED come on. That means the board has power.\n\n\nNo external debugger is required.  The Arduino Zero comes with an internal\ndebugger that can be accessed by Mynewt.\n\n\nA image below shows the Arduino Zero Programming Port.\n\n\n\n\n\n\n\n\nDow
 nload the Bootloader\n\n\nExecute the command to download the bootloader.\n\n\n    \n$\n \nnewt\n \nload\n \narduino_boot\n\n\n\n\n\n\nIf the newt tool finishes without error, that means the bootloader has been\nsuccessfully loaded onto the target.\n\n\nIf, on the other hand, you get errors like the following:\n\n\n$ newt load arduino_boot -v\nLoading bootloader\nError: Downloading ~/dev/arduino_zero/bin/targets/arduino_boot/app/apps/boot/boot.elf.bin to 0x0\nOpen On-Chip Debugger 0.9.0 (2015-11-15-05:39)\nLicensed under GNU GPL v2\nFor bug reports, read\n    http://openocd.org/doc/doxygen/bugs.html\nInfo : only one transport option; autoselect \nswd\n\nadapter speed: 500 kHz\nadapter_nsrst_delay: 100\ncortex_m reset_config sysresetreq\nInfo : CMSIS-DAP: SWD  Supported\nInfo : CMSIS-DAP: JTAG Supported\nInfo : CMSIS-DAP: Interface Initialised (SWD)\nInfo : CMSIS-DAP: FW Version = 01.1F.0118\nInfo : SWCLK/TCK = 1 SWDIO/TMS = 1 TDI = 1 TDO = 1 nTRST = 0 nRESET = 1\nInfo : CMSIS-DAP: I
 nterface ready\nInfo : clock speed 500 kHz\nInfo : SWD IDCODE 0x0bc11477\nInfo : at91samd21g18.cpu: hardware has 4 breakpoints, 2 watchpoints\nError: Target not halted\n\n\n\n\n\nThen you'll need to erase your board first before downloading the \narduino_boot\n application. Here's how you do that using gdb,\nthe GNU Debugger. \n\n\n$ newt debug arduino_blinky\n\n(gdb) mon at91samd chip-erase\nchip erased\nchip erased\n(gdb) x/32wx 0\n0x0:    0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x10:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x20:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x30:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x40:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x50:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x60:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n0x70:   0xffffffff  0xffffffff  0xffffffff  0xffffffff\n(gdb) q\n\n\n\n\n\nOnce the chip is erased, go back and download the \narduino_boot\n image to the board as abo
 ve. \n\n\n\n\n Reminder if you are using Docker: \n When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like \nError: unable to find CMSIS-DAP device\n when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.\n\n\n\n\nRun the Image\n\n\nNow that the bootloader is downloaded to the target, the next step is to load\nyour image onto the Arduino Zero.  The easiest way to do this, is to use the\n\nnewt run\n command.  \nnewt run\n will automatically rebuild your program\n(if necessary), crea
 te an image, and load it onto the target device.\n\n\nHere, we will load our \narduino_blinky\n target onto the device, and we\nshould see it run:\n\n\n$ newt run arduino_blinky 0.0.0\nDebugging myproject/bin/arduino_blinky/apps/blinky/blinky.elf\nOpen On-Chip Debugger 0.9.0 (2015-09-23-21:46)\nLicensed under GNU GPL v2\nFor bug reports, read\n    http://openocd.org/doc/doxygen/bugs.html\nInfo : only one transport option; autoselect \nswd\n\nadapter speed: 500 kHz\nadapter_nsrst_delay: 100\ncortex_m reset_config sysresetreq\nInfo : CMSIS-DAP: SWD  Supported\nInfo : CMSIS-DAP: JTAG Supported\nInfo : CMSIS-DAP: Interface Initialised (SWD)\nInfo : CMSIS-DAP: FW Version = 01.1F.0118\nInfo : SWCLK/TCK = 1 SWDIO/TMS = 1 TDI = 1 TDO = 1 nTRST = 0 nRESET = 1\nInfo : CMSIS-DAP: Interface ready\nInfo : clock speed 500 kHz\nInfo : SWD IDCODE 0x0bc11477\nInfo : at91samd21g18.cpu: hardware has 4 breakpoints, 2 watchpoints\nGNU gdb (GNU Tools for ARM Embedded Processors) 7.8.0.20150604-cvs\nCopyr
 ight (C) 2014 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL version 3 or later \nhttp://gnu.org/licenses/gpl.html\n\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.  Type \nshow copying\n\nand \nshow warranty\n for details.\nThis GDB was configured as \n--host=x86_64-apple-darwin10 --target=arm-none-eabi\n.\nType \nshow configuration\n for configuration details.\nFor bug reporting instructions, please see:\n\nhttp://www.gnu.org/software/gdb/bugs/\n.\nFind the GDB manual and other documentation resources online at:\n\nhttp://www.gnu.org/software/gdb/documentation/\n.\nFor help, type \nhelp\n.\nType \napropos word\n to search for commands related to \nword\n...\nReading symbols from myproject/bin/arduino_blinky/apps/blinky/blinky.elf...done.\ntarget state: halted\ntarget halted due to debug-request, current mode: Thread\nxPSR: 0x21000000 pc: 0x0000030e msp: 0x20008000\nInfo : accepting \ngdb\n connecti
 on on tcp/3333\nInfo : SAMD MCU: SAMD21G18A (256KB Flash, 32KB RAM)\n0x0000030e in ?? ()\n(gdb) r\nThe \nremote\n target does not support \nrun\n.  Try \nhelp target\n or \ncontinue\n.\n(gdb) c\nContinuing.\n\n\n\n\n\n\n\nNOTE:\n The 0.0.0 specified after the target name to \nnewt run\n is the version\nof the image to load.  If you are not providing remote upgrade, and are just\ndeveloping locally, you can provide 0.0.0 for every image version.\n\n\nIf you want the image to run without the debugger connected, simply quit the\ndebugger and restart the board.  The image you programmed will come up and run on \nthe Arduino on the next boot!  \n\n\n\n\nWatch the LED blink\n\n\nCongratulations! You have created a Mynewt operating system running on the\nArduino Zero. The LED right next to the power LED should be blinking. It is toggled \nby one task running on the Mynewt OS.   \n\n\nWe have more fun tutorials for you to get your hands dirty. Be bold and try other \nBlinky-like \ntutorials
 \n or try enabling additional functionality \nsuch as \nremote comms\n on the current board.\n\n\nIf you see anything missing or want to send us feedback, please do so by signing up for \nappropriate mailing lists on our \nCommunity Page\n.\n\n\nKeep on hacking and blinking!", 
+            "text": "Blinky, your \"Hello World!\", on Arduino Zero\n\n\nLearn how to use packages from a default application repository of Mynewt to build your first \nHello World\n application (Blinky) on a target board. Once built using the \nnewt\n tool, this application will blink the LED lights on the target board.\n\n\nThis tutorial describes how to run Mynewt OS on Arduino Zero. Follow these simple steps and your board will be blinking in no time!\n\n\nPrerequisites\n\n\nEnsure that you have met the following prerequisites before continuing with this tutorial:\n\n\n\n\nHave an Arduino Zero board.\n\nNote: There are many flavors of Arduino. Make sure you are using an Arduino Zero. See below for the versions of Arduino Zero that are compatible with this tutorial.\n\n\nHave Internet connectivity to fetch remote Mynewt components.\n\n\nHave a Micro-USB cable to connect the board and the computer.\n\n\nHave a computer to build a Mynewt application and connect to your board over U
 SB.\n\n\nInstall the Newt tool and toolchains (See \nBasic Setup\n).\n\n\nCreate a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in \nCreating Your First Project\n.\n\n\nRead the Mynewt OS \nConcepts\n section. \n\n\n\n\nThis tutorial has been tested on the following three Arduino Zero boards - Zero, M0 Pro, and Zero-Pro.\n\n\n\n\n\n\n\n\nMynewt has not been tested on Arduino M0 which has no internal debugger support.\n\n\n\n\nCreate a Project\n\n\nCreate a new project if you do not have an existing one.  You can skip this step and proceed to \nfetch external packages\n if you already created a project.  \n\n\nRun the following commands to create a new project: \n\n\n    $ mkdir ~/dev\n    $ cd ~/dev\n    $ newt new myproj\n    Downloading project skeleton from apache/incubator-mynewt-blinky...\n    Installing skeleton in myproj...\n    Project myproj successfully created.\n    $ cd myproj\n    $ n
 ewt install\n    apache-mynewt-core\n    $\n\n\n\n\n\n\n\n Fetch External Packages\n\n\nMynewt uses source code provided directly from the chip manufacturer for\nlow level operations. Sometimes this code is licensed only for the specific manufacturer of the chipset and cannot live in the Apache Mynewt repository. That happens to be the case for the Arduino Zero board which uses Atmel SAMD21. 

<TRUNCATED>


[07/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_dirent_name/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_dirent_name/index.html b/develop/os/modules/fs/fs/fs_dirent_name/index.html
index fb314ce..8895a56 100644
--- a/develop/os/modules/fs/fs/fs_dirent_name/index.html
+++ b/develop/os/modules/fs/fs/fs_dirent_name/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_filelen/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_filelen/index.html b/develop/os/modules/fs/fs/fs_filelen/index.html
index 9664ba4..a872a73 100644
--- a/develop/os/modules/fs/fs/fs_filelen/index.html
+++ b/develop/os/modules/fs/fs/fs_filelen/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_getpos/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_getpos/index.html b/develop/os/modules/fs/fs/fs_getpos/index.html
index 454f429..e860ee5 100644
--- a/develop/os/modules/fs/fs/fs_getpos/index.html
+++ b/develop/os/modules/fs/fs/fs_getpos/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_mkdir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_mkdir/index.html b/develop/os/modules/fs/fs/fs_mkdir/index.html
index 3dd5d02..ac499d6 100644
--- a/develop/os/modules/fs/fs/fs_mkdir/index.html
+++ b/develop/os/modules/fs/fs/fs_mkdir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_open/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_open/index.html b/develop/os/modules/fs/fs/fs_open/index.html
index 224ed9d..a5428bd 100644
--- a/develop/os/modules/fs/fs/fs_open/index.html
+++ b/develop/os/modules/fs/fs/fs_open/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_opendir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_opendir/index.html b/develop/os/modules/fs/fs/fs_opendir/index.html
index b2beea9..ab8006f 100644
--- a/develop/os/modules/fs/fs/fs_opendir/index.html
+++ b/develop/os/modules/fs/fs/fs_opendir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_ops/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_ops/index.html b/develop/os/modules/fs/fs/fs_ops/index.html
index b7579b2..391d522 100644
--- a/develop/os/modules/fs/fs/fs_ops/index.html
+++ b/develop/os/modules/fs/fs/fs_ops/index.html
@@ -482,17 +482,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_read/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_read/index.html b/develop/os/modules/fs/fs/fs_read/index.html
index 5b1984f..9f75d70 100644
--- a/develop/os/modules/fs/fs/fs_read/index.html
+++ b/develop/os/modules/fs/fs/fs_read/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_readdir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_readdir/index.html b/develop/os/modules/fs/fs/fs_readdir/index.html
index 4e6300c..7cd8da6 100644
--- a/develop/os/modules/fs/fs/fs_readdir/index.html
+++ b/develop/os/modules/fs/fs/fs_readdir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_register/index.html b/develop/os/modules/fs/fs/fs_register/index.html
index 3629e35..9e38f1f 100644
--- a/develop/os/modules/fs/fs/fs_register/index.html
+++ b/develop/os/modules/fs/fs/fs_register/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_rename/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_rename/index.html b/develop/os/modules/fs/fs/fs_rename/index.html
index ff7ecdd..8572b2f 100644
--- a/develop/os/modules/fs/fs/fs_rename/index.html
+++ b/develop/os/modules/fs/fs/fs_rename/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_return_codes/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_return_codes/index.html b/develop/os/modules/fs/fs/fs_return_codes/index.html
index c7157d0..3d357e8 100644
--- a/develop/os/modules/fs/fs/fs_return_codes/index.html
+++ b/develop/os/modules/fs/fs/fs_return_codes/index.html
@@ -470,17 +470,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_seek/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_seek/index.html b/develop/os/modules/fs/fs/fs_seek/index.html
index 78ba500..dbac53e 100644
--- a/develop/os/modules/fs/fs/fs_seek/index.html
+++ b/develop/os/modules/fs/fs/fs_seek/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_unlink/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_unlink/index.html b/develop/os/modules/fs/fs/fs_unlink/index.html
index 083ea35..84a93ae 100644
--- a/develop/os/modules/fs/fs/fs_unlink/index.html
+++ b/develop/os/modules/fs/fs/fs_unlink/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_write/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_write/index.html b/develop/os/modules/fs/fs/fs_write/index.html
index 15cdb7e..356f841 100644
--- a/develop/os/modules/fs/fs/fs_write/index.html
+++ b/develop/os/modules/fs/fs/fs_write/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fsutil_read_file/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fsutil_read_file/index.html b/develop/os/modules/fs/fs/fsutil_read_file/index.html
index 6ce2478..a78ea5f 100644
--- a/develop/os/modules/fs/fs/fsutil_read_file/index.html
+++ b/develop/os/modules/fs/fs/fsutil_read_file/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fsutil_write_file/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fsutil_write_file/index.html b/develop/os/modules/fs/fs/fsutil_write_file/index.html
index 4bf099e..ae57e94 100644
--- a/develop/os/modules/fs/fs/fsutil_write_file/index.html
+++ b/develop/os/modules/fs/fs/fsutil_write_file/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/nffs/nffs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs/index.html b/develop/os/modules/fs/nffs/nffs/index.html
index 4f9d4ad..99621b0 100644
--- a/develop/os/modules/fs/nffs/nffs/index.html
+++ b/develop/os/modules/fs/nffs/nffs/index.html
@@ -470,17 +470,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/nffs/nffs_area_desc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_area_desc/index.html b/develop/os/modules/fs/nffs/nffs_area_desc/index.html
index 1696d31..64b9ff1 100644
--- a/develop/os/modules/fs/nffs/nffs_area_desc/index.html
+++ b/develop/os/modules/fs/nffs/nffs_area_desc/index.html
@@ -490,17 +490,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/nffs/nffs_config/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_config/index.html b/develop/os/modules/fs/nffs/nffs_config/index.html
index 7f1fe38..f448e1c 100644
--- a/develop/os/modules/fs/nffs/nffs_config/index.html
+++ b/develop/os/modules/fs/nffs/nffs_config/index.html
@@ -490,17 +490,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/nffs/nffs_detect/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_detect/index.html b/develop/os/modules/fs/nffs/nffs_detect/index.html
index a20cb80..33c85d2 100644
--- a/develop/os/modules/fs/nffs/nffs_detect/index.html
+++ b/develop/os/modules/fs/nffs/nffs_detect/index.html
@@ -498,17 +498,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/nffs/nffs_format/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_format/index.html b/develop/os/modules/fs/nffs/nffs_format/index.html
index 7ba226f..b568e40 100644
--- a/develop/os/modules/fs/nffs/nffs_format/index.html
+++ b/develop/os/modules/fs/nffs/nffs_format/index.html
@@ -498,17 +498,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/nffs/nffs_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_init/index.html b/develop/os/modules/fs/nffs/nffs_init/index.html
index da63a8c..63980c2 100644
--- a/develop/os/modules/fs/nffs/nffs_init/index.html
+++ b/develop/os/modules/fs/nffs/nffs_init/index.html
@@ -498,17 +498,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/nffs/nffs_internals/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_internals/index.html b/develop/os/modules/fs/nffs/nffs_internals/index.html
index 8730919..9a2bc0a 100644
--- a/develop/os/modules/fs/nffs/nffs_internals/index.html
+++ b/develop/os/modules/fs/nffs/nffs_internals/index.html
@@ -470,17 +470,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/otherfs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/otherfs/index.html b/develop/os/modules/fs/otherfs/index.html
index ba330d7..b048c62 100644
--- a/develop/os/modules/fs/otherfs/index.html
+++ b/develop/os/modules/fs/otherfs/index.html
@@ -430,17 +430,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal/index.html b/develop/os/modules/hal/hal/index.html
index 7c0cf08..f75abb2 100644
--- a/develop/os/modules/hal/hal/index.html
+++ b/develop/os/modules/hal/hal/index.html
@@ -423,17 +423,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_api/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_api/index.html b/develop/os/modules/hal/hal_api/index.html
index 7c81398..fd5cc7c 100644
--- a/develop/os/modules/hal/hal_api/index.html
+++ b/develop/os/modules/hal/hal_api/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_bsp/hal_bsp/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_bsp/hal_bsp/index.html b/develop/os/modules/hal/hal_bsp/hal_bsp/index.html
index 39b35b2..440310f 100644
--- a/develop/os/modules/hal/hal_bsp/hal_bsp/index.html
+++ b/develop/os/modules/hal/hal_bsp/hal_bsp/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_creation/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_creation/index.html b/develop/os/modules/hal/hal_creation/index.html
index fb1394a..fb18ae4 100644
--- a/develop/os/modules/hal/hal_creation/index.html
+++ b/develop/os/modules/hal/hal_creation/index.html
@@ -423,17 +423,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_flash/hal_flash/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_flash/hal_flash/index.html b/develop/os/modules/hal/hal_flash/hal_flash/index.html
index d85c7b3..011e266 100644
--- a/develop/os/modules/hal/hal_flash/hal_flash/index.html
+++ b/develop/os/modules/hal/hal_flash/hal_flash/index.html
@@ -540,17 +540,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_flash/hal_flash_int/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_flash/hal_flash_int/index.html b/develop/os/modules/hal/hal_flash/hal_flash_int/index.html
index bc2038a..48c4d14 100644
--- a/develop/os/modules/hal/hal_flash/hal_flash_int/index.html
+++ b/develop/os/modules/hal/hal_flash/hal_flash_int/index.html
@@ -540,17 +540,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_gpio/hal_gpio/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_gpio/hal_gpio/index.html b/develop/os/modules/hal/hal_gpio/hal_gpio/index.html
index 36ed6e9..5b06300 100644
--- a/develop/os/modules/hal/hal_gpio/hal_gpio/index.html
+++ b/develop/os/modules/hal/hal_gpio/hal_gpio/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_i2c/hal_i2c/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_i2c/hal_i2c/index.html b/develop/os/modules/hal/hal_i2c/hal_i2c/index.html
index b7b355c..8080d7b 100644
--- a/develop/os/modules/hal/hal_i2c/hal_i2c/index.html
+++ b/develop/os/modules/hal/hal_i2c/hal_i2c/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_in_libraries/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_in_libraries/index.html b/develop/os/modules/hal/hal_in_libraries/index.html
index 5eebcfc..8e2076b 100644
--- a/develop/os/modules/hal/hal_in_libraries/index.html
+++ b/develop/os/modules/hal/hal_in_libraries/index.html
@@ -423,17 +423,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html b/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html
index 43d30d4..a77bbdf 100644
--- a/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html
+++ b/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_spi/hal_spi/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_spi/hal_spi/index.html b/develop/os/modules/hal/hal_spi/hal_spi/index.html
index 5b8c04a..74ab2ee 100644
--- a/develop/os/modules/hal/hal_spi/hal_spi/index.html
+++ b/develop/os/modules/hal/hal_spi/hal_spi/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_system/hal_sys/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_system/hal_sys/index.html b/develop/os/modules/hal/hal_system/hal_sys/index.html
index 486d45a..0937cd8 100644
--- a/develop/os/modules/hal/hal_system/hal_sys/index.html
+++ b/develop/os/modules/hal/hal_system/hal_sys/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_timer/hal_timer/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_timer/hal_timer/index.html b/develop/os/modules/hal/hal_timer/hal_timer/index.html
index b321d46..d36a742 100644
--- a/develop/os/modules/hal/hal_timer/hal_timer/index.html
+++ b/develop/os/modules/hal/hal_timer/hal_timer/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_uart/hal_uart/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_uart/hal_uart/index.html b/develop/os/modules/hal/hal_uart/hal_uart/index.html
index ca13f58..f3c0711 100644
--- a/develop/os/modules/hal/hal_uart/hal_uart/index.html
+++ b/develop/os/modules/hal/hal_uart/hal_uart/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html b/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html
index d750999..17dc8a3 100644
--- a/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html
+++ b/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html
@@ -520,17 +520,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/imgmgr/imgmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/imgmgr/imgmgr/index.html b/develop/os/modules/imgmgr/imgmgr/index.html
index e011590..e4516e5 100644
--- a/develop/os/modules/imgmgr/imgmgr/index.html
+++ b/develop/os/modules/imgmgr/imgmgr/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/imgmgr/imgr_ver_parse/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/imgmgr/imgr_ver_parse/index.html b/develop/os/modules/imgmgr/imgr_ver_parse/index.html
index f113757..2ebfec0 100644
--- a/develop/os/modules/imgmgr/imgr_ver_parse/index.html
+++ b/develop/os/modules/imgmgr/imgr_ver_parse/index.html
@@ -427,17 +427,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/imgmgr/imgr_ver_str/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/imgmgr/imgr_ver_str/index.html b/develop/os/modules/imgmgr/imgr_ver_str/index.html
index 3a7fa8a..a24f91e 100644
--- a/develop/os/modules/imgmgr/imgr_ver_str/index.html
+++ b/develop/os/modules/imgmgr/imgr_ver_str/index.html
@@ -427,17 +427,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/json/json/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json/index.html b/develop/os/modules/json/json/index.html
index 22ba2a9..4aab67c 100644
--- a/develop/os/modules/json/json/index.html
+++ b/develop/os/modules/json/json/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li class="active"><a href="./">JSON</a>
   
   
@@ -731,9 +720,9 @@ This function should collect all the data encoder function generates. It can col
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../../elua/lua_main/>
+    <a href=../../baselibc/>
         <span class="fa fa-arrow-left"></span>
-        Previous: lua_main
+        Previous: Baselibc library
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/json/json_encode_object_entry/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_encode_object_entry/index.html b/develop/os/modules/json/json_encode_object_entry/index.html
index 42cd98e..1379374 100644
--- a/develop/os/modules/json/json_encode_object_entry/index.html
+++ b/develop/os/modules/json/json_encode_object_entry/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/json/json_encode_object_finish/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_encode_object_finish/index.html b/develop/os/modules/json/json_encode_object_finish/index.html
index dbe5b2a..36d85cb 100644
--- a/develop/os/modules/json/json_encode_object_finish/index.html
+++ b/develop/os/modules/json/json_encode_object_finish/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/json/json_encode_object_key/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_encode_object_key/index.html b/develop/os/modules/json/json_encode_object_key/index.html
index 448a127..4725bdd 100644
--- a/develop/os/modules/json/json_encode_object_key/index.html
+++ b/develop/os/modules/json/json_encode_object_key/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/json/json_encode_object_start/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_encode_object_start/index.html b/develop/os/modules/json/json_encode_object_start/index.html
index 267d957..376371b 100644
--- a/develop/os/modules/json/json_encode_object_start/index.html
+++ b/develop/os/modules/json/json_encode_object_start/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/json/json_read_object/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_read_object/index.html b/develop/os/modules/json/json_read_object/index.html
index 48bd4e5..fdbe64d 100644
--- a/develop/os/modules/json/json_read_object/index.html
+++ b/develop/os/modules/json/json_read_object/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/logs/logs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/logs/logs/index.html b/develop/os/modules/logs/logs/index.html
index 5a7128c..ca484fe 100644
--- a/develop/os/modules/logs/logs/index.html
+++ b/develop/os/modules/logs/logs/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/shell/shell/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell/index.html b/develop/os/modules/shell/shell/index.html
index 744cb13..2311237 100644
--- a/develop/os/modules/shell/shell/index.html
+++ b/develop/os/modules/shell/shell/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/shell/shell_cmd_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell_cmd_register/index.html b/develop/os/modules/shell/shell_cmd_register/index.html
index 0528545..c8ab247 100644
--- a/develop/os/modules/shell/shell_cmd_register/index.html
+++ b/develop/os/modules/shell/shell_cmd_register/index.html
@@ -443,17 +443,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/shell/shell_evq_set/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell_evq_set/index.html b/develop/os/modules/shell/shell_evq_set/index.html
index 5b5e943..9a404ae 100644
--- a/develop/os/modules/shell/shell_evq_set/index.html
+++ b/develop/os/modules/shell/shell_evq_set/index.html
@@ -443,17 +443,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/shell/shell_nlip_input_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell_nlip_input_register/index.html b/develop/os/modules/shell/shell_nlip_input_register/index.html
index 023d6a6..a720b5d 100644
--- a/develop/os/modules/shell/shell_nlip_input_register/index.html
+++ b/develop/os/modules/shell/shell_nlip_input_register/index.html
@@ -443,17 +443,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/shell/shell_nlip_output/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell_nlip_output/index.html b/develop/os/modules/shell/shell_nlip_output/index.html
index ec920c8..565fbc8 100644
--- a/develop/os/modules/shell/shell_nlip_output/index.html
+++ b/develop/os/modules/shell/shell_nlip_output/index.html
@@ -443,17 +443,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/split/split/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/split/split/index.html b/develop/os/modules/split/split/index.html
index 2e836ed..44cb84c 100644
--- a/develop/os/modules/split/split/index.html
+++ b/develop/os/modules/split/split/index.html
@@ -394,17 +394,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/stats/stats/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/stats/stats/index.html b/develop/os/modules/stats/stats/index.html
index 62c5eb1..3686639 100644
--- a/develop/os/modules/stats/stats/index.html
+++ b/develop/os/modules/stats/stats/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/sysinitconfig/sysconfig_error/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/sysinitconfig/sysconfig_error/index.html b/develop/os/modules/sysinitconfig/sysconfig_error/index.html
index 7e8dcac..f63006e 100644
--- a/develop/os/modules/sysinitconfig/sysconfig_error/index.html
+++ b/develop/os/modules/sysinitconfig/sysconfig_error/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/sysinitconfig/sysinitconfig/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/sysinitconfig/sysinitconfig/index.html b/develop/os/modules/sysinitconfig/sysinitconfig/index.html
index f401301..f03002d 100644
--- a/develop/os/modules/sysinitconfig/sysinitconfig/index.html
+++ b/develop/os/modules/sysinitconfig/sysinitconfig/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/testutil/test_assert/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_assert/index.html b/develop/os/modules/testutil/test_assert/index.html
index bb62a59..db35786 100644
--- a/develop/os/modules/testutil/test_assert/index.html
+++ b/develop/os/modules/testutil/test_assert/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/testutil/test_case/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_case/index.html b/develop/os/modules/testutil/test_case/index.html
index f202fbe..eb10d40 100644
--- a/develop/os/modules/testutil/test_case/index.html
+++ b/develop/os/modules/testutil/test_case/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/testutil/test_decl/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_decl/index.html b/develop/os/modules/testutil/test_decl/index.html
index 3881bfe..7b99526 100644
--- a/develop/os/modules/testutil/test_decl/index.html
+++ b/develop/os/modules/testutil/test_decl/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/testutil/test_pass/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_pass/index.html b/develop/os/modules/testutil/test_pass/index.html
index 168b9f8..ac6f326 100644
--- a/develop/os/modules/testutil/test_pass/index.html
+++ b/develop/os/modules/testutil/test_pass/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/testutil/test_suite/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_suite/index.html b/develop/os/modules/testutil/test_suite/index.html
index f9fa57a..591d9e3 100644
--- a/develop/os/modules/testutil/test_suite/index.html
+++ b/develop/os/modules/testutil/test_suite/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/testutil/testutil/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/testutil/index.html b/develop/os/modules/testutil/testutil/index.html
index 8c1bdf4..2a0e0a7 100644
--- a/develop/os/modules/testutil/testutil/index.html
+++ b/develop/os/modules/testutil/testutil/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/testutil/tu_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/tu_init/index.html b/develop/os/modules/testutil/tu_init/index.html
index ad6dbae..1d7762e 100644
--- a/develop/os/modules/testutil/tu_init/index.html
+++ b/develop/os/modules/testutil/tu_init/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/testutil/tu_restart/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/tu_restart/index.html b/develop/os/modules/testutil/tu_restart/index.html
index e538bfe..6f450ca 100644
--- a/develop/os/modules/testutil/tu_restart/index.html
+++ b/develop/os/modules/testutil/tu_restart/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/os_user_guide/index.html
----------------------------------------------------------------------
diff --git a/develop/os/os_user_guide/index.html b/develop/os/os_user_guide/index.html
index d32ba87..3c94f50 100644
--- a/develop/os/os_user_guide/index.html
+++ b/develop/os/os_user_guide/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../modules/elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../modules/json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/STM32F303/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/STM32F303/index.html b/develop/os/tutorials/STM32F303/index.html
index c7096bc..93ee5f2 100644
--- a/develop/os/tutorials/STM32F303/index.html
+++ b/develop/os/tutorials/STM32F303/index.html
@@ -355,19 +355,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/add_newtmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/add_newtmgr/index.html b/develop/os/tutorials/add_newtmgr/index.html
index ec3640e..f74224a 100644
--- a/develop/os/tutorials/add_newtmgr/index.html
+++ b/develop/os/tutorials/add_newtmgr/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/add_shell/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/add_shell/index.html b/develop/os/tutorials/add_shell/index.html
index d11d7e6..66fb4ca 100644
--- a/develop/os/tutorials/add_shell/index.html
+++ b/develop/os/tutorials/add_shell/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/air_quality_ble/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/air_quality_ble/index.html b/develop/os/tutorials/air_quality_ble/index.html
index 56eb100..a74b1a8 100644
--- a/develop/os/tutorials/air_quality_ble/index.html
+++ b/develop/os/tutorials/air_quality_ble/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/air_quality_sensor/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/air_quality_sensor/index.html b/develop/os/tutorials/air_quality_sensor/index.html
index 0db8949..a3893dc 100644
--- a/develop/os/tutorials/air_quality_sensor/index.html
+++ b/develop/os/tutorials/air_quality_sensor/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ./
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/arduino_zero/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/arduino_zero/index.html b/develop/os/tutorials/arduino_zero/index.html
index 4b8fb03..588f1c7 100644
--- a/develop/os/tutorials/arduino_zero/index.html
+++ b/develop/os/tutorials/arduino_zero/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -555,29 +542,41 @@
 <p>Learn how to use packages from a default application repository of Mynewt to build your first <em>Hello World</em> application (Blinky) on a target board. Once built using the <em>newt</em> tool, this application will blink the LED lights on the target board.</p>
 <p>This tutorial describes how to run Mynewt OS on Arduino Zero. Follow these simple steps and your board will be blinking in no time!</p>
 <h3 id="prerequisites">Prerequisites</h3>
-<p>Before tackling this tutorial, it's best to read about Mynewt in the <a href="../../get_started/get_started">Introduction</a> section of this documentation.</p>
-<h3 id="equipment">Equipment</h3>
-<p>You will need the following equipment</p>
+<p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
-<li>An Arduino Zero board.  NOTE: There are many flavors of Arduino. Ensure that
-you have an Arduino Zero. See below for the versions of Arduino Zero that are
-compatible with this tutorial</li>
-<li>A computer that can connect to the Arduino Zero over USB</li>
-<li>A USB cable (Type A to micro B) that can connect the computer to the Arduino</li>
-<li>The Mynewt Release</li>
+<li>Have an Arduino Zero board.<br />
+Note: There are many flavors of Arduino. Make sure you are using an Arduino Zero. See below for the versions of Arduino Zero that are compatible with this tutorial.</li>
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a Micro-USB cable to connect the board and the computer.</li>
+<li>Have a computer to build a Mynewt application and connect to your board over USB.</li>
+<li>Install the Newt tool and toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
+<li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>
+<li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section. </li>
 </ul>
 <p>This tutorial has been tested on the following three Arduino Zero boards - Zero, M0 Pro, and Zero-Pro.</p>
 <p><img src="https://www.arduino.cc/en/uploads/Main/Zero_Usb_Ports.jpg" alt="Drawing" style="width: 390px;"/>
 <img src="http://www.arduino.org/images/products/Arduino-M0Pro-flat.jpg" alt="Drawing" style="width: 310px;"/>
 <img src="http://www.arduino.org//images/products/ArduinoZeroPro-flat-org.jpg" alt="Drawing" style="width: 310px;"/></p>
 <p>Mynewt has not been tested on Arduino M0 which has no internal debugger support.</p>
-<h3 id="install-mynewt-and-newt">Install Mynewt and Newt</h3>
-<ul>
-<li>If you have not already done so, install Newt as shown in the <a href="../../../newt/install/newt_mac/">Newt install tutorial</a></li>
-<li>If you have not already done so, create a project as shown in the Quick Start guide on how to <a href="../../get_started/project_create/">Create Your First Project</a>. Skip the testing and building the project steps in that tutorial since you will be defining a target for your Arduino board in this tutorial.</li>
-</ul>
 <p><br></p>
-<h3 id="fetch-external-packages">Fetch External Packages</h3>
+<h3 id="create-a-project">Create a Project</h3>
+<p>Create a new project if you do not have an existing one.  You can skip this step and proceed to <a href="#fetchexternal">fetch external packages</a> if you already created a project.  </p>
+<p>Run the following commands to create a new project: </p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ mkdir ~/dev
+    $ cd ~/dev
+    $ newt new myproj
+    Downloading project skeleton from apache/incubator-mynewt-blinky...
+    Installing skeleton in myproj...
+    Project myproj successfully created.
+    $ cd myproj
+    $ newt install
+    apache-mynewt-core
+    $
+</pre></div>
+
+
+<p><br></p>
+<h3 id="fetch-external-packages"><a name="fetchexternal"></a> Fetch External Packages</h3>
 <p>Mynewt uses source code provided directly from the chip manufacturer for
 low level operations. Sometimes this code is licensed only for the specific manufacturer of the chipset and cannot live in the Apache Mynewt repository. That happens to be the case for the Arduino Zero board which uses Atmel SAMD21. Runtime's github repository hosts such external third-party packages and the Newt tool can fetch them.</p>
 <p>To fetch the package with MCU support for Atmel SAMD21 for Arduino Zero from the Runtime git repository, you need to add
@@ -594,23 +593,21 @@ project.repositories:
 </span>
 repository.apache-mynewt-core:
     type: github
-    vers: 0-latest
+    vers: 1-latest
     user: apache
     repo: incubator-mynewt-core
 
 <span style="background-color: #ffffcc">repository.mynewt_arduino_zero:
 </span><span style="background-color: #ffffcc">    type: github
-</span><span style="background-color: #ffffcc">    vers: 0-latest
+</span><span style="background-color: #ffffcc">    vers: 1-latest
 </span><span style="background-color: #ffffcc">    user: runtimeinc
 </span><span style="background-color: #ffffcc">    repo: mynewt_arduino_zero
 </span>$
 </pre></div>
 
 
-<p><br></p>
-<p>Once you've edited your <code>project.yml</code> file, the next step is to install the
-project dependencies, this can be done with the <code>newt install</code> command
-(to see more output, provide the <code>-v</code> verbose option.):</p>
+<p><br>
+Install the project dependencies using the <code>newt install</code> command (You can specify <code>-v</code> for verbose output):</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt install
 apache-mynewt-core
 mynewt_arduino_zero
@@ -619,12 +616,12 @@ $
 
 
 <p><br></p>
-<p><strong>NOTE:</strong> If there has been a new release of a repo used in your project since you last installed it, the <code>0-latest</code> version for the repo in the <code>project.yml</code> file will refer to the new release and will not match the installed files. In that case you will get an error message saying so and you will need to run <code>newt upgrade</code> to overwrite the existing files with the latest codebase.</p>
+<p><strong>NOTE:</strong> If there has been a new release of a repo used in your project since you last installed it, the <code>1-latest</code> version for the repo in the <code>project.yml</code> file will refer to the new release and will not match the installed files. In that case you will get an error message saying so and you will need to run <code>newt upgrade</code> to overwrite the existing files with the latest codebase.</p>
 <p><br></p>
-<h3 id="create-your-bootloader-target">Create your bootloader target</h3>
-<p>Next, you need to tell Newt what to build.  For the Arduino Zero, we are going to
-generate both a bootloader, and an image target.</p>
-<p>To generate the bootloader target, you need to specify the following options. The output of the commands (indicating success) have been suppressed for easier readability.</p>
+<h3 id="create-a-target-for-the-bootloader">Create a Target for the Bootloader</h3>
+<p>You need to create two targets, one for the bootloader and one for the Blinky application.<br />
+<br>
+Run the following <code>newt target</code> commands, from your project directory (ex. ~/dev/myproj), to create a bootloader target for the Arduino Zero Pro board.  We name the target <code>arduino_boot</code>.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create arduino_boot
 $ newt target set arduino_boot bsp=@mynewt_arduino_zero/hw/bsp/arduino_zero
 Target targets/arduino_boot successfully created
@@ -634,13 +631,14 @@ $ newt target set arduino_boot build_profile=optimized
 Target targets/arduino_boot successfully set target.build_profile to optimized
 $ newt target set arduino_boot syscfg=BSP_ARDUINO_ZERO_PRO=1
 Target targets/arduino_boot successfully set target.syscfg to BSP_ARDUINO_ZERO_PRO=1
+$
 </pre></div>
 
 
-<p><br></p>
-<p>These commands do a few things:</p>
+<p><strong>Note:</strong> If you have an Arduino Zero instead of a Arduino Zero Pro board, replace <code>BSP_ARDUINO_ZERO_PRO</code>  with <code>BSP_ARDUINO_ZERO</code> in the last <code>newt target set</code> command.</p>
+<p>These commands perform the following:</p>
 <ul>
-<li>Create a target named <code>arduino_boot</code>, in order to build the Arduino Zero Bootloader.</li>
+<li>Create a target named <code>arduino_boot</code>  for the Arduino Zero Bootloader. </li>
 <li>Set the application for the <code>arduino_boot</code> target to the default Apache Mynewt
     bootloader (<code>@apache-mynewt-core/apps/boot</code>)</li>
 <li>Set the board support package for the target to
@@ -649,50 +647,12 @@ Target targets/arduino_boot successfully set target.syscfg to BSP_ARDUINO_ZERO_P
 <li>Use the "optimized" build profile for the <code>arduino_boot</code> target.  This
     instructs Newt to generate smaller and more efficient code for this target.
     This setting is necessary due to the bootloader's strict size constraints.</li>
-<li>Tells the Board Support Package to enable support for the Arduino Zero Pro or the Arduino Zero. Set it to <code>arduino_zero</code> or <code>arduino_zero_pro</code> depending on the board you have.</li>
+<li>Sets the system configuration setting for Board Support Package to support the Arduino Zero Pro. </li>
 </ul>
-<p><br></p>
-<p>If you'd rather, you can also take care of that last part by editing the <code>syscfg.yml</code> file 
-for the target to set options -- at least one that is <em>required</em>.
-Look in the directory for the target, as defined by the target (in this case <code>targets/arduino_boot</code>)
-and edit the syscfg.yml file. It should look like this when you're done:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">### Package: targets/arduino_boot
-
-syscfg.vals:
-    BSP_ARDUINO_ZERO_PRO: 1
-</pre></div>
-
-
-<p>If you have an Arduino Zero Pro or M0 Pro, you'll want <code>BSP_ARDUINO_ZEZRO_PRO: 1</code>. If you have the Arduino Zero, 
-you'll want <code>BSP_ARDUINO_ZERO: 1</code> instead.</p>
-<p>For more information on setting options, see the section on <a href="../../get_started/vocabulary/">Concepts</a>.</p>
-<p>For now, we're not going to set any more options or enable any more features of Mynewt OS.</p>
-<p><br></p>
-<h3 id="build-your-bootloader">Build your bootloader</h3>
-<p>Once you've configured the bootloader target, the next step is to build the bootloader for your Arduino. You can do this by using the <code>newt build</code> command:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build arduino_boot
-Compiling asprintf.c
-Compiling atoi.c
-Compiling atol.c
-Compiling atoll.c
-Compiling bsearch.c
-Compiling bzero.c
-Compiling calloc.c
-Compiling fgets.c
-Compiling inline.c
-&lt;snip&gt;
-App successfully built: myproject/bin/arduino_boot/apps/boot/boot.elf
-</pre></div>
-
-
-<p>If this command finishes successfully, you have successfully built the Arduino
-bootloader, and the next step is to build your application for the Arduino
-board.</p>
-<p><br></p>
-<h3 id="build-your-blinky-app">Build your blinky app</h3>
-<p>To create and download your application, you create another target, this one pointing to the application you want to download to the Arduino board.<br />
-In this tutorial,  we will use the default application that comes with your project, <code>apps/blinky</code>:</p>
-<p><strong>Note</strong>: Remember to set features to <code>arduino_zero</code> if your board is Arduino Zero and not a Pro!</p>
+<p>See the <a href="../../get_started/vocabulary/">Concepts</a> section for more information on setting options.
+<br></p>
+<h3 id="create-a-target-for-the-blinky-application">Create a Target for the Blinky Application</h3>
+<p>Run the following <code>newt target</code> commands to create your Blinky application target.  We name the application target <code>arduino_blinky</code>.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create arduino_blinky
 Target targets/arduino_blinky successfully created
 $ newt target set arduino_blinky app=apps/blinky
@@ -701,51 +661,84 @@ $ newt target set arduino_blinky bsp=@mynewt_arduino_zero/hw/bsp/arduino_zero
 Target targets/arduino_blinky successfully set target.bsp to @mynewt_arduino_zero/hw/bsp/arduino_zero
 $ newt target set arduino_blinky build_profile=debug
 Target targets/arduino_blinky successfully set target.build_profile to debug
-<span style="background-color: #ffffcc">$ newt target set arduino_blinky features=arduino_zero_pro
-</span>Target targets/arduino_blinky successfully set pkg.features to arduino_zero_pro
+$ newt target set arduino_blinky syscfg=BSP_ARDUINO_ZERO_PRO=1
+Target targets/arduino_boot successfully set target.syscfg to BSP_ARDUINO_ZERO_PRO=1
 $
 </pre></div>
 
 
+<p><strong>Note:</strong> If you have an Arduino Zero instead of a Arduino Zero Pro board, replace <code>BSP_ARDUINO_ZERO_PRO</code>  with <code>BSP_ARDUINO_ZERO</code> in the last <code>newt target set</code> command.</p>
 <p><br></p>
-<p>You can now build the target, with <code>newt build</code>:</p>
+<h3 id="build-the-bootloader">Build the Bootloader</h3>
+<p>Run the <code>newt build arduino_boot</code> command to build a bootloader for your arduino board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build arduino_boot
+Building target targets/arduino_boot
+Compiling bin/targets/arduino_boot/generated/src/arduino_boot-sysinit-app.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+Compiling bin/targets/arduino_boot/generated/src/arduino_boot-sysflash.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_validate.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/bootutil_misc.c
+Compiling repos/apache-mynewt-core/apps/boot/src/boot.c
+Compiling repos/apache-mynewt-core/crypto/mbedtls/src/arc4.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/loader.c
+Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aes.c
+
+      ....
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/arduino_boot/app/apps/boot/boot.elf
+Target successfully built: targets/arduino_boot
+</pre></div>
+
+
+<p><br></p>
+<h3 id="build-the-blinky-application">Build the Blinky Application</h3>
+<p>Run the <code>newt build arduino_blinky</code> command to build your Blinky application image:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build arduino_blinky
-Compiling main.c
-Archiving blinky.a
-Compiling cons_fmt.c
-Compiling cons_tty.c
-Archiving full.a
-Compiling case.c
-Compiling suite.c
-Compiling testutil.c
-Archiving testutil.a
-&lt;snip&gt;
-App successfully built: myproject/bin/arduino_blinky/apps/blinky/blinky.elf
+Building target targets/arduino_blinky
+Compiling repos/apache-mynewt-core/hw/hal/src/hal_flash.c
+Compiling apps/blinky/src/main.c
+Compiling repos/mynewt_arduino_zero/hw/mcu/atmel/samd21xx/src/sam0/drivers/i2s/i2s.c
+Compiling repos/mynewt_arduino_zero/hw/bsp/arduino_zero/src/hal_bsp.c
+Compiling repos/mynewt_arduino_zero/hw/mcu/atmel/samd21xx/src/sam0/drivers/i2s/i2s_callback.c
+Compiling repos/mynewt_arduino_zero/hw/mcu/atmel/samd21xx/src/sam0/drivers/nvm/nvm.c
+
+     ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/arduino_blinky/app/apps/blinky/blinky.elf
+Target successfully built: targets/arduino_blinky
 </pre></div>
 
 
-<p><font color="#FF0000"> Congratulations! </font> You have successfully built your application. Now it's time to load both the bootloader and application onto the target.</p>
 <p><br></p>
-<h3 id="connect-the-target">Connect the Target</h3>
+<h3 id="connect-to-the-board">Connect to the Board</h3>
 <p>Connect your computer to the Arduino Zero (from now on we'll call this the
-target) with the Micro-USB cable through the Programming Port as shown below.
-Mynewt will download and debug the target through this port. You should see a
+target) with a Micro-USB cable through the Programming Port as shown below.
+Mynewt will load the image onto the board and  debug the target through this port. You should see a
 little green LED come on. That means the board has power.</p>
 <p>No external debugger is required.  The Arduino Zero comes with an internal
 debugger that can be accessed by Mynewt.</p>
-<p>A image below shows the Arduino Zero Programming Port.</p>
+<p>The images below show the Arduino Zero Programming Port.</p>
 <p><img src="https://www.arduino.cc/en/uploads/Main/Zero_Usb_Ports.jpg" alt="Drawing" style="width: 400px;"/>
 <img src="http://www.arduino.org//images/products/ArduinoZeroPro-flat-org.jpg" alt="Drawing" style="width: 330px;"/></p>
 <p><br></p>
-<h3 id="download-the-bootloader">Download the Bootloader</h3>
-<p>Execute the command to download the bootloader.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    <span style="color: #000000">$</span> <span style="color: #000000">newt</span> <span style="color: #000000">load</span> <span style="color: #000000">arduino_boot</span>
+<h3 id="load-the-bootloader-onto-the-board">Load the Bootloader onto the Board</h3>
+<p>Run the <code>newt load arduino_boot</code> command to load the bootloader onto your board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt load arduino_boot
+Loading bootloader
+$
 </pre></div>
 
 
-<p>If the newt tool finishes without error, that means the bootloader has been
-successfully loaded onto the target.</p>
-<p>If, on the other hand, you get errors like the following:</p>
+<p>The bootloader is loaded onto your board succesfully when the <code>newt load</code> command returns to the command prompt with no messages. You can proceed to load and run your Blinky application image (See <a href="#runimage">Run the Blinky Application</a>).</p>
+<p>If the <code>newt load</code> command outputs the following error messages, you will need to erase your board.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt load arduino_boot -v
 Loading bootloader
 Error: Downloading ~/dev/arduino_zero/bin/targets/arduino_boot/app/apps/boot/boot.elf.bin to 0x0
@@ -770,10 +763,9 @@ Error: Target not halted
 </pre></div>
 
 
-<p>Then you'll need to erase your board first before downloading the <code>arduino_boot</code> application. Here's how you do that using gdb,
-the GNU Debugger. </p>
+<p><br>
+To erase your board, start a debug session and enter the highlighted commands at the <code>(gdb)</code> prompts:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt debug arduino_blinky
-
 (gdb) mon at91samd chip-erase
 chip erased
 chip erased
@@ -790,23 +782,21 @@ chip erased
 </pre></div>
 
 
-<p>Once the chip is erased, go back and download the <code>arduino_boot</code> image to the board as above. </p>
-<p><br></p>
+<p><br>
+Run the <code>newt load arduino_boot</code> command again after erasing the board. </p>
 <p><font color="#FF0000"> Reminder if you are using Docker: </font> When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like <code>Error: unable to find CMSIS-DAP device</code> when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. "Atmel Corp. EDBG CMSIS-DAP[0101]") by clicking on the "Removes selected USB filter" button, and add a new filter by clicking on the "Adds new USB filter" button.</p>
 <p><br></p>
-<h3 id="run-the-image">Run the Image</h3>
-<p>Now that the bootloader is downloaded to the target, the next step is to load
-your image onto the Arduino Zero.  The easiest way to do this, is to use the
-<code>newt run</code> command.  <code>newt run</code> will automatically rebuild your program
-(if necessary), create an image, and load it onto the target device.</p>
-<p>Here, we will load our <code>arduino_blinky</code> target onto the device, and we
-should see it run:</p>
+<h3 id="run-the-blinky-application"><a name="runimage"></a>Run the Blinky Application</h3>
+<p>After you load the bootloader successfully onto your board, you can load and run the Blinky application. </p>
+<p>Run the <code>newt run arduino_blinky 0.0.0</code> command to build the arduino_blinky target (if necessary), create an image with verison 0.0.0, load the image onto the board, and start a debugger session. </p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt run arduino_blinky 0.0.0
-Debugging myproject/bin/arduino_blinky/apps/blinky/blinky.elf
-Open On-Chip Debugger 0.9.0 (2015-09-23-21:46)
+App image succesfully generated: ~/dev/myproj/bin/targets/arduino_blinky/app/apps/blinky/blinky.img
+Loading app image into slot 1
+[~/dev/myproj/repos/mynewt_arduino_zero/hw/bsp/arduino_zero/arduino_zero_debug.sh ~/dev/myproj/repos/mynewt_arduino_zero/hw/bsp/arduino_zero ~/dev/myproj/bin/targets/arduino_blinky/app/apps/blinky/blinky]
+Open On-Chip Debugger 0.9.0 (2015-11-15-13:10)
 Licensed under GNU GPL v2
 For bug reports, read
-    http://openocd.org/doc/doxygen/bugs.html
+http://openocd.org/doc/doxygen/bugs.html
 Info : only one transport option; autoselect &#39;swd&#39;
 adapter speed: 500 kHz
 adapter_nsrst_delay: 100
@@ -820,6 +810,9 @@ Info : CMSIS-DAP: Interface ready
 Info : clock speed 500 kHz
 Info : SWD IDCODE 0x0bc11477
 Info : at91samd21g18.cpu: hardware has 4 breakpoints, 2 watchpoints
+target state: halted
+target halted due to debug-request, current mode: Thread 
+xPSR: 0x21000000 pc: 0x0000fca6 psp: 0x20002408
 GNU gdb (GNU Tools for ARM Embedded Processors) 7.8.0.20150604-cvs
 Copyright (C) 2014 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later &lt;http://gnu.org/licenses/gpl.html&gt;
@@ -834,13 +827,16 @@ Find the GDB manual and other documentation resources online at:
 &lt;http://www.gnu.org/software/gdb/documentation/&gt;.
 For help, type &quot;help&quot;.
 Type &quot;apropos word&quot; to search for commands related to &quot;word&quot;...
-Reading symbols from myproject/bin/arduino_blinky/apps/blinky/blinky.elf...done.
-target state: halted
-target halted due to debug-request, current mode: Thread
-xPSR: 0x21000000 pc: 0x0000030e msp: 0x20008000
+Reading symbols from ~/dev/myproj/bin/targets/arduino_blinky/app/apps/blinky/blinky.elf...(no debugging symbols found)...done.
 Info : accepting &#39;gdb&#39; connection on tcp/3333
 Info : SAMD MCU: SAMD21G18A (256KB Flash, 32KB RAM)
-0x0000030e in ?? ()
+0x0000fca6 in os_tick_idle ()
+target state: halted
+target halted due to debug-request, current mode: Thread 
+xPSR: 0x21000000 pc: 0x000000b8 msp: 0x20008000
+target state: halted
+target halted due to debug-request, current mode: Thread 
+xPSR: 0x21000000 pc: 0x000000b8 msp: 0x20008000
 (gdb) r
 The &quot;remote&quot; target does not support &quot;run&quot;.  Try &quot;help target&quot; or &quot;continue&quot;.
 (gdb) c
@@ -849,15 +845,13 @@ Continuing.
 
 
 <p><br></p>
-<p><strong>NOTE:</strong> The 0.0.0 specified after the target name to <code>newt run</code> is the version
-of the image to load.  If you are not providing remote upgrade, and are just
-developing locally, you can provide 0.0.0 for every image version.</p>
+<p><strong>NOTE:</strong> The 0.0.0 is the version number to assign to the images.  If you are not providing remote upgrade, and are just developing locally, you can provide 0.0.0 for every image version.</p>
 <p>If you want the image to run without the debugger connected, simply quit the
 debugger and restart the board.  The image you programmed will come up and run on 
 the Arduino on the next boot!  </p>
 <p><br></p>
-<h3 id="watch-the-led-blink">Watch the LED blink</h3>
-<p>Congratulations! You have created a Mynewt operating system running on the
+<h3 id="watch-the-led-blink">Watch the LED Blink</h3>
+<p>Congratulations! You have created an Mynewt application running on the
 Arduino Zero. The LED right next to the power LED should be blinking. It is toggled 
 by one task running on the Mynewt OS.   </p>
 <p>We have more fun tutorials for you to get your hands dirty. Be bold and try other 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/blehci_project/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/blehci_project/index.html b/develop/os/tutorials/blehci_project/index.html
index 142432d..e7f924f 100644
--- a/develop/os/tutorials/blehci_project/index.html
+++ b/develop/os/tutorials/blehci_project/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/bleprph/bleprph-adv/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-adv/index.html b/develop/os/tutorials/bleprph/bleprph-adv/index.html
index 6ac5ce4..0e3be00 100644
--- a/develop/os/tutorials/bleprph/bleprph-adv/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-adv/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/bleprph/bleprph-app/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-app/index.html b/develop/os/tutorials/bleprph/bleprph-app/index.html
index ddd31b9..eb41da4 100644
--- a/develop/os/tutorials/bleprph/bleprph-app/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-app/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>
@@ -558,7 +545,7 @@ $ newt target set myperiph app=@apache-mynewt-core/apps/bleprph
 Target targets/myperiph successfully set target.app to @apache-mynewt-core/apps/bleprph
 $ newt target set myperiph build_profile=optimized
 Target targets/myperiph successfully set target.build_profile to optimized
-$ newt build blerph
+$ newt build myblerph
 Building target targets/myperiph
 ...
 Linking ~/dev/nrf52dk/bin/targets/myperiph/app/apps/bleprph/bleprph.elf

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/bleprph/bleprph-chr-access/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-chr-access/index.html b/develop/os/tutorials/bleprph/bleprph-chr-access/index.html
index 7b31a1f..1030ad9 100644
--- a/develop/os/tutorials/bleprph/bleprph-chr-access/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-chr-access/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/bleprph/bleprph-gap-event/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-gap-event/index.html b/develop/os/tutorials/bleprph/bleprph-gap-event/index.html
index ad996a4..a365e0d 100644
--- a/develop/os/tutorials/bleprph/bleprph-gap-event/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-gap-event/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/bleprph/bleprph-intro/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-intro/index.html b/develop/os/tutorials/bleprph/bleprph-intro/index.html
index a9199b4..7325eb6 100644
--- a/develop/os/tutorials/bleprph/bleprph-intro/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-intro/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html b/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html
index c8c5073..adf79b7 100644
--- a/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/bletiny_project/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bletiny_project/index.html b/develop/os/tutorials/bletiny_project/index.html
index c527000..029421a 100644
--- a/develop/os/tutorials/bletiny_project/index.html
+++ b/develop/os/tutorials/bletiny_project/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/blinky_console/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/blinky_console/index.html b/develop/os/tutorials/blinky_console/index.html
index dc322d6..3054a9e 100644
--- a/develop/os/tutorials/blinky_console/index.html
+++ b/develop/os/tutorials/blinky_console/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>


[03/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/get_started/vocabulary/index.html
----------------------------------------------------------------------
diff --git a/latest/os/get_started/vocabulary/index.html b/latest/os/get_started/vocabulary/index.html
index 0b1a3c2..0782e2d 100644
--- a/latest/os/get_started/vocabulary/index.html
+++ b/latest/os/get_started/vocabulary/index.html
@@ -344,7 +344,7 @@ project.repositories:
 #
 repository.apache-mynewt-core:
     type: github
-    vers: 0-latest
+    vers: 1-latest
     user: apache
     repo: incubator-mynewt-core
 $ 
@@ -362,9 +362,9 @@ relies upon.</p>
 the <code>apache-mynewt-core</code> repository.</p>
 </li>
 <li>
-<p><code>vers=0-latest</code>: Defines the repository version. This string will use the 
+<p><code>vers=1-latest</code>: Defines the repository version. This string will use the 
 latest code in the 'Master' github branch. To use the latest version in the 
-develop branch, just change it to <code>vers=0-dev</code></p>
+develop branch, just change it to <code>vers=1-dev</code></p>
 </li>
 </ul>
 <p>Repositories are versioned collections of packages.  </p>
@@ -440,19 +440,24 @@ of your project.  Most targets consist of: </p>
 <p>In order to create and manipulate targets, the <em>newt</em> tool offers a set of helper commands,
 you can find more information about these by issuing:</p>
 <p>$ newt target</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">Usage:
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">newt target
+Usage:
   newt target [flags]
   newt target [command]
 
 Available Commands:
-  config      View target system configuration
+  config      View or populate a target&#39;s system configuration
   copy        Copy target
   create      Create a target
   delete      Delete target
+  dep         View target&#39;s dependency graph
+  revdep      View target&#39;s reverse-dependency graph
   set         Set target configuration variable
   show        View target configuration variables
 
 Global Flags:
+  -h, --help              Help for newt commands
+  -j, --jobs int          Number of concurrent build jobs (default 8)
   -l, --loglevel string   Log level (default &quot;WARN&quot;)
   -o, --outfile string    Filename to tee output to
   -q, --quiet             Be quiet; only display error output
@@ -460,6 +465,7 @@ Global Flags:
   -v, --verbose           Enable verbose output when executing commands
 
 Use &quot;newt target [command] --help&quot; for more information about a command.
+
 $ 
 </pre></div>
 
@@ -470,7 +476,7 @@ a file called <code>syscfg.yml</code> and you will find these configuration file
 files directly to change some default settings, it is best to override the default settings in a <code>syscfg.yml</code> file in your project
 directory rather than editing the package configurations directly.</p>
 <p>To see all <strong>all</strong> the system configuration settings, simply type</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target config &lt;target-name&gt;
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target config show &lt;target-name&gt;
 ...
 * PACKAGE: sys/stats
   * Setting: STATS_CLI

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/baselibc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/baselibc/index.html b/latest/os/modules/baselibc/index.html
index 42faf5c..0f12935 100644
--- a/latest/os/modules/baselibc/index.html
+++ b/latest/os/modules/baselibc/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/json/">JSON</a>
   
   
@@ -587,8 +576,8 @@ pages at <a href="#https://www.freebsd.org/cgi/man.cgi">https://www.freebsd.org/
     </li>
     <li class="pull-right">
     
-    <a href=../elua/elua/>
-        Next: Embedded Lua
+    <a href=../json/json/>
+        Next: JSON
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_build_status/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_build_status/index.html b/latest/os/modules/bootloader/boot_build_status/index.html
index 6461dbe..2d697cc 100644
--- a/latest/os/modules/bootloader/boot_build_status/index.html
+++ b/latest/os/modules/bootloader/boot_build_status/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_build_status_one/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_build_status_one/index.html b/latest/os/modules/bootloader/boot_build_status_one/index.html
index 5166ed4..ed38ec7 100644
--- a/latest/os/modules/bootloader/boot_build_status_one/index.html
+++ b/latest/os/modules/bootloader/boot_build_status_one/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_clear_status/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_clear_status/index.html b/latest/os/modules/bootloader/boot_clear_status/index.html
index e4eb9bb..d108021 100644
--- a/latest/os/modules/bootloader/boot_clear_status/index.html
+++ b/latest/os/modules/bootloader/boot_clear_status/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_copy_area/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_copy_area/index.html b/latest/os/modules/bootloader/boot_copy_area/index.html
index ec14ebb..d8dd573 100644
--- a/latest/os/modules/bootloader/boot_copy_area/index.html
+++ b/latest/os/modules/bootloader/boot_copy_area/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_copy_image/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_copy_image/index.html b/latest/os/modules/bootloader/boot_copy_image/index.html
index 9df5d27..e1bf304 100644
--- a/latest/os/modules/bootloader/boot_copy_image/index.html
+++ b/latest/os/modules/bootloader/boot_copy_image/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_erase_area/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_erase_area/index.html b/latest/os/modules/bootloader/boot_erase_area/index.html
index 70ec326..5d0ad0f 100644
--- a/latest/os/modules/bootloader/boot_erase_area/index.html
+++ b/latest/os/modules/bootloader/boot_erase_area/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_fill_slot/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_fill_slot/index.html b/latest/os/modules/bootloader/boot_fill_slot/index.html
index 1640e73..d7fd6ab 100644
--- a/latest/os/modules/bootloader/boot_fill_slot/index.html
+++ b/latest/os/modules/bootloader/boot_fill_slot/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_find_image_area_idx/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_find_image_area_idx/index.html b/latest/os/modules/bootloader/boot_find_image_area_idx/index.html
index 3b9b899..70b7717 100644
--- a/latest/os/modules/bootloader/boot_find_image_area_idx/index.html
+++ b/latest/os/modules/bootloader/boot_find_image_area_idx/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_find_image_part/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_find_image_part/index.html b/latest/os/modules/bootloader/boot_find_image_part/index.html
index 72c67d6..9768dab 100644
--- a/latest/os/modules/bootloader/boot_find_image_part/index.html
+++ b/latest/os/modules/bootloader/boot_find_image_part/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_find_image_slot/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_find_image_slot/index.html b/latest/os/modules/bootloader/boot_find_image_slot/index.html
index 1c7ed80..d2e31bf 100644
--- a/latest/os/modules/bootloader/boot_find_image_slot/index.html
+++ b/latest/os/modules/bootloader/boot_find_image_slot/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_go/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_go/index.html b/latest/os/modules/bootloader/boot_go/index.html
index 7efd3e6..07a9694 100644
--- a/latest/os/modules/bootloader/boot_go/index.html
+++ b/latest/os/modules/bootloader/boot_go/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_init_flash/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_init_flash/index.html b/latest/os/modules/bootloader/boot_init_flash/index.html
index f7b5ab2..388f517 100644
--- a/latest/os/modules/bootloader/boot_init_flash/index.html
+++ b/latest/os/modules/bootloader/boot_init_flash/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_move_area/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_move_area/index.html b/latest/os/modules/bootloader/boot_move_area/index.html
index 2fcebcf..89f19e4 100644
--- a/latest/os/modules/bootloader/boot_move_area/index.html
+++ b/latest/os/modules/bootloader/boot_move_area/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_read_image_header/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_read_image_header/index.html b/latest/os/modules/bootloader/boot_read_image_header/index.html
index 2b9af36..3d07729 100644
--- a/latest/os/modules/bootloader/boot_read_image_header/index.html
+++ b/latest/os/modules/bootloader/boot_read_image_header/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_read_image_headers/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_read_image_headers/index.html b/latest/os/modules/bootloader/boot_read_image_headers/index.html
index 2df13db..1775015 100644
--- a/latest/os/modules/bootloader/boot_read_image_headers/index.html
+++ b/latest/os/modules/bootloader/boot_read_image_headers/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_read_status/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_read_status/index.html b/latest/os/modules/bootloader/boot_read_status/index.html
index 09b8e63..a8a9fb0 100644
--- a/latest/os/modules/bootloader/boot_read_status/index.html
+++ b/latest/os/modules/bootloader/boot_read_status/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_select_image_slot/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_select_image_slot/index.html b/latest/os/modules/bootloader/boot_select_image_slot/index.html
index 2ce5c14..0ec4085 100644
--- a/latest/os/modules/bootloader/boot_select_image_slot/index.html
+++ b/latest/os/modules/bootloader/boot_select_image_slot/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_slot_addr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_slot_addr/index.html b/latest/os/modules/bootloader/boot_slot_addr/index.html
index 5797e90..11c7639 100644
--- a/latest/os/modules/bootloader/boot_slot_addr/index.html
+++ b/latest/os/modules/bootloader/boot_slot_addr/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html b/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html
index adccc0d..0286e1d 100644
--- a/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html
+++ b/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_swap_areas/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_swap_areas/index.html b/latest/os/modules/bootloader/boot_swap_areas/index.html
index 0537348..bc49661 100644
--- a/latest/os/modules/bootloader/boot_swap_areas/index.html
+++ b/latest/os/modules/bootloader/boot_swap_areas/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_vect_delete_main/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_delete_main/index.html b/latest/os/modules/bootloader/boot_vect_delete_main/index.html
index 4a9b45d..3009096 100644
--- a/latest/os/modules/bootloader/boot_vect_delete_main/index.html
+++ b/latest/os/modules/bootloader/boot_vect_delete_main/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_vect_delete_test/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_delete_test/index.html b/latest/os/modules/bootloader/boot_vect_delete_test/index.html
index b12c1f0..6c256eb 100644
--- a/latest/os/modules/bootloader/boot_vect_delete_test/index.html
+++ b/latest/os/modules/bootloader/boot_vect_delete_test/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_vect_read_main/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_read_main/index.html b/latest/os/modules/bootloader/boot_vect_read_main/index.html
index e011e5d..3104030 100644
--- a/latest/os/modules/bootloader/boot_vect_read_main/index.html
+++ b/latest/os/modules/bootloader/boot_vect_read_main/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_vect_read_one/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_read_one/index.html b/latest/os/modules/bootloader/boot_vect_read_one/index.html
index 43a57fa..e711bf8 100644
--- a/latest/os/modules/bootloader/boot_vect_read_one/index.html
+++ b/latest/os/modules/bootloader/boot_vect_read_one/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_vect_read_test/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_read_test/index.html b/latest/os/modules/bootloader/boot_vect_read_test/index.html
index 8e47ff0..c92fac9 100644
--- a/latest/os/modules/bootloader/boot_vect_read_test/index.html
+++ b/latest/os/modules/bootloader/boot_vect_read_test/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/boot_write_status/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_write_status/index.html b/latest/os/modules/bootloader/boot_write_status/index.html
index 1ea3112..c8973b7 100644
--- a/latest/os/modules/bootloader/boot_write_status/index.html
+++ b/latest/os/modules/bootloader/boot_write_status/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/bootloader/bootloader/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/bootloader/index.html b/latest/os/modules/bootloader/bootloader/index.html
index 0930cda..c61ba5a 100644
--- a/latest/os/modules/bootloader/bootloader/index.html
+++ b/latest/os/modules/bootloader/bootloader/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/console/console/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console/index.html b/latest/os/modules/console/console/index.html
index 9a61b8a..99a552c 100644
--- a/latest/os/modules/console/console/index.html
+++ b/latest/os/modules/console/console/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/console/console_blocking_mode/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_blocking_mode/index.html b/latest/os/modules/console/console_blocking_mode/index.html
index b32550e..4a945ab 100644
--- a/latest/os/modules/console/console_blocking_mode/index.html
+++ b/latest/os/modules/console/console_blocking_mode/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/console/console_echo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_echo/index.html b/latest/os/modules/console/console_echo/index.html
index 8cc0b90..23e5cde 100644
--- a/latest/os/modules/console/console_echo/index.html
+++ b/latest/os/modules/console/console_echo/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/console/console_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_init/index.html b/latest/os/modules/console/console_init/index.html
index 76ad56a..26fc669 100644
--- a/latest/os/modules/console/console_init/index.html
+++ b/latest/os/modules/console/console_init/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/console/console_is_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_is_init/index.html b/latest/os/modules/console/console_is_init/index.html
index 8842235..e64820e 100644
--- a/latest/os/modules/console/console_is_init/index.html
+++ b/latest/os/modules/console/console_is_init/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/console/console_printf/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_printf/index.html b/latest/os/modules/console/console_printf/index.html
index ffa9a0c..8331fa0 100644
--- a/latest/os/modules/console/console_printf/index.html
+++ b/latest/os/modules/console/console_printf/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/console/console_read/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_read/index.html b/latest/os/modules/console/console_read/index.html
index dd00d08..f11568c 100644
--- a/latest/os/modules/console/console_read/index.html
+++ b/latest/os/modules/console/console_read/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/console/console_write/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_write/index.html b/latest/os/modules/console/console_write/index.html
index 01fbd92..7a52dec 100644
--- a/latest/os/modules/console/console_write/index.html
+++ b/latest/os/modules/console/console_write/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/devmgmt/customize_newtmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/devmgmt/customize_newtmgr/index.html b/latest/os/modules/devmgmt/customize_newtmgr/index.html
index 7f66477..f8e8483 100644
--- a/latest/os/modules/devmgmt/customize_newtmgr/index.html
+++ b/latest/os/modules/devmgmt/customize_newtmgr/index.html
@@ -410,17 +410,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/devmgmt/newtmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/devmgmt/newtmgr/index.html b/latest/os/modules/devmgmt/newtmgr/index.html
index a598a37..f954bd7 100644
--- a/latest/os/modules/devmgmt/newtmgr/index.html
+++ b/latest/os/modules/devmgmt/newtmgr/index.html
@@ -410,17 +410,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/devmgmt/oicmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/devmgmt/oicmgr/index.html b/latest/os/modules/devmgmt/oicmgr/index.html
index 91c88b8..abbab51 100644
--- a/latest/os/modules/devmgmt/oicmgr/index.html
+++ b/latest/os/modules/devmgmt/oicmgr/index.html
@@ -410,17 +410,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/drivers/driver/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/drivers/driver/index.html b/latest/os/modules/drivers/driver/index.html
index 484b06c..59d6760 100644
--- a/latest/os/modules/drivers/driver/index.html
+++ b/latest/os/modules/drivers/driver/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/drivers/flash/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/drivers/flash/index.html b/latest/os/modules/drivers/flash/index.html
index 8a714ee..d99b004 100644
--- a/latest/os/modules/drivers/flash/index.html
+++ b/latest/os/modules/drivers/flash/index.html
@@ -435,17 +435,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/drivers/mmc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/drivers/mmc/index.html b/latest/os/modules/drivers/mmc/index.html
index e66499b..9f8a6fd 100644
--- a/latest/os/modules/drivers/mmc/index.html
+++ b/latest/os/modules/drivers/mmc/index.html
@@ -435,17 +435,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/elua/elua/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/elua/elua/index.html b/latest/os/modules/elua/elua/index.html
deleted file mode 100644
index 0e2af30..0000000
--- a/latest/os/modules/elua/elua/index.html
+++ /dev/null
@@ -1,638 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-    <head>
-        <meta charset="utf-8">
-        <meta http-equiv="X-UA-Compatible" content="IE=edge">
-        <meta name="viewport" content="width=device-width, initial-scale=1.0">
-        
-        
-        <!-- This is broken by doc revisioning.
-        <link rel="canonical" href="http://mynewt.apache.org/os/modules/elua/elua/"> -->
-        <link rel="shortcut icon" href="../../../../img/favicon.ico">
-
-	    <title>toc - Apache Mynewt</title>
-
-        <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link rel="stylesheet" href="../../../../css/highlight.css">
-        <link href="../../../../css/base.css" rel="stylesheet">
-        <link href="../../../../css/custom.css" rel="stylesheet">
-        <link href="../../../../css/v2.css" rel="stylesheet">
-        <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
-        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
-        <link href="../../../../extra.css" rel="stylesheet">
-
-        <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
-        <!--[if lt IE 9]>
-            <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
-            <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
-        <![endif]-->
-
-        
-            <script>
-                (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-                (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-                m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-                })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
-                ga('create', 'UA-72162311-1', 'auto');
-                ga('send', 'pageview');
-            </script>
-        
-    </head>
-
-
-    <body class="toc">
-
-
-        <div class="container">
-    <div class="row v2-main-banner">
-        <a class="logo-cell" href="/">
-            <img class="logo" src="/img/logo.png">
-        </a>
-        <div class="tagline-cell">
-            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
-        </div>
-        <div class="news-cell">
-            <div class="well">
-                <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017)
-            </div>
-        </div>
-    </div>
-</div>
-
-        
-
-
-
-
-
-
-<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation">
-    <div class="container">
-        <!-- Collapsed navigation -->
-        <div class="navbar-header">
-            <!-- Expander button -->
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-            </button>
-
-        </div>
-
-        <!-- Expanded navigation -->
-        <div class="navbar-collapse collapse">
-            <!-- Main navigation -->
-            <ul class="nav navbar-nav navbar-right">
-                <li 
-  class=""
->
-                    <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
-                </li>
-                <li 
-  class="important"
->
-                    <a href="/quick-start/">Quick Start</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/about/">About</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/talks/">Talks</a>
-                </li>
-                <li 
-  class="active"
->
-                    <a href="/latest/os/introduction">Documentation</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/download/">Download</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/community/">Community</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/events/">Events</a>
-                </li>
-            </ul>
-
-            <!-- Search, Navigation and Repo links -->
-            <ul class="nav navbar-nav navbar-right">
-                
-            </ul>
-        </div>
-    </div>
-</nav>
-
-        
-
-        <div class="container">
-            
-                <div class="row">
-                    <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary">
-    <div class="top">
-        <div role="search">
-            <form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
-                <div class="form-group">
-                    <input type="text" name="q" class="form-control" placeholder="Search documentation" />
-                </div>
-            </form>
-        </div>
-    </div>
-    <ul class="toc-nav">
-      <li class="doc-version">
-<select class="form-control" onchange="if (this.value) window.location.href=this.value">
-    
-    <option
-      value="/develop/os/introduction"
-      selected="selected"
-    >
-      Version: develop (latest)
-    </option>
-    
-    <option
-      value="/v0_9_0/os/introduction"
-      
-    >
-      Version: 0.9.0
-    </option>
-    
-</select>
-</li>
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-          
-  
-  
-    <li ><a href="../../../introduction/">Mynewt Documentation</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../get_started/get_started/">Basic Setup</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../../get_started/vocabulary/">Concepts</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../tutorials/tutorials/">Tutorials</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../os_user_guide/">OS User Guide</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/mynewt_os/">OS Core</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/porting/port_os/">Porting to your Platform</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../console/console/">Console</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../shell/shell/">Shell</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../split/split/">Split Images</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../bootloader/bootloader/">Bootloader</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  
-  
-  ../../fs/fs/fs/
-
-">File System</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../hal/hal/">Hardware Abstraction Layer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../drivers/driver/">Drivers</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../testutil/testutil/">Test Utilities</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../devmgmt/newtmgr/">Device Management with Newt Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../imgmgr/imgmgr/">Image Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../baselibc/">Baselibc library</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li class="active"><a href="./">Embedded Lua</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../lua_init/
-">Functions</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../json/json/">JSON</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../fcb/fcb/">Flash Circular Buffer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../stats/stats/">Stats</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../logs/logs/">Logs</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../sysinitconfig/sysinitconfig/">System Configuration And Initialization</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../../../../network/ble/ble_intro/
-">BLE User Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newt/newt_intro/">Newt Tool Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newtmgr/overview/">Newt Manager Guide</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-        
-      
-        
-          
-  
-  
-    <li><a href="
-  ../../../../faq/how_to_edit_docs/
-">Appendix</a>
-  
-  
-    </li>
-
-        
-      
-    </ul>
-</div></div>
-
-                    <div class="col-md-9" role="main">
-                        <div class="doc-header">
-                            <div role="navigation" aria-label="breadcrumbs navigation">
-  <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/latest/os/introduction">Docs</a></li>
-    
-    
-        
-          <li>&raquo; <a href="../../../os_user_guide/">OS User Guide</a></li>
-        
-      
-        
-          <li>&raquo; Embedded Lua</li>
-        
-      
-      
-    
-    
-  </ul>
-</div>
-                        </div>
-                        
-                            <h1 id="elua">elua</h1>
-<h3 id="description">Description</h3>
-<p>This package contains a Lua interpreter. See http://lua.org for documentation of the language.</p>
-<p>You can execute lua scripts either from console with shell or start the execution programmatically.</p>
-<h3 id="data-structures">Data structures</h3>
-<h3 id="notes">Notes</h3>
-<p>Currently we don't have language extension modules which would go together with this one, but those should be added.</p>
-<h3 id="list-of-functions">List of Functions</h3>
-<table>
-<thead>
-<tr>
-<th>Function</th>
-<th>Description</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td><a href="../lua_init/">lua_init</a></td>
-<td>Registers 'lua' command with shell.</td>
-</tr>
-<tr>
-<td><a href="../lua_main/">lua_main</a></td>
-<td>Executes lua script in current task's context. Arguments given are passed to lua interpreter.</td>
-</tr>
-</tbody>
-</table>
-<p><Comments such as these instructions are placed within angle brackets. List all the functions here. Note how the anchors work. You put the text you want to show up as a link within [] and the relevant #heading within (). Note that the header has to have at least 2 words for the anchor to work - that's how it is. "no-highlight" disables syntax highlighting. You can enable it for a particular language by specifying what the language is instead of "no-highlight". Be warned that this highlighting or no-highlighting specification may not show up nicely on Mou.></p>
-                        
-                        <div class="row">
-                            
-
-
-
-<ul class="nav nav-pills" style="margin-bottom: 10px">
-    <li>
-    
-    <a href=../../baselibc/>
-        <span class="fa fa-arrow-left"></span>
-        Previous: Baselibc library
-    </a>
-    
-    </li>
-    <li class="pull-right">
-    
-    <a href=../lua_init/>
-        Next: lua_init
-        <span class="fa fa-arrow-right"></span>
-    </a>
-    
-    </li>
-</ul>
-                        </div>
-                        <footer class="row">
-    <div class="col-xs-12">
-        
-            <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p>
-        
-    </div>
-    <div class="col-xs-12">
-        <div class="logos">
-            <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
-            <small class="footnote">
-                MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
-            </small>
-            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator">
-        </div>
-    </div>
-</footer>
-                    </div>
-                </div>
-            
-            
-        </div>
-
-        <script src="../../../../js/jquery-1.10.2.min.js"></script>
-        <script src="../../../../js/bootstrap-3.0.3.min.js"></script>
-        <script src="../../../../js/highlight.pack.js"></script>
-        <script src="../../../../js/base.js"></script>
-        <script src="../../../../js/custom.js"></script>
-
-    </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/elua/lua_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/elua/lua_init/index.html b/latest/os/modules/elua/lua_init/index.html
deleted file mode 100644
index a33d15f..0000000
--- a/latest/os/modules/elua/lua_init/index.html
+++ /dev/null
@@ -1,657 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-    <head>
-        <meta charset="utf-8">
-        <meta http-equiv="X-UA-Compatible" content="IE=edge">
-        <meta name="viewport" content="width=device-width, initial-scale=1.0">
-        
-        
-        <!-- This is broken by doc revisioning.
-        <link rel="canonical" href="http://mynewt.apache.org/os/modules/elua/lua_init/"> -->
-        <link rel="shortcut icon" href="../../../../img/favicon.ico">
-
-	    <title>lua_init - Apache Mynewt</title>
-
-        <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link rel="stylesheet" href="../../../../css/highlight.css">
-        <link href="../../../../css/base.css" rel="stylesheet">
-        <link href="../../../../css/custom.css" rel="stylesheet">
-        <link href="../../../../css/v2.css" rel="stylesheet">
-        <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
-        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
-        <link href="../../../../extra.css" rel="stylesheet">
-
-        <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
-        <!--[if lt IE 9]>
-            <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
-            <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
-        <![endif]-->
-
-        
-            <script>
-                (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-                (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-                m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-                })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
-                ga('create', 'UA-72162311-1', 'auto');
-                ga('send', 'pageview');
-            </script>
-        
-    </head>
-
-
-    <body class="lua_init">
-
-
-        <div class="container">
-    <div class="row v2-main-banner">
-        <a class="logo-cell" href="/">
-            <img class="logo" src="/img/logo.png">
-        </a>
-        <div class="tagline-cell">
-            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
-        </div>
-        <div class="news-cell">
-            <div class="well">
-                <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017)
-            </div>
-        </div>
-    </div>
-</div>
-
-        
-
-
-
-
-
-
-<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation">
-    <div class="container">
-        <!-- Collapsed navigation -->
-        <div class="navbar-header">
-            <!-- Expander button -->
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-            </button>
-
-        </div>
-
-        <!-- Expanded navigation -->
-        <div class="navbar-collapse collapse">
-            <!-- Main navigation -->
-            <ul class="nav navbar-nav navbar-right">
-                <li 
-  class=""
->
-                    <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
-                </li>
-                <li 
-  class="important"
->
-                    <a href="/quick-start/">Quick Start</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/about/">About</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/talks/">Talks</a>
-                </li>
-                <li 
-  class="active"
->
-                    <a href="/latest/os/introduction">Documentation</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/download/">Download</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/community/">Community</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/events/">Events</a>
-                </li>
-            </ul>
-
-            <!-- Search, Navigation and Repo links -->
-            <ul class="nav navbar-nav navbar-right">
-                
-            </ul>
-        </div>
-    </div>
-</nav>
-
-        
-
-        <div class="container">
-            
-                <div class="row">
-                    <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary">
-    <div class="top">
-        <div role="search">
-            <form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
-                <div class="form-group">
-                    <input type="text" name="q" class="form-control" placeholder="Search documentation" />
-                </div>
-            </form>
-        </div>
-    </div>
-    <ul class="toc-nav">
-      <li class="doc-version">
-<select class="form-control" onchange="if (this.value) window.location.href=this.value">
-    
-    <option
-      value="/develop/os/introduction"
-      selected="selected"
-    >
-      Version: develop (latest)
-    </option>
-    
-    <option
-      value="/v0_9_0/os/introduction"
-      
-    >
-      Version: 0.9.0
-    </option>
-    
-</select>
-</li>
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-          
-  
-  
-    <li ><a href="../../../introduction/">Mynewt Documentation</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../get_started/get_started/">Basic Setup</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../../get_started/vocabulary/">Concepts</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../tutorials/tutorials/">Tutorials</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../os_user_guide/">OS User Guide</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/mynewt_os/">OS Core</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/porting/port_os/">Porting to your Platform</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../console/console/">Console</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../shell/shell/">Shell</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../split/split/">Split Images</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../bootloader/bootloader/">Bootloader</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  
-  
-  ../../fs/fs/fs/
-
-">File System</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../hal/hal/">Hardware Abstraction Layer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../drivers/driver/">Drivers</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../testutil/testutil/">Test Utilities</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../devmgmt/newtmgr/">Device Management with Newt Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../imgmgr/imgmgr/">Image Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../baselibc/">Baselibc library</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../elua/">Embedded Lua</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ./
-">Functions</a>
-  
-  
-    <ul>
-          
-              
-                
-    <li class="active">
-      <a href="./">lua_init</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../lua_main/">lua_main</a>
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../json/json/">JSON</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../fcb/fcb/">Flash Circular Buffer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../stats/stats/">Stats</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../logs/logs/">Logs</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../sysinitconfig/sysinitconfig/">System Configuration And Initialization</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../../../../network/ble/ble_intro/
-">BLE User Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newt/newt_intro/">Newt Tool Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newtmgr/overview/">Newt Manager Guide</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-        
-      
-        
-          
-  
-  
-    <li><a href="
-  ../../../../faq/how_to_edit_docs/
-">Appendix</a>
-  
-  
-    </li>
-
-        
-      
-    </ul>
-</div></div>
-
-                    <div class="col-md-9" role="main">
-                        <div class="doc-header">
-                            <div role="navigation" aria-label="breadcrumbs navigation">
-  <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/latest/os/introduction">Docs</a></li>
-    
-    
-        
-          <li>&raquo; <a href="../elua/">Embedded Lua</a></li>
-        
-      
-        
-          <li>&raquo; Functions</li>
-        
-      
-      
-        <li>&raquo; lua_init</li>
-      
-    
-    
-  </ul>
-</div>
-                        </div>
-                        
-                            <h2 id="lua_init"><font color="#F2853F" style="font-size:24pt"> lua_init </font></h2>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">   int
-   lua_init(void)
-</pre></div>
-
-
-<p>Registers 'lua' command with shell. This function should be called while initializing the project, preferably after shell itself has been initialized.</p>
-<h4 id="arguments">Arguments</h4>
-<p>N/A</p>
-<h4 id="returned-values">Returned values</h4>
-<p>Returns </p>
-<h4 id="notes">Notes</h4>
-<p>Calling this is meaningful only if you include the shell package in your project.</p>
-<h4 id="example">Example</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">int main(int argc, char **argv)
-{
-    ...
-    shell_task_init(SHELL_TASK_PRIO, shell_stack, SHELL_TASK_STACK_SIZE,
-                         SHELL_MAX_INPUT_LEN);
-    ...
-    lua_init();
-    ...
-}
-</pre></div>
-                        
-                        <div class="row">
-                            
-
-
-
-<ul class="nav nav-pills" style="margin-bottom: 10px">
-    <li>
-    
-    <a href=../elua/>
-        <span class="fa fa-arrow-left"></span>
-        Previous: Embedded Lua
-    </a>
-    
-    </li>
-    <li class="pull-right">
-    
-    <a href=../lua_main/>
-        Next: lua_main
-        <span class="fa fa-arrow-right"></span>
-    </a>
-    
-    </li>
-</ul>
-                        </div>
-                        <footer class="row">
-    <div class="col-xs-12">
-        
-            <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p>
-        
-    </div>
-    <div class="col-xs-12">
-        <div class="logos">
-            <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
-            <small class="footnote">
-                MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
-            </small>
-            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator">
-        </div>
-    </div>
-</footer>
-                    </div>
-                </div>
-            
-            
-        </div>
-
-        <script src="../../../../js/jquery-1.10.2.min.js"></script>
-        <script src="../../../../js/bootstrap-3.0.3.min.js"></script>
-        <script src="../../../../js/highlight.pack.js"></script>
-        <script src="../../../../js/base.js"></script>
-        <script src="../../../../js/custom.js"></script>
-
-    </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/elua/lua_main/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/elua/lua_main/index.html b/latest/os/modules/elua/lua_main/index.html
deleted file mode 100644
index ddcb682..0000000
--- a/latest/os/modules/elua/lua_main/index.html
+++ /dev/null
@@ -1,670 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-    <head>
-        <meta charset="utf-8">
-        <meta http-equiv="X-UA-Compatible" content="IE=edge">
-        <meta name="viewport" content="width=device-width, initial-scale=1.0">
-        
-        
-        <!-- This is broken by doc revisioning.
-        <link rel="canonical" href="http://mynewt.apache.org/os/modules/elua/lua_main/"> -->
-        <link rel="shortcut icon" href="../../../../img/favicon.ico">
-
-	    <title>lua_main - Apache Mynewt</title>
-
-        <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link rel="stylesheet" href="../../../../css/highlight.css">
-        <link href="../../../../css/base.css" rel="stylesheet">
-        <link href="../../../../css/custom.css" rel="stylesheet">
-        <link href="../../../../css/v2.css" rel="stylesheet">
-        <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
-        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
-        <link href="../../../../extra.css" rel="stylesheet">
-
-        <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
-        <!--[if lt IE 9]>
-            <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
-            <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
-        <![endif]-->
-
-        
-            <script>
-                (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-                (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-                m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-                })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
-                ga('create', 'UA-72162311-1', 'auto');
-                ga('send', 'pageview');
-            </script>
-        
-    </head>
-
-
-    <body class="lua_main">
-
-
-        <div class="container">
-    <div class="row v2-main-banner">
-        <a class="logo-cell" href="/">
-            <img class="logo" src="/img/logo.png">
-        </a>
-        <div class="tagline-cell">
-            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
-        </div>
-        <div class="news-cell">
-            <div class="well">
-                <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017)
-            </div>
-        </div>
-    </div>
-</div>
-
-        
-
-
-
-
-
-
-<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation">
-    <div class="container">
-        <!-- Collapsed navigation -->
-        <div class="navbar-header">
-            <!-- Expander button -->
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-            </button>
-
-        </div>
-
-        <!-- Expanded navigation -->
-        <div class="navbar-collapse collapse">
-            <!-- Main navigation -->
-            <ul class="nav navbar-nav navbar-right">
-                <li 
-  class=""
->
-                    <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
-                </li>
-                <li 
-  class="important"
->
-                    <a href="/quick-start/">Quick Start</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/about/">About</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/talks/">Talks</a>
-                </li>
-                <li 
-  class="active"
->
-                    <a href="/latest/os/introduction">Documentation</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/download/">Download</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/community/">Community</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/events/">Events</a>
-                </li>
-            </ul>
-
-            <!-- Search, Navigation and Repo links -->
-            <ul class="nav navbar-nav navbar-right">
-                
-            </ul>
-        </div>
-    </div>
-</nav>
-
-        
-
-        <div class="container">
-            
-                <div class="row">
-                    <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary">
-    <div class="top">
-        <div role="search">
-            <form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
-                <div class="form-group">
-                    <input type="text" name="q" class="form-control" placeholder="Search documentation" />
-                </div>
-            </form>
-        </div>
-    </div>
-    <ul class="toc-nav">
-      <li class="doc-version">
-<select class="form-control" onchange="if (this.value) window.location.href=this.value">
-    
-    <option
-      value="/develop/os/introduction"
-      selected="selected"
-    >
-      Version: develop (latest)
-    </option>
-    
-    <option
-      value="/v0_9_0/os/introduction"
-      
-    >
-      Version: 0.9.0
-    </option>
-    
-</select>
-</li>
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-          
-  
-  
-    <li ><a href="../../../introduction/">Mynewt Documentation</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../get_started/get_started/">Basic Setup</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../../get_started/vocabulary/">Concepts</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../tutorials/tutorials/">Tutorials</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../os_user_guide/">OS User Guide</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/mynewt_os/">OS Core</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/porting/port_os/">Porting to your Platform</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../console/console/">Console</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../shell/shell/">Shell</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../split/split/">Split Images</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../bootloader/bootloader/">Bootloader</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  
-  
-  ../../fs/fs/fs/
-
-">File System</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../hal/hal/">Hardware Abstraction Layer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../drivers/driver/">Drivers</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../testutil/testutil/">Test Utilities</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../devmgmt/newtmgr/">Device Management with Newt Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../imgmgr/imgmgr/">Image Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../baselibc/">Baselibc library</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../elua/">Embedded Lua</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../lua_init/
-">Functions</a>
-  
-  
-    <ul>
-          
-              
-                
-    <li >
-      <a href="../lua_init/">lua_init</a>
-    </li>
-
-              
-          
-              
-                
-    <li class="active">
-      <a href="./">lua_main</a>
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../json/json/">JSON</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../fcb/fcb/">Flash Circular Buffer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../stats/stats/">Stats</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../logs/logs/">Logs</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../sysinitconfig/sysinitconfig/">System Configuration And Initialization</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../../../../network/ble/ble_intro/
-">BLE User Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newt/newt_intro/">Newt Tool Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newtmgr/overview/">Newt Manager Guide</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-        
-      
-        
-          
-  
-  
-    <li><a href="
-  ../../../../faq/how_to_edit_docs/
-">Appendix</a>
-  
-  
-    </li>
-
-        
-      
-    </ul>
-</div></div>
-
-                    <div class="col-md-9" role="main">
-                        <div class="doc-header">
-                            <div role="navigation" aria-label="breadcrumbs navigation">
-  <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/latest/os/introduction">Docs</a></li>
-    
-    
-        
-          <li>&raquo; <a href="../elua/">Embedded Lua</a></li>
-        
-      
-        
-          <li>&raquo; <a href="../lua_init/">Functions</a></li>
-        
-      
-      
-        <li>&raquo; lua_main</li>
-      
-    
-    
-  </ul>
-</div>
-                        </div>
-                        
-                            <h2 id="lua_main"><font color="#F2853F" style="font-size:24pt"> lua_main </font></h2>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">   int
-   lua_main(int argc, char **argv)
-</pre></div>
-
-
-<p>Executes lua script in current task's context. Arguments given are passed to lua interpreter.</p>
-<h4 id="arguments">Arguments</h4>
-<table>
-<thead>
-<tr>
-<th>Arguments</th>
-<th>Description</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>argc</td>
-<td>Number of elements in argv array</td>
-</tr>
-<tr>
-<td>argv</td>
-<td>Array of character strings</td>
-</tr>
-</tbody>
-</table>
-<h4 id="returned-values">Returned values</h4>
-<p>Returns the return code from the lua interpreter.</p>
-<h4 id="notes">Notes</h4>
-<h4 id="example">Example</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">static int
-lua_cmd(int argc, char **argv)
-{
-    lua_main(argc, argv);
-    return 0;
-}
-</pre></div>
-                        
-                        <div class="row">
-                            
-
-
-
-<ul class="nav nav-pills" style="margin-bottom: 10px">
-    <li>
-    
-    <a href=../lua_init/>
-        <span class="fa fa-arrow-left"></span>
-        Previous: lua_init
-    </a>
-    
-    </li>
-    <li class="pull-right">
-    
-    <a href=../../json/json/>
-        Next: JSON
-        <span class="fa fa-arrow-right"></span>
-    </a>
-    
-    </li>
-</ul>
-                        </div>
-                        <footer class="row">
-    <div class="col-xs-12">
-        
-            <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p>
-        
-    </div>
-    <div class="col-xs-12">
-        <div class="logos">
-            <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
-            <small class="footnote">
-                MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
-            </small>
-            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator">
-        </div>
-    </div>
-</footer>
-                    </div>
-                </div>
-            
-            
-        </div>
-
-        <script src="../../../../js/jquery-1.10.2.min.js"></script>
-        <script src="../../../../js/bootstrap-3.0.3.min.js"></script>
-        <script src="../../../../js/highlight.pack.js"></script>
-        <script src="../../../../js/base.js"></script>
-        <script src="../../../../js/custom.js"></script>
-
-    </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb/index.html b/latest/os/modules/fcb/fcb/index.html
index 67564d1..6b09f39 100644
--- a/latest/os/modules/fcb/fcb/index.html
+++ b/latest/os/modules/fcb/fcb/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_append/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_append/index.html b/latest/os/modules/fcb/fcb_append/index.html
index 81c2e02..c0d75dc 100644
--- a/latest/os/modules/fcb/fcb_append/index.html
+++ b/latest/os/modules/fcb/fcb_append/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_append_finish/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_append_finish/index.html b/latest/os/modules/fcb/fcb_append_finish/index.html
index d7468ff..5fbefba 100644
--- a/latest/os/modules/fcb/fcb_append_finish/index.html
+++ b/latest/os/modules/fcb/fcb_append_finish/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_append_to_scratch/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_append_to_scratch/index.html b/latest/os/modules/fcb/fcb_append_to_scratch/index.html
index 476b660..0713d2a 100644
--- a/latest/os/modules/fcb/fcb_append_to_scratch/index.html
+++ b/latest/os/modules/fcb/fcb_append_to_scratch/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_clear/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_clear/index.html b/latest/os/modules/fcb/fcb_clear/index.html
index 4c15a3b..ff51c0b 100644
--- a/latest/os/modules/fcb/fcb_clear/index.html
+++ b/latest/os/modules/fcb/fcb_clear/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_getnext/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_getnext/index.html b/latest/os/modules/fcb/fcb_getnext/index.html
index 7c15d0c..41a85ad 100644
--- a/latest/os/modules/fcb/fcb_getnext/index.html
+++ b/latest/os/modules/fcb/fcb_getnext/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_init/index.html b/latest/os/modules/fcb/fcb_init/index.html
index 4bf1264..aef4090 100644
--- a/latest/os/modules/fcb/fcb_init/index.html
+++ b/latest/os/modules/fcb/fcb_init/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_is_empty/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_is_empty/index.html b/latest/os/modules/fcb/fcb_is_empty/index.html
index 6ee2455..439d02b 100644
--- a/latest/os/modules/fcb/fcb_is_empty/index.html
+++ b/latest/os/modules/fcb/fcb_is_empty/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_offset_last_n/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_offset_last_n/index.html b/latest/os/modules/fcb/fcb_offset_last_n/index.html
index b82c3f4..f2ed5b0 100644
--- a/latest/os/modules/fcb/fcb_offset_last_n/index.html
+++ b/latest/os/modules/fcb/fcb_offset_last_n/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_rotate/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_rotate/index.html b/latest/os/modules/fcb/fcb_rotate/index.html
index edd8ee0..ee55ff1 100644
--- a/latest/os/modules/fcb/fcb_rotate/index.html
+++ b/latest/os/modules/fcb/fcb_rotate/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fcb/fcb_walk/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_walk/index.html b/latest/os/modules/fcb/fcb_walk/index.html
index 6d1f2c9..8711671 100644
--- a/latest/os/modules/fcb/fcb_walk/index.html
+++ b/latest/os/modules/fcb/fcb_walk/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fatfs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fatfs/index.html b/latest/os/modules/fs/fatfs/index.html
index 71e1b8a..6fff957 100644
--- a/latest/os/modules/fs/fatfs/index.html
+++ b/latest/os/modules/fs/fatfs/index.html
@@ -430,17 +430,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs/index.html b/latest/os/modules/fs/fs/fs/index.html
index 8b6848d..cd2b47d 100644
--- a/latest/os/modules/fs/fs/fs/index.html
+++ b/latest/os/modules/fs/fs/fs/index.html
@@ -470,17 +470,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_close/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_close/index.html b/latest/os/modules/fs/fs/fs_close/index.html
index 9c1bcdb..1ccf807 100644
--- a/latest/os/modules/fs/fs/fs_close/index.html
+++ b/latest/os/modules/fs/fs/fs_close/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_closedir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_closedir/index.html b/latest/os/modules/fs/fs/fs_closedir/index.html
index 4120a14..c6c6007 100644
--- a/latest/os/modules/fs/fs/fs_closedir/index.html
+++ b/latest/os/modules/fs/fs/fs_closedir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html b/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html
index 56707eb..6d102f3 100644
--- a/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html
+++ b/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   



[06/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/blinky_primo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/blinky_primo/index.html b/develop/os/tutorials/blinky_primo/index.html
index f16bf5f..5e779e3 100644
--- a/develop/os/tutorials/blinky_primo/index.html
+++ b/develop/os/tutorials/blinky_primo/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -558,13 +545,16 @@
 <p>Create a project with a simple app that blinks an LED on the Arduino Primo board.  Download the application to the target and watch it blink!</p>
 <p>Note that the Mynewt OS will run on the nRF52 chip in the Arduino Primo board. However, the board support package for the Arduino Primo is different from the nRF52 dev kit board support package.</p>
 <p><br></p>
-<h3 id="hardware-and-software-needed">Hardware and Software needed</h3>
+<h3 id="prerequisites">Prerequisites</h3>
+<p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
-<li>Arduino Primo</li>
-<li>Laptop running Mac OS</li>
-<li>A micro USB 2.0 cable to power the Arduino primo board</li>
-<li>It is assumed you have already installed newt tool. </li>
-<li>It is assumed you already installed native tools as described <a href="../../get_started/native_tools/">here</a></li>
+<li>Have an Arduino Primo</li>
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a Micro-USB cable to connect the board and the computer.</li>
+<li>Have a computer to build a Mynewt application and connect to your board over USB.</li>
+<li>Install the Newt tool and toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
+<li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>
+<li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section.</li>
 <li>Debugger - choose one of the two options below. Option 1 requires additional hardware but very easy to set up. Option 2 is free software install but not as simple as Option 1.</li>
 </ul>
 <p><br></p>
@@ -605,57 +595,48 @@ $ go install
 <h3 id="install-jlinkexe">Install jlinkEXE</h3>
 <p>In order to be able to communicate with the SEGGER J-Link debugger on the dev board, you have to download and install the J-Link GDB Server software on to your laptop. You may download the "Software and documentation pack for Mac OS X" from <a href="https://www.segger.com/jlink-software.html">https://www.segger.com/jlink-software.html</a>. </p>
 <p><br></p>
-<h3 id="create-a-project">Create a project.</h3>
-<p>Create a new project to hold your work.  For a deeper understanding, you can read about project creation in 
-<a href="../../get_started/project_create/">Get Started -- Creating Your First Project</a>
-or just follow the commands below.</p>
+<h3 id="create-a-project">Create a Project</h3>
+<p>Create a new project if you do not have an existing one.  You can skip this step and proceed to <a href="#create_targets">create the targets</a> if you already created a project.</p>
+<p>Run the following commands to create a new project:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ mkdir ~/dev
     $ cd ~/dev
     $ newt new myproj
     Downloading project skeleton from apache/incubator-mynewt-blinky...
     Installing skeleton in myproj...
     Project myproj successfully created.
-
     $ cd myproj
-
-    $ newt install -v 
+    $ newt install
     apache-mynewt-core
-    Downloading repository description for apache-mynewt-core... success!
-    ...
-    apache-mynewt-core successfully installed version 0.9.0
+    $
 </pre></div>
 
 
 <p><br></p>
-<p>If you are working with 0.9.0 release (and not any subsequent releases), you will have to instruct newt to download code for the Arduino Primo Board Support Package (bsp) from the <code>develop</code> branch. You first edit the <code>project.yml</code> file in your project directory to change <code>vers:0-latest</code> to <code>0-dev</code>:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">&lt;snip&gt;
-#
-repository.apache-mynewt-core:
-    type: github
-<span style="background-color: #ffffcc">    vers: 0-dev
-</span>    user: apache
-    repo: incubator-mynewt-core
+<h3 id="create-the-targets"><a name="create_targets"></a>Create the Targets</h3>
+<p>Create two targets for the Arduino Primo board - one for the bootloader and one for the Blinky application.</p>
+<p>Run the following <code>newt target</code> commands to create a bootloader target. We name the target <code>primo_boot</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create primo_boot
+$ newt target set primo_boot app=@apache-mynewt-core/apps/boot bsp=@apache-mynewt-core/hw/bsp/arduino_primo_nrf52 build_profile=optimized
 </pre></div>
 
 
-<p>Then you run <code>newt upgrade</code>:</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt upgrade
-apache-mynewt-core
-Would you like to upgrade repository apache-mynewt-core from 0.9.0-none to 0.0.0-none ? [Yn] Y
+<p><br>
+Run the following <code>newt target</code> commands to create a target for your Blinky application. We name the target <code>primoblinky</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create primoblinky
+$ newt target set primoblinky app=apps/blinky bsp=@apache-mynewt-core/hw/bsp/arduino_primo_nrf52 build_profile=debug
 </pre></div>
 
 
-<p><strong>Note</strong>: With the next release, the Arduino Primo bsp will be included in the main release package. The above edit and <code>newt upgrade</code> step will not be required.</p>
-<p><br></p>
-<h3 id="create-the-targets">Create the targets</h3>
-<p>Create two targets - one for the bootloader and one for the Primo board.  </p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create primoblinky
-$ newt target set primoblinky app=@apache-mynewt-core/apps/blinky bsp=@apache-mynewt-core/hw/bsp/arduino_primo_nrf52 build_profile=debug
+<p><br>
+If you are using openocd, run the following <code>newt target set</code> commands:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target set primoblinky syscfg=OPENCD_DEBUG=1
+$ newt target set primo_boot syscfg=OPENCD_DEBUG=1
+</pre></div>
 
-$ newt target create primo_boot
-$ newt target set primo_boot app=@apache-mynewt-core/apps/boot bsp=@apache-mynewt-core/hw/bsp/arduino_primo_nrf52 build_profile=optimized
 
-$ newt target show
+<p><br>
+You can run the <code>newt target show</code> command to verify your target settings:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target show
 targets/my_blinky_sim
     app=apps/blinky
     bsp=@apache-mynewt-core/hw/bsp/native
@@ -671,52 +652,83 @@ targets/primoblinky
 </pre></div>
 
 
-<p>If you are using openocd you must set the openocd_debug feature for both primo_boot and primoblinky.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target set primo_boot features=openocd_debug
-$ newt target set primoblinky features=openocd_debug
-</pre></div>
-
-
 <p><br></p>
-<h3 id="build-the-target-executables">Build the target executables</h3>
+<h3 id="build-the-target-executables">Build the Target Executables</h3>
+<p>Run the <code>newt build primo_boot</code> command to build the bootloader:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build primo_boot
-&lt;snip&gt;
-Compiling log_shell.c
-Archiving log.a
-Linking boot.elf
-App successfully built: ~/dev/myproj/bin/primo_boot/apps/boot/boot.elf
+Building target targets/primo_boot
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aes.c
+Compiling repos/apache-mynewt-core/apps/boot/src/boot.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/loader.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/bootutil_misc.c
+
+      ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/primo_boot/app/apps/boot/boot.elf
+Target successfully built: targets/primo_boot
 </pre></div>
 
 
+<p><br>
+Run the <code>newt build primoblinky</code> command to build the Blinky application:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build primoblinky
-&lt;snip&gt;
-Compiling stats_shell.c
-Archiving stats.a
-Linking blinky.elf
-App successfully built: ~/dev/myproj/bin/primoblinky/apps/blinky/blinky.elf
+Building target targets/primoblinky
+Compiling repos/apache-mynewt-core/hw/drivers/uart/src/uart.c
+Assembling repos/apache-mynewt-core/hw/bsp/arduino_primo_nrf52/src/arch/cortex_m4/gcc_startup_nrf52.s
+Compiling repos/apache-mynewt-core/hw/bsp/arduino_primo_nrf52/src/sbrk.c
+Compiling repos/apache-mynewt-core/hw/cmsis-core/src/cmsis_nvic.c
+Assembling repos/apache-mynewt-core/hw/bsp/arduino_primo_nrf52/src/arch/cortex_m4/gcc_startup_nrf52_split.s
+Compiling apps/blinky/src/main.c
+Compiling repos/apache-mynewt-core/hw/drivers/uart/uart_bitbang/src/uart_bitbang.c
+Compiling repos/apache-mynewt-core/hw/bsp/arduino_primo_nrf52/src/hal_bsp.c
+
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/primoblinky/app/apps/blinky/blinky.elf
+Target successfully built: targets/primoblinky
 </pre></div>
 
 
 <p><br></p>
-<h3 id="sign-and-create-the-blinky-application-image">Sign and create the blinky application image</h3>
-<p>You must sign and version your application image to download it using newt to the board. Use the newt create-image command to perform this action. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
+<h3 id="sign-and-create-the-blinky-application-image">Sign and Create the Blinky Application Image</h3>
+<p>Run the <code>newt create-image primoblinky 1.0.0</code> command to create and sign the application image. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image primoblinky 1.0.0
+App image succesfully generated: ~/dev/myproj/bin/targets/primoblinky/app/apps/blinky/blinky.img
 </pre></div>
 
 
 <p><br></p>
-<h3 id="connect-the-board">Connect the board</h3>
+<h3 id="connect-to-the-board">Connect to the Board</h3>
 <p>Connect the Segger J-Link debug probe to the JTAG port on the Primo board using the Jlink 9-pin adapter and cable. Note that there are two JTAG ports on the board. Use the one nearest to the reset button as shown in the picture. Also use a micro USB 2.0 cable to connect the Primo board to one of your laptop's USB host ports.</p>
 <p><img alt="J-Link debug probe to Arduino" src="../pics/primo-jlink.jpg" title="Connecting J-Link debug probe to Arduino Primo" /></p>
 <p><br></p>
 <p><strong>Note:</strong> If you are going the OpenOCD route, you do not need to attach this connector. </p>
-<h3 id="download-to-the-target">Download to the target</h3>
-<p>Download the bootloader first and then the blinky executable to the target platform. Don't forget to reset the board if you don't see the LED blinking right away. If the reset button doesn't work, powercycle the board!</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt -v load primo_boot
-$ newt -v load primoblinky
+<h3 id="load-the-bootloader-and-the-blinky-application-image">Load the Bootloader and the Blinky Application Image</h3>
+<p>Run the <code>newt load primo_boot</code> command to load the bootloader onto your board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt load primo_boot
+Loading bootloader
+$
+</pre></div>
+
+
+<p><br>
+Run the <code>newt load primoblinky</code> command to load Blinky application image onto your board.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt  load primoblinky 
+Loading app image into slot 1
+$
 </pre></div>
 
 
+<p>You should see the LED on your board blink!</p>
+<p>Note: If the LED does not blink, try resetting your board.</p>
 <p><br></p>
 <p><strong>Note:</strong> If you want to erase the flash and load the image again, you can use JLinkExe to issue an <code>erase</code> command.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ JLinkExe -device nRF52 -speed 4000 -if SWD

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/blinky_sram_olimex/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/blinky_sram_olimex/index.html b/develop/os/tutorials/blinky_sram_olimex/index.html
index 5c91494..be3a1b8 100644
--- a/develop/os/tutorials/blinky_sram_olimex/index.html
+++ b/develop/os/tutorials/blinky_sram_olimex/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/eddystone/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/eddystone/index.html b/develop/os/tutorials/eddystone/index.html
index 585ac02..be4ca0a 100644
--- a/develop/os/tutorials/eddystone/index.html
+++ b/develop/os/tutorials/eddystone/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/event_queue/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/event_queue/index.html b/develop/os/tutorials/event_queue/index.html
index 4755b7b..4fd628d 100644
--- a/develop/os/tutorials/event_queue/index.html
+++ b/develop/os/tutorials/event_queue/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li class="active">
       <a href="./">Events and Event Queues</a>
     </li>
@@ -952,9 +939,9 @@ Implement the <code>my_interrupt_ev_cb()</code> callback function to process an
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../air_quality_ble/>
+    <a href=../unit_test/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Bluetooth-enabled Air Quality Sensor
+        Previous: Write a Test Suite for a Package
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/ibeacon/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/ibeacon/index.html b/develop/os/tutorials/ibeacon/index.html
index 8a65496..7d7ae7d 100644
--- a/develop/os/tutorials/ibeacon/index.html
+++ b/develop/os/tutorials/ibeacon/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/nRF52/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/nRF52/index.html b/develop/os/tutorials/nRF52/index.html
index 799b0a6..e0c361e 100644
--- a/develop/os/tutorials/nRF52/index.html
+++ b/develop/os/tutorials/nRF52/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -558,63 +545,68 @@
 <p>Create a project with a simple app that blinks an LED on the nRF52 board from Nordic Semiconductors.  Download the application to the target and watch it blink!</p>
 <p>Note that there are several versions of the nRF52 in the market. The boards tested with this tutorial are listed under "Hardware needed" below.</p>
 <p><br></p>
-<h3 id="hardware-needed">Hardware needed</h3>
+<h3 id="prerequistes">Prerequistes</h3>
+<p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
-<li>nRF52 Development Kit (one of the following)<ul>
+<li>Have a nRF52 Development Kit (one of the following)<ul>
 <li>Dev Kit from Nordic - PCA 10040</li>
 <li>Eval Kit from Rigado - BMD-300-EVAL-ES</li>
 </ul>
 </li>
-<li>Laptop running Mac OS</li>
-<li>It is assumed you have already installed newt tool. </li>
-<li>It is assumed you already installed native tools as described <a href="../../get_started/native_tools/">here</a></li>
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a Micro-USB cable to connect the board and the computer.</li>
+<li>Have computer to build a Mynewt application and connect to your board over USB.</li>
+<li>Install the Newt tool and toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
+<li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>
+<li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section.</li>
 </ul>
 <p><br></p>
-<h3 id="install-jlinkexe">Install jlinkEXE</h3>
-<p>In order to be able to communicate with the SEGGER J-Link debugger on the dev board, you have to download and install the J-Link GDB Server software on to your laptop. You may download the "Software and documentation pack for Mac OS X" from <a href="https://www.segger.com/jlink-software.html">https://www.segger.com/jlink-software.html</a>. </p>
-<p><br></p>
-<h3 id="create-a-project">Create a project.</h3>
-<p>Create a new project to hold your work.  For a deeper understanding, you can read about project creation in 
-<a href="../../get_started/project_create/">Get Started -- Creating Your First Project</a>
-or just follow the commands below.</p>
+<h3 id="create-a-project">Create a Project</h3>
+<p>Create a new project if you do not have an existing one.  You can skip this step and proceed to <a href="#create_targets">create the targets</a> if you already have a project created.  </p>
+<p>Run the following commands to create a new project:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ mkdir ~/dev
     $ cd ~/dev
     $ newt new myproj
     Downloading project skeleton from apache/incubator-mynewt-blinky...
     Installing skeleton in myproj...
     Project myproj successfully created.
-
     $ cd myproj
-
-    $ newt install -v 
+    $ newt install
     apache-mynewt-core
-    Downloading repository description for apache-mynewt-core... success!
-    ...
-    apache-mynewt-core successfully installed version 0.9.0-none
+    $
 </pre></div>
 
 
 <p><br></p>
-<h3 id="create-the-targets">Create the targets</h3>
-<p>Create two targets - one for the bootloader and one for the nrf52 board.  </p>
+<h3 id="create-the-targets"><a name="create_targets"></a>Create the Targets</h3>
+<p>Create two targets for the nRF52-DK board - one for the bootloader and one for the Blinky application.</p>
+<p>Run the following <code>newt target</code> commands, from your project directory (~/dev/myproj), to create a bootloader target. We name the target <code>nrf52_boot</code>:</p>
 <p><font color="#F2853F">
-Note: The correct bsp must be chosen for the board you are using. </font></p>
+Note: For this tutorial, we are using the nRF52-DK board.  You must specify the correct bsp for the board you are using. </font> </p>
 <ul>
 <li>For the Nordic Dev Kit choose @apache-mynewt-core/hw/bsp/nrf52dk instead (in the highlighted lines)</li>
 <li>For the Rigado Eval Kit choose @apache-mynewt-core/hw/bsp/bmd300eval instead (in the highlighted lines)</li>
 </ul>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create blink_nordic
-$ newt target set blink_nordic app=apps/blinky
-<span style="background-color: #ffffcc">$ newt target set blink_nordic bsp=@apache-mynewt-core/hw/bsp/nrf52dk
-</span>$ newt target set blink_nordic build_profile=debug
-
-$ newt target create nrf52_boot
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create nrf52_boot
 $ newt target set nrf52_boot app=@apache-mynewt-core/apps/boot
 <span style="background-color: #ffffcc">$ newt target set nrf52_boot bsp=@apache-mynewt-core/hw/bsp/nrf52dk
 </span>$ newt target set nrf52_boot build_profile=optimized
+</pre></div>
+
+
+<p><br>
+Run the following <code>newt target</code> commands to create a target for your Blinky application. We name the target <code>nrf52_blinky</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create nrf52_blinky
+$ newt target set nrf52_blinky app=apps/blinky
+<span style="background-color: #ffffcc">$ newt target set nrf52_blinky bsp=@apache-mynewt-core/hw/bsp/nrf52dk
+</span>$ newt target set nrf52_blinky build_profile=debug
+</pre></div>
+
 
-$ newt target show 
-targets/blink_nordic
+<p><br>
+You can run the <code>newt target show</code> command to verify your target settings:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target show 
+targets/nrf52_blinky
     app=apps/blinky
     bsp=@apache-mynewt-core/hw/bsp/nrf52dk
     build_profile=debug
@@ -626,45 +618,81 @@ targets/nrf52_boot
 
 
 <p><br></p>
-<h3 id="build-the-target-executables">Build the target executables</h3>
+<h3 id="build-the-target-executables">Build the Target Executables</h3>
+<p>Run the <code>newt build nrf52_boot</code> command to build the bootloader:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build nrf52_boot
-...
-Compiling boot.c
-Archiving boot.a
-Linking boot.elf
-App successfully built: ~/dev/myproj/bin/nrf52_boot/apps/boot/boot.elf
+Building target targets/nrf52_boot
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aes.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/loader.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_validate.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/bootutil_misc.c
+Compiling repos/apache-mynewt-core/apps/boot/src/boot.c
+    ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/nrf52_boot/app/apps/boot/boot.elf
+Target successfully built: targets/nrf52_boot
 </pre></div>
 
 
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build blink_nordic
-...
-Compiling main.c
-Archiving blinky.a
-Linking blinky.elf
-App successfully built: ~/dev/myproj/bin/blink_nordic/apps/blinky/blinky.elf
+<p><br>
+Run the <code>newt build nrf52_blinky</code> command to build the Blinky application:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build nrf52_blinky
+Building target targets/nrf52_blinky
+Assembling repos/apache-mynewt-core/hw/bsp/nrf52dk/src/arch/cortex_m4/gcc_startup_nrf52_split.s
+Compiling repos/apache-mynewt-core/hw/bsp/nrf52dk/src/sbrk.c
+Compiling repos/apache-mynewt-core/hw/cmsis-core/src/cmsis_nvic.c
+Compiling repos/apache-mynewt-core/hw/drivers/uart/uart_hal/src/uart_hal.c
+Assembling repos/apache-mynewt-core/hw/bsp/nrf52dk/src/arch/cortex_m4/gcc_startup_nrf52.s
+Compiling apps/blinky/src/main.c
+
+    ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/nrf52_blinky/app/apps/blinky/blinky.elf
+Target successfully built: targets/nrf52_blinky
 </pre></div>
 
 
 <p><br></p>
-<h3 id="sign-and-create-the-blinky-application-image">Sign and create the blinky application image</h3>
-<p>You must sign and version your application image to download it using newt to the board. Use the newt create-image command to perform this action. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image blink_nordic 1.0.0
-App image successfully generated: ~/dev/myproj/bin/blink_nordic/apps/blinky/blinky.img
-Build manifest: ~/dev/myproj/bin/blink_nordic/apps/blinky/manifest.json
+<h3 id="sign-and-create-the-blinky-application-image">Sign and Create the Blinky Application Image</h3>
+<p>Run the <code>newt create-image nrf52_blinky 1.0.0</code> command to create and sign the application image. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image nrf52_blinky 1.0.0
+newt create-image nrf52_blinky 1.0.0
+App image succesfully generated: ~/dev/myproj/bin/targets/nrf52_blinky/app/apps/blinky/blinky.img
 </pre></div>
 
 
 <p><br></p>
-<h3 id="connect-the-board">Connect the board</h3>
-<p>Connect the evaluation board via micro-USB to your PC via USB cable.</p>
-<p><br></p>
-<h3 id="download-to-the-target">Download to the target</h3>
-<p>Download the bootloader first and then the blinky executable to the target platform. Don't forget to reset the board if you don't see the LED blinking right away!</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt -v load nrf52_boot
-$ newt -v load blink_nordic
+<h3 id="connect-to-the-board">Connect to the Board</h3>
+<ul>
+<li>Connect a micro-USB cable from your computer to the micro-USB port on your nRF52-DK board.</li>
+<li>Turn the power on the board to ON. You should see the green LED light up on the board.</li>
+</ul>
+<h3 id="load-the-bootloader-and-the-blinky-application-image">Load the Bootloader and the Blinky Application Image</h3>
+<p>Run the <code>newt load nrf52_boot</code> command to load the bootloader onto your board: </p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt load nrf52_boot
+Loading bootloader
+$
+</pre></div>
+
+
+<p><br>
+Run the <code>newt load nrf52_blinky</code> command to load Blinky application image onto your board.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt -v load nrf52_blinky
+Loading app image into slot 1
 </pre></div>
 
 
+<p>You should see the LED1 on your board blink!</p>
+<p>Note: If the LED does not blink, try resetting your board.</p>
 <p><br></p>
 <p><strong>Note:</strong> If you want to erase the flash and load the image again, you can use JLinkExe to issue an <code>erase</code> command.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ JLinkExe -device nRF52 -speed 4000 -if SWD
@@ -693,8 +721,7 @@ $
 
 
 <h3 id="conclusion">Conclusion</h3>
-<p>You have created, setup, compiled, loaded, and ran your first mynewt application
-for an nrf52 board.</p>
+<p>You have created, setup, compiled, loaded, and ran your first mynewt application for an nrf52 board.</p>
 <p>We have more fun tutorials for you to get your hands dirty. Be bold and work on the OS with tutorials on <a href="../unit_test/">writing a test suite</a> or try enabling additional functionality such as <a href="../project-target-slinky/">remote comms</a> or <a href="../bletiny_project/">Bluetooth Low Energy</a> on your current board.</p>
 <p>If you see anything missing or want to send us feedback, please do so by signing up for appropriate mailing lists on our <a href="../../../community/">Community Page</a>.</p>
 <p>Keep on hacking and blinking!</p>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/nrf52_adc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/nrf52_adc/index.html b/develop/os/tutorials/nrf52_adc/index.html
index c9eda74..13cbb7d 100644
--- a/develop/os/tutorials/nrf52_adc/index.html
+++ b/develop/os/tutorials/nrf52_adc/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/olimex/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/olimex/index.html b/develop/os/tutorials/olimex/index.html
index d50ee41..f07fa3d 100644
--- a/develop/os/tutorials/olimex/index.html
+++ b/develop/os/tutorials/olimex/index.html
@@ -341,19 +341,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -554,29 +541,24 @@
                             <h2 id="blinky-your-hello-world-on-olimex">Blinky, your "Hello World!", on Olimex</h2>
 <h3 id="objective">Objective</h3>
 <p>Learn how to use packages from a default application repository of Mynewt to build your first <em>Hello World</em> application (Blinky) on a target board. Once built using the <em>newt</em> tool, this application will blink the LED lights on the target board. Fun stuff!</p>
-<p>This tutorial shows you how to create a runtime image for an Olimex board to make its LED blink. Download the image to its flash memory and see the LED blink!</p>
-<p><br></p>
-<h3 id="what-you-need">What you need</h3>
-<ol>
-<li>STM32-E407 development board from Olimex. You can order it from <a href="http://www.mouser.com/search/ProductDetail.aspx?R=0virtualkey0virtualkeySTM32-E407">http://www.mouser.com</a>, <a href="http://www.digikey.com/product-detail/en/STM32-E407/1188-1093-ND/3726951">http://www.digikey.com</a>, and other places.</li>
-<li>ARM-USB-TINY-H connector with JTAG interface for debugging ARM microcontrollers (comes with the ribbon cable to hook up to the board)</li>
-<li>USB A-B type cable to connect the debugger to your personal computer</li>
-<li>Personal Computer with Mac OS (Mac: OS X Yosemite Version 10.10.5) or Linux box (Ubuntu 14.10: Utopic Unicorn)</li>
-<li>An account on Github repository and <em>git</em> installed on your computer.</li>
-<li>It is assumed you have already installed newt tool.</li>
-<li>It is assumed you already installed native tools as described <a href="../../get_started/native_tools/">here</a></li>
-</ol>
-<p>Also, we assume that you're familiar with UNIX shells. Let's gets started!</p>
+<p>This tutorial shows you how to create a blinky application for the Olimex board. It also shows you how to load the application onto the board's flash memory and run the application.</p>
 <p><br></p>
-<h3 id="prepare-the-software">Prepare the Software</h3>
+<h3 id="prerequisites">Prerequisites</h3>
+<p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
-<li>Make sure the PATH environment variable includes the $HOME/dev/go/bin directory.</li>
+<li>Have a STM32-E407 development board from Olimex. </li>
+<li>Have a ARM-USB-TINY-H connector with JTAG interface for debugging ARM microcontrollers (comes with the ribbon cable to hook up to the board)</li>
+<li>Have USB A-B type cable to connect the debugger to your personal computer.</li>
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a computer to build a Mynewt application and connect to your board over USB.</li>
+<li>Install the Newt tool and toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
+<li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or know how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>
+<li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section.</li>
 </ul>
 <p><br></p>
-<h3 id="create-a-project">Create a project.</h3>
-<p>Create a new project to hold your work.  For a deeper understanding, you can read about project creation in
-<a href="../../get_started/project_create/">Get Started -- Creating Your First Project</a>
-or just follow the commands below.</p>
+<h3 id="create-a-project">Create a Project</h3>
+<p>Create a new project if you do not have an existing one.  You can skip this step and proceed to <a href="#create_targets">create the targets</a> if you already created a project.</p>
+<p>Run the following commands to create a new project:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ mkdir ~/dev
     $ cd ~/dev
     $ newt new myproj
@@ -586,112 +568,139 @@ or just follow the commands below.</p>
 
     $cd myproj
 
-    $ newt install -v
+    $ newt install
     apache-mynewt-core
-    Downloading repository description for apache-mynewt-core... success!
-    ...
-    apache-mynewt-core successfully installed version 0.7.9-none
+    $
 </pre></div>
 
 
 <p><br></p>
-<h3 id="create-targets">Create targets</h3>
-<p>Change directory to ~/dev/myproj directory and define the <em>blinky</em> target inside myproj, using the <em>newt</em> tool. Starting with the target name, assign specific aspects of the project, as shown below, to pull the appropriate packages and build the right bundle or list for the board. For example, we set the build_profile, board support package (bsp), and app.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt target create blinky
-    $ newt target set blinky build_profile=debug
-    $ newt target set blinky bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
-    $ newt target set blinky app=apps/blinky
-
-    $ newt target create boot_olimex
-    $ newt target set boot_olimex app=@apache-mynewt-core/apps/boot
-    $ newt target set boot_olimex bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
-    $ newt target set boot_olimex build_profile=optimized
-
-    $ newt target show
-    targets/blinky
-        app=apps/blinky
-        bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
-        build_profile=debug
-    targets/boot_olimex
-        app=@apache-mynewt-core/apps/boot
-        bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
-        build_profile=optimized
+<h3 id="create-the-targets"><a name="create_targets"></a>Create the Targets</h3>
+<p>Create two targets for the Olimex board - one for the bootloader and one for the Blinky application.</p>
+<p>Run the following <code>newt target</code> commands to create a bootloader target. We name the target <code>boot_olimex</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create boot_olimex
+$ newt target set boot_olimex build_profile=optimized
+$ newt target set boot_olimex app=@apache-mynewt-core/apps/boot
+$ newt target set boot_olimex bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
+</pre></div>
+
+
+<p><br>
+Run the following <code>newt target</code> commands to create a target for your Blinky application. We name the target <code>olimex_blinky</code>:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target create olimex_blinky
+$ newt target set olimex_blinky build_profile=debug
+$ newt target set olimex_blinky bsp=@apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard
+$ newt target set olimex_blinky app=apps/blinky
 </pre></div>
 
 
 <p><br></p>
-<h3 id="build-the-images">Build the images</h3>
-<p>Next, let's build the images for the above targets. Afer you build the target, you can find the executable <em>blinky.elf</em> in the project directory <em>~/dev/myproj/bin/blinky/apps/blinky/.</em></p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt build blinky
-    Compiling case.c
-    Compiling suite.c
-    ...
-    Linking blinky.elf
-    App successfully built:~/dev/myproj/bin/blinky/apps/blinky/blinky.elf
-    $ ls ~/dev/myproj/bin/blinky/apps/blinky/
-        blinky.elf      blinky.elf.bin     blinky.elf.cmd  
-        blinky.elf.lst  blinky.elf.map
-
-    $ newt build boot_olimex
-    Building target targets/boot_olimex
-    App successfully built: ~/dev/myproj/bin/boot_olimex/apps/boot/boot.elf
+<h3 id="build-the-bootloader">Build the Bootloader</h3>
+<p>Run the <code>newt build boot_olimex</code> command to build the boot loader image:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build boot_olimex
+Building target targets/boot_olimex
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+Compiling bin/targets/boot_olimex/generated/src/boot_olimex-sysflash.c
+
+     ...
+
+Archiving libc_baselibc.a
+Archiving sys_flash_map.a
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/boot_olimex/app/apps/boot/boot.elf
+Target successfully built: targets/boot_olimex
 </pre></div>
 
 
 <p><br></p>
-<h3 id="sign-and-create-the-blinky-application-image">Sign and create the blinky application image</h3>
-<p>You must sign and version your application image to download it using newt to the board. Use the newt create-image command to perform this action. You may assign an arbitrary version (e.g. 1.0.0) to the image.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image blinky 1.0.0
-App image successfully generated: ~/dev/myproj/bin/blinky/apps/blinky/blinky.img
-Build manifest: ~/dev/myproj/bin/blinky/apps/blinky/manifest.json
+<h3 id="build-the-blinky-application">Build the Blinky Application</h3>
+<p>Run the <code>newt build olimex_blinky</code> command to build the blinky application:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt build olimex_blinky
+Building target targets/olimex_blinky
+Assembling repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/src/arch/cortex_m4/startup_STM32F40x.s
+Compiling repos/apache-mynewt-core/hw/drivers/uart/src/uart.c
+Compiling repos/apache-mynewt-core/hw/cmsis-core/src/cmsis_nvic.c
+Compiling repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/src/sbrk.c
+Compiling apps/blinky/src/main.c
+Compiling repos/apache-mynewt-core/hw/drivers/uart/uart_hal/src/uart_hal.c
+Compiling repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/src/hal_bsp.c
+Compiling repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/src/system_stm32f4xx.c
+Compiling repos/apache-mynewt-core/hw/hal/src/hal_common.c
+Compiling repos/apache-mynewt-core/hw/hal/src/hal_flash.c
+
+   ...
+
+Archiving sys_mfg.a
+Archiving sys_sysinit.a
+Archiving util_mem.a
+Linking ~/dev/myproj/bin/targets/olimex_blinky/app/apps/blinky/blinky.elf
+Target successfully built: targets/olimex_blinky
 </pre></div>
 
 
 <p><br></p>
-<h3 id="prepare-the-hardware-to-boot-from-flash">Prepare the hardware to boot from flash</h3>
-<ul>
-<li>Locate the boot jumpers on the board.</li>
-</ul>
+<h3 id="sign-and-create-the-blinky-application-image">Sign and Create the Blinky Application Image</h3>
+<p>Run the <code>newt create-image olimex_blinky 1.0.0</code> command to sign and create an image file for your blinky application. You may assign an arbitrary version (e.g. 1.0.0) number.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt create-image olimex_blinky 1.0.0
+App image succesfully generated: ~/dev/myproj/bin/targets/olimex_blinky/app/apps/blinky/blinky.img
+</pre></div>
+
+
 <p><br></p>
-<p><img alt="Alt Layout - Top View" src="../pics/topview.png" />
-<img alt="Alt Layout - Bottom View" src="../pics/bottomview.png" /></p>
+<h3 id="connect-to-the-board">Connect to the Board</h3>
+<p>Configure your board to bootload from flash memory and to use the JTAG/SWD for the power source. Refer to the following diagrams to locate the boot jumpers and power input select jumpers on your board.
+<br></p>
+<p align="center">
+<img src="../pics/STM32-E407_top_small.jpg"></img>
+<br>
+<img src="../pics/STM32-E407_bot_small.jpg"></img>
+</p>
+
 <p><br></p>
 <ul>
 <li>
-<p>B1_1/B1_0 and B0_1/B0_0 are PTH jumpers. Note that because the markings on the board may not always be accurate, when in doubt, you should always refer to the manual for the correct positioning. Since the jumpers are a pair, they should move together, and as such, the pair is responsible for the boot mode when bootloader is present.
-To locate the bootloader, the board searches in three places: User Flash Memory, System Memory or the Embedded SRAM. For this Blinky project, we will configure it to boot from flash by jumpering <strong>B0_0</strong> and <strong>B1_0</strong>.</p>
+<p>Locate the boot jumpers on the lower right corner of the board.  <strong>B1_1/B1_0</strong> and <strong>B0_1/B0_0</strong> are PTH jumpers to control the boot mode when a bootloader is present.  These two jumpers must be moved together.  The board searches for the bootloader in three places: User Flash Memory, System Memory or the Embedded SRAM. For this Blinky project, we configure the board to boot from flash by jumpering <strong>B0_0</strong> and <strong>B1_0</strong>.
+<strong>Note:</strong> The markings on the board may not always be accurate, and you should always refer to the manual for the correct positioning. </p>
 </li>
 <li>
-<p>Connect USB-OTG#2 in the picture above to a USB port on your computer (or a powered USB hub to make sure there is enough power available to the board).</p>
+<p>Locate the <strong>Power Input Select</strong> jumpers on the lower left corner of the board.  Set the Power Select jumpers to position 3 and 4 to use the JTAG/SWD for the power source. If you would like to use a different power source, refer to [OLIMEZ STM32-E407] user manual](https://www.olimex.com/Products/ARM/ST/STM32-E407/resources/STM32-E407.pdf) to pin specificiation.</p>
 </li>
 <li>
-<p>The red PWR LED should be lit.</p>
+<p>Connect the JTAG connector to the JTAG/SWD interface on the board. </p>
 </li>
 <li>
-<p>Connect the JTAG connector to the SWD/JTAG interface on the board. The other end of the cable should be connected to the USB port or hub of your computer.</p>
+<p>Connect the USB A-B cable to the ARM-USB-TINY-H connector and your personal computer. </p>
+</li>
+<li>
+<p>Check that the red PWR LED lights up.
+<br></p>
 </li>
 </ul>
-<p><br></p>
-<h3 id="lets-go">Let's Go!</h3>
-<ul>
-<li>Load the images</li>
-</ul>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt -v load boot_olimex
-Loading image with: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/olimex_stm32-e407_devboard_download.sh ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/ ~/dev/myproj/bin/boot_olimex/apps/boot/boot BASELIBC FS LIBC NFFS bootloader
+<h3 id="load-the-bootloader-and-blinky-application">Load the Bootloader and Blinky Application</h3>
+<p>Run the <code>newt load boot_olimex</code> command to load the bootloader image onto the board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$newt load -v boot_olimex
+Loading bootloader
+Load command: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/olimex_stm32-e407_devboard_download.sh ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard ~/dev/myproj/bin/targets/boot_olimex/app/apps/boot/boot
 Successfully loaded image.
+</pre></div>
+
 
-$ newt -v load blinky
-Loading image with: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/olimex_stm32-e407_devboard_download.sh ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/ ~/dev/myproj/bin/blinky/apps/blinky/blinky BASELIBC LIBC
+<p>Run the <code>newt load olimex_blinky</code> command to load the blinky application image onto the board:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">newt load -v olimex_blinky
+Loading app image into slot 1
+Load command: ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard/olimex_stm32-e407_devboard_download.sh ~/dev/myproj/repos/apache-mynewt-core/hw/bsp/olimex_stm32-e407_devboard ~/dev/myproj/bin/targets/olimex_blinky/app/apps/blinky/blinky
 Successfully loaded image.
 </pre></div>
 
 
-<p><br></p>
-<ul>
-<li>Voil�! The LED should be blinking! Success!</li>
-</ul>
-<p><br></p>
-<p><strong>But wait...not so fast.</strong> Let's double check that it is indeed booting from flash and making the LED blink from the image in flash. Pull the USB cable off the Olimex JTAG adaptor, severing the debug connection to the JTAG port. Next power off the Olimex board by pulling out the USB cable from the board. Wait for a couple of seconds and plug the USB cable back to the board.</p>
+<p><br>
+The LED should be blinking!</p>
+<p><br>
+<strong>But wait...not so fast.</strong> Let's double check that it is indeed booting from flash and making the LED blink from the image in flash. Pull the USB cable off the Olimex JTAG adaptor, severing the debug connection to the JTAG port. Next power off the Olimex board by pulling out the USB cable from the board. Wait for a couple of seconds and plug the USB cable back to the board.</p>
 <p>The LED light will start blinking again. Success!</p>
 <p><strong>Note #1:</strong> If you want to download the image to flash and a gdb session opened up, use <code>newt debug blinky</code>. Type <code>c</code> to continue inside the gdb session.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt debug blinky

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/pics/STM32-E407_bot_small.jpg
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/pics/STM32-E407_bot_small.jpg b/develop/os/tutorials/pics/STM32-E407_bot_small.jpg
new file mode 100755
index 0000000..da1889e
Binary files /dev/null and b/develop/os/tutorials/pics/STM32-E407_bot_small.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/pics/STM32-E407_top_small.jpg
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/pics/STM32-E407_top_small.jpg b/develop/os/tutorials/pics/STM32-E407_top_small.jpg
new file mode 100755
index 0000000..938a04b
Binary files /dev/null and b/develop/os/tutorials/pics/STM32-E407_top_small.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/pin-wheel-mods/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/pin-wheel-mods/index.html b/develop/os/tutorials/pin-wheel-mods/index.html
index 7a31e85..6ca9a15 100644
--- a/develop/os/tutorials/pin-wheel-mods/index.html
+++ b/develop/os/tutorials/pin-wheel-mods/index.html
@@ -355,19 +355,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/project-slinky/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/project-slinky/index.html b/develop/os/tutorials/project-slinky/index.html
index a238b2c..8674d78 100644
--- a/develop/os/tutorials/project-slinky/index.html
+++ b/develop/os/tutorials/project-slinky/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -564,24 +551,38 @@
 <p>To build your target, use <code>newt build</code>.  When complete, an executable file
 is created.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt build sim_slinky 
-    Compiling main.c
-    ...
-    Linking slinky.elf
-    App successfully built: ~/dev/slinky/bin/sim_slinky/apps/slinky/slinky.elf
+    Building target targets/sim_slinky
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec256.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/image_rsa.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/image_ec.c
+    Compiling repos/apache-mynewt-core/boot/split/src/split.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/image_validate.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/loader.c
+    Compiling repos/apache-mynewt-core/boot/bootutil/src/bootutil_misc.c
+    Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aesni.c
+    Compiling repos/apache-mynewt-core/crypto/mbedtls/src/aes.c
+    Compiling repos/apache-mynewt-core/boot/split/src/split_config.c
+    Compiling repos/apache-mynewt-core/apps/slinky/src/main.c
+
+              ...
+
+    Archiving util_crc.a
+    Archiving util_mem.a
+    Linking ~/dev/slinky/bin/targets/sim_slinky/app/apps/slinky/slinky.elf
+    Target successfully built: targets/sim_slinky
 </pre></div>
 
 
 <h3 id="run-the-target">Run the target</h3>
 <p>Run the executable you have build for the simulated environment. The serial port name on which the simulated target is connected is shown in the output
 when mynewt slinky starts.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ ~/dev/slinky/bin/sim_slinky/apps/slinky/slinky.elf
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ ~/dev/slinky/bin/targets/sim_slinky/app/apps/slinky/slinky.elf
     uart0 at /dev/ttys005
 </pre></div>
 
 
 <p><br></p>
-<p>In this example, the slinky app opened up a com port <code>/dev/ttys005</code>
-for communications with newtmgr. </p>
+<p>In this example, the slinky app opened up a com port <code>/dev/ttys005</code> for communications with newtmgr. </p>
 <p><strong>NOTE:</strong> This application will block. You will need to open a new console (or execute this in another console) to continue the tutorial.*</p>
 <p><br></p>
 <h3 id="setting-up-a-connection-profile">Setting up a connection profile</h3>
@@ -590,34 +591,28 @@ for communications with newtmgr. </p>
     Connection profile sim1 successfully added
     $ newtmgr conn show
     Connection profiles: 
-      sim1: type=serial, connstring=&#39;/dev/ttys007&#39;
+      sim1: type=serial, connstring=&#39;/dev/ttys005&#39;
 </pre></div>
 
 
 <h3 id="executing-newtmgr-commands-with-the-target">Executing newtmgr commands with the target</h3>
-<p>You can now use connection profile <code>sim1</code> to talk to the running sim_blinky.
+<p>You can now use connection profile <code>sim1</code> to talk to the running sim_slinky.
 As an example, we will query the running mynewt OS for the usage of its 
 memory pools.  </p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newtmgr -c sim1 mpstats
     Return Code = 0
-      nffs_cache_inode_pool (blksize=36 nblocks=4 nfree=4)
-      nffs_cache_block_pool (blksize=32 nblocks=64 nfree=64)
-      nffs_dir_pool (blksize=8 nblocks=4 nfree=4)
-      default_mbuf_data (blksize=256 nblocks=10 nfree=8)
-      nffs_file_pool (blksize=12 nblocks=4 nfree=4)
-      nffs_inode_entry_pool (blksize=24 nblocks=100 nfree=98)
-      nffs_block_entry_pool (blksize=12 nblocks=100 nfree=100)
+                            name blksz  cnt free  min
+                          msys_1   292   12   10   10
 </pre></div>
 
 
 <p>As a test command, you can send an arbitrary string to the target and it
 will echo that string back in a response to newtmgr.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newtmgr -c sim1 echo &quot;Hello Mynewt&quot;
-    {&quot;r&quot;: &quot;Hello Mynewt&quot;}
+    Hello Mynewt
 </pre></div>
 
 
-<p>The response comes back as a json string.</p>
 <p>In addition to these, you can also examine running tasks, statistics, 
 logs, image status (not on sim), and configuration.</p>
                         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/project-target-slinky/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/project-target-slinky/index.html b/develop/os/tutorials/project-target-slinky/index.html
index 150eeeb..3bbf2d8 100644
--- a/develop/os/tutorials/project-target-slinky/index.html
+++ b/develop/os/tutorials/project-target-slinky/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/repo/add_repos/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/repo/add_repos/index.html b/develop/os/tutorials/repo/add_repos/index.html
index d41289e..ee4ce0c 100644
--- a/develop/os/tutorials/repo/add_repos/index.html
+++ b/develop/os/tutorials/repo/add_repos/index.html
@@ -308,19 +308,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/repo/create_repo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/repo/create_repo/index.html b/develop/os/tutorials/repo/create_repo/index.html
index ed01986..8d1c5fa 100644
--- a/develop/os/tutorials/repo/create_repo/index.html
+++ b/develop/os/tutorials/repo/create_repo/index.html
@@ -308,19 +308,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/repo/private_repo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/repo/private_repo/index.html b/develop/os/tutorials/repo/private_repo/index.html
index 9b55422..e2e0399 100644
--- a/develop/os/tutorials/repo/private_repo/index.html
+++ b/develop/os/tutorials/repo/private_repo/index.html
@@ -308,19 +308,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/repo/upgrade_repo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/repo/upgrade_repo/index.html b/develop/os/tutorials/repo/upgrade_repo/index.html
index ed89c47..df076eb 100644
--- a/develop/os/tutorials/repo/upgrade_repo/index.html
+++ b/develop/os/tutorials/repo/upgrade_repo/index.html
@@ -308,19 +308,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/tasks_lesson/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/tasks_lesson/index.html b/develop/os/tutorials/tasks_lesson/index.html
index 44cb04b..eff8c64 100644
--- a/develop/os/tutorials/tasks_lesson/index.html
+++ b/develop/os/tutorials/tasks_lesson/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/tutorials/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/tutorials/index.html b/develop/os/tutorials/tutorials/index.html
index d6d8806..6ff729e 100644
--- a/develop/os/tutorials/tutorials/index.html
+++ b/develop/os/tutorials/tutorials/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/unit_test/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/unit_test/index.html b/develop/os/tutorials/unit_test/index.html
index bd5bf05..ce49d45 100644
--- a/develop/os/tutorials/unit_test/index.html
+++ b/develop/os/tutorials/unit_test/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>
@@ -674,8 +661,8 @@ the message shown below.</p>
     </li>
     <li class="pull-right">
     
-    <a href=../air_quality_sensor/>
-        Next: Basic Air Quality Sensor
+    <a href=../event_queue/>
+        Next: Events and Event Queues
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/tutorials/wi-fi_on_arduino/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/wi-fi_on_arduino/index.html b/develop/os/tutorials/wi-fi_on_arduino/index.html
index bb9e5a2..b184d0d 100644
--- a/develop/os/tutorials/wi-fi_on_arduino/index.html
+++ b/develop/os/tutorials/wi-fi_on_arduino/index.html
@@ -278,19 +278,6 @@
           
               
                 
-  
-  
-    <li><a href="
-  ../air_quality_sensor/
-">Air-quality Sensor project</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
     <li >
       <a href="../event_queue/">Events and Event Queues</a>
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/sitemap.xml
----------------------------------------------------------------------
diff --git a/develop/sitemap.xml b/develop/sitemap.xml
index cd069f3..5bf7961 100644
--- a/develop/sitemap.xml
+++ b/develop/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,7 +13,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -22,7 +22,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -30,7 +30,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -38,7 +38,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -46,7 +46,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -54,7 +54,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -62,7 +62,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -71,7 +71,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -83,7 +83,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -123,13 +123,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2017-03-22</lastmod>
+     <lastmod>2017-03-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/events/index.html
----------------------------------------------------------------------
diff --git a/events/index.html b/events/index.html
index 5e203f2..7cde7a5 100644
--- a/events/index.html
+++ b/events/index.html
@@ -159,14 +159,14 @@
                         <div class="event">
                             <h2>IoTFuse: Conference 2017</h2>
                             <p>21 April, 2017</p>
-                            <p>Minneapolis Convention Center, Minneapolis, CA, USA</p>
+                            <p>Minneapolis Convention Center, Minneapolis, MN, USA</p>
                             <p>Presentation on managing devices running open source Operating Systems including Apache Mynewt.</p>
                         </div>
                     
                         <div class="event">
                             <h2>ApacheIoT, ApacheCon North America</h2>
                             <p>16-18 May, 2017</p>
-                            <p>Santa Clara Convention Center, Santa Clara, CA, USA</p>
+                            <p>InterContinental Miami, Miami, FL, USA</p>
                             <p>A new conference track that lays the vision, framework, and components for an IoT system. See more at <a href="http://us.apacheiot.org"> http://us.apacheiot.org</a>. Multiple talks will feature Apache Mynewt.</p>
                         </div>
                     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index 0284379..ab2ae6f 100644
--- a/index.html
+++ b/index.html
@@ -249,13 +249,16 @@
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF52832/"> nRF52 DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
-                  <li>
-                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                   <li>
+                      <a href="https://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK"> nRF52840 Preview DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF51822"> nRF51 DK </a> from Nordic Semiconductor (Cortex-M0)
                   </li>
                   <li>
+                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                  </li>
+                  <li>
                       <a href="http://redbearlab.com/blenano/"> BLE Nano </a> from RedBear (Nordic nRF51822 SoC based)
                   </li>
                   <li>
@@ -265,9 +268,6 @@
                       <a href="https://www.rigado.com/products/bmd-300-eval-kit/"> BMD-300-EVAL-ES </a> from Rigado (Cortex-M4)
                   </li>
                   <li>
-                      <a href="http://www.st.com/en/evaluation-tools/stm32f3discovery.html"> STM32F3DISCOVERY </a> from ST Micro (Cortex-M4)
-                  </li>
-                  <li>
                       <a href="http://www.st.com/en/evaluation-tools/stm32f4discovery.html"> STM32F4DISCOVERY </a> from ST Micro (Cortex-M4)
                   </li>
                   <li>
@@ -291,8 +291,13 @@
                   <li>
                       <a href="https://creatordev.io/ci40-iot-dev-kit.html"> Creator Ci40 IoT Kit </a> from Imagination Technologies (MIPS CPU)
                   </li>
+                  <li>
+                      <a href="http://microbit.org/hardware"> BBB micro:bit </a> with Nordic nRF51822 (Cortex-M0)
+                  </li> 
+                  <li>
+                      <a href="https://www.adafruit.com/feather"> Adafruit Feather </a> with Nordic nRF52 (Cortex-M4) 
+                  </li>
               </ul>
-
             </div>
           </div>
         </div>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/landing.html
----------------------------------------------------------------------
diff --git a/landing.html b/landing.html
index ccc7ec2..a0ad2e9 100644
--- a/landing.html
+++ b/landing.html
@@ -108,13 +108,16 @@
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF52832/"> nRF52 DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
-                  <li>
-                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                   <li>
+                      <a href="https://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK"> nRF52840 Preview DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF51822"> nRF51 DK </a> from Nordic Semiconductor (Cortex-M0)
                   </li>
                   <li>
+                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                  </li>
+                  <li>
                       <a href="http://redbearlab.com/blenano/"> BLE Nano </a> from RedBear (Nordic nRF51822 SoC based)
                   </li>
                   <li>
@@ -124,9 +127,6 @@
                       <a href="https://www.rigado.com/products/bmd-300-eval-kit/"> BMD-300-EVAL-ES </a> from Rigado (Cortex-M4)
                   </li>
                   <li>
-                      <a href="http://www.st.com/en/evaluation-tools/stm32f3discovery.html"> STM32F3DISCOVERY </a> from ST Micro (Cortex-M4)
-                  </li>
-                  <li>
                       <a href="http://www.st.com/en/evaluation-tools/stm32f4discovery.html"> STM32F4DISCOVERY </a> from ST Micro (Cortex-M4)
                   </li>
                   <li>
@@ -150,8 +150,13 @@
                   <li>
                       <a href="https://creatordev.io/ci40-iot-dev-kit.html"> Creator Ci40 IoT Kit </a> from Imagination Technologies (MIPS CPU)
                   </li>
+                  <li>
+                      <a href="http://microbit.org/hardware"> BBB micro:bit </a> with Nordic nRF51822 (Cortex-M0)
+                  </li> 
+                  <li>
+                      <a href="https://www.adafruit.com/feather"> Adafruit Feather </a> with Nordic nRF52 (Cortex-M4) 
+                  </li>
               </ul>
-
             </div>
           </div>
         </div>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/index.html
----------------------------------------------------------------------
diff --git a/latest/index.html b/latest/index.html
index 0284379..ab2ae6f 100644
--- a/latest/index.html
+++ b/latest/index.html
@@ -249,13 +249,16 @@
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF52832/"> nRF52 DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
-                  <li>
-                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                   <li>
+                      <a href="https://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK"> nRF52840 Preview DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF51822"> nRF51 DK </a> from Nordic Semiconductor (Cortex-M0)
                   </li>
                   <li>
+                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                  </li>
+                  <li>
                       <a href="http://redbearlab.com/blenano/"> BLE Nano </a> from RedBear (Nordic nRF51822 SoC based)
                   </li>
                   <li>
@@ -265,9 +268,6 @@
                       <a href="https://www.rigado.com/products/bmd-300-eval-kit/"> BMD-300-EVAL-ES </a> from Rigado (Cortex-M4)
                   </li>
                   <li>
-                      <a href="http://www.st.com/en/evaluation-tools/stm32f3discovery.html"> STM32F3DISCOVERY </a> from ST Micro (Cortex-M4)
-                  </li>
-                  <li>
                       <a href="http://www.st.com/en/evaluation-tools/stm32f4discovery.html"> STM32F4DISCOVERY </a> from ST Micro (Cortex-M4)
                   </li>
                   <li>
@@ -291,8 +291,13 @@
                   <li>
                       <a href="https://creatordev.io/ci40-iot-dev-kit.html"> Creator Ci40 IoT Kit </a> from Imagination Technologies (MIPS CPU)
                   </li>
+                  <li>
+                      <a href="http://microbit.org/hardware"> BBB micro:bit </a> with Nordic nRF51822 (Cortex-M0)
+                  </li> 
+                  <li>
+                      <a href="https://www.adafruit.com/feather"> Adafruit Feather </a> with Nordic nRF52 (Cortex-M4) 
+                  </li>
               </ul>
-
             </div>
           </div>
         </div>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/latest/landing.html
----------------------------------------------------------------------
diff --git a/latest/landing.html b/latest/landing.html
index ccc7ec2..a0ad2e9 100644
--- a/latest/landing.html
+++ b/latest/landing.html
@@ -108,13 +108,16 @@
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF52832/"> nRF52 DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
-                  <li>
-                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                   <li>
+                      <a href="https://www.nordicsemi.com/eng/Products/nRF52840-Preview-DK"> nRF52840 Preview DK </a> from Nordic Semiconductor (Cortex-M4)
                   </li>
                   <li>
                       <a href="https://www.nordicsemi.com/eng/Products/Bluetooth-Smart-Bluetooth-low-energy/nRF51822"> nRF51 DK </a> from Nordic Semiconductor (Cortex-M0)
                   </li>
                   <li>
+                      <a href="http://ruuvitag.com"> RuuviTag </a> Sensor beacon platform (Nordic nRF52832 based)
+                  </li>
+                  <li>
                       <a href="http://redbearlab.com/blenano/"> BLE Nano </a> from RedBear (Nordic nRF51822 SoC based)
                   </li>
                   <li>
@@ -124,9 +127,6 @@
                       <a href="https://www.rigado.com/products/bmd-300-eval-kit/"> BMD-300-EVAL-ES </a> from Rigado (Cortex-M4)
                   </li>
                   <li>
-                      <a href="http://www.st.com/en/evaluation-tools/stm32f3discovery.html"> STM32F3DISCOVERY </a> from ST Micro (Cortex-M4)
-                  </li>
-                  <li>
                       <a href="http://www.st.com/en/evaluation-tools/stm32f4discovery.html"> STM32F4DISCOVERY </a> from ST Micro (Cortex-M4)
                   </li>
                   <li>
@@ -150,8 +150,13 @@
                   <li>
                       <a href="https://creatordev.io/ci40-iot-dev-kit.html"> Creator Ci40 IoT Kit </a> from Imagination Technologies (MIPS CPU)
                   </li>
+                  <li>
+                      <a href="http://microbit.org/hardware"> BBB micro:bit </a> with Nordic nRF51822 (Cortex-M0)
+                  </li> 
+                  <li>
+                      <a href="https://www.adafruit.com/feather"> Adafruit Feather </a> with Nordic nRF52 (Cortex-M4) 
+                  </li>
               </ul>
-
             </div>
           </div>
         </div>


[08/11] incubator-mynewt-site git commit: Closes PR 163 and 164. Updates events and BSPs supported.

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/get_started/vocabulary/index.html
----------------------------------------------------------------------
diff --git a/develop/os/get_started/vocabulary/index.html b/develop/os/get_started/vocabulary/index.html
index fd7b1b4..01868d9 100644
--- a/develop/os/get_started/vocabulary/index.html
+++ b/develop/os/get_started/vocabulary/index.html
@@ -344,7 +344,7 @@ project.repositories:
 #
 repository.apache-mynewt-core:
     type: github
-    vers: 0-latest
+    vers: 1-latest
     user: apache
     repo: incubator-mynewt-core
 $ 
@@ -362,9 +362,9 @@ relies upon.</p>
 the <code>apache-mynewt-core</code> repository.</p>
 </li>
 <li>
-<p><code>vers=0-latest</code>: Defines the repository version. This string will use the 
+<p><code>vers=1-latest</code>: Defines the repository version. This string will use the 
 latest code in the 'Master' github branch. To use the latest version in the 
-develop branch, just change it to <code>vers=0-dev</code></p>
+develop branch, just change it to <code>vers=1-dev</code></p>
 </li>
 </ul>
 <p>Repositories are versioned collections of packages.  </p>
@@ -440,19 +440,24 @@ of your project.  Most targets consist of: </p>
 <p>In order to create and manipulate targets, the <em>newt</em> tool offers a set of helper commands,
 you can find more information about these by issuing:</p>
 <p>$ newt target</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">Usage:
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">newt target
+Usage:
   newt target [flags]
   newt target [command]
 
 Available Commands:
-  config      View target system configuration
+  config      View or populate a target&#39;s system configuration
   copy        Copy target
   create      Create a target
   delete      Delete target
+  dep         View target&#39;s dependency graph
+  revdep      View target&#39;s reverse-dependency graph
   set         Set target configuration variable
   show        View target configuration variables
 
 Global Flags:
+  -h, --help              Help for newt commands
+  -j, --jobs int          Number of concurrent build jobs (default 8)
   -l, --loglevel string   Log level (default &quot;WARN&quot;)
   -o, --outfile string    Filename to tee output to
   -q, --quiet             Be quiet; only display error output
@@ -460,6 +465,7 @@ Global Flags:
   -v, --verbose           Enable verbose output when executing commands
 
 Use &quot;newt target [command] --help&quot; for more information about a command.
+
 $ 
 </pre></div>
 
@@ -470,7 +476,7 @@ a file called <code>syscfg.yml</code> and you will find these configuration file
 files directly to change some default settings, it is best to override the default settings in a <code>syscfg.yml</code> file in your project
 directory rather than editing the package configurations directly.</p>
 <p>To see all <strong>all</strong> the system configuration settings, simply type</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target config &lt;target-name&gt;
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt target config show &lt;target-name&gt;
 ...
 * PACKAGE: sys/stats
   * Setting: STATS_CLI

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/baselibc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/baselibc/index.html b/develop/os/modules/baselibc/index.html
index 87874fb..5e6d8f2 100644
--- a/develop/os/modules/baselibc/index.html
+++ b/develop/os/modules/baselibc/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../json/json/">JSON</a>
   
   
@@ -587,8 +576,8 @@ pages at <a href="#https://www.freebsd.org/cgi/man.cgi">https://www.freebsd.org/
     </li>
     <li class="pull-right">
     
-    <a href=../elua/elua/>
-        Next: Embedded Lua
+    <a href=../json/json/>
+        Next: JSON
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_build_status/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_build_status/index.html b/develop/os/modules/bootloader/boot_build_status/index.html
index 574852b..02cbf8c 100644
--- a/develop/os/modules/bootloader/boot_build_status/index.html
+++ b/develop/os/modules/bootloader/boot_build_status/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_build_status_one/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_build_status_one/index.html b/develop/os/modules/bootloader/boot_build_status_one/index.html
index 64c9508..18f1097 100644
--- a/develop/os/modules/bootloader/boot_build_status_one/index.html
+++ b/develop/os/modules/bootloader/boot_build_status_one/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_clear_status/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_clear_status/index.html b/develop/os/modules/bootloader/boot_clear_status/index.html
index b935e2f..ab685af 100644
--- a/develop/os/modules/bootloader/boot_clear_status/index.html
+++ b/develop/os/modules/bootloader/boot_clear_status/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_copy_area/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_copy_area/index.html b/develop/os/modules/bootloader/boot_copy_area/index.html
index d737d5f..24e4fee 100644
--- a/develop/os/modules/bootloader/boot_copy_area/index.html
+++ b/develop/os/modules/bootloader/boot_copy_area/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_copy_image/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_copy_image/index.html b/develop/os/modules/bootloader/boot_copy_image/index.html
index 67c6443..fc527e7 100644
--- a/develop/os/modules/bootloader/boot_copy_image/index.html
+++ b/develop/os/modules/bootloader/boot_copy_image/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_erase_area/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_erase_area/index.html b/develop/os/modules/bootloader/boot_erase_area/index.html
index 9a5e2e5..43781e3 100644
--- a/develop/os/modules/bootloader/boot_erase_area/index.html
+++ b/develop/os/modules/bootloader/boot_erase_area/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_fill_slot/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_fill_slot/index.html b/develop/os/modules/bootloader/boot_fill_slot/index.html
index 0d56580..7e332e9 100644
--- a/develop/os/modules/bootloader/boot_fill_slot/index.html
+++ b/develop/os/modules/bootloader/boot_fill_slot/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_find_image_area_idx/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_find_image_area_idx/index.html b/develop/os/modules/bootloader/boot_find_image_area_idx/index.html
index e9b0f4f..687a9c8 100644
--- a/develop/os/modules/bootloader/boot_find_image_area_idx/index.html
+++ b/develop/os/modules/bootloader/boot_find_image_area_idx/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_find_image_part/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_find_image_part/index.html b/develop/os/modules/bootloader/boot_find_image_part/index.html
index e91f5b9..9b41e57 100644
--- a/develop/os/modules/bootloader/boot_find_image_part/index.html
+++ b/develop/os/modules/bootloader/boot_find_image_part/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_find_image_slot/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_find_image_slot/index.html b/develop/os/modules/bootloader/boot_find_image_slot/index.html
index 512be38..8e126e0 100644
--- a/develop/os/modules/bootloader/boot_find_image_slot/index.html
+++ b/develop/os/modules/bootloader/boot_find_image_slot/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_go/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_go/index.html b/develop/os/modules/bootloader/boot_go/index.html
index 28d9850..c82eed4 100644
--- a/develop/os/modules/bootloader/boot_go/index.html
+++ b/develop/os/modules/bootloader/boot_go/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_init_flash/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_init_flash/index.html b/develop/os/modules/bootloader/boot_init_flash/index.html
index 130d58c..9de3ddf 100644
--- a/develop/os/modules/bootloader/boot_init_flash/index.html
+++ b/develop/os/modules/bootloader/boot_init_flash/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_move_area/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_move_area/index.html b/develop/os/modules/bootloader/boot_move_area/index.html
index b9d950e..353cdfe 100644
--- a/develop/os/modules/bootloader/boot_move_area/index.html
+++ b/develop/os/modules/bootloader/boot_move_area/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_read_image_header/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_read_image_header/index.html b/develop/os/modules/bootloader/boot_read_image_header/index.html
index cb1850b..c673f11 100644
--- a/develop/os/modules/bootloader/boot_read_image_header/index.html
+++ b/develop/os/modules/bootloader/boot_read_image_header/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_read_image_headers/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_read_image_headers/index.html b/develop/os/modules/bootloader/boot_read_image_headers/index.html
index 64f4f46..e778b45 100644
--- a/develop/os/modules/bootloader/boot_read_image_headers/index.html
+++ b/develop/os/modules/bootloader/boot_read_image_headers/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_read_status/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_read_status/index.html b/develop/os/modules/bootloader/boot_read_status/index.html
index da9fd1d..74e1600 100644
--- a/develop/os/modules/bootloader/boot_read_status/index.html
+++ b/develop/os/modules/bootloader/boot_read_status/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_select_image_slot/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_select_image_slot/index.html b/develop/os/modules/bootloader/boot_select_image_slot/index.html
index 7d977b1..90a83af 100644
--- a/develop/os/modules/bootloader/boot_select_image_slot/index.html
+++ b/develop/os/modules/bootloader/boot_select_image_slot/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_slot_addr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_slot_addr/index.html b/develop/os/modules/bootloader/boot_slot_addr/index.html
index 66f4ad1..30878b6 100644
--- a/develop/os/modules/bootloader/boot_slot_addr/index.html
+++ b/develop/os/modules/bootloader/boot_slot_addr/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html b/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html
index 8fbdd70..cec496d 100644
--- a/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html
+++ b/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_swap_areas/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_swap_areas/index.html b/develop/os/modules/bootloader/boot_swap_areas/index.html
index 3ab0d20..b7f6c4d 100644
--- a/develop/os/modules/bootloader/boot_swap_areas/index.html
+++ b/develop/os/modules/bootloader/boot_swap_areas/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_vect_delete_main/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_delete_main/index.html b/develop/os/modules/bootloader/boot_vect_delete_main/index.html
index 00baf7a..4a22b5e 100644
--- a/develop/os/modules/bootloader/boot_vect_delete_main/index.html
+++ b/develop/os/modules/bootloader/boot_vect_delete_main/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_vect_delete_test/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_delete_test/index.html b/develop/os/modules/bootloader/boot_vect_delete_test/index.html
index 2031915..a0c95e9 100644
--- a/develop/os/modules/bootloader/boot_vect_delete_test/index.html
+++ b/develop/os/modules/bootloader/boot_vect_delete_test/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_vect_read_main/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_read_main/index.html b/develop/os/modules/bootloader/boot_vect_read_main/index.html
index 38dbf03..5de3afd 100644
--- a/develop/os/modules/bootloader/boot_vect_read_main/index.html
+++ b/develop/os/modules/bootloader/boot_vect_read_main/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_vect_read_one/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_read_one/index.html b/develop/os/modules/bootloader/boot_vect_read_one/index.html
index 650fd2d..d1bb90e 100644
--- a/develop/os/modules/bootloader/boot_vect_read_one/index.html
+++ b/develop/os/modules/bootloader/boot_vect_read_one/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_vect_read_test/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_read_test/index.html b/develop/os/modules/bootloader/boot_vect_read_test/index.html
index 839f1d6..39f4f57 100644
--- a/develop/os/modules/bootloader/boot_vect_read_test/index.html
+++ b/develop/os/modules/bootloader/boot_vect_read_test/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/boot_write_status/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_write_status/index.html b/develop/os/modules/bootloader/boot_write_status/index.html
index 44c92f1..6d3dee5 100644
--- a/develop/os/modules/bootloader/boot_write_status/index.html
+++ b/develop/os/modules/bootloader/boot_write_status/index.html
@@ -619,17 +619,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/bootloader/bootloader/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/bootloader/index.html b/develop/os/modules/bootloader/bootloader/index.html
index 93be514..5ffd528 100644
--- a/develop/os/modules/bootloader/bootloader/index.html
+++ b/develop/os/modules/bootloader/bootloader/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/console/console/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console/index.html b/develop/os/modules/console/console/index.html
index cbcc729..19669a7 100644
--- a/develop/os/modules/console/console/index.html
+++ b/develop/os/modules/console/console/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/console/console_blocking_mode/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_blocking_mode/index.html b/develop/os/modules/console/console_blocking_mode/index.html
index ca53665..c2a4ff7 100644
--- a/develop/os/modules/console/console_blocking_mode/index.html
+++ b/develop/os/modules/console/console_blocking_mode/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/console/console_echo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_echo/index.html b/develop/os/modules/console/console_echo/index.html
index b216d39..5ee8803 100644
--- a/develop/os/modules/console/console_echo/index.html
+++ b/develop/os/modules/console/console_echo/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/console/console_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_init/index.html b/develop/os/modules/console/console_init/index.html
index 4c063fe..9901387 100644
--- a/develop/os/modules/console/console_init/index.html
+++ b/develop/os/modules/console/console_init/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/console/console_is_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_is_init/index.html b/develop/os/modules/console/console_is_init/index.html
index c69483e..b96e32e 100644
--- a/develop/os/modules/console/console_is_init/index.html
+++ b/develop/os/modules/console/console_is_init/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/console/console_printf/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_printf/index.html b/develop/os/modules/console/console_printf/index.html
index 05c28ab..a894e64 100644
--- a/develop/os/modules/console/console_printf/index.html
+++ b/develop/os/modules/console/console_printf/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/console/console_read/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_read/index.html b/develop/os/modules/console/console_read/index.html
index d744659..8a0f57f 100644
--- a/develop/os/modules/console/console_read/index.html
+++ b/develop/os/modules/console/console_read/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/console/console_write/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_write/index.html b/develop/os/modules/console/console_write/index.html
index 76455de..6982884 100644
--- a/develop/os/modules/console/console_write/index.html
+++ b/develop/os/modules/console/console_write/index.html
@@ -467,17 +467,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/devmgmt/customize_newtmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/devmgmt/customize_newtmgr/index.html b/develop/os/modules/devmgmt/customize_newtmgr/index.html
index 9028f73..ca2857d 100644
--- a/develop/os/modules/devmgmt/customize_newtmgr/index.html
+++ b/develop/os/modules/devmgmt/customize_newtmgr/index.html
@@ -410,17 +410,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/devmgmt/newtmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/devmgmt/newtmgr/index.html b/develop/os/modules/devmgmt/newtmgr/index.html
index a91ec08..a2b5483 100644
--- a/develop/os/modules/devmgmt/newtmgr/index.html
+++ b/develop/os/modules/devmgmt/newtmgr/index.html
@@ -410,17 +410,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/devmgmt/oicmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/devmgmt/oicmgr/index.html b/develop/os/modules/devmgmt/oicmgr/index.html
index 5dd8903..f9a8a92 100644
--- a/develop/os/modules/devmgmt/oicmgr/index.html
+++ b/develop/os/modules/devmgmt/oicmgr/index.html
@@ -410,17 +410,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/drivers/driver/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/drivers/driver/index.html b/develop/os/modules/drivers/driver/index.html
index 54102dc..3a80829 100644
--- a/develop/os/modules/drivers/driver/index.html
+++ b/develop/os/modules/drivers/driver/index.html
@@ -407,17 +407,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/drivers/flash/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/drivers/flash/index.html b/develop/os/modules/drivers/flash/index.html
index 4f26e57..e68ef89 100644
--- a/develop/os/modules/drivers/flash/index.html
+++ b/develop/os/modules/drivers/flash/index.html
@@ -435,17 +435,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/drivers/mmc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/drivers/mmc/index.html b/develop/os/modules/drivers/mmc/index.html
index 155171e..62d03e6 100644
--- a/develop/os/modules/drivers/mmc/index.html
+++ b/develop/os/modules/drivers/mmc/index.html
@@ -435,17 +435,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/elua/elua/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/elua/elua/index.html b/develop/os/modules/elua/elua/index.html
deleted file mode 100644
index b40bfa7..0000000
--- a/develop/os/modules/elua/elua/index.html
+++ /dev/null
@@ -1,638 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-    <head>
-        <meta charset="utf-8">
-        <meta http-equiv="X-UA-Compatible" content="IE=edge">
-        <meta name="viewport" content="width=device-width, initial-scale=1.0">
-        
-        
-        <!-- This is broken by doc revisioning.
-        <link rel="canonical" href="http://mynewt.apache.org/os/modules/elua/elua/"> -->
-        <link rel="shortcut icon" href="../../../../img/favicon.ico">
-
-	    <title>toc - Apache Mynewt</title>
-
-        <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link rel="stylesheet" href="../../../../css/highlight.css">
-        <link href="../../../../css/base.css" rel="stylesheet">
-        <link href="../../../../css/custom.css" rel="stylesheet">
-        <link href="../../../../css/v2.css" rel="stylesheet">
-        <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
-        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
-        <link href="../../../../extra.css" rel="stylesheet">
-
-        <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
-        <!--[if lt IE 9]>
-            <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
-            <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
-        <![endif]-->
-
-        
-            <script>
-                (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-                (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-                m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-                })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
-                ga('create', 'UA-72162311-1', 'auto');
-                ga('send', 'pageview');
-            </script>
-        
-    </head>
-
-
-    <body class="toc">
-
-
-        <div class="container">
-    <div class="row v2-main-banner">
-        <a class="logo-cell" href="/">
-            <img class="logo" src="/img/logo.png">
-        </a>
-        <div class="tagline-cell">
-            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
-        </div>
-        <div class="news-cell">
-            <div class="well">
-                <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017)
-            </div>
-        </div>
-    </div>
-</div>
-
-        
-
-
-
-
-
-
-<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation">
-    <div class="container">
-        <!-- Collapsed navigation -->
-        <div class="navbar-header">
-            <!-- Expander button -->
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-            </button>
-
-        </div>
-
-        <!-- Expanded navigation -->
-        <div class="navbar-collapse collapse">
-            <!-- Main navigation -->
-            <ul class="nav navbar-nav navbar-right">
-                <li 
-  class=""
->
-                    <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
-                </li>
-                <li 
-  class="important"
->
-                    <a href="/quick-start/">Quick Start</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/about/">About</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/talks/">Talks</a>
-                </li>
-                <li 
-  class="active"
->
-                    <a href="/latest/os/introduction">Documentation</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/download/">Download</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/community/">Community</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/events/">Events</a>
-                </li>
-            </ul>
-
-            <!-- Search, Navigation and Repo links -->
-            <ul class="nav navbar-nav navbar-right">
-                
-            </ul>
-        </div>
-    </div>
-</nav>
-
-        
-
-        <div class="container">
-            
-                <div class="row">
-                    <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary">
-    <div class="top">
-        <div role="search">
-            <form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
-                <div class="form-group">
-                    <input type="text" name="q" class="form-control" placeholder="Search documentation" />
-                </div>
-            </form>
-        </div>
-    </div>
-    <ul class="toc-nav">
-      <li class="doc-version">
-<select class="form-control" onchange="if (this.value) window.location.href=this.value">
-    
-    <option
-      value="/develop/os/introduction"
-      selected="selected"
-    >
-      Version: develop (latest)
-    </option>
-    
-    <option
-      value="/v0_9_0/os/introduction"
-      
-    >
-      Version: 0.9.0
-    </option>
-    
-</select>
-</li>
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-          
-  
-  
-    <li ><a href="../../../introduction/">Mynewt Documentation</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../get_started/get_started/">Basic Setup</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../../get_started/vocabulary/">Concepts</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../tutorials/tutorials/">Tutorials</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../os_user_guide/">OS User Guide</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/mynewt_os/">OS Core</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/porting/port_os/">Porting to your Platform</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../console/console/">Console</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../shell/shell/">Shell</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../split/split/">Split Images</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../bootloader/bootloader/">Bootloader</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  
-  
-  ../../fs/fs/fs/
-
-">File System</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../hal/hal/">Hardware Abstraction Layer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../drivers/driver/">Drivers</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../testutil/testutil/">Test Utilities</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../devmgmt/newtmgr/">Device Management with Newt Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../imgmgr/imgmgr/">Image Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../baselibc/">Baselibc library</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li class="active"><a href="./">Embedded Lua</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../lua_init/
-">Functions</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../json/json/">JSON</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../fcb/fcb/">Flash Circular Buffer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../stats/stats/">Stats</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../logs/logs/">Logs</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../sysinitconfig/sysinitconfig/">System Configuration And Initialization</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../../../../network/ble/ble_intro/
-">BLE User Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newt/newt_intro/">Newt Tool Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newtmgr/overview/">Newt Manager Guide</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-        
-      
-        
-          
-  
-  
-    <li><a href="
-  ../../../../faq/how_to_edit_docs/
-">Appendix</a>
-  
-  
-    </li>
-
-        
-      
-    </ul>
-</div></div>
-
-                    <div class="col-md-9" role="main">
-                        <div class="doc-header">
-                            <div role="navigation" aria-label="breadcrumbs navigation">
-  <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/develop/os/introduction">Docs</a></li>
-    
-    
-        
-          <li>&raquo; <a href="../../../os_user_guide/">OS User Guide</a></li>
-        
-      
-        
-          <li>&raquo; Embedded Lua</li>
-        
-      
-      
-    
-    
-  </ul>
-</div>
-                        </div>
-                        
-                            <h1 id="elua">elua</h1>
-<h3 id="description">Description</h3>
-<p>This package contains a Lua interpreter. See http://lua.org for documentation of the language.</p>
-<p>You can execute lua scripts either from console with shell or start the execution programmatically.</p>
-<h3 id="data-structures">Data structures</h3>
-<h3 id="notes">Notes</h3>
-<p>Currently we don't have language extension modules which would go together with this one, but those should be added.</p>
-<h3 id="list-of-functions">List of Functions</h3>
-<table>
-<thead>
-<tr>
-<th>Function</th>
-<th>Description</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td><a href="../lua_init/">lua_init</a></td>
-<td>Registers 'lua' command with shell.</td>
-</tr>
-<tr>
-<td><a href="../lua_main/">lua_main</a></td>
-<td>Executes lua script in current task's context. Arguments given are passed to lua interpreter.</td>
-</tr>
-</tbody>
-</table>
-<p><Comments such as these instructions are placed within angle brackets. List all the functions here. Note how the anchors work. You put the text you want to show up as a link within [] and the relevant #heading within (). Note that the header has to have at least 2 words for the anchor to work - that's how it is. "no-highlight" disables syntax highlighting. You can enable it for a particular language by specifying what the language is instead of "no-highlight". Be warned that this highlighting or no-highlighting specification may not show up nicely on Mou.></p>
-                        
-                        <div class="row">
-                            
-
-
-
-<ul class="nav nav-pills" style="margin-bottom: 10px">
-    <li>
-    
-    <a href=../../baselibc/>
-        <span class="fa fa-arrow-left"></span>
-        Previous: Baselibc library
-    </a>
-    
-    </li>
-    <li class="pull-right">
-    
-    <a href=../lua_init/>
-        Next: lua_init
-        <span class="fa fa-arrow-right"></span>
-    </a>
-    
-    </li>
-</ul>
-                        </div>
-                        <footer class="row">
-    <div class="col-xs-12">
-        
-            <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p>
-        
-    </div>
-    <div class="col-xs-12">
-        <div class="logos">
-            <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
-            <small class="footnote">
-                MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
-            </small>
-            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator">
-        </div>
-    </div>
-</footer>
-                    </div>
-                </div>
-            
-            
-        </div>
-
-        <script src="../../../../js/jquery-1.10.2.min.js"></script>
-        <script src="../../../../js/bootstrap-3.0.3.min.js"></script>
-        <script src="../../../../js/highlight.pack.js"></script>
-        <script src="../../../../js/base.js"></script>
-        <script src="../../../../js/custom.js"></script>
-
-    </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/elua/lua_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/elua/lua_init/index.html b/develop/os/modules/elua/lua_init/index.html
deleted file mode 100644
index 2da2e44..0000000
--- a/develop/os/modules/elua/lua_init/index.html
+++ /dev/null
@@ -1,657 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-    <head>
-        <meta charset="utf-8">
-        <meta http-equiv="X-UA-Compatible" content="IE=edge">
-        <meta name="viewport" content="width=device-width, initial-scale=1.0">
-        
-        
-        <!-- This is broken by doc revisioning.
-        <link rel="canonical" href="http://mynewt.apache.org/os/modules/elua/lua_init/"> -->
-        <link rel="shortcut icon" href="../../../../img/favicon.ico">
-
-	    <title>lua_init - Apache Mynewt</title>
-
-        <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link rel="stylesheet" href="../../../../css/highlight.css">
-        <link href="../../../../css/base.css" rel="stylesheet">
-        <link href="../../../../css/custom.css" rel="stylesheet">
-        <link href="../../../../css/v2.css" rel="stylesheet">
-        <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
-        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
-        <link href="../../../../extra.css" rel="stylesheet">
-
-        <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
-        <!--[if lt IE 9]>
-            <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
-            <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
-        <![endif]-->
-
-        
-            <script>
-                (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-                (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-                m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-                })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
-                ga('create', 'UA-72162311-1', 'auto');
-                ga('send', 'pageview');
-            </script>
-        
-    </head>
-
-
-    <body class="lua_init">
-
-
-        <div class="container">
-    <div class="row v2-main-banner">
-        <a class="logo-cell" href="/">
-            <img class="logo" src="/img/logo.png">
-        </a>
-        <div class="tagline-cell">
-            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
-        </div>
-        <div class="news-cell">
-            <div class="well">
-                <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017)
-            </div>
-        </div>
-    </div>
-</div>
-
-        
-
-
-
-
-
-
-<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation">
-    <div class="container">
-        <!-- Collapsed navigation -->
-        <div class="navbar-header">
-            <!-- Expander button -->
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-            </button>
-
-        </div>
-
-        <!-- Expanded navigation -->
-        <div class="navbar-collapse collapse">
-            <!-- Main navigation -->
-            <ul class="nav navbar-nav navbar-right">
-                <li 
-  class=""
->
-                    <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
-                </li>
-                <li 
-  class="important"
->
-                    <a href="/quick-start/">Quick Start</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/about/">About</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/talks/">Talks</a>
-                </li>
-                <li 
-  class="active"
->
-                    <a href="/latest/os/introduction">Documentation</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/download/">Download</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/community/">Community</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/events/">Events</a>
-                </li>
-            </ul>
-
-            <!-- Search, Navigation and Repo links -->
-            <ul class="nav navbar-nav navbar-right">
-                
-            </ul>
-        </div>
-    </div>
-</nav>
-
-        
-
-        <div class="container">
-            
-                <div class="row">
-                    <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary">
-    <div class="top">
-        <div role="search">
-            <form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
-                <div class="form-group">
-                    <input type="text" name="q" class="form-control" placeholder="Search documentation" />
-                </div>
-            </form>
-        </div>
-    </div>
-    <ul class="toc-nav">
-      <li class="doc-version">
-<select class="form-control" onchange="if (this.value) window.location.href=this.value">
-    
-    <option
-      value="/develop/os/introduction"
-      selected="selected"
-    >
-      Version: develop (latest)
-    </option>
-    
-    <option
-      value="/v0_9_0/os/introduction"
-      
-    >
-      Version: 0.9.0
-    </option>
-    
-</select>
-</li>
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-          
-  
-  
-    <li ><a href="../../../introduction/">Mynewt Documentation</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../get_started/get_started/">Basic Setup</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../../get_started/vocabulary/">Concepts</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../tutorials/tutorials/">Tutorials</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../os_user_guide/">OS User Guide</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/mynewt_os/">OS Core</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/porting/port_os/">Porting to your Platform</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../console/console/">Console</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../shell/shell/">Shell</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../split/split/">Split Images</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../bootloader/bootloader/">Bootloader</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  
-  
-  ../../fs/fs/fs/
-
-">File System</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../hal/hal/">Hardware Abstraction Layer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../drivers/driver/">Drivers</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../testutil/testutil/">Test Utilities</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../devmgmt/newtmgr/">Device Management with Newt Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../imgmgr/imgmgr/">Image Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../baselibc/">Baselibc library</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../elua/">Embedded Lua</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ./
-">Functions</a>
-  
-  
-    <ul>
-          
-              
-                
-    <li class="active">
-      <a href="./">lua_init</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../lua_main/">lua_main</a>
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../json/json/">JSON</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../fcb/fcb/">Flash Circular Buffer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../stats/stats/">Stats</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../logs/logs/">Logs</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../sysinitconfig/sysinitconfig/">System Configuration And Initialization</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../../../../network/ble/ble_intro/
-">BLE User Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newt/newt_intro/">Newt Tool Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newtmgr/overview/">Newt Manager Guide</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-        
-      
-        
-          
-  
-  
-    <li><a href="
-  ../../../../faq/how_to_edit_docs/
-">Appendix</a>
-  
-  
-    </li>
-
-        
-      
-    </ul>
-</div></div>
-
-                    <div class="col-md-9" role="main">
-                        <div class="doc-header">
-                            <div role="navigation" aria-label="breadcrumbs navigation">
-  <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/develop/os/introduction">Docs</a></li>
-    
-    
-        
-          <li>&raquo; <a href="../elua/">Embedded Lua</a></li>
-        
-      
-        
-          <li>&raquo; Functions</li>
-        
-      
-      
-        <li>&raquo; lua_init</li>
-      
-    
-    
-  </ul>
-</div>
-                        </div>
-                        
-                            <h2 id="lua_init"><font color="#F2853F" style="font-size:24pt"> lua_init </font></h2>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">   int
-   lua_init(void)
-</pre></div>
-
-
-<p>Registers 'lua' command with shell. This function should be called while initializing the project, preferably after shell itself has been initialized.</p>
-<h4 id="arguments">Arguments</h4>
-<p>N/A</p>
-<h4 id="returned-values">Returned values</h4>
-<p>Returns </p>
-<h4 id="notes">Notes</h4>
-<p>Calling this is meaningful only if you include the shell package in your project.</p>
-<h4 id="example">Example</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">int main(int argc, char **argv)
-{
-    ...
-    shell_task_init(SHELL_TASK_PRIO, shell_stack, SHELL_TASK_STACK_SIZE,
-                         SHELL_MAX_INPUT_LEN);
-    ...
-    lua_init();
-    ...
-}
-</pre></div>
-                        
-                        <div class="row">
-                            
-
-
-
-<ul class="nav nav-pills" style="margin-bottom: 10px">
-    <li>
-    
-    <a href=../elua/>
-        <span class="fa fa-arrow-left"></span>
-        Previous: Embedded Lua
-    </a>
-    
-    </li>
-    <li class="pull-right">
-    
-    <a href=../lua_main/>
-        Next: lua_main
-        <span class="fa fa-arrow-right"></span>
-    </a>
-    
-    </li>
-</ul>
-                        </div>
-                        <footer class="row">
-    <div class="col-xs-12">
-        
-            <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p>
-        
-    </div>
-    <div class="col-xs-12">
-        <div class="logos">
-            <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
-            <small class="footnote">
-                MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
-            </small>
-            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator">
-        </div>
-    </div>
-</footer>
-                    </div>
-                </div>
-            
-            
-        </div>
-
-        <script src="../../../../js/jquery-1.10.2.min.js"></script>
-        <script src="../../../../js/bootstrap-3.0.3.min.js"></script>
-        <script src="../../../../js/highlight.pack.js"></script>
-        <script src="../../../../js/base.js"></script>
-        <script src="../../../../js/custom.js"></script>
-
-    </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/elua/lua_main/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/elua/lua_main/index.html b/develop/os/modules/elua/lua_main/index.html
deleted file mode 100644
index 2cb38a8..0000000
--- a/develop/os/modules/elua/lua_main/index.html
+++ /dev/null
@@ -1,670 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-    <head>
-        <meta charset="utf-8">
-        <meta http-equiv="X-UA-Compatible" content="IE=edge">
-        <meta name="viewport" content="width=device-width, initial-scale=1.0">
-        
-        
-        <!-- This is broken by doc revisioning.
-        <link rel="canonical" href="http://mynewt.apache.org/os/modules/elua/lua_main/"> -->
-        <link rel="shortcut icon" href="../../../../img/favicon.ico">
-
-	    <title>lua_main - Apache Mynewt</title>
-
-        <link href="../../../../css/bootstrap-3.0.3.min.css" rel="stylesheet">
-        <link rel="stylesheet" href="../../../../css/highlight.css">
-        <link href="../../../../css/base.css" rel="stylesheet">
-        <link href="../../../../css/custom.css" rel="stylesheet">
-        <link href="../../../../css/v2.css" rel="stylesheet">
-        <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
-        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
-        <link href="../../../../extra.css" rel="stylesheet">
-
-        <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
-        <!--[if lt IE 9]>
-            <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
-            <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
-        <![endif]-->
-
-        
-            <script>
-                (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-                (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-                m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-                })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
-                ga('create', 'UA-72162311-1', 'auto');
-                ga('send', 'pageview');
-            </script>
-        
-    </head>
-
-
-    <body class="lua_main">
-
-
-        <div class="container">
-    <div class="row v2-main-banner">
-        <a class="logo-cell" href="/">
-            <img class="logo" src="/img/logo.png">
-        </a>
-        <div class="tagline-cell">
-            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
-        </div>
-        <div class="news-cell">
-            <div class="well">
-                <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017)
-            </div>
-        </div>
-    </div>
-</div>
-
-        
-
-
-
-
-
-
-<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation">
-    <div class="container">
-        <!-- Collapsed navigation -->
-        <div class="navbar-header">
-            <!-- Expander button -->
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-            </button>
-
-        </div>
-
-        <!-- Expanded navigation -->
-        <div class="navbar-collapse collapse">
-            <!-- Main navigation -->
-            <ul class="nav navbar-nav navbar-right">
-                <li 
-  class=""
->
-                    <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
-                </li>
-                <li 
-  class="important"
->
-                    <a href="/quick-start/">Quick Start</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/about/">About</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/talks/">Talks</a>
-                </li>
-                <li 
-  class="active"
->
-                    <a href="/latest/os/introduction">Documentation</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/download/">Download</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/community/">Community</a>
-                </li>
-                <li 
-  class=""
->
-                    <a href="/events/">Events</a>
-                </li>
-            </ul>
-
-            <!-- Search, Navigation and Repo links -->
-            <ul class="nav navbar-nav navbar-right">
-                
-            </ul>
-        </div>
-    </div>
-</nav>
-
-        
-
-        <div class="container">
-            
-                <div class="row">
-                    <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary">
-    <div class="top">
-        <div role="search">
-            <form id="rtd-search-form" class="wy-form" action="../../../../search.html" method="get">
-                <div class="form-group">
-                    <input type="text" name="q" class="form-control" placeholder="Search documentation" />
-                </div>
-            </form>
-        </div>
-    </div>
-    <ul class="toc-nav">
-      <li class="doc-version">
-<select class="form-control" onchange="if (this.value) window.location.href=this.value">
-    
-    <option
-      value="/develop/os/introduction"
-      selected="selected"
-    >
-      Version: develop (latest)
-    </option>
-    
-    <option
-      value="/v0_9_0/os/introduction"
-      
-    >
-      Version: 0.9.0
-    </option>
-    
-</select>
-</li>
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-      
-        
-          
-  
-  
-    <li ><a href="../../../introduction/">Mynewt Documentation</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../get_started/get_started/">Basic Setup</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../../get_started/vocabulary/">Concepts</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../tutorials/tutorials/">Tutorials</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../os_user_guide/">OS User Guide</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/mynewt_os/">OS Core</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../core_os/porting/port_os/">Porting to your Platform</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../console/console/">Console</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../shell/shell/">Shell</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../split/split/">Split Images</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../bootloader/bootloader/">Bootloader</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  
-  
-  ../../fs/fs/fs/
-
-">File System</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../hal/hal/">Hardware Abstraction Layer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../drivers/driver/">Drivers</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../testutil/testutil/">Test Utilities</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../devmgmt/newtmgr/">Device Management with Newt Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../imgmgr/imgmgr/">Image Manager</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../../baselibc/">Baselibc library</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../elua/">Embedded Lua</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../lua_init/
-">Functions</a>
-  
-  
-    <ul>
-          
-              
-                
-    <li >
-      <a href="../lua_init/">lua_init</a>
-    </li>
-
-              
-          
-              
-                
-    <li class="active">
-      <a href="./">lua_main</a>
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../json/json/">JSON</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../fcb/fcb/">Flash Circular Buffer</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../stats/stats/">Stats</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../logs/logs/">Logs</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../sysinitconfig/sysinitconfig/">System Configuration And Initialization</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li><a href="
-  ../../../../network/ble/ble_intro/
-">BLE User Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newt/newt_intro/">Newt Tool Guide</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../../newtmgr/overview/">Newt Manager Guide</a>
-  
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-        
-      
-        
-          
-  
-  
-    <li><a href="
-  ../../../../faq/how_to_edit_docs/
-">Appendix</a>
-  
-  
-    </li>
-
-        
-      
-    </ul>
-</div></div>
-
-                    <div class="col-md-9" role="main">
-                        <div class="doc-header">
-                            <div role="navigation" aria-label="breadcrumbs navigation">
-  <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/develop/os/introduction">Docs</a></li>
-    
-    
-        
-          <li>&raquo; <a href="../elua/">Embedded Lua</a></li>
-        
-      
-        
-          <li>&raquo; <a href="../lua_init/">Functions</a></li>
-        
-      
-      
-        <li>&raquo; lua_main</li>
-      
-    
-    
-  </ul>
-</div>
-                        </div>
-                        
-                            <h2 id="lua_main"><font color="#F2853F" style="font-size:24pt"> lua_main </font></h2>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">   int
-   lua_main(int argc, char **argv)
-</pre></div>
-
-
-<p>Executes lua script in current task's context. Arguments given are passed to lua interpreter.</p>
-<h4 id="arguments">Arguments</h4>
-<table>
-<thead>
-<tr>
-<th>Arguments</th>
-<th>Description</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>argc</td>
-<td>Number of elements in argv array</td>
-</tr>
-<tr>
-<td>argv</td>
-<td>Array of character strings</td>
-</tr>
-</tbody>
-</table>
-<h4 id="returned-values">Returned values</h4>
-<p>Returns the return code from the lua interpreter.</p>
-<h4 id="notes">Notes</h4>
-<h4 id="example">Example</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">static int
-lua_cmd(int argc, char **argv)
-{
-    lua_main(argc, argv);
-    return 0;
-}
-</pre></div>
-                        
-                        <div class="row">
-                            
-
-
-
-<ul class="nav nav-pills" style="margin-bottom: 10px">
-    <li>
-    
-    <a href=../lua_init/>
-        <span class="fa fa-arrow-left"></span>
-        Previous: lua_init
-    </a>
-    
-    </li>
-    <li class="pull-right">
-    
-    <a href=../../json/json/>
-        Next: JSON
-        <span class="fa fa-arrow-right"></span>
-    </a>
-    
-    </li>
-</ul>
-                        </div>
-                        <footer class="row">
-    <div class="col-xs-12">
-        
-            <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p>
-        
-    </div>
-    <div class="col-xs-12">
-        <div class="logos">
-            <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
-            <small class="footnote">
-                MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
-            </small>
-            <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator">
-        </div>
-    </div>
-</footer>
-                    </div>
-                </div>
-            
-            
-        </div>
-
-        <script src="../../../../js/jquery-1.10.2.min.js"></script>
-        <script src="../../../../js/bootstrap-3.0.3.min.js"></script>
-        <script src="../../../../js/highlight.pack.js"></script>
-        <script src="../../../../js/base.js"></script>
-        <script src="../../../../js/custom.js"></script>
-
-    </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb/index.html b/develop/os/modules/fcb/fcb/index.html
index 7d076e7..e4ba5de 100644
--- a/develop/os/modules/fcb/fcb/index.html
+++ b/develop/os/modules/fcb/fcb/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_append/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_append/index.html b/develop/os/modules/fcb/fcb_append/index.html
index 83cacad..ff2840f 100644
--- a/develop/os/modules/fcb/fcb_append/index.html
+++ b/develop/os/modules/fcb/fcb_append/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_append_finish/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_append_finish/index.html b/develop/os/modules/fcb/fcb_append_finish/index.html
index 103cb17..db2a28f 100644
--- a/develop/os/modules/fcb/fcb_append_finish/index.html
+++ b/develop/os/modules/fcb/fcb_append_finish/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_append_to_scratch/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_append_to_scratch/index.html b/develop/os/modules/fcb/fcb_append_to_scratch/index.html
index e2076be..74e82c1 100644
--- a/develop/os/modules/fcb/fcb_append_to_scratch/index.html
+++ b/develop/os/modules/fcb/fcb_append_to_scratch/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_clear/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_clear/index.html b/develop/os/modules/fcb/fcb_clear/index.html
index 85ce2fe..db462ac 100644
--- a/develop/os/modules/fcb/fcb_clear/index.html
+++ b/develop/os/modules/fcb/fcb_clear/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_getnext/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_getnext/index.html b/develop/os/modules/fcb/fcb_getnext/index.html
index 17e0d2b..6f0142f 100644
--- a/develop/os/modules/fcb/fcb_getnext/index.html
+++ b/develop/os/modules/fcb/fcb_getnext/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_init/index.html b/develop/os/modules/fcb/fcb_init/index.html
index 1a1edcb..470868a 100644
--- a/develop/os/modules/fcb/fcb_init/index.html
+++ b/develop/os/modules/fcb/fcb_init/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_is_empty/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_is_empty/index.html b/develop/os/modules/fcb/fcb_is_empty/index.html
index e3db5a4..3ecbd2e 100644
--- a/develop/os/modules/fcb/fcb_is_empty/index.html
+++ b/develop/os/modules/fcb/fcb_is_empty/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_offset_last_n/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_offset_last_n/index.html b/develop/os/modules/fcb/fcb_offset_last_n/index.html
index ba17651..8b104f5 100644
--- a/develop/os/modules/fcb/fcb_offset_last_n/index.html
+++ b/develop/os/modules/fcb/fcb_offset_last_n/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_rotate/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_rotate/index.html b/develop/os/modules/fcb/fcb_rotate/index.html
index d0b1b53..47ed626 100644
--- a/develop/os/modules/fcb/fcb_rotate/index.html
+++ b/develop/os/modules/fcb/fcb_rotate/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fcb/fcb_walk/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_walk/index.html b/develop/os/modules/fcb/fcb_walk/index.html
index 90baea7..e0b5ec7 100644
--- a/develop/os/modules/fcb/fcb_walk/index.html
+++ b/develop/os/modules/fcb/fcb_walk/index.html
@@ -388,17 +388,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fatfs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fatfs/index.html b/develop/os/modules/fs/fatfs/index.html
index d59325a..9364798 100644
--- a/develop/os/modules/fs/fatfs/index.html
+++ b/develop/os/modules/fs/fatfs/index.html
@@ -430,17 +430,6 @@
                 
   
   
-    <li ><a href="../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs/index.html b/develop/os/modules/fs/fs/fs/index.html
index 483d521..87a14c8 100644
--- a/develop/os/modules/fs/fs/fs/index.html
+++ b/develop/os/modules/fs/fs/fs/index.html
@@ -470,17 +470,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_close/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_close/index.html b/develop/os/modules/fs/fs/fs_close/index.html
index c6bddfc..9d481fc 100644
--- a/develop/os/modules/fs/fs/fs_close/index.html
+++ b/develop/os/modules/fs/fs/fs_close/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_closedir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_closedir/index.html b/develop/os/modules/fs/fs/fs_closedir/index.html
index 2823e3c..ee46cc3 100644
--- a/develop/os/modules/fs/fs/fs_closedir/index.html
+++ b/develop/os/modules/fs/fs/fs_closedir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/c1a9e073/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html b/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html
index 6d1ce7d..70c2a45 100644
--- a/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html
+++ b/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html
@@ -618,17 +618,6 @@
                 
   
   
-    <li ><a href="../../../elua/elua/">Embedded Lua</a>
-  
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
     <li ><a href="../../../json/json/">JSON</a>