You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2018/10/18 22:11:15 UTC

[GitHub] aditihilbert closed pull request #481: automated asf-site build

aditihilbert closed pull request #481: automated asf-site build
URL: https://github.com/apache/mynewt-site/pull/481
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/master/_sources/misc/go_env.rst.txt b/master/_sources/misc/go_env.rst.txt
index 9fc02cf27..510efcac1 100644
--- a/master/_sources/misc/go_env.rst.txt
+++ b/master/_sources/misc/go_env.rst.txt
@@ -63,11 +63,23 @@ You can also download the Go package directly from
 (https://golang.org/dl/) and install it in /usr/local/bin instead of
 brewing it.
 
-Installing Go on Linux and Windows
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Installing Go and git on Linux
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-You can download Go from
-https://golang.org/dl/.
+.. code-block:: console
+
+    sudo apt-get install golang git
+
+Installing Go on and git Windows
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+In msys2 terminal type
+
+.. code-block:: console
+
+    pacman -S mingw-w64-x64_64-go git
+
+Make sure to restart msys2 terminal after installation.
 
 Step 2: Setting Up Your Go Environment
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/master/_sources/os/core_os/porting/port_bsp.rst.txt b/master/_sources/os/core_os/porting/port_bsp.rst.txt
index 0d6e5b3f2..7593f126a 100644
--- a/master/_sources/os/core_os/porting/port_bsp.rst.txt
+++ b/master/_sources/os/core_os/porting/port_bsp.rst.txt
@@ -272,17 +272,17 @@ BSP scripts are quite simple, and you can likely get away with just copying them
     # This script attaches a gdb session to a Mynewt image running on your BSP.
 
     # If your BSP uses JLink, a good example script to copy is:
-    #     repos/apache-mynewt-core/hw/bsp/nrf52dk/nrf52dk_debug.sh
+    #     repos/apache-mynewt-core/hw/bsp/nordic_pca10040/nordic_pca10040_debug.sh
     #
     # If your BSP uses OpenOCD, a good example script to copy is:
     #     repos/apache-mynewt-core/hw/bsp/rb-nano2/rb-nano2_debug.sh
 
-Our example nRF52 BSP uses JLink, so we will copy the nRF52dk BSP's scripts:
+Our example Nordic nRF52 BSP uses JLink, so we will copy the Nordic PCA10040 (nRF52 DK) BSP's scripts:
 
 ::
 
-    cp repos/apache-mynewt-core/hw/bsp/nrf52dk/nrf52dk_debug.sh hw/bsp/myboard/myboard_debug.sh
-    cp repos/apache-mynewt-core/hw/bsp/nrf52dk/nrf52dk_download.sh hw/bsp/myboard/myboard_download.sh
+    cp repos/apache-mynewt-core/hw/bsp/nordic_pca10040/nordic_pca10040_debug.sh hw/bsp/myboard/myboard_debug.sh
+    cp repos/apache-mynewt-core/hw/bsp/nordic_pca10040/nordic_pca10040_download.sh hw/bsp/myboard/myboard_download.sh
 
 Fill in BSP functions and defines
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -354,12 +354,12 @@ This file is named according to the following pattern: ``hw/bsp/myboard/src/arch
 The best approach for creating this file is to copy from other BSPs. If there is another BSP that uses the same MCU, you
 might be able to use most or all of its startup file.
 
-For our example BSP, we'll just copy the nRF52dk BSP's startup code:
+For our example BSP, we'll just copy the Nordic PCA10040 (nRF52 DK) BSP's startup code:
 
 .. code-block:: console
 
     $ mkdir -p hw/bsp/myboard/src/arch/cortex_m4
-    $ cp repos/apache-mynewt-core/hw/bsp/nrf52dk/src/arch/cortex_m4/gcc_startup_nrf52.s hw/bsp/myboard/src/arch/cortex_m4/
+    $ cp repos/apache-mynewt-core/hw/bsp/nordic_pca10040/src/arch/cortex_m4/gcc_startup_nrf52.s hw/bsp/myboard/src/arch/cortex_m4/
 
 Satisfy MCU requirements
 ~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/master/_sources/os/modules/split/split.rst.txt b/master/_sources/os/modules/split/split.rst.txt
index 0ffd3c9f9..af0bbf2f4 100644
--- a/master/_sources/os/modules/split/split.rst.txt
+++ b/master/_sources/os/modules/split/split.rst.txt
@@ -92,8 +92,8 @@ Tutorial
 Building a Split Image
 ~~~~~~~~~~~~~~~~~~~~~~
 
-We will be referring to the nRF51dk for examples in this document. Let's
-take a look at this board's flash map (defined in
+We will be referring to the Nordic PCA10028 (nRF51 DK) for examples in
+this document. Let's take a look at this board's flash map (defined in
 ``hw/bsp/nrf51dk/bsp.yml``):
 
 +---------------------+--------------+-------------+
@@ -121,7 +121,7 @@ our BSP and application together.
     newt target create bleprph-nrf51dk
     newt target set bleprph-nrf51dk                     \
         app=@apache-mynewt-core/apps/bleprph            \
-        bsp=@apache-mynewt-core/hw/bsp/nrf51dk          \
+        bsp=@apache-mynewt-core/hw/bsp/nordic_pca10028  \
         build_profile=optimized                         \
         syscfg=BLE_LL_CFG_FEAT_LE_ENCRYPTION=0:BLE_SM_LEGACY=0
 
@@ -135,7 +135,7 @@ We can verify the target using the ``target show`` command:
     [~/tmp/myproj2]$ newt target show bleprph-nrf51dk
     targets/bleprph-nrf51dk
         app=@apache-mynewt-core/apps/bleprph
-        bsp=@apache-mynewt-core/hw/bsp/nrf51dk
+        bsp=@apache-mynewt-core/hw/bsp/nordic_pca10028
         build_profile=optimized
         syscfg=BLE_LL_CFG_FEAT_LE_ENCRYPTION=0:BLE_SM_LEGACY=0
 
@@ -206,7 +206,7 @@ upgrade.
     newt target set split-nrf51dk                       \
         loader=@apache-mynewt-core/apps/bleprph         \
         app=@apache-mynewt-core/apps/splitty            \
-        bsp=@apache-mynewt-core/hw/bsp/nrf51dk          \
+        bsp=@apache-mynewt-core/hw/bsp/nordic_pca10028  \
         build_profile=optimized                         \
         syscfg=BLE_LL_CFG_FEAT_LE_ENCRYPTION=0:BLE_SM_LEGACY=0
 
@@ -217,7 +217,7 @@ Verify that the target looks correct:
     [~/tmp/myproj2]$ newt target show split-nrf51dk
     targets/split-nrf51dk
         app=@apache-mynewt-core/apps/splitty
-        bsp=@apache-mynewt-core/hw/bsp/nrf51dk
+        bsp=@apache-mynewt-core/hw/bsp/nordic_pca10028
         build_profile=optimized
         loader=@apache-mynewt-core/apps/bleprph
         syscfg=BLE_LL_CFG_FEAT_LE_ENCRYPTION=0:BLE_SM_LEGACY=0
@@ -280,8 +280,8 @@ application at any time. For example, if your application needs
 bluetooth functionality, it can use the BLE stack present in the loader
 instead of containing its own copy.
 
-Finally, let's deploy the split image to our nRF51dk board. The
-procedure here is the same as if we were using the Unified setup, i.e.,
+Finally, let's deploy the split image to our Nordic PCA10028 (nRF51 DK) board.
+The procedure here is the same as if we were using the Unified setup, i.e.,
 via either the ``newt load`` or ``newt run`` command.
 
 ::
diff --git a/master/_static/common.html b/master/_static/common.html
index d5734e59c..d8ceba96e 100644
--- a/master/_static/common.html
+++ b/master/_static/common.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>&lt;no title&gt; &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>&lt;no title&gt; &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/> 
 
     
     <script src="js/modernizr.min.js"></script>
@@ -276,7 +276,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.4.1, Apache NimBLE 1.0
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/_static/documentation_options.js b/master/_static/documentation_options.js
index 2b8dc45a1..15cbe4de1 100644
--- a/master/_static/documentation_options.js
+++ b/master/_static/documentation_options.js
@@ -1,6 +1,6 @@
 var DOCUMENTATION_OPTIONS = {
     URL_ROOT: '',
-    VERSION: '1.3.0',
+    VERSION: 'latest',
     LANGUAGE: 'None',
     COLLAPSE_INDEX: false,
     FILE_SUFFIX: '.html',
diff --git a/master/concepts.html b/master/concepts.html
index d0a840abd..784899567 100644
--- a/master/concepts.html
+++ b/master/concepts.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Concepts &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Concepts &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="genindex.html"/>
           <link rel="search" title="Search" href="search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="index.html"/>
           <link rel="next" title="Tutorials" href="tutorials/tutorials.html"/>
           <link rel="prev" title="Using the Serial Port with Mynewt OS" href="get_started/serial_access.html"/> 
 
@@ -473,7 +473,7 @@ <h2><a class="toc-backref" href="#id5">Configuration</a><a class="headerlink" hr
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/genindex.html b/master/genindex.html
index cd499345e..286269056 100644
--- a/master/genindex.html
+++ b/master/genindex.html
@@ -11,7 +11,7 @@
     
 
     
-    <title>Index &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Index &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -41,7 +41,7 @@
           <link rel="index" title="Index"
                 href="#"/>
           <link rel="search" title="Search" href="search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="index.html"/> 
 
     
     <script src="_static/js/modernizr.min.js"></script>
@@ -1362,7 +1362,7 @@ <h2 id="T">T</h2>
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/get_started/docker.html b/master/get_started/docker.html
index dee79d2e0..ba755c825 100644
--- a/master/get_started/docker.html
+++ b/master/get_started/docker.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Everything You Need in a Docker Container &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Everything You Need in a Docker Container &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Setup &amp; Get Started" href="index.html"/>
           <link rel="next" title="Creating Your First Mynewt Project" href="project_create.html"/>
           <link rel="prev" title="Installing the Cross Tools for ARM" href="native_install/cross_tools.html"/> 
@@ -430,7 +430,7 @@ <h3><a class="toc-backref" href="#id8">Enable USB2 and select your device</a><a
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/get_started/index.html b/master/get_started/index.html
index 05e14affb..0d8f5e402 100644
--- a/master/get_started/index.html
+++ b/master/get_started/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Setup &amp; Get Started &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Setup &amp; Get Started &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="next" title="Native Installation" href="native_install/index.html"/>
           <link rel="prev" title="Introduction" href="../index.html"/> 
 
@@ -323,7 +323,7 @@ <h1>Setup &amp; Get Started<a class="headerlink" href="#setup-get-started" title
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/get_started/native_install/cross_tools.html b/master/get_started/native_install/cross_tools.html
index d554d29fc..b0de188ca 100644
--- a/master/get_started/native_install/cross_tools.html
+++ b/master/get_started/native_install/cross_tools.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing the Cross Tools for ARM &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing the Cross Tools for ARM &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Native Installation" href="index.html"/>
           <link rel="next" title="Everything You Need in a Docker Container" href="../docker.html"/>
           <link rel="prev" title="Installing Native Toolchain" href="native_tools.html"/> 
@@ -543,7 +543,7 @@ <h3><a class="toc-backref" href="#id10">Installing SEGGER J-Link</a><a class="he
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/get_started/native_install/index.html b/master/get_started/native_install/index.html
index 27746379d..d133c3a7c 100644
--- a/master/get_started/native_install/index.html
+++ b/master/get_started/native_install/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Native Installation &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Native Installation &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Setup &amp; Get Started" href="../index.html"/>
           <link rel="next" title="Installing Newt on Mac OS" href="../../newt/install/newt_mac.html"/>
           <link rel="prev" title="Setup &amp; Get Started" href="../index.html"/> 
@@ -340,7 +340,7 @@ <h1>Native Installation<a class="headerlink" href="#native-installation" title="
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/get_started/native_install/native_tools.html b/master/get_started/native_install/native_tools.html
index b84f5ad29..423374802 100644
--- a/master/get_started/native_install/native_tools.html
+++ b/master/get_started/native_install/native_tools.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Native Toolchain &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Native Toolchain &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Native Installation" href="index.html"/>
           <link rel="next" title="Installing the Cross Tools for ARM" href="cross_tools.html"/>
           <link rel="prev" title="Installing Newt on Windows" href="../../newt/install/newt_windows.html"/> 
@@ -459,7 +459,7 @@ <h2><a class="toc-backref" href="#id8">Next</a><a class="headerlink" href="#next
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/get_started/project_create.html b/master/get_started/project_create.html
index ada6b0d66..35bf7fd30 100644
--- a/master/get_started/project_create.html
+++ b/master/get_started/project_create.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Creating Your First Mynewt Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Creating Your First Mynewt Project &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Setup &amp; Get Started" href="index.html"/>
           <link rel="next" title="Using the Serial Port with Mynewt OS" href="serial_access.html"/>
           <link rel="prev" title="Everything You Need in a Docker Container" href="docker.html"/> 
@@ -714,7 +714,7 @@ <h2><a class="toc-backref" href="#id9">Exploring other Mynewt OS Features</a><a
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/get_started/serial_access.html b/master/get_started/serial_access.html
index 9f1b4ad00..bd92d460a 100644
--- a/master/get_started/serial_access.html
+++ b/master/get_started/serial_access.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Using the Serial Port with Mynewt OS &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Using the Serial Port with Mynewt OS &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Setup &amp; Get Started" href="index.html"/>
           <link rel="next" title="Concepts" href="../concepts.html"/>
           <link rel="prev" title="Creating Your First Mynewt Project" href="project_create.html"/> 
@@ -493,7 +493,7 @@ <h4><a class="toc-backref" href="#id11">Example for Windows Platforms</a><a clas
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/index.html b/master/index.html
index 615bfb7a2..ef5037e93 100644
--- a/master/index.html
+++ b/master/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt Documentation &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt Documentation &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="genindex.html"/>
           <link rel="search" title="Search" href="search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="#"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="#"/>
           <link rel="next" title="Setup &amp; Get Started" href="get_started/index.html"/> 
 
     
@@ -355,7 +355,7 @@ <h2>Build your first Mynewt App with Newt<a class="headerlink" href="#build-your
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/misc/go_env.html b/master/misc/go_env.html
index fb3e8cba7..d3aa5cf09 100644
--- a/master/misc/go_env.html
+++ b/master/misc/go_env.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Contributing to Newt or Newtmgr Tools &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Contributing to Newt or Newtmgr Tools &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Appendix" href="index.html"/>
           <link rel="next" title="Developing Mynewt Applications with Visual Studio Code" href="ide.html"/>
           <link rel="prev" title="Appendix" href="index.html"/> 
@@ -266,16 +266,17 @@ <h1>Contributing to Newt or Newtmgr Tools<a class="headerlink" href="#contributi
 <ul class="simple">
 <li><a class="reference internal" href="#step-1-installing-go" id="id1">Step 1: Installing Go</a><ul>
 <li><a class="reference internal" href="#installing-go-on-mac-os-x" id="id2">Installing Go on Mac OS X</a></li>
-<li><a class="reference internal" href="#installing-go-on-linux-and-windows" id="id3">Installing Go on Linux and Windows</a></li>
+<li><a class="reference internal" href="#installing-go-and-git-on-linux" id="id3">Installing Go and git on Linux</a></li>
+<li><a class="reference internal" href="#installing-go-on-and-git-windows" id="id4">Installing Go on and git Windows</a></li>
 </ul>
 </li>
-<li><a class="reference internal" href="#step-2-setting-up-your-go-environment" id="id4">Step 2: Setting Up Your Go Environment</a></li>
-<li><a class="reference internal" href="#step-3-downloading-the-source-and-installing-the-tools" id="id5">Step 3: Downloading the Source and Installing the Tools</a><ul>
-<li><a class="reference internal" href="#downloading-and-installing-the-newt-tool" id="id6">Downloading and Installing the Newt Tool</a></li>
-<li><a class="reference internal" href="#downloading-and-installing-the-newtmgr-tool" id="id7">Downloading and Installing the Newtmgr Tool</a></li>
+<li><a class="reference internal" href="#step-2-setting-up-your-go-environment" id="id5">Step 2: Setting Up Your Go Environment</a></li>
+<li><a class="reference internal" href="#step-3-downloading-the-source-and-installing-the-tools" id="id6">Step 3: Downloading the Source and Installing the Tools</a><ul>
+<li><a class="reference internal" href="#downloading-and-installing-the-newt-tool" id="id7">Downloading and Installing the Newt Tool</a></li>
+<li><a class="reference internal" href="#downloading-and-installing-the-newtmgr-tool" id="id8">Downloading and Installing the Newtmgr Tool</a></li>
 </ul>
 </li>
-<li><a class="reference internal" href="#step-4-updating-and-rebuilding-the-tools" id="id8">Step 4: Updating and Rebuilding the Tools:</a></li>
+<li><a class="reference internal" href="#step-4-updating-and-rebuilding-the-tools" id="id9">Step 4: Updating and Rebuilding the Tools:</a></li>
 </ul>
 </div>
 <p><strong>Note:</strong> You will also need to read and follow the instructions from
@@ -307,14 +308,23 @@ <h3><a class="toc-backref" href="#id2">Installing Go on Mac OS X</a><a class="he
 (<a class="reference external" href="https://golang.org/dl/">https://golang.org/dl/</a>) and install it in /usr/local/bin instead of
 brewing it.</p>
 </div>
-<div class="section" id="installing-go-on-linux-and-windows">
-<h3><a class="toc-backref" href="#id3">Installing Go on Linux and Windows</a><a class="headerlink" href="#installing-go-on-linux-and-windows" title="Permalink to this headline">¶</a></h3>
-<p>You can download Go from
-<a class="reference external" href="https://golang.org/dl/">https://golang.org/dl/</a>.</p>
+<div class="section" id="installing-go-and-git-on-linux">
+<h3><a class="toc-backref" href="#id3">Installing Go and git on Linux</a><a class="headerlink" href="#installing-go-and-git-on-linux" title="Permalink to this headline">¶</a></h3>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="go">sudo apt-get install golang git</span>
+</pre></div>
+</div>
+</div>
+<div class="section" id="installing-go-on-and-git-windows">
+<h3><a class="toc-backref" href="#id4">Installing Go on and git Windows</a><a class="headerlink" href="#installing-go-on-and-git-windows" title="Permalink to this headline">¶</a></h3>
+<p>In msys2 terminal type</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="go">pacman -S mingw-w64-x64_64-go git</span>
+</pre></div>
+</div>
+<p>Make sure to restart msys2 terminal after installation.</p>
 </div>
 </div>
 <div class="section" id="step-2-setting-up-your-go-environment">
-<h2><a class="toc-backref" href="#id4">Step 2: Setting Up Your Go Environment</a><a class="headerlink" href="#step-2-setting-up-your-go-environment" title="Permalink to this headline">¶</a></h2>
+<h2><a class="toc-backref" href="#id5">Step 2: Setting Up Your Go Environment</a><a class="headerlink" href="#step-2-setting-up-your-go-environment" title="Permalink to this headline">¶</a></h2>
 <p>This section describes the Go environment and how to setup a Go
 workspace. If you already have a Go workspace for your other Go
 projects, you can skip this step and proceed to Step 3.</p>
@@ -350,13 +360,13 @@ <h2><a class="toc-backref" href="#id4">Step 2: Setting Up Your Go Environment</a
 </div>
 </div>
 <div class="section" id="step-3-downloading-the-source-and-installing-the-tools">
-<h2><a class="toc-backref" href="#id5">Step 3: Downloading the Source and Installing the Tools</a><a class="headerlink" href="#step-3-downloading-the-source-and-installing-the-tools" title="Permalink to this headline">¶</a></h2>
+<h2><a class="toc-backref" href="#id6">Step 3: Downloading the Source and Installing the Tools</a><a class="headerlink" href="#step-3-downloading-the-source-and-installing-the-tools" title="Permalink to this headline">¶</a></h2>
 <p>Newt and newtmgr are individual Go packages and have their own git
 repositories. You can download the source and install one or both tools.</p>
 <p>We use the <code class="docutils literal notranslate"><span class="pre">go</span> <span class="pre">get</span></code> command to download the source, build, and install
 the binary in the <strong>$GOPATH/bin</strong> directory.</p>
 <div class="section" id="downloading-and-installing-the-newt-tool">
-<h3><a class="toc-backref" href="#id6">Downloading and Installing the Newt Tool</a><a class="headerlink" href="#downloading-and-installing-the-newt-tool" title="Permalink to this headline">¶</a></h3>
+<h3><a class="toc-backref" href="#id7">Downloading and Installing the Newt Tool</a><a class="headerlink" href="#downloading-and-installing-the-newt-tool" title="Permalink to this headline">¶</a></h3>
 <p>The newt Go package is <strong>mynewt.apache.org/newt/newt</strong> and is stored in
 the <a class="reference external" href="https://github.com/apache/mynewt-newt">Apache Mynewt newt tool repository mirrored on
 github</a>.</p>
@@ -391,7 +401,7 @@ <h3><a class="toc-backref" href="#id6">Downloading and Installing the Newt Tool<
 </div>
 </div>
 <div class="section" id="downloading-and-installing-the-newtmgr-tool">
-<h3><a class="toc-backref" href="#id7">Downloading and Installing the Newtmgr Tool</a><a class="headerlink" href="#downloading-and-installing-the-newtmgr-tool" title="Permalink to this headline">¶</a></h3>
+<h3><a class="toc-backref" href="#id8">Downloading and Installing the Newtmgr Tool</a><a class="headerlink" href="#downloading-and-installing-the-newtmgr-tool" title="Permalink to this headline">¶</a></h3>
 <p>The newtmgr Go package is <strong>mynewt.apache.org/newtmgr/newtmgr</strong>. It is
 stored in the <a class="reference external" href="https://github.com/apache/mynewt-newtmgr">Apache Mynewt newtmgr tool repository mirrored on
 github</a>.</p>
@@ -418,7 +428,7 @@ <h3><a class="toc-backref" href="#id7">Downloading and Installing the Newtmgr To
 </div>
 </div>
 <div class="section" id="step-4-updating-and-rebuilding-the-tools">
-<h2><a class="toc-backref" href="#id8">Step 4: Updating and Rebuilding the Tools:</a><a class="headerlink" href="#step-4-updating-and-rebuilding-the-tools" title="Permalink to this headline">¶</a></h2>
+<h2><a class="toc-backref" href="#id9">Step 4: Updating and Rebuilding the Tools:</a><a class="headerlink" href="#step-4-updating-and-rebuilding-the-tools" title="Permalink to this headline">¶</a></h2>
 <p>This section shows you
 how to rebuild the newt and newtmgr tools with the latest updates from
 the master branch or after you have made changes in your branch.</p>
@@ -512,7 +522,7 @@ <h2><a class="toc-backref" href="#id8">Step 4: Updating and Rebuilding the Tools
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/misc/ide.html b/master/misc/ide.html
index 356b7be8f..42960142a 100644
--- a/master/misc/ide.html
+++ b/master/misc/ide.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Developing Mynewt Applications with Visual Studio Code &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Developing Mynewt Applications with Visual Studio Code &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Appendix" href="index.html"/>
           <link rel="prev" title="Contributing to Newt or Newtmgr Tools" href="go_env.html"/> 
 
@@ -630,7 +630,7 @@ <h2><a class="toc-backref" href="#id10">Working with Multiple Mynewt Application
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/misc/index.html b/master/misc/index.html
index 6a71d1cbf..eaa6140c7 100644
--- a/master/misc/index.html
+++ b/master/misc/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Appendix &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Appendix &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="next" title="Contributing to Newt or Newtmgr Tools" href="go_env.html"/>
           <link rel="prev" title="Mynewt FAQ - Troubleshooting" href="../mynewt_faq/troubleshoot_faq.html"/> 
 
@@ -300,7 +300,7 @@ <h1>Appendix<a class="headerlink" href="#appendix" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/admin_faq.html b/master/mynewt_faq/admin_faq.html
index 8f1e061be..b0f624e41 100644
--- a/master/mynewt_faq/admin_faq.html
+++ b/master/mynewt_faq/admin_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Administrative &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Administrative &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Bluetooth" href="bluetooth_faq.html"/>
           <link rel="prev" title="Mynewt FAQ" href="index.html"/> 
@@ -412,7 +412,7 @@ <h3><a class="toc-backref" href="#id6">I would like to make some edits to the do
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/bluetooth_faq.html b/master/mynewt_faq/bluetooth_faq.html
index 9b51a02cb..d3a938764 100644
--- a/master/mynewt_faq/bluetooth_faq.html
+++ b/master/mynewt_faq/bluetooth_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Bluetooth &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Bluetooth &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Bootloader and Firmware Upgrade" href="boot_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - Administrative" href="admin_faq.html"/> 
@@ -482,7 +482,7 @@ <h2><a class="toc-backref" href="#id13">Read the Value of a Characteristic of a
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/boot_faq.html b/master/mynewt_faq/boot_faq.html
index 56d64b442..846b0722d 100644
--- a/master/mynewt_faq/boot_faq.html
+++ b/master/mynewt_faq/boot_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Bootloader and Firmware Upgrade &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Bootloader and Firmware Upgrade &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Drivers and Modules" href="modules_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - Bluetooth" href="bluetooth_faq.html"/> 
@@ -345,7 +345,7 @@ <h2><a class="toc-backref" href="#id4"><code class="docutils literal notranslate
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/fs_faq.html b/master/mynewt_faq/fs_faq.html
index e437fb1c0..254425892 100644
--- a/master/mynewt_faq/fs_faq.html
+++ b/master/mynewt_faq/fs_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - File System &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - File System &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Hardware-Specific Questions" href="hardware_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - Drivers and Modules" href="modules_faq.html"/> 
@@ -323,7 +323,7 @@ <h2><a class="toc-backref" href="#id1"><code class="docutils literal notranslate
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/hardware_faq.html b/master/mynewt_faq/hardware_faq.html
index de18d41dd..8176e77dc 100644
--- a/master/mynewt_faq/hardware_faq.html
+++ b/master/mynewt_faq/hardware_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Hardware-Specific Questions &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Hardware-Specific Questions &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Syntax, Semantics, Configuration" href="syntax_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - File System" href="fs_faq.html"/> 
@@ -354,7 +354,7 @@ <h3><a class="toc-backref" href="#id6">View Logs on the Redbear BLE Nano2</a><a
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/index.html b/master/mynewt_faq/index.html
index 2db2fee0e..527da7a6a 100644
--- a/master/mynewt_faq/index.html
+++ b/master/mynewt_faq/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="next" title="Mynewt FAQ - Administrative" href="admin_faq.html"/>
           <link rel="prev" title="Installing Previous Releases of Newtmgr" href="../newtmgr/install/prev_releases.html"/> 
 
@@ -345,7 +345,7 @@ <h3>Version Control Applications with Git<a class="headerlink" href="#version-co
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/modules_faq.html b/master/mynewt_faq/modules_faq.html
index d64405122..388047183 100644
--- a/master/mynewt_faq/modules_faq.html
+++ b/master/mynewt_faq/modules_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Drivers and Modules &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Drivers and Modules &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - File System" href="fs_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - Bootloader and Firmware Upgrade" href="boot_faq.html"/> 
@@ -347,7 +347,7 @@ <h2><a class="toc-backref" href="#id3">Log Name vs. Module Number</a><a class="h
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/newt_faq.html b/master/mynewt_faq/newt_faq.html
index 6e51dd51c..8756a1196 100644
--- a/master/mynewt_faq/newt_faq.html
+++ b/master/mynewt_faq/newt_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Newt &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Newt &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Newt Manager" href="newtmgr_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - NFC" href="nfc_faq.html"/> 
@@ -333,7 +333,7 @@ <h2><a class="toc-backref" href="#id2"><code class="docutils literal notranslate
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/newtmgr_faq.html b/master/mynewt_faq/newtmgr_faq.html
index a57fc4fb9..01dc2bade 100644
--- a/master/mynewt_faq/newtmgr_faq.html
+++ b/master/mynewt_faq/newtmgr_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Newt Manager &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Newt Manager &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Porting Mynewt" href="port_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - Newt" href="newt_faq.html"/> 
@@ -381,7 +381,7 @@ <h2><a class="toc-backref" href="#id4">Newt Manager with the Adafruit nRF52DK</a
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/nfc_faq.html b/master/mynewt_faq/nfc_faq.html
index 6e544e984..0b57c9e79 100644
--- a/master/mynewt_faq/nfc_faq.html
+++ b/master/mynewt_faq/nfc_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - NFC &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - NFC &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Newt" href="newt_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - Syntax, Semantics, Configuration" href="syntax_faq.html"/> 
@@ -308,7 +308,7 @@ <h1>Mynewt FAQ - NFC<a class="headerlink" href="#mynewt-faq-nfc" title="Permalin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/port_faq.html b/master/mynewt_faq/port_faq.html
index 9af5b8ac5..19e8e136e 100644
--- a/master/mynewt_faq/port_faq.html
+++ b/master/mynewt_faq/port_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Porting Mynewt &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Porting Mynewt &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - Troubleshooting" href="troubleshoot_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - Newt Manager" href="newtmgr_faq.html"/> 
@@ -322,7 +322,7 @@ <h2><a class="toc-backref" href="#id1">Porting Mynewt to Core-M3 MCU</a><a class
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/syntax_faq.html b/master/mynewt_faq/syntax_faq.html
index e08af492a..36d3f010d 100644
--- a/master/mynewt_faq/syntax_faq.html
+++ b/master/mynewt_faq/syntax_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Syntax, Semantics, Configuration &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Syntax, Semantics, Configuration &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Mynewt FAQ - NFC" href="nfc_faq.html"/>
           <link rel="prev" title="Mynewt FAQ - Hardware-Specific Questions" href="hardware_faq.html"/> 
@@ -369,7 +369,7 @@ <h2><a class="toc-backref" href="#id7">Alternatives to <code class="docutils lit
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/mynewt_faq/troubleshoot_faq.html b/master/mynewt_faq/troubleshoot_faq.html
index 1aa9f5029..825746096 100644
--- a/master/mynewt_faq/troubleshoot_faq.html
+++ b/master/mynewt_faq/troubleshoot_faq.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt FAQ - Troubleshooting &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt FAQ - Troubleshooting &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Mynewt FAQ" href="index.html"/>
           <link rel="next" title="Appendix" href="../misc/index.html"/>
           <link rel="prev" title="Mynewt FAQ - Porting Mynewt" href="port_faq.html"/> 
@@ -389,7 +389,7 @@ <h2><a class="toc-backref" href="#id6">Bug With Older Versions of <code class="d
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/README.html b/master/network/docs/README.html
index 402674db5..aaef99494 100644
--- a/master/network/docs/README.html
+++ b/master/network/docs/README.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Bluetooth Stack Documentation &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Bluetooth Stack Documentation &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/> 
 
     
     <script src="../../_static/js/modernizr.min.js"></script>
@@ -309,7 +309,7 @@ <h2><a class="toc-backref" href="#id3">Previewing Changes</a><a class="headerlin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_hs/ble_att.html b/master/network/docs/ble_hs/ble_att.html
index 719269438..02be409c8 100644
--- a/master/network/docs/ble_hs/ble_att.html
+++ b/master/network/docs/ble_hs/ble_att.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Host ATT Client Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Host ATT Client Reference &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Host" href="ble_hs.html"/>
           <link rel="next" title="API for btshell app" href="../btshell/btshell_api.html"/>
           <link rel="prev" title="NimBLE Host Identity Reference" href="ble_hs_id.html"/> 
@@ -397,7 +397,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_hs/ble_gap.html b/master/network/docs/ble_hs/ble_gap.html
index 8cbf1ef23..7f9fca4e0 100644
--- a/master/network/docs/ble_hs/ble_gap.html
+++ b/master/network/docs/ble_hs/ble_gap.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Host GAP Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Host GAP Reference &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Host" href="ble_hs.html"/>
           <link rel="next" title="NimBLE Host GATT Client Reference" href="ble_gattc.html"/>
           <link rel="prev" title="NimBLE Host Return Codes" href="ble_hs_return_codes.html"/> 
@@ -1476,7 +1476,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_hs/ble_gattc.html b/master/network/docs/ble_hs/ble_gattc.html
index 129d808bf..41b6a8d2e 100644
--- a/master/network/docs/ble_hs/ble_gattc.html
+++ b/master/network/docs/ble_hs/ble_gattc.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Host GATT Client Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Host GATT Client Reference &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Host" href="ble_hs.html"/>
           <link rel="next" title="NimBLE Host GATT Server Reference" href="ble_gatts.html"/>
           <link rel="prev" title="NimBLE Host GAP Reference" href="ble_gap.html"/> 
@@ -1286,7 +1286,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_hs/ble_gatts.html b/master/network/docs/ble_hs/ble_gatts.html
index 05f9e2ccd..99655dba2 100644
--- a/master/network/docs/ble_hs/ble_gatts.html
+++ b/master/network/docs/ble_hs/ble_gatts.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Host GATT Server Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Host GATT Server Reference &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Host" href="ble_hs.html"/>
           <link rel="next" title="NimBLE Host Identity Reference" href="ble_hs_id.html"/>
           <link rel="prev" title="NimBLE Host GATT Client Reference" href="ble_gattc.html"/> 
@@ -1286,7 +1286,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_hs/ble_hs.html b/master/network/docs/ble_hs/ble_hs.html
index 3c795047f..25d0cb4c2 100644
--- a/master/network/docs/ble_hs/ble_hs.html
+++ b/master/network/docs/ble_hs/ble_hs.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Host &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Host &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="BLE User Guide" href="../index.html"/>
           <link rel="next" title="NimBLE Host Return Codes" href="ble_hs_return_codes.html"/>
           <link rel="prev" title="Respond to sync and reset events" href="../ble_setup/ble_sync_cb.html"/> 
@@ -331,7 +331,7 @@ <h2>Introduction<a class="headerlink" href="#introduction" title="Permalink to t
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_hs/ble_hs_id.html b/master/network/docs/ble_hs/ble_hs_id.html
index 6b71d58ec..5ac8ba521 100644
--- a/master/network/docs/ble_hs/ble_hs_id.html
+++ b/master/network/docs/ble_hs/ble_hs_id.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Host Identity Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Host Identity Reference &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Host" href="ble_hs.html"/>
           <link rel="next" title="NimBLE Host ATT Client Reference" href="ble_att.html"/>
           <link rel="prev" title="NimBLE Host GATT Server Reference" href="ble_gatts.html"/> 
@@ -371,7 +371,7 @@ <h2>Header<a class="headerlink" href="#header" title="Permalink to this headline
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_hs/ble_hs_return_codes.html b/master/network/docs/ble_hs/ble_hs_return_codes.html
index 0883bee50..8172879db 100644
--- a/master/network/docs/ble_hs/ble_hs_return_codes.html
+++ b/master/network/docs/ble_hs/ble_hs_return_codes.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Host Return Codes &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Host Return Codes &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Host" href="ble_hs.html"/>
           <link rel="next" title="NimBLE Host GAP Reference" href="ble_gap.html"/>
           <link rel="prev" title="NimBLE Host" href="ble_hs.html"/> 
@@ -1260,7 +1260,7 @@ <h3><a class="toc-backref" href="#id11">Return codes - Security manager (peer)</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_sec.html b/master/network/docs/ble_sec.html
index 1e34f6073..70e7e4bb2 100644
--- a/master/network/docs/ble_sec.html
+++ b/master/network/docs/ble_sec.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Security &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Security &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="BLE User Guide" href="index.html"/>
           <link rel="next" title="NimBLE Setup" href="ble_setup/ble_setup_intro.html"/>
           <link rel="prev" title="BLE User Guide" href="index.html"/> 
@@ -364,7 +364,7 @@ <h2>Privacy Feature<a class="headerlink" href="#privacy-feature" title="Permalin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_setup/ble_addr.html b/master/network/docs/ble_setup/ble_addr.html
index 4769cbf51..4e736d1e3 100644
--- a/master/network/docs/ble_setup/ble_addr.html
+++ b/master/network/docs/ble_setup/ble_addr.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Configure device address &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Configure device address &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Setup" href="ble_setup_intro.html"/>
           <link rel="next" title="Respond to sync and reset events" href="ble_sync_cb.html"/>
           <link rel="prev" title="Configure clock for controller" href="ble_lp_clock.html"/> 
@@ -360,7 +360,7 @@ <h2>Method 3: Configure a random address at runtime<a class="headerlink" href="#
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_setup/ble_lp_clock.html b/master/network/docs/ble_setup/ble_lp_clock.html
index 136e6dd54..ee8927910 100644
--- a/master/network/docs/ble_setup/ble_lp_clock.html
+++ b/master/network/docs/ble_setup/ble_lp_clock.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Configure clock for controller &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Configure clock for controller &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Setup" href="ble_setup_intro.html"/>
           <link rel="next" title="Configure device address" href="ble_addr.html"/>
           <link rel="prev" title="NimBLE Setup" href="ble_setup_intro.html"/> 
@@ -363,7 +363,7 @@ <h2>Crystal settle time configuration<a class="headerlink" href="#crystal-settle
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_setup/ble_setup_intro.html b/master/network/docs/ble_setup/ble_setup_intro.html
index 45d622b60..f1a5342f6 100644
--- a/master/network/docs/ble_setup/ble_setup_intro.html
+++ b/master/network/docs/ble_setup/ble_setup_intro.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>NimBLE Setup &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>NimBLE Setup &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="BLE User Guide" href="../index.html"/>
           <link rel="next" title="Configure clock for controller" href="ble_lp_clock.html"/>
           <link rel="prev" title="NimBLE Security" href="../ble_sec.html"/> 
@@ -330,7 +330,7 @@ <h1>NimBLE Setup<a class="headerlink" href="#nimble-setup" title="Permalink to t
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/ble_setup/ble_sync_cb.html b/master/network/docs/ble_setup/ble_sync_cb.html
index f557cada9..ea6b25076 100644
--- a/master/network/docs/ble_setup/ble_sync_cb.html
+++ b/master/network/docs/ble_setup/ble_sync_cb.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Respond to sync and reset events &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Respond to sync and reset events &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Setup" href="ble_setup_intro.html"/>
           <link rel="next" title="NimBLE Host" href="../ble_hs/ble_hs.html"/>
           <link rel="prev" title="Configure device address" href="ble_addr.html"/> 
@@ -376,7 +376,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/btshell/btshell_GAP.html b/master/network/docs/btshell/btshell_GAP.html
index 6d65acb15..a19e08147 100644
--- a/master/network/docs/btshell/btshell_GAP.html
+++ b/master/network/docs/btshell/btshell_GAP.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>GAP API for btshell &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>GAP API for btshell &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="API for btshell app" href="btshell_api.html"/>
           <link rel="next" title="GATT feature API for btshell" href="btshell_GATT.html"/>
           <link rel="prev" title="API for btshell app" href="btshell_api.html"/> 
@@ -1916,7 +1916,7 @@ <h3>Keys storage<a class="headerlink" href="#keys-storage" title="Permalink to t
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/btshell/btshell_GATT.html b/master/network/docs/btshell/btshell_GATT.html
index ad6841d74..69d4ff5c9 100644
--- a/master/network/docs/btshell/btshell_GATT.html
+++ b/master/network/docs/btshell/btshell_GATT.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>GATT feature API for btshell &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>GATT feature API for btshell &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="API for btshell app" href="btshell_api.html"/>
           <link rel="next" title="Advertisement Data Fields" href="btshell_advdata.html"/>
           <link rel="prev" title="GAP API for btshell" href="btshell_GAP.html"/> 
@@ -559,7 +559,7 @@ <h3>Configuration<a class="headerlink" href="#configuration" title="Permalink to
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/btshell/btshell_advdata.html b/master/network/docs/btshell/btshell_advdata.html
index 9e878ef38..6ca1b3284 100644
--- a/master/network/docs/btshell/btshell_advdata.html
+++ b/master/network/docs/btshell/btshell_advdata.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Advertisement Data Fields &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Advertisement Data Fields &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="API for btshell app" href="btshell_api.html"/>
           <link rel="next" title="Bluetooth Mesh" href="../mesh/index.html"/>
           <link rel="prev" title="GATT feature API for btshell" href="btshell_GATT.html"/> 
@@ -418,7 +418,7 @@ <h1>Advertisement Data Fields<a class="headerlink" href="#advertisement-data-fie
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/btshell/btshell_api.html b/master/network/docs/btshell/btshell_api.html
index 3ca43de3a..8315ff36e 100644
--- a/master/network/docs/btshell/btshell_api.html
+++ b/master/network/docs/btshell/btshell_api.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>API for btshell app &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>API for btshell app &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="BLE User Guide" href="../index.html"/>
           <link rel="next" title="GAP API for btshell" href="btshell_GAP.html"/>
           <link rel="prev" title="NimBLE Host ATT Client Reference" href="../ble_hs/ble_att.html"/> 
@@ -427,7 +427,7 @@ <h2><a class="toc-backref" href="#id9">Perform a passive scan</a><a class="heade
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/index.html b/master/network/docs/index.html
index b6195c8eb..704a8396f 100644
--- a/master/network/docs/index.html
+++ b/master/network/docs/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>BLE User Guide &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>BLE User Guide &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="next" title="NimBLE Security" href="ble_sec.html"/>
           <link rel="prev" title="JSON" href="../../os/modules/json/json.html"/> 
 
@@ -409,7 +409,7 @@ <h2><a class="toc-backref" href="#id4">Example NimBLE projects</a><a class="head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/mesh/index.html b/master/network/docs/mesh/index.html
index 815c8ec93..d6f842d30 100644
--- a/master/network/docs/mesh/index.html
+++ b/master/network/docs/mesh/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Bluetooth Mesh &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Bluetooth Mesh &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="BLE User Guide" href="../index.html"/>
           <link rel="next" title="Sample application" href="sample.html"/>
           <link rel="prev" title="Advertisement Data Fields" href="../btshell/btshell_advdata.html"/> 
@@ -396,7 +396,7 @@ <h2><a class="toc-backref" href="#id6">Mesh Node features supported by Apache My
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/network/docs/mesh/sample.html b/master/network/docs/mesh/sample.html
index 8caf21dff..dfcfead29 100644
--- a/master/network/docs/mesh/sample.html
+++ b/master/network/docs/mesh/sample.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sample application &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sample application &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Bluetooth Mesh" href="index.html"/>
           <link rel="next" title="Newt Tool Guide" href="../../../newt/index.html"/>
           <link rel="prev" title="Bluetooth Mesh" href="index.html"/> 
@@ -327,7 +327,7 @@ <h1>Sample application<a class="headerlink" href="#sample-application" title="Pe
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/README.html b/master/newt/README.html
index db2ea4fd6..d63e38ec8 100644
--- a/master/newt/README.html
+++ b/master/newt/README.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt Newt Tool Documentation &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt Newt Tool Documentation &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/> 
 
     
     <script src="../_static/js/modernizr.min.js"></script>
@@ -305,7 +305,7 @@ <h2><a class="toc-backref" href="#id3">Previewing Changes</a><a class="headerlin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_build.html b/master/newt/command_list/newt_build.html
index 3202e0b8c..012618761 100644
--- a/master/newt/command_list/newt_build.html
+++ b/master/newt/command_list/newt_build.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt build &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt build &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt clean" href="newt_clean.html"/>
           <link rel="prev" title="Command Structure" href="../newt_ops.html"/> 
@@ -369,7 +369,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_clean.html b/master/newt/command_list/newt_clean.html
index b37c9ab31..c5d1e831c 100644
--- a/master/newt/command_list/newt_clean.html
+++ b/master/newt/command_list/newt_clean.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt clean &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt clean &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt complete" href="newt_complete.html"/>
           <link rel="prev" title="newt build" href="newt_build.html"/> 
@@ -371,7 +371,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_complete.html b/master/newt/command_list/newt_complete.html
index c75d8372d..d5613e90f 100644
--- a/master/newt/command_list/newt_complete.html
+++ b/master/newt/command_list/newt_complete.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt complete &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt complete &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt create-image" href="newt_create_image.html"/>
           <link rel="prev" title="newt clean" href="newt_clean.html"/> 
@@ -351,7 +351,7 @@ <h2>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_create_image.html b/master/newt/command_list/newt_create_image.html
index 11e0074bd..3d54c3ea0 100644
--- a/master/newt/command_list/newt_create_image.html
+++ b/master/newt/command_list/newt_create_image.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt create-image &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt create-image &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt debug" href="newt_debug.html"/>
           <link rel="prev" title="newt complete" href="newt_complete.html"/> 
@@ -384,7 +384,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_debug.html b/master/newt/command_list/newt_debug.html
index aeef49676..62bff443a 100644
--- a/master/newt/command_list/newt_debug.html
+++ b/master/newt/command_list/newt_debug.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt debug &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt debug &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt help" href="newt_help.html"/>
           <link rel="prev" title="newt create-image" href="newt_create_image.html"/> 
@@ -375,7 +375,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_help.html b/master/newt/command_list/newt_help.html
index 75e896d99..d19a0064e 100644
--- a/master/newt/command_list/newt_help.html
+++ b/master/newt/command_list/newt_help.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt help &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt help &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt info" href="newt_info.html"/>
           <link rel="prev" title="newt debug" href="newt_debug.html"/> 
@@ -395,7 +395,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_info.html b/master/newt/command_list/newt_info.html
index d30e4cecb..1dfe897b9 100644
--- a/master/newt/command_list/newt_info.html
+++ b/master/newt/command_list/newt_info.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt info &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt info &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt install" href="newt_install.html"/>
           <link rel="prev" title="newt help" href="newt_help.html"/> 
@@ -346,7 +346,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_install.html b/master/newt/command_list/newt_install.html
index eef1e3b46..a0416ef13 100644
--- a/master/newt/command_list/newt_install.html
+++ b/master/newt/command_list/newt_install.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt install &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt install &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt load" href="newt_load.html"/>
           <link rel="prev" title="newt info" href="newt_info.html"/> 
@@ -353,7 +353,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_load.html b/master/newt/command_list/newt_load.html
index ca70f7a17..01e6ab4a8 100644
--- a/master/newt/command_list/newt_load.html
+++ b/master/newt/command_list/newt_load.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt load &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt load &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt mfg" href="newt_mfg.html"/>
           <link rel="prev" title="newt install" href="newt_install.html"/> 
@@ -352,7 +352,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_mfg.html b/master/newt/command_list/newt_mfg.html
index ed651fa7f..57646890b 100644
--- a/master/newt/command_list/newt_mfg.html
+++ b/master/newt/command_list/newt_mfg.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt mfg &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt mfg &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt new" href="newt_new.html"/>
           <link rel="prev" title="newt load" href="newt_load.html"/> 
@@ -427,7 +427,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_new.html b/master/newt/command_list/newt_new.html
index 03a88acfc..930b61117 100644
--- a/master/newt/command_list/newt_new.html
+++ b/master/newt/command_list/newt_new.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt new &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt new &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt pkg" href="newt_pkg.html"/>
           <link rel="prev" title="newt mfg" href="newt_mfg.html"/> 
@@ -365,7 +365,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_pkg.html b/master/newt/command_list/newt_pkg.html
index f1ea45cb3..4be085b4a 100644
--- a/master/newt/command_list/newt_pkg.html
+++ b/master/newt/command_list/newt_pkg.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt pkg &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt pkg &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt resign-image" href="newt_resign_image.html"/>
           <link rel="prev" title="newt new" href="newt_new.html"/> 
@@ -415,7 +415,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_resign_image.html b/master/newt/command_list/newt_resign_image.html
index c2b1355f8..46113e91e 100644
--- a/master/newt/command_list/newt_resign_image.html
+++ b/master/newt/command_list/newt_resign_image.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt resign-image &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt resign-image &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt run" href="newt_run.html"/>
           <link rel="prev" title="newt pkg" href="newt_pkg.html"/> 
@@ -372,7 +372,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_run.html b/master/newt/command_list/newt_run.html
index bdca928c8..f9f9a62aa 100644
--- a/master/newt/command_list/newt_run.html
+++ b/master/newt/command_list/newt_run.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt run &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt run &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt size" href="newt_size.html"/>
           <link rel="prev" title="newt resign-image" href="newt_resign_image.html"/> 
@@ -380,7 +380,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_size.html b/master/newt/command_list/newt_size.html
index 3807d7ace..b0b7dfb06 100644
--- a/master/newt/command_list/newt_size.html
+++ b/master/newt/command_list/newt_size.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt size &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt size &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt sync" href="newt_sync.html"/>
           <link rel="prev" title="newt run" href="newt_run.html"/> 
@@ -397,7 +397,7 @@ <h2>Example output for <code class="docutils literal notranslate"><span class="p
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_sync.html b/master/newt/command_list/newt_sync.html
index 2220836d9..f100d6ef4 100644
--- a/master/newt/command_list/newt_sync.html
+++ b/master/newt/command_list/newt_sync.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt sync &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt sync &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt target" href="newt_target.html"/>
           <link rel="prev" title="newt size" href="newt_size.html"/> 
@@ -355,7 +355,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_target.html b/master/newt/command_list/newt_target.html
index 00cf3bf85..21af592ce 100644
--- a/master/newt/command_list/newt_target.html
+++ b/master/newt/command_list/newt_target.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt target &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt target &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt test" href="newt_test.html"/>
           <link rel="prev" title="newt sync" href="newt_sync.html"/> 
@@ -548,7 +548,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_test.html b/master/newt/command_list/newt_test.html
index 25e50b728..cd5cc34ba 100644
--- a/master/newt/command_list/newt_test.html
+++ b/master/newt/command_list/newt_test.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt test &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt test &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt upgrade" href="newt_upgrade.html"/>
           <link rel="prev" title="newt target" href="newt_target.html"/> 
@@ -380,7 +380,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_upgrade.html b/master/newt/command_list/newt_upgrade.html
index a90b44b58..595c19a5f 100644
--- a/master/newt/command_list/newt_upgrade.html
+++ b/master/newt/command_list/newt_upgrade.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt upgrade &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt upgrade &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt vals" href="newt_vals.html"/>
           <link rel="prev" title="newt test" href="newt_test.html"/> 
@@ -352,7 +352,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_vals.html b/master/newt/command_list/newt_vals.html
index 81de7ca32..c154c61ec 100644
--- a/master/newt/command_list/newt_vals.html
+++ b/master/newt/command_list/newt_vals.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt vals &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt vals &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="newt version" href="newt_version.html"/>
           <link rel="prev" title="newt upgrade" href="newt_upgrade.html"/> 
@@ -399,7 +399,7 @@ <h2>Example output for <code class="docutils literal notranslate"><span class="p
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/command_list/newt_version.html b/master/newt/command_list/newt_version.html
index 1dbb3cf7c..fb0b370f1 100644
--- a/master/newt/command_list/newt_version.html
+++ b/master/newt/command_list/newt_version.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newt version &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newt version &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command Structure" href="../newt_ops.html"/>
           <link rel="next" title="Install" href="../install/index.html"/>
           <link rel="prev" title="newt vals" href="newt_vals.html"/> 
@@ -361,7 +361,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/index.html b/master/newt/index.html
index 8a510e31a..c5d0225a6 100644
--- a/master/newt/index.html
+++ b/master/newt/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Newt Tool Guide &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Newt Tool Guide &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="next" title="Theory of Operations" href="newt_operation.html"/>
           <link rel="prev" title="Sample application" href="../network/docs/mesh/sample.html"/> 
 
@@ -494,7 +494,7 @@ <h2>Notes:<a class="headerlink" href="#notes" title="Permalink to this headline"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/install/index.html b/master/newt/install/index.html
index 6a9d7a699..ed35b9c72 100644
--- a/master/newt/install/index.html
+++ b/master/newt/install/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Install &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Install &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Newt Tool Guide" href="../index.html"/>
           <link rel="next" title="Installing Previous Releases of Newt" href="prev_releases.html"/>
           <link rel="prev" title="newt version" href="../command_list/newt_version.html"/> 
@@ -334,7 +334,7 @@ <h1>Install<a class="headerlink" href="#install" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/install/newt_linux.html b/master/newt/install/newt_linux.html
index 8dbf5091a..971a85394 100644
--- a/master/newt/install/newt_linux.html
+++ b/master/newt/install/newt_linux.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Newt on Linux &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Newt on Linux &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Native Installation" href="../../get_started/native_install/index.html"/>
           <link rel="next" title="Installing Newt on Windows" href="newt_windows.html"/>
           <link rel="prev" title="Installing Newt on Mac OS" href="newt_mac.html"/> 
@@ -491,7 +491,7 @@ <h2>Checking the Installed Version of Newt<a class="headerlink" href="#checking-
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/install/newt_mac.html b/master/newt/install/newt_mac.html
index f8e136d00..e85ae0f2a 100644
--- a/master/newt/install/newt_mac.html
+++ b/master/newt/install/newt_mac.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Newt on Mac OS &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Newt on Mac OS &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Native Installation" href="../../get_started/native_install/index.html"/>
           <link rel="next" title="Installing Newt on Linux" href="newt_linux.html"/>
           <link rel="prev" title="Native Installation" href="../../get_started/native_install/index.html"/> 
@@ -469,7 +469,7 @@ <h2>Installing Newt from the Master Branch<a class="headerlink" href="#installin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/install/newt_windows.html b/master/newt/install/newt_windows.html
index 1920982fc..a22be4fd0 100644
--- a/master/newt/install/newt_windows.html
+++ b/master/newt/install/newt_windows.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Newt on Windows &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Newt on Windows &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Native Installation" href="../../get_started/native_install/index.html"/>
           <link rel="next" title="Installing Native Toolchain" href="../../get_started/native_install/native_tools.html"/>
           <link rel="prev" title="Installing Newt on Linux" href="newt_linux.html"/> 
@@ -510,7 +510,7 @@ <h2>Checking the Installed Version<a class="headerlink" href="#checking-the-inst
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/install/prev_releases.html b/master/newt/install/prev_releases.html
index 3d74dc02f..2b55554a4 100644
--- a/master/newt/install/prev_releases.html
+++ b/master/newt/install/prev_releases.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Previous Releases of Newt &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Previous Releases of Newt &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Install" href="index.html"/>
           <link rel="next" title="Newt Manager Guide" href="../../newtmgr/index.html"/>
           <link rel="prev" title="Install" href="index.html"/> 
@@ -410,7 +410,7 @@ <h2>Windows<a class="headerlink" href="#windows" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/newt_operation.html b/master/newt/newt_operation.html
index 48f936c5d..dab4b48b7 100644
--- a/master/newt/newt_operation.html
+++ b/master/newt/newt_operation.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Theory of Operations &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Theory of Operations &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Newt Tool Guide" href="index.html"/>
           <link rel="next" title="Command Structure" href="newt_ops.html"/>
           <link rel="prev" title="Newt Tool Guide" href="index.html"/> 
@@ -580,7 +580,7 @@ <h2>Download/Debug Support<a class="headerlink" href="#download-debug-support" t
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newt/newt_ops.html b/master/newt/newt_ops.html
index f50f3894d..81cf360e9 100644
--- a/master/newt/newt_ops.html
+++ b/master/newt/newt_ops.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Command Structure &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Command Structure &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="up" title="Newt Tool Guide" href="index.html"/>
           <link rel="next" title="newt build" href="command_list/newt_build.html"/>
           <link rel="prev" title="Theory of Operations" href="newt_operation.html"/> 
@@ -375,7 +375,7 @@ <h1>Command Structure<a class="headerlink" href="#command-structure" title="Perm
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/README.html b/master/newtmgr/README.html
index 6ec9af3ee..d1153bc11 100644
--- a/master/newtmgr/README.html
+++ b/master/newtmgr/README.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt Newt Manager Documentation &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt Newt Manager Documentation &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/> 
 
     
     <script src="../_static/js/modernizr.min.js"></script>
@@ -305,7 +305,7 @@ <h2><a class="toc-backref" href="#id3">Previewing Changes</a><a class="headerlin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/index.html b/master/newtmgr/command_list/index.html
index c0aa338c0..6b199b17a 100644
--- a/master/newtmgr/command_list/index.html
+++ b/master/newtmgr/command_list/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Command List &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Command List &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Newt Manager Guide" href="../index.html"/>
           <link rel="next" title="newtmgr config" href="newtmgr_config.html"/>
           <link rel="prev" title="Newt Manager Guide" href="../index.html"/> 
@@ -361,7 +361,7 @@ <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_config.html b/master/newtmgr/command_list/newtmgr_config.html
index a1e272828..6b45e6b7e 100644
--- a/master/newtmgr/command_list/newtmgr_config.html
+++ b/master/newtmgr/command_list/newtmgr_config.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr config &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr config &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr conn" href="newtmgr_conn.html"/>
           <link rel="prev" title="Command List" href="index.html"/> 
@@ -359,7 +359,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_conn.html b/master/newtmgr/command_list/newtmgr_conn.html
index f2412bbd9..b089b6006 100644
--- a/master/newtmgr/command_list/newtmgr_conn.html
+++ b/master/newtmgr/command_list/newtmgr_conn.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr conn &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr conn &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr crash" href="newtmgr_crash.html"/>
           <link rel="prev" title="newtmgr config" href="newtmgr_config.html"/> 
@@ -518,7 +518,7 @@ <h2><a class="toc-backref" href="#id7">Examples</a><a class="headerlink" href="#
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_crash.html b/master/newtmgr/command_list/newtmgr_crash.html
index da715fb52..77b7e00d9 100644
--- a/master/newtmgr/command_list/newtmgr_crash.html
+++ b/master/newtmgr/command_list/newtmgr_crash.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr crash &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr crash &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr datetime" href="newtmgr_datetime.html"/>
           <link rel="prev" title="newtmgr conn" href="newtmgr_conn.html"/> 
@@ -359,7 +359,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_datetime.html b/master/newtmgr/command_list/newtmgr_datetime.html
index 0f2e32fd7..663f01dc8 100644
--- a/master/newtmgr/command_list/newtmgr_datetime.html
+++ b/master/newtmgr/command_list/newtmgr_datetime.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr datetime &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr datetime &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr echo" href="newtmgr_echo.html"/>
           <link rel="prev" title="newtmgr crash" href="newtmgr_crash.html"/> 
@@ -363,7 +363,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_echo.html b/master/newtmgr/command_list/newtmgr_echo.html
index 379d24714..237a135cc 100644
--- a/master/newtmgr/command_list/newtmgr_echo.html
+++ b/master/newtmgr/command_list/newtmgr_echo.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr echo &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr echo &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr fs" href="newtmgr_fs.html"/>
           <link rel="prev" title="newtmgr datetime" href="newtmgr_datetime.html"/> 
@@ -356,7 +356,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_fs.html b/master/newtmgr/command_list/newtmgr_fs.html
index ebfd4dbf4..2094d11b6 100644
--- a/master/newtmgr/command_list/newtmgr_fs.html
+++ b/master/newtmgr/command_list/newtmgr_fs.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr fs &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr fs &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr image" href="newtmgr_image.html"/>
           <link rel="prev" title="newtmgr echo" href="newtmgr_echo.html"/> 
@@ -378,7 +378,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_image.html b/master/newtmgr/command_list/newtmgr_image.html
index 00bbc4568..fcd4faba5 100644
--- a/master/newtmgr/command_list/newtmgr_image.html
+++ b/master/newtmgr/command_list/newtmgr_image.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr image &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr image &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr log" href="newtmgr_logs.html"/>
           <link rel="prev" title="newtmgr fs" href="newtmgr_fs.html"/> 
@@ -452,7 +452,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_logs.html b/master/newtmgr/command_list/newtmgr_logs.html
index f9d87321d..f2f59a682 100644
--- a/master/newtmgr/command_list/newtmgr_logs.html
+++ b/master/newtmgr/command_list/newtmgr_logs.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr log &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr log &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr mpstat" href="newtmgr_mpstats.html"/>
           <link rel="prev" title="newtmgr image" href="newtmgr_image.html"/> 
@@ -439,7 +439,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_mpstats.html b/master/newtmgr/command_list/newtmgr_mpstats.html
index 757a7d619..e3370e7e0 100644
--- a/master/newtmgr/command_list/newtmgr_mpstats.html
+++ b/master/newtmgr/command_list/newtmgr_mpstats.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr mpstat &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr mpstat &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr reset" href="newtmgr_reset.html"/>
           <link rel="prev" title="newtmgr log" href="newtmgr_logs.html"/> 
@@ -384,7 +384,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_reset.html b/master/newtmgr/command_list/newtmgr_reset.html
index b6ed29776..ff586b8d5 100644
--- a/master/newtmgr/command_list/newtmgr_reset.html
+++ b/master/newtmgr/command_list/newtmgr_reset.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr reset &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr reset &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr run" href="newtmgr_run.html"/>
           <link rel="prev" title="newtmgr mpstat" href="newtmgr_mpstats.html"/> 
@@ -355,7 +355,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_run.html b/master/newtmgr/command_list/newtmgr_run.html
index 69af2100e..a038d7bdd 100644
--- a/master/newtmgr/command_list/newtmgr_run.html
+++ b/master/newtmgr/command_list/newtmgr_run.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr run &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr run &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr stat" href="newtmgr_stat.html"/>
           <link rel="prev" title="newtmgr reset" href="newtmgr_reset.html"/> 
@@ -381,7 +381,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_stat.html b/master/newtmgr/command_list/newtmgr_stat.html
index 1edf6486d..79bedd027 100644
--- a/master/newtmgr/command_list/newtmgr_stat.html
+++ b/master/newtmgr/command_list/newtmgr_stat.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr stat &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr stat &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="newtmgr taskstat" href="newtmgr_taskstats.html"/>
           <link rel="prev" title="newtmgr run" href="newtmgr_run.html"/> 
@@ -431,7 +431,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/command_list/newtmgr_taskstats.html b/master/newtmgr/command_list/newtmgr_taskstats.html
index 41cc2c88f..7b3f6fc1c 100644
--- a/master/newtmgr/command_list/newtmgr_taskstats.html
+++ b/master/newtmgr/command_list/newtmgr_taskstats.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>newtmgr taskstat &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>newtmgr taskstat &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Command List" href="index.html"/>
           <link rel="next" title="Install" href="../install/index.html"/>
           <link rel="prev" title="newtmgr stat" href="newtmgr_stat.html"/> 
@@ -375,7 +375,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/index.html b/master/newtmgr/index.html
index bc16d8385..eb212bb4c 100644
--- a/master/newtmgr/index.html
+++ b/master/newtmgr/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Newt Manager Guide &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Newt Manager Guide &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="next" title="Command List" href="command_list/index.html"/>
           <link rel="prev" title="Installing Previous Releases of Newt" href="../newt/install/prev_releases.html"/> 
 
@@ -326,7 +326,7 @@ <h1>Newt Manager Guide<a class="headerlink" href="#newt-manager-guide" title="Pe
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/install/index.html b/master/newtmgr/install/index.html
index 2000b0031..5638f22fc 100644
--- a/master/newtmgr/install/index.html
+++ b/master/newtmgr/install/index.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Install &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Install &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Newt Manager Guide" href="../index.html"/>
           <link rel="next" title="Installing Newtmgr on Mac OS" href="install_mac.html"/>
           <link rel="prev" title="newtmgr taskstat" href="../command_list/newtmgr_taskstats.html"/> 
@@ -333,7 +333,7 @@ <h1>Install<a class="headerlink" href="#install" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/install/install_linux.html b/master/newtmgr/install/install_linux.html
index 6bd446e73..80715e76c 100644
--- a/master/newtmgr/install/install_linux.html
+++ b/master/newtmgr/install/install_linux.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Newtmgr on Linux &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Newtmgr on Linux &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Install" href="index.html"/>
           <link rel="next" title="Installing Newtmgr on Windows" href="install_windows.html"/>
           <link rel="prev" title="Installing Newtmgr on Mac OS" href="install_mac.html"/> 
@@ -532,7 +532,7 @@ <h2><a class="toc-backref" href="#id5">Installing the Latest Release Version of
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/install/install_mac.html b/master/newtmgr/install/install_mac.html
index 0f72a8c4a..aa4aec2df 100644
--- a/master/newtmgr/install/install_mac.html
+++ b/master/newtmgr/install/install_mac.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Newtmgr on Mac OS &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Newtmgr on Mac OS &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Install" href="index.html"/>
           <link rel="next" title="Installing Newtmgr on Linux" href="install_linux.html"/>
           <link rel="prev" title="Install" href="index.html"/> 
@@ -461,7 +461,7 @@ <h2><a class="toc-backref" href="#id6">Installing Newtmgr from the Master Branch
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/install/install_windows.html b/master/newtmgr/install/install_windows.html
index 053aaf664..036580041 100644
--- a/master/newtmgr/install/install_windows.html
+++ b/master/newtmgr/install/install_windows.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Newtmgr on Windows &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Newtmgr on Windows &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Install" href="index.html"/>
           <link rel="next" title="Installing Previous Releases of Newtmgr" href="prev_releases.html"/>
           <link rel="prev" title="Installing Newtmgr on Linux" href="install_linux.html"/> 
@@ -461,7 +461,7 @@ <h2><a class="toc-backref" href="#id3">Checking the Installed Version</a><a clas
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/newtmgr/install/prev_releases.html b/master/newtmgr/install/prev_releases.html
index 00effaf32..df39a0bbb 100644
--- a/master/newtmgr/install/prev_releases.html
+++ b/master/newtmgr/install/prev_releases.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Installing Previous Releases of Newtmgr &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Installing Previous Releases of Newtmgr &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Install" href="index.html"/>
           <link rel="next" title="Mynewt FAQ" href="../../mynewt_faq/index.html"/>
           <link rel="prev" title="Installing Newtmgr on Windows" href="install_windows.html"/> 
@@ -426,7 +426,7 @@ <h2><a class="toc-backref" href="#id3">Windows</a><a class="headerlink" href="#w
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/objects.inv b/master/objects.inv
index c5c2a4ee9..54a72f817 100644
Binary files a/master/objects.inv and b/master/objects.inv differ
diff --git a/master/os/core_os/callout/callout.html b/master/os/core_os/callout/callout.html
index ef218b37e..fd3dff16d 100644
--- a/master/os/core_os/callout/callout.html
+++ b/master/os/core_os/callout/callout.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Callout &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Callout &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Heap" href="../heap/heap.html"/>
           <link rel="prev" title="Event Queues" href="../event_queue/event_queue.html"/> 
@@ -463,7 +463,7 @@ <h3>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/context_switch/context_switch.html b/master/os/core_os/context_switch/context_switch.html
index 9abacd1ae..ff4d4a476 100644
--- a/master/os/core_os/context_switch/context_switch.html
+++ b/master/os/core_os/context_switch/context_switch.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Scheduler &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Scheduler &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Task" href="../task/task.html"/>
           <link rel="prev" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/> 
@@ -412,7 +412,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/cputime/os_cputime.html b/master/os/core_os/cputime/os_cputime.html
index c9de10bbc..707a055c6 100644
--- a/master/os/core_os/cputime/os_cputime.html
+++ b/master/os/core_os/cputime/os_cputime.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>CPU Time &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>CPU Time &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="OS Time" href="../time/os_time.html"/>
           <link rel="prev" title="Mbufs" href="../mbuf/mbuf.html"/> 
@@ -572,7 +572,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/event_queue/event_queue.html b/master/os/core_os/event_queue/event_queue.html
index 5e03d20b5..1f04aad6b 100644
--- a/master/os/core_os/event_queue/event_queue.html
+++ b/master/os/core_os/event_queue/event_queue.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Event Queues &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Event Queues &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Callout" href="../callout/callout.html"/>
           <link rel="prev" title="Semaphore" href="../semaphore/semaphore.html"/> 
@@ -583,7 +583,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/heap/heap.html b/master/os/core_os/heap/heap.html
index e5d670d0a..c20363bcd 100644
--- a/master/os/core_os/heap/heap.html
+++ b/master/os/core_os/heap/heap.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Heap &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Heap &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Memory Pools" href="../memory_pool/memory_pool.html"/>
           <link rel="prev" title="Callout" href="../callout/callout.html"/> 
@@ -342,7 +342,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/mbuf/mbuf.html b/master/os/core_os/mbuf/mbuf.html
index f0b033848..ae0467342 100644
--- a/master/os/core_os/mbuf/mbuf.html
+++ b/master/os/core_os/mbuf/mbuf.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mbufs &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mbufs &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="CPU Time" href="../cputime/os_cputime.html"/>
           <link rel="prev" title="Memory Pools" href="../memory_pool/memory_pool.html"/> 
@@ -1449,7 +1449,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/memory_pool/memory_pool.html b/master/os/core_os/memory_pool/memory_pool.html
index 97f06c1e4..dd5f1d894 100644
--- a/master/os/core_os/memory_pool/memory_pool.html
+++ b/master/os/core_os/memory_pool/memory_pool.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Memory Pools &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Memory Pools &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Mbufs" href="../mbuf/mbuf.html"/>
           <link rel="prev" title="Heap" href="../heap/heap.html"/> 
@@ -710,7 +710,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/mutex/mutex.html b/master/os/core_os/mutex/mutex.html
index 4e7356302..d5970abf7 100644
--- a/master/os/core_os/mutex/mutex.html
+++ b/master/os/core_os/mutex/mutex.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mutex &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mutex &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Semaphore" href="../semaphore/semaphore.html"/>
           <link rel="prev" title="Task" href="../task/task.html"/> 
@@ -474,7 +474,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/mynewt_os.html b/master/os/core_os/mynewt_os.html
index 2ea25a9fc..def8556ad 100644
--- a/master/os/core_os/mynewt_os.html
+++ b/master/os/core_os/mynewt_os.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Apache Mynewt Operating System Kernel &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Apache Mynewt Operating System Kernel &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="OS User Guide" href="../os_user_guide.html"/>
           <link rel="next" title="Scheduler" href="context_switch/context_switch.html"/>
           <link rel="prev" title="OS User Guide" href="../os_user_guide.html"/> 
@@ -535,7 +535,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/porting/port_bsp.html b/master/os/core_os/porting/port_bsp.html
index 7db353e66..e93036d9d 100644
--- a/master/os/core_os/porting/port_bsp.html
+++ b/master/os/core_os/porting/port_bsp.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>BSP Porting &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>BSP Porting &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Porting Mynewt OS" href="port_os.html"/>
           <link rel="next" title="Porting Mynewt to a new MCU" href="port_mcu.html"/>
           <link rel="prev" title="Porting Mynewt OS" href="port_os.html"/> 
@@ -532,15 +532,15 @@ <h2><a class="toc-backref" href="#id8">Copy the download and debug scripts</a><a
 <span class="c1"># This script attaches a gdb session to a Mynewt image running on your BSP.</span>
 
 <span class="c1"># If your BSP uses JLink, a good example script to copy is:</span>
-<span class="c1">#     repos/apache-mynewt-core/hw/bsp/nrf52dk/nrf52dk_debug.sh</span>
+<span class="c1">#     repos/apache-mynewt-core/hw/bsp/nordic_pca10040/nordic_pca10040_debug.sh</span>
 <span class="c1">#</span>
 <span class="c1"># If your BSP uses OpenOCD, a good example script to copy is:</span>
 <span class="c1">#     repos/apache-mynewt-core/hw/bsp/rb-nano2/rb-nano2_debug.sh</span>
 </pre></div>
 </div>
-<p>Our example nRF52 BSP uses JLink, so we will copy the nRF52dk BSP’s scripts:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cp repos/apache-mynewt-core/hw/bsp/nrf52dk/nrf52dk_debug.sh hw/bsp/myboard/myboard_debug.sh
-cp repos/apache-mynewt-core/hw/bsp/nrf52dk/nrf52dk_download.sh hw/bsp/myboard/myboard_download.sh
+<p>Our example Nordic nRF52 BSP uses JLink, so we will copy the Nordic PCA10040 (nRF52 DK) BSP’s scripts:</p>
+<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>cp repos/apache-mynewt-core/hw/bsp/nordic_pca10040/nordic_pca10040_debug.sh hw/bsp/myboard/myboard_debug.sh
+cp repos/apache-mynewt-core/hw/bsp/nordic_pca10040/nordic_pca10040_download.sh hw/bsp/myboard/myboard_download.sh
 </pre></div>
 </div>
 </div>
@@ -617,9 +617,9 @@ <h2><a class="toc-backref" href="#id10">Add startup code</a><a class="headerlink
 <p>This file is named according to the following pattern: <code class="docutils literal notranslate"><span class="pre">hw/bsp/myboard/src/arch/&lt;ARCH&gt;/gcc_startup_&lt;MCU&gt;.s</span></code></p>
 <p>The best approach for creating this file is to copy from other BSPs. If there is another BSP that uses the same MCU, you
 might be able to use most or all of its startup file.</p>
-<p>For our example BSP, we’ll just copy the nRF52dk BSP’s startup code:</p>
+<p>For our example BSP, we’ll just copy the Nordic PCA10040 (nRF52 DK) BSP’s startup code:</p>
 <div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> mkdir -p hw/bsp/myboard/src/arch/cortex_m4
-<span class="gp">$</span> cp repos/apache-mynewt-core/hw/bsp/nrf52dk/src/arch/cortex_m4/gcc_startup_nrf52.s hw/bsp/myboard/src/arch/cortex_m4/
+<span class="gp">$</span> cp repos/apache-mynewt-core/hw/bsp/nordic_pca10040/src/arch/cortex_m4/gcc_startup_nrf52.s hw/bsp/myboard/src/arch/cortex_m4/
 </pre></div>
 </div>
 </div>
@@ -785,7 +785,7 @@ <h2><a class="toc-backref" href="#id13">Appendix A: BSP files</a><a class="heade
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/porting/port_cpu.html b/master/os/core_os/porting/port_cpu.html
index 5c278d40d..4d564b590 100644
--- a/master/os/core_os/porting/port_cpu.html
+++ b/master/os/core_os/porting/port_cpu.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Porting Mynewt to a new CPU Architecture &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Porting Mynewt to a new CPU Architecture &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Porting Mynewt OS" href="port_os.html"/>
           <link rel="next" title="Baselibc" href="../../modules/baselibc.html"/>
           <link rel="prev" title="Porting Mynewt to a new MCU" href="port_mcu.html"/> 
@@ -365,7 +365,7 @@ <h2>Implement Architecture-specific OS code<a class="headerlink" href="#implemen
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/porting/port_mcu.html b/master/os/core_os/porting/port_mcu.html
index 9e113dcad..62a847a6f 100644
--- a/master/os/core_os/porting/port_mcu.html
+++ b/master/os/core_os/porting/port_mcu.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Porting Mynewt to a new MCU &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Porting Mynewt to a new MCU &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Porting Mynewt OS" href="port_os.html"/>
           <link rel="next" title="Porting Mynewt to a new CPU Architecture" href="port_cpu.html"/>
           <link rel="prev" title="BSP Porting" href="port_bsp.html"/> 
@@ -346,7 +346,7 @@ <h1>Porting Mynewt to a new MCU<a class="headerlink" href="#porting-mynewt-to-a-
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/porting/port_os.html b/master/os/core_os/porting/port_os.html
index dfc9a487c..bbf0d288d 100644
--- a/master/os/core_os/porting/port_os.html
+++ b/master/os/core_os/porting/port_os.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Porting Mynewt OS &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Porting Mynewt OS &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="BSP Porting" href="port_bsp.html"/>
           <link rel="prev" title="Split Images" href="../../modules/split/split.html"/> 
@@ -425,7 +425,7 @@ <h2><a class="toc-backref" href="#id5">CPU Core Dependency</a><a class="headerli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/sanity/sanity.html b/master/os/core_os/sanity/sanity.html
index 09c344aa1..440866111 100644
--- a/master/os/core_os/sanity/sanity.html
+++ b/master/os/core_os/sanity/sanity.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sanity &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sanity &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="System Modules" href="../../modules/system_modules.html"/>
           <link rel="prev" title="OS Time" href="../time/os_time.html"/> 
@@ -578,7 +578,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/semaphore/semaphore.html b/master/os/core_os/semaphore/semaphore.html
index 642e78d1b..48f3db64a 100644
--- a/master/os/core_os/semaphore/semaphore.html
+++ b/master/os/core_os/semaphore/semaphore.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Semaphore &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Semaphore &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Event Queues" href="../event_queue/event_queue.html"/>
           <link rel="prev" title="Mutex" href="../mutex/mutex.html"/> 
@@ -456,7 +456,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/task/task.html b/master/os/core_os/task/task.html
index 4838b6fc2..6cdb94228 100644
--- a/master/os/core_os/task/task.html
+++ b/master/os/core_os/task/task.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Task &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Task &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Mutex" href="../mutex/mutex.html"/>
           <link rel="prev" title="Scheduler" href="../context_switch/context_switch.html"/> 
@@ -741,7 +741,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/core_os/time/os_time.html b/master/os/core_os/time/os_time.html
index 345d0f3e5..ff0feae4d 100644
--- a/master/os/core_os/time/os_time.html
+++ b/master/os/core_os/time/os_time.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>OS Time &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>OS Time &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
           <link rel="next" title="Sanity" href="../sanity/sanity.html"/>
           <link rel="prev" title="CPU Time" href="../cputime/os_cputime.html"/> 
@@ -837,7 +837,7 @@ <h2><a class="toc-backref" href="#id6">API</a><a class="headerlink" href="#api"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/baselibc.html b/master/os/modules/baselibc.html
index 9c7af9f9c..993c8a4aa 100644
--- a/master/os/modules/baselibc.html
+++ b/master/os/modules/baselibc.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Baselibc &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Baselibc &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="OS User Guide" href="../os_user_guide.html"/>
           <link rel="next" title="Drivers" href="drivers/driver.html"/>
           <link rel="prev" title="Porting Mynewt to a new CPU Architecture" href="../core_os/porting/port_cpu.html"/> 
@@ -356,7 +356,7 @@ <h2>List of Functions<a class="headerlink" href="#list-of-functions" title="Perm
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/bootloader/bootloader.html b/master/os/modules/bootloader/bootloader.html
index 3a134672b..a09e8b5a8 100644
--- a/master/os/modules/bootloader/bootloader.html
+++ b/master/os/modules/bootloader/bootloader.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Bootloader &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Bootloader &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Split Images" href="../split/split.html"/>
           <link rel="prev" title="BSP" href="../hal/hal_bsp/hal_bsp.html"/> 
@@ -871,7 +871,7 @@ <h2><a class="toc-backref" href="#id12">Image Signing and Verification</a><a cla
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/config/config.html b/master/os/modules/config/config.html
index 24c823d0e..695fa886f 100644
--- a/master/os/modules/config/config.html
+++ b/master/os/modules/config/config.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Config &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Config &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="System Modules" href="../system_modules.html"/>
           <link rel="next" title="Logging" href="../logs/logs.html"/>
           <link rel="prev" title="System Modules" href="../system_modules.html"/> 
@@ -941,7 +941,7 @@ <h3>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/console/console.html b/master/os/modules/console/console.html
index 6d9c21cfe..54fcaa484 100644
--- a/master/os/modules/console/console.html
+++ b/master/os/modules/console/console.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Console &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Console &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="System Modules" href="../system_modules.html"/>
           <link rel="next" title="Shell" href="../shell/shell.html"/>
           <link rel="prev" title="Statistics Module" href="../stats/stats.html"/> 
@@ -745,7 +745,7 @@ <h2><a class="toc-backref" href="#id9">API</a><a class="headerlink" href="#api"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/devmgmt/customize_newtmgr.html b/master/os/modules/devmgmt/customize_newtmgr.html
index 79618db57..3a4bf1f4e 100644
--- a/master/os/modules/devmgmt/customize_newtmgr.html
+++ b/master/os/modules/devmgmt/customize_newtmgr.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Customizing Newt Manager Usage with mgmt &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Customizing Newt Manager Usage with mgmt &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Newt Manager" href="newtmgr.html"/>
           <link rel="next" title="Image Manager" href="../imgmgr/imgmgr.html"/>
           <link rel="prev" title="Using the OIC Framework" href="oicmgr.html"/> 
@@ -354,7 +354,7 @@ <h1>Customizing Newt Manager Usage with mgmt<a class="headerlink" href="#customi
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/devmgmt/newtmgr.html b/master/os/modules/devmgmt/newtmgr.html
index c44b9abee..aefa000f2 100644
--- a/master/os/modules/devmgmt/newtmgr.html
+++ b/master/os/modules/devmgmt/newtmgr.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Newt Manager &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Newt Manager &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Using the OIC Framework" href="oicmgr.html"/>
           <link rel="prev" title="mmc" href="../drivers/mmc.html"/> 
@@ -360,7 +360,7 @@ <h2>newtmgr<a class="headerlink" href="#newtmgr" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/devmgmt/oicmgr.html b/master/os/modules/devmgmt/oicmgr.html
index e0367214c..54e182298 100644
--- a/master/os/modules/devmgmt/oicmgr.html
+++ b/master/os/modules/devmgmt/oicmgr.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Using the OIC Framework &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Using the OIC Framework &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Newt Manager" href="newtmgr.html"/>
           <link rel="next" title="Customizing Newt Manager Usage with mgmt" href="customize_newtmgr.html"/>
           <link rel="prev" title="Newt Manager" href="newtmgr.html"/> 
@@ -346,7 +346,7 @@ <h1>Using the OIC Framework<a class="headerlink" href="#using-the-oic-framework"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/drivers/driver.html b/master/os/modules/drivers/driver.html
index baed72264..59b75cd51 100644
--- a/master/os/modules/drivers/driver.html
+++ b/master/os/modules/drivers/driver.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Drivers &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Drivers &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="flash" href="flash.html"/>
           <link rel="prev" title="Baselibc" href="../baselibc.html"/> 
@@ -473,7 +473,7 @@ <h2>Implemented drivers<a class="headerlink" href="#implemented-drivers" title="
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/drivers/flash.html b/master/os/modules/drivers/flash.html
index 01aaf168a..40c6d72bb 100644
--- a/master/os/modules/drivers/flash.html
+++ b/master/os/modules/drivers/flash.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>flash &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>flash &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Drivers" href="driver.html"/>
           <link rel="next" title="mmc" href="mmc.html"/>
           <link rel="prev" title="Drivers" href="driver.html"/> 
@@ -426,7 +426,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/drivers/mmc.html b/master/os/modules/drivers/mmc.html
index e46abd112..c8b8b2ee6 100644
--- a/master/os/modules/drivers/mmc.html
+++ b/master/os/modules/drivers/mmc.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>mmc &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>mmc &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Drivers" href="driver.html"/>
           <link rel="next" title="Newt Manager" href="../devmgmt/newtmgr.html"/>
           <link rel="prev" title="flash" href="flash.html"/> 
@@ -435,7 +435,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/elua/elua.html b/master/os/modules/elua/elua.html
index 7371ad1fa..ae70d883a 100644
--- a/master/os/modules/elua/elua.html
+++ b/master/os/modules/elua/elua.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>elua &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>elua &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -335,7 +335,7 @@ <h2>List of Functions<a class="headerlink" href="#list-of-functions" title="Perm
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/elua/lua_init.html b/master/os/modules/elua/lua_init.html
index bca5faff7..69ecfbea7 100644
--- a/master/os/modules/elua/lua_init.html
+++ b/master/os/modules/elua/lua_init.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>lua_init &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>lua_init &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -313,7 +313,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/elua/lua_main.html b/master/os/modules/elua/lua_main.html
index bf167b892..cbf9df6fa 100644
--- a/master/os/modules/elua/lua_main.html
+++ b/master/os/modules/elua/lua_main.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>lua_main &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>lua_main &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -325,7 +325,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb.html b/master/os/modules/fcb/fcb.html
index 121508b3c..43c8b7936 100644
--- a/master/os/modules/fcb/fcb.html
+++ b/master/os/modules/fcb/fcb.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Flash Circular Buffer (FCB) &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Flash Circular Buffer (FCB) &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Mynewt Sensor Framework Overview" href="../sensor_framework/sensor_framework.html"/>
           <link rel="prev" title="Adding a new file system" href="../fs/fs_add.html"/> 
@@ -787,7 +787,7 @@ <h2><a class="toc-backref" href="#id4">API</a><a class="headerlink" href="#api"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_append.html b/master/os/modules/fcb/fcb_append.html
index 25a9dbbec..1e56a0446 100644
--- a/master/os/modules/fcb/fcb_append.html
+++ b/master/os/modules/fcb/fcb_append.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_append &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_append &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -339,7 +339,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_append_finish.html b/master/os/modules/fcb/fcb_append_finish.html
index be84c939b..3a39ae08f 100644
--- a/master/os/modules/fcb/fcb_append_finish.html
+++ b/master/os/modules/fcb/fcb_append_finish.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_append_finish &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_append_finish &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -326,7 +326,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_append_to_scratch.html b/master/os/modules/fcb/fcb_append_to_scratch.html
index 01e3375e4..641344643 100644
--- a/master/os/modules/fcb/fcb_append_to_scratch.html
+++ b/master/os/modules/fcb/fcb_append_to_scratch.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_append_to_scratch &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_append_to_scratch &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -314,7 +314,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_clear.html b/master/os/modules/fcb/fcb_clear.html
index 066df19fd..710652199 100644
--- a/master/os/modules/fcb/fcb_clear.html
+++ b/master/os/modules/fcb/fcb_clear.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_clear &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_clear &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -312,7 +312,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_getnext.html b/master/os/modules/fcb/fcb_getnext.html
index dfaed3968..75f232242 100644
--- a/master/os/modules/fcb/fcb_getnext.html
+++ b/master/os/modules/fcb/fcb_getnext.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_getnext &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_getnext &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -322,7 +322,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_init.html b/master/os/modules/fcb/fcb_init.html
index 9bb6fbbab..b4212cd56 100644
--- a/master/os/modules/fcb/fcb_init.html
+++ b/master/os/modules/fcb/fcb_init.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_init &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_init &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -315,7 +315,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_is_empty.html b/master/os/modules/fcb/fcb_is_empty.html
index a842cf4dd..6d1dccda4 100644
--- a/master/os/modules/fcb/fcb_is_empty.html
+++ b/master/os/modules/fcb/fcb_is_empty.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_is_empty &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_is_empty &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -312,7 +312,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_offset_last_n.html b/master/os/modules/fcb/fcb_offset_last_n.html
index 8db4648f5..296eeb0e1 100644
--- a/master/os/modules/fcb/fcb_offset_last_n.html
+++ b/master/os/modules/fcb/fcb_offset_last_n.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_offset_last_n &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_offset_last_n &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -321,7 +321,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_rotate.html b/master/os/modules/fcb/fcb_rotate.html
index cffeca2f8..33b975a50 100644
--- a/master/os/modules/fcb/fcb_rotate.html
+++ b/master/os/modules/fcb/fcb_rotate.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_rotate &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_rotate &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -312,7 +312,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fcb/fcb_walk.html b/master/os/modules/fcb/fcb_walk.html
index 6a7bb7838..5b9e62d77 100644
--- a/master/os/modules/fcb/fcb_walk.html
+++ b/master/os/modules/fcb/fcb_walk.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>fcb_walk &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>fcb_walk &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -348,7 +348,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fs/fatfs.html b/master/os/modules/fs/fatfs.html
index 5e6a956a7..12373d44f 100644
--- a/master/os/modules/fs/fatfs.html
+++ b/master/os/modules/fs/fatfs.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>The FAT File System &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>The FAT File System &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="File System Abstraction" href="fs.html"/>
           <link rel="next" title="Other File Systems" href="otherfs.html"/>
           <link rel="prev" title="Newtron Flash Filesystem (nffs)" href="nffs.html"/> 
@@ -364,7 +364,7 @@ <h3>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fs/fs.html b/master/os/modules/fs/fs.html
index 20c054a94..9bdc9b8eb 100644
--- a/master/os/modules/fs/fs.html
+++ b/master/os/modules/fs/fs.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>File System Abstraction &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>File System Abstraction &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Newtron Flash Filesystem (nffs)" href="nffs.html"/>
           <link rel="prev" title="Validation and Error Messages" href="../sysinitconfig/sysconfig_error.html"/> 
@@ -794,7 +794,7 @@ <h2><a class="toc-backref" href="#id8">API</a><a class="headerlink" href="#api"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fs/fs_add.html b/master/os/modules/fs/fs_add.html
index 808ef0a11..55d2f4a9b 100644
--- a/master/os/modules/fs/fs_add.html
+++ b/master/os/modules/fs/fs_add.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Adding a new file system &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Adding a new file system &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="File System Abstraction" href="fs.html"/>
           <link rel="next" title="Flash Circular Buffer (FCB)" href="../fcb/fcb.html"/>
           <link rel="prev" title="Other File Systems" href="otherfs.html"/> 
@@ -483,7 +483,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fs/nffs.html b/master/os/modules/fs/nffs.html
index 19274fc47..b986db76a 100644
--- a/master/os/modules/fs/nffs.html
+++ b/master/os/modules/fs/nffs.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Newtron Flash Filesystem (nffs) &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Newtron Flash Filesystem (nffs) &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="File System Abstraction" href="fs.html"/>
           <link rel="next" title="The FAT File System" href="fatfs.html"/>
           <link rel="prev" title="File System Abstraction" href="fs.html"/> 
@@ -543,7 +543,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/fs/otherfs.html b/master/os/modules/fs/otherfs.html
index ecbc1a564..00e365694 100644
--- a/master/os/modules/fs/otherfs.html
+++ b/master/os/modules/fs/otherfs.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Other File Systems &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Other File Systems &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="File System Abstraction" href="fs.html"/>
           <link rel="next" title="Adding a new file system" href="fs_add.html"/>
           <link rel="prev" title="The FAT File System" href="fatfs.html"/> 
@@ -389,7 +389,7 @@ <h2>Header Files<a class="headerlink" href="#header-files" title="Permalink to t
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal.html b/master/os/modules/hal/hal.html
index 5b2e4ee7b..5a15df789 100644
--- a/master/os/modules/hal/hal.html
+++ b/master/os/modules/hal/hal.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Hardware Abstraction Layer &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Hardware Abstraction Layer &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Timer" href="hal_timer/hal_timer.html"/>
           <link rel="prev" title="Shell" href="../shell/shell.html"/> 
@@ -406,7 +406,7 @@ <h2>Platform Support<a class="headerlink" href="#platform-support" title="Permal
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_bsp/hal_bsp.html b/master/os/modules/hal/hal_bsp/hal_bsp.html
index c825db72e..37df4543c 100644
--- a/master/os/modules/hal/hal_bsp/hal_bsp.html
+++ b/master/os/modules/hal/hal_bsp/hal_bsp.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>BSP &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>BSP &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="Hardware Abstraction Layer" href="../hal.html"/>
           <link rel="next" title="Bootloader" href="../../bootloader/bootloader.html"/>
           <link rel="prev" title="Watchdog" href="../hal_watchdog/hal_watchdog.html"/> 
@@ -455,7 +455,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_creation.html b/master/os/modules/hal/hal_creation.html
index 8709e8181..62ff3931a 100644
--- a/master/os/modules/hal/hal_creation.html
+++ b/master/os/modules/hal/hal_creation.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Creating New HAL Interfaces &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Creating New HAL Interfaces &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -297,7 +297,7 @@ <h2>HAL API<a class="headerlink" href="#hal-api" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_flash/hal_flash.html b/master/os/modules/hal/hal_flash/hal_flash.html
index cb81e6235..44030b7f0 100644
--- a/master/os/modules/hal/hal_flash/hal_flash.html
+++ b/master/os/modules/hal/hal_flash/hal_flash.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Flash &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Flash &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="Hardware Abstraction Layer" href="../hal.html"/>
           <link rel="next" title="Watchdog" href="../hal_watchdog/hal_watchdog.html"/>
           <link rel="prev" title="I2C" href="../hal_i2c/hal_i2c.html"/> 
@@ -397,7 +397,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_flash/hal_flash_int.html b/master/os/modules/hal/hal_flash/hal_flash_int.html
index d6cf5c5b4..e4bd60ebf 100644
--- a/master/os/modules/hal/hal_flash/hal_flash_int.html
+++ b/master/os/modules/hal/hal_flash/hal_flash_int.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>hal_flash_int &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>hal_flash_int &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/> 
 
     
     <script src="../../../../_static/js/modernizr.min.js"></script>
@@ -306,7 +306,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_gpio/hal_gpio.html b/master/os/modules/hal/hal_gpio/hal_gpio.html
index 6cd8390f4..3c0c6b5a5 100644
--- a/master/os/modules/hal/hal_gpio/hal_gpio.html
+++ b/master/os/modules/hal/hal_gpio/hal_gpio.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>GPIO &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>GPIO &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="Hardware Abstraction Layer" href="../hal.html"/>
           <link rel="next" title="UART" href="../hal_uart/hal_uart.html"/>
           <link rel="prev" title="Timer" href="../hal_timer/hal_timer.html"/> 
@@ -621,7 +621,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_i2c/hal_i2c.html b/master/os/modules/hal/hal_i2c/hal_i2c.html
index 390f02d0c..a98574333 100644
--- a/master/os/modules/hal/hal_i2c/hal_i2c.html
+++ b/master/os/modules/hal/hal_i2c/hal_i2c.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>I2C &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>I2C &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="Hardware Abstraction Layer" href="../hal.html"/>
           <link rel="next" title="Flash" href="../hal_flash/hal_flash.html"/>
           <link rel="prev" title="SPI" href="../hal_spi/hal_spi.html"/> 
@@ -573,7 +573,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_in_libraries.html b/master/os/modules/hal/hal_in_libraries.html
index 1517d3494..cc70ede51 100644
--- a/master/os/modules/hal/hal_in_libraries.html
+++ b/master/os/modules/hal/hal_in_libraries.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Using HAL in Your Libraries &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Using HAL in Your Libraries &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -286,7 +286,7 @@ <h1>Using HAL in Your Libraries<a class="headerlink" href="#using-hal-in-your-li
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_os_tick/hal_os_tick.html b/master/os/modules/hal/hal_os_tick/hal_os_tick.html
index 9be04fac2..4dcaedaf2 100644
--- a/master/os/modules/hal/hal_os_tick/hal_os_tick.html
+++ b/master/os/modules/hal/hal_os_tick/hal_os_tick.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>OS Tick &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>OS Tick &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/> 
 
     
     <script src="../../../../_static/js/modernizr.min.js"></script>
@@ -329,7 +329,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_spi/hal_spi.html b/master/os/modules/hal/hal_spi/hal_spi.html
index ee0b01282..bb6f8d124 100644
--- a/master/os/modules/hal/hal_spi/hal_spi.html
+++ b/master/os/modules/hal/hal_spi/hal_spi.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>SPI &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>SPI &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="Hardware Abstraction Layer" href="../hal.html"/>
           <link rel="next" title="I2C" href="../hal_i2c/hal_i2c.html"/>
           <link rel="prev" title="UART" href="../hal_uart/hal_uart.html"/> 
@@ -692,7 +692,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_system/hal_sys.html b/master/os/modules/hal/hal_system/hal_sys.html
index 2f5ca6fb0..e065db0bf 100644
--- a/master/os/modules/hal/hal_system/hal_sys.html
+++ b/master/os/modules/hal/hal_system/hal_sys.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>System &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>System &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/> 
 
     
     <script src="../../../../_static/js/modernizr.min.js"></script>
@@ -387,7 +387,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_timer/hal_timer.html b/master/os/modules/hal/hal_timer/hal_timer.html
index 6609495c2..56a8f264d 100644
--- a/master/os/modules/hal/hal_timer/hal_timer.html
+++ b/master/os/modules/hal/hal_timer/hal_timer.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Timer &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Timer &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="Hardware Abstraction Layer" href="../hal.html"/>
           <link rel="next" title="GPIO" href="../hal_gpio/hal_gpio.html"/>
           <link rel="prev" title="Hardware Abstraction Layer" href="../hal.html"/> 
@@ -555,7 +555,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_uart/hal_uart.html b/master/os/modules/hal/hal_uart/hal_uart.html
index c6b2c28ab..51e9f1dac 100644
--- a/master/os/modules/hal/hal_uart/hal_uart.html
+++ b/master/os/modules/hal/hal_uart/hal_uart.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>UART &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>UART &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="Hardware Abstraction Layer" href="../hal.html"/>
           <link rel="next" title="SPI" href="../hal_spi/hal_spi.html"/>
           <link rel="prev" title="GPIO" href="../hal_gpio/hal_gpio.html"/> 
@@ -520,7 +520,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/hal/hal_watchdog/hal_watchdog.html b/master/os/modules/hal/hal_watchdog/hal_watchdog.html
index 44e1a6c94..e4c7b6074 100644
--- a/master/os/modules/hal/hal_watchdog/hal_watchdog.html
+++ b/master/os/modules/hal/hal_watchdog/hal_watchdog.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Watchdog &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Watchdog &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="Hardware Abstraction Layer" href="../hal.html"/>
           <link rel="next" title="BSP" href="../hal_bsp/hal_bsp.html"/>
           <link rel="prev" title="Flash" href="../hal_flash/hal_flash.html"/> 
@@ -369,7 +369,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/imgmgr/imgmgr.html b/master/os/modules/imgmgr/imgmgr.html
index 2ef74386e..8c400dc30 100644
--- a/master/os/modules/imgmgr/imgmgr.html
+++ b/master/os/modules/imgmgr/imgmgr.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Image Manager &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Image Manager &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="imgmgr_module_init" href="imgmgr_module_init.html"/>
           <link rel="prev" title="Customizing Newt Manager Usage with mgmt" href="../devmgmt/customize_newtmgr.html"/> 
@@ -391,7 +391,7 @@ <h2>List of Functions<a class="headerlink" href="#list-of-functions" title="Perm
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/imgmgr/imgmgr_module_init.html b/master/os/modules/imgmgr/imgmgr_module_init.html
index 824614144..88e77691d 100644
--- a/master/os/modules/imgmgr/imgmgr_module_init.html
+++ b/master/os/modules/imgmgr/imgmgr_module_init.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>imgmgr_module_init &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>imgmgr_module_init &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Image Manager" href="imgmgr.html"/>
           <link rel="next" title="imgr_ver_parse" href="imgr_ver_parse.html"/>
           <link rel="prev" title="Image Manager" href="imgmgr.html"/> 
@@ -336,7 +336,7 @@ <h2>Notes<a class="headerlink" href="#notes" title="Permalink to this headline">
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/imgmgr/imgr_ver_parse.html b/master/os/modules/imgmgr/imgr_ver_parse.html
index 2a336cc9f..71dd84346 100644
--- a/master/os/modules/imgmgr/imgr_ver_parse.html
+++ b/master/os/modules/imgmgr/imgr_ver_parse.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>imgr_ver_parse &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>imgr_ver_parse &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Image Manager" href="imgmgr.html"/>
           <link rel="next" title="imgr_ver_str" href="imgr_ver_str.html"/>
           <link rel="prev" title="imgmgr_module_init" href="imgmgr_module_init.html"/> 
@@ -376,7 +376,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/imgmgr/imgr_ver_str.html b/master/os/modules/imgmgr/imgr_ver_str.html
index f67d5c042..052ea2a8c 100644
--- a/master/os/modules/imgmgr/imgr_ver_str.html
+++ b/master/os/modules/imgmgr/imgr_ver_str.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>imgr_ver_str &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>imgr_ver_str &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Image Manager" href="imgmgr.html"/>
           <link rel="next" title="Compile-Time Configuration and Initialization" href="../sysinitconfig/sysinitconfig.html"/>
           <link rel="prev" title="imgr_ver_parse" href="imgr_ver_parse.html"/> 
@@ -374,7 +374,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/json/json.html b/master/os/modules/json/json.html
index 11c73f83e..f5647424d 100644
--- a/master/os/modules/json/json.html
+++ b/master/os/modules/json/json.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>JSON &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>JSON &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="BLE User Guide" href="../../../network/docs/index.html"/>
           <link rel="prev" title="testutil" href="../testutil/testutil.html"/> 
@@ -1238,7 +1238,7 @@ <h2><a class="toc-backref" href="#id5">API</a><a class="headerlink" href="#api"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/logs/logs.html b/master/os/modules/logs/logs.html
index 9be9b2276..b24a733e3 100644
--- a/master/os/modules/logs/logs.html
+++ b/master/os/modules/logs/logs.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Logging &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Logging &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="System Modules" href="../system_modules.html"/>
           <link rel="next" title="Statistics Module" href="../stats/stats.html"/>
           <link rel="prev" title="Config" href="../config/config.html"/> 
@@ -1286,7 +1286,7 @@ <h3><a class="toc-backref" href="#id7">Log API and Log Levels</a><a class="heade
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_api.html b/master/os/modules/sensor_framework/sensor_api.html
index 06aa23c2e..0662e3442 100644
--- a/master/os/modules/sensor_framework/sensor_api.html
+++ b/master/os/modules/sensor_framework/sensor_api.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sensor API &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sensor API &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/>
           <link rel="next" title="Sensor Manager API" href="sensor_mgr_api.html"/>
           <link rel="prev" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/> 
@@ -1431,7 +1431,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_create.html b/master/os/modules/sensor_framework/sensor_create.html
index 643d29129..56504e08c 100644
--- a/master/os/modules/sensor_framework/sensor_create.html
+++ b/master/os/modules/sensor_framework/sensor_create.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Creating and Configuring a Sensor Device &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Creating and Configuring a Sensor Device &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/>
           <link rel="next" title="testutil" href="../testutil/testutil.html"/>
           <link rel="prev" title="Sensor Device Driver" href="sensor_driver.html"/> 
@@ -535,7 +535,7 @@ <h2>Reconfiguring A Sensor Device by an Application<a class="headerlink" href="#
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_driver.html b/master/os/modules/sensor_framework/sensor_driver.html
index f18a874ed..6a2ce2ed8 100644
--- a/master/os/modules/sensor_framework/sensor_driver.html
+++ b/master/os/modules/sensor_framework/sensor_driver.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sensor Device Driver &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sensor Device Driver &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/>
           <link rel="next" title="Creating and Configuring a Sensor Device" href="sensor_create.html"/>
           <link rel="prev" title="Sensor Shell Command" href="sensor_shell.html"/> 
@@ -746,7 +746,7 @@ <h2>Defining Stats<a class="headerlink" href="#defining-stats" title="Permalink
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_framework.html b/master/os/modules/sensor_framework/sensor_framework.html
index 5cea699ca..c57a6f076 100644
--- a/master/os/modules/sensor_framework/sensor_framework.html
+++ b/master/os/modules/sensor_framework/sensor_framework.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Mynewt Sensor Framework Overview &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Mynewt Sensor Framework Overview &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Sensor API" href="sensor_api.html"/>
           <link rel="prev" title="Flash Circular Buffer (FCB)" href="../fcb/fcb.html"/> 
@@ -407,7 +407,7 @@ <h2>Overview of Sensor Support Packages<a class="headerlink" href="#overview-of-
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_listener_api.html b/master/os/modules/sensor_framework/sensor_listener_api.html
index 2a8649607..cbcf50617 100644
--- a/master/os/modules/sensor_framework/sensor_listener_api.html
+++ b/master/os/modules/sensor_framework/sensor_listener_api.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sensor Listener API &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sensor Listener API &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/>
           <link rel="next" title="Sensor Notifier API" href="sensor_notifier_api.html"/>
           <link rel="prev" title="Sensor Manager API" href="sensor_mgr_api.html"/> 
@@ -438,7 +438,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_mgr_api.html b/master/os/modules/sensor_framework/sensor_mgr_api.html
index 2c926ad67..1303a5560 100644
--- a/master/os/modules/sensor_framework/sensor_mgr_api.html
+++ b/master/os/modules/sensor_framework/sensor_mgr_api.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sensor Manager API &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sensor Manager API &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/>
           <link rel="next" title="Sensor Listener API" href="sensor_listener_api.html"/>
           <link rel="prev" title="Sensor API" href="sensor_api.html"/> 
@@ -743,7 +743,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_notifier_api.html b/master/os/modules/sensor_framework/sensor_notifier_api.html
index b0ffdf34d..d654d973a 100644
--- a/master/os/modules/sensor_framework/sensor_notifier_api.html
+++ b/master/os/modules/sensor_framework/sensor_notifier_api.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sensor Notifier API &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sensor Notifier API &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/>
           <link rel="next" title="OIC Sensor Support" href="sensor_oic.html"/>
           <link rel="prev" title="Sensor Listener API" href="sensor_listener_api.html"/> 
@@ -359,7 +359,7 @@ <h1>Sensor Notifier API<a class="headerlink" href="#sensor-notifier-api" title="
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_oic.html b/master/os/modules/sensor_framework/sensor_oic.html
index b81340c29..53ae5b99b 100644
--- a/master/os/modules/sensor_framework/sensor_oic.html
+++ b/master/os/modules/sensor_framework/sensor_oic.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>OIC Sensor Support &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>OIC Sensor Support &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/>
           <link rel="next" title="Sensor Shell Command" href="sensor_shell.html"/>
           <link rel="prev" title="Sensor Notifier API" href="sensor_notifier_api.html"/> 
@@ -354,7 +354,7 @@ <h1>OIC Sensor Support<a class="headerlink" href="#oic-sensor-support" title="Pe
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sensor_framework/sensor_shell.html b/master/os/modules/sensor_framework/sensor_shell.html
index 9618bf8a9..b46e1d8a0 100644
--- a/master/os/modules/sensor_framework/sensor_shell.html
+++ b/master/os/modules/sensor_framework/sensor_shell.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sensor Shell Command &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sensor Shell Command &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html"/>
           <link rel="next" title="Sensor Device Driver" href="sensor_driver.html"/>
           <link rel="prev" title="OIC Sensor Support" href="sensor_oic.html"/> 
@@ -331,7 +331,7 @@ <h1>Sensor Shell Command<a class="headerlink" href="#sensor-shell-command" title
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/shell/shell.html b/master/os/modules/shell/shell.html
index f6fbd58f6..44086a473 100644
--- a/master/os/modules/shell/shell.html
+++ b/master/os/modules/shell/shell.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Shell &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Shell &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="System Modules" href="../system_modules.html"/>
           <link rel="next" title="Hardware Abstraction Layer" href="../hal/hal.html"/>
           <link rel="prev" title="Console" href="../console/console.html"/> 
@@ -869,7 +869,7 @@ <h2><a class="toc-backref" href="#id5">API</a><a class="headerlink" href="#api"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/split/split.html b/master/os/modules/split/split.html
index 6a1a10518..2838cc3ac 100644
--- a/master/os/modules/split/split.html
+++ b/master/os/modules/split/split.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Split Images &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Split Images &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Porting Mynewt OS" href="../../core_os/porting/port_os.html"/>
           <link rel="prev" title="Bootloader" href="../bootloader/bootloader.html"/> 
@@ -350,8 +350,8 @@ <h3>Boot Sequence - Split<a class="headerlink" href="#boot-sequence-split" title
 </div>
 <div class="section" id="tutorial">
 <h2>Tutorial<a class="headerlink" href="#tutorial" title="Permalink to this headline">¶</a></h2>
-<p>We will be referring to the nRF51dk for examples in this document. Let’s
-take a look at this board’s flash map (defined in
+<p>We will be referring to the Nordic PCA10028 (nRF51 DK) for examples in
+this document. Let’s take a look at this board’s flash map (defined in
 <code class="docutils literal notranslate"><span class="pre">hw/bsp/nrf51dk/bsp.yml</span></code>):</p>
 <table border="1" class="docutils">
 <colgroup>
@@ -398,7 +398,7 @@ <h2>Tutorial<a class="headerlink" href="#tutorial" title="Permalink to this head
 <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>newt target create bleprph-nrf51dk
 newt target set bleprph-nrf51dk                     \
     app=@apache-mynewt-core/apps/bleprph            \
-    bsp=@apache-mynewt-core/hw/bsp/nrf51dk          \
+    bsp=@apache-mynewt-core/hw/bsp/nordic_pca10028  \
     build_profile=optimized                         \
     syscfg=BLE_LL_CFG_FEAT_LE_ENCRYPTION=0:BLE_SM_LEGACY=0
 </pre></div>
@@ -409,7 +409,7 @@ <h2>Tutorial<a class="headerlink" href="#tutorial" title="Permalink to this head
 <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[~/tmp/myproj2]$ newt target show bleprph-nrf51dk
 targets/bleprph-nrf51dk
     app=@apache-mynewt-core/apps/bleprph
-    bsp=@apache-mynewt-core/hw/bsp/nrf51dk
+    bsp=@apache-mynewt-core/hw/bsp/nordic_pca10028
     build_profile=optimized
     syscfg=BLE_LL_CFG_FEAT_LE_ENCRYPTION=0:BLE_SM_LEGACY=0
 </pre></div>
@@ -472,7 +472,7 @@ <h2>Tutorial<a class="headerlink" href="#tutorial" title="Permalink to this head
 newt target set split-nrf51dk                       \
     loader=@apache-mynewt-core/apps/bleprph         \
     app=@apache-mynewt-core/apps/splitty            \
-    bsp=@apache-mynewt-core/hw/bsp/nrf51dk          \
+    bsp=@apache-mynewt-core/hw/bsp/nordic_pca10028  \
     build_profile=optimized                         \
     syscfg=BLE_LL_CFG_FEAT_LE_ENCRYPTION=0:BLE_SM_LEGACY=0
 </pre></div>
@@ -481,7 +481,7 @@ <h2>Tutorial<a class="headerlink" href="#tutorial" title="Permalink to this head
 <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[~/tmp/myproj2]$ newt target show split-nrf51dk
 targets/split-nrf51dk
     app=@apache-mynewt-core/apps/splitty
-    bsp=@apache-mynewt-core/hw/bsp/nrf51dk
+    bsp=@apache-mynewt-core/hw/bsp/nordic_pca10028
     build_profile=optimized
     loader=@apache-mynewt-core/apps/bleprph
     syscfg=BLE_LL_CFG_FEAT_LE_ENCRYPTION=0:BLE_SM_LEGACY=0
@@ -540,8 +540,8 @@ <h2>Tutorial<a class="headerlink" href="#tutorial" title="Permalink to this head
 application at any time. For example, if your application needs
 bluetooth functionality, it can use the BLE stack present in the loader
 instead of containing its own copy.</p>
-<p>Finally, let’s deploy the split image to our nRF51dk board. The
-procedure here is the same as if we were using the Unified setup, i.e.,
+<p>Finally, let’s deploy the split image to our Nordic PCA10028 (nRF51 DK) board.
+The procedure here is the same as if we were using the Unified setup, i.e.,
 via either the <code class="docutils literal notranslate"><span class="pre">newt</span> <span class="pre">load</span></code> or <code class="docutils literal notranslate"><span class="pre">newt</span> <span class="pre">run</span></code> command.</p>
 <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[~/repos/mynewt/core]$ newt load split-nrf51dk 0
 Loading app image into slot 2
@@ -777,7 +777,7 @@ <h2>Theory of Operation<a class="headerlink" href="#theory-of-operation" title="
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/stats/stats.html b/master/os/modules/stats/stats.html
index bb8a64550..401e7f2a0 100644
--- a/master/os/modules/stats/stats.html
+++ b/master/os/modules/stats/stats.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Statistics Module &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Statistics Module &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="System Modules" href="../system_modules.html"/>
           <link rel="next" title="Console" href="../console/console.html"/>
           <link rel="prev" title="Logging" href="../logs/logs.html"/> 
@@ -827,7 +827,7 @@ <h2><a class="toc-backref" href="#id13">API</a><a class="headerlink" href="#api"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sysinitconfig/sysconfig_error.html b/master/os/modules/sysinitconfig/sysconfig_error.html
index b511b111d..a2e854bc3 100644
--- a/master/os/modules/sysinitconfig/sysconfig_error.html
+++ b/master/os/modules/sysinitconfig/sysconfig_error.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Validation and Error Messages &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Validation and Error Messages &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Compile-Time Configuration and Initialization" href="sysinitconfig.html"/>
           <link rel="next" title="File System Abstraction" href="../fs/fs.html"/>
           <link rel="prev" title="Compile-Time Configuration and Initialization" href="sysinitconfig.html"/> 
@@ -757,7 +757,7 @@ <h3><a class="toc-backref" href="#id16">BSP Package Overrides Undefined Configur
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/sysinitconfig/sysinitconfig.html b/master/os/modules/sysinitconfig/sysinitconfig.html
index c22ad2219..f875bf797 100644
--- a/master/os/modules/sysinitconfig/sysinitconfig.html
+++ b/master/os/modules/sysinitconfig/sysinitconfig.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Compile-Time Configuration and Initialization &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Compile-Time Configuration and Initialization &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Validation and Error Messages" href="sysconfig_error.html"/>
           <link rel="prev" title="imgr_ver_str" href="../imgmgr/imgr_ver_str.html"/> 
@@ -970,7 +970,7 @@ <h2><a class="toc-backref" href="#id16">Conditional Configurations</a><a class="
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/system_modules.html b/master/os/modules/system_modules.html
index 47a80863a..762e5d7fd 100644
--- a/master/os/modules/system_modules.html
+++ b/master/os/modules/system_modules.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>System Modules &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>System Modules &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="OS User Guide" href="../os_user_guide.html"/>
           <link rel="next" title="Config" href="config/config.html"/>
           <link rel="prev" title="Sanity" href="../core_os/sanity/sanity.html"/> 
@@ -324,7 +324,7 @@ <h1>System Modules<a class="headerlink" href="#system-modules" title="Permalink
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/modules/testutil/testutil.html b/master/os/modules/testutil/testutil.html
index c866bb5f3..1c2b36c09 100644
--- a/master/os/modules/testutil/testutil.html
+++ b/master/os/modules/testutil/testutil.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>testutil &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>testutil &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="JSON" href="../json/json.html"/>
           <link rel="prev" title="Creating and Configuring a Sensor Device" href="../sensor_framework/sensor_create.html"/> 
@@ -773,7 +773,7 @@ <h2><a class="toc-backref" href="#id4">API</a><a class="headerlink" href="#api"
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/os_user_guide.html b/master/os/os_user_guide.html
index b3432c779..3ac401673 100644
--- a/master/os/os_user_guide.html
+++ b/master/os/os_user_guide.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>OS User Guide &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>OS User Guide &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="next" title="Apache Mynewt Operating System Kernel" href="core_os/mynewt_os.html"/>
           <link rel="prev" title="Enable Wi-Fi on Arduino MKR1000" href="../tutorials/other/wi-fi_on_arduino.html"/> 
 
@@ -322,7 +322,7 @@ <h1>OS User Guide<a class="headerlink" href="#os-user-guide" title="Permalink to
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/tutorials/STM32F303.html b/master/os/tutorials/STM32F303.html
index df72637dd..a903da5b8 100644
--- a/master/os/tutorials/STM32F303.html
+++ b/master/os/tutorials/STM32F303.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Blinky, your “Hello World!”, on STM32F303 Discovery &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Blinky, your “Hello World!”, on STM32F303 Discovery &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/> 
 
     
     <script src="../../_static/js/modernizr.min.js"></script>
@@ -472,7 +472,7 @@ <h2>Want more?<a class="headerlink" href="#want-more" title="Permalink to this h
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/os/tutorials/pin-wheel-mods.html b/master/os/tutorials/pin-wheel-mods.html
index ab5a78231..d28fcadd4 100644
--- a/master/os/tutorials/pin-wheel-mods.html
+++ b/master/os/tutorials/pin-wheel-mods.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Pin Wheel Modifications to “Blinky” on STM32F3 Discovery &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Pin Wheel Modifications to “Blinky” on STM32F3 Discovery &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/> 
 
     
     <script src="../../_static/js/modernizr.min.js"></script>
@@ -359,7 +359,7 @@ <h2>Watch the LEDs go round and round<a class="headerlink" href="#watch-the-leds
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/search.html b/master/search.html
index 21edf1485..79e4dc733 100644
--- a/master/search.html
+++ b/master/search.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Search &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Search &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="genindex.html"/>
           <link rel="search" title="Search" href="#"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="index.html"/> 
+      <link rel="top" title="Apache Mynewt latest documentation" href="index.html"/> 
 
     
     <script src="_static/js/modernizr.min.js"></script>
@@ -284,7 +284,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.4.1, Apache NimBLE 1.0
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'./',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/searchindex.js b/master/searchindex.js
index a4fe651eb..e029f45bf 100644
--- a/master/searchindex.js
+++ b/master/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["_static/common","concepts","get_started/docker","get_started/index","get_started/native_install/cross_tools","get_started/native_install/index","get_started/native_install/native_tools","get_started/project_create","get_started/serial_access","index","misc/go_env","misc/ide","misc/index","mynewt_faq/admin_faq","mynewt_faq/bluetooth_faq","mynewt_faq/boot_faq","mynewt_faq/fs_faq","mynewt_faq/hardware_faq","mynewt_faq/index","mynewt_faq/modules_faq","mynewt_faq/newt_faq","mynewt_faq/newtmgr_faq","mynewt_faq/nfc_faq","mynewt_faq/port_faq","mynewt_faq/syntax_faq","mynewt_faq/troubleshoot_faq","network/docs/README","network/docs/ble_hs/ble_att","network/docs/ble_hs/ble_gap","network/docs/ble_hs/ble_gattc","network/docs/ble_hs/ble_gatts","network/docs/ble_hs/ble_hs","network/docs/ble_hs/ble_hs_id","network/docs/ble_hs/ble_hs_return_codes","network/docs/ble_sec","network/docs/ble_setup/ble_addr","network/docs/ble_setup/ble_lp_clock","network/docs/ble_setup/ble_setup_intro","network/docs/ble_setup/ble_sync_cb","network/docs/btshell/btshell_GAP","network/docs/btshell/btshell_GATT","network/docs/btshell/btshell_advdata","network/docs/btshell/btshell_api","network/docs/index","network/docs/mesh/index","network/docs/mesh/sample","newt/README","newt/command_list/newt_build","newt/command_list/newt_clean","newt/command_list/newt_complete","newt/command_list/newt_create_image","newt/command_list/newt_debug","newt/command_list/newt_help","newt/command_list/newt_info","newt/command_list/newt_install","newt/command_list/newt_load","newt/command_list/newt_mfg","newt/command_list/newt_new","newt/command_list/newt_pkg","newt/command_list/newt_resign_image","newt/command_list/newt_run","newt/command_list/newt_size","newt/command_list/newt_sync","newt/command_list/newt_target","newt/command_list/newt_test","newt/command_list/newt_upgrade","newt/command_list/newt_vals","newt/command_list/newt_version","newt/index","newt/install/index","newt/install/newt_linux","newt/install/newt_mac","newt/install/newt_windows","newt/install/prev_releases","newt/newt_operation","newt/newt_ops","newtmgr/README","newtmgr/command_list/index","newtmgr/command_list/newtmgr_config","newtmgr/command_list/newtmgr_conn","newtmgr/command_list/newtmgr_crash","newtmgr/command_list/newtmgr_datetime","newtmgr/command_list/newtmgr_echo","newtmgr/command_list/newtmgr_fs","newtmgr/command_list/newtmgr_image","newtmgr/command_list/newtmgr_logs","newtmgr/command_list/newtmgr_mpstats","newtmgr/command_list/newtmgr_reset","newtmgr/command_list/newtmgr_run","newtmgr/command_list/newtmgr_stat","newtmgr/command_list/newtmgr_taskstats","newtmgr/index","newtmgr/install/index","newtmgr/install/install_linux","newtmgr/install/install_mac","newtmgr/install/install_windows","newtmgr/install/prev_releases","os/core_os/callout/callout","os/core_os/context_switch/context_switch","os/core_os/cputime/os_cputime","os/core_os/event_queue/event_queue","os/core_os/heap/heap","os/core_os/mbuf/mbuf","os/core_os/memory_pool/memory_pool","os/core_os/mutex/mutex","os/core_os/mynewt_os","os/core_os/porting/port_bsp","os/core_os/porting/port_cpu","os/core_os/porting/port_mcu","os/core_os/porting/port_os","os/core_os/sanity/sanity","os/core_os/semaphore/semaphore","os/core_os/task/task","os/core_os/time/os_time","os/modules/baselibc","os/modules/bootloader/bootloader","os/modules/config/config","os/modules/console/console","os/modules/devmgmt/customize_newtmgr","os/modules/devmgmt/newtmgr","os/modules/devmgmt/oicmgr","os/modules/drivers/driver","os/modules/drivers/flash","os/modules/drivers/mmc","os/modules/elua/elua","os/modules/elua/lua_init","os/modules/elua/lua_main","os/modules/fcb/fcb","os/modules/fcb/fcb_append","os/modules/fcb/fcb_append_finish","os/modules/fcb/fcb_append_to_scratch","os/modules/fcb/fcb_clear","os/modules/fcb/fcb_getnext","os/modules/fcb/fcb_init","os/modules/fcb/fcb_is_empty","os/modules/fcb/fcb_offset_last_n","os/modules/fcb/fcb_rotate","os/modules/fcb/fcb_walk","os/modules/fs/fatfs","os/modules/fs/fs","os/modules/fs/fs_add","os/modules/fs/nffs","os/modules/fs/otherfs","os/modules/hal/hal","os/modules/hal/hal_bsp/hal_bsp","os/modules/hal/hal_creation","os/modules/hal/hal_flash/hal_flash","os/modules/hal/hal_flash/hal_flash_int","os/modules/hal/hal_gpio/hal_gpio","os/modules/hal/hal_i2c/hal_i2c","os/modules/hal/hal_in_libraries","os/modules/hal/hal_os_tick/hal_os_tick","os/modules/hal/hal_spi/hal_spi","os/modules/hal/hal_system/hal_sys","os/modules/hal/hal_timer/hal_timer","os/modules/hal/hal_uart/hal_uart","os/modules/hal/hal_watchdog/hal_watchdog","os/modules/imgmgr/imgmgr","os/modules/imgmgr/imgmgr_module_init","os/modules/imgmgr/imgr_ver_parse","os/modules/imgmgr/imgr_ver_str","os/modules/json/json","os/modules/logs/logs","os/modules/sensor_framework/sensor_api","os/modules/sensor_framework/sensor_create","os/modules/sensor_framework/sensor_driver","os/modules/sensor_framework/sensor_framework","os/modules/sensor_framework/sensor_listener_api","os/modules/sensor_framework/sensor_mgr_api","os/modules/sensor_framework/sensor_notifier_api","os/modules/sensor_framework/sensor_oic","os/modules/sensor_framework/sensor_shell","os/modules/shell/shell","os/modules/split/split","os/modules/stats/stats","os/modules/sysinitconfig/sysconfig_error","os/modules/sysinitconfig/sysinitconfig","os/modules/system_modules","os/modules/testutil/testutil","os/os_user_guide","os/tutorials/STM32F303","os/tutorials/pin-wheel-mods","tutorials/ble/ble","tutorials/ble/ble_bare_bones","tutorials/ble/blehci_project","tutorials/ble/bleprph/bleprph","tutorials/ble/bleprph/bleprph-sections/bleprph-adv","tutorials/ble/bleprph/bleprph-sections/bleprph-app","tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access","tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event","tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg","tutorials/ble/eddystone","tutorials/ble/ibeacon","tutorials/blinky/arduino_zero","tutorials/blinky/blinky","tutorials/blinky/blinky_console","tutorials/blinky/blinky_primo","tutorials/blinky/blinky_stm32f4disc","tutorials/blinky/nRF52","tutorials/blinky/olimex","tutorials/blinky/rbnano2","tutorials/devmgmt/add_newtmgr","tutorials/devmgmt/devmgmt","tutorials/devmgmt/ota_upgrade_nrf52","tutorials/lora/lorawanapp","tutorials/os_fundamentals/event_queue","tutorials/os_fundamentals/os_fundamentals","tutorials/os_fundamentals/tasks_lesson","tutorials/other/codesize","tutorials/other/other","tutorials/other/unit_test","tutorials/other/wi-fi_on_arduino","tutorials/repo/add_repos","tutorials/repo/create_repo","tutorials/repo/private_repo","tutorials/repo/upgrade_repo","tutorials/sensors/air_quality","tutorials/sensors/air_quality_ble","tutorials/sensors/air_quality_sensor","tutorials/sensors/nrf52_adc","tutorials/sensors/sensor_bleprph_oic","tutorials/sensors/sensor_nrf52_bno055","tutorials/sensors/sensor_nrf52_bno055_oic","tutorials/sensors/sensor_nrf52_drv2605","tutorials/sensors/sensor_offboard_config","tutorials/sensors/sensor_oic_overview","tutorials/sensors/sensor_thingy_lis2dh12_onb","tutorials/sensors/sensors","tutorials/sensors/sensors_framework","tutorials/slinky/project-nrf52-slinky","tutorials/slinky/project-sim-slinky","tutorials/slinky/project-slinky","tutorials/slinky/project-stm32-slinky","tutorials/tooling/segger_rtt","tutorials/tooling/segger_sysview","tutorials/tooling/tooling","tutorials/tutorials"],envversion:52,filenames:["_static/common.rst","concepts.rst","get_started/docker.rst","get_started/index.rst","get_started/native_install/cross_tools.rst","get_started/native_install/index.rst","get_started/native_install/native_tools.rst","get_started/project_create.rst","get_started/serial_access.rst","index.rst","misc/go_env.rst","misc/ide.rst","misc/index.rst","mynewt_faq/admin_faq.rst","mynewt_faq/bluetooth_faq.rst","mynewt_faq/boot_faq.rst","mynewt_faq/fs_faq.rst","mynewt_faq/hardware_faq.rst","mynewt_faq/index.rst","mynewt_faq/modules_faq.rst","mynewt_faq/newt_faq.rst","mynewt_faq/newtmgr_faq.rst","mynewt_faq/nfc_faq.rst","mynewt_faq/port_faq.rst","mynewt_faq/syntax_faq.rst","mynewt_faq/troubleshoot_faq.rst","network/docs/README.rst","network/docs/ble_hs/ble_att.rst","network/docs/ble_hs/ble_gap.rst","network/docs/ble_hs/ble_gattc.rst","network/docs/ble_hs/ble_gatts.rst","network/docs/ble_hs/ble_hs.rst","network/docs/ble_hs/ble_hs_id.rst","network/docs/ble_hs/ble_hs_return_codes.rst","network/docs/ble_sec.rst","network/docs/ble_setup/ble_addr.rst","network/docs/ble_setup/ble_lp_clock.rst","network/docs/ble_setup/ble_setup_intro.rst","network/docs/ble_setup/ble_sync_cb.rst","network/docs/btshell/btshell_GAP.rst","network/docs/btshell/btshell_GATT.rst","network/docs/btshell/btshell_advdata.rst","network/docs/btshell/btshell_api.rst","network/docs/index.rst","network/docs/mesh/index.rst","network/docs/mesh/sample.rst","newt/README.rst","newt/command_list/newt_build.rst","newt/command_list/newt_clean.rst","newt/command_list/newt_complete.rst","newt/command_list/newt_create_image.rst","newt/command_list/newt_debug.rst","newt/command_list/newt_help.rst","newt/command_list/newt_info.rst","newt/command_list/newt_install.rst","newt/command_list/newt_load.rst","newt/command_list/newt_mfg.rst","newt/command_list/newt_new.rst","newt/command_list/newt_pkg.rst","newt/command_list/newt_resign_image.rst","newt/command_list/newt_run.rst","newt/command_list/newt_size.rst","newt/command_list/newt_sync.rst","newt/command_list/newt_target.rst","newt/command_list/newt_test.rst","newt/command_list/newt_upgrade.rst","newt/command_list/newt_vals.rst","newt/command_list/newt_version.rst","newt/index.rst","newt/install/index.rst","newt/install/newt_linux.rst","newt/install/newt_mac.rst","newt/install/newt_windows.rst","newt/install/prev_releases.rst","newt/newt_operation.rst","newt/newt_ops.rst","newtmgr/README.rst","newtmgr/command_list/index.rst","newtmgr/command_list/newtmgr_config.rst","newtmgr/command_list/newtmgr_conn.rst","newtmgr/command_list/newtmgr_crash.rst","newtmgr/command_list/newtmgr_datetime.rst","newtmgr/command_list/newtmgr_echo.rst","newtmgr/command_list/newtmgr_fs.rst","newtmgr/command_list/newtmgr_image.rst","newtmgr/command_list/newtmgr_logs.rst","newtmgr/command_list/newtmgr_mpstats.rst","newtmgr/command_list/newtmgr_reset.rst","newtmgr/command_list/newtmgr_run.rst","newtmgr/command_list/newtmgr_stat.rst","newtmgr/command_list/newtmgr_taskstats.rst","newtmgr/index.rst","newtmgr/install/index.rst","newtmgr/install/install_linux.rst","newtmgr/install/install_mac.rst","newtmgr/install/install_windows.rst","newtmgr/install/prev_releases.rst","os/core_os/callout/callout.rst","os/core_os/context_switch/context_switch.rst","os/core_os/cputime/os_cputime.rst","os/core_os/event_queue/event_queue.rst","os/core_os/heap/heap.rst","os/core_os/mbuf/mbuf.rst","os/core_os/memory_pool/memory_pool.rst","os/core_os/mutex/mutex.rst","os/core_os/mynewt_os.rst","os/core_os/porting/port_bsp.rst","os/core_os/porting/port_cpu.rst","os/core_os/porting/port_mcu.rst","os/core_os/porting/port_os.rst","os/core_os/sanity/sanity.rst","os/core_os/semaphore/semaphore.rst","os/core_os/task/task.rst","os/core_os/time/os_time.rst","os/modules/baselibc.rst","os/modules/bootloader/bootloader.rst","os/modules/config/config.rst","os/modules/console/console.rst","os/modules/devmgmt/customize_newtmgr.rst","os/modules/devmgmt/newtmgr.rst","os/modules/devmgmt/oicmgr.rst","os/modules/drivers/driver.rst","os/modules/drivers/flash.rst","os/modules/drivers/mmc.rst","os/modules/elua/elua.rst","os/modules/elua/lua_init.rst","os/modules/elua/lua_main.rst","os/modules/fcb/fcb.rst","os/modules/fcb/fcb_append.rst","os/modules/fcb/fcb_append_finish.rst","os/modules/fcb/fcb_append_to_scratch.rst","os/modules/fcb/fcb_clear.rst","os/modules/fcb/fcb_getnext.rst","os/modules/fcb/fcb_init.rst","os/modules/fcb/fcb_is_empty.rst","os/modules/fcb/fcb_offset_last_n.rst","os/modules/fcb/fcb_rotate.rst","os/modules/fcb/fcb_walk.rst","os/modules/fs/fatfs.rst","os/modules/fs/fs.rst","os/modules/fs/fs_add.rst","os/modules/fs/nffs.rst","os/modules/fs/otherfs.rst","os/modules/hal/hal.rst","os/modules/hal/hal_bsp/hal_bsp.rst","os/modules/hal/hal_creation.rst","os/modules/hal/hal_flash/hal_flash.rst","os/modules/hal/hal_flash/hal_flash_int.rst","os/modules/hal/hal_gpio/hal_gpio.rst","os/modules/hal/hal_i2c/hal_i2c.rst","os/modules/hal/hal_in_libraries.rst","os/modules/hal/hal_os_tick/hal_os_tick.rst","os/modules/hal/hal_spi/hal_spi.rst","os/modules/hal/hal_system/hal_sys.rst","os/modules/hal/hal_timer/hal_timer.rst","os/modules/hal/hal_uart/hal_uart.rst","os/modules/hal/hal_watchdog/hal_watchdog.rst","os/modules/imgmgr/imgmgr.rst","os/modules/imgmgr/imgmgr_module_init.rst","os/modules/imgmgr/imgr_ver_parse.rst","os/modules/imgmgr/imgr_ver_str.rst","os/modules/json/json.rst","os/modules/logs/logs.rst","os/modules/sensor_framework/sensor_api.rst","os/modules/sensor_framework/sensor_create.rst","os/modules/sensor_framework/sensor_driver.rst","os/modules/sensor_framework/sensor_framework.rst","os/modules/sensor_framework/sensor_listener_api.rst","os/modules/sensor_framework/sensor_mgr_api.rst","os/modules/sensor_framework/sensor_notifier_api.rst","os/modules/sensor_framework/sensor_oic.rst","os/modules/sensor_framework/sensor_shell.rst","os/modules/shell/shell.rst","os/modules/split/split.rst","os/modules/stats/stats.rst","os/modules/sysinitconfig/sysconfig_error.rst","os/modules/sysinitconfig/sysinitconfig.rst","os/modules/system_modules.rst","os/modules/testutil/testutil.rst","os/os_user_guide.rst","os/tutorials/STM32F303.rst","os/tutorials/pin-wheel-mods.rst","tutorials/ble/ble.rst","tutorials/ble/ble_bare_bones.rst","tutorials/ble/blehci_project.rst","tutorials/ble/bleprph/bleprph.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-adv.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-app.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.rst","tutorials/ble/eddystone.rst","tutorials/ble/ibeacon.rst","tutorials/blinky/arduino_zero.rst","tutorials/blinky/blinky.rst","tutorials/blinky/blinky_console.rst","tutorials/blinky/blinky_primo.rst","tutorials/blinky/blinky_stm32f4disc.rst","tutorials/blinky/nRF52.rst","tutorials/blinky/olimex.rst","tutorials/blinky/rbnano2.rst","tutorials/devmgmt/add_newtmgr.rst","tutorials/devmgmt/devmgmt.rst","tutorials/devmgmt/ota_upgrade_nrf52.rst","tutorials/lora/lorawanapp.rst","tutorials/os_fundamentals/event_queue.rst","tutorials/os_fundamentals/os_fundamentals.rst","tutorials/os_fundamentals/tasks_lesson.rst","tutorials/other/codesize.rst","tutorials/other/other.rst","tutorials/other/unit_test.rst","tutorials/other/wi-fi_on_arduino.rst","tutorials/repo/add_repos.rst","tutorials/repo/create_repo.rst","tutorials/repo/private_repo.rst","tutorials/repo/upgrade_repo.rst","tutorials/sensors/air_quality.rst","tutorials/sensors/air_quality_ble.rst","tutorials/sensors/air_quality_sensor.rst","tutorials/sensors/nrf52_adc.rst","tutorials/sensors/sensor_bleprph_oic.rst","tutorials/sensors/sensor_nrf52_bno055.rst","tutorials/sensors/sensor_nrf52_bno055_oic.rst","tutorials/sensors/sensor_nrf52_drv2605.rst","tutorials/sensors/sensor_offboard_config.rst","tutorials/sensors/sensor_oic_overview.rst","tutorials/sensors/sensor_thingy_lis2dh12_onb.rst","tutorials/sensors/sensors.rst","tutorials/sensors/sensors_framework.rst","tutorials/slinky/project-nrf52-slinky.rst","tutorials/slinky/project-sim-slinky.rst","tutorials/slinky/project-slinky.rst","tutorials/slinky/project-stm32-slinky.rst","tutorials/tooling/segger_rtt.rst","tutorials/tooling/segger_sysview.rst","tutorials/tooling/tooling.rst","tutorials/tutorials.rst"],objects:{"":{"29":[28,0,1,"c.29"],"46":[30,0,1,"c.46"],"48":[30,0,1,"c.48"],"HALGpio::HAL_GPIO_MODE_IN":[148,2,1,"c.HALGpio::HAL_GPIO_MODE_IN"],"HALGpio::HAL_GPIO_MODE_NC":[148,2,1,"c.HALGpio::HAL_GPIO_MODE_NC"],"HALGpio::HAL_GPIO_MODE_OUT":[148,2,1,"c.HALGpio::HAL_GPIO_MODE_OUT"],"HALGpio::HAL_GPIO_PULL_DOWN":[148,2,1,"c.HALGpio::HAL_GPIO_PULL_DOWN"],"HALGpio::HAL_GPIO_PULL_NONE":[148,2,1,"c.HALGpio::HAL_GPIO_PULL_NONE"],"HALGpio::HAL_GPIO_PULL_UP":[148,2,1,"c.HALGpio::HAL_GPIO_PULL_UP"],"HALGpio::HAL_GPIO_TRIG_BOTH":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_BOTH"],"HALGpio::HAL_GPIO_TRIG_FALLING":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_FALLING"],"HALGpio::HAL_GPIO_TRIG_HIGH":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_HIGH"],"HALGpio::HAL_GPIO_TRIG_LOW":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_LOW"],"HALGpio::HAL_GPIO_TRIG_NONE":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_NONE"],"HALGpio::HAL_GPIO_TRIG_RISING":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_RISING"],"HALGpio::hal_gpio_irq_trigger":[148,3,1,"c.HALGpio::hal_gpio_irq_trigger"],"HALGpio::hal_gpio_mode_e":[148,3,1,"c.HALGpio::hal_gpio_mode_e"],"HALGpio::hal_gpio_pull":[148,3,1,"c.HALGpio::hal_gpio_pull"],"HALSystem::HAL_RESET_BROWNOUT":[153,2,1,"c.HALSystem::HAL_RESET_BROWNOUT"],"HALSystem::HAL_RESET_PIN":[153,2,1,"c.HALSystem::HAL_RESET_PIN"],"HALSystem::HAL_RESET_POR":[153,2,1,"c.HALSystem::HAL_RESET_POR"],"HALSystem::HAL_RESET_REQUESTED":[153,2,1,"c.HALSystem::HAL_RESET_REQUESTED"],"HALSystem::HAL_RESET_SOFT":[153,2,1,"c.HALSystem::HAL_RESET_SOFT"],"HALSystem::HAL_RESET_WATCHDOG":[153,2,1,"c.HALSystem::HAL_RESET_WATCHDOG"],"HALSystem::hal_reset_reason":[153,3,1,"c.HALSystem::hal_reset_reason"],"HALUart::HAL_UART_FLOW_CTL_NONE":[155,2,1,"c.HALUart::HAL_UART_FLOW_CTL_NONE"],"HALUart::HAL_UART_FLOW_CTL_RTS_CTS":[155,2,1,"c.HALUart::HAL_UART_FLOW_CTL_RTS_CTS"],"HALUart::HAL_UART_PARITY_EVEN":[155,2,1,"c.HALUart::HAL_UART_PARITY_EVEN"],"HALUart::HAL_UART_PARITY_NONE":[155,2,1,"c.HALUart::HAL_UART_PARITY_NONE"],"HALUart::HAL_UART_PARITY_ODD":[155,2,1,"c.HALUart::HAL_UART_PARITY_ODD"],"HALUart::hal_uart_flow_ctl":[155,3,1,"c.HALUart::hal_uart_flow_ctl"],"HALUart::hal_uart_parity":[155,3,1,"c.HALUart::hal_uart_parity"],"OSTask::OS_TASK_READY":[112,2,1,"c.OSTask::OS_TASK_READY"],"OSTask::OS_TASK_SLEEP":[112,2,1,"c.OSTask::OS_TASK_SLEEP"],"OSTask::os_task_state":[112,3,1,"c.OSTask::os_task_state"],"SensorAPI::SENSOR_EVENT_TYPE_DOUBLE_TAP":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_DOUBLE_TAP"],"SensorAPI::SENSOR_EVENT_TYPE_FREE_FALL":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_FREE_FALL"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_H_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_H_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_L_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_L_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_H_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_H_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_L_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_L_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_H_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_H_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_L_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_L_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_SINGLE_TAP":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_SINGLE_TAP"],"SensorAPI::SENSOR_EVENT_TYPE_SLEEP":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_SLEEP"],"SensorAPI::SENSOR_EVENT_TYPE_SLEEP_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_SLEEP_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_WAKEUP":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_WAKEUP"],"SensorAPI::SENSOR_TYPE_ACCELEROMETER":[163,2,1,"c.SensorAPI::SENSOR_TYPE_ACCELEROMETER"],"SensorAPI::SENSOR_TYPE_ALL":[163,2,1,"c.SensorAPI::SENSOR_TYPE_ALL"],"SensorAPI::SENSOR_TYPE_ALTITUDE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_ALTITUDE"],"SensorAPI::SENSOR_TYPE_AMBIENT_TEMPERATURE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_AMBIENT_TEMPERATURE"],"SensorAPI::SENSOR_TYPE_COLOR":[163,2,1,"c.SensorAPI::SENSOR_TYPE_COLOR"],"SensorAPI::SENSOR_TYPE_EULER":[163,2,1,"c.SensorAPI::SENSOR_TYPE_EULER"],"SensorAPI::SENSOR_TYPE_GRAVITY":[163,2,1,"c.SensorAPI::SENSOR_TYPE_GRAVITY"],"SensorAPI::SENSOR_TYPE_GYROSCOPE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_GYROSCOPE"],"SensorAPI::SENSOR_TYPE_LIGHT":[163,2,1,"c.SensorAPI::SENSOR_TYPE_LIGHT"],"SensorAPI::SENSOR_TYPE_LINEAR_ACCEL":[163,2,1,"c.SensorAPI::SENSOR_TYPE_LINEAR_ACCEL"],"SensorAPI::SENSOR_TYPE_MAGNETIC_FIELD":[163,2,1,"c.SensorAPI::SENSOR_TYPE_MAGNETIC_FIELD"],"SensorAPI::SENSOR_TYPE_NONE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_NONE"],"SensorAPI::SENSOR_TYPE_PRESSURE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_PRESSURE"],"SensorAPI::SENSOR_TYPE_PROXIMITY":[163,2,1,"c.SensorAPI::SENSOR_TYPE_PROXIMITY"],"SensorAPI::SENSOR_TYPE_RELATIVE_HUMIDITY":[163,2,1,"c.SensorAPI::SENSOR_TYPE_RELATIVE_HUMIDITY"],"SensorAPI::SENSOR_TYPE_ROTATION_VECTOR":[163,2,1,"c.SensorAPI::SENSOR_TYPE_ROTATION_VECTOR"],"SensorAPI::SENSOR_TYPE_TEMPERATURE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_TEMPERATURE"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_1":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_1"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_2":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_2"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_3":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_3"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_4":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_4"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_5":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_5"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_6":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_6"],"SensorAPI::SENSOR_TYPE_WEIGHT":[163,2,1,"c.SensorAPI::SENSOR_TYPE_WEIGHT"],"SensorAPI::sensor_event_type_t":[163,3,1,"c.SensorAPI::sensor_event_type_t"],"SensorAPI::sensor_type_t":[163,3,1,"c.SensorAPI::sensor_type_t"],"SysConfig::CONF_EXPORT_PERSIST":[116,2,1,"c.SysConfig::CONF_EXPORT_PERSIST"],"SysConfig::CONF_EXPORT_SHOW":[116,2,1,"c.SysConfig::CONF_EXPORT_SHOW"],"SysConfig::conf_export_tgt":[116,3,1,"c.SysConfig::conf_export_tgt"],"SysConfig::conf_type":[116,3,1,"c.SysConfig::conf_type"],"ble_gap_adv_params::channel_map":[28,0,1,"c.ble_gap_adv_params::channel_map"],"ble_gap_adv_params::conn_mode":[28,0,1,"c.ble_gap_adv_params::conn_mode"],"ble_gap_adv_params::disc_mode":[28,0,1,"c.ble_gap_adv_params::disc_mode"],"ble_gap_adv_params::filter_policy":[28,0,1,"c.ble_gap_adv_params::filter_policy"],"ble_gap_adv_params::high_duty_cycle":[28,0,1,"c.ble_gap_adv_params::high_duty_cycle"],"ble_gap_adv_params::itvl_max":[28,0,1,"c.ble_gap_adv_params::itvl_max"],"ble_gap_adv_params::itvl_min":[28,0,1,"c.ble_gap_adv_params::itvl_min"],"ble_gap_conn_desc::conn_handle":[28,0,1,"c.ble_gap_conn_desc::conn_handle"],"ble_gap_conn_desc::conn_itvl":[28,0,1,"c.ble_gap_conn_desc::conn_itvl"],"ble_gap_conn_desc::conn_latency":[28,0,1,"c.ble_gap_conn_desc::conn_latency"],"ble_gap_conn_desc::master_clock_accuracy":[28,0,1,"c.ble_gap_conn_desc::master_clock_accuracy"],"ble_gap_conn_desc::our_id_addr":[28,0,1,"c.ble_gap_conn_desc::our_id_addr"],"ble_gap_conn_desc::our_ota_addr":[28,0,1,"c.ble_gap_conn_desc::our_ota_addr"],"ble_gap_conn_desc::peer_id_addr":[28,0,1,"c.ble_gap_conn_desc::peer_id_addr"],"ble_gap_conn_desc::peer_ota_addr":[28,0,1,"c.ble_gap_conn_desc::peer_ota_addr"],"ble_gap_conn_desc::role":[28,0,1,"c.ble_gap_conn_desc::role"],"ble_gap_conn_desc::sec_state":[28,0,1,"c.ble_gap_conn_desc::sec_state"],"ble_gap_conn_desc::supervision_timeout":[28,0,1,"c.ble_gap_conn_desc::supervision_timeout"],"ble_gap_event::type":[28,0,1,"c.ble_gap_event::type"],"ble_gap_repeat_pairing::conn_handle":[28,0,1,"c.ble_gap_repeat_pairing::conn_handle"],"ble_gap_repeat_pairing::cur_key_size":[28,0,1,"c.ble_gap_repeat_pairing::cur_key_size"],"ble_gap_repeat_pairing::new_key_size":[28,0,1,"c.ble_gap_repeat_pairing::new_key_size"],"ble_gap_sec_state::authenticated":[28,0,1,"c.ble_gap_sec_state::authenticated"],"ble_gap_sec_state::bonded":[28,0,1,"c.ble_gap_sec_state::bonded"],"ble_gap_sec_state::encrypted":[28,0,1,"c.ble_gap_sec_state::encrypted"],"ble_gap_sec_state::key_size":[28,0,1,"c.ble_gap_sec_state::key_size"],"ble_gatt_access_ctxt::om":[30,0,1,"c.ble_gatt_access_ctxt::om"],"ble_gatt_access_ctxt::op":[30,0,1,"c.ble_gatt_access_ctxt::op"],"ble_gatt_chr_def::access_cb":[30,0,1,"c.ble_gatt_chr_def::access_cb"],"ble_gatt_chr_def::arg":[30,0,1,"c.ble_gatt_chr_def::arg"],"ble_gatt_chr_def::descriptors":[30,0,1,"c.ble_gatt_chr_def::descriptors"],"ble_gatt_chr_def::flags":[30,0,1,"c.ble_gatt_chr_def::flags"],"ble_gatt_chr_def::min_key_size":[30,0,1,"c.ble_gatt_chr_def::min_key_size"],"ble_gatt_chr_def::uuid":[30,0,1,"c.ble_gatt_chr_def::uuid"],"ble_gatt_chr_def::val_handle":[30,0,1,"c.ble_gatt_chr_def::val_handle"],"ble_gatt_dsc_def::access_cb":[30,0,1,"c.ble_gatt_dsc_def::access_cb"],"ble_gatt_dsc_def::arg":[30,0,1,"c.ble_gatt_dsc_def::arg"],"ble_gatt_dsc_def::att_flags":[30,0,1,"c.ble_gatt_dsc_def::att_flags"],"ble_gatt_dsc_def::min_key_size":[30,0,1,"c.ble_gatt_dsc_def::min_key_size"],"ble_gatt_dsc_def::uuid":[30,0,1,"c.ble_gatt_dsc_def::uuid"],"ble_gatt_register_ctxt::op":[30,0,1,"c.ble_gatt_register_ctxt::op"],"ble_gatt_svc_def::characteristics":[30,0,1,"c.ble_gatt_svc_def::characteristics"],"ble_gatt_svc_def::includes":[30,0,1,"c.ble_gatt_svc_def::includes"],"ble_gatt_svc_def::type":[30,0,1,"c.ble_gatt_svc_def::type"],"ble_gatt_svc_def::uuid":[30,0,1,"c.ble_gatt_svc_def::uuid"],"conf_handler::ch_commit":[116,0,1,"c.conf_handler::ch_commit"],"conf_handler::ch_export":[116,0,1,"c.conf_handler::ch_export"],"conf_handler::ch_get":[116,0,1,"c.conf_handler::ch_get"],"conf_handler::ch_name":[116,0,1,"c.conf_handler::ch_name"],"conf_handler::ch_set":[116,0,1,"c.conf_handler::ch_set"],"console_input::line":[117,0,1,"c.console_input::line"],"fcb::f_active":[127,0,1,"c.fcb::f_active"],"fcb::f_active_id":[127,0,1,"c.fcb::f_active_id"],"fcb::f_align":[127,0,1,"c.fcb::f_align"],"fcb::f_magic":[127,0,1,"c.fcb::f_magic"],"fcb::f_mtx":[127,0,1,"c.fcb::f_mtx"],"fcb::f_oldest":[127,0,1,"c.fcb::f_oldest"],"fcb::f_scratch_cnt":[127,0,1,"c.fcb::f_scratch_cnt"],"fcb::f_sector_cnt":[127,0,1,"c.fcb::f_sector_cnt"],"fcb::f_sectors":[127,0,1,"c.fcb::f_sectors"],"fcb::f_version":[127,0,1,"c.fcb::f_version"],"fcb_entry::fe_area":[127,0,1,"c.fcb_entry::fe_area"],"fcb_entry::fe_data_len":[127,0,1,"c.fcb_entry::fe_data_len"],"fcb_entry::fe_data_off":[127,0,1,"c.fcb_entry::fe_data_off"],"fcb_entry::fe_elem_off":[127,0,1,"c.fcb_entry::fe_elem_off"],"fcb_log::fl_entries":[127,0,1,"c.fcb_log::fl_entries"],"fcb_log::fl_fcb":[127,0,1,"c.fcb_log::fl_fcb"],"fcb_log::fl_watermark_off":[127,0,1,"c.fcb_log::fl_watermark_off"],"fops_container::fops":[140,0,1,"c.fops_container::fops"],"fs_ops::SLIST_ENTRY":[140,4,1,"c.fs_ops::SLIST_ENTRY"],"fs_ops::f_close":[140,0,1,"c.fs_ops::f_close"],"fs_ops::f_closedir":[140,0,1,"c.fs_ops::f_closedir"],"fs_ops::f_dirent_is_dir":[140,0,1,"c.fs_ops::f_dirent_is_dir"],"fs_ops::f_dirent_name":[140,0,1,"c.fs_ops::f_dirent_name"],"fs_ops::f_filelen":[140,0,1,"c.fs_ops::f_filelen"],"fs_ops::f_getpos":[140,0,1,"c.fs_ops::f_getpos"],"fs_ops::f_mkdir":[140,0,1,"c.fs_ops::f_mkdir"],"fs_ops::f_name":[140,0,1,"c.fs_ops::f_name"],"fs_ops::f_open":[140,0,1,"c.fs_ops::f_open"],"fs_ops::f_opendir":[140,0,1,"c.fs_ops::f_opendir"],"fs_ops::f_read":[140,0,1,"c.fs_ops::f_read"],"fs_ops::f_readdir":[140,0,1,"c.fs_ops::f_readdir"],"fs_ops::f_rename":[140,0,1,"c.fs_ops::f_rename"],"fs_ops::f_seek":[140,0,1,"c.fs_ops::f_seek"],"fs_ops::f_unlink":[140,0,1,"c.fs_ops::f_unlink"],"fs_ops::f_write":[140,0,1,"c.fs_ops::f_write"],"hal_i2c_master_data::address":[149,0,1,"c.hal_i2c_master_data::address"],"hal_i2c_master_data::buffer":[149,0,1,"c.hal_i2c_master_data::buffer"],"hal_i2c_master_data::len":[149,0,1,"c.hal_i2c_master_data::len"],"hal_spi_settings::baudrate":[152,0,1,"c.hal_spi_settings::baudrate"],"hal_spi_settings::data_mode":[152,0,1,"c.hal_spi_settings::data_mode"],"hal_spi_settings::data_order":[152,0,1,"c.hal_spi_settings::data_order"],"hal_spi_settings::word_size":[152,0,1,"c.hal_spi_settings::word_size"],"hal_timer::bsp_timer":[154,0,1,"c.hal_timer::bsp_timer"],"hal_timer::cb_arg":[154,0,1,"c.hal_timer::cb_arg"],"hal_timer::cb_func":[154,0,1,"c.hal_timer::cb_func"],"hal_timer::expiry":[154,0,1,"c.hal_timer::expiry"],"json_array_t::arr":[161,0,1,"c.json_array_t::arr"],"json_array_t::count":[161,0,1,"c.json_array_t::count"],"json_array_t::element_type":[161,0,1,"c.json_array_t::element_type"],"json_array_t::maxlen":[161,0,1,"c.json_array_t::maxlen"],"json_attr_t::addr":[161,0,1,"c.json_attr_t::addr"],"json_attr_t::attribute":[161,0,1,"c.json_attr_t::attribute"],"json_attr_t::dflt":[161,0,1,"c.json_attr_t::dflt"],"json_attr_t::len":[161,0,1,"c.json_attr_t::len"],"json_attr_t::map":[161,0,1,"c.json_attr_t::map"],"json_attr_t::nodefault":[161,0,1,"c.json_attr_t::nodefault"],"json_attr_t::type":[161,0,1,"c.json_attr_t::type"],"json_buffer::jb_read_next":[161,0,1,"c.json_buffer::jb_read_next"],"json_buffer::jb_read_prev":[161,0,1,"c.json_buffer::jb_read_prev"],"json_buffer::jb_readn":[161,0,1,"c.json_buffer::jb_readn"],"json_encoder::je_arg":[161,0,1,"c.json_encoder::je_arg"],"json_encoder::je_wr_commas":[161,0,1,"c.json_encoder::je_wr_commas"],"json_encoder::je_write":[161,0,1,"c.json_encoder::je_write"],"json_enum_t::name":[161,0,1,"c.json_enum_t::name"],"json_enum_t::value":[161,0,1,"c.json_enum_t::value"],"json_value::jv_len":[161,0,1,"c.json_value::jv_len"],"json_value::jv_pad1":[161,0,1,"c.json_value::jv_pad1"],"json_value::jv_type":[161,0,1,"c.json_value::jv_type"],"json_value::jv_val":[161,0,1,"c.json_value::jv_val"],"log::STAILQ_ENTRY":[162,4,1,"c.log::STAILQ_ENTRY"],"log::STATS_SECT_DECL":[162,4,1,"c.log::STATS_SECT_DECL"],"log::l_append_cb":[162,0,1,"c.log::l_append_cb"],"log::l_arg":[162,0,1,"c.log::l_arg"],"log::l_level":[162,0,1,"c.log::l_level"],"log::l_log":[162,0,1,"c.log::l_log"],"log::l_name":[162,0,1,"c.log::l_name"],"log_handler::log_append":[162,0,1,"c.log_handler::log_append"],"log_handler::log_append_body":[162,0,1,"c.log_handler::log_append_body"],"log_handler::log_append_mbuf":[162,0,1,"c.log_handler::log_append_mbuf"],"log_handler::log_append_mbuf_body":[162,0,1,"c.log_handler::log_append_mbuf_body"],"log_handler::log_flush":[162,0,1,"c.log_handler::log_flush"],"log_handler::log_read":[162,0,1,"c.log_handler::log_read"],"log_handler::log_read_mbuf":[162,0,1,"c.log_handler::log_read_mbuf"],"log_handler::log_registered":[162,0,1,"c.log_handler::log_registered"],"log_handler::log_set_watermark":[162,0,1,"c.log_handler::log_set_watermark"],"log_handler::log_storage_info":[162,0,1,"c.log_handler::log_storage_info"],"log_handler::log_type":[162,0,1,"c.log_handler::log_type"],"log_handler::log_walk":[162,0,1,"c.log_handler::log_walk"],"log_offset::lo_arg":[162,0,1,"c.log_offset::lo_arg"],"log_offset::lo_data_len":[162,0,1,"c.log_offset::lo_data_len"],"log_offset::lo_index":[162,0,1,"c.log_offset::lo_index"],"log_offset::lo_ts":[162,0,1,"c.log_offset::lo_ts"],"log_storage_info::size":[162,0,1,"c.log_storage_info::size"],"log_storage_info::used":[162,0,1,"c.log_storage_info::used"],"log_storage_info::used_unread":[162,0,1,"c.log_storage_info::used_unread"],"nffs_area_desc::nad_flash_id":[141,0,1,"c.nffs_area_desc::nad_flash_id"],"nffs_area_desc::nad_length":[141,0,1,"c.nffs_area_desc::nad_length"],"nffs_area_desc::nad_offset":[141,0,1,"c.nffs_area_desc::nad_offset"],"nffs_config::nc_num_blocks":[141,0,1,"c.nffs_config::nc_num_blocks"],"nffs_config::nc_num_cache_blocks":[141,0,1,"c.nffs_config::nc_num_cache_blocks"],"nffs_config::nc_num_cache_inodes":[141,0,1,"c.nffs_config::nc_num_cache_inodes"],"nffs_config::nc_num_dirs":[141,0,1,"c.nffs_config::nc_num_dirs"],"nffs_config::nc_num_files":[141,0,1,"c.nffs_config::nc_num_files"],"nffs_config::nc_num_inodes":[141,0,1,"c.nffs_config::nc_num_inodes"],"os_callout::c_ev":[97,0,1,"c.os_callout::c_ev"],"os_callout::c_evq":[97,0,1,"c.os_callout::c_evq"],"os_callout::c_ticks":[97,0,1,"c.os_callout::c_ticks"],"os_event::ev_arg":[100,0,1,"c.os_event::ev_arg"],"os_event::ev_cb":[100,0,1,"c.os_event::ev_cb"],"os_event::ev_queued":[100,0,1,"c.os_event::ev_queued"],"os_eventq::evq_owner":[100,0,1,"c.os_eventq::evq_owner"],"os_eventq::evq_task":[100,0,1,"c.os_eventq::evq_task"],"os_mbuf::om_data":[102,0,1,"c.os_mbuf::om_data"],"os_mbuf::om_flags":[102,0,1,"c.os_mbuf::om_flags"],"os_mbuf::om_len":[102,0,1,"c.os_mbuf::om_len"],"os_mbuf::om_omp":[102,0,1,"c.os_mbuf::om_omp"],"os_mbuf::om_pkthdr_len":[102,0,1,"c.os_mbuf::om_pkthdr_len"],"os_mbuf_pkthdr::omp_flags":[102,0,1,"c.os_mbuf_pkthdr::omp_flags"],"os_mbuf_pkthdr::omp_len":[102,0,1,"c.os_mbuf_pkthdr::omp_len"],"os_mbuf_pool::omp_databuf_len":[102,0,1,"c.os_mbuf_pool::omp_databuf_len"],"os_mbuf_pool::omp_pool":[102,0,1,"c.os_mbuf_pool::omp_pool"],"os_mempool::mp_block_size":[103,0,1,"c.os_mempool::mp_block_size"],"os_mempool::mp_flags":[103,0,1,"c.os_mempool::mp_flags"],"os_mempool::mp_membuf_addr":[103,0,1,"c.os_mempool::mp_membuf_addr"],"os_mempool::mp_min_free":[103,0,1,"c.os_mempool::mp_min_free"],"os_mempool::mp_num_blocks":[103,0,1,"c.os_mempool::mp_num_blocks"],"os_mempool::mp_num_free":[103,0,1,"c.os_mempool::mp_num_free"],"os_mempool::name":[103,0,1,"c.os_mempool::name"],"os_mempool_info::omi_block_size":[103,0,1,"c.os_mempool_info::omi_block_size"],"os_mempool_info::omi_min_free":[103,0,1,"c.os_mempool_info::omi_min_free"],"os_mempool_info::omi_num_blocks":[103,0,1,"c.os_mempool_info::omi_num_blocks"],"os_mempool_info::omi_num_free":[103,0,1,"c.os_mempool_info::omi_num_free"],"os_mqueue::mq_ev":[102,0,1,"c.os_mqueue::mq_ev"],"os_mutex::SLIST_HEAD":[104,4,1,"c.os_mutex::SLIST_HEAD"],"os_mutex::_pad":[104,0,1,"c.os_mutex::_pad"],"os_mutex::mu_level":[104,0,1,"c.os_mutex::mu_level"],"os_mutex::mu_owner":[104,0,1,"c.os_mutex::mu_owner"],"os_mutex::mu_prio":[104,0,1,"c.os_mutex::mu_prio"],"os_sanity_check::sc_arg":[110,0,1,"c.os_sanity_check::sc_arg"],"os_sanity_check::sc_checkin_itvl":[110,0,1,"c.os_sanity_check::sc_checkin_itvl"],"os_sanity_check::sc_checkin_last":[110,0,1,"c.os_sanity_check::sc_checkin_last"],"os_sanity_check::sc_func":[110,0,1,"c.os_sanity_check::sc_func"],"os_sem::sem_tokens":[111,0,1,"c.os_sem::sem_tokens"],"os_task::t_arg":[112,0,1,"c.os_task::t_arg"],"os_task::t_ctx_sw_cnt":[112,0,1,"c.os_task::t_ctx_sw_cnt"],"os_task::t_flags":[112,0,1,"c.os_task::t_flags"],"os_task::t_func":[112,0,1,"c.os_task::t_func"],"os_task::t_name":[112,0,1,"c.os_task::t_name"],"os_task::t_next_wakeup":[112,0,1,"c.os_task::t_next_wakeup"],"os_task::t_obj":[112,0,1,"c.os_task::t_obj"],"os_task::t_prio":[112,0,1,"c.os_task::t_prio"],"os_task::t_run_time":[112,0,1,"c.os_task::t_run_time"],"os_task::t_sanity_check":[112,0,1,"c.os_task::t_sanity_check"],"os_task::t_stackptr":[112,0,1,"c.os_task::t_stackptr"],"os_task::t_stacksize":[112,0,1,"c.os_task::t_stacksize"],"os_task::t_stacktop":[112,0,1,"c.os_task::t_stacktop"],"os_task::t_taskid":[112,0,1,"c.os_task::t_taskid"],"os_task_info::oti_cswcnt":[112,0,1,"c.os_task_info::oti_cswcnt"],"os_task_info::oti_last_checkin":[112,0,1,"c.os_task_info::oti_last_checkin"],"os_task_info::oti_next_checkin":[112,0,1,"c.os_task_info::oti_next_checkin"],"os_task_info::oti_prio":[112,0,1,"c.os_task_info::oti_prio"],"os_task_info::oti_runtime":[112,0,1,"c.os_task_info::oti_runtime"],"os_task_info::oti_state":[112,0,1,"c.os_task_info::oti_state"],"os_task_info::oti_stksize":[112,0,1,"c.os_task_info::oti_stksize"],"os_task_info::oti_stkusage":[112,0,1,"c.os_task_info::oti_stkusage"],"os_task_info::oti_taskid":[112,0,1,"c.os_task_info::oti_taskid"],"os_time_change_info::tci_cur_tv":[113,0,1,"c.os_time_change_info::tci_cur_tv"],"os_time_change_info::tci_cur_tz":[113,0,1,"c.os_time_change_info::tci_cur_tz"],"os_time_change_info::tci_newly_synced":[113,0,1,"c.os_time_change_info::tci_newly_synced"],"os_time_change_info::tci_prev_tv":[113,0,1,"c.os_time_change_info::tci_prev_tv"],"os_time_change_info::tci_prev_tz":[113,0,1,"c.os_time_change_info::tci_prev_tz"],"os_timezone::tz_dsttime":[113,0,1,"c.os_timezone::tz_dsttime"],"os_timezone::tz_minuteswest":[113,0,1,"c.os_timezone::tz_minuteswest"],"sensor::s_poll_rate":[163,0,1,"c.sensor::s_poll_rate"],"sensor_data_t::sad":[163,0,1,"c.sensor_data_t::sad"],"sensor_data_t::satd":[163,0,1,"c.sensor_data_t::satd"],"sensor_data_t::scd":[163,0,1,"c.sensor_data_t::scd"],"sensor_data_t::sed":[163,0,1,"c.sensor_data_t::sed"],"sensor_data_t::sgd":[163,0,1,"c.sensor_data_t::sgd"],"sensor_data_t::sgrd":[163,0,1,"c.sensor_data_t::sgrd"],"sensor_data_t::slad":[163,0,1,"c.sensor_data_t::slad"],"sensor_data_t::sld":[163,0,1,"c.sensor_data_t::sld"],"sensor_data_t::smd":[163,0,1,"c.sensor_data_t::smd"],"sensor_data_t::spd":[163,0,1,"c.sensor_data_t::spd"],"sensor_data_t::sqd":[163,0,1,"c.sensor_data_t::sqd"],"sensor_data_t::srhd":[163,0,1,"c.sensor_data_t::srhd"],"sensor_data_t::std":[163,0,1,"c.sensor_data_t::std"],"shell_cmd::help":[172,0,1,"c.shell_cmd::help"],"shell_cmd::sc_cmd":[172,0,1,"c.shell_cmd::sc_cmd"],"shell_cmd::sc_cmd_func":[172,0,1,"c.shell_cmd::sc_cmd_func"],"shell_cmd_help::params":[172,0,1,"c.shell_cmd_help::params"],"shell_cmd_help::summary":[172,0,1,"c.shell_cmd_help::summary"],"shell_cmd_help::usage":[172,0,1,"c.shell_cmd_help::usage"],"shell_module::commands":[172,0,1,"c.shell_module::commands"],"shell_module::name":[172,0,1,"c.shell_module::name"],"shell_param::help":[172,0,1,"c.shell_param::help"],"shell_param::param_name":[172,0,1,"c.shell_param::param_name"],"stats_hdr::STAILQ_ENTRY":[174,4,1,"c.stats_hdr::STAILQ_ENTRY"],"stats_hdr::s_cnt":[174,0,1,"c.stats_hdr::s_cnt"],"stats_hdr::s_map":[174,0,1,"c.stats_hdr::s_map"],"stats_hdr::s_map_cnt":[174,0,1,"c.stats_hdr::s_map_cnt"],"stats_hdr::s_name":[174,0,1,"c.stats_hdr::s_name"],"stats_hdr::s_pad1":[174,0,1,"c.stats_hdr::s_pad1"],"stats_hdr::s_size":[174,0,1,"c.stats_hdr::s_size"],"stats_name_map::snm_name":[174,0,1,"c.stats_name_map::snm_name"],"stats_name_map::snm_off":[174,0,1,"c.stats_name_map::snm_off"],ARG10:[178,1,1,"c.ARG10"],ASSERT_IF_TEST:[178,1,1,"c.ASSERT_IF_TEST"],BLE_GAP_ADV_DFLT_CHANNEL_MAP:[28,1,1,"c.BLE_GAP_ADV_DFLT_CHANNEL_MAP"],BLE_GAP_ADV_FAST_INTERVAL1_MAX:[28,1,1,"c.BLE_GAP_ADV_FAST_INTERVAL1_MAX"],BLE_GAP_ADV_FAST_INTERVAL1_MIN:[28,1,1,"c.BLE_GAP_ADV_FAST_INTERVAL1_MIN"],BLE_GAP_ADV_FAST_INTERVAL2_MAX:[28,1,1,"c.BLE_GAP_ADV_FAST_INTERVAL2_MAX"],BLE_GAP_ADV_FAST_INTERVAL2_MIN:[28,1,1,"c.BLE_GAP_ADV_FAST_INTERVAL2_MIN"],BLE_GAP_CONN_DUR_DFLT:[28,1,1,"c.BLE_GAP_CONN_DUR_DFLT"],BLE_GAP_CONN_MODE_DIR:[28,1,1,"c.BLE_GAP_CONN_MODE_DIR"],BLE_GAP_CONN_MODE_NON:[28,1,1,"c.BLE_GAP_CONN_MODE_NON"],BLE_GAP_CONN_MODE_UND:[28,1,1,"c.BLE_GAP_CONN_MODE_UND"],BLE_GAP_CONN_PAUSE_CENTRAL:[28,1,1,"c.BLE_GAP_CONN_PAUSE_CENTRAL"],BLE_GAP_CONN_PAUSE_PERIPHERAL:[28,1,1,"c.BLE_GAP_CONN_PAUSE_PERIPHERAL"],BLE_GAP_DISC_DUR_DFLT:[28,1,1,"c.BLE_GAP_DISC_DUR_DFLT"],BLE_GAP_DISC_MODE_GEN:[28,1,1,"c.BLE_GAP_DISC_MODE_GEN"],BLE_GAP_DISC_MODE_LTD:[28,1,1,"c.BLE_GAP_DISC_MODE_LTD"],BLE_GAP_DISC_MODE_NON:[28,1,1,"c.BLE_GAP_DISC_MODE_NON"],BLE_GAP_EVENT_ADV_COMPLETE:[28,1,1,"c.BLE_GAP_EVENT_ADV_COMPLETE"],BLE_GAP_EVENT_CONNECT:[28,1,1,"c.BLE_GAP_EVENT_CONNECT"],BLE_GAP_EVENT_CONN_UPDATE:[28,1,1,"c.BLE_GAP_EVENT_CONN_UPDATE"],BLE_GAP_EVENT_CONN_UPDATE_REQ:[28,1,1,"c.BLE_GAP_EVENT_CONN_UPDATE_REQ"],BLE_GAP_EVENT_DISC:[28,1,1,"c.BLE_GAP_EVENT_DISC"],BLE_GAP_EVENT_DISCONNECT:[28,1,1,"c.BLE_GAP_EVENT_DISCONNECT"],BLE_GAP_EVENT_DISC_COMPLETE:[28,1,1,"c.BLE_GAP_EVENT_DISC_COMPLETE"],BLE_GAP_EVENT_ENC_CHANGE:[28,1,1,"c.BLE_GAP_EVENT_ENC_CHANGE"],BLE_GAP_EVENT_EXT_DISC:[28,1,1,"c.BLE_GAP_EVENT_EXT_DISC"],BLE_GAP_EVENT_IDENTITY_RESOLVED:[28,1,1,"c.BLE_GAP_EVENT_IDENTITY_RESOLVED"],BLE_GAP_EVENT_L2CAP_UPDATE_REQ:[28,1,1,"c.BLE_GAP_EVENT_L2CAP_UPDATE_REQ"],BLE_GAP_EVENT_MTU:[28,1,1,"c.BLE_GAP_EVENT_MTU"],BLE_GAP_EVENT_NOTIFY_RX:[28,1,1,"c.BLE_GAP_EVENT_NOTIFY_RX"],BLE_GAP_EVENT_NOTIFY_TX:[28,1,1,"c.BLE_GAP_EVENT_NOTIFY_TX"],BLE_GAP_EVENT_PASSKEY_ACTION:[28,1,1,"c.BLE_GAP_EVENT_PASSKEY_ACTION"],BLE_GAP_EVENT_PHY_UPDATE_COMPLETE:[28,1,1,"c.BLE_GAP_EVENT_PHY_UPDATE_COMPLETE"],BLE_GAP_EVENT_REPEAT_PAIRING:[28,1,1,"c.BLE_GAP_EVENT_REPEAT_PAIRING"],BLE_GAP_EVENT_SUBSCRIBE:[28,1,1,"c.BLE_GAP_EVENT_SUBSCRIBE"],BLE_GAP_EVENT_TERM_FAILURE:[28,1,1,"c.BLE_GAP_EVENT_TERM_FAILURE"],BLE_GAP_EXT_ADV_DATA_STATUS_COMPLETE:[28,1,1,"c.BLE_GAP_EXT_ADV_DATA_STATUS_COMPLETE"],BLE_GAP_EXT_ADV_DATA_STATUS_INCOMPLETE:[28,1,1,"c.BLE_GAP_EXT_ADV_DATA_STATUS_INCOMPLETE"],BLE_GAP_EXT_ADV_DATA_STATUS_TRUNCATED:[28,1,1,"c.BLE_GAP_EXT_ADV_DATA_STATUS_TRUNCATED"],BLE_GAP_INITIAL_CONN_ITVL_MAX:[28,1,1,"c.BLE_GAP_INITIAL_CONN_ITVL_MAX"],BLE_GAP_INITIAL_CONN_ITVL_MIN:[28,1,1,"c.BLE_GAP_INITIAL_CONN_ITVL_MIN"],BLE_GAP_INITIAL_CONN_LATENCY:[28,1,1,"c.BLE_GAP_INITIAL_CONN_LATENCY"],BLE_GAP_INITIAL_CONN_MAX_CE_LEN:[28,1,1,"c.BLE_GAP_INITIAL_CONN_MAX_CE_LEN"],BLE_GAP_INITIAL_CONN_MIN_CE_LEN:[28,1,1,"c.BLE_GAP_INITIAL_CONN_MIN_CE_LEN"],BLE_GAP_INITIAL_SUPERVISION_TIMEOUT:[28,1,1,"c.BLE_GAP_INITIAL_SUPERVISION_TIMEOUT"],BLE_GAP_LE_PHY_1M:[28,1,1,"c.BLE_GAP_LE_PHY_1M"],BLE_GAP_LE_PHY_1M_MASK:[28,1,1,"c.BLE_GAP_LE_PHY_1M_MASK"],BLE_GAP_LE_PHY_2M:[28,1,1,"c.BLE_GAP_LE_PHY_2M"],BLE_GAP_LE_PHY_2M_MASK:[28,1,1,"c.BLE_GAP_LE_PHY_2M_MASK"],BLE_GAP_LE_PHY_ANY_MASK:[28,1,1,"c.BLE_GAP_LE_PHY_ANY_MASK"],BLE_GAP_LE_PHY_CODED:[28,1,1,"c.BLE_GAP_LE_PHY_CODED"],BLE_GAP_LE_PHY_CODED_ANY:[28,1,1,"c.BLE_GAP_LE_PHY_CODED_ANY"],BLE_GAP_LE_PHY_CODED_MASK:[28,1,1,"c.BLE_GAP_LE_PHY_CODED_MASK"],BLE_GAP_LE_PHY_CODED_S2:[28,1,1,"c.BLE_GAP_LE_PHY_CODED_S2"],BLE_GAP_LE_PHY_CODED_S8:[28,1,1,"c.BLE_GAP_LE_PHY_CODED_S8"],BLE_GAP_LIM_DISC_SCAN_INT:[28,1,1,"c.BLE_GAP_LIM_DISC_SCAN_INT"],BLE_GAP_LIM_DISC_SCAN_WINDOW:[28,1,1,"c.BLE_GAP_LIM_DISC_SCAN_WINDOW"],BLE_GAP_PRIVATE_MODE_DEVICE:[28,1,1,"c.BLE_GAP_PRIVATE_MODE_DEVICE"],BLE_GAP_PRIVATE_MODE_NETWORK:[28,1,1,"c.BLE_GAP_PRIVATE_MODE_NETWORK"],BLE_GAP_REPEAT_PAIRING_IGNORE:[28,1,1,"c.BLE_GAP_REPEAT_PAIRING_IGNORE"],BLE_GAP_REPEAT_PAIRING_RETRY:[28,1,1,"c.BLE_GAP_REPEAT_PAIRING_RETRY"],BLE_GAP_ROLE_MASTER:[28,1,1,"c.BLE_GAP_ROLE_MASTER"],BLE_GAP_ROLE_SLAVE:[28,1,1,"c.BLE_GAP_ROLE_SLAVE"],BLE_GAP_SCAN_FAST_INTERVAL_MAX:[28,1,1,"c.BLE_GAP_SCAN_FAST_INTERVAL_MAX"],BLE_GAP_SCAN_FAST_INTERVAL_MIN:[28,1,1,"c.BLE_GAP_SCAN_FAST_INTERVAL_MIN"],BLE_GAP_SCAN_FAST_PERIOD:[28,1,1,"c.BLE_GAP_SCAN_FAST_PERIOD"],BLE_GAP_SCAN_FAST_WINDOW:[28,1,1,"c.BLE_GAP_SCAN_FAST_WINDOW"],BLE_GAP_SCAN_SLOW_INTERVAL1:[28,1,1,"c.BLE_GAP_SCAN_SLOW_INTERVAL1"],BLE_GAP_SCAN_SLOW_WINDOW1:[28,1,1,"c.BLE_GAP_SCAN_SLOW_WINDOW1"],BLE_GAP_SUBSCRIBE_REASON_RESTORE:[28,1,1,"c.BLE_GAP_SUBSCRIBE_REASON_RESTORE"],BLE_GAP_SUBSCRIBE_REASON_TERM:[28,1,1,"c.BLE_GAP_SUBSCRIBE_REASON_TERM"],BLE_GAP_SUBSCRIBE_REASON_WRITE:[28,1,1,"c.BLE_GAP_SUBSCRIBE_REASON_WRITE"],BLE_GATT_ACCESS_OP_READ_CHR:[30,1,1,"c.BLE_GATT_ACCESS_OP_READ_CHR"],BLE_GATT_ACCESS_OP_READ_DSC:[30,1,1,"c.BLE_GATT_ACCESS_OP_READ_DSC"],BLE_GATT_ACCESS_OP_WRITE_CHR:[30,1,1,"c.BLE_GATT_ACCESS_OP_WRITE_CHR"],BLE_GATT_ACCESS_OP_WRITE_DSC:[30,1,1,"c.BLE_GATT_ACCESS_OP_WRITE_DSC"],BLE_GATT_CHR_F_AUTH_SIGN_WRITE:[30,1,1,"c.BLE_GATT_CHR_F_AUTH_SIGN_WRITE"],BLE_GATT_CHR_F_AUX_WRITE:[30,1,1,"c.BLE_GATT_CHR_F_AUX_WRITE"],BLE_GATT_CHR_F_BROADCAST:[30,1,1,"c.BLE_GATT_CHR_F_BROADCAST"],BLE_GATT_CHR_F_INDICATE:[30,1,1,"c.BLE_GATT_CHR_F_INDICATE"],BLE_GATT_CHR_F_NOTIFY:[30,1,1,"c.BLE_GATT_CHR_F_NOTIFY"],BLE_GATT_CHR_F_READ:[30,1,1,"c.BLE_GATT_CHR_F_READ"],BLE_GATT_CHR_F_READ_AUTHEN:[30,1,1,"c.BLE_GATT_CHR_F_READ_AUTHEN"],BLE_GATT_CHR_F_READ_AUTHOR:[30,1,1,"c.BLE_GATT_CHR_F_READ_AUTHOR"],BLE_GATT_CHR_F_READ_ENC:[30,1,1,"c.BLE_GATT_CHR_F_READ_ENC"],BLE_GATT_CHR_F_RELIABLE_WRITE:[30,1,1,"c.BLE_GATT_CHR_F_RELIABLE_WRITE"],BLE_GATT_CHR_F_WRITE:[30,1,1,"c.BLE_GATT_CHR_F_WRITE"],BLE_GATT_CHR_F_WRITE_AUTHEN:[30,1,1,"c.BLE_GATT_CHR_F_WRITE_AUTHEN"],BLE_GATT_CHR_F_WRITE_AUTHOR:[30,1,1,"c.BLE_GATT_CHR_F_WRITE_AUTHOR"],BLE_GATT_CHR_F_WRITE_ENC:[30,1,1,"c.BLE_GATT_CHR_F_WRITE_ENC"],BLE_GATT_CHR_F_WRITE_NO_RSP:[30,1,1,"c.BLE_GATT_CHR_F_WRITE_NO_RSP"],BLE_GATT_CHR_PROP_AUTH_SIGN_WRITE:[30,1,1,"c.BLE_GATT_CHR_PROP_AUTH_SIGN_WRITE"],BLE_GATT_CHR_PROP_BROADCAST:[30,1,1,"c.BLE_GATT_CHR_PROP_BROADCAST"],BLE_GATT_CHR_PROP_EXTENDED:[30,1,1,"c.BLE_GATT_CHR_PROP_EXTENDED"],BLE_GATT_CHR_PROP_INDICATE:[30,1,1,"c.BLE_GATT_CHR_PROP_INDICATE"],BLE_GATT_CHR_PROP_NOTIFY:[30,1,1,"c.BLE_GATT_CHR_PROP_NOTIFY"],BLE_GATT_CHR_PROP_READ:[30,1,1,"c.BLE_GATT_CHR_PROP_READ"],BLE_GATT_CHR_PROP_WRITE:[30,1,1,"c.BLE_GATT_CHR_PROP_WRITE"],BLE_GATT_CHR_PROP_WRITE_NO_RSP:[30,1,1,"c.BLE_GATT_CHR_PROP_WRITE_NO_RSP"],BLE_GATT_DSC_CLT_CFG_UUID16:[30,1,1,"c.BLE_GATT_DSC_CLT_CFG_UUID16"],BLE_GATT_REGISTER_OP_CHR:[30,1,1,"c.BLE_GATT_REGISTER_OP_CHR"],BLE_GATT_REGISTER_OP_DSC:[30,1,1,"c.BLE_GATT_REGISTER_OP_DSC"],BLE_GATT_REGISTER_OP_SVC:[30,1,1,"c.BLE_GATT_REGISTER_OP_SVC"],BLE_GATT_SVC_TYPE_END:[30,1,1,"c.BLE_GATT_SVC_TYPE_END"],BLE_GATT_SVC_TYPE_PRIMARY:[30,1,1,"c.BLE_GATT_SVC_TYPE_PRIMARY"],BLE_GATT_SVC_TYPE_SECONDARY:[30,1,1,"c.BLE_GATT_SVC_TYPE_SECONDARY"],BLE_GATT_SVC_UUID16:[30,1,1,"c.BLE_GATT_SVC_UUID16"],BLE_HS_CONN_HANDLE_NONE:[27,1,1,"c.BLE_HS_CONN_HANDLE_NONE"],BLE_HS_FOREVER:[27,1,1,"c.BLE_HS_FOREVER"],CONF_STR_FROM_BYTES_LEN:[116,1,1,"c.CONF_STR_FROM_BYTES_LEN"],CONF_VALUE_SET:[116,1,1,"c.CONF_VALUE_SET"],CPUTIME_GEQ:[99,1,1,"c.CPUTIME_GEQ"],CPUTIME_GT:[99,1,1,"c.CPUTIME_GT"],CPUTIME_LEQ:[99,1,1,"c.CPUTIME_LEQ"],CPUTIME_LT:[99,1,1,"c.CPUTIME_LT"],FCB_ERR_ARGS:[127,1,1,"c.FCB_ERR_ARGS"],FCB_ERR_CRC:[127,1,1,"c.FCB_ERR_CRC"],FCB_ERR_FLASH:[127,1,1,"c.FCB_ERR_FLASH"],FCB_ERR_MAGIC:[127,1,1,"c.FCB_ERR_MAGIC"],FCB_ERR_NOMEM:[127,1,1,"c.FCB_ERR_NOMEM"],FCB_ERR_NOSPACE:[127,1,1,"c.FCB_ERR_NOSPACE"],FCB_ERR_NOVAR:[127,1,1,"c.FCB_ERR_NOVAR"],FCB_ERR_VERSION:[127,1,1,"c.FCB_ERR_VERSION"],FCB_MAX_LEN:[127,1,1,"c.FCB_MAX_LEN"],FCB_OK:[127,1,1,"c.FCB_OK"],FIRST:[178,1,1,"c.FIRST"],FIRST_AUX:[178,1,1,"c.FIRST_AUX"],FS_ACCESS_APPEND:[139,1,1,"c.FS_ACCESS_APPEND"],FS_ACCESS_READ:[139,1,1,"c.FS_ACCESS_READ"],FS_ACCESS_TRUNCATE:[139,1,1,"c.FS_ACCESS_TRUNCATE"],FS_ACCESS_WRITE:[139,1,1,"c.FS_ACCESS_WRITE"],FS_EACCESS:[139,1,1,"c.FS_EACCESS"],FS_ECORRUPT:[139,1,1,"c.FS_ECORRUPT"],FS_EEMPTY:[139,1,1,"c.FS_EEMPTY"],FS_EEXIST:[139,1,1,"c.FS_EEXIST"],FS_EFULL:[139,1,1,"c.FS_EFULL"],FS_EHW:[139,1,1,"c.FS_EHW"],FS_EINVAL:[139,1,1,"c.FS_EINVAL"],FS_ENOENT:[139,1,1,"c.FS_ENOENT"],FS_ENOMEM:[139,1,1,"c.FS_ENOMEM"],FS_EOFFSET:[139,1,1,"c.FS_EOFFSET"],FS_EOK:[139,1,1,"c.FS_EOK"],FS_EOS:[139,1,1,"c.FS_EOS"],FS_EUNEXP:[139,1,1,"c.FS_EUNEXP"],FS_EUNINIT:[139,1,1,"c.FS_EUNINIT"],FS_NMGR_ID_FILE:[139,1,1,"c.FS_NMGR_ID_FILE"],FS_NMGR_MAX_NAME:[139,1,1,"c.FS_NMGR_MAX_NAME"],HAL_BSP_MAX_ID_LEN:[144,1,1,"c.HAL_BSP_MAX_ID_LEN"],HAL_BSP_POWER_DEEP_SLEEP:[144,1,1,"c.HAL_BSP_POWER_DEEP_SLEEP"],HAL_BSP_POWER_OFF:[144,1,1,"c.HAL_BSP_POWER_OFF"],HAL_BSP_POWER_ON:[144,1,1,"c.HAL_BSP_POWER_ON"],HAL_BSP_POWER_PERUSER:[144,1,1,"c.HAL_BSP_POWER_PERUSER"],HAL_BSP_POWER_SLEEP:[144,1,1,"c.HAL_BSP_POWER_SLEEP"],HAL_BSP_POWER_WFI:[144,1,1,"c.HAL_BSP_POWER_WFI"],HAL_I2C_ERR_ADDR_NACK:[149,1,1,"c.HAL_I2C_ERR_ADDR_NACK"],HAL_I2C_ERR_DATA_NACK:[149,1,1,"c.HAL_I2C_ERR_DATA_NACK"],HAL_I2C_ERR_INVAL:[149,1,1,"c.HAL_I2C_ERR_INVAL"],HAL_I2C_ERR_TIMEOUT:[149,1,1,"c.HAL_I2C_ERR_TIMEOUT"],HAL_I2C_ERR_UNKNOWN:[149,1,1,"c.HAL_I2C_ERR_UNKNOWN"],HAL_SPI_LSB_FIRST:[152,1,1,"c.HAL_SPI_LSB_FIRST"],HAL_SPI_MODE0:[152,1,1,"c.HAL_SPI_MODE0"],HAL_SPI_MODE1:[152,1,1,"c.HAL_SPI_MODE1"],HAL_SPI_MODE2:[152,1,1,"c.HAL_SPI_MODE2"],HAL_SPI_MODE3:[152,1,1,"c.HAL_SPI_MODE3"],HAL_SPI_MSB_FIRST:[152,1,1,"c.HAL_SPI_MSB_FIRST"],HAL_SPI_TYPE_MASTER:[152,1,1,"c.HAL_SPI_TYPE_MASTER"],HAL_SPI_TYPE_SLAVE:[152,1,1,"c.HAL_SPI_TYPE_SLAVE"],HAL_SPI_WORD_SIZE_8BIT:[152,1,1,"c.HAL_SPI_WORD_SIZE_8BIT"],HAL_SPI_WORD_SIZE_9BIT:[152,1,1,"c.HAL_SPI_WORD_SIZE_9BIT"],INT32_MAX:[113,1,1,"c.INT32_MAX"],JSON_ATTR_MAX:[161,1,1,"c.JSON_ATTR_MAX"],JSON_ERR_ARRAYSTART:[161,1,1,"c.JSON_ERR_ARRAYSTART"],JSON_ERR_ATTRLEN:[161,1,1,"c.JSON_ERR_ATTRLEN"],JSON_ERR_ATTRSTART:[161,1,1,"c.JSON_ERR_ATTRSTART"],JSON_ERR_BADATTR:[161,1,1,"c.JSON_ERR_BADATTR"],JSON_ERR_BADENUM:[161,1,1,"c.JSON_ERR_BADENUM"],JSON_ERR_BADNUM:[161,1,1,"c.JSON_ERR_BADNUM"],JSON_ERR_BADSTRING:[161,1,1,"c.JSON_ERR_BADSTRING"],JSON_ERR_BADSUBTRAIL:[161,1,1,"c.JSON_ERR_BADSUBTRAIL"],JSON_ERR_BADTRAIL:[161,1,1,"c.JSON_ERR_BADTRAIL"],JSON_ERR_CHECKFAIL:[161,1,1,"c.JSON_ERR_CHECKFAIL"],JSON_ERR_MISC:[161,1,1,"c.JSON_ERR_MISC"],JSON_ERR_NOARRAY:[161,1,1,"c.JSON_ERR_NOARRAY"],JSON_ERR_NOBRAK:[161,1,1,"c.JSON_ERR_NOBRAK"],JSON_ERR_NONQSTRING:[161,1,1,"c.JSON_ERR_NONQSTRING"],JSON_ERR_NOPARSTR:[161,1,1,"c.JSON_ERR_NOPARSTR"],JSON_ERR_NULLPTR:[161,1,1,"c.JSON_ERR_NULLPTR"],JSON_ERR_OBJARR:[161,1,1,"c.JSON_ERR_OBJARR"],JSON_ERR_OBSTART:[161,1,1,"c.JSON_ERR_OBSTART"],JSON_ERR_QNONSTRING:[161,1,1,"c.JSON_ERR_QNONSTRING"],JSON_ERR_STRLONG:[161,1,1,"c.JSON_ERR_STRLONG"],JSON_ERR_SUBTOOLONG:[161,1,1,"c.JSON_ERR_SUBTOOLONG"],JSON_ERR_SUBTYPE:[161,1,1,"c.JSON_ERR_SUBTYPE"],JSON_ERR_TOKLONG:[161,1,1,"c.JSON_ERR_TOKLONG"],JSON_NITEMS:[161,1,1,"c.JSON_NITEMS"],JSON_STRUCT_ARRAY:[161,1,1,"c.JSON_STRUCT_ARRAY"],JSON_STRUCT_OBJECT:[161,1,1,"c.JSON_STRUCT_OBJECT"],JSON_VALUE_BOOL:[161,1,1,"c.JSON_VALUE_BOOL"],JSON_VALUE_INT:[161,1,1,"c.JSON_VALUE_INT"],JSON_VALUE_STRING:[161,1,1,"c.JSON_VALUE_STRING"],JSON_VALUE_STRINGN:[161,1,1,"c.JSON_VALUE_STRINGN"],JSON_VALUE_TYPE_ARRAY:[161,1,1,"c.JSON_VALUE_TYPE_ARRAY"],JSON_VALUE_TYPE_BOOL:[161,1,1,"c.JSON_VALUE_TYPE_BOOL"],JSON_VALUE_TYPE_INT64:[161,1,1,"c.JSON_VALUE_TYPE_INT64"],JSON_VALUE_TYPE_OBJECT:[161,1,1,"c.JSON_VALUE_TYPE_OBJECT"],JSON_VALUE_TYPE_STRING:[161,1,1,"c.JSON_VALUE_TYPE_STRING"],JSON_VALUE_TYPE_UINT64:[161,1,1,"c.JSON_VALUE_TYPE_UINT64"],JSON_VALUE_UINT:[161,1,1,"c.JSON_VALUE_UINT"],JSON_VAL_MAX:[161,1,1,"c.JSON_VAL_MAX"],LOG_CRITICAL:[162,1,1,"c.LOG_CRITICAL"],LOG_DEBUG:[162,1,1,"c.LOG_DEBUG"],LOG_ENTRY_HDR_SIZE:[162,1,1,"c.LOG_ENTRY_HDR_SIZE"],LOG_ERROR:[162,1,1,"c.LOG_ERROR"],LOG_INFO:[162,1,1,"c.LOG_INFO"],LOG_MODULE_STR:[162,1,1,"c.LOG_MODULE_STR"],LOG_STATS_INC:[162,1,1,"c.LOG_STATS_INC"],LOG_STATS_INCN:[162,1,1,"c.LOG_STATS_INCN"],LOG_WARN:[162,1,1,"c.LOG_WARN"],NFFS_FILENAME_MAX_LEN:[141,1,1,"c.NFFS_FILENAME_MAX_LEN"],NFFS_MAX_AREAS:[141,1,1,"c.NFFS_MAX_AREAS"],NUM:[178,1,1,"c.NUM"],OS_EVENT_QUEUED:[100,1,1,"c.OS_EVENT_QUEUED"],OS_MBUF_DATA:[102,1,1,"c.OS_MBUF_DATA"],OS_MBUF_F_MASK:[102,1,1,"c.OS_MBUF_F_MASK"],OS_MBUF_IS_PKTHDR:[102,1,1,"c.OS_MBUF_IS_PKTHDR"],OS_MBUF_LEADINGSPACE:[102,1,1,"c.OS_MBUF_LEADINGSPACE"],OS_MBUF_PKTHDR:[102,1,1,"c.OS_MBUF_PKTHDR"],OS_MBUF_PKTHDR_TO_MBUF:[102,1,1,"c.OS_MBUF_PKTHDR_TO_MBUF"],OS_MBUF_PKTLEN:[102,1,1,"c.OS_MBUF_PKTLEN"],OS_MBUF_TRAILINGSPACE:[102,1,1,"c.OS_MBUF_TRAILINGSPACE"],OS_MBUF_USRHDR:[102,1,1,"c.OS_MBUF_USRHDR"],OS_MBUF_USRHDR_LEN:[102,1,1,"c.OS_MBUF_USRHDR_LEN"],OS_MEMPOOL_BLOCK_SZ:[103,1,1,"c.OS_MEMPOOL_BLOCK_SZ"],OS_MEMPOOL_BYTES:[103,1,1,"c.OS_MEMPOOL_BYTES"],OS_MEMPOOL_F_EXT:[103,1,1,"c.OS_MEMPOOL_F_EXT"],OS_MEMPOOL_INFO_NAME_LEN:[103,1,1,"c.OS_MEMPOOL_INFO_NAME_LEN"],OS_MEMPOOL_SIZE:[103,1,1,"c.OS_MEMPOOL_SIZE"],OS_SANITY_CHECK_SETFUNC:[110,1,1,"c.OS_SANITY_CHECK_SETFUNC"],OS_STIME_MAX:[113,1,1,"c.OS_STIME_MAX"],OS_TASK_FLAG_EVQ_WAIT:[112,1,1,"c.OS_TASK_FLAG_EVQ_WAIT"],OS_TASK_FLAG_MUTEX_WAIT:[112,1,1,"c.OS_TASK_FLAG_MUTEX_WAIT"],OS_TASK_FLAG_NO_TIMEOUT:[112,1,1,"c.OS_TASK_FLAG_NO_TIMEOUT"],OS_TASK_FLAG_SEM_WAIT:[112,1,1,"c.OS_TASK_FLAG_SEM_WAIT"],OS_TASK_MAX_NAME_LEN:[112,1,1,"c.OS_TASK_MAX_NAME_LEN"],OS_TASK_PRI_HIGHEST:[112,1,1,"c.OS_TASK_PRI_HIGHEST"],OS_TASK_PRI_LOWEST:[112,1,1,"c.OS_TASK_PRI_LOWEST"],OS_TASK_STACK_DEFINE:[112,1,1,"c.OS_TASK_STACK_DEFINE"],OS_TASK_STACK_DEFINE_NOSTATIC:[112,1,1,"c.OS_TASK_STACK_DEFINE_NOSTATIC"],OS_TIMEOUT_NEVER:[113,1,1,"c.OS_TIMEOUT_NEVER"],OS_TIMEVAL_GEQ:[113,1,1,"c.OS_TIMEVAL_GEQ"],OS_TIMEVAL_GT:[113,1,1,"c.OS_TIMEVAL_GT"],OS_TIMEVAL_LEQ:[113,1,1,"c.OS_TIMEVAL_LEQ"],OS_TIMEVAL_LT:[113,1,1,"c.OS_TIMEVAL_LT"],OS_TIME_MAX:[113,1,1,"c.OS_TIME_MAX"],OS_TIME_TICK_GEQ:[113,1,1,"c.OS_TIME_TICK_GEQ"],OS_TIME_TICK_GT:[113,1,1,"c.OS_TIME_TICK_GT"],OS_TIME_TICK_LT:[113,1,1,"c.OS_TIME_TICK_LT"],REST_OR_0:[178,1,1,"c.REST_OR_0"],REST_OR_0_AUX:[178,1,1,"c.REST_OR_0_AUX"],REST_OR_0_AUX_1:[178,1,1,"c.REST_OR_0_AUX_1"],REST_OR_0_AUX_INNER:[178,1,1,"c.REST_OR_0_AUX_INNER"],REST_OR_0_AUX_N:[178,1,1,"c.REST_OR_0_AUX_N"],SENSOR_DATA_CMP_GT:[163,1,1,"c.SENSOR_DATA_CMP_GT"],SENSOR_DATA_CMP_LT:[163,1,1,"c.SENSOR_DATA_CMP_LT"],SENSOR_GET_DEVICE:[163,1,1,"c.SENSOR_GET_DEVICE"],SENSOR_GET_ITF:[163,1,1,"c.SENSOR_GET_ITF"],SENSOR_IGN_LISTENER:[163,1,1,"c.SENSOR_IGN_LISTENER"],SENSOR_ITF_I2C:[163,1,1,"c.SENSOR_ITF_I2C"],SENSOR_ITF_SPI:[163,1,1,"c.SENSOR_ITF_SPI"],SENSOR_ITF_UART:[163,1,1,"c.SENSOR_ITF_UART"],SENSOR_THRESH_ALGO_USERDEF:[163,1,1,"c.SENSOR_THRESH_ALGO_USERDEF"],SENSOR_THRESH_ALGO_WATERMARK:[163,1,1,"c.SENSOR_THRESH_ALGO_WATERMARK"],SENSOR_THRESH_ALGO_WINDOW:[163,1,1,"c.SENSOR_THRESH_ALGO_WINDOW"],SENSOR_VALUE_TYPE_FLOAT:[163,1,1,"c.SENSOR_VALUE_TYPE_FLOAT"],SENSOR_VALUE_TYPE_FLOAT_TRIPLET:[163,1,1,"c.SENSOR_VALUE_TYPE_FLOAT_TRIPLET"],SENSOR_VALUE_TYPE_INT32:[163,1,1,"c.SENSOR_VALUE_TYPE_INT32"],SENSOR_VALUE_TYPE_INT32_TRIPLET:[163,1,1,"c.SENSOR_VALUE_TYPE_INT32_TRIPLET"],SENSOR_VALUE_TYPE_OPAQUE:[163,1,1,"c.SENSOR_VALUE_TYPE_OPAQUE"],SLIST_HEAD:[178,4,1,"c.SLIST_HEAD"],STANDARD_ACCEL_GRAVITY:[163,1,1,"c.STANDARD_ACCEL_GRAVITY"],STATS_CLEAR:[174,1,1,"c.STATS_CLEAR"],STATS_GET:[174,1,1,"c.STATS_GET"],STATS_HDR:[174,1,1,"c.STATS_HDR"],STATS_INC:[174,1,1,"c.STATS_INC"],STATS_INCN:[174,1,1,"c.STATS_INCN"],STATS_NAME:[174,1,1,"c.STATS_NAME"],STATS_NAME_END:[174,1,1,"c.STATS_NAME_END"],STATS_NAME_INIT_PARMS:[174,1,1,"c.STATS_NAME_INIT_PARMS"],STATS_NAME_MAP_NAME:[174,1,1,"c.STATS_NAME_MAP_NAME"],STATS_NAME_START:[174,1,1,"c.STATS_NAME_START"],STATS_RESET:[174,1,1,"c.STATS_RESET"],STATS_SECT_DECL:[174,1,1,"c.STATS_SECT_DECL"],STATS_SECT_END:[174,1,1,"c.STATS_SECT_END"],STATS_SECT_ENTRY16:[174,1,1,"c.STATS_SECT_ENTRY16"],STATS_SECT_ENTRY32:[174,1,1,"c.STATS_SECT_ENTRY32"],STATS_SECT_ENTRY64:[174,1,1,"c.STATS_SECT_ENTRY64"],STATS_SECT_ENTRY:[174,1,1,"c.STATS_SECT_ENTRY"],STATS_SECT_START:[174,1,1,"c.STATS_SECT_START"],STATS_SECT_VAR:[174,1,1,"c.STATS_SECT_VAR"],STATS_SIZE_16:[174,1,1,"c.STATS_SIZE_16"],STATS_SIZE_32:[174,1,1,"c.STATS_SIZE_32"],STATS_SIZE_64:[174,1,1,"c.STATS_SIZE_64"],STATS_SIZE_INIT_PARMS:[174,1,1,"c.STATS_SIZE_INIT_PARMS"],STR:[178,1,1,"c.STR"],TEST_ASSERT:[178,1,1,"c.TEST_ASSERT"],TEST_ASSERT_FATAL:[178,1,1,"c.TEST_ASSERT_FATAL"],TEST_ASSERT_FULL:[178,1,1,"c.TEST_ASSERT_FULL"],TEST_CASE:[178,1,1,"c.TEST_CASE"],TEST_CASE_DECL:[178,1,1,"c.TEST_CASE_DECL"],TEST_CASE_DEFN:[178,1,1,"c.TEST_CASE_DEFN"],TEST_CASE_TASK:[178,1,1,"c.TEST_CASE_TASK"],TEST_PASS:[178,1,1,"c.TEST_PASS"],TEST_SUITE:[178,1,1,"c.TEST_SUITE"],TEST_SUITE_DECL:[178,1,1,"c.TEST_SUITE_DECL"],TEST_SUITE_REGISTER:[178,1,1,"c.TEST_SUITE_REGISTER"],XSTR:[178,1,1,"c.XSTR"],_sbrk:[144,4,1,"c._sbrk"],ble_gap_adv_active:[28,4,1,"c.ble_gap_adv_active"],ble_gap_adv_params:[28,8,1,"_CPPv318ble_gap_adv_params"],ble_gap_adv_rsp_set_data:[28,4,1,"c.ble_gap_adv_rsp_set_data"],ble_gap_adv_rsp_set_fields:[28,4,1,"c.ble_gap_adv_rsp_set_fields"],ble_gap_adv_set_data:[28,4,1,"c.ble_gap_adv_set_data"],ble_gap_adv_set_fields:[28,4,1,"c.ble_gap_adv_set_fields"],ble_gap_adv_start:[28,4,1,"c.ble_gap_adv_start"],ble_gap_adv_stop:[28,4,1,"c.ble_gap_adv_stop"],ble_gap_conn_active:[28,4,1,"c.ble_gap_conn_active"],ble_gap_conn_cancel:[28,4,1,"c.ble_gap_conn_cancel"],ble_gap_conn_desc:[28,8,1,"_CPPv317ble_gap_conn_desc"],ble_gap_conn_find:[28,4,1,"c.ble_gap_conn_find"],ble_gap_conn_find_by_addr:[28,4,1,"c.ble_gap_conn_find_by_addr"],ble_gap_conn_rssi:[28,4,1,"c.ble_gap_conn_rssi"],ble_gap_connect:[28,4,1,"c.ble_gap_connect"],ble_gap_disc:[28,4,1,"c.ble_gap_disc"],ble_gap_disc_active:[28,4,1,"c.ble_gap_disc_active"],ble_gap_disc_cancel:[28,4,1,"c.ble_gap_disc_cancel"],ble_gap_encryption_initiate:[28,4,1,"c.ble_gap_encryption_initiate"],ble_gap_event:[28,8,1,"_CPPv313ble_gap_event"],ble_gap_event_fn:[28,5,1,"c.ble_gap_event_fn"],ble_gap_event_listener:[28,8,1,"_CPPv322ble_gap_event_listener"],ble_gap_event_listener_register:[28,4,1,"c.ble_gap_event_listener_register"],ble_gap_event_listener_unregister:[28,4,1,"c.ble_gap_event_listener_unregister"],ble_gap_ext_adv_configure:[28,4,1,"c.ble_gap_ext_adv_configure"],ble_gap_ext_adv_remove:[28,4,1,"c.ble_gap_ext_adv_remove"],ble_gap_ext_adv_rsp_set_data:[28,4,1,"c.ble_gap_ext_adv_rsp_set_data"],ble_gap_ext_adv_set_addr:[28,4,1,"c.ble_gap_ext_adv_set_addr"],ble_gap_ext_adv_set_data:[28,4,1,"c.ble_gap_ext_adv_set_data"],ble_gap_ext_adv_start:[28,4,1,"c.ble_gap_ext_adv_start"],ble_gap_ext_adv_stop:[28,4,1,"c.ble_gap_ext_adv_stop"],ble_gap_ext_connect:[28,4,1,"c.ble_gap_ext_connect"],ble_gap_ext_disc:[28,4,1,"c.ble_gap_ext_disc"],ble_gap_mesh_cb_register:[28,4,1,"c.ble_gap_mesh_cb_register"],ble_gap_pair_initiate:[28,4,1,"c.ble_gap_pair_initiate"],ble_gap_read_le_phy:[28,4,1,"c.ble_gap_read_le_phy"],ble_gap_repeat_pairing:[28,8,1,"_CPPv322ble_gap_repeat_pairing"],ble_gap_sec_state:[28,8,1,"_CPPv317ble_gap_sec_state"],ble_gap_security_initiate:[28,4,1,"c.ble_gap_security_initiate"],ble_gap_set_event_cb:[28,4,1,"c.ble_gap_set_event_cb"],ble_gap_set_prefered_default_le_phy:[28,4,1,"c.ble_gap_set_prefered_default_le_phy"],ble_gap_set_prefered_le_phy:[28,4,1,"c.ble_gap_set_prefered_le_phy"],ble_gap_set_priv_mode:[28,4,1,"c.ble_gap_set_priv_mode"],ble_gap_terminate:[28,4,1,"c.ble_gap_terminate"],ble_gap_unpair:[28,4,1,"c.ble_gap_unpair"],ble_gap_unpair_oldest_peer:[28,4,1,"c.ble_gap_unpair_oldest_peer"],ble_gap_update_params:[28,4,1,"c.ble_gap_update_params"],ble_gap_wl_set:[28,4,1,"c.ble_gap_wl_set"],ble_gatt_access_ctxt:[30,8,1,"_CPPv320ble_gatt_access_ctxt"],ble_gatt_access_fn:[30,5,1,"c.ble_gatt_access_fn"],ble_gatt_attr_fn:[30,5,1,"c.ble_gatt_attr_fn"],ble_gatt_chr_def:[30,8,1,"_CPPv316ble_gatt_chr_def"],ble_gatt_chr_flags:[30,5,1,"c.ble_gatt_chr_flags"],ble_gatt_chr_fn:[30,5,1,"c.ble_gatt_chr_fn"],ble_gatt_disc_svc_fn:[30,5,1,"c.ble_gatt_disc_svc_fn"],ble_gatt_dsc_def:[30,8,1,"_CPPv316ble_gatt_dsc_def"],ble_gatt_dsc_fn:[30,5,1,"c.ble_gatt_dsc_fn"],ble_gatt_mtu_fn:[30,5,1,"c.ble_gatt_mtu_fn"],ble_gatt_register_ctxt:[30,8,1,"_CPPv322ble_gatt_register_ctxt"],ble_gatt_register_fn:[30,5,1,"c.ble_gatt_register_fn"],ble_gatt_reliable_attr_fn:[30,5,1,"c.ble_gatt_reliable_attr_fn"],ble_gatt_svc_def:[30,8,1,"_CPPv316ble_gatt_svc_def"],ble_gatt_svc_foreach_fn:[30,5,1,"c.ble_gatt_svc_foreach_fn"],ble_gattc_disc_all_chrs:[30,4,1,"c.ble_gattc_disc_all_chrs"],ble_gattc_disc_all_dscs:[30,4,1,"c.ble_gattc_disc_all_dscs"],ble_gattc_disc_all_svcs:[30,4,1,"c.ble_gattc_disc_all_svcs"],ble_gattc_disc_chrs_by_uuid:[30,4,1,"c.ble_gattc_disc_chrs_by_uuid"],ble_gattc_disc_svc_by_uuid:[30,4,1,"c.ble_gattc_disc_svc_by_uuid"],ble_gattc_exchange_mtu:[30,4,1,"c.ble_gattc_exchange_mtu"],ble_gattc_find_inc_svcs:[30,4,1,"c.ble_gattc_find_inc_svcs"],ble_gattc_indicate:[30,4,1,"c.ble_gattc_indicate"],ble_gattc_indicate_custom:[30,4,1,"c.ble_gattc_indicate_custom"],ble_gattc_init:[30,4,1,"c.ble_gattc_init"],ble_gattc_notify:[30,4,1,"c.ble_gattc_notify"],ble_gattc_notify_custom:[30,4,1,"c.ble_gattc_notify_custom"],ble_gattc_read:[30,4,1,"c.ble_gattc_read"],ble_gattc_read_by_uuid:[30,4,1,"c.ble_gattc_read_by_uuid"],ble_gattc_read_long:[30,4,1,"c.ble_gattc_read_long"],ble_gattc_read_mult:[30,4,1,"c.ble_gattc_read_mult"],ble_gattc_write:[30,4,1,"c.ble_gattc_write"],ble_gattc_write_flat:[30,4,1,"c.ble_gattc_write_flat"],ble_gattc_write_long:[30,4,1,"c.ble_gattc_write_long"],ble_gattc_write_no_rsp:[30,4,1,"c.ble_gattc_write_no_rsp"],ble_gattc_write_no_rsp_flat:[30,4,1,"c.ble_gattc_write_no_rsp_flat"],ble_gattc_write_reliable:[30,4,1,"c.ble_gattc_write_reliable"],ble_gatts_add_svcs:[30,4,1,"c.ble_gatts_add_svcs"],ble_gatts_chr_updated:[30,4,1,"c.ble_gatts_chr_updated"],ble_gatts_count_cfg:[30,4,1,"c.ble_gatts_count_cfg"],ble_gatts_find_chr:[30,4,1,"c.ble_gatts_find_chr"],ble_gatts_find_dsc:[30,4,1,"c.ble_gatts_find_dsc"],ble_gatts_find_svc:[30,4,1,"c.ble_gatts_find_svc"],ble_gatts_reset:[30,4,1,"c.ble_gatts_reset"],ble_gatts_show_local:[30,4,1,"c.ble_gatts_show_local"],ble_gatts_start:[30,4,1,"c.ble_gatts_start"],ble_gatts_svc_set_visibility:[30,4,1,"c.ble_gatts_svc_set_visibility"],ble_hs_evq_set:[27,4,1,"c.ble_hs_evq_set"],ble_hs_init:[27,4,1,"c.ble_hs_init"],ble_hs_sched_reset:[27,4,1,"c.ble_hs_sched_reset"],ble_hs_start:[27,4,1,"c.ble_hs_start"],ble_hs_synced:[27,4,1,"c.ble_hs_synced"],completion_cb:[117,5,1,"c.completion_cb"],conf_bytes_from_str:[116,4,1,"c.conf_bytes_from_str"],conf_commit:[116,4,1,"c.conf_commit"],conf_commit_handler_t:[116,5,1,"c.conf_commit_handler_t"],conf_dst_register:[116,4,1,"c.conf_dst_register"],conf_ensure_loaded:[116,4,1,"c.conf_ensure_loaded"],conf_export_func_t:[116,5,1,"c.conf_export_func_t"],conf_export_handler_t:[116,5,1,"c.conf_export_handler_t"],conf_export_tgt_t:[116,5,1,"c.conf_export_tgt_t"],conf_get_handler_t:[116,5,1,"c.conf_get_handler_t"],conf_get_stored_value:[116,4,1,"c.conf_get_stored_value"],conf_get_value:[116,4,1,"c.conf_get_value"],conf_handler:[116,8,1,"_CPPv312conf_handler"],conf_init:[116,4,1,"c.conf_init"],conf_load:[116,4,1,"c.conf_load"],conf_register:[116,4,1,"c.conf_register"],conf_save:[116,4,1,"c.conf_save"],conf_save_one:[116,4,1,"c.conf_save_one"],conf_save_tree:[116,4,1,"c.conf_save_tree"],conf_set_from_storage:[116,4,1,"c.conf_set_from_storage"],conf_set_handler_t:[116,5,1,"c.conf_set_handler_t"],conf_set_value:[116,4,1,"c.conf_set_value"],conf_src_register:[116,4,1,"c.conf_src_register"],conf_store_init:[116,4,1,"c.conf_store_init"],conf_store_load_cb:[116,5,1,"c.conf_store_load_cb"],conf_str_from_bytes:[116,4,1,"c.conf_str_from_bytes"],conf_str_from_value:[116,4,1,"c.conf_str_from_value"],conf_value_from_str:[116,4,1,"c.conf_value_from_str"],console_append_char_cb:[117,5,1,"c.console_append_char_cb"],console_blocking_mode:[117,4,1,"c.console_blocking_mode"],console_echo:[117,4,1,"c.console_echo"],console_handle_char:[117,4,1,"c.console_handle_char"],console_init:[117,4,1,"c.console_init"],console_input:[117,6,1,"c.console_input"],console_is_init:[117,4,1,"c.console_is_init"],console_is_midline:[117,0,1,"c.console_is_midline"],console_line_event_put:[117,4,1,"c.console_line_event_put"],console_line_queue_set:[117,4,1,"c.console_line_queue_set"],console_non_blocking_mode:[117,4,1,"c.console_non_blocking_mode"],console_out:[117,4,1,"c.console_out"],console_printf:[117,4,1,"c.console_printf"],console_read:[117,4,1,"c.console_read"],console_rx_cb:[117,5,1,"c.console_rx_cb"],console_rx_restart:[117,4,1,"c.console_rx_restart"],console_set_completion_cb:[117,4,1,"c.console_set_completion_cb"],console_silence:[117,4,1,"c.console_silence"],console_write:[117,4,1,"c.console_write"],fcb_append:[127,4,1,"c.fcb_append"],fcb_append_finish:[127,4,1,"c.fcb_append_finish"],fcb_append_to_scratch:[127,4,1,"c.fcb_append_to_scratch"],fcb_area_info:[127,4,1,"c.fcb_area_info"],fcb_clear:[127,4,1,"c.fcb_clear"],fcb_entry:[127,8,1,"_CPPv39fcb_entry"],fcb_free_sector_cnt:[127,4,1,"c.fcb_free_sector_cnt"],fcb_getnext:[127,4,1,"c.fcb_getnext"],fcb_init:[127,4,1,"c.fcb_init"],fcb_is_empty:[127,4,1,"c.fcb_is_empty"],fcb_log:[127,8,1,"_CPPv37fcb_log"],fcb_offset_last_n:[127,4,1,"c.fcb_offset_last_n"],fcb_rotate:[127,4,1,"c.fcb_rotate"],fcb_walk:[127,4,1,"c.fcb_walk"],fcb_walk_cb:[127,5,1,"c.fcb_walk_cb"],fops_container:[140,6,1,"c.fops_container"],fs_close:[139,4,1,"c.fs_close"],fs_closedir:[139,4,1,"c.fs_closedir"],fs_dirent_is_dir:[139,4,1,"c.fs_dirent_is_dir"],fs_dirent_name:[139,4,1,"c.fs_dirent_name"],fs_filelen:[139,4,1,"c.fs_filelen"],fs_getpos:[139,4,1,"c.fs_getpos"],fs_mkdir:[139,4,1,"c.fs_mkdir"],fs_open:[139,4,1,"c.fs_open"],fs_opendir:[139,4,1,"c.fs_opendir"],fs_ops:[140,6,1,"c.fs_ops"],fs_ops_for:[140,4,1,"c.fs_ops_for"],fs_ops_from_container:[140,4,1,"c.fs_ops_from_container"],fs_ops_try_unique:[140,4,1,"c.fs_ops_try_unique"],fs_read:[139,4,1,"c.fs_read"],fs_readdir:[139,4,1,"c.fs_readdir"],fs_register:[140,4,1,"c.fs_register"],fs_rename:[139,4,1,"c.fs_rename"],fs_seek:[139,4,1,"c.fs_seek"],fs_unlink:[139,4,1,"c.fs_unlink"],fs_write:[139,4,1,"c.fs_write"],fsutil_read_file:[139,4,1,"c.fsutil_read_file"],fsutil_write_file:[139,4,1,"c.fsutil_write_file"],g_silence_console:[117,0,1,"c.g_silence_console"],g_ts_suites:[178,0,1,"c.g_ts_suites"],hal_bsp_core_dump:[144,4,1,"c.hal_bsp_core_dump"],hal_bsp_flash_dev:[144,4,1,"c.hal_bsp_flash_dev"],hal_bsp_get_nvic_priority:[144,4,1,"c.hal_bsp_get_nvic_priority"],hal_bsp_hw_id:[144,4,1,"c.hal_bsp_hw_id"],hal_bsp_hw_id_len:[144,4,1,"c.hal_bsp_hw_id_len"],hal_bsp_init:[144,4,1,"c.hal_bsp_init"],hal_bsp_power_state:[144,4,1,"c.hal_bsp_power_state"],hal_debugger_connected:[153,4,1,"c.hal_debugger_connected"],hal_flash_align:[146,4,1,"c.hal_flash_align"],hal_flash_erase:[146,4,1,"c.hal_flash_erase"],hal_flash_erase_sector:[146,4,1,"c.hal_flash_erase_sector"],hal_flash_erased_val:[146,4,1,"c.hal_flash_erased_val"],hal_flash_init:[146,4,1,"c.hal_flash_init"],hal_flash_ioctl:[146,4,1,"c.hal_flash_ioctl"],hal_flash_isempty:[146,4,1,"c.hal_flash_isempty"],hal_flash_isempty_no_buf:[146,4,1,"c.hal_flash_isempty_no_buf"],hal_flash_read:[146,4,1,"c.hal_flash_read"],hal_flash_write:[146,4,1,"c.hal_flash_write"],hal_gpio_init_in:[148,4,1,"c.hal_gpio_init_in"],hal_gpio_init_out:[148,4,1,"c.hal_gpio_init_out"],hal_gpio_irq_disable:[148,4,1,"c.hal_gpio_irq_disable"],hal_gpio_irq_enable:[148,4,1,"c.hal_gpio_irq_enable"],hal_gpio_irq_handler_t:[148,5,1,"c.hal_gpio_irq_handler_t"],hal_gpio_irq_init:[148,4,1,"c.hal_gpio_irq_init"],hal_gpio_irq_release:[148,4,1,"c.hal_gpio_irq_release"],hal_gpio_irq_trig_t:[148,5,1,"c.hal_gpio_irq_trig_t"],hal_gpio_mode_t:[148,5,1,"c.hal_gpio_mode_t"],hal_gpio_pull_t:[148,5,1,"c.hal_gpio_pull_t"],hal_gpio_read:[148,4,1,"c.hal_gpio_read"],hal_gpio_toggle:[148,4,1,"c.hal_gpio_toggle"],hal_gpio_write:[148,4,1,"c.hal_gpio_write"],hal_i2c_init:[149,4,1,"c.hal_i2c_init"],hal_i2c_master_data:[149,8,1,"_CPPv319hal_i2c_master_data"],hal_i2c_master_probe:[149,4,1,"c.hal_i2c_master_probe"],hal_i2c_master_read:[149,4,1,"c.hal_i2c_master_read"],hal_i2c_master_write:[149,4,1,"c.hal_i2c_master_write"],hal_reset_cause:[153,4,1,"c.hal_reset_cause"],hal_reset_cause_str:[153,4,1,"c.hal_reset_cause_str"],hal_spi_abort:[152,4,1,"c.hal_spi_abort"],hal_spi_config:[152,4,1,"c.hal_spi_config"],hal_spi_data_mode_breakout:[152,4,1,"c.hal_spi_data_mode_breakout"],hal_spi_disable:[152,4,1,"c.hal_spi_disable"],hal_spi_enable:[152,4,1,"c.hal_spi_enable"],hal_spi_init:[152,4,1,"c.hal_spi_init"],hal_spi_set_txrx_cb:[152,4,1,"c.hal_spi_set_txrx_cb"],hal_spi_settings:[152,8,1,"_CPPv316hal_spi_settings"],hal_spi_slave_set_def_tx_val:[152,4,1,"c.hal_spi_slave_set_def_tx_val"],hal_spi_tx_val:[152,4,1,"c.hal_spi_tx_val"],hal_spi_txrx:[152,4,1,"c.hal_spi_txrx"],hal_spi_txrx_cb:[152,5,1,"c.hal_spi_txrx_cb"],hal_spi_txrx_noblock:[152,4,1,"c.hal_spi_txrx_noblock"],hal_system_clock_start:[153,4,1,"c.hal_system_clock_start"],hal_system_reset:[153,4,1,"c.hal_system_reset"],hal_system_restart:[153,4,1,"c.hal_system_restart"],hal_system_start:[153,4,1,"c.hal_system_start"],hal_timer:[154,8,1,"_CPPv39hal_timer"],hal_timer_cb:[154,5,1,"c.hal_timer_cb"],hal_timer_config:[154,4,1,"c.hal_timer_config"],hal_timer_deinit:[154,4,1,"c.hal_timer_deinit"],hal_timer_delay:[154,4,1,"c.hal_timer_delay"],hal_timer_get_resolution:[154,4,1,"c.hal_timer_get_resolution"],hal_timer_init:[154,4,1,"c.hal_timer_init"],hal_timer_read:[154,4,1,"c.hal_timer_read"],hal_timer_set_cb:[154,4,1,"c.hal_timer_set_cb"],hal_timer_start:[154,4,1,"c.hal_timer_start"],hal_timer_start_at:[154,4,1,"c.hal_timer_start_at"],hal_timer_stop:[154,4,1,"c.hal_timer_stop"],hal_uart_blocking_tx:[155,4,1,"c.hal_uart_blocking_tx"],hal_uart_close:[155,4,1,"c.hal_uart_close"],hal_uart_config:[155,4,1,"c.hal_uart_config"],hal_uart_init:[155,4,1,"c.hal_uart_init"],hal_uart_init_cbs:[155,4,1,"c.hal_uart_init_cbs"],hal_uart_rx_char:[155,5,1,"c.hal_uart_rx_char"],hal_uart_start_rx:[155,4,1,"c.hal_uart_start_rx"],hal_uart_start_tx:[155,4,1,"c.hal_uart_start_tx"],hal_uart_tx_char:[155,5,1,"c.hal_uart_tx_char"],hal_uart_tx_done:[155,5,1,"c.hal_uart_tx_done"],hal_watchdog_enable:[156,4,1,"c.hal_watchdog_enable"],hal_watchdog_init:[156,4,1,"c.hal_watchdog_init"],hal_watchdog_tickle:[156,4,1,"c.hal_watchdog_tickle"],json_array_t:[161,6,1,"c.json_array_t"],json_attr_t:[161,6,1,"c.json_attr_t"],json_buffer:[161,6,1,"c.json_buffer"],json_buffer_read_next_byte_t:[161,5,1,"c.json_buffer_read_next_byte_t"],json_buffer_read_prev_byte_t:[161,5,1,"c.json_buffer_read_prev_byte_t"],json_buffer_readn_t:[161,5,1,"c.json_buffer_readn_t"],json_encode_array_finish:[161,4,1,"c.json_encode_array_finish"],json_encode_array_name:[161,4,1,"c.json_encode_array_name"],json_encode_array_start:[161,4,1,"c.json_encode_array_start"],json_encode_array_value:[161,4,1,"c.json_encode_array_value"],json_encode_object_entry:[161,4,1,"c.json_encode_object_entry"],json_encode_object_finish:[161,4,1,"c.json_encode_object_finish"],json_encode_object_key:[161,4,1,"c.json_encode_object_key"],json_encode_object_start:[161,4,1,"c.json_encode_object_start"],json_encoder:[161,6,1,"c.json_encoder"],json_enum_t:[161,6,1,"c.json_enum_t"],json_read_array:[161,4,1,"c.json_read_array"],json_read_object:[161,4,1,"c.json_read_object"],json_type:[161,3,1,"c.json_type"],json_value:[161,6,1,"c.json_value"],json_write_func_t:[161,5,1,"c.json_write_func_t"],lh_append_body_func_t:[162,5,1,"c.lh_append_body_func_t"],lh_append_func_t:[162,5,1,"c.lh_append_func_t"],lh_append_mbuf_body_func_t:[162,5,1,"c.lh_append_mbuf_body_func_t"],lh_append_mbuf_func_t:[162,5,1,"c.lh_append_mbuf_func_t"],lh_flush_func_t:[162,5,1,"c.lh_flush_func_t"],lh_read_func_t:[162,5,1,"c.lh_read_func_t"],lh_read_mbuf_func_t:[162,5,1,"c.lh_read_mbuf_func_t"],lh_registered_func_t:[162,5,1,"c.lh_registered_func_t"],lh_set_watermark_func_t:[162,5,1,"c.lh_set_watermark_func_t"],lh_storage_info_func_t:[162,5,1,"c.lh_storage_info_func_t"],lh_walk_func_t:[162,5,1,"c.lh_walk_func_t"],log:[162,6,1,"c.log"],log_append:[162,4,1,"c.log_append"],log_append_body:[162,4,1,"c.log_append_body"],log_append_mbuf:[162,4,1,"c.log_append_mbuf"],log_append_mbuf_body:[162,4,1,"c.log_append_mbuf_body"],log_append_mbuf_body_no_free:[162,4,1,"c.log_append_mbuf_body_no_free"],log_append_mbuf_no_free:[162,4,1,"c.log_append_mbuf_no_free"],log_append_mbuf_typed:[162,4,1,"c.log_append_mbuf_typed"],log_append_mbuf_typed_no_free:[162,4,1,"c.log_append_mbuf_typed_no_free"],log_append_typed:[162,4,1,"c.log_append_typed"],log_cbmem_handler:[162,0,1,"c.log_cbmem_handler"],log_console_get:[162,4,1,"c.log_console_get"],log_console_handler:[162,0,1,"c.log_console_handler"],log_console_init:[162,4,1,"c.log_console_init"],log_fcb_handler:[162,0,1,"c.log_fcb_handler"],log_fcb_slot1_handler:[162,0,1,"c.log_fcb_slot1_handler"],log_find:[162,4,1,"c.log_find"],log_flush:[162,4,1,"c.log_flush"],log_handler:[162,6,1,"c.log_handler"],log_init:[162,4,1,"c.log_init"],log_level_get:[162,4,1,"c.log_level_get"],log_level_set:[162,4,1,"c.log_level_set"],log_list_get_next:[162,4,1,"c.log_list_get_next"],log_module_get_name:[162,4,1,"c.log_module_get_name"],log_module_register:[162,4,1,"c.log_module_register"],log_nmgr_register_group:[162,4,1,"c.log_nmgr_register_group"],log_offset:[162,6,1,"c.log_offset"],log_printf:[162,4,1,"c.log_printf"],log_read:[162,4,1,"c.log_read"],log_read_body:[162,4,1,"c.log_read_body"],log_read_hdr:[162,4,1,"c.log_read_hdr"],log_read_mbuf:[162,4,1,"c.log_read_mbuf"],log_read_mbuf_body:[162,4,1,"c.log_read_mbuf_body"],log_register:[162,4,1,"c.log_register"],log_set_append_cb:[162,4,1,"c.log_set_append_cb"],log_set_watermark:[162,4,1,"c.log_set_watermark"],log_storage_info:[162,4,1,"c.log_storage_info"],log_walk:[162,4,1,"c.log_walk"],log_walk_body:[162,4,1,"c.log_walk_body"],log_walk_body_func_t:[162,5,1,"c.log_walk_body_func_t"],log_walk_func_t:[162,5,1,"c.log_walk_func_t"],nffs_area_desc:[141,6,1,"c.nffs_area_desc"],nffs_config:[141,0,1,"c.nffs_config"],nffs_detect:[141,4,1,"c.nffs_detect"],nffs_format:[141,4,1,"c.nffs_format"],nffs_init:[141,4,1,"c.nffs_init"],nffs_misc_desc_from_flash_area:[141,4,1,"c.nffs_misc_desc_from_flash_area"],os_callout:[97,8,1,"_CPPv310os_callout"],os_callout_init:[97,4,1,"c.os_callout_init"],os_callout_queued:[97,4,1,"c.os_callout_queued"],os_callout_remaining_ticks:[97,4,1,"c.os_callout_remaining_ticks"],os_callout_reset:[97,4,1,"c.os_callout_reset"],os_callout_stop:[97,4,1,"c.os_callout_stop"],os_cputime_delay_nsecs:[99,4,1,"c.os_cputime_delay_nsecs"],os_cputime_delay_ticks:[99,4,1,"c.os_cputime_delay_ticks"],os_cputime_delay_usecs:[99,4,1,"c.os_cputime_delay_usecs"],os_cputime_get32:[99,4,1,"c.os_cputime_get32"],os_cputime_init:[99,4,1,"c.os_cputime_init"],os_cputime_nsecs_to_ticks:[99,4,1,"c.os_cputime_nsecs_to_ticks"],os_cputime_ticks_to_nsecs:[99,4,1,"c.os_cputime_ticks_to_nsecs"],os_cputime_ticks_to_usecs:[99,4,1,"c.os_cputime_ticks_to_usecs"],os_cputime_timer_init:[99,4,1,"c.os_cputime_timer_init"],os_cputime_timer_relative:[99,4,1,"c.os_cputime_timer_relative"],os_cputime_timer_start:[99,4,1,"c.os_cputime_timer_start"],os_cputime_timer_stop:[99,4,1,"c.os_cputime_timer_stop"],os_cputime_usecs_to_ticks:[99,4,1,"c.os_cputime_usecs_to_ticks"],os_event:[100,8,1,"_CPPv38os_event"],os_event_fn:[100,5,1,"c.os_event_fn"],os_eventq:[100,8,1,"_CPPv39os_eventq"],os_eventq_dflt_get:[100,4,1,"c.os_eventq_dflt_get"],os_eventq_get:[100,4,1,"c.os_eventq_get"],os_eventq_get_no_wait:[100,4,1,"c.os_eventq_get_no_wait"],os_eventq_init:[100,4,1,"c.os_eventq_init"],os_eventq_inited:[100,4,1,"c.os_eventq_inited"],os_eventq_poll:[100,4,1,"c.os_eventq_poll"],os_eventq_put:[100,4,1,"c.os_eventq_put"],os_eventq_remove:[100,4,1,"c.os_eventq_remove"],os_eventq_run:[100,4,1,"c.os_eventq_run"],os_get_uptime:[113,4,1,"c.os_get_uptime"],os_get_uptime_usec:[113,4,1,"c.os_get_uptime_usec"],os_gettimeofday:[113,4,1,"c.os_gettimeofday"],os_mbuf:[102,8,1,"_CPPv37os_mbuf"],os_mbuf_adj:[102,4,1,"c.os_mbuf_adj"],os_mbuf_append:[102,4,1,"c.os_mbuf_append"],os_mbuf_appendfrom:[102,4,1,"c.os_mbuf_appendfrom"],os_mbuf_cmpf:[102,4,1,"c.os_mbuf_cmpf"],os_mbuf_cmpm:[102,4,1,"c.os_mbuf_cmpm"],os_mbuf_concat:[102,4,1,"c.os_mbuf_concat"],os_mbuf_copydata:[102,4,1,"c.os_mbuf_copydata"],os_mbuf_copyinto:[102,4,1,"c.os_mbuf_copyinto"],os_mbuf_dup:[102,4,1,"c.os_mbuf_dup"],os_mbuf_extend:[102,4,1,"c.os_mbuf_extend"],os_mbuf_free:[102,4,1,"c.os_mbuf_free"],os_mbuf_free_chain:[102,4,1,"c.os_mbuf_free_chain"],os_mbuf_get:[102,4,1,"c.os_mbuf_get"],os_mbuf_get_pkthdr:[102,4,1,"c.os_mbuf_get_pkthdr"],os_mbuf_len:[102,4,1,"c.os_mbuf_len"],os_mbuf_off:[102,4,1,"c.os_mbuf_off"],os_mbuf_pkthdr:[102,8,1,"_CPPv314os_mbuf_pkthdr"],os_mbuf_pool:[102,8,1,"_CPPv312os_mbuf_pool"],os_mbuf_pool_init:[102,4,1,"c.os_mbuf_pool_init"],os_mbuf_prepend:[102,4,1,"c.os_mbuf_prepend"],os_mbuf_prepend_pullup:[102,4,1,"c.os_mbuf_prepend_pullup"],os_mbuf_pullup:[102,4,1,"c.os_mbuf_pullup"],os_mbuf_trim_front:[102,4,1,"c.os_mbuf_trim_front"],os_mbuf_widen:[102,4,1,"c.os_mbuf_widen"],os_memblock:[103,8,1,"_CPPv311os_memblock"],os_memblock_from:[103,4,1,"c.os_memblock_from"],os_memblock_get:[103,4,1,"c.os_memblock_get"],os_memblock_put:[103,4,1,"c.os_memblock_put"],os_memblock_put_from_cb:[103,4,1,"c.os_memblock_put_from_cb"],os_membuf_t:[103,5,1,"c.os_membuf_t"],os_mempool:[103,8,1,"_CPPv310os_mempool"],os_mempool_clear:[103,4,1,"c.os_mempool_clear"],os_mempool_ext_init:[103,4,1,"c.os_mempool_ext_init"],os_mempool_info:[103,8,1,"_CPPv315os_mempool_info"],os_mempool_info_get_next:[103,4,1,"c.os_mempool_info_get_next"],os_mempool_init:[103,4,1,"c.os_mempool_init"],os_mempool_is_sane:[103,4,1,"c.os_mempool_is_sane"],os_mempool_put_fn:[103,5,1,"c.os_mempool_put_fn"],os_mempool_unregister:[103,4,1,"c.os_mempool_unregister"],os_mqueue:[102,8,1,"_CPPv39os_mqueue"],os_mqueue_get:[102,4,1,"c.os_mqueue_get"],os_mqueue_init:[102,4,1,"c.os_mqueue_init"],os_mqueue_put:[102,4,1,"c.os_mqueue_put"],os_msys_count:[102,4,1,"c.os_msys_count"],os_msys_get:[102,4,1,"c.os_msys_get"],os_msys_get_pkthdr:[102,4,1,"c.os_msys_get_pkthdr"],os_msys_num_free:[102,4,1,"c.os_msys_num_free"],os_msys_register:[102,4,1,"c.os_msys_register"],os_msys_reset:[102,4,1,"c.os_msys_reset"],os_mutex:[104,8,1,"_CPPv38os_mutex"],os_mutex_init:[104,4,1,"c.os_mutex_init"],os_mutex_pend:[104,4,1,"c.os_mutex_pend"],os_mutex_release:[104,4,1,"c.os_mutex_release"],os_sanity_check:[110,8,1,"_CPPv315os_sanity_check"],os_sanity_check_func_t:[110,5,1,"c.os_sanity_check_func_t"],os_sanity_check_init:[110,4,1,"c.os_sanity_check_init"],os_sanity_check_register:[110,4,1,"c.os_sanity_check_register"],os_sanity_check_reset:[110,4,1,"c.os_sanity_check_reset"],os_sanity_task_checkin:[110,4,1,"c.os_sanity_task_checkin"],os_sched:[98,4,1,"c.os_sched"],os_sched_get_current_task:[98,4,1,"c.os_sched_get_current_task"],os_sched_next_task:[98,4,1,"c.os_sched_next_task"],os_sched_set_current_task:[98,4,1,"c.os_sched_set_current_task"],os_sem:[111,8,1,"_CPPv36os_sem"],os_sem_get_count:[111,4,1,"c.os_sem_get_count"],os_sem_init:[111,4,1,"c.os_sem_init"],os_sem_pend:[111,4,1,"c.os_sem_pend"],os_sem_release:[111,4,1,"c.os_sem_release"],os_settimeofday:[113,4,1,"c.os_settimeofday"],os_stime_t:[113,5,1,"c.os_stime_t"],os_task:[112,8,1,"_CPPv37os_task"],os_task_count:[112,4,1,"c.os_task_count"],os_task_func_t:[112,5,1,"c.os_task_func_t"],os_task_info:[112,8,1,"_CPPv312os_task_info"],os_task_info_get_next:[112,4,1,"c.os_task_info_get_next"],os_task_init:[112,4,1,"c.os_task_init"],os_task_remove:[112,4,1,"c.os_task_remove"],os_task_state_t:[112,5,1,"c.os_task_state_t"],os_tick_idle:[151,4,1,"c.os_tick_idle"],os_tick_init:[151,4,1,"c.os_tick_init"],os_time_advance:[113,4,1,"c.os_time_advance"],os_time_change_fn:[113,5,1,"c.os_time_change_fn"],os_time_change_info:[113,8,1,"_CPPv319os_time_change_info"],os_time_change_listen:[113,4,1,"c.os_time_change_listen"],os_time_change_listener:[113,8,1,"_CPPv323os_time_change_listener"],os_time_change_remove:[113,4,1,"c.os_time_change_remove"],os_time_delay:[113,4,1,"c.os_time_delay"],os_time_get:[113,4,1,"c.os_time_get"],os_time_is_set:[113,4,1,"c.os_time_is_set"],os_time_ms_to_ticks32:[113,4,1,"c.os_time_ms_to_ticks32"],os_time_ms_to_ticks:[113,4,1,"c.os_time_ms_to_ticks"],os_time_t:[113,5,1,"c.os_time_t"],os_time_ticks_to_ms32:[113,4,1,"c.os_time_ticks_to_ms32"],os_time_ticks_to_ms:[113,4,1,"c.os_time_ticks_to_ms"],os_timeradd:[113,1,1,"c.os_timeradd"],os_timersub:[113,1,1,"c.os_timersub"],os_timeval:[113,8,1,"_CPPv310os_timeval"],os_timezone:[113,8,1,"_CPPv311os_timezone"],sensor:[163,8,1,"_CPPv36sensor"],sensor_cfg:[163,8,1,"_CPPv310sensor_cfg"],sensor_check_type:[163,4,1,"c.sensor_check_type"],sensor_clear_high_thresh:[168,4,1,"c.sensor_clear_high_thresh"],sensor_clear_low_thresh:[168,4,1,"c.sensor_clear_low_thresh"],sensor_clear_trigger_thresh_t:[163,5,1,"c.sensor_clear_trigger_thresh_t"],sensor_data_func_t:[163,5,1,"c.sensor_data_func_t"],sensor_data_t:[163,9,1,"_CPPv313sensor_data_t"],sensor_error_func_t:[163,5,1,"c.sensor_error_func_t"],sensor_ftostr:[168,4,1,"c.sensor_ftostr"],sensor_get_config:[163,4,1,"c.sensor_get_config"],sensor_get_config_func_t:[163,5,1,"c.sensor_get_config_func_t"],sensor_get_type_traits_byname:[168,4,1,"c.sensor_get_type_traits_byname"],sensor_get_type_traits_bytype:[168,4,1,"c.sensor_get_type_traits_bytype"],sensor_handle_interrupt_t:[163,5,1,"c.sensor_handle_interrupt_t"],sensor_init:[163,4,1,"c.sensor_init"],sensor_itf_lock:[163,4,1,"c.sensor_itf_lock"],sensor_itf_unlock:[163,4,1,"c.sensor_itf_unlock"],sensor_lock:[163,4,1,"c.sensor_lock"],sensor_mgr_compare_func_t:[168,5,1,"c.sensor_mgr_compare_func_t"],sensor_mgr_evq_get:[168,4,1,"c.sensor_mgr_evq_get"],sensor_mgr_find_next:[168,4,1,"c.sensor_mgr_find_next"],sensor_mgr_find_next_bydevname:[168,4,1,"c.sensor_mgr_find_next_bydevname"],sensor_mgr_find_next_bytype:[168,4,1,"c.sensor_mgr_find_next_bytype"],sensor_mgr_lock:[168,4,1,"c.sensor_mgr_lock"],sensor_mgr_match_bytype:[168,4,1,"c.sensor_mgr_match_bytype"],sensor_mgr_put_interrupt_evt:[168,4,1,"c.sensor_mgr_put_interrupt_evt"],sensor_mgr_put_notify_evt:[168,4,1,"c.sensor_mgr_put_notify_evt"],sensor_mgr_put_read_evt:[168,4,1,"c.sensor_mgr_put_read_evt"],sensor_mgr_register:[168,4,1,"c.sensor_mgr_register"],sensor_mgr_unlock:[168,4,1,"c.sensor_mgr_unlock"],sensor_notifier:[163,8,1,"_CPPv315sensor_notifier"],sensor_notifier_func_t:[163,5,1,"c.sensor_notifier_func_t"],sensor_oic_init:[168,4,1,"c.sensor_oic_init"],sensor_oic_tx_trigger:[168,4,1,"c.sensor_oic_tx_trigger"],sensor_pkg_init:[163,4,1,"c.sensor_pkg_init"],sensor_read:[163,4,1,"c.sensor_read"],sensor_read_ev_ctx:[163,8,1,"_CPPv318sensor_read_ev_ctx"],sensor_read_func_t:[163,5,1,"c.sensor_read_func_t"],sensor_register_err_func:[167,4,1,"c.sensor_register_err_func"],sensor_register_listener:[167,4,1,"c.sensor_register_listener"],sensor_register_notifier:[169,4,1,"c.sensor_register_notifier"],sensor_set_config_func_t:[163,5,1,"c.sensor_set_config_func_t"],sensor_set_driver:[163,4,1,"c.sensor_set_driver"],sensor_set_interface:[163,4,1,"c.sensor_set_interface"],sensor_set_n_poll_rate:[168,4,1,"c.sensor_set_n_poll_rate"],sensor_set_notification_t:[163,5,1,"c.sensor_set_notification_t"],sensor_set_poll_rate_ms:[168,4,1,"c.sensor_set_poll_rate_ms"],sensor_set_thresh:[168,4,1,"c.sensor_set_thresh"],sensor_set_trigger_thresh_t:[163,5,1,"c.sensor_set_trigger_thresh_t"],sensor_set_type_mask:[163,4,1,"c.sensor_set_type_mask"],sensor_shell_register:[168,4,1,"c.sensor_shell_register"],sensor_trigger_cmp_func_t:[163,5,1,"c.sensor_trigger_cmp_func_t"],sensor_trigger_init:[168,4,1,"c.sensor_trigger_init"],sensor_trigger_notify_func_t:[163,5,1,"c.sensor_trigger_notify_func_t"],sensor_type_traits:[163,8,1,"_CPPv318sensor_type_traits"],sensor_unlock:[163,4,1,"c.sensor_unlock"],sensor_unregister_listener:[167,4,1,"c.sensor_unregister_listener"],sensor_unregister_notifier:[169,4,1,"c.sensor_unregister_notifier"],sensor_unset_notification_t:[163,5,1,"c.sensor_unset_notification_t"],shell_cmd:[172,6,1,"c.shell_cmd"],shell_cmd_func_t:[172,5,1,"c.shell_cmd_func_t"],shell_cmd_help:[172,6,1,"c.shell_cmd_help"],shell_cmd_register:[172,4,1,"c.shell_cmd_register"],shell_evq_set:[172,4,1,"c.shell_evq_set"],shell_module:[172,6,1,"c.shell_module"],shell_nlip_input_func_t:[172,5,1,"c.shell_nlip_input_func_t"],shell_nlip_input_register:[172,4,1,"c.shell_nlip_input_register"],shell_nlip_output:[172,4,1,"c.shell_nlip_output"],shell_param:[172,6,1,"c.shell_param"],shell_prompt_function_t:[172,5,1,"c.shell_prompt_function_t"],shell_register:[172,4,1,"c.shell_register"],shell_register_app_cmd_handler:[172,4,1,"c.shell_register_app_cmd_handler"],shell_register_default_module:[172,4,1,"c.shell_register_default_module"],shell_register_prompt_handler:[172,4,1,"c.shell_register_prompt_handler"],snm_name:[174,0,1,"c.snm_name"],snm_off:[174,0,1,"c.snm_off"],stats_group_find:[174,4,1,"c.stats_group_find"],stats_group_walk:[174,4,1,"c.stats_group_walk"],stats_group_walk_func_t:[174,5,1,"c.stats_group_walk_func_t"],stats_hdr:[174,6,1,"c.stats_hdr"],stats_init:[174,4,1,"c.stats_init"],stats_init_and_reg:[174,4,1,"c.stats_init_and_reg"],stats_name_map:[174,6,1,"c.stats_name_map"],stats_nmgr_register_group:[174,4,1,"c.stats_nmgr_register_group"],stats_register:[174,4,1,"c.stats_register"],stats_reset:[174,4,1,"c.stats_reset"],stats_shell_register:[174,4,1,"c.stats_shell_register"],stats_walk:[174,4,1,"c.stats_walk"],stats_walk_func_t:[174,5,1,"c.stats_walk_func_t"],t_array:[161,2,1,"c.t_array"],t_boolean:[161,2,1,"c.t_boolean"],t_character:[161,2,1,"c.t_character"],t_check:[161,2,1,"c.t_check"],t_ignore:[161,2,1,"c.t_ignore"],t_integer:[161,2,1,"c.t_integer"],t_object:[161,2,1,"c.t_object"],t_real:[161,2,1,"c.t_real"],t_string:[161,2,1,"c.t_string"],t_structobject:[161,2,1,"c.t_structobject"],t_uinteger:[161,2,1,"c.t_uinteger"],tc_config:[178,0,1,"c.tc_config"],tc_current_config:[178,0,1,"c.tc_current_config"],ts_config:[178,0,1,"c.ts_config"],ts_current_config:[178,0,1,"c.ts_current_config"],tu_any_failed:[178,0,1,"c.tu_any_failed"],tu_case_complete:[178,4,1,"c.tu_case_complete"],tu_case_fail:[178,4,1,"c.tu_case_fail"],tu_case_fail_assert:[178,4,1,"c.tu_case_fail_assert"],tu_case_failed:[178,0,1,"c.tu_case_failed"],tu_case_idx:[178,0,1,"c.tu_case_idx"],tu_case_init:[178,4,1,"c.tu_case_init"],tu_case_jb:[178,0,1,"c.tu_case_jb"],tu_case_name:[178,0,1,"c.tu_case_name"],tu_case_pass:[178,4,1,"c.tu_case_pass"],tu_case_pass_manual:[178,4,1,"c.tu_case_pass_manual"],tu_case_post_test:[178,4,1,"c.tu_case_post_test"],tu_case_pre_test:[178,4,1,"c.tu_case_pre_test"],tu_case_report_fn_t:[178,5,1,"c.tu_case_report_fn_t"],tu_case_reported:[178,0,1,"c.tu_case_reported"],tu_case_set_init_cb:[178,4,1,"c.tu_case_set_init_cb"],tu_case_set_post_cb:[178,4,1,"c.tu_case_set_post_cb"],tu_case_set_pre_cb:[178,4,1,"c.tu_case_set_pre_cb"],tu_case_write_pass_auto:[178,4,1,"c.tu_case_write_pass_auto"],tu_init_test_fn_t:[178,5,1,"c.tu_init_test_fn_t"],tu_post_test_fn_t:[178,5,1,"c.tu_post_test_fn_t"],tu_pre_test_fn_t:[178,5,1,"c.tu_pre_test_fn_t"],tu_restart:[178,4,1,"c.tu_restart"],tu_start_os:[178,4,1,"c.tu_start_os"],tu_suite_complete:[178,4,1,"c.tu_suite_complete"],tu_suite_failed:[178,0,1,"c.tu_suite_failed"],tu_suite_init:[178,4,1,"c.tu_suite_init"],tu_suite_name:[178,0,1,"c.tu_suite_name"],tu_suite_post_test:[178,4,1,"c.tu_suite_post_test"],tu_suite_pre_test:[178,4,1,"c.tu_suite_pre_test"],tu_suite_register:[178,4,1,"c.tu_suite_register"],tu_suite_restart_fn_t:[178,5,1,"c.tu_suite_restart_fn_t"],tu_suite_set_complete_cb:[178,4,1,"c.tu_suite_set_complete_cb"],tu_suite_set_fail_cb:[178,4,1,"c.tu_suite_set_fail_cb"],tu_suite_set_init_cb:[178,4,1,"c.tu_suite_set_init_cb"],tu_suite_set_pass_cb:[178,4,1,"c.tu_suite_set_pass_cb"],tu_suite_set_post_test_cb:[178,4,1,"c.tu_suite_set_post_test_cb"],tu_suite_set_pre_test_cb:[178,4,1,"c.tu_suite_set_pre_test_cb"],tu_testsuite_fn_t:[178,5,1,"c.tu_testsuite_fn_t"]},"json_array_t.arr":{booleans:[161,6,1,"c.json_array_t.arr.booleans"],integers:[161,6,1,"c.json_array_t.arr.integers"],objects:[161,6,1,"c.json_array_t.arr.objects"],reals:[161,6,1,"c.json_array_t.arr.reals"],strings:[161,6,1,"c.json_array_t.arr.strings"],uintegers:[161,6,1,"c.json_array_t.arr.uintegers"]},"json_value.jv_val":{composite:[161,6,1,"c.json_value.jv_val.composite"]},json_array_t:{arr:[161,7,1,"c.json_array_t.arr"]},json_attr_t:{addr:[161,7,1,"c.json_attr_t.addr"],dflt:[161,7,1,"c.json_attr_t.dflt"]},json_value:{jv_val:[161,7,1,"c.json_value.jv_val"]}},objnames:{"0":["c","variable","variable"],"1":["c","define","define"],"2":["c","enumvalue","enumvalue"],"3":["c","enum","enum"],"4":["c","function","C function"],"5":["c","typedef","typedef"],"6":["c","struct","struct"],"7":["c","union","union"],"8":["cpp","class","C++ class"],"9":["cpp","type","C++ type"]},objtypes:{"0":"c:variable","1":"c:define","2":"c:enumvalue","3":"c:enum","4":"c:function","5":"c:typedef","6":"c:struct","7":"c:union","8":"cpp:class","9":"cpp:type"},terms:{"000s":[196,198,204,219],"008s":[196,198,204,219],"00z":210,"01t22":81,"02d":24,"02t22":210,"04x":33,"05t02":210,"093s":[196,198,204,219],"0b1000110":149,"0mb":10,"0ubuntu5":6,"0x0":[193,200,218,219],"0x00":[33,200,204,218],"0x0000":[184,218],"0x00000000":[173,175,176],"0x00000001":115,"0x00000002":[115,200],"0x00000004":115,"0x00000008":115,"0x00000010":115,"0x000000b8":193,"0x000000d8":[233,234],"0x000000dc":[183,226,233,234],"0x00004000":[173,175,176],"0x00008000":[106,173,175,176],"0x00009ef4":200,"0x0000fca6":193,"0x00023800":173,"0x0003f000":173,"0x0003f800":173,"0x0006":[41,218],"0x0007d000":[19,176],"0x000a":218,"0x000e0000":175,"0x0010":39,"0x01":[33,39,42,115,204,218],"0x0100":39,"0x01000000":199,"0x0101":33,"0x0102":33,"0x0103":33,"0x0104":33,"0x0105":33,"0x0106":33,"0x0107":33,"0x0108":33,"0x0109":33,"0x010a":33,"0x010b":33,"0x010c":33,"0x010d":33,"0x010e":33,"0x010f":33,"0x0110":33,"0x0111":33,"0x02":[33,39,42,115,204,218],"0x0201":33,"0x0202":33,"0x0203":33,"0x0204":33,"0x0205":33,"0x0206":33,"0x0207":33,"0x0208":33,"0x0209":33,"0x020a":33,"0x020b":33,"0x020c":33,"0x020d":33,"0x020e":33,"0x020f":33,"0x0210":33,"0x0211":33,"0x0212":33,"0x0213":33,"0x0214":33,"0x0215":33,"0x0216":33,"0x0217":33,"0x0218":33,"0x0219":33,"0x021a":33,"0x021b":33,"0x021c":33,"0x021d":33,"0x021e":33,"0x021f":33,"0x0220":33,"0x0221":33,"0x0222":33,"0x0223":33,"0x0224":33,"0x0225":33,"0x0226":33,"0x0227":33,"0x0228":33,"0x0229":33,"0x022a":33,"0x022c":33,"0x022d":33,"0x022e":33,"0x022f":33,"0x0230":33,"0x0232":33,"0x0234":33,"0x0235":33,"0x0236":33,"0x0237":33,"0x0238":33,"0x0239":33,"0x023a":33,"0x023b":33,"0x023c":33,"0x023d":33,"0x023e":33,"0x023f":33,"0x0240":33,"0x03":[33,42,115,218],"0x0300":[33,39],"0x0301":33,"0x0302":33,"0x04":[33,39],"0x0401":33,"0x0402":33,"0x0403":33,"0x0404":33,"0x0405":33,"0x0406":33,"0x0407":33,"0x0408":33,"0x0409":33,"0x040a":33,"0x040b":33,"0x040c":33,"0x040d":33,"0x040e":33,"0x0483":197,"0x05":33,"0x0501":33,"0x0502":33,"0x0503":33,"0x0504":33,"0x0505":33,"0x0506":33,"0x0507":33,"0x0508":33,"0x0509":33,"0x050a":33,"0x050b":33,"0x050c":33,"0x050d":33,"0x050e":33,"0x06":[33,184,218],"0x07":[33,218,223],"0x08":[33,39,218],"0x08000000":199,"0x08000020":199,"0x08000250":199,"0x08021e90":197,"0x09":[33,218,223],"0x0a":[33,218],"0x0b":33,"0x0bc11477":193,"0x0c":33,"0x0c80":41,"0x0d":33,"0x0e":33,"0x0f":[33,218,221],"0x0f505235":115,"0x1":[219,221,224,226],"0x10":[33,193,200,204,221],"0x100":33,"0x1000":[102,221,224],"0x10000":106,"0x10010000":199,"0x10036413":199,"0x10076413":197,"0x1010":102,"0x103":33,"0x11":[33,35,192,204,218],"0x12":33,"0x13":33,"0x14":33,"0x1400":218,"0x15":[33,217,219,221],"0x16":33,"0x17":33,"0x18":[33,218],"0x1800":42,"0x1808":42,"0x180a":42,"0x19":[33,164],"0x1a":33,"0x1b":33,"0x1c":[33,217,219],"0x1d":33,"0x1e":33,"0x1f":33,"0x2":[221,224],"0x20":[33,45,106,193,200,217,218,219],"0x200":[33,221,224],"0x2000":[221,224],"0x20000":219,"0x20000000":106,"0x20002290":197,"0x20002408":193,"0x20008000":193,"0x21":[33,45],"0x21000000":193,"0x22":[33,35,45,204],"0x23":[33,45],"0x24":33,"0x25":[33,218],"0x26":33,"0x27":33,"0x28":33,"0x2800":218,"0x29":33,"0x2a":33,"0x2ba01477":200,"0x2c":33,"0x2d":[33,218],"0x2e":33,"0x2f":33,"0x30":[33,193,200,218],"0x300":33,"0x311":221,"0x32":[33,221],"0x33":35,"0x34":33,"0x35":33,"0x36":33,"0x37":33,"0x374b":197,"0x38":33,"0x39":33,"0x3a":33,"0x3a000":106,"0x3b":33,"0x3c":33,"0x3c00":218,"0x3d":33,"0x3e":33,"0x3f":33,"0x4":[221,224],"0x40":[33,149,193,200,217,219],"0x400":33,"0x4000":[221,224],"0x40007000":219,"0x4001e504":200,"0x4001e50c":200,"0x41000000":197,"0x42000":74,"0x44":[35,218],"0x4400":218,"0x46":149,"0x4f":[217,219],"0x50":[193,200],"0x500":33,"0x5000":218,"0x53":223,"0x55":35,"0x6":218,"0x60":[193,200,218],"0x61":[217,219],"0x62":218,"0x65":218,"0x66":35,"0x68":218,"0x69":[218,223],"0x6c":218,"0x6c00":218,"0x6d":218,"0x6e":218,"0x70":[193,200,218],"0x72":[217,218,219],"0x7800":218,"0x79":223,"0x7fefd260":115,"0x7fff8000":219,"0x8":218,"0x80":[217,219],"0x8000":74,"0x8000000":199,"0x8079b62c":115,"0x81":149,"0x8801":218,"0x8c":149,"0x8d":149,"0x90":[217,219],"0x96f3b83c":115,"0x9c01":218,"0x9f":218,"0xa":218,"0xa0":221,"0xa001":218,"0xa7":[217,219],"0xaf":[217,219],"0xb3":[217,219],"0xb401":218,"0xb5":[217,219],"0xbead":[217,219],"0xcc01":218,"0xd2":[217,219],"0xd801":218,"0xdead":[217,219],"0xe401":218,"0xe7":[217,219],"0xf":218,"0xf001":218,"0xf395c277":115,"0xfb":221,"0xfe":218,"0xff":115,"0xffff":[41,152,218],"0xffffffff":[115,163,193],"0xffffffff0xffffffff0xffffffff0xffffffff":200,"100kb":114,"1024kbyte":[197,199],"103kb":173,"10m":39,"110kb":173,"128hz":17,"128kb":[9,175],"12c":[196,198,204,219],"12kb":[19,176],"12mhz":9,"132425ssb":42,"132428ssb":42,"132433ssb":42,"132437ssb":42,"132441ssb":42,"14e":233,"14h":[226,233],"1503a0":211,"16kb":[9,175,176],"16kbram":66,"16mb":9,"190a192":218,"1_amd64":[70,73,93,96],"1c15":[217,219],"1d11":229,"1d13":[211,232],"1d560":173,"1eec4":173,"1kb":173,"1mhz":17,"1ms":14,"1st":[14,81],"1ubuntu1":6,"1wx":200,"200mhz":9,"2015q2":[4,11],"2022609336ssb":187,"2022687456ssb":187,"2022789012ssb":187,"2022851508ssb":187,"2042859320ssb":187,"2042937440ssb":187,"248m":6,"250m":205,"256kb":193,"262s":[196,198,204,219],"28a29":218,"28t22":210,"291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682":203,"296712s":199,"2a24":61,"2d5217f":94,"2m_interval_max":39,"2m_interval_min":39,"2m_latenc":39,"2m_max_conn_event_len":39,"2m_min_conn_event_len":39,"2m_scan_interv":39,"2m_scan_window":39,"2m_timeout":39,"2msym":43,"300v":[196,198,204,219],"30j":218,"32kb":[176,193],"32mb":9,"32wx":[193,200],"363s":[196,198,204,219],"3_1":49,"3mb":94,"46872ssb":218,"4_9":4,"4fa7":[217,219],"500m":205,"512kb":106,"54684ssb":218,"575c":173,"5kb":114,"5ms":14,"6lowpan":43,"73d77f":84,"78e4d263eeb5af5635705b7cae026cc184f14aa6c6c59c6e80616035cd2efc8f":173,"7b3w9m4n2mg3sqmgw2q1b9p80000gn":68,"7kb":173,"8ab6433f8971b05c2a9c3341533e8ddb754e404":214,"948f118966f7989628f8f3be28840fd23a200fc219bb72acdfe9096f06c4b39b":173,"9cf8af22b1b573909a8290a90c066d4e190407e97680b7a32243960ec2bf3a7f":232,"9mb":71,"abstract":[9,33,108,109,121,138,141,142,163,165,166,205,218,236],"boolean":[161,176],"break":[18,33,102,123,188,218],"byte":[14,17,20,21,28,29,30,32,35,39,59,79,84,86,102,103,112,115,116,117,119,127,128,139,141,144,146,149,152,155,161,162,173,191,192,203,204,207],"case":[2,6,7,17,25,29,30,33,42,43,68,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,102,105,106,110,111,112,113,115,121,141,145,168,172,173,174,176,178,180,184,188,189,191,192,193,207,210,211,217,218,219,223,234],"catch":33,"char":[103,105,110,112,116,117,121,125,126,139,140,153,155,159,160,161,162,168,172,174,176,178,188,191,192,195,205,207,210,218,224,226],"class":[121,204],"const":[28,29,30,100,102,103,106,112,113,115,116,117,122,139,140,141,142,144,146,147,153,161,162,165,172,174,178,188,190,191,192,210,217,218,219],"default":[1,2,4,6,7,8,11,14,17,21,24,27,28,33,36,38,39,40,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,100,102,104,105,106,107,109,110,112,117,118,120,121,122,138,141,152,161,162,163,164,165,166,168,170,171,172,173,174,175,176,180,184,186,188,191,192,193,194,201,203,204,205,212,217,218,219,221,222,223,225,226,228,233],"enum":[112,116,148,153,155,161,163,217,218],"export":[1,10,35,73,74,93,95,96,100,116,117,121,123,162,163,164,165,166,201,220,221,224],"final":[8,68,102,104,106,115,129,143,173,181,183,186,207,217,219],"float":[77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,114,161,163,168,220],"function":[1,7,9,14,18,25,27,28,29,30,33,35,44,74,97,98,99,100,101,102,103,105,107,108,109,110,112,115,116,117,121,122,123,125,127,133,137,138,139,140,141,142,143,145,146,148,149,150,151,152,153,154,155,158,160,161,162,164,166,167,168,170,172,173,174,177,178,180,183,186,187,189,191,192,194,195,201,203,204,205,210,212,217,218,219,221,223,226,231,233,234,236],"goto":[110,139,165,217,218,219],"i\u00b2c":149,"import":[10,68,70,93,102,106,113,114,149,183,186,189,207,219],"int":[1,14,19,27,28,29,30,33,38,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,97,99,100,102,103,105,110,112,113,116,117,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,144,145,146,148,149,151,152,153,154,155,156,159,160,161,162,163,164,165,167,168,169,172,174,176,178,181,186,188,189,190,191,192,195,205,207,210,217,218,219,224,226],"long":[3,14,16,21,28,29,30,36,40,43,102,105,111,114,138,149,161,173,200,226],"new":[2,3,4,6,10,13,18,25,28,29,30,35,36,39,42,43,44,47,52,54,58,59,63,66,70,71,72,74,98,102,106,109,112,115,117,127,128,129,138,139,141,143,149,157,163,172,173,174,176,180,182,183,184,189,190,191,192,193,196,197,198,199,200,203,204,210,211,212,218,219,220,222,223,236],"null":[28,29,30,97,98,99,100,102,103,104,105,106,110,111,112,116,117,122,139,140,141,147,152,162,163,164,165,168,172,175,176,186,189,190,191,192,195,205,207,217,218,219,220,224,226],"public":[28,29,30,32,37,39,41,42,45,70,79,93,97,100,102,103,104,110,111,112,113,115,116,117,140,141,149,152,154,161,162,163,172,174,191,192],"return":[27,28,29,30,31,38,97,98,99,100,102,103,104,105,106,110,111,112,113,116,117,122,127,139,140,144,146,147,148,149,152,153,154,155,156,161,162,163,164,165,167,168,169,172,176,178,186,188,189,190,193,195,204,205,207,210,217,218,219,221,224,226,230],"short":[102,104,172,207],"static":[32,38,79,97,100,103,105,106,110,111,113,116,117,122,126,142,160,162,163,164,165,180,184,186,188,189,190,191,192,195,205,217,218,219,220,224,226],"switch":[11,13,33,71,84,90,94,98,105,106,112,115,143,157,172,183,184,188,189,201,217,218,219,226,233],"transient":189,"true":[8,11,15,99,103,110,113,117,173,203,210,219,229,232],"try":[2,14,17,20,21,24,25,33,35,43,102,139,149,180,181,183,184,187,193,194,195,196,197,198,200,211,213,218,219,221,223,226,228,233],"var":[63,68,78,79,110,116],"void":[14,27,28,29,30,33,38,97,98,99,100,102,103,105,110,112,113,116,117,121,122,123,125,127,137,139,140,141,142,144,145,146,148,149,151,152,153,154,155,156,158,160,161,162,163,164,165,167,168,172,174,176,178,186,188,189,190,191,192,195,205,207,217,218,219,220,224,226],"while":[4,6,7,8,17,18,35,38,43,62,68,74,102,103,105,106,110,112,114,117,123,125,139,155,165,173,176,178,191,192,195,201,205,207,208,210,217,218,219,224,226,233,234],AES:34,ANS:185,Adding:[69,92,236],And:[74,115,127,173,175,181,182,187,207,217,218,219],Are:[14,18],But:[14,219],CTS:[155,184],FOR:4,For:[2,3,5,6,7,8,10,11,14,15,18,19,21,27,29,30,33,34,35,36,41,42,47,50,52,63,66,68,70,71,72,73,74,75,79,96,97,102,105,106,109,113,114,115,121,122,139,141,142,145,148,149,152,161,162,163,164,165,166,167,173,174,175,176,178,180,183,188,189,190,191,192,193,195,197,198,199,203,204,205,210,211,212,213,219,221,224,226,229,232,233,234,236],IDE:[5,11],IDs:115,Its:[107,113,114,180,213],NOT:[149,154,219],Not:[7,33,41,99,102,143,148,152,173,219],One:[6,27,29,30,33,105,114,173,180,186,211,223],PCs:8,QoS:[33,43],RTS:[155,184],Such:[191,192,213],TMS:193,That:[2,17,21,25,28,33,74,127,176,191,192,193,204,211,212,218,219],The:[1,2,3,4,5,6,7,8,10,11,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,39,41,42,43,44,46,47,50,56,58,59,60,63,68,70,71,72,74,76,77,79,83,84,85,86,88,89,90,91,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,127,139,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,186,188,189,190,191,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,210,211,212,213,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,236],Then:[13,25,26,46,76,115,127,173,180,184,210,218,219,233],There:[4,8,14,15,17,18,21,34,35,40,70,74,93,97,102,104,106,107,111,112,113,114,116,117,121,143,148,162,163,168,172,173,174,188,193,204,210,214,219,226,233,234],Theres:223,These:[5,29,30,33,39,63,74,102,106,107,109,111,115,116,121,149,166,172,175,182,186,190,191,192,193,194,199,201,212,213,220,221],Use:[1,7,8,10,28,39,40,63,70,71,72,75,84,93,94,95,106,119,127,129,173,180,188,191,192,193,196,204,211,212,218,219,220,222,231],Used:[106,152,155,162],Useful:163,Uses:[44,55,120,175],Using:[29,30,33,62,104,119,195,231,236],Was:204,Will:[33,140],With:[9,14,33,42,43,102,105,109,115,173,175,181,183,207,233,234,236],Yes:[13,14,32,102,115,120],__arg:110,__asm:197,__builtin_offsetof:174,__d:163,__entri:174,__etext:199,__ev:100,__f:[110,163],__hdr:102,__itvl:110,__jv:161,__l:162,__len:161,__mod:162,__n:[102,174],__name:[112,174],__om:102,__omp:102,__s:163,__sc:110,__sectnam:174,__sectvarnam:174,__size:[112,174],__str:161,__t1:[99,113],__t2:[99,113],__t:163,__type:102,__v:161,__var:174,__wfi:197,_access:188,_adc:219,_addr:191,_addr_:[191,192],_app:191,_build:[26,46,76],_cfg:[164,165],_cli:[165,166,221],_cnt:127,_config:[163,164,165,224],_creat:164,_dev:164,_gatt_ac:188,_imghdr_siz:106,_init:[163,164,165],_log:165,_name:176,_nrf52_adc_h_:219,_ofb:[164,166,221],_onb:[164,166,226],_pad1:115,_pad2:115,_pad3:115,_pad:[104,115],_param:172,_pars:157,_reserv:163,_resource_t:220,_sbrk:144,_senseair_h_:218,_sensor:164,_set:191,_shell_init:[165,221],_stage:176,_stat:165,_str:157,_va_args_:165,_val:[164,165],a10:178,a600anj1:173,abbrevi:186,abc:[162,210],abil:[6,34,44,68,102,207],abl:[2,14,25,102,106,121,122,187,191,192,193,201,212,218,219],abort:[28,62,152,162,163,175,176,210,224],about:[1,3,13,14,18,19,35,41,53,70,71,72,75,77,93,94,95,103,105,106,110,112,113,127,128,132,161,162,167,173,174,179,180,186,189,190,191,192,196,200,204,205,207,213,219],abov:[9,16,21,27,32,102,105,110,113,115,149,152,172,173,174,175,176,183,186,188,191,192,195,201,204,210,212,217,219],absent:115,absolut:[102,154],abstrat:127,acc:221,accel:[221,226],accel_rev:221,acceleromet:[163,165,220,221,222,226],accept:[14,33,39,123,149,155,157,180,193,197,199,204,212],access:[8,14,28,29,30,33,39,43,72,74,77,83,93,94,95,99,101,102,104,105,106,111,121,122,123,127,139,141,142,143,149,157,162,163,165,166,168,173,176,178,183,190,193,205,210,218],access_:190,access_cb:[29,30,188,190,217,219],access_flag:[139,140],accgyro:221,accommod:[29,30,36,102,109,115,191],accompani:19,accomplish:[9,21,68,141,188],accord:[14,106,115,178],accordingli:[14,36,102,106,112],account:[13,74,102,115],accur:199,accuraci:28,achiev:[38,191,192],ack_rxd:204,acknowledg:204,acl:33,acquir:[38,104,111,149,163],acquisit:149,across:[42,44,68,74,75,121,143],act:[34,42,157,173],action:[9,14,39,75,180,186,190,204,207,219],activ:[11,14,28,29,30,43,60,84,106,112,116,117,152,157,173,180,186,203,204,223,229,232,233,234],actual:[2,7,14,23,25,47,90,102,106,112,115,145,156,162,173,175,179,183,191,192,193,207,212,213,214,219],actuat:227,adafruit:[8,25,219,221,223],adapt:[43,109,193,196,197,211,226],adapter_nsrst_delai:[193,197],adaptor:199,adc0:219,adc:[9,14,19,66,121],adc_0:219,adc_buf_read:219,adc_buf_releas:219,adc_buf_s:219,adc_buf_set:219,adc_chan_config:219,adc_config:219,adc_dev:219,adc_event_handler_set:219,adc_evq:219,adc_hw_impl:66,adc_init:219,adc_number_channel:219,adc_number_sampl:219,adc_read:219,adc_read_ev:219,adc_result:219,adc_result_mv:219,adc_sampl:219,adc_sns_str:219,adc_sns_typ:219,adc_sns_val:219,adc_stack:219,adc_stack_s:219,adc_stm32f4:121,adc_task:219,adc_task_handl:219,adc_task_prio:219,add:[1,2,4,6,7,10,11,14,21,25,29,30,39,50,52,63,68,70,71,72,74,75,93,100,102,105,109,111,113,114,117,118,127,139,143,149,164,165,174,176,180,181,183,184,187,193,194,195,201,203,205,207,208,210,211,212,219,221,222,223,224,225,227,229,230,231,232,236],added:[11,13,29,30,45,66,68,94,102,106,111,112,113,115,117,122,124,139,149,172,193,195,203,205,211,213,217,218,229,230,232,236],adding:[2,18,21,44,50,68,102,106,107,113,127,174,183,195,210,212,213,217,218,219],addit:[1,11,14,18,27,28,41,43,56,68,74,75,102,106,107,109,113,115,121,149,162,173,176,180,183,186,193,194,196,197,199,200,201,204,207,218,219,230],addition:75,addr:[28,39,42,122,161,184,191,192,221],addr_typ:[39,42],address:[14,21,28,33,34,37,39,41,43,44,45,68,79,102,103,105,115,121,122,123,138,146,149,152,161,162,163,165,173,184,188,203,204,211,226,233],aditihilbert:4,adjust:[21,29,30,33,102,106,181,205],admin:[4,184],administr:18,adress:39,adsertis:39,adv:[14,39,42,43,44],adv_channel_map:218,adv_data:39,adv_field:[28,186,191],adv_filter_polici:218,adv_itvl_max:218,adv_itvl_min:218,adv_param:[28,186,189,191,192],advanc:[72,233,234],advantag:[189,219],advantang:186,adverb:75,adverti:[191,192],advertis:[28,29,30,33,36,38,43,44,45,79,185,187,189,203,217,218,219,220],advertise_128bit_uuid:220,advertise_16bit_uuid:220,advertising_interv:[39,41],advic:[107,108],advinterv:41,aes:[193,196,198,200,211,229,230,232],aesni:[229,230],af80:[217,219],affect:[115,141,142,162,173,183,208],aflag:[1,63,74],after:[4,8,10,17,24,25,27,29,30,34,38,42,54,63,68,70,71,74,93,94,99,102,103,107,112,113,115,116,121,125,129,133,139,141,149,152,155,162,163,165,173,175,178,180,184,186,188,189,190,193,194,201,203,207,211,212,221,223,226],afterward:[21,218],again:[8,14,25,28,33,38,70,72,93,106,112,115,127,173,174,186,193,196,197,198,199,200,204,207,219,223,232],against:[14,34,102,105,113,168],agnost:139,agre:[218,219],agreement:[218,219],ahead:113,aid:[74,165],aim:[33,122,139,185,236],ain0:219,ain1:219,air:[28,33,102,173,201,202,204,227,236],air_q:218,air_qual:[217,218],albeit:182,alert:185,algo:168,algorithm:[43,98],align:[102,103,127,207],all201612161220:88,all:[1,2,3,6,7,8,9,11,13,15,16,18,19,25,27,28,29,30,31,33,34,36,38,39,40,41,42,43,44,48,53,54,56,62,63,64,65,66,68,74,79,85,88,102,104,105,106,107,109,110,112,113,115,116,117,121,127,131,137,139,141,142,143,145,152,161,162,163,164,165,166,167,168,170,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,189,190,191,192,195,197,199,201,204,208,210,212,213,214,215,217,218,219,221,224,226,229,232],alloc:[86,90,100,101,102,103,138,146,162,186,188],allow:[2,3,4,6,8,9,11,14,19,25,28,33,39,43,44,52,63,68,70,71,72,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,100,102,104,105,109,111,115,117,121,139,141,144,149,152,153,162,166,167,168,169,171,172,173,174,176,180,184,186,189,191,195,196,201,204,205,207,211,219,221,223,226,228],almost:[8,207],alon:14,along:[21,74,102,103,112,163,168,218],alongsid:[191,207],alphabet:176,alreadi:[6,7,8,10,14,18,20,25,28,29,30,33,36,44,56,71,72,94,95,99,108,109,115,122,133,148,154,180,181,182,183,193,195,196,197,198,199,200,204,211,217,219,220,229,232,233,234],also:[1,3,5,6,7,8,10,11,14,18,20,21,25,26,35,36,39,43,47,50,53,68,70,71,72,73,74,79,93,96,102,103,105,106,109,111,112,113,115,116,117,118,121,122,127,139,141,152,155,157,162,163,164,165,167,170,172,173,174,175,176,180,183,186,189,190,194,195,201,204,205,207,208,210,211,212,213,217,218,219,221,222,223,224,225,226,229,230,232],alt:232,altern:[6,18,21,102,115,127,173,188],although:212,altogeth:[97,217],alwai:[8,14,18,24,74,106,113,114,115,145,162,172,182,188,191,192,199,210,212,213,218,236],ambigu:33,ambiti:183,amd64:[70,93],amend:[1,14,45,63,75,203,208,233,234],amg:221,among:[98,106,115,173],amongst:102,amount:[36,102,103,108,139,162,173,186,207],analog:[121,227],analyz:[11,234],android:[220,222,225,228],ani:[1,4,8,13,14,15,16,17,18,19,21,25,26,27,29,30,34,39,43,46,62,63,72,74,76,77,79,86,89,90,93,94,95,97,99,100,102,103,104,105,106,108,110,111,112,113,115,117,122,123,127,139,140,141,152,155,162,165,166,169,172,173,174,176,180,184,186,195,196,201,202,203,204,213,217,218,219,226,231,236],announc:[186,191,192],annoy:[188,214],anonym:[25,39],anoth:[13,14,18,19,38,39,42,43,74,102,104,105,106,107,108,111,112,113,117,148,157,173,175,180,186,188,204,207,218,219,230,233,234],ans:[218,219],answer:105,anymor:[102,207],anyon:[14,17,25],anyth:[1,8,35,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,173,180,181,183,191,192,194,213,219],apach:[1,2,6,7,10,11,13,18,24,25,26,28,43,45,46,50,51,52,56,57,63,64,66,68,70,71,72,74,75,76,93,94,95,97,106,115,117,120,121,122,123,138,139,142,145,162,164,172,173,174,176,177,180,183,184,185,187,191,193,194,195,196,197,198,199,200,204,210,211,212,213,218,219,220,221,222,223,226,228,229,230,231,232,233,234,236],apart:113,api:[1,14,26,31,32,33,43,66,68,74,105,109,121,122,143,147,165,166,192,197,220,225],app:[1,7,8,11,14,17,18,21,24,25,38,41,43,45,47,50,51,55,56,58,59,60,61,63,66,68,75,86,89,90,106,115,117,121,139,143,153,172,174,175,176,180,181,183,185,186,189,190,191,192,193,195,196,197,198,199,200,201,202,203,205,207,210,211,217,218,220,221,222,223,224,225,229,230,231,232,233,236],app_log_init:162,appear:[17,25,39,41,109,149,188,190,207],append:[102,127,162,210],append_loc:[127,128,129],append_test:210,appl:[193,226,228,233,234],appli:[11,20,36,113,115,116,117,141,155,162,173,176,204,210],applic:[1,2,4,5,6,8,9,10,12,17,19,20,27,28,29,30,31,33,35,36,37,38,40,42,43,47,52,55,60,63,68,70,71,72,73,74,86,89,90,91,95,96,100,102,106,110,112,115,117,118,119,120,121,139,141,146,152,165,166,167,168,169,170,171,172,174,175,176,179,182,185,188,189,194,203,209,210,217,218,225,228,230,231,234,236],applicaton:1,applict:11,approach:[44,106,176],appropri:[28,29,30,75,102,106,109,112,119,121,149,152,176,180,181,183,186,189,191,192,194,219,225],approv:13,apps_air_qu:218,apps_bleprph:173,apps_blinki:[68,74],apps_my_sensor_app:226,apr:[8,196,198,204,219],apropo:[193,226,233,234],apt:[4,6,7,69,73,92,96,184],arbitrari:[115,180,184,193,196,197,198,199,200,204,211,219,221,223,229,230,232],arbitrarili:[115,192],arc4:193,arch:[74,106,109,178,196,197,198,199,200,204,226],arch_sim:[195,226],architectur:[70,93,98,103,106,108,109,113,115,121,138,143,148,207],archiv:[4,7,70,72,74,180,183,193,195,196,197,198,199,200,201,204,211,218,219,221,226,229,230,232],arduino:[11,194,207,209,212,218,236],arduino_101:66,arduino_blinki:[11,193,207],arduino_boot:[11,193],arduino_mkr1000:211,arduino_primo_nrf52:[66,196],arduino_primoo_nrf52:196,arduino_zero:193,arduino_zero_debug:193,arduinowifi:211,area:[14,16,102,106,115,116,127,137,144,162,176],area_cnt:144,area_desc:141,aren:[19,20,114],arg10:178,arg:[11,28,29,30,99,102,103,105,110,112,113,121,127,137,146,148,152,154,155,162,163,165,167,168,172,178,188,189,205,207,217,218,219,226],argc:[105,112,116,125,126,159,172,176,191,192,195,205,207,210,218,224,226],argument:[10,11,28,29,30,33,58,63,68,75,97,100,102,103,110,112,113,117,124,127,145,148,149,152,154,161,162,163,165,167,168,172,186,189,190,191,192,196,198,207,212,213,226],argv:[112,116,125,126,159,172,176,191,192,195,205,207,210,218,224,226],arm:[5,6,7,11,20,23,97,106,114,193,199,226,232,233,234],around:[25,42,102,115,219,220,222],arr:161,arrai:[29,30,35,100,116,126,127,137,141,152,161,172,176,181,186,190,207],arrang:[106,173],arriv:102,articl:214,artifact:[48,52,63,68,70,71,72,212],asf:[1,212,218,219],ask:[13,18,105,116,155,199,207,212,213],aspect:[39,102,115,207],assembl:[1,74,106,109,196,197,198,199,200,204,226],assert:[23,80,102,110,117,152,164,174,178,188,189,190,191,192,195,205,207,217,218,219,224,226],assert_if_test:178,assign:[13,19,21,29,30,32,35,41,43,50,63,66,79,103,105,106,112,127,142,162,176,180,188,193,196,197,198,199,200,204,211,219,221,223,229,232],associ:[14,28,29,30,34,36,100,102,110,112,115,154,162,163,176,186,189],assum:[7,11,15,42,56,72,73,95,96,100,102,106,112,115,122,152,157,176,180,181,182,183,195,201,204,205,217,219,220,222,223,225,226,233,234],assumpt:19,asynchron:[28,155],at45db:[19,122],at45db_default_config:122,at45db_dev:122,at45db_erase_sector:122,at45db_init:122,at45db_read:122,at45db_sector_info:122,at45db_writ:122,at45dbxxx:122,at91samd21g18:193,at91samd:193,atmel:[2,193,211],atop:[121,143],att:[31,40,43,188],att_flag:[29,30],att_handl:[29,30],attach:[8,11,102,106,148,153,183,196,204,219,226,233,234],attempt:[14,27,28,33,35,39,102,103,104,112,115,149,176,188,189,190,204],attempt_stat:174,attent:3,attr:[14,29,30,40,42],attr_handl:[14,29,30,187,188,189,217,219],attribut:[27,29,30,33,40,43,63,66,75,79,103,107,109,161,176,185,188],auth:[14,28,39,214],authent:[28,33,34,42,187],author:[1,25,33,56,74,117,210,218,219],auto:[41,122,223],autocalibr:223,autocomplet:68,autoconf:68,autogener:14,autom:44,automat:[1,13,28,29,30,36,37,43,55,68,72,74,107,158,172,174,176,183,185,186,193,196,197,199,200,201,210,212,218,219,220,236],autoselect:193,avaial:204,avail:[1,2,3,4,7,9,14,15,18,24,29,30,33,35,36,41,42,43,44,45,60,70,71,72,75,77,86,93,94,95,100,102,103,104,110,111,114,115,117,119,121,155,157,163,167,168,173,176,179,191,195,201,204,213,225,233,234],avail_queu:117,avoid:[74,102,104,105,110,172,207,220],awai:[33,106,116,188,219],await:3,awar:[21,24,186,191,192],b0_0:199,b0_1:199,b1_0:199,b1_1:199,b5729002b340:[217,219],b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2:203,bab:162,back:[8,18,71,77,82,93,94,95,102,103,113,114,115,116,117,149,162,163,170,190,199,200,201,218,225,229,230,232],backend:116,background:28,backward:[18,43,115,117,127,172],bad:[14,115,173,213],badli:105,bake:15,band:[34,39,43],bank:199,bar:[11,14,116,236],bare:[97,185,191,192,236],base64:[7,116,117,204,226],base:[1,2,4,6,7,11,19,33,36,43,44,47,52,68,70,71,72,74,102,114,119,121,123,143,144,149,168,175,184,190,193,196,197,199,200,207,211,220,221,223,226],baselibc:[7,24,61,106],baselin:120,bash:[2,11,68,72,106],bash_complet:49,bash_profil:[10,71,73,94,96],bashrc:68,basi:[9,32,34,112,213,218,219],basic:[1,14,17,19,27,41,42,43,44,74,102,106,112,114,121,144,146,148,155,173,183,184,201,204,212,214,216,217,228,230,231],batch:106,batteri:[9,36,44,109,191],baud:[79,117,184],baudrat:[122,152,155],bbno055_cli:221,bc_acc_bw:[165,224],bc_acc_rang:[165,224],bc_mask:[165,224],bc_opr_mod:[165,224],bc_placement:165,bc_pwr_mode:[165,224],bc_unit:[165,224],bc_use_ext_xt:224,bcfg:224,bd_addr:33,be9699809a049:84,beacon:[27,182,183,194],bearer:[14,43,45],becaus:[8,11,14,21,28,33,34,38,42,63,100,115,142,149,152,163,165,168,173,175,207,210,212,214,218,220,221,222,226],becom:[14,34,44,115,186,189],been:[4,13,17,28,33,38,49,56,68,71,72,74,90,94,95,101,102,103,112,113,115,116,125,127,139,141,152,155,162,168,173,176,184,189,193,196,204,211,217,218,219],befor:[2,4,7,8,11,14,27,33,54,63,70,74,93,97,99,101,102,104,105,106,110,112,113,114,115,116,117,127,133,141,152,154,155,156,161,163,167,168,172,173,174,176,178,183,184,185,186,188,191,192,194,195,197,201,204,205,207,210,211,219,225,228,231],begin:[14,29,30,38,102,112,116,127,135,155,168,184,187,189,191,192,210,212],beginn:236,behav:[33,42,105,191,192,210],behavior:[72,105,109,141,188,190,207,210,211,234],behaviour:102,behind:[102,113],being:[14,15,25,28,29,30,33,102,103,105,110,112,113,115,116,122,139,148,149,150,159,160,162,163,173,187,189,207,210,236],bell:111,belong:[27,29,30,103,115,190],below:[1,2,4,6,8,11,19,31,33,34,35,36,42,56,72,75,102,105,106,107,111,112,115,117,119,122,139,142,154,165,173,180,183,188,190,193,196,197,199,200,204,207,208,210,212,213,214,219,220,221,224,228,236],benefit:[13,105,176,179,205],best:[24,102,106,161,213],beta:121,better:[14,17,20,115,174],between:[7,11,15,18,19,20,38,39,43,44,50,59,68,111,113,117,148,149,159,161,166,168,173,175,176,184,196,201,204,205,213,219,221,223,226],beyond:102,bhd:79,big:[35,74,102,204,213],bigger:173,bin:[2,4,7,10,11,18,20,47,48,50,51,56,59,61,63,68,70,71,72,73,74,93,94,95,96,106,173,176,180,181,183,184,187,193,195,196,197,198,199,200,201,203,204,210,211,218,219,221,223,226,229,230,232,233,234],bin_basenam:74,binari:[4,7,10,20,47,50,52,68,71,73,74,92,94,96,114,119,149,195],binutil:4,bit:[7,14,24,27,29,30,35,37,39,41,70,71,72,79,94,95,99,102,103,112,113,114,115,149,150,152,155,163,165,167,168,173,174,183,188,189,190,191,192,207,211,213,217,219,220,226,233,234],bitbang:150,bitfield:163,bitmap:103,bitmask:112,bits0x00:39,bl_rev:221,bla:162,blank:24,ble:[21,25,27,28,29,30,31,32,35,38,42,44,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,100,102,115,119,120,173,176,182,184,186,188,189,190,194,201,203,216,217,218,222,225,228,236],ble_:188,ble_addr_t:[28,191,192],ble_addr_type_publ:[28,189],ble_addr_type_random:28,ble_addr_type_rpa_pub_default:28,ble_addr_type_rpa_rnd_default:28,ble_app:[183,191,192],ble_app_advertis:[191,192],ble_app_on_sync:[191,192],ble_app_set_addr:[191,192],ble_att:[89,188,201],ble_att_err_attr_not_found:33,ble_att_err_attr_not_long:33,ble_att_err_insufficient_authen:33,ble_att_err_insufficient_author:33,ble_att_err_insufficient_enc:33,ble_att_err_insufficient_key_sz:33,ble_att_err_insufficient_r:[33,217,219],ble_att_err_invalid_attr_value_len:[33,188],ble_att_err_invalid_handl:33,ble_att_err_invalid_offset:33,ble_att_err_invalid_pdu:33,ble_att_err_prepare_queue_ful:33,ble_att_err_read_not_permit:33,ble_att_err_req_not_support:33,ble_att_err_unlik:[33,217,219],ble_att_err_unsupported_group:33,ble_att_err_write_not_permit:33,ble_att_svr_entry_pool:86,ble_att_svr_prep_entry_pool:86,ble_eddystone_set_adv_data_uid:191,ble_eddystone_set_adv_data_url:191,ble_eddystone_url_scheme_http:191,ble_eddystone_url_suffix_org:191,ble_err_acl_conn_exist:33,ble_err_auth_fail:33,ble_err_chan_class:33,ble_err_cmd_disallow:33,ble_err_coarse_clk_adj:33,ble_err_conn_accept_tmo:33,ble_err_conn_establish:33,ble_err_conn_limit:33,ble_err_conn_parm:33,ble_err_conn_rej_bd_addr:33,ble_err_conn_rej_channel:33,ble_err_conn_rej_resourc:33,ble_err_conn_rej_secur:33,ble_err_conn_spvn_tmo:33,ble_err_conn_term_loc:33,ble_err_conn_term_m:33,ble_err_ctlr_busi:33,ble_err_diff_trans_col:33,ble_err_dir_adv_tmo:33,ble_err_encryption_mod:33,ble_err_host_busy_pair:33,ble_err_hw_fail:33,ble_err_inq_rsp_too_big:33,ble_err_instant_pass:33,ble_err_insufficient_sec:33,ble_err_inv_hci_cmd_parm:33,ble_err_inv_lmp_ll_parm:33,ble_err_link_key_chang:33,ble_err_lmp_collis:33,ble_err_lmp_ll_rsp_tmo:33,ble_err_lmp_pdu:33,ble_err_mac_conn_fail:33,ble_err_mem_capac:33,ble_err_no_pair:33,ble_err_no_role_chang:33,ble_err_page_tmo:33,ble_err_parm_out_of_rang:33,ble_err_pending_role_sw:33,ble_err_pinkey_miss:33,ble_err_qos_parm:33,ble_err_qos_reject:33,ble_err_rd_conn_term_pwroff:33,ble_err_rd_conn_term_resrc:33,ble_err_rem_user_conn_term:33,ble_err_repeated_attempt:33,ble_err_reserved_slot:33,ble_err_role_sw_fail:33,ble_err_sco_air_mod:33,ble_err_sco_itvl:33,ble_err_sco_offset:33,ble_err_sec_simple_pair:33,ble_err_synch_conn_limit:33,ble_err_unit_key_pair:33,ble_err_unk_conn_id:33,ble_err_unk_lmp:33,ble_err_unknown_hci_cmd:33,ble_err_unspecifi:33,ble_err_unsupp_lmp_ll_parm:33,ble_err_unsupp_qo:33,ble_err_unsupp_rem_featur:33,ble_err_unsupport:33,ble_ext_adv:14,ble_ext_adv_max_s:14,ble_ga:190,ble_gap:[28,89],ble_gap_adv_act:28,ble_gap_adv_dflt_channel_map:28,ble_gap_adv_fast_interval1_max:28,ble_gap_adv_fast_interval1_min:28,ble_gap_adv_fast_interval2_max:28,ble_gap_adv_fast_interval2_min:28,ble_gap_adv_param:[28,191,192],ble_gap_adv_rsp_set_data:28,ble_gap_adv_rsp_set_field:28,ble_gap_adv_set_data:28,ble_gap_adv_set_field:[28,186],ble_gap_adv_start:[28,186,189,191,192],ble_gap_adv_stop:28,ble_gap_chr_uuid16_appear:[188,190],ble_gap_chr_uuid16_device_nam:[188,190],ble_gap_chr_uuid16_periph_pref_conn_param:188,ble_gap_chr_uuid16_periph_priv_flag:188,ble_gap_chr_uuid16_reconnect_addr:188,ble_gap_conn_act:28,ble_gap_conn_cancel:28,ble_gap_conn_desc:[28,189],ble_gap_conn_dur_dflt:28,ble_gap_conn_find:[28,189],ble_gap_conn_find_by_addr:28,ble_gap_conn_fn:186,ble_gap_conn_mode_dir:28,ble_gap_conn_mode_non:28,ble_gap_conn_mode_und:[28,186,189],ble_gap_conn_param:28,ble_gap_conn_pause_centr:28,ble_gap_conn_pause_peripher:28,ble_gap_conn_rssi:28,ble_gap_connect:28,ble_gap_disc:28,ble_gap_disc_act:28,ble_gap_disc_cancel:28,ble_gap_disc_dur_dflt:28,ble_gap_disc_mode_gen:[28,186,189],ble_gap_disc_mode_ltd:28,ble_gap_disc_mode_non:28,ble_gap_disc_param:28,ble_gap_encryption_initi:28,ble_gap_ev:[28,189],ble_gap_event_adv_complet:28,ble_gap_event_conn_upd:[28,189],ble_gap_event_conn_update_req:28,ble_gap_event_connect:[28,189],ble_gap_event_disc:28,ble_gap_event_disc_complet:28,ble_gap_event_disconnect:[28,189],ble_gap_event_enc_chang:[28,189],ble_gap_event_ext_disc:28,ble_gap_event_fn:[28,191,192],ble_gap_event_identity_resolv:28,ble_gap_event_l2cap_update_req:28,ble_gap_event_listen:28,ble_gap_event_listener_regist:28,ble_gap_event_listener_unregist:28,ble_gap_event_mtu:28,ble_gap_event_notify_rx:28,ble_gap_event_notify_tx:28,ble_gap_event_passkey_act:28,ble_gap_event_phy_update_complet:28,ble_gap_event_repeat_pair:28,ble_gap_event_subscrib:[28,189],ble_gap_event_term_failur:28,ble_gap_ext_adv_configur:28,ble_gap_ext_adv_data_status_complet:28,ble_gap_ext_adv_data_status_incomplet:28,ble_gap_ext_adv_data_status_trunc:28,ble_gap_ext_adv_param:28,ble_gap_ext_adv_remov:28,ble_gap_ext_adv_rsp_set_data:28,ble_gap_ext_adv_set_addr:28,ble_gap_ext_adv_set_data:28,ble_gap_ext_adv_start:28,ble_gap_ext_adv_stop:28,ble_gap_ext_connect:28,ble_gap_ext_disc:28,ble_gap_ext_disc_param:28,ble_gap_initial_conn_itvl_max:28,ble_gap_initial_conn_itvl_min:28,ble_gap_initial_conn_lat:28,ble_gap_initial_conn_max_ce_len:28,ble_gap_initial_conn_min_ce_len:28,ble_gap_initial_supervision_timeout:28,ble_gap_le_phy_1m:28,ble_gap_le_phy_1m_mask:28,ble_gap_le_phy_2m:28,ble_gap_le_phy_2m_mask:28,ble_gap_le_phy_any_mask:28,ble_gap_le_phy_cod:28,ble_gap_le_phy_coded_ani:28,ble_gap_le_phy_coded_mask:28,ble_gap_le_phy_coded_s2:28,ble_gap_le_phy_coded_s8:28,ble_gap_lim_disc_scan_int:28,ble_gap_lim_disc_scan_window:28,ble_gap_mesh_cb_regist:28,ble_gap_pair_initi:28,ble_gap_private_mode_devic:28,ble_gap_private_mode_network:28,ble_gap_read_le_phi:28,ble_gap_repeat_pair:28,ble_gap_repeat_pairing_ignor:28,ble_gap_repeat_pairing_retri:28,ble_gap_role_mast:28,ble_gap_role_slav:28,ble_gap_scan_fast_interval_max:28,ble_gap_scan_fast_interval_min:28,ble_gap_scan_fast_period:28,ble_gap_scan_fast_window:28,ble_gap_scan_slow_interval1:28,ble_gap_scan_slow_window1:28,ble_gap_sec_st:28,ble_gap_security_initi:28,ble_gap_set_event_cb:28,ble_gap_set_prefered_default_le_phi:28,ble_gap_set_prefered_le_phi:28,ble_gap_set_priv_mod:28,ble_gap_subscribe_reason_restor:28,ble_gap_subscribe_reason_term:28,ble_gap_subscribe_reason_writ:28,ble_gap_svc_uuid16:[188,190],ble_gap_termin:28,ble_gap_unpair:28,ble_gap_unpair_oldest_p:28,ble_gap_upd:86,ble_gap_upd_param:28,ble_gap_update_param:[14,28],ble_gap_wl_set:28,ble_gatt:[29,30,89],ble_gatt_access_ctxt:[29,30,188,217,219],ble_gatt_access_fn:[29,30],ble_gatt_access_op_read_chr:[29,30,188,217,219],ble_gatt_access_op_read_dsc:[29,30],ble_gatt_access_op_write_chr:[29,30,188,217,219],ble_gatt_access_op_write_dsc:[29,30],ble_gatt_attr:[29,30],ble_gatt_attr_fn:[14,29,30],ble_gatt_chr:[29,30],ble_gatt_chr_def:[29,30,188,190,217,219],ble_gatt_chr_f_auth_sign_writ:[29,30],ble_gatt_chr_f_aux_writ:[29,30],ble_gatt_chr_f_broadcast:[29,30],ble_gatt_chr_f_ind:[29,30],ble_gatt_chr_f_notifi:[29,30,217,219],ble_gatt_chr_f_read:[29,30,188,190,217,219],ble_gatt_chr_f_read_authen:[29,30],ble_gatt_chr_f_read_author:[29,30],ble_gatt_chr_f_read_enc:[29,30,217,219],ble_gatt_chr_f_reliable_writ:[29,30],ble_gatt_chr_f_writ:[29,30,217,219],ble_gatt_chr_f_write_authen:[29,30],ble_gatt_chr_f_write_author:[29,30],ble_gatt_chr_f_write_enc:[29,30,217,219],ble_gatt_chr_f_write_no_rsp:[29,30],ble_gatt_chr_flag:[29,30],ble_gatt_chr_fn:[29,30],ble_gatt_chr_prop_auth_sign_writ:[29,30],ble_gatt_chr_prop_broadcast:[29,30],ble_gatt_chr_prop_extend:[29,30],ble_gatt_chr_prop_ind:[29,30],ble_gatt_chr_prop_notifi:[29,30],ble_gatt_chr_prop_read:[29,30],ble_gatt_chr_prop_writ:[29,30],ble_gatt_chr_prop_write_no_rsp:[29,30],ble_gatt_disc_svc_fn:[29,30],ble_gatt_dsc:[29,30],ble_gatt_dsc_clt_cfg_uuid16:[29,30],ble_gatt_dsc_def:[29,30],ble_gatt_dsc_fn:[29,30],ble_gatt_error:[29,30],ble_gatt_mtu_fn:[29,30],ble_gatt_register_ctxt:[29,30],ble_gatt_register_fn:[29,30,190],ble_gatt_register_op_chr:[29,30],ble_gatt_register_op_dsc:[29,30],ble_gatt_register_op_svc:[29,30],ble_gatt_reliable_attr_fn:[29,30],ble_gatt_svc:[29,30],ble_gatt_svc_def:[29,30,188,190,217,219],ble_gatt_svc_foreach_fn:[29,30],ble_gatt_svc_type_end:[29,30],ble_gatt_svc_type_primari:[29,30,188,190,217,219],ble_gatt_svc_type_secondari:[29,30],ble_gatt_svc_uuid16:[29,30],ble_gattc:89,ble_gattc_disc_all_chr:[29,30],ble_gattc_disc_all_dsc:[29,30],ble_gattc_disc_all_svc:[29,30],ble_gattc_disc_chrs_by_uuid:[29,30],ble_gattc_disc_svc_by_uuid:[29,30],ble_gattc_exchange_mtu:[29,30],ble_gattc_find_inc_svc:[29,30],ble_gattc_ind:[29,30],ble_gattc_indicate_custom:[29,30],ble_gattc_init:[29,30],ble_gattc_notifi:[29,30],ble_gattc_notify_custom:[29,30],ble_gattc_proc_pool:86,ble_gattc_read:[14,29,30],ble_gattc_read_by_uuid:[29,30],ble_gattc_read_long:[29,30],ble_gattc_read_mult:[29,30],ble_gattc_writ:[29,30],ble_gattc_write_flat:[14,29,30],ble_gattc_write_long:[29,30],ble_gattc_write_no_rsp:[29,30],ble_gattc_write_no_rsp_flat:[29,30],ble_gattc_write_reli:[29,30],ble_gatts_add_svc:[29,30],ble_gatts_chr_upd:[29,30,217,219],ble_gatts_clt_cfg_pool:86,ble_gatts_count_cfg:[29,30],ble_gatts_find_chr:[29,30,217,219],ble_gatts_find_dsc:[29,30],ble_gatts_find_svc:[29,30],ble_gatts_register_svc:190,ble_gatts_reset:[29,30],ble_gatts_show_loc:[29,30],ble_gatts_start:[29,30],ble_gatts_svc_set_vis:[29,30],ble_h:[32,33,35,38,89,191,192,217],ble_hci_ram_evt_hi_pool:86,ble_hci_ram_evt_lo_pool:86,ble_hci_uart_baud:184,ble_hs_:190,ble_hs_adv_field:[28,186,191],ble_hs_att_err:33,ble_hs_cfg:[38,191,192],ble_hs_conn_handle_non:27,ble_hs_conn_pool:86,ble_hs_eagain:33,ble_hs_ealreadi:[28,33],ble_hs_eapp:33,ble_hs_eauthen:33,ble_hs_eauthor:33,ble_hs_ebaddata:33,ble_hs_ebusi:[28,29,30,33],ble_hs_econtrol:33,ble_hs_edon:[28,33],ble_hs_eencrypt:33,ble_hs_eencrypt_key_sz:33,ble_hs_einv:[14,28,29,30,33],ble_hs_emsgs:[28,33],ble_hs_eno:[28,29,30,33],ble_hs_enoaddr:33,ble_hs_enomem:[29,30,33],ble_hs_enomem_evt:33,ble_hs_enotconn:[28,33],ble_hs_enotsup:33,ble_hs_enotsync:33,ble_hs_eo:33,ble_hs_ereject:33,ble_hs_erol:33,ble_hs_err_sm_peer_bas:33,ble_hs_err_sm_us_bas:33,ble_hs_estore_cap:33,ble_hs_estore_fail:33,ble_hs_etimeout:33,ble_hs_etimeout_hci:33,ble_hs_eunknown:33,ble_hs_ev_tx_notif:100,ble_hs_event_tx_notifi:100,ble_hs_evq_set:27,ble_hs_forev:[27,28,189,191,192],ble_hs_hci_cmd_send:218,ble_hs_hci_err:33,ble_hs_hci_ev_pool:86,ble_hs_id:35,ble_hs_id_gen_rnd:[35,191,192],ble_hs_id_set_rnd:[32,35,191,192],ble_hs_init:27,ble_hs_l2c_err:33,ble_hs_reset_fn:38,ble_hs_sched_reset:27,ble_hs_sm_peer_err:33,ble_hs_sm_us_err:33,ble_hs_start:27,ble_hs_sync:27,ble_hs_sync_fn:38,ble_ibeacon_set_adv_data:192,ble_l2cap:89,ble_l2cap_chan_pool:86,ble_l2cap_sig_err_cmd_not_understood:33,ble_l2cap_sig_err_invalid_cid:33,ble_l2cap_sig_err_mtu_exceed:33,ble_l2cap_sig_proc_pool:86,ble_ll:[89,90],ble_ll_cfg_feat_le_encrypt:173,ble_ll_conn:89,ble_ll_prio:176,ble_lp_clock:36,ble_max_connect:[14,220,222],ble_mesh_dev_uuid:45,ble_mesh_pb_gatt:45,ble_npl_eventq:27,ble_own:[191,192],ble_own_addr_publ:28,ble_own_addr_random:[28,191,192],ble_own_addr_rpa_public_default:28,ble_own_addr_rpa_random_default:28,ble_phi:89,ble_public_dev_addr:35,ble_rigado:60,ble_role_broadcast:222,ble_role_peripher:222,ble_sm_err_alreadi:33,ble_sm_err_authreq:33,ble_sm_err_cmd_not_supp:33,ble_sm_err_confirm_mismatch:33,ble_sm_err_cross_tran:33,ble_sm_err_dhkei:33,ble_sm_err_enc_key_sz:33,ble_sm_err_inv:33,ble_sm_err_numcmp:33,ble_sm_err_oob:33,ble_sm_err_pair_not_supp:33,ble_sm_err_passkei:33,ble_sm_err_rep:33,ble_sm_err_unspecifi:33,ble_sm_legaci:173,ble_store_config:14,ble_svc_gap_device_name_set:219,ble_svc_gatt_chang:[29,30],ble_tgt:[183,191,192],ble_uu:190,ble_uuid128_init:[217,219],ble_uuid128_t:[217,219],ble_uuid16:[188,190],ble_uuid16_declar:[217,219],ble_uuid:[217,219],ble_uuid_128_to_16:188,ble_uuid_t:[29,30],ble_uuid_u16:[217,219],ble_uuidxx_declar:[29,30],ble_xtal_settle_tim:36,blecent:[7,14,74],blecsc:74,blehci:[7,74],blehciproj:184,blehostd:79,blehr:74,blemesh:[43,45,74],blemesh_light:74,blemesh_shel:74,blenano:66,bleprph:[7,21,43,74,79,173,185,186,187,188,189,190,203,217,218,219,220,234],bleprph_advertis:[186,189],bleprph_appear:188,bleprph_device_nam:[186,188],bleprph_le_phy_support:219,bleprph_log:[186,189,217,219],bleprph_oic:[7,74,225],bleprph_oic_sensor:220,bleprph_on_connect:186,bleprph_pref_conn_param:188,bleprph_print_conn_desc:189,bleprph_privacy_flag:188,bleprph_reconnect_addr:188,blesplit:[7,74],bletest:[7,74],bletoh:102,bleuart:[7,74],bleuartx000:25,blink:[1,7,74,106,112,181,193,194,196,197,198,199,200,205,207,219,236],blink_nord:234,blink_rigado:60,blinki:[1,11,17,18,20,47,56,57,61,68,74,106,183,184,204,205,207,211,218,219,228,229,230,232,233,234,236],blinky_callout:195,blinky_sim:74,blksize:103,blksz:[86,230],blob:[33,145],block:[33,41,86,99,100,102,103,111,121,127,130,141,149,152,154,155,163,205,218,230],block_addr:103,block_siz:103,blocks_siz:103,blue:200,bluetooth:[1,9,18,19,21,33,34,35,36,39,41,45,102,173,185,186,191,192,194,203,218,236],bmd300eval:[61,66,198,219],bmd:[198,219],bmp280:25,bno055:[164,165,220,222,224],bno055_0:[164,221,224],bno055_acc_cfg_bw_125hz:224,bno055_acc_cfg_rng_16g:224,bno055_acc_unit_ms2:224,bno055_angrate_unit_dp:224,bno055_cfg:[165,224],bno055_cli:[221,222],bno055_config:[165,224],bno055_default_cfg:165,bno055_do_format_android:224,bno055_err:165,bno055_euler_unit_deg:224,bno055_get_chip_id:165,bno055_id:165,bno055_info:165,bno055_init:[164,165],bno055_log:165,bno055_ofb:[164,220,221,222],bno055_opr_mode_ndof:224,bno055_pwr_mode_norm:224,bno055_sensor_get_config:165,bno055_sensor_read:165,bno055_shel:221,bno055_shell_init:221,bno055_stat:165,bno055_stat_sect:165,bno055_temp_unit_degc:224,board:[1,2,4,5,7,11,17,21,25,35,36,42,52,55,60,66,68,70,71,72,74,105,106,121,143,144,149,165,166,171,173,175,176,180,181,184,187,191,192,194,195,201,203,205,207,217,218,224,225,226,228,231,233,234,236],bodi:[115,162,178,224],body_len:162,bold:180,bond:[28,34,39,41,42,187],bondabl:39,bone:[97,185,191,192,236],bookkeep:127,bool:[103,113,117,161],boot:[7,15,21,27,56,74,106,113,114,117,157,180,184,193,196,197,198,199,200,201,203,204,211,218,219,221,223,226,229,230,232],boot_boot_serial_test:7,boot_bootutil:173,boot_img_mag:115,boot_load:106,boot_mag:115,boot_nrf52dk:218,boot_olimex:199,boot_seri:[7,117],boot_serial_setup:7,boot_test:7,bootabl:[173,203,229,232],bootload:[1,11,18,24,25,56,60,106,109,114,117,153,157,180,194,195,203,207,218,219,220,222,223,231],bootutil:[7,114,115,117,193,196,197,198,199,200,204,211,218,219,221,229,230,232],bootutil_misc:[7,193,196,197,198,200,221,229,230,232],both:[6,9,10,14,27,33,34,39,41,52,68,70,71,72,75,102,104,106,111,115,116,118,121,141,149,152,161,162,173,175,176,179,193,195,204,210,211,214,219],bottl:[71,94],bottom:[11,106,110,112,187],bound:[102,106,139],boundari:[102,103,106],box:[11,234],bps:155,brace:25,branch:[1,4,7,10,13,18,20,68,69,70,72,73,92,93,95,96,115,193,211,212,213],branchnam:13,brand:200,bread:219,breadboard:219,breakdown:173,breakpoint:[193,197],breviti:[173,180,230],brew:[3,4,7,10,49,68,71,73,94,96],brick:115,brief:[14,32,148,191,192,204],briefli:106,bring:[11,106,143,221,225,228],broad:236,broadca:[191,192],broadcast:[14,27,39,44,186,191,192],brows:[187,196,212],bsd:114,bsncent:74,bsnprph:74,bsp:[1,7,16,25,36,45,47,50,51,55,56,58,60,63,68,74,75,105,116,121,141,143,147,148,154,155,163,164,165,166,168,173,176,180,183,184,187,193,195,196,197,198,199,200,204,205,211,218,219,220,221,222,223,224,226,229,230,232,233,234,236],bsp_arduino_zero:193,bsp_arduino_zero_pro:[193,211],bsp_timer:154,bsppackag:106,bss:[20,61,106,173],bssnz_t:[217,219],bt_mesh_provis:14,btattach:184,btmesh_shel:14,btshell:[7,41,43,50,51,58,59,63,74,84,187,201],btshell_chr_pool:86,btshell_dsc_pool:86,btshell_svc_pool:86,buad:79,buf:[116,122,139,161,162],buf_len:[102,116],buffer:[14,19,21,28,29,30,33,102,103,105,109,110,116,117,121,146,149,152,161,162,175,192,219],buffer_len:219,buffer_size_down:233,bug:[4,7,10,193,197,226,233,234],bugzilla:25,bui:219,build:[1,2,3,4,5,6,10,14,20,24,44,45,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,93,95,105,106,107,109,115,121,143,149,160,162,166,173,174,175,176,178,185,186,187,194,203,205,210,217,218,223,228,231,236],build_arduino_blinki:11,build_arduino_boot:11,build_numb:159,build_profil:[1,45,50,51,56,63,66,74,106,173,180,183,184,187,193,196,197,198,199,200,204,211,218,219,220,221,222,223,226,229,230,232],buildabl:7,built:[1,4,7,8,9,15,26,43,46,47,51,52,55,56,68,70,71,72,73,74,76,94,95,96,102,115,152,162,173,178,180,183,184,187,191,192,193,194,195,196,197,198,199,200,201,204,210,211,217,218,219,220,221,226,229,230,232],bundl:[24,68,114],burn:[24,191,192],bus:[2,149],buse:[121,143],busi:[33,103,104,207,218],button1_pin:205,button:[2,4,11,13,24,111,193,196,205],bytes_read:139,bytesp:127,c_ev:97,c_evq:97,c_tick:97,cabl:[184,193,194,196,197,198,199,201,203,204,205,207,211,219,226,228,229,231,232],cach:[71,94,121,141,143],cache_large_file_test:210,cal:223,calcul:[29,30,33,41,61,102,103,113,115,127,162],calendar:9,call:[6,7,9,10,14,23,27,28,29,30,32,35,38,43,49,74,97,98,99,100,101,102,103,104,105,106,110,111,112,113,114,115,116,117,118,119,121,122,125,127,128,129,130,132,133,137,142,145,148,149,151,152,153,154,155,156,158,161,162,163,164,165,167,168,169,170,172,174,176,178,182,183,186,187,188,189,190,191,192,193,195,201,204,205,207,210,212,218,219,220,221,223,226,231],callback:[14,27,28,29,30,33,38,99,100,102,103,113,117,127,132,137,148,152,154,155,162,163,164,165,167,169,170,172,176,186,188,190,191,192,195,205,218,226],caller:[28,102,103,117,127,146,154,160,161,162],callout:[100,105,110,168,195,226],callout_l:205,callout_reset:116,came:184,can:[1,2,3,4,5,6,7,8,9,10,11,14,15,17,18,19,21,25,26,27,28,29,30,32,33,34,35,36,39,42,43,44,46,47,48,55,58,63,68,70,71,72,73,74,75,76,77,79,85,89,93,94,95,96,97,98,99,100,102,103,104,105,106,107,109,110,111,112,114,115,116,117,118,121,122,123,124,127,128,130,132,133,137,138,139,141,142,143,148,150,151,152,154,155,156,157,161,162,163,164,165,166,167,168,172,173,174,175,176,178,179,180,181,183,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,208,210,211,212,213,217,218,219,220,221,222,223,224,226,228,229,230,232,233,234,236],cancel:[28,33,39,97],candid:212,cannot:[4,14,32,33,84,99,101,104,105,111,115,138,144,152,154,176,193,201,211,212,213,214],cap:14,capabl:[33,34,39,41,108,117,121,162,173,195,207,233],capac:33,captian:94,carbon:217,card:[121,123,138],care:[16,28,102,105,112,191,192,212,213,217],carri:102,cascad:[1,74],case_nam:178,cast:[102,103,188],cat:[25,93,218,219],catastroph:38,categor:106,categori:[18,109],caus:[14,27,103,105,111,149,153,163,175,203,207,219,233],caveat:[14,115],cb_arg:[14,28,29,30,116,127,137,154,178,186,190,191,192],cb_func:154,cbmem:[7,162],cbmem_buf:162,cbmem_init:162,cbor:[119,120],cborattr:7,cc1:25,cccd:[28,29,30,39],ccm:34,cdc:196,cell:34,cellar:[4,6,10,49,71,73,94,96],central:[33,42,185,186,187,189],certain:[1,18,43,102,103,105,106,121,184,213],certainli:[14,219],cess_op_:188,cfg:[83,139,149,152,154,155,163,164,165,197],cflag:[1,25,63,74,106],cgi:[25,114],ch_commit:116,ch_export:116,ch_get:116,ch_get_handler_t:116,ch_name:116,ch_set:116,chain:[102,103,161],challeng:208,chanc:[105,112],chang:[1,4,6,7,10,13,14,17,18,20,21,28,29,30,32,33,34,36,40,42,43,59,62,63,65,70,74,75,93,102,106,107,113,115,116,148,152,162,163,164,172,173,175,176,180,181,184,187,189,191,192,193,196,197,201,205,207,217,218,220,221,222,223,226,228,233,234],channel:[14,28,33,41,43,121,219],channel_map:[28,39],chapter:[2,43,109,119],charact:[117,126,141,155,157,159,160,161,172,176,190,211,218,226,233],character:36,characteri:[188,190],characterist:[9,29,30,39,40,43,115,162,187,190,217,219],check:[4,6,8,10,14,15,17,23,33,34,68,69,92,97,100,103,112,113,116,146,161,163,165,173,175,176,180,183,184,185,196,199,203,204,210,213,221,224,231],checkbox:72,checkin:[90,110,112],checkout:[13,93,95,194],checksum:[127,129],child:[103,139],chip:[4,109,121,122,143,148,152,153,163,165,193,194,196,197,200,211,212,221,223],chip_id:[221,223],chipset:[121,143,193,211],choic:[2,13,141,184,221],choos:[6,7,13,14,21,72,102,112,114,173,174,183,186,195,196,198,201,207,217,219],chose:174,chosen:[102,106,115,138,219],chr:[29,30,188,217,219],chr_access:188,chr_def_handl:[29,30],chr_end_handl:[29,30],chr_uuid128:[29,30],chr_uuid:[29,30],chr_val_handl:[29,30,217,219],chunk:[21,102],ci40:66,cid:187,circuit:149,circular:[19,162,175,176],circularli:213,clamp:223,clang:6,clarif:13,clarifi:121,clariti:123,classif:33,clean:[1,10,26,46,52,63,70,71,72,76,94,139,204,207],cleanli:176,clear:[28,29,30,85,97,102,103,112,115,127,163,167,168],clearli:[8,33],cli:117,click:[2,4,11,13,187,191,192,193,196,197,199,223,232],client:[11,14,15,19,30,31,33,39,43,44,139,142,166,191,217],clk:152,clock:[28,33,37,99,153,193,197,221],clock_freq:99,clone:[10,13,58,63,68,71,94],close:[2,72,121,139,155,164,193,196,197,199,200,224],closer:[72,95],closest:154,clue:25,cmake:1,cmd:[68,74,106,146,172,218,221],cmd_len:218,cmd_pkt:218,cmd_read_co2:218,cmp:218,cmsi:[2,7,24,61,193,196,197,198,199,200,226],cmsis_nvic:[196,197,198,199,200,226],cn4:180,cnt:[86,117,141,152,162,174,230],co2:[217,218],co2_evq:217,co2_read_ev:217,co2_sns_str:217,co2_sns_typ:217,co2_sns_val:217,co2_stack:217,co2_stack_s:217,co2_task:217,co2_task_handl:217,co2_task_prio:217,coap:[120,166,170,220,225],coars:33,coc:39,code:[1,5,7,9,10,12,13,14,15,26,27,28,29,30,31,36,38,39,41,43,68,98,102,103,105,108,109,110,113,114,115,116,117,119,121,123,126,127,139,142,143,144,148,149,152,154,155,157,162,163,164,165,166,167,168,169,173,176,178,185,186,188,189,190,193,194,195,201,204,205,207,209,211,212,218,219,220,223,224,225,226,228,230,231,236],codebas:[193,211],coded_interval_max:39,coded_interval_min:39,coded_lat:39,coded_max_conn_event_len:39,coded_min_conn_event_len:39,coded_param:28,coded_scan_interv:39,coded_scan_window:39,coded_timeout:39,codepag:138,coding_standard:7,coexist:115,collect:[1,7,56,68,74,102,103,119,127,142,161,173,180,212],collis:33,colon:[14,79],color:181,column:32,com11:8,com1:79,com3:[8,195,211,221,229,232],com6:8,com:[8,10,11,13,26,28,46,68,70,71,72,76,93,94,95,114,145,180,184,195,211,212,214,221,229,230,232],combin:[1,33,34,38,56,74,105,106,149,183,191,192,212,213],combo:173,come:[3,42,43,68,74,106,114,116,117,121,162,193,199,200,211,218,219,232],comm:[180,194],comma:[64,79],command:[1,2,4,7,8,10,14,15,21,27,33,42,47,48,49,50,51,53,54,55,57,58,59,60,61,62,64,65,66,67,70,71,72,73,74,80,81,83,84,85,88,89,91,93,94,95,96,106,109,115,118,120,123,124,125,149,157,158,162,166,173,174,175,176,178,180,181,183,191,192,193,195,196,197,198,199,200,203,204,207,208,210,211,212,214,215,219,220,221,222,223,224,226,229,232,233,234],comment:[3,13,14,26,106,179,223,236],commerci:218,commit:[10,13,116,219],common:[68,74,100,102,109,111,112,121,122,140,143,148,165,166,173,190,197],commonli:[18,111,152,191],commun:[9,38,39,43,44,79,91,117,119,123,149,152,163,164,165,180,181,184,186,189,194,203,204,205,207,211,212,219,221,226,229,230,231,232,236],compani:41,compar:[13,33,102,163,196,197,198,204,207,215,219],compare_func:168,comparison:[33,34,102,113,168],compat:[4,14,18,21,25,43,68,115,117,122,172,173,193,204,211,218,221,223,224,226,233],compens:113,compil:[1,4,5,6,7,8,10,14,33,47,60,66,68,71,74,94,102,105,106,109,114,121,172,174,178,179,180,183,193,196,197,198,199,200,201,204,205,211,218,219,220,221,226,229,230,232],complaint:43,complementari:44,complet:[9,11,26,28,33,34,39,41,42,46,68,72,76,106,108,109,112,115,117,127,139,143,146,149,152,155,162,173,179,184,186,191,192,197,205,207,212,218,219,220,224,225,226,229,230,232],completion_cb:117,complex:[9,44,105,106,121,143,182,207],compli:43,complianc:[218,219],compliant:43,complic:[68,105,173],compon:[1,7,11,31,52,61,68,70,71,72,74,98,106,109,116,121,143,149,152,173,174,184,191,192,194,201,203,205,211,218,228,231],compos:[52,70,71,72,179],composit:161,comprehens:179,compress:[68,94,141,191],compris:[7,115,141],comput:[3,4,6,8,11,14,24,44,69,71,72,92,94,117,129,138,183,184,193,194,196,197,198,199,200,203,207,220,222,223,228,229,231,232],concept:[11,34,102,105,172,176,182,183,185,193,194,203,207,211,228,231],conceptu:19,concern:[3,28,102],concis:119,conclud:[191,192,219],concurr:[1,14,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,97,101,185,186],condit:[4,28,33,115,149,164,168,172,175,210,218,219],condition:[68,164,175,176,221,223],conduct:[115,119],conf:204,conf_bytes_from_str:116,conf_commit:116,conf_commit_handler_t:116,conf_dst_regist:116,conf_ensure_load:116,conf_export_func_t:116,conf_export_handler_t:116,conf_export_persist:116,conf_export_show:116,conf_export_tgt:116,conf_export_tgt_t:116,conf_fcb_dst:116,conf_fcb_src:116,conf_file_dst:116,conf_file_src:116,conf_get_handler_t:116,conf_get_stored_valu:116,conf_get_valu:116,conf_handl:116,conf_init:116,conf_int8:116,conf_load:[116,219],conf_regist:116,conf_sav:116,conf_save_on:116,conf_save_tre:116,conf_set_from_storag:116,conf_set_handler_t:116,conf_set_valu:116,conf_src_regist:116,conf_stor:116,conf_store_init:116,conf_store_load_cb:116,conf_str_from_byt:116,conf_str_from_bytes_len:116,conf_str_from_valu:116,conf_typ:116,conf_value_from_str:116,conf_value_set:116,confidenti:34,config:[1,7,14,45,63,74,75,77,91,93,94,95,118,122,138,139,154,175,176,183,201,218,219,221],config_:164,config_bno055_sensor:[164,224],config_cli:116,config_fcb:[116,175],config_fcb_flash_area:[175,176],config_lis2dh12_sensor:164,config_newtmgr:[63,201],config_nff:[116,139,175],config_pkg_init:176,configur:[6,7,9,19,28,29,30,32,33,37,38,44,45,63,68,70,71,72,74,75,99,103,105,106,107,109,115,117,119,121,139,141,143,144,148,149,152,154,155,156,166,167,170,173,177,183,186,190,193,196,199,200,204,205,207,208,214,218,219,221,223,225,226,228,230,233,234],configuraton:138,confirm:[8,25,33,39,84,115,173,204,229,232],confirmbe9699809a049:84,conflict:[74,175,213],confluenc:13,confus:[212,219],congratul:[7,180,187,217,218,219],conifgur:116,conjunct:[44,167],conn:[21,39,40,42,77,78,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,189,191,192,203,229,230,232],conn_handl:[14,28,29,30,33,187,188,189,217,219],conn_interval_max:41,conn_interval_min:41,conn_itvl:[28,42,187],conn_lat:[28,42,187],conn_mod:[28,189],conn_param:28,conn_profil:[78,79,80,81,82,83,84,85,86,87,88,89,90],conn_upd:189,connect:[4,7,8,9,11,17,27,28,29,30,33,34,36,38,40,41,43,44,51,55,56,68,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,109,117,119,120,121,143,148,149,152,153,173,180,185,186,187,188,189,191,192,194,205,217,218,223,227,228,231],connect_don:211,connectable_mod:186,connection_profil:84,connectionless:39,connector:[4,184,196,199,201,204,232],connextra:21,connintervalmax:41,connintervalmin:41,connstr:[21,79,203,229,230,232],conntyp:21,consecut:110,consequ:[33,115,173],conserv:[9,102,109],consid:[8,43,75,102,105,111,129,149,190,212],consist:[1,43,44,74,111,112,115,116,119,121,152,173,175,176,178,190],consol:[1,7,8,11,14,19,38,68,74,109,114,116,124,139,155,162,176,183,184,187,191,192,194,205,210,218,219,223,230],console_append_char_cb:117,console_blocking_mod:117,console_compat:117,console_echo:117,console_handle_char:117,console_init:117,console_input:117,console_is_init:117,console_is_midlin:117,console_line_event_put:117,console_line_queue_set:117,console_max_input_len:117,console_non_blocking_mod:117,console_out:117,console_pkg_init:176,console_printf:[24,33,38,117,139,217,218,219,226],console_read:117,console_rtt:[117,218,226,233],console_rx_cb:117,console_rx_restart:117,console_set_completion_cb:117,console_set_queu:117,console_sil:117,console_tick:117,console_uart:[117,218,226,233],console_uart_baud:117,console_uart_dev:117,console_uart_flow_control:117,console_uart_tx_buf_s:117,console_writ:117,consortium:119,constant:[14,17,28,152,162,163],constantli:[186,211,219,236],constitu:56,constrain:[9,68,120,208],constraint:193,construct:[10,24,102,111],consult:[139,143],consum:[29,30,100,111,155],consumpt:34,contact:[107,108,180],contain:[1,3,7,10,14,16,18,26,28,29,30,41,44,47,63,68,74,97,102,103,106,108,109,111,112,113,115,116,117,119,121,124,127,139,140,144,148,155,157,159,160,161,163,167,168,173,174,176,178,179,183,184,186,188,190,191,192,204,210,212,213,221,236],content:[11,25,28,29,30,62,74,93,102,106,115,127,128,129,139,154,161,162,173,180,186,190,191,192,199,204,207,210,213,214,221,223,224],context:[14,19,28,29,30,68,90,98,99,100,105,112,117,121,124,126,152,154,163,168,172,176,189,195,201,205],contigu:[102,115,127],continu:[6,14,28,106,111,116,172,173,181,184,193,194,199,201,205,207,211,219,222,224,225,226,228,230,231,233],contrast:176,contribut:[12,34,70,71,72,93,94,95,114,182,210,219,228],contributor:[143,218,219],control:[8,9,14,19,27,28,31,32,33,34,35,37,38,41,43,44,68,79,109,117,121,127,141,143,145,152,155,162,165,172,176,183,197,199,212,213,218,223,225],contruct:187,convei:102,conveni:[11,28,33,102,116,160],convent:[204,210,221,226],convers:[113,114,121,188],convert:[1,8,33,84,97,99,102,113,116,121,152,161,168,176,188,190,219],convini:168,cooper:14,coordin:[220,222],copi:[1,4,14,58,62,63,75,93,95,102,107,108,115,116,127,161,164,173,174,186,189,193,203,218,219,224,226,233,234],copy_don:115,copyright:[4,193,199,218,219,226,233,234],core:[1,6,7,11,18,20,24,25,28,29,30,41,43,45,50,51,56,61,63,64,66,68,74,75,84,101,106,108,110,117,119,121,122,123,138,139,142,143,145,162,164,172,173,174,176,177,180,183,184,185,186,187,193,194,195,196,197,198,199,200,204,207,210,211,212,213,218,219,220,221,222,223,226,228,229,230,231,232,233,234,236],core_cminstr:197,core_cmx:24,core_o:117,core_path:74,coreconvert:84,coredownload:84,coredump:[7,144],coredump_flash_area:176,coreeras:84,corelist:84,corner:199,corp:[2,193],correct:[1,2,4,14,19,21,23,54,103,106,113,115,141,173,176,184,197,198,199,204,207,210,219,221],correctli:[2,16,102,181,184,193,197,210,218,220],correpond:113,correspo:190,correspond:[11,28,29,30,33,99,102,103,106,115,142,162,163,168,186,188,191,192,213,219],correspondingli:28,corrupt:[14,103],corrupt_block_test:210,corrupt_scratch_test:210,cortex:[4,114,196,198,204,211,219,226],cortex_m0:74,cortex_m4:[74,106,196,197,198,199,200,204,226],cortex_m:193,cost:9,could:[14,19,29,30,33,102,111,159,188,223],couldn:186,count:[24,29,30,68,94,102,111,112,115,116,161,177],counter:[98,102,174,204],countri:43,coupl:[1,14,199,219],cours:[14,217],cover:[8,74,121,176,177,179,190,207,223],cpha:152,cpol:152,cpptool:11,cpu:[14,17,98,106,108,121,143,144,151,193,197,207],cputim:[36,99,221,226],cputime_geq:99,cputime_gt:99,cputime_leq:99,cputime_lt:99,crank:219,crash:[77,91,93,94,95,110,115,118,153,155,201],crash_test:[7,118,201],crash_test_newtmgr:201,crc:[7,117,123,218],creat:[1,2,3,4,5,6,8,10,11,13,14,15,21,23,24,25,28,34,39,45,47,52,54,56,57,58,59,60,63,68,70,71,72,74,75,79,84,93,94,95,100,103,104,105,108,110,111,112,114,117,121,130,139,141,162,163,165,166,168,170,173,174,175,176,178,181,185,190,194,195,212,214,217,224,225,228,231,236],create_arduino_blinki:11,create_mbuf_pool:102,create_path:139,creation:[60,121,180,204,219],creator:[163,164,165,166,168,220,221,223,224,226],credenti:214,criteria:[33,162],critic:3,cross:[5,6,7,9,109],crt0:61,crti:61,crtn:61,crw:8,crypto:[7,24,193,196,198,200,211,229,230,232],crypto_mbedtl:173,cryptograph:[34,115],cryptographi:34,crystal:37,csrk:39,cssv6:41,csw:[90,229,232],ctlr_name:79,ctlr_path:79,ctrl:[11,183,221,233],ctx:168,ctxt:[29,30,188,189,217,219],cur_ind:189,cur_key_s:28,cur_notifi:189,curi:[187,189],curiou:3,curl:[10,71],curn:[187,189],curr:211,currantlab:[94,95],current:[10,14,24,28,36,39,44,52,53,54,57,58,59,63,64,70,71,72,73,84,94,95,96,97,98,99,102,103,104,105,106,110,111,112,113,115,116,117,121,122,123,124,126,127,138,139,148,149,152,154,157,163,168,172,174,175,180,191,193,194,197,199,201,203,204,207,208,212,213,215,221,226],cursor:168,custom:[25,35,84,103,119,142,144,162,172,176],cvs:[193,199,226,233,234],cwd:11,cycl:[28,32,43,44],cylind:219,daemon:[2,184],dai:[113,172],dap:[2,193,196,200],daplink:17,darwin10:[193,226,233,234],darwin:6,data:[9,14,17,24,27,28,29,30,33,39,40,42,43,44,56,61,77,82,93,94,95,97,99,102,103,105,106,109,112,115,116,117,119,120,128,129,130,131,132,133,137,140,150,152,155,162,164,166,170,171,173,176,177,188,189,191,192,207,217,218,223,228,234,236],data_func:163,data_len:[28,29,30,218],data_mod:152,data_ord:152,databas:[29,30,40],databit:155,databuf:[102,226],datalen:39,datasheet:[106,223],date:[10,81,138,204,210,218],datetim:[7,77,91,93,94,95,117,118,120,201,210],datetime_pars:210,daunt:186,daylight:113,dbm:[39,41,43],deactiv:173,deal:[102,105,106,121],deb:[70,73,93,96],debian:[4,6],debug:[1,2,4,5,6,7,17,19,23,52,56,60,63,68,70,71,72,75,107,165,166,175,180,183,184,193,195,196,197,198,199,200,203,211,218,219,220,221,222,223,226,229,230,232,233,234],debug_arduino_blinki:11,debug_arduinoblinki:11,debugg:[5,25,51,52,68,70,71,72,74,153,193,196,197,199,200,204,232,233,234],dec:[61,173],decemb:34,decid:[68,98,109,207],decim:[24,34,149],decis:149,declar:[11,29,30,104,112,116,145,154,164,205,210,212,224,226],decod:[116,172],decompress:191,dedic:[14,100,106,109,172,173,188,201,205,233,234],deep:144,deeper:[102,180,204,219],def:[7,29,30,164,175,176,226],defaultdevic:95,defin:[1,6,14,16,17,18,28,32,33,36,39,40,41,43,44,47,55,56,60,63,66,74,97,99,100,102,103,105,110,112,115,116,118,120,121,139,141,144,145,147,148,152,161,162,163,164,166,167,168,170,171,172,173,175,176,178,180,182,184,186,188,194,196,204,205,207,210,212,213,217,218,219,220,221,225,226,229,231,232,233],defininig:44,defininit:160,definit:[1,11,29,30,41,48,50,55,63,74,97,102,103,106,115,172,174,178,184,188,190,212,217],defint:[102,175],del:39,delai:[14,38,99,113,154,181,204,207,223],deleg:173,delet:[1,6,11,13,39,48,52,58,62,63,68,70,71,72,74,75,141,181,208,224,226],delimit:[63,116],deliv:[97,138],delta:[68,94,180],demo:217,demonstr:[33,38,102,139,204,221,226],denable_trac:25,denot:102,dep:[1,63,68,74,75,106,117,122,123,138,139,142,143,162,164,172,174,176,183,195,201,205,210,218,219,220,226],depend:[1,4,6,8,14,18,25,28,33,34,36,39,52,54,62,63,65,68,70,71,72,75,79,97,102,108,114,115,117,138,139,148,149,152,162,164,172,174,176,178,183,193,207,210,211,212,215,218,219,221,223,229,231,232],depict:143,deploi:[56,173,195],deploy:44,deprec:176,depth:[4,108],dequeu:[100,205],deriv:33,desc:189,descend:115,describ:[1,2,7,10,11,13,26,36,40,46,76,103,105,106,107,109,112,113,115,116,119,127,133,138,140,141,148,150,152,153,162,163,164,165,172,173,175,176,178,180,183,185,190,191,197,200,201,204,212,218,219,220,221,224,228],descript:[1,7,13,14,25,32,39,40,42,68,74,102,106,107,108,116,123,126,128,129,130,131,132,133,134,135,136,137,159,160,164,174,175,176,180,204,208,210,212,213,218,219,234],descriptor:[28,29,30,39,40,74,141,188],descripytor:[29,30],design:[27,34,35,43,68,109,110,113,115,141,172,173,190,207,210],desir:[99,102,111,154,164,168,210,215],desktop:13,destin:[4,14,44,102,149,160,162],detail:[1,11,13,14,15,28,34,41,43,68,105,112,115,116,139,141,149,152,163,164,165,173,180,183,186,188,190,191,192,193,201,204,212,226,233,234],detect:[33,68,103,127,139,141,153,175,176,184],determin:[29,30,33,100,102,103,112,115,127,146,154,163,172,173,176,179,186,189,212,224],determinist:14,dev:[1,2,3,4,7,8,10,11,13,21,25,61,74,79,95,117,121,122,163,164,165,176,179,180,181,183,184,187,193,195,196,197,198,199,200,203,204,211,212,213,214,218,219,220,221,223,224,226,229,230,232,236],dev_found:184,develop:[3,5,6,7,8,9,12,19,33,68,72,74,95,102,103,105,107,108,109,112,119,121,163,166,170,172,176,179,184,185,188,191,193,194,196,199,200,203,207,212,213,218,219,225,228,232,233,234,236],devic:[3,4,8,9,15,17,27,28,29,30,32,33,34,37,40,41,43,44,45,56,68,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,109,115,117,119,120,121,122,123,139,143,145,148,149,152,166,167,168,170,173,174,175,176,177,182,183,185,186,187,188,190,191,192,193,195,196,197,198,199,200,201,204,211,217,219,225,226,227,229,230,231,232,233,234,236],device_id:145,deviceaddr:35,deviceaddrtyp:35,devnam:168,dflt:161,dhcp:211,dhkei:33,diag:[155,223],diagnost:223,diagram:[119,197,199,207],dialog:[11,72,234],dictat:[10,29,30,75],did:[20,21,173],didn:223,diff:218,differ:[4,6,7,8,10,11,14,15,18,19,20,21,27,29,30,33,36,39,42,58,68,70,93,97,102,104,105,106,107,108,109,112,116,121,141,143,148,155,164,173,174,175,176,183,184,195,196,197,199,201,203,205,207,208,210,211,212,213,215,218,221,223,224,226,232,234],differenti:[102,212],difficult:[43,108,115,175],dig:[7,185],digit:[24,34,121,148,219],dioxid:217,dir:[39,123,139,140],direct:[13,28,33,39,72,149,172,174,213],direct_addr:[28,191,192],directli:[7,8,10,27,31,49,139,154,155,162,173,176,191,193,208,210,211,220,224],directori:[1,4,6,7,8,10,11,13,18,25,47,48,50,54,56,58,63,68,70,72,73,93,95,96,101,106,107,108,121,123,139,141,151,153,178,180,181,183,184,193,194,196,197,198,199,200,210,211,212,213,218,219,220,221,223,226,228,229,231,232,234,236],dirent:[123,139,140],dirnam:139,dirti:180,disabl:[6,25,33,34,36,42,98,99,117,138,148,152,155,162,164,165,172,173,175,176,189,201,208,211,219,220,221,222,226,233],disable_auto_eras:122,disallow:[33,141],disbl:172,disc_mod:[28,189,218],disc_param:28,discard:[162,211],disciplin:184,disclaim:[7,10,68,183],disconnec:39,disconnect:[39,189],discontigu:115,discov:[14,29,30,34,39,40,184],discover:[14,28,29,30,39,41,120,170,186,225],discoverable_mod:186,discoveri:[14,28,29,30,40,119,121,123,184,189,194],discret:141,discrimin:28,discuss:[13,102,107,164,173,186,221],disjoint:33,disk:[7,115,127,139,141],disk_nam:139,disk_op:123,disk_regist:[123,139],dispatch:[105,176,205],displai:[1,6,14,34,39,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,74,75,77,79,82,84,85,86,89,90,93,94,95,116,121,143,176,184,199,204,220,222,228,229,232],displayonli:39,displayyesno:39,dist:[70,93],distanc:[43,174],distinct:34,distinguish:19,distribut:[1,4,6,33,39,43,68,114,115,212,218,219],distro:6,div0:80,dive:102,diversifi:28,divid:[31,33,80,116,118,141,173],dle:39,dll:[196,198,204,219],dm00063382:180,dma:121,dndebug:63,dnrf52:106,do_task:174,doc:[4,6,7,13,26,35,46,76,193,197],docker:[3,7,193,236],dockertest:2,document:[1,4,8,11,17,18,19,24,27,31,33,35,37,72,75,77,106,110,114,124,138,139,142,143,145,167,173,178,180,185,188,190,191,192,193,196,198,203,207,210,211,212,221,226,229,230,233,234],doe:[7,14,17,20,21,24,25,27,28,33,34,48,63,72,74,79,84,100,102,103,105,106,107,112,113,115,116,117,119,121,127,141,146,149,152,157,162,164,165,167,174,175,176,183,186,193,196,197,198,200,201,203,204,205,207,208,214,226,231],doesn:[8,14,21,33,45,110,115,123,168,173,181,183,184,186,196,207],doing:[23,101,113,121,188,195,207],domain:2,don:[1,13,14,19,24,28,29,30,44,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,100,102,116,124,127,180,188,190,191,192,212,218,219],done:[6,7,8,15,23,28,35,37,68,94,104,105,106,113,115,117,127,128,156,157,168,180,184,190,191,192,193,196,197,198,201,203,204,207,211,219,226,233,234],dont:[223,233],doorbel:68,dop:139,doubl:[2,161,199],doubt:[14,190],down:[1,11,74,93,95,148,173,197,199,201,232],downgrad:[6,7],download:[1,2,4,7,11,13,15,18,20,41,52,54,55,68,71,72,73,83,84,94,95,96,139,157,183,184,193,196,197,198,199,200,210,211,214,226,228,229,230,232,233,234],doxygen:[4,7,26,101,193,197],doxygengroup:101,dpidr:200,dpkg:[70,73,93,96],dptr:162,drag:33,drain:36,draw:36,drive:[9,25,74,113,121,149],drive_tim:223,driver:[7,17,18,25,68,122,123,139,143,147,148,150,152,154,155,164,166,174,183,193,196,197,198,199,200,211,221,223,226,232,233],drop:[11,21,38,155,197,199,232],drv2605:227,drv2605_calibrated_bemf:223,drv2605_calibrated_bemf_gain:223,drv2605_calibrated_comp:223,drv2605_cli:223,drv2605_drive_tim:223,drv2605_en_pin:223,drv2605_od_clamp:223,drv2605_ofb:223,drv2605_rated_voltag:223,drv2605_shell:223,drv2605_shell_init:223,dsc:[29,30,188],dsc_uuid:[29,30],dsize:102,dst:[14,58,63,83,102,139,146,160],dsym:[68,74],dtest:63,due:[17,23,28,29,30,33,103,115,122,127,138,153,168,193,197,199],dump:[25,29,30,116,223,233],dump_cal:223,dumpreg:221,duplex:43,duplic:[39,102],durat:[14,28,32,39,42,113,188,221],duration_m:[28,191,192],dure:[14,19,28,29,30,33,34,84,98,106,110,112,115,117,158,162,163,164,173,176,178,183,188,195,207,220,224],duti:[28,43,44],dwarf:74,dylib:4,dyn:[72,95],dynam:[101,103],e407:[199,232],e407_:199,e407_devboard:[66,199,232],e407_devboard_download:199,e407_sch:232,e761d2af:[217,219],e_gatt:190,eabi:[4,7,11,20,106,114,193,226,233,234],each:[1,2,10,11,13,14,19,20,21,29,30,32,33,34,35,40,43,45,56,61,62,63,74,75,77,79,86,90,100,102,103,105,106,111,113,115,117,121,139,141,143,148,162,163,165,166,167,168,170,172,173,174,176,188,189,190,191,192,193,201,205,207,210,212,221,224,225,226,236],eager:3,earlier:[13,42,70,71,72,93,94,95,116,188,191,192,218,219,233],eas:122,easi:[1,2,3,8,9,121,143,149,174,175,196,219,220,223],easier:[21,36,106,218],easili:[9,14,166,176,226],east:113,eavesdropp:32,ecdsa256:115,ecdsa:115,echo:[11,21,73,77,91,93,94,95,96,117,118,120,201,211,229,230,232],echocommand:11,eclips:11,ectabl:[191,192],edbg:[2,193],eddyston:[39,194],eddystone_url:[39,41],edg:148,edit:[7,107,138,180,181,204,208,212,224],editor:[72,74,180,181,197],ediv:[28,39],edr:[33,41,184],edu:[196,233],ee02:204,eeprom:122,effect:[111,113,116,139,141,219],effici:[17,43,44,102,103,193],effort:219,eid:191,eight:119,einval:99,eir:41,eir_len:184,either:[1,4,6,8,10,14,25,28,39,41,42,43,70,72,74,93,97,98,100,102,103,112,116,117,118,124,127,148,149,152,153,173,176,191,192,201,204,218,219,228],elaps:[33,99,113],electron:236,elem:172,element:[29,30,52,66,68,70,71,72,102,103,112,115,116,126,127,128,129,132,134,135,161,172,207],element_typ:161,elemsp:127,elev:104,elf:[7,11,47,51,61,68,74,84,173,180,183,184,187,193,195,196,197,198,199,200,201,204,210,211,218,219,221,226,229,230,232,233,234],elfifi:84,elicit:173,els:[35,98,110,115,139,165,173,217,218,219,233],elsewher:[185,188,212],emac:218,email:[3,179,236],emb:122,embed:[1,3,4,11,25,52,68,70,71,72,114,115,141,152,179,180,193,199,226,233,234],emit:[68,74],emploi:43,empti:[63,102,112,127,146,172,176,182,190,210],emptiv:9,emul:[204,211,224],enabl:[1,8,9,14,17,24,36,42,44,45,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,75,86,89,90,91,100,106,116,117,118,119,121,122,138,143,148,152,156,162,164,165,166,168,170,171,175,176,180,183,186,189,194,202,203,205,209,216,217,218,219,224,228,231,233,234,236],enc:160,enc_chang:189,encapsul:43,encod:[7,64,116,117,119,120,170,172,204,210,220,225,226],encoding_cborattr:173,encoding_tinycbor:173,encompass:[27,33],encount:[7,21,33,70,102,116,137,207],encourag:121,encrypt:[28,33,34,39,42,141,187,189],encrypt_connect:33,end:[9,19,28,29,30,33,40,42,68,102,115,127,149,176,182,183,204,218],end_group_handl:[29,30],end_handl:[29,30],endian:[35,74,102,115,152,204],endif:[164,165,174,176,195,210,218,219,226],energi:[9,34,43,102,194,236],english:115,enjoi:219,enough:[68,102,109,113,115,157,160],enqueu:[28,102,154],ensur:[10,11,18,43,72,102,106,110,113,114,143,149,173,174,175,176,184,188,194,201,203,205,207,211,212,213,221,225,228,231],entail:173,enter:[11,34,60,106,172,174,193,195,197,207,221,223,226],entir:[2,19,102,103,106,115,141,190,207,218],entirelai:223,entireti:139,entiti:[56,185],entri:[19,28,29,30,33,34,85,116,127,128,129,132,135,137,139,141,162,165,168,172,173,190,222],enumer:[115,145,153,163],environ:[3,4,9,11,25,68,71,72,74,95,109,114,121,152,184,230],eof:[70,93],ephemer:191,epoch:113,equal:[14,29,30,41,85,102,162,175,176],equat:[41,223],equival:[59,74,122,143,219,236],eras:[21,25,84,115,122,123,127,136,141,146,193,197,198,199,204,219],erase_sector:199,erm:223,err:[110,139,165,174,217,219],err_fn:167,error:[1,2,4,6,7,19,27,28,29,30,33,38,43,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,93,95,99,102,104,105,106,110,111,116,122,123,127,139,141,144,146,148,149,152,154,155,162,163,165,167,168,169,172,173,176,186,188,189,190,193,196,197,199,200,204,210,211,213,217,218,219,220,224,226,232],error_rsp_rx:[89,201],error_rsp_tx:[89,201],error_stat:174,escap:[211,218,226,233],especi:[14,16,113],essenti:[56,74,176,207],establish:[28,33,39,91,186,187,189,196,198,201,204,205,219],estim:102,etc:[1,14,17,18,25,36,38,43,49,56,70,93,102,103,105,108,109,115,119,121,143,144,155,159,182,189,207,219],ethernet:[121,143],etyp:[162,219],eui:204,eul:221,euler:221,ev_arg:[97,100,110,117],ev_cb:[97,100,102,117,205],ev_queu:100,eval:[198,219],evalu:[11,99,113,175,176,198,204,212,219],evalut:113,even:[4,13,14,17,18,24,25,99,102,109,115,138,155,161,168,173,217,219,224],event:[14,24,27,28,33,36,37,39,97,102,105,110,112,117,121,162,163,168,169,172,174,176,184,186,187,191,192,201,206,207,217,219,224,226,236],event_q:219,event_queu:117,eventq:[102,168,217,219],eventq_exampl:205,eventu:[4,112,113,218],ever:[102,103,115,127,223],everi:[1,25,27,45,74,110,111,112,121,127,137,152,178,189,191,193,195,213,223,226],everyon:[13,207],everyth:[1,18,21,106,110,116,173,207,210,211,218],evq:[27,97,100,102,117,168,172],evq_own:100,evq_task:100,evtyp:168,exact:[109,115,148,154,174],exactli:[102,106,111,176],examin:[154,186,188,230],exampl:[1,2,3,6,7,9,11,14,15,16,17,18,19,27,34,35,36,37,42,44,68,70,71,72,73,74,75,77,93,95,96,98,102,103,104,106,107,109,110,111,112,113,114,115,117,120,141,142,145,148,149,150,162,164,165,166,167,172,173,174,179,180,182,184,185,189,193,195,197,201,204,207,210,211,212,213,214,220,221,222,223,224,225,226,229,230,232,233,234,236],example1:102,example2:102,exce:233,exceed:33,except:[7,64,100,115,146,162,174,186,191,192,218,219],excerpt:[117,163,164,165,175,176,188,190,224],exchang:[27,29,30,34,39,40,43],excit:[7,180,183],exclud:[64,115,173,221],exclus:[34,104,111,113],exe:[11,72,73,95,96],exec:25,exec_write_req_rx:[89,201],exec_write_req_tx:[89,201],exec_write_rsp_rx:[89,201],exec_write_rsp_tx:[89,201],execut:[1,2,7,10,11,25,29,30,42,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,74,75,80,93,95,98,100,103,105,106,109,112,113,114,120,123,124,126,152,157,162,167,176,178,186,188,189,190,191,192,195,201,207,210],exhaust:[29,30,33,110,127],exisit:39,exist:[2,19,21,28,29,30,33,36,41,54,59,62,63,84,107,127,133,138,141,148,163,165,171,176,181,187,193,196,197,198,199,200,211,213,219,220,222,224,225,226,228,229,231,232,233,234,236],exit:[8,93,196,198,204,219,233],expect:[6,14,15,33,56,74,97,105,110,116,117,121,163,173,184,191,192,204,207,210],experi:[25,34,208,221],experienc:17,experiment:112,expertis:212,expir:[28,97,99,100,154,156,205],expire_msec:156,expire_sec:156,expiri:[97,154],explain:[4,11,14,111,182,183,184,191,192,194,201,211,213,228,231,236],explan:[47,48,50,51,52,56,57,58,59,60,61,63,64,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90,139,186],explanatori:[42,107,191,192],explic:221,explicit:210,explicitli:186,explor:[115,173,188,228],export_func:116,expos:[1,14,27,43,105,120,141,166,172,176,185,190],expr:178,express:[35,176,190,218,219],ext:[11,14,197],extend:[28,33,41,42,102,103,113,222,225],extended_dur:39,extended_period:39,extens:[25,42,43,124,204],extent:[193,226,233,234],extern:[8,11,41,53,106,110,121,122,143,148,162,174,212,213,233,234],extra:[15,20,51,55,60,102,121,139,152,186,203,226,233],extra_gdb_cmd:74,extract:[4,10,71,72,73,95,96,152,180,196],extrajtagcmd:[51,55,60],extrem:9,f401re:66,f411a55d7a5f54eb8880d380bf47521d8c41ed77fd0a7bd5373b0ae87ddabd42:229,f4discoveri:197,f_activ:127,f_active_id:127,f_align:127,f_close:[140,142],f_closedir:[140,142],f_dirent_is_dir:[140,142],f_dirent_nam:[140,142],f_filelen:[140,142],f_getpo:[140,142],f_magic:127,f_mkdir:[140,142],f_mtx:127,f_name:[140,142],f_oldest:127,f_open:[140,142],f_opendir:[140,142],f_read:[140,142],f_readdir:[140,142],f_renam:[140,142],f_scratch:127,f_scratch_cnt:127,f_sector:127,f_sector_cnt:127,f_seek:[140,142],f_unlink:[140,142],f_version:127,f_write:[140,142],face:173,facil:[32,114,178,205],fact:[23,122,212],factor:9,factori:200,fail:[14,17,27,33,55,70,93,102,110,127,130,141,149,163,167,178,183,189,196,197,200,204,210,212,219,233],failov:173,failur:[28,29,30,33,97,102,110,112,113,115,116,123,128,129,130,132,133,135,136,137,139,140,144,148,149,152,154,155,156,162,163,167,168,169,188,189,190,210],fair:102,fairli:[36,68,74,102,111],fall:[109,114,148,236],fallback:39,fals:[103,113,117,173,175],famili:[4,114,122,138,184],familiar:[3,11,176,180,182,183,185,201,219,226,233,236],famliar:218,fanci:112,faq:10,far:[183,226],fashion:[105,127,180],fast:23,fat2n:7,fatal:[27,178],fatf:[7,123,138,139],fault:117,favorit:[180,181],fcb:[7,116,128,129,130,131,132,133,134,135,136,137,162],fcb_append:[127,129,130],fcb_append_finish:[127,128],fcb_append_to_scratch:[127,128],fcb_area_info:127,fcb_clear:127,fcb_entri:[127,128,129,132,137],fcb_err_arg:127,fcb_err_crc:127,fcb_err_flash:127,fcb_err_mag:127,fcb_err_nomem:127,fcb_err_nospac:[127,128],fcb_err_novar:[127,132],fcb_err_vers:127,fcb_free_sector_cnt:127,fcb_getnext:127,fcb_init:127,fcb_is_empti:127,fcb_log:[127,162],fcb_max_len:127,fcb_offset_last_n:127,fcb_ok:127,fcb_rotat:[127,128],fcb_walk:127,fcb_walk_cb:[127,137],fe80:233,fe_area:[127,132,137],fe_data_:127,fe_data_len:[127,132,137],fe_data_off:[127,132,137],fe_elem_:127,fe_elem_off:127,feat:219,feather:21,featur:[1,3,10,14,18,19,32,33,42,103,109,112,172,173,176,179,186,204,221,228],feedback:[180,181,194,219],feel:3,femal:232,fetch:[1,11,20,53,70,93,184,194,201,203,205,212,213,218,228,231],few:[1,6,16,27,37,44,68,74,103,106,107,174,183,188,191,204,210,219,236],ffconf:138,ffffffff:199,ffs2nativ:[7,74],fhss:43,ficr:35,fictiti:[212,213],field:[14,28,29,30,33,39,97,98,102,106,115,117,149,163,164,165,172,173,174,176,186,188,190,191,192,212,213,219,221,224],fifo:127,figur:[102,115,116,127,223],file:[1,2,4,6,7,10,11,13,14,18,19,24,47,49,50,54,56,59,61,63,68,70,71,72,73,74,77,83,84,93,94,95,96,107,108,109,114,115,116,117,121,141,145,148,150,157,162,163,164,172,173,175,176,178,180,181,183,184,190,193,195,196,197,199,200,201,204,205,208,210,211,212,214,217,218,219,221,223,230,234],file_nam:74,filenam:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,83,84,106,138,139,140,141,173,184],filesystem:[68,116,138,140,157],fill:[13,28,29,30,61,108,112,116,127,128,130,132,133,144,160,161,183,188,191,192,210,218,219],filter:[2,19,28,34,39,42,85,193],filter_dupl:[14,28],filter_polici:[14,28],find:[1,2,3,14,15,16,21,29,30,33,40,47,68,74,101,102,107,109,116,133,143,168,174,175,179,180,183,184,193,196,197,200,211,226,229,232,233,234,236],find_info_req_rx:[89,201],find_info_req_tx:[89,201],find_info_rsp_rx:[89,201],find_info_rsp_tx:[89,201],find_type_value_req_rx:[89,201],find_type_value_req_tx:89,find_type_value_rsp_rx:89,find_type_value_rsp_tx:89,fine:[9,25,191,192],finish:[4,111,112,127,128,155,204,218],fip:43,fire:[97,154,156,187,207,226],firmwar:[14,18,24,115,139,196,198,201,204,211,219,233,234],first:[2,3,6,8,11,14,21,24,25,26,28,29,30,34,41,43,46,70,71,72,73,76,95,96,97,100,102,103,104,106,112,113,114,115,116,127,141,142,145,152,159,161,168,172,173,176,178,180,182,185,186,187,188,190,191,192,194,195,201,204,207,211,217,218,219,221,223,226,228,231,236],first_aux:178,fit:[4,28,102,113,186,187,208],five:[33,34,43,201],fix:[6,10,14,21,25,103,113,115,214],fl_area:[127,128],fl_data_off:[127,128],fl_entri:127,fl_fcb:127,fl_watermark_off:127,flag:[1,6,11,15,29,30,39,41,68,70,71,72,74,75,77,93,94,95,102,107,112,115,139,173,184,188,190,203,217,219,221,229,232],flash0:139,flash:[1,9,14,15,16,19,20,24,25,52,56,61,68,70,71,72,74,108,109,116,121,128,129,133,139,142,143,147,148,150,157,162,173,176,193,197,198,199,201,204,208,219],flash_area:[127,137],flash_area_bootload:[106,115,175,176],flash_area_image_0:[106,115],flash_area_image_1:[106,115,176],flash_area_image_scratch:[106,115,175],flash_area_nff:[175,176],flash_area_noexist:175,flash_area_read:[127,132,137],flash_area_reboot_log:[175,176],flash_area_writ:[127,128],flash_area_x:127,flash_id:[122,144,146],flash_map:[7,116,144,175,176],flash_map_init:176,flash_own:[175,176],flash_spi_chip_select:148,flash_test:[7,117],flat:[14,29,30,102,161,162],flavor:193,flexibl:[102,109,179,186,212,213],flicker:23,flight:102,float_us:[24,220],floating_var:24,flood:44,flow:[43,117,155,184,191,192],flow_ctl:155,flra:223,fltstr:168,fly:152,fmt:117,focu:207,folder:[4,11,13,26,46,68,72,76,181,196],follow:[1,2,3,4,6,7,8,10,11,14,18,21,24,25,28,29,30,32,33,35,36,38,39,41,42,43,44,45,50,51,56,63,64,68,70,71,72,73,74,77,79,80,84,85,86,90,91,93,94,95,96,102,104,106,107,109,111,112,113,114,115,117,118,120,121,122,123,127,139,141,142,143,149,151,152,162,163,164,165,166,168,170,173,174,175,176,178,180,181,183,184,185,186,188,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,210,211,212,213,214,217,218,219,220,221,222,223,224,225,226,228,229,231,232],foo:[14,18,116],foo_callout:116,foo_conf_export:116,foo_conf_set:116,foo_val:116,footer:[115,195],footprint:[9,119,121],fop:140,fops_contain:140,forc:[54,62,65,102,173],forev:[100,104,111,112],forgeri:34,forget:[93,180,217,219],forgo:21,fork:13,form:[1,29,30,32,34,35,38,79,102,112,176,188,189,191,204,210,212,223],formal:[7,33],format:[8,15,26,41,63,79,81,84,85,102,116,117,119,138,139,141,157,159,160,161,163,174,176,178,184,191,195,211,212,213,221,229,232],formula:[3,73,96],forth:[116,161],fortun:68,forver:39,forward:[21,113,186],found:[1,14,25,26,28,29,30,33,46,68,76,103,106,135,141,161,162,168,172,184,189,190,191,193,197,199,232],foundat:[4,43,44,115,119,193,199,212,218,219,226,233,234],four:[32,34,60,115,139,223],fraction:[113,210],fragment:14,frame:[172,204,207],framerwork:118,framework:[40,43,110,119,163,170,171,178,184,220,221,222,226,227,228],frdm:66,free:[2,4,29,30,86,101,102,103,127,162,173,187,189,193,199,226,230,233,234],freebsd:114,freed:[29,30,102,103],freedom:[189,191,192],freq_hz:154,frequenc:[17,36,43,99,106,110,113,121,143,151,154,156,174,204,207],frequent:[13,32,34,43,110,191,192,226],fresh:223,freshli:102,friend:44,friendli:[14,121],from:[1,4,6,7,8,9,10,11,13,18,19,26,28,29,30,32,33,34,35,38,39,42,44,45,48,49,51,52,54,56,57,58,59,60,62,63,64,68,69,73,74,75,77,78,79,81,82,83,84,85,86,89,90,92,96,97,98,99,100,101,102,103,105,106,107,108,109,112,113,114,115,116,118,119,120,122,123,124,126,127,133,139,140,142,144,148,149,152,154,155,157,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,180,182,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,210,211,212,213,218,219,221,223,226,228,229,230,232,233,234],front:102,fs_access_append:139,fs_access_read:139,fs_access_trunc:139,fs_access_writ:139,fs_cli:7,fs_close:139,fs_closedir:[123,139],fs_dir:[139,140],fs_dirent:[7,139,140],fs_dirent_is_dir:139,fs_dirent_nam:[123,139],fs_eaccess:139,fs_ealreadi:139,fs_ecorrupt:139,fs_eempti:139,fs_eexist:139,fs_eful:139,fs_ehw:139,fs_einval:139,fs_enoent:[123,139],fs_enomem:139,fs_eo:139,fs_eoffset:139,fs_eok:139,fs_eunexp:139,fs_euninit:139,fs_fcb:173,fs_file:[7,139,140],fs_filelen:139,fs_getpo:139,fs_if:[140,142],fs_mkdir:[7,139],fs_mount:7,fs_name:139,fs_nmgr:7,fs_nmgr_id_fil:139,fs_nmgr_max_nam:139,fs_op:[140,142],fs_open:139,fs_opendir:[123,139],fs_ops_for:140,fs_ops_from_contain:140,fs_ops_try_uniqu:140,fs_read:139,fs_readdir:[123,139],fs_regist:[140,142],fs_renam:139,fs_seek:139,fs_unlink:139,fs_write:139,fssl:[10,71],fsutil:7,fsutil_read_fil:139,fsutil_write_fil:139,ftdichip:184,fulfil:188,full:[1,7,8,24,25,33,40,42,43,61,68,106,115,116,122,128,144,157,162,172,173,175,176,181,183,186,189,190,195,201,218,219,221,226,236],fulli:[9,27,28,43,115,141,173,183,192,212,213,219],fun:[180,218],func:[102,110,112,116,149,154,156],fundament:[1,236],funtion:161,further:[6,106,110,149],furthermor:[105,115,141,173,191,192,207],fuse:68,futur:[97,102,149,163,172,176,204,212,213,214],fyi:14,g_bno055_sensor_driv:165,g_bno055stat:165,g_led_pin:[181,195,207],g_mbuf_buff:102,g_mbuf_mempool:102,g_mbuf_pool:102,g_mystat:174,g_os_run_list:98,g_os_sleep_list:98,g_silence_consol:117,g_stats_map_my_stat_sect:174,g_task1_loop:195,g_ts_suit:178,gain:[104,111,142,183,219],gap:[14,29,30,31,32,33,42,43,102,185,188,190,218,219,220],garbag:127,gatewai:204,gatt:[14,27,31,39,42,43,44,45,185,188,190,218,219,220],gatt_acc:188,gatt_adc_v:219,gatt_co2_v:217,gatt_co2_val_len:217,gatt_svr:[190,217,219,221],gatt_svr_chr_access_gap:[188,190],gatt_svr_chr_access_sec_test:[190,217,219],gatt_svr_chr_sec_test_rand_uuid:[190,217,219],gatt_svr_chr_sec_test_static_uuid:[190,217,219],gatt_svr_chr_writ:[217,219],gatt_svr_register_cb:190,gatt_svr_sns_access:[217,219],gatt_svr_svc:[188,190,217,219],gatt_svr_svc_adc_uuid:219,gatt_svr_svc_co2_uuid:217,gatt_svr_svc_sec_test_uuid:[190,217,219],gaussian:43,gavin:71,gc_on_oom_test:210,gc_test:210,gcc:[4,7,70,114],gcc_startup_:106,gcc_startup_myboard:106,gcc_startup_myboard_split:106,gcc_startup_nrf52:[106,196,198,226],gcc_startup_nrf52_split:[196,198,200,204,226],gdb:[4,7,11,25,51,60,74,75,106,183,193,195,196,197,199,200,207,219,226,233,234],gdb_arduino_blinki:11,gdbmacro:7,gdbpath:11,gdbserver:6,gear:114,gen:[39,42],gen_task:205,gen_task_ev:205,gen_task_prio:205,gen_task_stack:205,gen_task_stack_sz:205,gen_task_str:205,gener:[1,10,14,19,25,27,28,29,30,31,32,33,35,39,40,41,43,44,47,48,56,68,74,75,100,102,103,104,106,112,115,123,141,148,161,173,175,180,181,183,184,186,187,190,191,192,193,194,195,196,197,198,199,200,201,203,204,207,210,211,212,217,218,219,221,223,226,229,232,233,234],get:[2,4,6,7,8,9,10,13,14,23,24,25,27,29,30,35,68,69,71,72,73,74,77,89,92,94,95,96,98,100,102,103,104,105,106,108,109,110,111,112,113,115,116,120,121,127,137,144,148,152,154,161,163,167,168,170,172,173,176,180,181,182,184,186,188,190,191,192,193,194,196,197,199,200,203,204,205,207,210,211,217,218,219,225,226,232,236],gettng:208,gfsk:43,ggdb:6,ghz:[43,211],gist:[121,148],git:[10,68,71,93,94,95,114,193,211,212,213,214],github:[1,7,10,13,26,28,46,68,70,71,72,76,93,94,95,114,145,180,193,211,212,213,214,218,219,228],githublogin:214,githubpassword:214,githubusercont:[10,70,71,93,94],gitignor:18,give:[19,68,148,173,180,183,191,192,204,207,212,213,218,219],given:[11,14,33,55,97,99,100,102,103,109,112,113,115,123,124,126,127,132,133,139,144,148,152,154,155,157,162,163,167,168,207,213],glanc:186,glibc:70,global:[1,14,41,75,102,103,104,117,162,163,165,168,174,178,188],gmt:113,gnd:[8,204,219,221,232],gnu:[3,4,11,25,51,60,193,197,199,200,226,233,234],goal:[68,114,168,231],gobjcopi:6,gobjdump:6,gobl:94,goe:[15,74,178,210],going:[21,109,116,173,191,195,218,219],golang:[10,72,95],gone:187,good:[7,9,18,25,34,68,104,106,110,115,138,173,183,186,192,204],googl:[191,228],gopath:[10,70,71,72,73,93,94,95,96],got:[20,25,217,218,219],govern:[218,219],gpg:[70,93],gpio:[8,15,17,109,121,150,152,155,205,223],gpio_ev:205,gpio_l:205,gpl:[4,193,197,199,200,226,233,234],gplv3:[193,199,226,233,234],gpo:143,gpregret:15,grab:101,graduat:219,grain:9,grandpar:[29,30],grant:104,granular:113,graph:[1,63,75],graviti:221,great:[8,43,115,175,181,219],greater:[41,43,102,175],greatest:115,green:[2,11,13,193,197,198,211,221,229],grid:68,ground:[219,221],group:[2,33,89,118,121,172,174,176,201,204],grow:[66,207],guarante:[14,102,103],guard:105,guid:[7,8,10,11,14,31,72,75,77,95,165,166,176,185,190,192,201,205,207,208,210,212,229,232],gyro:221,gyro_rev:221,gyroscop:[163,221],h_mynewt_syscfg_:176,hack:[7,9,11,14,180,181,219],had:[102,105,115,173],hal:[1,7,9,19,61,68,74,99,108,121,122,142,143,149,152,154,155,165,183,193,197,199,205,219,221,223,226,236],hal_bsp:[7,23,106,121,147,164,193,196,197,199,224],hal_bsp_core_dump:144,hal_bsp_flash_dev:[106,122,144,147],hal_bsp_get_nvic_prior:144,hal_bsp_hw_id:144,hal_bsp_hw_id_len:144,hal_bsp_init:[144,164],hal_bsp_max_id_len:144,hal_bsp_mem_dump:144,hal_bsp_power_deep_sleep:144,hal_bsp_power_off:144,hal_bsp_power_on:144,hal_bsp_power_perus:144,hal_bsp_power_sleep:144,hal_bsp_power_st:144,hal_bsp_power_wfi:144,hal_common:[7,183,197,199],hal_debugger_connect:153,hal_flash:[7,106,122,139,144,147,193,197,199],hal_flash_align:146,hal_flash_eras:146,hal_flash_erase_sector:146,hal_flash_erased_v:146,hal_flash_init:146,hal_flash_ioctl:146,hal_flash_isempti:146,hal_flash_isempty_no_buf:146,hal_flash_read:146,hal_flash_verify_buf_sz:146,hal_flash_writ:146,hal_gpio:[7,123,145,148,205],hal_gpio_init_in:148,hal_gpio_init_out:[112,148,181,195,205,207],hal_gpio_irq_dis:148,hal_gpio_irq_en:[148,205],hal_gpio_irq_handler_t:148,hal_gpio_irq_init:[148,205],hal_gpio_irq_releas:148,hal_gpio_irq_trig_t:148,hal_gpio_irq_trigg:148,hal_gpio_mode_:148,hal_gpio_mode_in:148,hal_gpio_mode_nc:148,hal_gpio_mode_out:148,hal_gpio_mode_t:148,hal_gpio_pul:148,hal_gpio_pull_down:148,hal_gpio_pull_non:148,hal_gpio_pull_t:148,hal_gpio_pull_up:[148,205],hal_gpio_read:148,hal_gpio_toggl:[112,148,181,195,205],hal_gpio_trig_both:148,hal_gpio_trig_fal:148,hal_gpio_trig_high:148,hal_gpio_trig_low:148,hal_gpio_trig_non:148,hal_gpio_trig_ris:[148,205],hal_gpio_writ:[17,145,148,207],hal_i2c:17,hal_i2c_begin:149,hal_i2c_end:149,hal_i2c_err_addr_nack:149,hal_i2c_err_data_nack:149,hal_i2c_err_inv:149,hal_i2c_err_timeout:149,hal_i2c_err_unknown:149,hal_i2c_init:149,hal_i2c_master_data:149,hal_i2c_master_prob:149,hal_i2c_master_read:149,hal_i2c_master_writ:149,hal_i2c_prob:149,hal_i2c_read:149,hal_i2c_writ:149,hal_os_tick:[151,196,226],hal_reset_brownout:153,hal_reset_caus:[153,224],hal_reset_cause_str:153,hal_reset_pin:153,hal_reset_por:153,hal_reset_reason:153,hal_reset_request:153,hal_reset_soft:153,hal_reset_watchdog:153,hal_rtc:138,hal_spi:[123,152],hal_spi_abort:152,hal_spi_config:152,hal_spi_data_mode_breakout:152,hal_spi_dis:152,hal_spi_en:152,hal_spi_init:[123,152],hal_spi_lsb_first:152,hal_spi_mod:152,hal_spi_mode0:152,hal_spi_mode1:152,hal_spi_mode2:152,hal_spi_mode3:152,hal_spi_moden:152,hal_spi_msb_first:152,hal_spi_set:[122,152],hal_spi_set_txrx_cb:152,hal_spi_slave_set_def_tx_v:152,hal_spi_tx_v:152,hal_spi_txrx:152,hal_spi_txrx_cb:152,hal_spi_txrx_noblock:152,hal_spi_type_mast:152,hal_spi_type_slav:152,hal_spi_word_size_8bit:152,hal_spi_word_size_9bit:152,hal_system:153,hal_system_clock_start:153,hal_system_reset:153,hal_system_restart:153,hal_system_start:153,hal_tim:[99,154],hal_timer_cb:[99,154],hal_timer_config:154,hal_timer_deinit:154,hal_timer_delai:154,hal_timer_get_resolut:154,hal_timer_init:[23,154],hal_timer_read:154,hal_timer_set_cb:154,hal_timer_start:154,hal_timer_start_at:154,hal_timer_stop:154,hal_uart:218,hal_uart_blocking_tx:155,hal_uart_clos:155,hal_uart_config:[155,218],hal_uart_flow_ctl:155,hal_uart_flow_ctl_non:[155,218],hal_uart_flow_ctl_rts_ct:155,hal_uart_init:155,hal_uart_init_cb:[155,218],hal_uart_par:155,hal_uart_parity_even:155,hal_uart_parity_non:[155,218],hal_uart_parity_odd:155,hal_uart_rx_char:155,hal_uart_start_rx:155,hal_uart_start_tx:[155,218],hal_uart_tx_char:155,hal_uart_tx_don:155,hal_watchdog_en:156,hal_watchdog_init:156,hal_watchdog_tickl:156,hal_xxxx:143,half:[29,30,106,113],halfwai:115,halgpio:148,halsystem:153,halt:[105,151,152,193,197,199],haluart:155,hand:[173,180,207,210],handbook:[196,200],handi:[14,106,219],handl:[14,15,27,28,29,30,33,39,40,42,74,102,114,121,122,123,139,162,163,166,167,172,187,188,189,201,205,217,219,226],handler:[19,100,105,106,118,148,167,170,205,207,217,219,220],happen:[9,14,33,38,116,127,187,190,191,192,193,211,213],happi:[7,9],har:232,hard:[110,117,223],hardcod:[37,39],hardwar:[2,3,5,6,7,9,18,23,33,36,37,43,44,47,99,106,108,109,115,121,141,144,145,146,147,148,149,151,153,154,155,156,165,173,176,183,184,191,192,193,195,196,197,198,205,207,208,211,212,218,226,236],harm:115,has:[2,3,4,7,10,11,13,14,15,17,21,24,27,28,33,34,36,38,42,47,49,56,63,68,70,71,72,74,75,90,93,94,95,98,99,100,101,102,103,105,106,109,110,111,112,113,115,116,117,119,121,125,127,139,141,148,149,152,154,155,157,165,167,168,173,174,176,178,188,189,190,193,195,196,197,201,203,204,207,210,211,212,213,217,218,219,225,226,233,234,236],hash:[47,50,56,59,84,115,173,203,229,232],hasn:116,have:[1,2,3,6,7,8,9,10,11,13,14,18,20,21,23,24,25,29,30,32,33,34,36,42,45,56,63,65,67,68,70,71,72,73,74,75,77,93,94,95,96,97,100,102,103,105,106,108,109,110,111,112,114,115,117,119,121,122,124,127,130,141,143,147,148,154,155,162,163,172,173,174,175,176,179,180,181,182,183,184,187,188,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,210,211,212,213,215,217,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,236],haven:[3,25,123,179,213,219,236],hci1:184,hci:[14,27,28,43,182],hci_adv_param:186,hci_common:201,hci_reason:28,hdr:[115,162],hdr_ver:159,head:[10,71,93,94,95,100,102,167],header:[1,15,50,52,59,68,70,71,72,74,106,115,119,127,128,145,148,162,164,176,178,195,196,201,217,218,219],headless:2,health:191,heap:[29,30,103,105,106],heart:207,held:212,hello:[11,21,82,155,194,201,211,229,230,232,236],help:[1,8,11,14,16,44,47,48,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,80,81,82,83,84,85,86,87,88,89,90,93,94,95,105,107,108,113,121,161,173,175,182,183,186,193,195,196,198,204,207,208,210,211,214,218,219,221,223,226,233,234],helper:[1,74,102,107,122,191,192],henc:[115,179],her:105,here:[1,3,8,10,13,14,17,18,21,28,41,45,68,86,89,90,97,100,102,103,106,107,110,112,115,116,117,127,141,148,152,161,162,163,165,172,173,174,175,176,179,180,184,188,190,191,192,193,195,196,197,200,204,205,210,211,212,213,218,219,223,230,236],hertz:99,hex:[7,50,56,61,84,149,173,199,204,217,226],hexidecim:79,hfxo:36,hidapi:4,hidraw:4,hierarchi:[139,176,178],high:[9,17,28,31,43,77,99,111,121,148,163,168,205,207,233],high_duti:39,high_duty_cycl:28,high_thresh:163,higher:[10,17,23,27,28,33,43,68,71,72,85,93,94,95,104,105,111,112,143,162,168,175,176,179,184,207,210,213],highest:[98,104,105,112,175,176,207],highli:179,highlight:[2,6,42,180,193,196,198,200,211,219,220,226],hint:68,his:[28,105],histori:175,hit:[49,195],hmac:24,hog:207,hold:[26,46,56,76,102,103,149,160,165,172,180,204,207,212,219],hole:219,home:[7,10,72,106,173,183,195,210,214,218],homebrew:[4,6,7,10,49,69,73,92,96],homepag:[1,25,56,74,117,210,218,219],honor:24,hook:[110,199,218,232],hop:[43,121],hope:14,host:[7,9,14,34,35,38,41,42,43,79,83,84,97,100,102,115,170,183,184,188,189,190,193,210,211,217,218,219,220,225,226,233,234],hotkei:233,hour:113,how:[2,3,4,5,6,7,8,10,11,14,15,16,17,18,21,24,25,33,35,42,43,68,70,71,72,73,79,93,94,95,96,102,104,106,109,113,115,116,117,127,133,135,141,149,152,162,164,165,173,174,177,178,179,180,181,182,183,184,187,188,189,191,192,193,194,195,196,197,198,199,200,201,203,204,207,209,210,211,217,218,221,222,223,225,226,228,229,230,231,232,236],howev:[3,14,24,25,70,93,102,109,112,114,115,117,141,148,174,196,203,212],htm:184,html:[4,26,46,76,124,193,197,199,226,233,234],http:[1,4,10,11,13,14,25,26,28,46,52,68,70,71,72,74,76,93,94,95,114,117,124,145,180,184,191,193,196,197,199,200,210,212,214,218,219,226,232,233,234],httperror404:[70,93],hub:211,human:[29,30,184,212],hw_bsp_nativ:74,hw_drivers_nimble_nrf51:173,hw_hal:68,hw_mcu_nordic_nrf51xxx:173,hypothet:33,i2c:[8,17,121,122,143,221,222,223,226],i2c_0:[220,221,222,223,226],i2c_0_itf_bno:164,i2c_0_itf_li:164,i2c_num:149,i2s:193,i2s_callback:193,i386:[4,6],iOS:[187,217,219,220,222,225,228],ibeacon:[35,183,194,236],icloud:25,icon:[11,13,25],id16:190,id3:[26,46,76],id_init:176,idcod:193,idea:[14,25,74,102,104,110,186],ideal:[18,43],ident:[23,28,31,33,34,35,39,42,79,102,114,120,173,174,178],identifi:[1,8,24,32,33,39,41,47,84,106,112,115,116,144,149,191,192,196,198,204,211,219,229,232],idl:[39,90,110,183,207,229,232],idx:[39,122,141],ietf:161,if_rw:120,ifdef:[173,176,195,226],ifndef:[176,218,219],ignor:[6,14,24,28,39,95,103,139,141,176,233],ih_flag:115,ih_hdr_siz:115,ih_img_s:115,ih_key_id:115,ih_mag:115,ih_tlv_siz:115,ih_ver:115,iii:115,illustr:[11,102,104,105,115,207,219,226],imag:[2,6,7,11,14,15,19,21,24,44,47,51,52,55,56,60,68,70,71,72,74,77,91,93,94,95,106,107,109,114,117,118,158,159,160,174,175,179,183,187,193,194,195,202,208,217,218,230,231,233,234,236],image_ec256:[193,196,197,198,199,200,204,211,221,229,230,232],image_ec:[7,193,196,197,198,199,200,204,211,221,229,230,232],image_f_ecdsa224_sha256:115,image_f_non_boot:115,image_f_p:115,image_f_pkcs15_rsa2048_sha256:115,image_f_sha256:115,image_head:115,image_header_s:115,image_mag:115,image_magic_non:115,image_ok:115,image_rsa:[7,193,196,197,198,199,200,204,211,221,229,230,232],image_tlv:115,image_tlv_:115,image_tlv_ecdsa224:115,image_tlv_rsa2048:115,image_tlv_sha256:115,image_valid:[7,193,197,198,200,211,221,229,230,232],image_vers:[115,157,159,160],img:[25,50,59,84,180,181,183,184,187,193,196,197,198,199,200,201,203,204,211,218,221,223,226,229,232,233,234],img_start:153,imgmgr:[7,117,118,139,157,176,201,218,219],imgmgr_max_ver_str:160,imgmgr_module_init:[157,176],imgr_ver:157,imgr_ver_jsonstr:160,imgr_ver_pars:157,imgr_ver_str:157,immedi:[28,38,100,106,115,152,154,163,186,191,192],immin:28,impact:36,impl:74,implemen:79,implement:[9,13,14,19,43,45,74,79,100,102,103,106,108,109,115,116,117,118,138,139,141,143,145,147,148,149,150,151,152,153,157,161,163,164,166,168,171,172,176,178,185,188,190,191,204,205,210,219,220,221,223,226],impli:[19,191,192,210,213,218,219],implicit:210,impos:[115,141],imposs:32,impract:190,impress:219,improv:195,imuplu:221,inc:[4,193,199,226,233,234],includ:[1,4,7,9,13,14,16,18,25,28,29,30,32,33,34,38,39,40,43,44,56,63,72,74,97,100,102,103,104,106,108,109,110,111,112,113,115,116,117,120,121,122,123,125,127,138,139,140,141,142,143,144,145,149,152,154,155,157,161,162,163,164,165,168,170,172,173,175,176,177,178,180,184,185,186,188,191,192,196,201,203,205,207,210,212,213,217,218,219,220,221,223,224,225,226,231,233],include_tx_pow:39,inclus:162,incom:[33,100,155,157,172,205],incompat:[70,93,212],incomplet:[41,106,139],incomplete_block_test:210,incorrect:[55,113],incr:144,increas:[34,43,102,172,176,207,233],increasin:127,increment:[102,113,116,174],incub:[7,68,145,176,180,219],inde:[105,199],indefini:[191,192],indefinit:113,indent:6,independ:[34,109,115,121,143,144,146,148,149,151,153,154,155,156,176],indetermin:[102,210],index:[44,85,115,162,184],indian:113,indic:[7,14,21,27,28,29,30,32,33,38,40,41,42,100,103,106,110,113,115,117,119,148,149,154,162,163,172,173,175,176,188,190,193,196,197,200,203,210,211,226,228],indirect:219,indirectli:162,individu:[10,112,115,116,121,148,176,201,212],industri:[43,138],infinit:[100,103,105,176,195,207],info:[14,19,52,70,71,72,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,103,112,113,116,127,128,132,162,189,193,197,199,200,203,211,217,219],inform:[1,6,7,11,14,15,19,20,28,33,34,35,39,41,47,50,52,53,70,71,72,74,75,77,79,84,93,94,95,100,102,103,106,108,109,112,113,115,119,120,132,162,163,165,166,167,173,174,176,179,180,183,186,189,190,191,192,193,195,203,204,205,207,212,213,214,218,219,221,226,229,232,234],infrastructur:183,ing:[121,191,192],inher:[1,35,188],inherit:[1,4,28,72,104,163],ininclud:174,init:[63,68,163,164,168,176,218,219],init_app_task:105,init_func_nam:176,init_funct:176,init_stag:176,init_task:[205,207],init_tim:[195,226],initi:[14,16,19,24,25,27,28,29,30,32,35,37,38,39,40,43,74,97,99,100,102,103,104,105,106,110,111,112,116,117,121,125,133,139,143,144,146,148,149,152,154,155,158,161,162,164,167,168,170,172,178,181,184,185,189,191,192,195,201,205,210,217,218,219,220,221,223,226],initialis:[165,193],inlin:26,inod:141,inoper:[38,191,192],input:[29,30,33,34,39,113,121,143,148,152,199,205,210,233],inquiri:[33,41],insert:[102,112],insid:[14,36,102,105,144,195,199,210],insight:[121,207],inspect:[15,61,115,116,146,189],instal:[3,7,9,18,25,26,46,52,67,68,76,91,105,106,107,123,167,181,182,183,184,193,194,196,197,198,199,200,201,203,205,207,210,211,213,215,218,220,221,222,225,226,228,229,230,231,232,233,236],instanc:[2,3,9,14,19,28,29,30,39,75,102,162,174,186,191,192,193],instant:33,instantan:207,instanti:[105,121],instantli:111,instead:[7,8,10,11,14,15,24,28,36,100,103,111,115,117,146,173,176,187,193,195,196,197,198,199,200,201,205,210,214,217,218,219,220,224],instruct:[3,4,7,8,10,68,70,75,93,98,109,193,196,200,201,205,220,221,222,224,226,230,233,234],insuffici:[33,102],insur:[103,112],int16_t:113,int32_max:[39,113],int32_t:[28,113,155,191,192],int64_t:[113,162],int8:116,int8_t:28,int_max:102,integ:[19,161,163,174,176],integr:[11,14,34,103,149,174,219],intellig:143,intend:[24,36,41,49,149,179],inter:[149,205],interact:[2,8,117,119,157,187,195,208,233],interchang:161,interconnect:[9,119],interdepend:[116,176],interest:[7,27,31,102,106,143,173,181,183,186,191,236],interfac:[4,31,42,43,44,102,112,115,120,121,122,123,138,139,140,143,144,146,148,149,151,152,153,155,156,162,165,166,180,182,184,185,193,197,199,218,221,222,223,226,232],interleav:14,intern:[7,19,33,102,105,106,110,113,121,122,127,147,154,156,157,161,193,219,223],internet:[7,11,43,184,194,201,203,205,211,228,231],interoper:[119,120],interpret:[124,126,163,167],interrupt:[14,23,98,99,100,106,115,144,148,151,152,154,155,163,168],interv:[14,28,33,39,41,110,112,163,167,168,205,221,226],interval_max:39,interval_min:39,intervent:109,intiat:106,introduc:[1,42,175,176],introduct:[207,236],introductori:228,intuit:115,invalid:[28,29,30,33,99,115,123,129,149,152,154,188,210],invers:[104,111],invert:111,invis:[29,30],invoc:[6,190],invok:[2,210,214,226],involv:[29,30,32,34,106,109,143,149,210],io_cap:39,ioctl:139,iot:43,iotiv:220,ipsp:43,iptest:74,ipv6:43,irk:[32,39],irq:[24,148],irq_num:144,irq_prio:[122,123],isbuildcommand:11,ism:43,ismylaptop:218,isn:[17,106,183],isol:[106,173],isr:24,isshellcommand:11,issu:[1,6,13,14,21,23,24,42,68,79,105,111,115,119,139,141,149,196,197,198,200,201,204,215,218,219],ist:113,it_len:115,it_typ:115,ite_chr:188,item:[1,100,106,116,142,162,167,192],iter:[103,112,115,139,162,168],itf:165,its:[7,8,10,13,14,27,28,29,30,31,32,33,68,74,98,100,102,103,104,105,106,109,110,112,115,117,122,127,139,141,148,149,152,162,173,174,175,176,178,180,181,182,183,186,188,189,190,191,192,203,204,207,212,218,223,224,230,236],itself:[16,17,28,38,74,102,103,112,115,121,125,127,142,157,168,176,177,180,196,210,218,219,223],itvl:14,itvl_max:28,itvl_min:28,iv_build_num:115,iv_major:115,iv_minor:115,iv_revis:115,jan:[113,218],javascript:68,jb_read_next:161,jb_read_prev:161,jb_readn:161,je_arg:161,je_encode_buf:161,je_wr_comma:161,je_writ:161,jira:13,jlink:[74,106,196,198,203,211,221,226,229],jlink_debug:74,jlink_dev:74,jlinkex:[196,198,204,219],jlinkgdbserv:[226,233],jlinkgdbserverclex:218,jmp_buf:178,job:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,98,105,106,172,188],join:[3,121,179,211,236],json:[7,11,47,50,64,68,74,180,181,201,210],json_array_t:161,json_attr_max:161,json_attr_t:161,json_buff:161,json_buffer_read_next_byte_t:161,json_buffer_read_prev_byte_t:161,json_buffer_readn_t:161,json_decod:210,json_encod:[160,161,210],json_encode_array_finish:161,json_encode_array_nam:161,json_encode_array_start:161,json_encode_array_valu:161,json_encode_object_entri:161,json_encode_object_finish:161,json_encode_object_kei:161,json_encode_object_start:161,json_enum_t:161,json_err_arraystart:161,json_err_attrlen:161,json_err_attrstart:161,json_err_badattr:161,json_err_badenum:161,json_err_badnum:161,json_err_badstr:161,json_err_badsubtrail:161,json_err_badtrail:161,json_err_checkfail:161,json_err_misc:161,json_err_noarrai:161,json_err_nobrak:161,json_err_nonqstr:161,json_err_noparstr:161,json_err_nullptr:161,json_err_objarr:161,json_err_obstart:161,json_err_qnonstr:161,json_err_strlong:161,json_err_subtoolong:161,json_err_subtyp:161,json_err_toklong:161,json_nitem:161,json_read_arrai:161,json_read_object:161,json_simple_decod:210,json_simple_encod:210,json_struct_arrai:161,json_struct_object:161,json_typ:161,json_val_max:161,json_valu:161,json_value_bool:161,json_value_int:161,json_value_str:161,json_value_stringn:161,json_value_type_arrai:161,json_value_type_bool:161,json_value_type_int64:161,json_value_type_object:161,json_value_type_str:161,json_value_type_uint64:161,json_value_uint:161,json_write_func_t:161,jtag:[4,51,55,60,193,196,197,199,211,226,232],jul:[93,94],jump0:80,jump:[115,173],jumper:[8,180,199,218,219,232],just:[1,7,8,14,18,19,21,25,29,30,33,34,35,75,97,100,106,107,112,113,115,122,123,138,139,168,173,180,187,188,191,192,193,195,204,214,215,218,219],jv_len:161,jv_pad1:161,jv_type:161,jv_val:161,k30:[217,218],k64f:66,keep:[9,14,18,34,36,105,115,117,121,127,152,164,172,173,180,181,207,210,219],keg:[73,96],kei:[8,28,29,30,32,33,43,44,50,59,70,93,106,115,116,160,161,176,188,204,211,221],kept:[98,113,115,127],kernel:[1,7,9,19,64,68,74,106,117,121,143,163,168,173,176,177,183,184,205,218,219,220,221,223,224,226],kernel_o:173,key_siz:28,keyboard:[11,34,117],keyboarddisplai:39,keyboardonli:39,keychain:[70,93],keystor:39,keyword:[1,74,107,117,210,212,218,219],khz:[152,193,197],kick:[110,191,192],kilobyt:109,kind:[44,121,218,219,233],kit:[8,60,74,180,181,194,196,203,218,219,233,234,236],klibc:114,know:[1,8,11,14,17,25,42,74,117,163,167,174,175,188,189,191,192,194,195,207,211,218,219,231,236],known:[43,68,113,186,207],kw41z:14,l13:196,l2cap:43,l_append_cb:162,l_arg:162,l_level:162,l_log:162,l_name:162,lab:45,label:[8,106,199,219],lack:[127,138,173],lag:190,languag:[10,11,68,109,124,218,219],laptop:[3,8,180,181,184,201,204,205,219],larg:[28,33,36,44,102,112,113,173,174,207],large_system_test:210,large_unlink_test:210,large_write_test:210,larger:[17,21,44,102],largest:102,las_app_port:204,las_app_tx:204,las_join:204,las_link_chk:204,las_rd_app_eui:204,las_rd_app_kei:204,las_rd_dev_eui:204,las_rd_mib:204,las_wr_app_eui:204,las_wr_app_kei:204,las_wr_dev_eui:204,las_wr_mib:204,last:[14,28,29,30,33,38,85,90,102,103,110,112,115,127,135,155,163,172,176,178,186,190,191,192,193,204,211,219,221,224,226],last_checkin:[90,229,232],last_n_entri:127,last_n_off:135,last_op:149,last_read_tim:165,latenc:[28,39],later:[7,8,14,29,30,85,97,102,115,178,181,183,189,193,204,210,219,226,233,234],latest:[1,2,4,7,10,18,20,21,62,65,68,69,73,92,96,116,180,193,211,212,213,218,219],latter:[33,102,119,141],launch:11,launchpad:4,law:[193,218,219,226,233,234],layer:[9,33,43,102,103,108,109,121,139,141,142,155,165,166,176,185,205,219,236],layout:[109,115,232],lc_f:164,lc_pull_up_disc:164,lc_rate:164,lc_s_mask:164,ld4:197,ldebug:[20,175],ldflag:63,ldr:199,le_elem_off:132,le_scan_interv:14,le_scan_window:14,lead:[102,105,189,219],leadingspac:102,learn:[7,38,74,180,181,194,228],least:[34,102,110,115,152,154,195,201,204,219,236],leav:[102,122,135,173],led1:[198,205],led2:205,led3:205,led:[1,7,17,23,74,106,109,112,121,143,148,184,193,194,195,196,197,198,199,200,201,205,207,211,219,221,229,232,236],led_blink_pin:[106,112,181,195,196,207],led_blink_pin_1:181,led_blink_pin_2:181,led_blink_pin_3:181,led_blink_pin_4:181,led_blink_pin_5:181,led_blink_pin_6:181,led_blink_pin_7:181,led_blink_pin_8:181,led_pin:181,left:[99,103,112,132,160,173,199,217,226,236],legaci:[14,42,138,176,207],len:[102,116,122,127,128,139,140,149,152,161,162,168,188,204,218],length:[33,39,43,102,106,115,116,117,127,144,160,162,168,188,204],less:[14,105,114,115,162,190,191,192],lesson:[207,236],let:[4,8,68,102,106,117,162,163,173,174,180,183,185,186,187,188,189,190,191,192,195,199,207,210,212,213,217,218,219,223,226],level:[1,2,9,14,18,19,27,31,33,35,39,41,42,44,45,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,102,104,106,118,121,122,139,141,143,165,175,176,179,187,188,191,192,193,197,204,210,211,213,217,218,219],level_list:85,leverag:[119,121,182,219],lflag:[1,63,74],lh_append_body_func_t:162,lh_append_func_t:162,lh_append_mbuf_body_func_t:162,lh_append_mbuf_func_t:162,lh_flush_func_t:162,lh_read_func_t:162,lh_read_mbuf_func_t:162,lh_registered_func_t:162,lh_set_watermark_func_t:162,lh_storage_info_func_t:162,lh_walk_func_t:162,lib:[1,4,58,66,68,95,114,117,139,142,175,176,218,219],libc6:6,libc:[7,106,114],libc_baselibc:[173,199],libftdi1:4,libftdi:4,libg:61,libgcc:[61,173],libhidapi:4,librari:[1,4,15,61,63,68,71,94,100,102,106,107,109,114,115,117,121,139,142,143,157,173,174,178,183,210,212,213,218,219,220],libusb:4,libusb_error_access:197,libusb_open:197,licens:[4,7,10,68,74,114,121,183,193,197,199,200,211,212,218,219,226,233,234],lieu:79,life:[36,191],lifetim:113,light:[9,44,143,163,180,181,194,197,198,199,200,205,220,221,229,232],lightblu:[187,217,219],lightweight:138,like:[2,3,5,8,11,14,15,19,20,21,44,68,71,72,75,94,95,102,105,106,109,110,111,114,115,117,121,127,143,146,149,174,180,181,183,193,197,199,210,212,218,219,220,222,223,224,226,228,232,233,234],likewis:75,limit:[3,14,24,28,33,39,41,112,114,116,122,138,173,186,191,201,218,219,233],limt:174,line:[2,6,7,11,15,21,49,51,52,60,75,106,114,117,148,174,178,180,181,184,190,195,197,198,212,214,219,220,221,226,233],linearacc:221,lines_queu:117,link:[2,3,7,25,28,33,34,39,43,47,51,55,72,73,74,94,96,98,102,154,172,173,176,178,179,180,183,184,187,192,193,195,196,197,198,199,200,204,211,218,219,221,226,229,230,232,233,234,236],linker:[1,74,107,114,173,183,199],linkerscript:[74,106],linux:[5,7,9,11,21,69,79,91,92,122,184,193,195,196,197,199,200,203,211,221,229,230,231,232],liquid:219,lis2dh12:[164,226],lis2dh12_0:[164,226],lis2dh12_cfg:164,lis2dh12_config:164,lis2dh12_data_rate_hn_1344hz_l_5376hz:164,lis2dh12_fs_2g:164,lis2dh12_init:164,lis2dh12_onb:[164,226],list:[3,6,7,8,11,15,21,28,34,39,41,47,48,61,63,64,66,70,72,74,79,84,85,86,88,89,90,91,93,98,100,102,103,106,107,108,112,113,115,117,118,121,123,142,154,162,163,167,168,169,172,174,176,179,180,181,183,186,189,190,193,194,195,196,197,198,199,200,203,204,212,213,218,219,223,224,229,230,232,236],listen:[2,14,27,28,42,44,79,102,113,163,166,168,173,186],listener_cb:226,lit:[181,184,201,207],littl:[6,33,35,102,115,180,181,183,190,204,213,218],live:[121,180,189,190,193,211,212,213],lma:199,lmp:33,lo_arg:162,lo_data_len:162,lo_index:162,lo_t:162,load:[2,4,5,7,11,15,47,52,56,60,68,70,71,72,74,106,115,116,153,173,180,181,187,194,195,203,204,205,207,213,217,218,219,233,234],load_arduino_blinki:11,load_arduino_boot:11,load_rom:223,loader:[21,56,63,106,115,117,153,193,196,197,198,200,211,221,229,230,232],loc:[127,128,132,137],local:[1,4,6,7,10,13,18,28,29,30,33,39,40,49,53,62,68,71,73,84,94,96,107,112,113,186,193,211,224],localhost:[79,218,226,233],locat:[1,8,10,32,44,74,102,106,115,127,132,149,178,190,195,199,207,211,212,218,221,229,230,232],lock:[9,101,105,111,127,163,168,205],log:[1,7,13,14,25,29,30,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,79,80,81,82,83,84,86,87,88,89,90,91,93,94,95,115,118,119,127,137,139,142,143,172,173,175,176,177,180,183,193,196,197,199,200,201,208,218,219,224,226,230,233],log_:19,log_append:162,log_append_bodi:162,log_append_cb:162,log_append_mbuf:162,log_append_mbuf_bodi:162,log_append_mbuf_body_no_fre:162,log_append_mbuf_no_fre:162,log_append_mbuf_typ:162,log_append_mbuf_typed_no_fre:162,log_append_typ:162,log_cbm_handl:162,log_cbmem_handl:162,log_cli:[172,208],log_console_get:162,log_console_handl:[162,165],log_console_init:162,log_crit:162,log_debug:162,log_entry_hdr:162,log_entry_hdr_s:162,log_error:[162,165],log_etype_:162,log_fcb:176,log_fcb_handl:162,log_fcb_slot1_handl:162,log_find:162,log_flush:162,log_handl:162,log_info:[162,165],log_init:[162,176],log_level:[63,162,176,203,208],log_level_:162,log_level_debug:162,log_level_error:162,log_level_get:162,log_level_set:162,log_list_get_next:162,log_module_bno055:165,log_module_default:162,log_module_get_nam:162,log_module_regist:162,log_module_str:162,log_nam:85,log_newmgr:175,log_newtmgr:[63,175,176,201],log_nmgr_register_group:[162,176],log_offset:162,log_printf:162,log_read:162,log_read_bodi:162,log_read_hdr:162,log_read_mbuf:162,log_read_mbuf_bodi:162,log_regist:[162,165],log_set_append_cb:162,log_set_watermark:162,log_shel:180,log_stats_inc:162,log_stats_incn:162,log_storage_info:162,log_syslevel:[162,165],log_typ:162,log_walk:162,log_walk_bodi:162,log_walk_body_func_t:162,log_walk_func_t:162,log_warn:162,logic:[1,35,41,43,115,155,204,218],login:214,loglevel:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95],logxi:94,long_filename_test:210,longer:[3,8,10,25,36,43,103,167,175,184,218,220],longrange_interv:39,longrange_pass:39,longrange_window:39,look:[8,14,17,19,21,29,30,36,68,74,106,108,112,114,115,117,118,140,149,173,174,180,181,186,188,189,190,207,210,213,215,217,218,219,223,224,226,236],lookup:[168,188,226],loop:[23,97,100,105,112,139,176,183,195,201,207,217,219],loos:168,lora:204,lora_app_shel:[74,204],lora_app_shell_telee02:204,lora_app_shell_telee0:204,lora_mac_timer_num:204,lorap:74,lorashel:74,lose:38,loss:[38,41,144],lost:110,lost_found_test:210,lot:[7,14,20,173,175,186,210,219,223],low:[9,17,33,34,43,44,99,102,106,111,122,139,143,148,152,153,163,165,168,188,191,192,193,194,197,207,211,236],low_thresh:163,lower:[14,33,99,104,105,111,112,175,176,185,195,199,203,207],lowercas:21,lowest:[86,98,103,112,176,207],lowpow:221,lrwxr:[4,94],lsb:149,lst:[47,68,74],ltbase:176,ltd:39,ltk:[28,39],ltk_sc:39,ltrequir:176,lua:[72,95,124,125,126],lua_cmd:126,lua_init:124,lua_main:124,lwip:121,m32:6,m4g:221,mac:[3,5,7,9,11,21,33,68,69,91,92,180,181,184,187,193,195,196,197,199,200,203,204,211,217,219,221,229,230,231,232],machin:[2,3,7,8,107,184,236],maco:[4,8,21,79],macro:[19,29,30,33,102,103,106,110,161,165,174,176,178,190,207,210,219],made:[2,10,13,28,33,68,84,98,112,115,149,204,207,219],mag:221,mag_rev:221,maggyro:221,magic:[74,115,127],magnet:[163,221],magnetomet:165,mai:[2,4,6,7,8,11,14,18,19,23,25,34,39,41,42,44,64,66,70,71,75,93,94,95,98,100,102,103,105,106,109,114,115,117,119,121,143,148,149,154,162,163,164,165,167,168,173,174,175,176,178,183,184,193,195,196,197,198,199,200,201,204,207,211,212,218,219,221,223,226,229,232,233],mail:[3,13,121,179,180,181,183,194,219,236],main:[7,11,27,38,44,70,74,90,93,100,102,105,108,112,115,117,125,159,163,168,172,176,181,183,186,191,192,193,196,197,198,199,200,201,205,210,217,218,219,221,229,230,232],mainli:173,maintain:[4,62,98,115,121,163,168,176,210,212,213],mainten:[119,174],major:[15,68,74,109,159,192,207,212,213],major_num:[212,213],make:[1,2,3,7,8,9,14,17,18,19,21,24,25,26,29,30,32,33,36,42,43,44,46,68,70,76,84,98,102,103,106,115,121,127,128,141,143,160,162,168,173,174,180,181,182,183,184,186,188,189,191,192,193,195,199,203,204,207,210,212,217,218,219,220,226,236],makerbeacon:201,malloc:[101,103,106,114,207,219],man:[6,39,114],manag:[6,8,18,25,29,30,39,43,44,52,58,70,71,72,74,77,79,81,84,85,86,89,90,93,94,95,100,103,105,106,107,109,112,115,117,121,143,158,161,163,165,166,167,173,176,177,195,196,203,206,208,211,213,221,226,229,231,232,236],mandatori:[33,106,190,191,192],mani:[19,33,44,68,74,102,108,115,127,135,143,154,188,193,212,223],manifest:[47,50,56,68,74,180,181,201],manipul:[1,52,58,102],manner:[29,30,39,41,102,105,115,143],manual:[28,29,30,37,43,72,73,96,103,105,112,114,141,173,180,193,199,226,232,233,234],manufactur:[32,39,41,52,56,70,71,72,79,173,186,193,211,223],many_children_test:210,map:[2,3,8,28,33,39,40,74,109,121,122,143,147,148,155,161,173,174,175,176,188,195,211,212,213,221,229,232,233],map_cnt:174,mar:[113,196,198,204,219,226],march:81,mark:[39,40,84,106,199],marker:106,market:[44,198],mask:[28,39,163,165,167,168,224,226],mass:[184,197],mass_eras:[196,197],master:[1,7,10,28,39,69,70,72,73,92,93,95,96,121,143,145,149,152,193,211,212,213,219],master_clock_accuraci:28,match:[2,7,20,28,33,106,107,109,115,162,167,168,173,193,197,211,212,213],materi:14,matter:13,max:[14,160,161,223],max_cbmem_buf:162,max_conn_event_len:39,max_ev:[28,39],max_len:[139,140,144],max_protohdr:102,maxim:9,maximum:[17,24,28,39,41,43,102,115,116,117,141,144,160,172,210,233],maxlen:[116,161],mayb:[223,233,234],mb_crc:218,mb_crc_check:218,mb_crc_tbl:218,mbed:[196,200],mbedtl:[7,193,196,198,200,211,229,230,232],mblehciproj:184,mblen:102,mbuf:[14,29,30,105,161,162,222],mbuf_buf_s:102,mbuf_memblock_overhead:102,mbuf_memblock_s:102,mbuf_mempool_s:102,mbuf_num_mbuf:102,mbuf_payload_s:102,mbuf_pkthdr_overhead:102,mbuf_pool:102,mbuf_usage_example1:102,mbuf_usage_example2:102,mcu:[7,9,17,19,24,25,66,107,110,115,121,122,143,148,149,151,152,153,154,155,157,180,181,193,196,207,211,219,226],mcu_dcdc_en:25,mcu_gpio_porta:122,mcu_sim_parse_arg:[195,226],mcuboot:115,mdw:199,mean:[2,11,14,20,21,33,102,104,110,111,112,113,115,122,152,176,190,197,213],meaning:[125,155],meant:[1,110,116],measur:[9,28,102,204,207],mechan:[1,28,34,105,173,176,205,212,214,218,219],medic:[43,68],medium:[19,162],meet:[164,184,193,194,196,197,198,199,200,203,221,223,224,225,226,228,229,230,231,232],mem:[7,176],member:[28,29,30,97,100,102,103,104,110,111,112,113,116,117,140,141,149,152,154,161,162,163,172,174,186,188,219],membuf:103,memcmp:102,memcpi:188,memori:[9,33,61,86,100,101,102,105,106,109,110,114,115,119,121,122,138,141,143,144,146,149,175,188,199,201,204,205,207,208,230,233],mempool:[77,93,94,95,102,103,172],memset:[164,186,189,192,219],mention:[11,163,219],menu:[11,72,197,199,232],merchant:4,merci:103,mesh:45,messag:[2,4,19,25,29,30,34,44,55,70,71,72,88,117,119,120,162,172,193,197,204,205,211],messi:219,messsag:75,met:[33,201,205,211],meta:[8,211,221],metadata:[18,56,115],meter:43,method:[21,28,37,102,112,120,141,145,148,152,162,172,174,188,212],mfg:[7,24,52,70,71,72,83,176],mfg_data:[14,41],mfg_init:176,mgmt:[7,117,119,152,158,172,175,176,201,218,219],mgmt_evq_set:201,mgmt_group_id_config:118,mgmt_group_id_crash:118,mgmt_group_id_default:118,mgmt_group_id_imag:118,mgmt_group_id_log:118,mgmt_group_id_runtest:118,mgmt_group_id_stat:118,mgmt_imgmgr:173,mgmt_newtmgr_nmgr_o:173,mgr:168,mgutz:94,mhz:[36,43],mib:[68,94,204],mic:33,micro:[21,68,193,194,196,198,199,203,204,207,211,219,221,228,229,231,232,233,234],microcontrol:[9,114,115,199,232],microsecond:[36,99,113],microsoft:11,mid:[14,27,115,197],middl:[39,115,219],might:[1,2,14,16,19,31,33,74,106,109,116,117,121,143,149,165,168,173,175,183,185,186,191,192,193,197,212,213,215,226,233,234],migrat:176,milisecond:39,milli:168,millisecond:[28,39,113,204],millivolt:219,min:[85,86,115,211,230],min_conn_event_len:39,min_key_s:[29,30],mind:[14,110,183],mine:217,mingw32:72,mingw64:72,mingw:[4,7,8,11,69,95,195,211,221,229,232],mini:197,minicom:[8,195,211,221],minim:[106,121,138,139,141,165,183],minimum:[28,29,30,39,41,85,102,103,115,162,183],minor:[159,192,212,213],minor_num:[212,213],minu:102,minut:[94,113,191,210],mip:[7,74],mirror:[1,10,13,18,72,95,212,218,219],misc:221,misconfigur:168,mislead:6,mismatch:[33,102],miso:152,miso_pin:[122,123],miss:[25,33,70,106,175,180,181,183,194,219],misspel:175,mitm:39,mk64f12:[121,143],mkdir:[10,56,93,95,106,180,193,196,197,198,199,200,204,211,212,218,219],mkdir_test:210,mkr1000:209,mkr1000_boot:211,mkr1000_wifi:211,mlme:204,mman:70,mmc0:[123,139],mmc:[121,138],mmc_addr_error:123,mmc_card_error:123,mmc_crc_error:123,mmc_device_error:123,mmc_erase_error:123,mmc_init:123,mmc_invalid_command:123,mmc_ok:123,mmc_op:[123,139],mmc_param_error:123,mmc_read_error:123,mmc_response_error:123,mmc_timeout:123,mmc_voltage_error:123,mmc_write_error:123,mn_socket:7,mobil:44,mod:[42,187,218],modbu:218,mode:[9,14,28,33,34,39,41,121,143,144,148,152,155,165,173,186,193,197,199,210,221,223],model:[14,34,43,45,100,157,196],modern:[8,138],modif:[10,180,210,220],modifi:[6,28,75,102,106,113,120,154,162,181,207,218,219,225,228],modlog:25,modlog_alloc:25,modlog_map:25,modul:[18,85,99,103,105,114,119,124,162,195,204,232],module_list:85,modulo:113,moment:[14,19,122,149,157,188,213],mon:[193,196,197],monitor:[102,117,119,127,170,174,199,220,228,236],monolith:190,month:210,more:[1,4,7,9,11,13,14,15,19,25,28,29,30,33,34,41,42,43,47,48,52,56,64,66,70,71,72,74,75,77,93,94,95,98,100,102,105,106,111,112,113,114,115,116,121,128,132,139,152,155,161,163,164,165,166,167,172,173,176,181,183,186,190,191,192,193,195,196,203,204,207,210,211,213,217,218,219,221,223,226,229,232,233,236],moreov:[25,218],mosi:152,mosi_pin:[122,123],most:[1,8,14,17,23,27,28,32,35,36,37,43,74,102,106,107,112,114,115,145,152,173,175,186,207,210,217,219,221,224,226],mostli:[6,9,173,191,192],motor:[9,223],mount:219,mous:[121,143],move:[8,58,70,71,72,94,98,105,113,115,144,173,195,199,219,220,222,226],mp_block_siz:103,mp_flag:103,mp_membuf_addr:103,mp_min_fre:103,mp_num_block:103,mp_num_fre:103,mpe:103,mpool:[204,218],mpstat:[77,91,93,94,95,118,120,201,230],mq_ev:102,mqeueue:102,ms5837:25,msb:149,msdo:106,msec:[14,39,156],msg:[162,178],msg_data:39,msp:[193,199],msy:72,msys2:69,msys2_path_typ:72,msys64:72,msys_1:[86,230],msys_1_block_count:[220,222],msys_1_block_s:[220,222],mtd:122,mtu:[21,29,30,33,39,40,187],mu_level:104,mu_own:104,mu_prio:104,much:[14,102,106,111,114,133,218],multi:[1,9,63,75,109,112,149],multilib:[6,7,70],multipl:[4,14,17,19,25,29,30,35,39,41,47,48,63,64,68,97,104,105,110,114,116,119,121,143,152,168,176,186,190,191,212],multiplex:[14,43],multiplexor:109,multipli:[103,207],multitask:[105,207],must:[1,2,4,5,7,8,9,10,11,26,27,28,29,30,34,36,37,46,50,54,59,66,68,70,72,74,76,79,81,84,93,98,99,100,102,103,105,106,109,110,112,113,115,116,117,123,127,135,139,141,142,149,152,154,155,159,160,161,162,163,164,165,167,168,170,172,174,175,176,180,183,186,188,195,198,199,201,203,204,207,211,212,213,219,221,222,224,225,226,229,232,233],mutex:[101,105,111,112],mutual:104,my_at45db_dev:122,my_blinki:63,my_blinky_sim:[7,47,48,56,68,74,183,184,196,197,218],my_blocking_enc_proc:33,my_callout:205,my_conf:116,my_config_nam:176,my_driv:[218,219],my_ev_cb:205,my_eventq:201,my_gpio_irq:205,my_interrupt_ev_cb:205,my_memory_buff:103,my_new_target:63,my_newt_target:63,my_packag:162,my_package_log:162,my_pool:103,my_proj1:183,my_proj:183,my_project:[1,193,211,212,219],my_protocol_head:102,my_protocol_typ:102,my_result_mv:219,my_sensor:226,my_sensor_devic:226,my_sensor_poll_tim:226,my_stack_s:112,my_stat:174,my_stat_sect:174,my_target1:75,my_task:112,my_task_evq:102,my_task_func:112,my_task_handl:102,my_task_pri:112,my_task_prio:112,my_task_rx_data_func:102,my_task_stack:112,my_timer_ev_cb:205,my_timer_interrupt_eventq:205,my_timer_interrupt_task:205,my_timer_interrupt_task_prio:205,my_timer_interrupt_task_stack:205,my_timer_interrupt_task_stack_sz:205,my_timer_interrupt_task_str:205,my_uart:155,myadc:219,myapp1:233,myapp:174,myapp_console_buf:117,myapp_console_ev:117,myapp_init:117,myapp_process_input:117,mybl:[47,48,59,63,79,86,89,90,201],myble2:[50,51,184],myblehostd:79,mybleprph:[79,203],mybletyp:79,myboard:[58,106],myboard_debug:106,myboard_download:106,myconn:201,mycor:84,mydata:102,mydata_length:102,mylora:204,mymcu:108,mymfg:83,mymodul:110,mymodule_has_buff:110,mymodule_perform_sanity_check:110,mymodule_register_sanity_check:110,mynewt:[1,3,4,5,6,10,12,26,28,33,37,42,43,45,50,51,52,56,57,63,64,66,68,69,70,72,73,74,75,84,91,92,93,95,96,97,99,100,101,110,111,112,113,114,115,119,120,121,122,123,138,139,141,142,143,144,145,148,149,152,155,162,164,165,172,173,174,175,176,177,178,179,180,182,184,185,187,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,208,210,211,213,218,219,221,223,225,226,229,230,231,232,233,234,236],mynewt_0_8_0_b2_tag:[212,213],mynewt_0_8_0_tag:212,mynewt_0_9_0_tag:212,mynewt_1_0_0_b1_tag:212,mynewt_1_0_0_b2_tag:212,mynewt_1_0_0_rc1_tag:212,mynewt_1_0_0_tag:212,mynewt_1_4_1_tag:[70,72,93,95],mynewt_arduino_zero:[193,211,212],mynewt_nord:219,mynewt_stm32f3:180,mynewt_v:[146,164,165,172,174,176,210,219],mynewt_val_:[14,176],mynewt_val_ble_max_connect:14,mynewt_val_log_level:176,mynewt_val_log_newtmgr:176,mynewt_val_msys_1_block_count:176,mynewt_val_msys_1_block_s:176,mynewt_val_my_config_nam:176,mynewtl:220,mynewtsan:88,mypeerprofil:21,myperiph:[187,203],mypool:103,myprofil:21,myproj2:173,myproj:[2,7,11,106,180,181,193,195,196,197,198,199,200,203,212,218,220,221,223,226,234],myriad:9,myself:14,myseri:[86,89,90],myserial01:79,myserial02:79,myserial03:79,mytarget:25,mytask:207,mytask_handl:207,mytask_prio:207,mytask_stack:207,mytask_stack_s:207,myudp5683:79,myvar:78,n_sampl:221,nack:149,nad:141,nad_flash_id:141,nad_length:141,nad_offset:141,nak:149,name1:63,name2:63,name:[1,2,4,7,8,10,11,13,14,21,24,25,33,39,41,43,47,48,50,51,55,56,57,58,60,61,63,64,66,68,70,71,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,103,106,107,108,110,112,113,114,116,117,121,139,140,142,143,148,160,161,162,163,164,165,166,168,173,175,178,180,183,186,188,190,191,192,193,195,196,197,198,199,200,201,205,207,210,211,212,213,214,218,219,220,221,222,223,226,229,230,232,233],name_is_complet:186,name_len:[139,186],namespac:[101,172,191],nano2:[56,66,106,200],nano2_debug:[106,200],nano:[194,236],nanosecond:[99,154],nativ:[2,3,7,11,56,63,66,68,72,74,79,116,152,175,176,180,184,196,197,205,211,218,219,230,236],natur:106,navig:[13,236],nbuf:102,nc_num_block:141,nc_num_cache_block:141,nc_num_cache_inod:141,nc_num_dir:141,nc_num_fil:141,nc_num_inod:141,nding:190,ndof:221,ndof_fmc_off:221,nearest:[72,196],nearli:19,neatli:186,necessari:[6,29,30,36,52,60,70,71,72,102,115,139,180,183,188,193,204,210,219],necessarili:27,need:[4,5,6,7,8,9,10,11,13,14,15,17,18,21,23,25,27,28,29,30,35,36,45,56,63,65,68,70,71,72,73,74,77,79,93,94,96,97,98,101,102,103,104,105,106,108,109,110,111,112,115,117,122,127,128,129,139,146,153,156,162,163,165,166,167,168,172,173,174,175,176,183,184,186,188,189,190,191,192,193,195,196,197,198,199,200,201,203,205,207,210,211,213,214,217,218,219,220,222,223,226,229,230,232],neg:[102,113,172,190],neither:102,ness:152,nest:[104,139],net:[4,7,14,25,36,64,170,176,183,184,188,190,211,218,219,220,222,225],net_nimble_control:173,net_nimble_host:173,network:[1,9,14,39,44,45,68,102,105,173,204,207,211],never:[14,32,102,105,110,112,176,183,188,207,223],nevq:100,new_btshel:58,new_key_s:28,new_pool:102,new_slinki:58,newer:6,newest:[18,127,175,207],newli:[1,13,32,56,115,184,191,192,212],newlib:114,newlin:117,newt:[1,3,5,6,7,12,14,15,18,24,25,45,69,74,75,86,89,90,93,94,95,96,105,106,107,109,121,173,174,175,176,178,180,181,182,183,184,187,191,192,193,194,195,196,197,198,199,200,202,203,204,205,207,208,210,211,212,213,214,215,218,219,220,221,222,223,224,226,228,229,230,231,232,233,234,236],newt_1:[70,73],newt_1_1_0_windows_amd64:73,newt_3_1_0_windows_amd64:73,newt_group:2,newt_host:2,newt_us:2,newtgmr:[94,95,96],newtmgr:[1,7,9,12,14,15,70,71,72,76,77,91,92,117,118,120,157,162,173,175,176,205,218,219,231,236],newtmgr_1:[93,96],newtmgr_1_1_0_windows_amd64:96,newtmgr_1_3_0_windows_amd64:96,newtmgr_shel:172,newtron:[139,142,175,176],newtvm:10,next:[7,8,25,36,42,84,90,95,98,102,103,112,115,117,119,127,132,139,157,161,163,167,168,173,176,181,183,186,190,191,192,193,196,199,203,207,213,217,218,219,223],next_checkin:[90,229,232],next_t:98,nfc:18,nff:[7,114,122,139,142,150,175,176,178,210],nffs_area_desc:[16,141],nffs_close:142,nffs_closedir:142,nffs_config:141,nffs_detect:141,nffs_detect_fail:[139,141],nffs_dirent_is_dir:142,nffs_dirent_nam:142,nffs_file_len:142,nffs_filename_max_len:141,nffs_flash:150,nffs_flash_area:[16,175,176],nffs_format:141,nffs_getpo:142,nffs_init:[141,142],nffs_intern:141,nffs_max_area:141,nffs_misc_desc_from_flash_area:141,nffs_mkdir:142,nffs_op:142,nffs_open:142,nffs_opendir:142,nffs_pkg_init:16,nffs_read:142,nffs_readdir:142,nffs_renam:142,nffs_seek:142,nffs_test:210,nffs_test_debug:210,nffs_test_priv:210,nffs_test_system_01:210,nffs_test_util:210,nffs_unlink:142,nffs_write:142,nice:[174,217],nil:80,nim:190,nimbl:[7,21,35,36,38,41,79,176,182,185,186,187,188,189,190,201,203,217,218,219,220,222],nimble_max_connect:14,nmgr:120,nmgr_o:118,nmgr_shell:[117,176,201],nmgr_shell_pkg_init:176,nmgr_uart:201,nmgr_urart_spe:201,nmxact:10,no_of_sampl:221,no_rsp:40,no_wl:[39,42],no_wl_inita:39,node:[14,43,45,68,139],nodefault:161,nodup:39,nogdb:[51,60],noinputnooutput:39,non:[7,14,28,29,30,31,32,36,39,43,44,45,97,102,103,112,113,116,127,131,135,137,140,144,148,149,152,153,154,155,163,167,168,169,173,176,191,192,204,212,226],none:[4,7,8,11,20,33,39,42,95,100,106,114,115,168,173,180,193,197,204,226,233,234],nonsens:210,nonzero:[27,28,29,30,102,128,129,130,132,133,136,137,152,162,189,210],nor:34,nordic:[14,19,35,106,121,143,147,151,153,196,198,203,205,218,219,221,223,226,231,236],nordicsemi:[196,198,204,218,219,226],normal:[2,111,178,217,221],notat:[68,199],note:[1,2,4,6,7,10,11,13,14,28,34,35,36,41,43,45,56,60,63,70,71,72,73,74,79,81,84,93,94,95,96,98,99,100,102,103,104,105,106,107,112,115,116,117,123,141,149,152,154,157,162,163,164,165,166,168,172,173,175,176,180,183,184,186,188,190,191,192,193,195,196,197,198,199,200,201,203,204,207,208,211,212,213,214,219,220,221,222,223,224,226,228,229,230,232,233,236],noth:[10,191,192,219],notic:[7,10,68,74,105,106,142,173,183,207,213,218,219],notif:[13,14,29,30,39,40,100,117,163,167,168,169,185,217,219],notifi:[13,27,28,29,30,40,113,166,167,168,189,190],notnul:176,nov:8,novelbit:14,now:[2,8,9,24,72,97,99,102,103,104,106,111,112,115,138,139,148,155,173,180,181,183,185,186,187,189,190,191,192,193,196,201,203,204,207,210,212,217,218,219,221,223,226,230,233,234],nreset:193,nrf51:[36,66,106,121,143,208],nrf51dk:[66,173],nrf51xxx:151,nrf52840pdk:45,nrf52:[4,14,19,20,21,25,36,74,106,121,143,147,153,164,184,194,195,196,203,204,205,218,220,222,223,226,231,233,234,236],nrf52_bleprph_oic_bno055:220,nrf52_blinki:[195,198,200,233],nrf52_bno055_oic_test:[220,222],nrf52_bno055_test:[221,224],nrf52_boot:[184,198,201,219,220,221,222,229],nrf52_drv2605_test:223,nrf52_hal:106,nrf52_slinki:229,nrf52_thingi:164,nrf52dk:[50,51,66,74,75,106,176,183,184,187,195,198,205,217,218,219,220,221,222,223,229],nrf52dk_debug:[74,106,195],nrf52dk_download:106,nrf52k_flash_dev:[106,147],nrf52pdk:184,nrf52serial:229,nrf52xxx:[17,61,106,153,196,226],nrf5x:36,nrf:[37,219],nrf_saadc:219,nrf_saadc_channel_config_t:219,nrf_saadc_gain1_6:219,nrf_saadc_input_ain1:219,nrf_saadc_reference_intern:219,nrf_saadc_typ:219,nrfx:219,nrfx_config:219,nrfx_saadc:219,nrfx_saadc_config_t:219,nrfx_saadc_default_channel_config_s:219,nrfx_saadc_default_config:219,nrpa:[32,191,192],nsampl:221,nsec:99,ntoh:102,ntohl:102,ntrst:193,nucleo:66,num:[168,178],num_attr:[29,30],num_block:103,num_byt:146,num_handl:[29,30],number:[1,8,9,13,24,28,29,30,34,39,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,96,97,99,100,102,103,104,105,106,111,112,113,114,115,116,126,127,128,138,140,141,144,146,148,149,151,152,154,155,157,159,160,161,162,163,168,172,174,175,176,184,190,191,192,193,195,199,201,203,204,205,207,211,212,213,217,218,219,221,222,223,229,232,233],numer:[19,33,34,98,106,115],nvm:193,nxp:[14,121,143],objcopi:[6,20],objdump:6,object:[4,10,29,30,61,68,74,94,99,105,106,109,112,119,161,165,167,168,169,172,189,210,221,225],objsiz:[6,61,173],observ:[27,39,163,169,170,184,225],obtain:[14,39,102,104,111,112,154,162,212,218,219],obvious:66,oc_add_devic:220,oc_add_resourc:220,oc_app_resourc:[220,222],oc_get:220,oc_if_rw:220,oc_init_platform:220,oc_main_init:[170,220],oc_new_resourc:220,oc_put:220,oc_resource_bind_resource_interfac:220,oc_resource_bind_resource_typ:220,oc_resource_set_default_interfac:220,oc_resource_set_discover:220,oc_resource_set_periodic_observ:220,oc_resource_set_request_handl:220,oc_serv:[170,201,220,222,225],oc_transport_gatt:201,oc_transport_ip:201,oc_transport_seri:201,occasion:102,occur:[14,27,28,38,39,102,104,113,148,149,152,175,188,189,191,192],occurr:176,ocf:[119,218],ocf_sampl:[7,74],ocimgr:118,octet:[39,41,44,115],od_init:121,od_nam:165,odd:155,odditi:17,off:[2,17,33,43,44,45,97,100,102,109,110,112,117,121,127,143,144,149,162,163,165,166,171,181,183,184,191,192,195,199,201,203,205,220,222,224,225,226,228,236],offboard:223,offer:[1,43,119,121,138,146,219],offset1:102,offset2:102,offset:[29,30,33,40,84,102,106,113,115,127,135,139,140,161,162,173,175,176,221],often:[9,68,106,149,152],ogf:218,ohm:219,oic:[7,25,64,79,119,166,167,168,226,236],oic_bhd:79,oic_bl:79,oic_seri:79,oic_udp:79,oic_udpconnstr:79,oicmgr:[7,79,118,119,120],okai:[14,19],old:[58,127],older:[21,72,95,196,197],oldest:[28,127,132,136,175],olimex:[194,218,231,236],olimex_blinki:199,olimex_stm32:[66,199,232],om1:102,om2:102,om_data:[14,102,162],om_databuf:102,om_flag:102,om_len:[102,162],om_omp:102,om_pkthdr_len:102,om_ptr:162,ome:103,omgr:120,omi_block_s:103,omi_min_fre:103,omi_nam:103,omi_num_block:103,omi_num_fre:103,omit:[15,60,175],omp:102,omp_databuf_len:102,omp_flag:102,omp_len:102,omp_next:102,omp_pool:102,on_reset:38,on_sync:38,onboard:[8,165,166,224,228,233,234,236],onc:[32,41,68,70,74,93,97,99,102,103,104,105,112,115,130,143,152,154,168,180,181,186,191,194,195,201,203,204,212,218,219,223],one:[1,4,7,8,10,11,13,14,16,17,19,21,23,25,28,29,30,32,33,34,35,39,41,42,43,44,47,48,52,56,58,63,64,66,70,71,72,74,80,95,98,100,102,104,105,106,109,111,112,115,116,117,123,124,127,139,140,141,144,149,152,157,162,163,167,168,173,174,175,176,181,183,184,190,191,192,193,194,195,196,197,198,199,200,204,207,210,211,212,213,214,217,218,219,221,228,229,232,236],ones:[27,102,111,121,143,162,184,236],ongo:39,onli:[1,2,7,8,10,11,13,14,15,19,27,28,29,30,32,33,36,39,41,44,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,79,85,93,96,99,100,102,103,105,106,109,110,111,113,115,116,117,118,121,122,123,125,137,139,140,141,149,152,157,162,163,165,166,168,172,173,174,175,176,178,179,181,186,188,191,193,195,201,203,204,207,208,210,211,212,213,214,218,219,220,221,223,225,226,230],onlin:[193,226,233,234],onto:[1,33,55,56,60,97,100,102,106,167,194,196,197,198,199,200,217,218,221,229,232],oob:[14,33,39,41],op_mod:223,opaqu:[28,139,154,162,163,165,167,226],open:[4,8,9,11,13,14,33,43,51,52,60,68,70,71,72,74,109,119,121,139,141,164,191,193,196,197,199,200,210,218,224,230],open_test:210,openocd:[11,106,193,196,197,199,200,232],openocd_debug:196,oper:[1,9,11,28,29,30,31,33,38,43,44,52,70,71,72,97,102,109,110,111,112,113,117,119,121,139,140,141,142,143,144,146,148,155,162,163,168,174,176,177,179,183,184,188,189,190,191,192,193,204,210,211,213,214,217,218,219,221,223,226],oppos:[44,102,168,214],opt:4,optim:[1,36,45,50,51,56,63,74,102,106,107,114,121,173,180,183,184,187,193,196,197,198,199,200,204,207,211,218,219,221,226,229,232],optimis:44,option:[2,3,4,6,7,8,11,18,21,28,29,30,34,35,39,49,50,59,64,68,75,79,85,97,98,100,103,106,113,115,119,121,137,138,159,163,165,166,167,172,173,175,176,178,183,184,190,193,197,199,204,211,212,213,218,221,232],orang:[196,200],order:[1,9,14,17,26,34,46,68,74,76,98,100,102,103,104,110,112,114,115,116,119,152,163,175,176,181,201,204,207,210,213,215,218,219,223,226,233,234],org:[1,4,10,13,25,52,70,71,72,74,93,95,114,117,124,191,193,196,197,199,200,210,218,219,226,233,234],organ:[10,121,174,210,212],origin:[10,59,106,115,199],os_align:[102,103],os_arch:[74,103,113],os_bad_mutex:104,os_callout:[74,97,110,116,195,205,226],os_callout_func:[97,102],os_callout_func_init:97,os_callout_init:[97,110,195,205,226],os_callout_queu:97,os_callout_remaining_tick:97,os_callout_reset:[97,110,195,205,226],os_callout_stop:97,os_cfg:74,os_cli:176,os_cputim:[17,74],os_cputime_delay_nsec:99,os_cputime_delay_tick:99,os_cputime_delay_usec:99,os_cputime_freq:36,os_cputime_freq_pwr2:99,os_cputime_get32:99,os_cputime_init:99,os_cputime_nsecs_to_tick:99,os_cputime_ticks_to_nsec:99,os_cputime_ticks_to_usec:99,os_cputime_timer_init:99,os_cputime_timer_num:[36,99],os_cputime_timer_rel:99,os_cputime_timer_start:99,os_cputime_timer_stop:99,os_cputime_usecs_to_tick:99,os_dev:[74,121,163,164,165,224],os_dev_clos:[164,224],os_dev_cr:[121,163,164,165,168],os_dev_init_func_t:[121,165],os_dev_init_primari:164,os_dev_open:[164,219,224],os_einv:[102,113],os_eno:116,os_error_t:[98,103,104,111],os_ev:[97,100,102,110,116,117,195,205,226],os_event_fn:[97,100,102],os_event_queu:100,os_event_t_mqueue_data:102,os_event_t_tim:97,os_eventq:[74,97,100,102,110,117,168,172,205,217,219],os_eventq_dflt_get:[38,100,105,112,117,176,191,192,195,205,224,226],os_eventq_get:[100,110],os_eventq_get_no_wait:100,os_eventq_init:[100,102,110,117,205,217,219],os_eventq_pol:100,os_eventq_put:[100,117,205],os_eventq_remov:100,os_eventq_run:[38,100,102,105,112,176,191,192,195,205,224,226],os_exit_crit:98,os_fault:74,os_get_uptim:113,os_get_uptime_usec:113,os_gettimeofdai:113,os_heap:74,os_init:[99,112],os_invalid_parm:[103,104,111],os_main_task_prio:[176,207],os_main_task_stack_s:176,os_malloc:[74,101],os_mbuf:[14,28,29,30,74,102,162,172],os_mbuf_adj:102,os_mbuf_append:[102,217,219],os_mbuf_appendfrom:102,os_mbuf_cmpf:102,os_mbuf_cmpm:102,os_mbuf_concat:102,os_mbuf_copydata:[14,102],os_mbuf_copyinto:102,os_mbuf_count:102,os_mbuf_data:102,os_mbuf_dup:102,os_mbuf_extend:102,os_mbuf_f_:102,os_mbuf_f_mask:102,os_mbuf_fre:102,os_mbuf_free_chain:102,os_mbuf_get:102,os_mbuf_get_pkthdr:102,os_mbuf_is_pkthdr:102,os_mbuf_leadingspac:102,os_mbuf_len:102,os_mbuf_off:102,os_mbuf_pkthdr:102,os_mbuf_pkthdr_to_mbuf:102,os_mbuf_pktlen:102,os_mbuf_pool:102,os_mbuf_pool_init:102,os_mbuf_prepend:102,os_mbuf_prepend_pullup:102,os_mbuf_pullup:102,os_mbuf_trailingspac:102,os_mbuf_trim_front:102,os_mbuf_usrhdr:102,os_mbuf_usrhdr_len:102,os_mbuf_widen:102,os_memblock:103,os_memblock_from:103,os_memblock_get:103,os_memblock_put:103,os_memblock_put_from_cb:103,os_membuf_t:[102,103],os_mempool:[74,102,103],os_mempool_block_sz:103,os_mempool_byt:103,os_mempool_clear:103,os_mempool_ext:103,os_mempool_ext_init:103,os_mempool_f_:103,os_mempool_f_ext:103,os_mempool_info:103,os_mempool_info_get_next:103,os_mempool_info_name_len:103,os_mempool_init:[102,103],os_mempool_is_san:103,os_mempool_put_fn:103,os_mempool_s:[102,103],os_mempool_unregist:103,os_mqueu:102,os_mqueue_get:102,os_mqueue_init:102,os_mqueue_put:102,os_msys_count:102,os_msys_get:102,os_msys_get_pkthdr:102,os_msys_num_fre:102,os_msys_regist:102,os_msys_reset:102,os_mutex:[74,98,104,127,163],os_mutex_init:104,os_mutex_pend:104,os_mutex_releas:[98,104],os_ok:[98,104,111],os_pkg_init:176,os_san:[74,110],os_sanity_check:[110,112],os_sanity_check_func_t:110,os_sanity_check_init:110,os_sanity_check_regist:110,os_sanity_check_reset:110,os_sanity_check_setfunc:110,os_sanity_task_checkin:110,os_sch:[74,98],os_sched_get_current_t:207,os_sched_get_current_task:[98,110,207],os_sched_next_task:98,os_sched_set_current_task:98,os_sem:[74,105,111,218],os_sem_get_count:111,os_sem_init:[24,105,111,218],os_sem_pend:[24,105,111,218],os_sem_releas:[24,105,111,218],os_settimeofdai:113,os_stack_align:[207,217,219],os_stack_t:[110,112,205,207,217,219],os_start:112,os_stime_max:113,os_stime_t:113,os_sysview:234,os_task:[74,98,100,104,105,110,112,205,207,217,219],os_task_count:112,os_task_flag_evq_wait:112,os_task_flag_mutex_wait:112,os_task_flag_no_timeout:112,os_task_flag_sem_wait:112,os_task_func_t:[110,112,178],os_task_info:112,os_task_info_get_next:112,os_task_init:[105,110,112,205,207,217,219],os_task_max_name_len:112,os_task_pri_highest:112,os_task_pri_lowest:112,os_task_readi:112,os_task_remov:112,os_task_sleep:112,os_task_st:112,os_task_stack_defin:112,os_task_stack_define_nostat:112,os_task_state_t:112,os_test:74,os_tick_idl:[151,193,196,226],os_tick_init:151,os_tick_per_sec:23,os_ticks_per_sec:[17,24,97,110,113,116,151,165,195,205,207,217,218,219,226],os_tim:[74,113,210],os_time_adv:113,os_time_change_fn:113,os_time_change_info:113,os_time_change_listen:113,os_time_change_remov:113,os_time_delai:[24,112,113,165,181,205,207,217,219],os_time_get:113,os_time_is_set:113,os_time_max:113,os_time_ms_to_tick:113,os_time_ms_to_ticks32:113,os_time_t:[97,100,104,110,111,112,113,151,163,165],os_time_tick_geq:113,os_time_tick_gt:113,os_time_tick_lt:113,os_time_ticks_to_m:113,os_time_ticks_to_ms32:113,os_timeout:[104,111,218],os_timeout_nev:[104,105,111,113,163,164,224,226],os_timeradd:113,os_timersub:113,os_timev:[113,210],os_timeval_geq:113,os_timeval_gt:113,os_timeval_leq:113,os_timeval_lt:113,os_timezon:[113,210],os_wait_forev:[100,105,112,205,207,217,219],osmalloc:101,ostask:112,ostick:113,osx:[180,181],ota:201,otg1:199,otg2:[199,232],other:[1,6,8,10,13,14,15,18,24,25,27,28,29,30,33,34,36,41,44,63,68,74,99,100,102,103,105,106,107,110,111,112,113,115,116,117,121,139,141,146,149,162,165,167,168,172,173,174,176,180,183,184,185,186,188,189,193,194,195,196,205,207,208,210,212,217,218,219,220,221,222,226,228,233,234],otherwis:[23,28,29,30,102,103,105,112,113,117,129,131,134,140,148,152,162,168,212,213],oti:112,oti_cswcnt:112,oti_last_checkin:112,oti_nam:112,oti_next_checkin:112,oti_prio:112,oti_runtim:112,oti_st:112,oti_stks:112,oti_stkusag:112,oti_taskid:112,oui:[32,204],our:[14,27,33,68,102,106,173,174,180,181,183,186,191,192,194,195,201,207,210,213,217,219,229,232],our_id_addr:[28,42,187],our_id_addr_typ:187,our_key_dist:39,our_ota_addr:[28,42,187],our_ota_addr_typ:[42,187],out:[8,9,10,14,21,27,33,34,35,38,39,43,74,93,94,95,97,102,108,112,115,117,123,127,128,131,133,141,142,143,144,160,173,183,185,187,191,192,194,199,211,223,231],out_cpha:152,out_cpol:152,out_data:[139,140],out_def_handl:[29,30],out_desc:28,out_dir:140,out_dsc_handl:[29,30],out_fil:140,out_handl:[29,30],out_id_addr_typ:42,out_len:[139,140],out_m:113,out_nam:[123,139,140],out_name_len:[139,140],out_off:102,out_rssi:28,out_tick:113,out_val_handl:[29,30],outcom:[29,30,162],outdat:71,outfil:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75],outgo:[29,30],outlin:5,output:[1,7,11,24,34,39,42,43,47,48,50,51,52,53,54,55,56,57,58,59,60,62,63,64,65,67,70,71,72,75,82,86,88,89,90,94,101,106,112,113,115,143,148,155,162,168,173,175,180,193,195,196,197,199,200,204,205,210,211,218,221,226,230,233],outsid:[33,43,102,177],outweigh:102,over:[15,21,25,28,29,30,33,34,35,39,41,43,44,78,79,80,81,82,83,84,85,86,87,88,89,90,102,115,120,121,123,127,129,137,149,155,162,173,188,194,195,197,201,202,204,207,211,217,218,220,221,222,225,228,231,233,236],overal:[13,14,36,102,112,141],overdr:223,overflow:[14,113],overhead:102,overlap:33,overrid:[63,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,106,162,173,174,184,201,219],overridden:[35,176,184],overview:[115,221,222,226],overwrit:[6,28,62,63,72,73,95,96,106,117,193,208,211],overwrite_many_test:210,overwrite_one_test:210,overwrite_three_test:210,overwrite_two_test:210,overwritten:115,own:[2,10,18,24,32,33,52,70,71,72,74,100,104,105,109,111,112,122,152,162,173,174,182,183,219,223],own_addr_t:[191,192],own_addr_typ:[28,39,79,191,192,218],owner:[100,104,214],ownership:[29,30,104,218,219],pacakg:183,pacif:113,pack:[4,68,94,102,196,198,203,211,221,226,229],packag:[6,9,10,14,16,18,25,35,36,38,47,52,53,54,56,58,63,64,65,66,68,69,71,72,73,92,96,100,105,107,112,115,116,118,119,121,124,125,139,141,143,144,157,158,161,164,165,168,170,171,172,173,174,178,180,184,194,195,196,204,205,209,212,213,219,222,223,224,225,236],package1:162,package1_log:162,package2:162,package2_log:162,packet:[33,39,41,43,149,172,191,204],packet_data:102,pacman:[7,72],pad:[102,115,162],page:[1,4,5,6,7,8,13,14,15,33,34,70,71,73,93,94,96,106,114,122,142,149,150,163,164,165,166,180,181,183,185,189,191,192,194,219],page_s:122,pair:[14,28,29,30,33,34,39,43,79,115,116,161,176,187,189],pakcag:172,panel:11,paradigm:102,param:[28,39,172,189],param_nam:172,paramet:[1,14,27,28,29,30,33,38,39,40,42,74,79,85,97,98,99,100,102,103,104,110,111,112,113,116,117,123,127,137,140,144,146,148,149,151,152,154,155,156,162,163,164,165,167,168,169,172,176,186,188,189,190,191,192,201,210],parameter_nam:176,parameter_valu:176,parent:[27,29,30,103,139,168],parenthes:102,pariti:155,parlanc:10,parmaet:39,parmet:[39,40],pars:[68,157,159,172,191,210],part:[19,21,34,41,102,108,115,127,141,142,162,173,186,187,190,218,219,225],parti:[191,193,211],partial:[77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,102,115,141],particular:[4,17,24,27,28,33,60,74,102,105,106,109,110,115,117,121,139,143,152,154,161,189,191,192],particularli:208,partit:[33,106,115,141,173],partner:14,pass:[1,7,11,14,15,19,27,28,29,30,33,39,74,97,99,100,102,103,104,110,111,112,113,116,117,121,122,124,126,127,137,148,149,152,154,155,161,162,163,164,165,167,172,186,190,191,192,210,226],passiv:[14,39],passkei:[14,33,34,39],password:[10,71,93,184,214],past:[33,102],patch:[196,197,200],path:[2,4,6,10,11,21,25,41,63,70,71,72,73,74,79,93,94,95,96,106,107,139,140,176,212,218,219],pathloss:41,pattern:[39,106,207,223],payload:[14,29,30,102,119,120,149],pc6:232,pc7:232,pca100040:184,pca:[198,203,218,219],pcb:218,pci:[121,143],pcmcia:[121,143],pdata:149,pdf:[180,232],pdt:[113,210],pdu:[14,28,33,39],peek:207,peer:[13,21,28,29,30,34,40,79,152,188,190,191,192,203],peer_addr:[28,39,42,79,186],peer_addr_typ:[39,42,79,186],peer_id:79,peer_id_addr:[28,187],peer_id_addr_typ:187,peer_nam:[21,79,203],peer_ota_addr:[28,187],peer_ota_addr_typ:187,pem:[50,59],pencil:13,pend:[33,97,100,104,111,115,149,203],per:[10,17,19,24,32,102,104,115,116,141,144,148,152,155,174,207,210,213,223],perfectli:14,perfom:115,perform:[3,4,5,9,10,11,14,20,27,28,29,30,33,34,37,39,49,70,71,72,77,93,94,95,98,102,103,105,106,110,112,114,115,117,122,138,139,149,154,168,173,176,180,188,193,195,196,203,204,213,217,219,220,221,222,223,226],perhap:212,period:[9,14,28,32,34,39,97,110,151,156,205,207],peripher:[9,17,19,33,36,38,41,42,43,106,109,121,143,144,149,152,174,182,183,186,189,190,191,203,217,218,219],perman:[84,115,173,186,189,203],permiss:[218,219],permit:[29,30,33,190,193,226,233,234],persist:[14,28,115,138,162],perspect:173,pertain:189,petteriaimonen:114,phdr:102,phone:[14,34,44],php:68,phy:[28,39,43],phy_1m_conn_param:28,phy_2m_conn_param:28,phy_coded_conn_param:28,phy_init:219,phy_mask:28,phy_opt:[28,39],physic:[39,41,43,79,117,145,148,155],pick:[98,105,162,191,192],pictur:[180,196],pid:197,piec:[43,106,218],pin:[7,8,33,106,109,112,121,143,145,148,149,152,153,155,163,180,195,196,199,204,205,211,218,219,221,223,226,232],ping:105,pinout:108,pipe:19,piqu:236,pitfal:102,pkcs15:115,pkg1:175,pkg2:175,pkg:[1,7,10,25,52,56,63,66,68,70,71,72,74,107,108,114,117,121,122,123,138,139,142,143,162,164,172,174,175,176,183,195,201,205,210,218,219,220,226],pkg_init_func1_nam:176,pkg_init_func1_stag:176,pkg_init_func2_nam:176,pkg_init_func2_stag:176,pkg_init_func:176,pkg_init_funcn_nam:176,pkg_init_funcn_stag:176,pkga_syscfg_nam:176,pkga_syscfg_name1:176,pkga_syscfg_name2:176,pkgn_syscfg_name1:176,pkt:218,pkthdr_len:102,pkts_rxd:102,place:[3,14,68,74,100,113,114,115,127,149,152,163,173,176,178,181,183,184,190,191,192,199,201,207,213,228],plai:[11,14,17,43,228],plain:[173,197,213],plan:[2,14,121,172],platform:[2,7,9,10,11,35,36,70,71,72,79,93,94,95,97,105,106,107,109,121,144,149,152,154,177,178,183,193,195,196,197,199,200,203,207,211,218,219,221,229,230,231,232],pleas:[14,17,18,52,70,71,72,107,108,174,180,181,193,194,212,219,226,233,234],plenti:207,plist:74,plu:[102,149],plug:[8,142,180,199,200,219],plumb:217,pmode:221,point:[2,4,6,23,44,98,102,104,106,108,112,114,115,116,117,121,128,129,130,131,132,134,135,136,137,152,162,163,168,183,188,189,191,192,219,220],pointer:[14,29,30,80,97,98,99,100,102,103,104,106,111,112,113,116,117,121,127,128,129,137,140,142,144,149,152,154,159,160,161,162,163,164,165,168,172,188,189,207],poke:219,polici:[28,39,212],poll:[14,100,105,167,221,226],poll_du:221,poll_dur:221,poll_interv:221,poll_itvl:221,poll_rat:168,poller:[163,167,168,226],pong:105,pool:[86,93,105,204,222,230],popul:[1,7,11,28,29,30,63,75,113,194,211,228,231,236],port:[2,11,14,15,17,18,79,105,115,117,121,148,155,162,174,184,193,195,196,197,198,199,200,201,211,218,221,226,229,230,231,232,236],portabl:[121,143],portingto:107,portion:[115,133,149,219],posit:[102,113,115,127,156,199],posix:72,possibilti:[233,234],possibl:[14,17,27,28,34,36,39,40,42,43,45,49,66,102,104,113,115,121,139,141,143,144,162,173,174,190,212,221,233],post:[62,97,102,121,163,183,205],potenti:[109,173,213],pour:[71,94],power:[2,9,21,33,34,39,41,43,44,68,106,109,117,121,143,144,152,153,165,184,193,198,199,201,203,204,211,220,221,222,223,224,226,229,232],power_mod:223,ppa:4,pre:[4,9,162,174,212,213,218,219],precaut:188,prece:102,preced:35,precis:[6,14,24,33,168],predict:207,preempt:[104,105,111,112],preemptiv:[105,112,207],prefer:[3,21,39,41,125,188,203,218],preference0x01:39,prefix:[14,74,166,176,219],preload:152,prepar:[33,196,198,204,219],prepend:102,preper:223,preprocessor:[172,174],prerequisit:11,presenc:[106,186,191,192,212],present:[1,14,17,27,102,106,115,117,157,164,168,173,184,199,210],preserv:102,press:[8,11,24,111,183,205,207,211,221,234],presum:[102,204,223],pretti:[14,219],prev:112,prev_cursor:168,prev_ind:189,prev_notifi:189,prevent:[29,30,104,105,115,188],previ:[187,189],preview:184,previou:[43,69,70,71,72,91,92,93,94,95,112,115,153,161,168,175,176,183,184,195,212,217],previous:[6,11,70,71,72,73,93,94,95,96,152,187,201,215,219,221],prevn:[187,189],pri:[90,144,229,232],primari:[29,30,39,106,115,119,190,192,203,217],primarili:114,primary_phi:39,primo:[194,218],primo_boot:196,primo_debug:196,primoblinki:196,print:[24,29,30,61,70,71,72,75,116,117,123,139,155,168,172,175],print_statu:139,print_usag:159,printabl:[157,160],printf:[114,123],prio:[110,112,151],prior:[28,29,30,34,36,62,102,105,113,115,152,154,178,204],prioriti:[24,28,90,98,100,104,105,111,112,121,141,144,151,176,184,205,206,236],priv:39,priv_mod:28,privaci:[32,39,43],privat:[32,34,45,50,59,70,79,93,115,191,192],privileg:2,prng:24,pro:[21,193,196,207],probabl:[7,14,17,21,106,185,214,218],probe:[149,196,211,226],problem:[7,18,111,115,173,175],proce:[3,6,10,115,193,196,197,198,199,200,210,211,229,232],procedur:[6,10,14,27,28,29,30,32,33,34,39,40,77,88,93,94,95,115,142,146,173,218,221,225],proceed:[7,185,191,192],process:[3,6,9,13,25,27,33,34,38,39,44,74,97,98,100,102,106,112,115,117,118,162,168,170,173,174,176,180,191,192,201,205,207,218,220,224,225,226,233,234],process_rx_data_queu:102,processor:[4,9,102,112,121,143,144,148,193,199,207,226,233,234],produc:[111,115,174,197],product:[19,24,68,109,148,166,184,218,232],profil:[27,28,29,30,39,40,43,44,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,183,193,229,231,232],profile01:[78,80,81,82,83,84,85,86,87,88,89,90],profile0:90,program:[4,6,8,11,35,98,115,117,150,153,180,193,195,196,198,204,207,211,219,223],programat:117,programm:[197,233,234],programmat:[124,223,226],progress:[7,22,28,33,115,121,122,152,182],project:[3,6,8,10,16,17,18,20,26,46,47,52,53,54,57,62,63,65,68,70,71,72,74,76,101,112,114,115,117,122,123,125,138,143,157,162,174,178,181,187,207,210,214,215,220,221,223,226,227,228,233,236],prompt:[7,8,10,11,60,71,72,106,183,193,195,196,197,198,199,200,221,226],prone:190,proper:[29,30,121,218],properli:[36,74,105,110,184,188,207,217,219],properti:[11,28,32,44,72,106,115,120,141,162,180,185,196],propos:13,prot_length:102,prot_tif:102,prot_typ:102,protcol:102,protect:[34,101,115,127],protocol:[14,15,21,27,33,40,43,74,79,102,115,119,120,149,222,225,228,231],prototyp:[109,155,176,191,192],provid:[1,2,7,8,9,10,11,14,15,19,25,28,29,30,32,33,34,39,42,43,44,50,52,58,63,70,71,72,79,83,84,85,88,93,97,99,101,102,103,104,105,106,108,109,110,112,113,115,117,121,122,123,127,138,139,140,141,143,146,148,149,152,154,159,162,163,166,168,170,172,174,178,179,185,191,192,193,201,204,210,211,212,213,218,219,225],provis:[14,43,45],provision:[14,44],proxi:[43,44],pseln:219,pselp:219,pset:152,psm:[14,39],psp:[193,197],pst:[81,113,210],pth:199,ptr:[155,163,168],public_id:39,public_id_addr:42,public_target_address:41,publish:[14,34],pull:[10,18,20,28,62,93,95,100,102,121,148,195,199,205],pulldown:148,pullup:[102,148,162],purchas:223,purpos:[4,8,19,34,63,68,106,110,115,143,148,162,165,167,173,174,188,204,207,219,226],push:[13,14,18],put:[1,2,7,18,56,74,93,95,100,102,103,104,106,111,112,113,120,144,168,186,191,192,207,210,219],putti:[8,195,211,221],pwd:[2,10],pwm:[9,19],pwm_test:74,pwr:[197,199],px4:4,python:[26,46,76],qty:178,qualifi:188,qualiti:227,quat:221,queri:[9,28,32,63,68,70,71,72,74,75,102,120,162,163,165,174,186,221,223,230],question:[18,183],queu:[29,30,33,97,100,155,205],queue:[14,27,28,29,30,38,74,97,99,102,105,110,111,112,117,154,168,172,176,191,192,201,206,217,224,226,228,236],quick:[2,3],quickli:[113,143,207,219,221,223,225,226,228],quickstart:[2,207],quiet:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75],quit:[14,32,106,183,186,191,192,193,196,197,199,200,233],quot:79,radio:[36,43,184],raff:94,rais:104,ram:[61,106,108,141,144,173,183,193,218,220],ram_siz:106,ran:[25,110],rand:[24,39],rand_val:28,random:[28,32,33,37,39,42,79,184,190,191,192,217,219],random_id:39,random_id_addr:42,randomli:32,rang:[9,33,41,43,102,114,159,162,204],rapid:14,rare:102,rate:[14,23,79,97,117,168,170,184,204,221,223,225,226],rather:[21,27,33,106,113,114,115,139,173,219],raw:[10,14,70,71,93,94,117,162,176,219],rb_blinki:[56,63],rb_blinky_rsa:56,rb_boot:56,rb_btshell:63,rbnano2_blinki:200,rbnano2_boot:200,rdy:98,reach:[14,110,154],read:[4,6,7,10,11,27,29,30,31,32,33,35,39,40,68,74,77,78,81,86,89,90,93,94,95,100,102,112,115,116,117,121,122,123,127,129,132,133,137,139,146,148,149,154,161,162,167,168,170,171,176,180,187,189,190,191,192,193,194,197,200,201,203,204,205,207,210,211,212,217,218,219,220,221,222,225,228,231,233,234],read_acceleromet:226,read_cb:226,read_chr:188,read_config:139,read_rsp_rx:89,read_rsp_tx:89,read_sensor_interv:226,read_test:210,read_type_req_rx:89,read_type_req_tx:[89,201],read_type_rsp_rx:[89,201],read_type_rsp_tx:[89,201],readabl:[29,30,184,214],readdesc:7,readdir_test:210,reader:[210,217,219],readi:[13,98,100,112,117,155,161,193,207,218,223,233],readili:121,readm:[7,10,68,74,106,183,210],readnow:74,real:[1,7,9,14,100,105,113,117,161,179,183,190,205,218,226,233],realist:210,realli:[23,102,219],rearm:97,rearrang:102,reason:[14,21,27,28,33,38,39,102,103,115,153,187,189,204,207,210,212],reassembl:43,rebas:10,reboot:[7,25,84,115,116,153,173,175,203,220,222],reboot_log:85,reboot_log_flash_area:[175,176],reboot_start:224,rebuild:[14,25,45,74,95,224],rec0:115,rec1:115,rec2:115,recal:[188,212],receiv:[13,14,21,27,28,33,39,41,44,68,94,102,117,118,123,149,152,155,163,167,168,169,172,186,189,190,197,201,204,226,229,232],recent:[28,196,219],recip:6,recipi:41,recogn:[68,219],recommend:[3,4,7,11,14,17,18,24,25,70,71,93,94,102,117,150,164,165,172,175,176,186,190,196,200,201,205,208,221,228,233],reconfigur:[152,155,224],reconnect:188,record:[115,165,174,178,234],recov:115,recover:115,recreat:213,recur:156,recurs:[68,74,103],red:[39,40,180,197,199,232],redbear:[194,236],redefin:175,redistribut:[68,193,212,226,233,234],redo:25,reduc:[9,21,34,36,44,100,114,119,162,201,205,209],redund:173,reenter:208,ref0:80,refer:[7,8,13,15,18,31,34,35,41,68,80,106,152,166,173,186,191,192,193,195,199,211,219,221,232],referenc:[1,148],reflect:[162,187],refrain:38,refresh:[2,62,193],refus:[226,233],regard:[141,210,218,219],regardless:[29,30,54,162],region:[19,102,106,115,141,146],regist:[14,19,28,29,30,35,88,98,102,103,107,113,116,118,121,124,125,139,140,143,144,149,158,162,163,167,169,170,176,188,190,207,218,219,223,226],registr:[29,30,116,142,163,174,188,226],registri:[102,165],regress:178,regular:[102,210],reject:[28,33,210],rel:[14,102,105,135],relai:[43,44],relat:[13,28,39,44,56,122,173,186,189,193,204,226,233,234],relationship:[39,111],releas:[3,4,7,44,62,69,91,92,102,103,104,105,111,121,148,149,172,176,193,211,212,213,219],release_not:[7,10],relev:[28,108,115,121,148],reli:[1,7,68,176],reliabl:[14,28,29,30,43,115,138,141,191,192,213],reload:25,remain:[18,97,106,162,173,188,207],remaind:[106,186,210,212],rememb:[2,54,93,95,104,193],remind:193,remot:[1,7,9,11,33,39,40,62,68,79,91,93,94,95,119,149,180,184,193,194,195,201,203,205,211,218,226,228,230,231,236],remov:[2,4,6,28,29,30,39,48,58,73,96,99,100,102,103,111,112,113,117,123,163,167,169,173,188,193,226],renam:25,rename_test:210,repeat:[2,10,33,149,181,188],repeatedli:[29,30,41,115],replac:[4,6,28,29,30,106,108,114,157,173,176,181,193,195,229,232],repli:39,repo814721459:68,repo:[1,6,7,10,13,18,20,25,54,68,70,74,93,106,121,139,173,180,183,193,195,196,197,198,199,200,204,210,211,214,218,220,221,226,229,230,232,233,234],repop:7,report:[1,4,6,13,15,28,29,30,33,106,127,144,149,155,163,174,193,197,210,218,226,233,234],reposistori:7,repositori:[1,4,10,11,14,18,53,54,57,62,64,65,70,74,93,121,180,182,183,185,193,194,204,211,215,218,219,228,231,236],repres:[1,8,11,19,28,29,30,74,100,102,111,113,115,117,163,165,167,168,172,190,207],represent:[115,119],reproduc:[1,74,115,142,191,192],req_api:[74,117,162],req_len:102,request:[11,14,18,21,28,33,39,79,80,87,91,102,104,106,111,115,119,120,123,127,153,166,167,169,170,172,173,187,188,193,197,199,201,204,212,213,217,219,220,225,226,229,232],requir:[1,2,4,6,9,10,14,25,27,29,30,33,36,42,44,66,72,74,79,93,95,100,102,103,105,107,108,109,111,115,117,119,122,139,141,154,162,164,172,173,174,175,176,180,183,186,188,193,196,200,201,204,205,207,210,212,213,217,218,221,224,225,226,236],res:220,resch:98,reserv:[33,102,106,109,128,130,163,204,207],reset:[27,29,30,37,77,91,93,94,95,97,110,118,119,153,173,183,184,187,196,197,198,200,201,219,221,223,226,233,234],reset_cb:38,reset_config:193,reset_handl:[106,199],resid:[109,115,181,190,218],resign:[70,71,72],resist:219,resistor:[205,219],resolut:[34,99,154,174],resolv:[1,24,25,28,32,33,34,39,45,68,79,94,175,180,191,192,212],resort:168,resourc:[9,29,30,33,41,74,101,104,111,120,166,167,168,170,172,180,193,205,219,220,222,225,226,232,233,234],respect:113,respond:[30,37,149,173,186,188,190,217,218],respons:[14,21,28,29,30,33,40,41,82,98,103,105,117,119,123,170,173,186,188,207,211,218,225,229,230,232],rest:[1,15,59,74,102,159,161],rest_or_0:178,rest_or_0_aux:178,rest_or_0_aux_1:178,rest_or_0_aux_inn:178,rest_or_0_aux_n:178,restart:[2,28,115,116,127,153,178,193,223],restor:[14,28,116,141,196,198,204,219],restrict:[115,127,141,172,176,188,189],restructuredtext:13,result:[11,21,28,33,71,75,102,113,116,149,160,163,174,176,178,190,197,210,217,218,219],resum:[43,112,115,186,189],resynchron:[27,62],retain:[29,30,115,176,189],retent:144,retransmit:44,retreiv:120,retri:[200,204],retriev:[28,29,30,70,93,100,102,113,119,139,140,144,162,163,165,183,228],reus:[68,94,115,176],reusabl:68,rev:221,revdep:[1,63,75],revers:[1,35,63,75,115,188,199],revert:[115,203],review:[13,173,186,210],revis:[4,159,221,223],revision_num:[212,213],revisit:[183,189],rfc:[81,161,210],ribbon:[199,232],rigado:[61,198,219],right:[2,3,13,14,17,68,74,116,186,199,219],rimari:190,ring:111,rise:148,ristic:190,robust:138,role:[14,28,33,42,43,44,111,188],rom:223,room:[102,207],root:[2,4,8,44,93,123,180,212],round:168,routin:[27,98,114,116,127,128,130,142,161,218],rpa:[32,39],rpa_pub:[39,79],rpa_rnd:[39,79],rsa2048:115,rsa:115,rsp:[14,39],rsp_field:28,rssi:[28,39,41,184],rtc:9,rto:[68,105,207],rtt:[8,14,117,218,235,236],rtt_buffer_size_down:233,rubi:[10,68,71],rule:[176,197,210],rumbl:223,run:[2,3,4,5,6,8,9,10,14,20,21,23,27,28,35,36,42,47,52,54,56,63,65,68,70,71,72,73,74,77,79,80,90,91,93,94,95,96,97,98,99,100,102,104,105,106,109,110,111,112,115,116,118,119,122,123,139,154,170,172,173,175,178,179,180,181,183,184,191,192,194,196,197,198,199,200,201,203,204,207,210,211,218,219,220,221,222,223,224,226,229,231,232,236],runner:11,runtest:[7,118,201],runtest_newtmgr:201,runtim:[37,90,112,193,211,229,232],runtimeco:[70,71,93,94,180,193,211,212],rwx:106,rwxr:[93,95],rx_cb:117,rx_data:218,rx_func:155,rx_off:218,rx_phy:28,rx_phys_mask:[28,39],rx_power:39,rxbuf:152,rxpkt:102,rxpkt_q:102,s_cnt:174,s_dev:163,s_func:163,s_hdr:174,s_itf:163,s_listener_list:163,s_lock:163,s_map:174,s_map_cnt:174,s_mask:163,s_name:174,s_next:[163,174],s_next_run:163,s_pad1:174,s_poll_rat:163,s_size:174,s_st:[163,226],s_type:163,sad:[163,226],sad_i:226,sad_x:226,sad_x_is_valid:226,sad_y_is_valid:226,sad_z:226,sad_z_is_valid:226,safe:[103,113,139],safeguard:105,safer:14,safeti:188,sai:[14,19,20,74,102,112,193,211,212,213],said:[148,219],sam0:193,sam3u128:[196,198,204,218,219,226],samd21:[193,211],samd21g18a:193,samd21xx:193,samd:193,same:[6,11,13,14,15,19,25,28,34,41,47,50,60,64,72,74,91,102,104,106,107,111,115,116,117,138,141,149,168,173,174,175,176,180,181,186,188,189,194,196,198,204,205,207,212,213,214,219,220,223],sampl:[1,11,14,42,43,74,102,107,121,170,173,176,219,220,222,225,226,231],sample_buffer1:219,sample_buffer2:219,sample_target:66,sane:[28,112],saniti:[90,105,112,183],sanity_interv:110,sanity_itvl:[110,112],sanity_task:110,sanity_task_interv:110,satd:163,satisfactori:212,satisfi:[168,213],sattempt_stat:174,save:[11,44,62,63,84,113,116,117,149,165,188,207,223],saw:189,sbrk:[106,196,197,198,199,200],sc_arg:110,sc_checkin_itvl:110,sc_checkin_last:110,sc_cmd:[172,218],sc_cmd_f:172,sc_cmd_func:[172,218],sc_cmd_func_t:172,sc_func:110,sc_next:139,sc_valtyp:163,scalabl:138,scale:44,scan:[14,28,36,38,39,41,43,184,186,220,222],scan_interv:39,scan_req:39,scan_req_notif:39,scan_result:211,scan_rsp:39,scan_window:39,scannabl:[14,39,42],scd:163,scenario:[34,111,157],scene:44,schedul:[9,14,19,36,97,100,105,109,112,113,207],schemat:[106,232],scheme:[24,32,41,106],scientif:43,sck_pin:[122,123],scl:[149,221],sco:33,scope:[11,102,207],scratch:[106,115,127,128,130,173],screen:[8,204],script:[7,55,74,124,126,199],scroll:[11,187,201],sd_get_config:[163,165],sd_read:[163,165],sda:[149,221],sdcard:123,sdk:[58,66,176],search:[11,28,29,30,100,107,121,162,168,183,193,199,212,220,226,233,234],searchabl:[121,168],sec000:115,sec125:115,sec126:115,sec127:115,sec:[24,221,226],sec_stat:28,second:[17,28,34,38,39,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,97,102,103,106,110,112,113,115,127,156,168,172,173,180,181,186,191,192,195,199,207,210,217,219,221,226],secondar:190,secondari:[29,30,39,84,106,115,190,203],secondary_phi:39,secret:[34,39],section:[1,5,6,7,10,11,14,27,36,37,41,42,74,102,105,106,112,115,116,140,165,173,175,176,177,182,186,189,190,193,194,201,203,207,211,212,213,219,228,230,231],sector:[115,127,128,133,135,136,137,146,199],sector_address:[122,146],secur:[14,28,43,115,173,190,203,214,217,219],sed:163,see:[2,4,5,6,7,8,10,11,13,14,15,17,20,21,24,25,26,28,34,35,36,43,46,49,56,68,70,71,72,74,76,77,79,93,94,95,100,102,104,105,106,109,112,115,116,124,134,143,149,152,161,162,163,164,165,166,167,170,171,172,174,175,176,180,181,183,184,186,187,188,190,191,192,193,194,195,196,197,198,199,200,201,203,204,207,208,211,212,213,214,217,218,219,220,221,222,223,225,226,228,229,231,232,233,234],seek:102,seem:[14,17,19,23,25,186,219],seen:[103,147,150,212,236],segger:[8,14,117,196,198,203,204,211,218,219,221,226,229,235,236],segger_rtt_conf:233,segment:[43,102,220],sel:232,select:[4,11,25,32,43,68,72,148,152,163,172,193,195,196,197,199,220,222,232,234],selected_tx_pow:28,selector:163,self:[3,42,107,178,191,192,210],selftest:210,sem:111,sem_token:111,sema:218,semant:[18,189],semaphor:[24,105,112,218],send:[3,14,17,19,21,27,28,29,30,33,39,40,44,51,55,60,77,79,80,82,87,91,93,94,95,102,117,119,120,149,152,155,163,170,179,180,181,186,194,217,219,225,230,236],send_pkt:102,sender:186,sens:[33,115,173,219],senseair:[217,218],senseair_cmd:218,senseair_co2:[217,218],senseair_init:218,senseair_read:[217,218],senseair_read_typ:[217,218],senseair_rx_char:218,senseair_shell_func:218,senseair_tx:218,senseair_tx_char:218,sensi:220,sensibl:176,sensor:[9,14,25,44,121,174,223,236],sensor_accel_data:[163,226],sensor_callout:226,sensor_cfg:[163,165],sensor_check_typ:163,sensor_clear_high_thresh:168,sensor_clear_low_thresh:168,sensor_clear_trigger_thresh_t:163,sensor_cli:[171,221,222,226],sensor_color_data:163,sensor_cr:[164,221,224],sensor_data_cmp_gt:163,sensor_data_cmp_lt:163,sensor_data_func_t:[163,165,167],sensor_data_funct_t:165,sensor_data_t:163,sensor_dev_cr:164,sensor_devic:163,sensor_driv:[163,165],sensor_error_func_t:[163,167],sensor_euler_data:163,sensor_event_type_double_tap:163,sensor_event_type_free_fal:163,sensor_event_type_orient_chang:163,sensor_event_type_orient_x_chang:163,sensor_event_type_orient_x_h_chang:163,sensor_event_type_orient_x_l_chang:163,sensor_event_type_orient_y_chang:163,sensor_event_type_orient_y_h_chang:163,sensor_event_type_orient_y_l_chang:163,sensor_event_type_orient_z_chang:163,sensor_event_type_orient_z_h_chang:163,sensor_event_type_orient_z_l_chang:163,sensor_event_type_single_tap:163,sensor_event_type_sleep:163,sensor_event_type_sleep_chang:163,sensor_event_type_t:[163,168],sensor_event_type_wakeup:163,sensor_ftostr:[168,226],sensor_get_config:163,sensor_get_config_func_t:[163,165],sensor_get_devic:163,sensor_get_itf:[163,165],sensor_get_type_traits_bynam:168,sensor_get_type_traits_bytyp:168,sensor_gyro_data:163,sensor_handle_interrupt_t:163,sensor_humid_data:163,sensor_ign_listen:163,sensor_init:[163,165],sensor_itf:[163,164,165],sensor_itf_i2c:[163,164],sensor_itf_lock:163,sensor_itf_spi:163,sensor_itf_uart:163,sensor_itf_unlock:163,sensor_light_data:163,sensor_listen:[163,167,226],sensor_lock:163,sensor_mag_data:163,sensor_mgr_compare_func_t:168,sensor_mgr_evq_get:168,sensor_mgr_find_next:168,sensor_mgr_find_next_bydevnam:[168,226],sensor_mgr_find_next_bytyp:168,sensor_mgr_lock:168,sensor_mgr_match_bytyp:168,sensor_mgr_put_interrupt_evt:168,sensor_mgr_put_notify_evt:168,sensor_mgr_put_read_evt:168,sensor_mgr_regist:[163,165,168],sensor_mgr_unlock:168,sensor_mgr_wakeup_r:[168,226],sensor_nam:221,sensor_notifi:[163,169],sensor_notifier_func_t:163,sensor_notify_ev_ctx:168,sensor_o:[170,220,221,222,225,226],sensor_offset:221,sensor_oic_init:[168,170,220],sensor_oic_obs_r:[170,225],sensor_oic_tx_trigg:168,sensor_pkg_init:163,sensor_press_data:163,sensor_quat_data:163,sensor_read:[163,167],sensor_read_ev_ctx:163,sensor_read_func_t:[163,165],sensor_register_err_func:167,sensor_register_listen:[167,226],sensor_register_notifi:169,sensor_set_config_func_t:163,sensor_set_driv:[163,165],sensor_set_interfac:[163,165],sensor_set_n_poll_r:168,sensor_set_notification_t:163,sensor_set_poll_rate_m:[163,168,226],sensor_set_thresh:168,sensor_set_trigger_thresh_t:163,sensor_set_type_mask:[163,165],sensor_shel:221,sensor_shell_regist:168,sensor_temp_data:163,sensor_thresh_algo_userdef:163,sensor_thresh_algo_watermark:163,sensor_thresh_algo_window:163,sensor_timestamp:163,sensor_trigger_cmp_func_t:163,sensor_trigger_init:168,sensor_trigger_notify_func_t:[163,168],sensor_type_acceleromet:[163,164,165,224,226],sensor_type_al:163,sensor_type_altitud:163,sensor_type_ambient_temperatur:163,sensor_type_color:163,sensor_type_eul:[163,165,224],sensor_type_grav:[163,165,224],sensor_type_gyroscop:[163,165,224],sensor_type_light:163,sensor_type_linear_accel:[163,165,224],sensor_type_magnetic_field:[163,165,224],sensor_type_non:163,sensor_type_pressur:163,sensor_type_proxim:163,sensor_type_relative_humid:163,sensor_type_rotation_vector:[163,165,224],sensor_type_t:[163,165,167,168,226],sensor_type_temperatur:[163,165],sensor_type_trait:[163,168],sensor_type_user_defined_1:163,sensor_type_user_defined_2:163,sensor_type_user_defined_3:163,sensor_type_user_defined_4:163,sensor_type_user_defined_5:163,sensor_type_user_defined_6:163,sensor_type_weight:163,sensor_unlock:163,sensor_unregister_listen:[167,226],sensor_unregister_notifi:169,sensor_unset_notification_t:163,sensor_value_type_float:[163,165],sensor_value_type_float_triplet:[163,165],sensor_value_type_int32:163,sensor_value_type_int32_triplet:163,sensor_value_type_opaqu:163,sensor_value_type_temperatur:165,sensorapi:163,sensornam:[163,164,165,166,221,224,226],sensorname_cli:165,sensorname_ofb:221,sensors_o:222,sensors_test:[74,220,221,223,224,225],sensors_test_config_bno055:224,sent:[33,41,117,149,152,155,172,188,190,204],sentenc:75,sep:[4,95],separ:[14,18,28,33,38,47,48,63,64,79,115,121,159,162,173,174,188,191,192,193,196,197,199,200,204],seper:233,septemb:223,sequenc:[27,105,115,117,141,223],sequenti:141,seri:[115,139,153,190,236],serial:[15,17,21,79,100,115,116,117,119,120,121,127,144,149,152,174,196,200,201,203,204,205,218,220,221,222,230,231],serror_stat:174,serv:[31,68,106,127,166,173,220],server:[11,14,27,29,31,33,39,43,44,120,166,167,170,173,190,204,217,220,222,225,226],servic:[14,29,30,39,40,41,43,44,105,109,121,143,179,186,187,188,189,211,213,218,220],service_data_uuid128:[39,41],service_data_uuid16:41,service_data_uuid32:[39,41],service_uuid128:[29,30],sesnor:226,session:[11,51,52,60,68,70,71,72,74,106,193,196,197,199,200,233],set:[1,2,7,8,9,11,13,14,15,16,17,23,25,28,29,30,32,33,35,36,39,40,41,44,45,47,49,50,52,63,66,68,69,71,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,97,98,99,102,109,110,111,112,113,115,116,117,121,122,132,139,141,143,148,149,151,152,154,155,156,161,164,166,168,170,171,172,173,174,178,180,184,187,188,191,192,193,194,196,197,198,199,200,203,204,205,207,208,210,211,212,213,214,217,219,221,222,223,225,226,228,229,231,232,233],setting1:175,setting2:175,settl:37,setup:[10,70,72,73,84,93,95,96,165,173,183,184,194,195,201,203,217,218,219,221,223,226,228,229,230,231,232],sever:[3,14,33,35,39,43,74,106,107,109,113,115,162,173,176,179,190,191,192,198,199,212],sgd:163,sgrd:163,sha256:115,sha:115,shadow:116,shall:[14,28,36,39,41,163],share:[4,25,34,101,102,104,105,111,173,205,212],shdr:174,sheet:165,shell:[1,7,8,14,42,43,68,72,93,109,116,117,124,125,162,166,168,174,175,176,180,194,201,204,207,208,218,220,221,222,223,228,233],shell_cmd:[172,218],shell_cmd_argc_max:[172,204],shell_cmd_func_t:172,shell_cmd_h:172,shell_cmd_help:[172,208],shell_cmd_regist:[172,218],shell_command:172,shell_compat:172,shell_complet:172,shell_evq_set:172,shell_init:[172,176],shell_max_compat_command:172,shell_max_input_len:125,shell_max_modul:172,shell_modul:172,shell_nam:172,shell_newtmgr:[172,201],shell_nlip_input_func_t:172,shell_nlip_input_regist:172,shell_nlip_output:172,shell_os_modul:[172,208],shell_param:172,shell_prompt_function_t:172,shell_prompt_modul:[172,195],shell_regist:172,shell_register_app_cmd_handl:172,shell_register_default_modul:172,shell_register_prompt_handl:172,shell_stack:125,shell_task:[172,175,176,195,201,208,218,221,226],shell_task_init:125,shell_task_prio:125,shell_task_prior:175,shell_task_stack_s:125,shield:105,shift:[11,43],ship:[6,21],shortcut:11,shorten:186,shorter:181,shorthand:[102,212],shot:204,should:[4,8,11,13,14,16,19,21,28,29,30,32,38,42,45,68,70,72,74,94,97,98,99,100,102,103,106,109,110,111,112,113,115,116,117,121,124,125,127,133,137,139,141,143,144,149,152,154,155,156,159,161,162,165,168,172,174,176,180,181,184,186,187,188,189,191,192,193,195,196,197,198,199,200,204,207,210,211,212,215,218,219,220,221,224,226,229,232,233,234],shouldn:17,show:[1,4,5,6,7,8,10,11,14,20,39,40,44,49,52,53,56,63,66,70,71,72,73,74,75,85,93,94,95,96,102,112,116,117,155,162,173,175,176,178,179,180,184,190,193,194,195,196,197,198,199,200,201,203,204,205,207,211,217,218,219,220,221,222,223,224,225,226,228,229,230,232,233,234,236],show_bug:25,shown:[6,7,11,56,68,74,102,105,115,122,154,165,174,180,188,193,196,204,210,212,214,219,221,224,226,230],si_addr:[163,164],si_cs_pin:163,si_num:[163,164],si_typ:[163,164],sibl:[10,213],sid:39,side:[11,24,42,43,116,218],sierra:[71,94],sig:[33,41,44],sigh:223,sign:[6,13,50,59,60,70,71,72,93,163,181,184,194],signal:[33,38,41,43,112,152,189],signatuar:11,signatur:[39,59,115],signifi:149,signific:[32,102,152,173,204],significantli:[23,44],signigic:102,silenc:117,silent:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,117,176],silicon:45,sim1:[229,230,232],sim:[6,7,74,107,218,229,231,232],sim_slinki:[175,230],similar:[1,8,11,21,105,106,162,164,184,204,210,219],similarli:[102,162],simpl:[11,33,43,74,98,102,105,106,111,112,114,116,119,121,138,143,174,180,185,186,191,192,195,207,219,226,228],simplehttpserv:[26,46,76],simpler:[106,190],simplest:[102,229,232],simpli:[6,13,18,100,102,103,111,112,117,143,173,180,182,187,193,207,217,218],simplic:[115,191,192],simplifi:[15,33,100,103,149],simul:[2,3,5,6,63,207,226,230],simultaen:102,simultan:[14,39,41,42],simultaneosli:139,sinc:[3,14,15,17,33,36,45,74,102,105,106,111,113,115,116,152,172,174,181,183,184,191,192,193,195,203,207,211,212,217,218,219,220],singl:[2,3,7,14,17,34,52,60,68,70,71,72,100,102,111,112,115,116,121,139,141,162,163,165,174,176,185,186,190,191,210,212],sissu:153,sit:[27,31,121,143,173],site:[72,95,185,196,200],situat:[105,173],six:[34,35],size:[9,21,28,29,30,33,39,41,52,68,70,71,72,74,86,90,100,102,103,106,112,113,114,115,116,117,119,122,141,146,152,162,173,174,175,176,179,193,197,199,201,204,207,209,222],size_t:[139,140,161],sizeof:[102,116,123,139,164,186,188,189,192,207,217,218,219],skelet:184,skeleton:[7,57,63,180,183,184,193,196,197,198,199,200,204,211,219,229,230,232],skip:[6,10,60,72,115,127,129,162,193,196,197,198,199,200,211,229,232],sl_arg:[167,226],sl_func:[167,226],sl_next:167,sl_sensor_typ:[167,226],slad:163,slave:[17,39,41,149,152],slave_interval_rang:41,sld:163,sleep:[9,98,100,102,104,111,112,113,144,195,205,207],slightli:[109,173],slink:[229,230,232],slinki:[7,58,74,117,139,173,175,176],slinky_o:[7,74],slinky_sim:175,slinky_task_prior:175,slist_entri:[139,140,163,167],slist_head:[104,163,178],slos854c:223,slot0:115,slot1:115,slot:[7,15,19,33,74,84,157,173,184,187,193,195,196,197,198,199,200,203,204,208,211,218,221,226,229,232,233,234],slower:[3,109,110],small:[33,36,102,113,117,121,139,173,174,190,197,210,219],smaller:[21,102,119,156,173,193],smallest:102,smart:[43,44,68,74,218,225],smarter:213,smd:163,smp:[33,43],snapshot:[56,196,200,213],snip:[1,49,56,68,74,183,184,201,219],snippet:188,snm_name:174,snm_off:174,soc:[19,109],socket:2,soft:[77,93,94,95,153],softwar:[1,3,4,6,43,51,55,60,63,109,110,115,143,179,193,196,198,199,203,211,212,218,219,221,226,229,233],solder:218,solut:[68,143,191,192],solv:[115,173],some:[1,8,11,14,15,17,18,25,42,77,89,102,103,105,106,109,111,112,114,115,117,123,127,138,139,141,144,152,155,162,168,175,178,180,185,186,187,188,189,191,192,195,196,197,200,201,204,207,208,210,211,212,218,223,226,229,232,233,234,236],somebodi:[116,218],somehow:74,someon:[13,17,98,219],someth:[14,19,20,21,24,25,33,180,183,184,211,214,217,233],sometim:[116,193,211,233],somewhat:[105,115],somewher:[14,115,173,219],soon:[27,43,213],sooner:156,sophist:207,sort:187,sought:162,sound:15,sourc:[1,4,9,26,36,43,63,69,71,73,74,92,94,96,102,109,115,116,121,165,166,176,178,185,193,196,197,199,205,211,212,213,219,226,228,232],space:[11,14,43,47,48,63,64,79,102,109,127,128,141,149,157,160,172,173,174,183,191,194,211,228,231,236],spare:19,spd:163,spec:[14,28,33],specfi:221,special:[8,102,109,122,173,190,191,192,210,211,212,213,221],specif:[10,18,19,21,27,33,34,35,41,43,44,70,71,72,74,75,98,100,102,103,105,106,108,109,113,115,119,121,137,139,141,143,148,149,151,152,153,154,155,157,162,163,165,168,173,176,178,184,186,188,189,191,192,193,199,201,204,207,210,211,212,218,219,229,232],specifi:[1,4,6,7,10,11,16,20,21,24,27,28,29,30,33,39,42,47,48,50,52,54,56,58,59,63,64,66,68,70,71,72,74,78,79,80,81,82,83,84,85,86,87,88,89,90,97,99,100,102,103,106,109,110,112,113,114,117,119,120,137,144,146,148,149,157,162,163,164,165,166,167,168,170,171,172,175,178,183,186,188,189,190,191,192,193,198,199,201,203,208,211,212,213,214,219,221,225,226,229,232,233],spectrum:43,speed:[9,43,155,193,196,197,198,204,219,233],spew:211,sphinx:[26,46,76],spi:[8,19,43,109,121,122,123,148],spi_cfg:[122,123],spi_miso_pin:[122,123],spi_mosi_pin:[122,123],spi_num:[122,123,152],spi_sck_pin:[122,123],spi_ss_pin:[122,123],spi_typ:152,spitest:[7,74],split:[7,15,84,106,153,175,203,218,219,229,230,232],split_app:7,split_app_init:176,split_config:[229,230],split_elf_nam:74,split_file_test:210,split_load:176,splitti:[7,74,173,175],spot:106,spread:43,spuriou:210,sqd:163,squar:149,sram:199,src:[6,7,10,14,24,25,58,63,68,74,83,93,95,102,106,108,121,142,143,146,150,151,153,159,176,178,181,183,193,196,197,198,199,200,204,207,210,211,217,218,219,221,224,226,229,230,232],src_off:102,srhd:163,ss_op_wr:188,ss_pin:[122,123],ssec:39,st_cputim:226,st_ostv:226,stabil:[212,213],stabl:[1,7,70,71,93,94,212,213],stack:[1,9,14,15,22,27,28,29,30,31,36,38,39,42,43,68,90,98,100,102,105,112,146,173,176,182,183,184,185,186,188,189,190,204,218],stack_bottom:112,stack_siz:[110,112],staff:[93,94],stage:[110,115,121,163,164,173,176],stai:23,stailq_entri:[162,174],stale:[2,193],stand:[14,21,102],standalon:[21,173],standard:[7,43,44,113,119,120,121,122,138,139,143,186,191,192,204,217,218],standard_accel_grav:163,standbi:[43,157,223],start:[2,4,8,9,11,13,14,19,21,27,28,38,39,40,42,51,60,72,75,84,95,99,101,102,103,104,105,106,108,112,115,121,124,127,128,130,133,139,146,149,150,152,153,154,155,156,162,168,173,176,180,182,183,186,193,194,195,196,197,199,200,203,204,207,210,212,217,218,219,220,221,222,224,226,230,234,236],start_handl:[29,30],starter:181,startup:[29,30,32,38,42,43,115,173,176,191,192,207,223],startup_stm32f40x:[197,199],stash:62,stat:[1,7,25,77,91,93,94,95,118,119,176,183,201,204,208,218,219,226,233],state:[6,15,17,18,28,29,30,38,43,44,65,68,98,100,106,110,112,113,120,127,143,144,148,161,193,199,203,205,207,213,215],statement:[10,17,176,201],statist:[1,61,77,86,89,90,93,94,95,177,204,229,230,232,233],stats_clear:174,stats_cli:[1,208],stats_get:174,stats_group_find:174,stats_group_walk:174,stats_group_walk_func_t:174,stats_hdr:[165,174],stats_inc:174,stats_incn:174,stats_init:[165,174],stats_init_and_reg:174,stats_module_init:176,stats_my_stat_sect:174,stats_nam:[1,50,51,89,165,174],stats_name_end:[165,174],stats_name_init_parm:[165,174],stats_name_map:174,stats_name_map_nam:174,stats_name_start:[165,174],stats_newtmgr:[1,175,176,201],stats_nmgr_register_group:174,stats_regist:[165,174],stats_reset:174,stats_sect_decl:[162,165,174],stats_sect_end:[165,174],stats_sect_entri:[165,174],stats_sect_entry16:174,stats_sect_entry32:174,stats_sect_entry64:174,stats_sect_start:[165,174],stats_sect_var:174,stats_shell_regist:174,stats_size_16:174,stats_size_32:[165,174],stats_size_64:174,stats_size_init_parm:[165,174],stats_walk:174,stats_walk_func_t:174,statu:[10,13,29,30,33,123,139,163,173,187,189,191,193,203,204,218,223,229,230,232],std:163,stderr:159,step:[2,4,6,7,11,60,68,70,72,93,95,105,106,107,115,117,149,164,173,174,183,184,191,192,193,196,197,198,199,200,204,211,212,219,229,230,232],sterli:213,sterlinghugh:213,stic:[188,190],still:[5,14,72,79,99,109,110,117,168,187,219,228,233],stitch:1,stksz:[90,229,232],stkuse:[90,229,232],stlink:197,stm32:[148,197,199,232],stm32_boot:232,stm32_slinki:232,stm32f2x:197,stm32f303vc:[180,181],stm32f3discoveri:180,stm32f4:[121,122,123,194],stm32f4_adc_dev_init:121,stm32f4_hal_spi_cfg:[122,123],stm32f4disc_blinki:197,stm32f4disc_boot:197,stm32f4discoveri:[66,197],stm32f4discovery_debug:197,stm32f4x:197,stm32f4xx:148,stm32f4xxi:148,stm32l072czy6tr_boot:25,stm32serial:232,stm32x:197,stm34f4xx:148,stm:232,stmf303:180,stmf3:180,stmf3_blinki:[180,181],stmf3_boot:[180,181],stop:[2,28,39,97,99,127,137,149,150,154,155,169,186,211,221],stopbit:155,storag:[19,28,33,116,127,162,184,212],store:[1,10,14,19,25,28,34,39,44,47,48,50,63,68,70,72,74,93,98,100,102,113,116,117,127,134,152,157,160,161,162,174,183,186,188,189,212,218,219,220,223,226,228],stori:102,str:[116,117,155,161,178],straight:[186,218],straightforward:[183,219],strategi:207,strcmp:[116,218],stream:[43,161,162],strength:41,strict:[188,193],strictli:[141,219],string:[1,21,39,41,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,114,116,117,120,126,139,153,157,159,160,161,162,168,172,174,176,191,192,210,212,213,217,218,219,230],strip:[59,102],strlen:[186,188],strongli:139,struct:[14,25,27,28,29,30,97,98,99,100,102,103,104,105,106,110,111,112,113,115,116,117,121,122,123,127,128,129,130,131,132,133,134,135,136,137,140,141,142,144,147,149,152,154,157,159,160,161,162,163,164,165,167,168,169,172,174,178,186,188,189,190,191,192,195,205,207,210,217,218,219,224,226],structur:[7,10,11,28,31,40,68,74,91,97,100,102,103,104,105,106,111,112,115,116,117,121,123,133,149,154,159,160,162,164,165,166,174,188,194,210,211,218,219,224,228,231,236],struggl:16,strutur:102,stt:[163,168],stub:[25,74,114,162,191,192,195,205,210,218,219],stuctur:163,studio:[5,12],stuff:212,style:117,sub:[40,56,58,63,83,84,85,88,89,121,192,215],subcommand:[58,63,75,77,79,83,84,85,88,89],subcompon:43,subdirectori:[2,178,210],subfold:196,submit:10,submodul:18,subrang:33,subscrib:[14,29,30,40,187,189,219],subscript:28,subsequ:[14,28,34,43,115,173,186,189,210],subset:[34,163,165,168,221],substitut:[6,183,184],subsystem:[42,72,100,116,117,122,123,172],subtract:[111,113],subtre:116,succ:28,succe:[28,210],succeed:223,succesfulli:[181,183,184,187,193,195,196,197,198,199,200,203,204,211,218,221,223,226,229,232,233,234],success:[3,14,27,28,29,30,33,68,97,99,102,103,105,110,112,113,116,123,128,129,130,131,132,133,135,136,137,140,144,148,149,152,154,155,156,159,162,163,167,168,169,172,178,180,181,188,190,199,204,210],successfuli:[106,210,226],successfulli:[7,25,33,68,103,106,110,162,163,173,180,181,183,184,187,189,191,192,193,196,197,198,199,200,201,203,204,211,218,219,220,221,222,223,226,229,230,232],sucess:168,sudo:[4,6,7,10,70,71,73,93,96,184],suffici:[14,102,103],suffix:210,suggest:[3,6,14,72,168,179,208,236],suit:[6,68,178,183,209],suitabl:[14,33,106,141],suite_nam:178,summar:[106,173],summari:[6,10,32,49,172,192],supervis:28,supervision_timeout:[28,42,187],supplement:[41,186],supplementari:106,suppli:[28,29,30,153,162,210],supplier:223,support:[1,3,4,6,7,11,15,17,19,21,24,27,29,30,32,33,34,41,42,43,45,66,71,79,94,99,105,106,108,114,115,117,119,120,121,122,123,138,144,148,152,161,162,163,164,165,168,172,173,174,176,183,184,185,186,190,191,193,194,196,203,205,211,212,213,218,222,223,228,230,231,236],suppos:[14,56,104,111,148,174],suppress:230,suppresstasknam:11,sure:[2,7,8,14,18,19,25,29,30,70,102,160,183,184,186,188,193,195,204,210,212,217,219],suspend:221,svc:[29,30,190],svc_uuid:[29,30],sw_rev:221,swap:[2,98,106,141,142,173,193,223,233],swclk:193,swd:[193,196,197,198,199,200,204,211,219,226],swdio:193,swim:197,swo:[196,211,226],symbol:[4,7,11,14,74,173,193,197,226,233,234],symlink:[73,96],sync:[27,33,37,52,70,71,72],sync_cb:[38,191,192],synchron:[27,33,52,62,70,71,72,109,111,121,152],syntax:[14,18,176,204,208,221],synthes:36,sys:[1,7,24,25,68,70,74,116,117,118,142,162,172,174,175,176,183,195,201,205,210,211,218,219,221,226,234],sys_:102,sys_config:173,sys_config_test:7,sys_console_ful:173,sys_einv:[165,226],sys_enodev:165,sys_flash_map:[197,199],sys_log:173,sys_mfg:[7,193,196,197,198,199,221,229,232],sys_shel:173,sys_stat:173,sys_sysinit:[7,193,196,197,198,199,200,221,229,232],syscfg:[14,16,24,35,36,45,50,51,63,74,106,110,116,117,139,141,164,165,166,168,170,171,172,174,175,184,193,195,196,201,203,204,208,210,211,218,219,221,222,223,225,226,233,234],sysclock:23,sysconfig:[116,201],sysflash:[193,199],sysinit:[7,37,38,105,112,117,158,164,176,191,192,193,195,204,205,210,211,218,219,226],sysinit_assert_act:176,sysinit_panic_assert:[164,165,176],sysresetreq:193,system:[1,3,6,8,9,14,18,19,37,52,63,70,71,72,74,75,99,102,103,106,109,110,112,113,114,115,116,117,118,127,141,144,148,152,155,157,158,162,168,173,174,179,183,184,193,195,196,199,204,207,208,211,212,213,218,226,234],system_l:148,system_stm32f4xx:[197,199],systemview:236,sysview:[234,235],sysview_mynewt:234,sytem:150,syuu:72,t_arg:112,t_arrai:161,t_boolean:161,t_charact:161,t_check:161,t_ctx_sw_cnt:112,t_flag:112,t_func:[112,207],t_ignor:161,t_integ:161,t_name:112,t_next_wakeup:112,t_obj:112,t_object:161,t_prio:[98,112],t_real:161,t_run_tim:112,t_sanity_check:112,t_stackptr:112,t_stacksiz:112,t_stacktop:112,t_string:161,t_structobject:161,t_taskid:112,t_uinteg:161,tab:[42,49],tabl:[14,32,33,106,115,118,138,140,176,188,190,204,221],tag:213,tail:102,tailq_entri:154,take:[6,7,14,17,19,29,30,35,58,63,68,75,102,105,116,128,157,160,173,174,186,188,189,190,191,192,207,210,217,219],taken:[7,16,28,74,100,105,188,212,213,217],talk:[21,184,186,223,230],tap:[4,69,92],tar:[4,70,71,72,73,94,95,96],tarbal:4,target:[3,4,5,7,11,14,20,24,25,37,41,45,47,48,49,50,51,52,55,56,59,60,61,66,68,70,71,72,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,109,116,157,163,173,174,175,176,178,182,191,192,194,203,207,208,210,218,220,222,225,231],target_nam:47,targetin:[191,192],task1:[105,110,229,232],task1_evq:110,task1_handl:105,task1_init:105,task1_prio:105,task1_sanity_checkin_itvl:110,task1_sem:105,task1_stack:105,task1_stack_s:105,task2:[105,229,232],task2_handl:105,task2_init:105,task2_prio:105,task2_sem:105,task2_stack:105,task2_stack_s:105,task:[9,10,14,27,28,68,77,90,93,94,95,97,98,100,102,103,104,105,106,108,109,111,113,117,121,124,126,168,172,176,178,188,195,201,204,206,217,218,220,224,226,229,230,232,236],task_l:205,task_prior:[175,176],tasknam:11,taskstat:[77,91,93,94,95,118,120,201,229,232],taught:223,tbd:190,tc_config:178,tc_current_config:178,tci_cur_tv:113,tci_cur_tz:113,tci_newly_sync:113,tci_prev_tv:113,tci_prev_tz:113,tck:193,tcp:[193,197],tdi:193,tdo:193,teach:207,team:[4,143],technic:[13,180,223],technolog:[43,122],tee:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75],teh:163,telee02:204,telee02_boot:204,telemetri:191,telenor:204,teli:[191,192],tell:[15,17,19,21,42,68,127,155,157,161,163,173,174,176,180,186,188,191,192,199,213,217],telnet:[211,218,226,233],tem:221,temperatur:[139,163,221],templat:[7,58,183,210,217,218,226],temporari:[33,110,115],temporarili:[104,110],ten:152,term:[3,28,115,121,139,148,151,212],termin:[2,4,7,8,11,13,14,28,29,30,33,39,43,72,95,116,117,139,141,172,184,186,189,190,193,195,196,197,198,199,200,204,211,218,224,226,233],terribl:[7,183],test:[4,6,11,14,20,28,52,63,70,71,72,77,80,84,88,93,94,95,115,117,118,143,165,166,173,176,178,184,190,191,192,193,195,196,198,201,209,212,217,219,230,233,236],test_assert:[178,210],test_assert_fat:[178,210],test_assert_ful:178,test_cas:[178,210],test_case_decl:178,test_case_defn:178,test_case_task:178,test_datetime_parse_simpl:210,test_datetime_suit:210,test_json:210,test_json_util:210,test_pass:178,test_project:57,test_suit:[178,210],test_suite_decl:178,test_suite_regist:178,test_task_handl:178,test_task_nam:178,testbench:[7,74],testcas:[7,210],testnam:88,testutil:[7,142,210],text:[52,61,82,102,117,139,172,173,197,229,232],textual:1,tgt:116,tgz:[4,72,95],than:[3,7,14,17,21,24,27,28,33,41,85,102,104,105,106,109,111,112,113,114,115,119,139,152,156,162,168,172,173,175,184,190,191,192,196,207,219,226,233],thank:42,thee:109,thei:[1,6,14,15,18,33,41,42,74,97,100,102,103,105,106,111,112,115,116,121,154,173,174,176,178,179,181,186,187,188,190,191,192,204,208,210,212,213,215,217,221],their_key_dist:39,them:[2,9,14,25,29,30,68,102,106,111,112,127,157,173,174,176,184,186,191,192,193,207,210,211,212,219,220,223,236],themselv:[102,105,190],theori:[14,68,176],therebi:[111,127],therefor:[33,103,115,135,139,207,214],thi:[1,2,3,4,5,6,7,8,9,10,11,13,14,17,19,20,21,25,26,27,28,29,30,31,33,34,35,36,37,38,39,41,42,43,44,45,46,47,54,56,65,66,68,70,71,72,73,74,76,77,79,84,85,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,121,122,123,124,125,127,128,129,130,133,139,140,141,142,143,144,145,146,147,148,149,150,152,154,155,156,157,158,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,208,210,211,212,213,214,217,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,236],thing:[1,14,16,17,21,24,36,38,43,68,74,103,106,109,110,121,149,163,173,191,192,210,213,217,218,219,224,226],thingi:[164,233,234],thingy_boot:226,thingy_debug:[226,233,234],thingy_my_sensor:226,think:[13,19,115,219],third:[6,32,113,184,186,193,211,219],thoough:178,thorough:213,those:[1,14,24,44,45,52,68,70,71,72,74,106,109,115,124,128,173,179,213,217,218,219,223],though:[17,102,115,149,168,173],thought:[19,219],thread:[9,113,183,193,197,199],three:[2,10,24,28,32,72,74,102,115,117,162,173,174,176,183,185,186,192,193,199,204,205,207],threshold:[163,168],through:[8,23,28,35,43,74,75,102,112,115,120,127,133,138,139,141,143,152,161,168,185,187,189,192,193,195,199,201,210,211,217,219,222,223,225,228],throughout:[1,106,210],throughput:[14,43],thrown:6,thu:[14,102,106,111,115,121,141,148,149,152,207],tick:[17,23,97,99,104,109,110,111,113,117,149,154,172,195,196,207,226],ticker:97,ticket:13,tickl:[110,156],tid:[90,229,232],tie:173,tied:[14,139],ties:[102,183],time:[1,7,9,10,11,14,19,21,29,30,32,33,34,37,39,43,44,47,56,70,71,72,73,74,90,95,96,97,100,102,105,106,109,110,111,112,115,117,123,127,138,143,156,162,163,169,172,173,174,179,181,183,186,188,190,191,192,196,198,204,205,207,210,211,217,218,219,221,223,226,228,233],time_datetim:[173,226],time_datetime_test:210,time_in_flight:102,timelin:14,timeout:[17,28,33,39,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,100,104,111,149,163,203,218],timer:[17,23,36,97,99,100,106,110,143,151,156,168,226],timer_0:36,timer_4:204,timer_5:36,timer_ev_cb:[195,226],timer_interrupt_task:205,timer_num:154,timestamp:[85,163],timev:113,timezon:[113,210],timo:100,timo_func:97,timtest:[7,74],ting:[191,192],tini:[199,232],tinycbor:[7,220],tinycrypt:[7,24],tinyprintf:114,tip:110,titl:[8,231],tlm:191,tlv:[39,115],tmp:[70,72,93,95,173],tmpstr:226,tmr:154,todo:[74,121,191,192],togeth:[1,56,68,74,102,124,173,187,199,219],togetherth:24,toggl:[7,112,148,195,205,207],token:[88,105,111,172,214],told:157,too:[28,33,102,105,113,121,144,175],took:197,tool:[1,2,3,5,6,7,9,11,12,14,15,18,21,52,67,70,71,74,75,76,79,91,92,93,94,105,106,107,109,120,121,174,175,176,178,180,182,183,184,193,194,199,201,203,204,205,208,210,211,212,213,214,219,220,226,228,230,231,233,234,236],toolbox:2,toolchain:[2,3,5,7,11,25,26,46,72,76,184,194,201,203,211,228,231,236],toolkit:3,tools_1:[70,71,94],top:[1,11,13,18,27,48,74,102,112,121,141,149,162,175,184,191,192,210,219],topic:1,total:[9,29,30,68,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,102,112,114,115,162,196,198,204,219],tour:185,track:[32,34,43,113,115],tradeoff:173,trail:[102,115],trailer:115,trait:[163,168],transact:[33,149,152],transfer:[17,34,152,218],transit:115,translat:[148,191],transmiss:[33,39,152,155,204],transmit:[14,41,44,117,149,152,168,204],transmitt:155,transport:[33,39,43,93,117,120,176,183,184,193,197,203,218,219,220,222,225,228],travers:[102,116,139],traverse_dir:139,treat:[25,127],tree:[1,6,7,19,63,68,74,106,139,183],tri:[3,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,116,123,175,204],trial:106,tricki:112,trig:148,trigger:[6,13,23,100,148,163,168,223],trim:102,trip:110,triplet:163,trng_test:74,troubleshoot:[18,174,175],truncate_test:210,trust:[34,39,218],ts_case_fail_arg:178,ts_case_fail_cb:178,ts_case_pass_arg:178,ts_case_pass_cb:178,ts_case_post_arg:178,ts_case_post_test_cb:178,ts_case_pre_arg:178,ts_case_pre_test_cb:178,ts_config:178,ts_current_config:178,ts_print_result:178,ts_restart_arg:178,ts_restart_cb:178,ts_suit:178,ts_suite_complete_arg:178,ts_suite_complete_cb:178,ts_suite_init_arg:178,ts_suite_init_cb:178,ts_suite_nam:178,ts_system_assert:178,ts_testsuite_list:178,tt_chr_f:190,tt_svc_type_p:190,ttl:[184,232],tty:[8,195,211,221,229,232],ttys002:79,ttys003:79,ttys005:230,ttys012:[229,232],ttys10:8,ttys2:[8,195,211,221,229,232],ttys5:8,ttyusb0:[21,79,184],ttyusb2:[8,211,229,232],ttyusb:[8,195,211,221,229,232],tu_any_fail:[178,210],tu_case_complet:178,tu_case_fail:178,tu_case_fail_assert:178,tu_case_idx:178,tu_case_init:178,tu_case_jb:178,tu_case_nam:178,tu_case_pass:178,tu_case_pass_manu:178,tu_case_post_test:178,tu_case_pre_test:178,tu_case_report:178,tu_case_report_fn_t:178,tu_case_set_init_cb:178,tu_case_set_post_cb:178,tu_case_set_pre_cb:178,tu_case_write_pass_auto:178,tu_init_test_fn_t:178,tu_post_test_fn_t:178,tu_pre_test_fn_t:178,tu_restart:178,tu_start_o:178,tu_suite_complet:178,tu_suite_fail:178,tu_suite_init:178,tu_suite_nam:178,tu_suite_post_test:178,tu_suite_pre_test:178,tu_suite_regist:178,tu_suite_restart_fn_t:178,tu_suite_set_complete_cb:178,tu_suite_set_fail_cb:178,tu_suite_set_init_cb:178,tu_suite_set_pass_cb:178,tu_suite_set_post_test_cb:178,tu_suite_set_pre_test_cb:178,tu_testsuite_fn_t:178,tupl:113,turn:[17,36,121,143,144,148,173,183,184,194,195,198,201,212,213,221,229],tutiori:[86,89],tutori:[2,3,6,7,8,11,18,35,43,72,90,164,165,170,171,172,178,180,182,183,184,185,186,187,188,189,190,191,192,193,195,196,197,198,199,200,201,203,204,205,207,210,211,218,219,220,221,222,223,224,225,226,229,230,232],tv_sec:[113,210,226],tv_usec:[113,210,226],tvp:113,tweak:138,twi:17,two:[2,3,11,14,21,31,32,34,35,39,43,44,56,58,63,68,74,79,102,103,104,105,106,108,112,113,115,117,119,141,149,162,163,172,173,174,175,176,180,183,184,186,188,191,192,193,195,196,197,198,199,200,201,204,205,207,210,211,212,213,214,215,219,220,221,225,226,229,232],tx_data:218,tx_done:155,tx_func:155,tx_len:218,tx_off:218,tx_phy:28,tx_phys_mask:[28,39],tx_power_level:[39,41],tx_time_on_air:204,txbuf:152,txd:204,txom:[29,30],txpower:204,txrx:152,txrx_cb:152,txt:[25,83,139,234],type:[1,7,8,11,13,14,19,21,25,28,29,30,32,33,35,39,41,42,44,52,56,58,59,66,68,70,71,72,74,79,97,102,103,106,109,112,115,116,117,120,148,152,155,161,162,164,167,170,172,175,176,180,183,184,186,187,188,189,190,191,193,196,197,198,199,203,204,205,207,210,211,212,213,214,217,218,219,224,225,226,229,230,232,233,234],typedef:[28,29,30,38,100,103,110,112,113,116,117,127,137,148,152,154,155,161,162,163,168,172,174,178],typic:[3,9,27,38,43,44,68,74,102,105,106,107,110,115,117,121,141,143,145,148,149,152,162,163,173,174,176,178,186,191,192,210],tz_dsttime:[113,210],tz_minuteswest:[113,210],u8_len:123,uart0:[117,230],uart:[7,8,14,43,68,109,117,121,150,183,184,196,197,198,199,200,201,204,218,226,233],uart_bitbang:[150,196],uart_flow_control_non:117,uart_hal:[7,197,198,199],uart_rx_char:155,uartno:218,ubuntu:[4,6,7,70,93],uci:35,udev:197,udiv:28,udp:79,uext:232,uicr:35,uid:191,uint16:[39,40],uint16_max:39,uint16_t:[14,28,29,30,33,102,103,104,110,111,112,115,122,127,128,149,152,161,162,163,174,188,217,218,219],uint32:[39,84],uint32_max:39,uint32_t:[99,102,103,112,113,115,122,127,135,139,140,141,144,146,149,151,152,154,156,162,163,165,168,174],uint64:39,uint64_t:[28,161],uint8:39,uint8_max:39,uint8_t:[28,29,30,35,45,100,102,103,104,106,110,112,115,117,121,122,127,135,139,140,141,144,146,147,149,152,155,161,162,163,165,174,186,188,191,192,218,219],uinteg:161,ultim:188,umbrella:173,unabl:[2,24,193,196,197,200],unaccept:33,unadorn:33,unam:2,unc_t:172,unchang:106,uncoded_param:28,unconfigur:162,unconfirm:204,und:[39,42],undefin:[95,144,176],under:[4,7,10,11,13,15,28,33,38,47,68,74,84,114,116,121,172,190,193,197,198,200,218,219],underli:[109,121,127,139,142,143,152,163],understand:[7,19,113,163,173,179,180,203,204,212,219,223],underwai:115,undesir:105,undirect:[28,39,186],unexpect:[28,29,30,33,139],unexpectedli:[33,210],unfortun:14,unicast:44,unicod:138,unidirect:39,unifi:121,uniform:[41,72],uniformli:75,uninstal:7,unint32:84,uninterpret:176,union:[28,29,30,161,163,188],uniqu:[9,32,45,106,144,162,174,175,176,191,204],unit:[1,7,14,28,33,39,52,64,70,71,72,97,112,115,176,210,236],unittest:[7,58,68,74,176,183,210,218],univers:[19,155],unix:[2,72,139,180],unknown:[33,149,175],unlabel:218,unless:[28,39,112,115,141,149,157,176,218,219],unlicens:43,unlik:[33,103,210],unlink:[71,73,94,96],unlink_test:210,unlock:[163,168],unmet:106,unpack:[70,72],unpair:28,unplug:200,unprovis:44,unread:162,unrecogn:25,unregist:[28,103,113,167],unresolv:[143,210],unrespons:33,unset:[63,115,163],unsign:[28,112,161,174,200,226],unspecifi:[33,55],unstabl:[70,71,93,94],unsuccess:149,unsupport:[33,190],unsync:38,untar:4,until:[14,33,38,74,99,100,102,105,111,113,117,127,149,152,155,163,186,191,192,204,212],unuesd:189,unus:[84,127,217,219],unwritten:[115,146],updat:[2,4,14,18,28,29,30,33,39,42,49,50,62,65,70,71,72,73,93,94,96,102,115,129,162,176,187,189,195,196,208,210,217,219,220,226],upgrad:[2,14,18,52,69,72,92,106,115,117,180,184,193,201,202,211,219,233,236],uplink:204,uplink_cntr:204,uplink_freq:204,upload:[14,15,21,25,56,83,84,139,157,173,196],upon:[1,3,13,38,68,102,115,174,189],upper:[35,155,176],uppercas:166,upstream:119,uri:[39,41,120],url:[39,191,210,212],url_bodi:191,url_body_len:191,url_schem:191,url_suffix:191,usabl:[1,103,106,183,191],usag:[1,9,70,71,72,75,93,94,95,102,112,119,121,122,139,141,149,162,163,172,174,176,204,207,218,230],usart6_rx:232,usart6_tx:232,usb:[2,3,17,21,43,55,79,184,193,194,196,197,198,199,200,201,203,204,205,207,211,219,221,228,229,231,232],usbmodem1411:8,usbmodem14211:79,usbmodem14221:79,usbmodem401322:8,usbmodem:8,usbseri:[8,195,211,221,229,232],usbttlseri:184,use:[1,4,5,6,7,8,10,11,14,15,17,20,21,24,25,27,28,29,30,32,33,34,36,39,42,43,45,54,58,63,64,68,69,71,72,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,97,99,100,106,107,109,111,112,115,116,117,118,121,123,127,128,138,139,141,142,149,152,154,161,162,163,164,165,166,167,168,172,173,174,175,176,178,180,181,182,183,184,186,187,188,189,191,192,193,194,195,196,199,201,203,204,205,207,208,210,211,213,214,217,218,219,220,221,223,225,226,228,229,230,231,232,233,234],use_wl:39,use_wl_inita:39,usec:[99,221,226],used:[6,7,10,11,14,15,20,21,24,27,28,32,33,34,35,36,39,41,42,44,47,59,62,74,79,85,97,99,102,103,104,106,111,112,113,114,115,116,117,122,123,127,130,138,139,146,149,150,152,154,156,161,162,163,164,165,172,173,174,175,176,179,180,181,184,186,188,189,190,191,192,193,204,207,210,211,212,213,217,218,220,221],used_unread:162,useful:[3,14,27,29,30,33,105,165,183,212],user:[1,2,4,6,7,8,9,14,31,33,34,36,61,68,71,72,74,91,93,94,95,97,100,102,103,106,107,110,115,117,118,121,122,127,133,139,141,144,152,153,154,155,163,171,173,174,175,176,180,190,193,199,204,205,211,212,213,214,218,219,226,232],user_defined_head:102,user_hdr:102,user_hdr_len:102,user_id:[175,176],user_manu:180,user_pkthdr_len:102,usernam:[13,61,72,212],uses:[2,4,6,7,8,11,14,24,27,33,34,35,36,42,43,45,68,78,79,80,81,82,83,84,85,86,87,88,89,90,91,99,100,106,110,113,114,115,117,118,119,120,121,123,127,138,139,143,148,149,162,163,164,165,167,168,172,175,176,178,188,189,190,193,195,198,201,203,205,211,212,214,220,221,222,223,226,229,232],using:[1,2,4,6,7,8,10,11,13,14,15,17,19,21,24,25,26,32,33,36,38,39,40,41,43,44,46,49,50,56,57,70,71,72,73,74,76,79,89,93,94,95,96,97,99,100,102,104,105,107,108,109,110,111,112,113,114,115,116,121,127,130,132,137,138,139,143,148,149,151,152,154,156,161,165,166,168,172,173,174,176,178,180,183,184,190,192,193,194,195,196,197,198,199,200,201,203,204,205,207,210,211,218,219,220,222,223,226,230,231,233,234],usr:[4,6,10,49,70,71,72,73,93,94,95,96],usu:108,usual:[15,36,102,103,114,121,162],utc:[81,113,210],utctim:113,utf:41,util:[7,10,33,43,44,105,114,117,138,150,152,162,176,201,210,219],util_cbmem:226,util_cbmem_test:7,util_crc:[226,230,232],util_mem:[7,193,195,196,197,198,199,200,204,211,221,226,229,230,232],util_pars:[204,221,226],uuid128:[39,41,188,190,192],uuid128_is_complet:[39,41],uuid16:[39,40,41,188,217,219],uuid16_is_complet:[39,41],uuid32:[39,41],uuid32_is_complet:[39,41],uuid:[21,29,30,39,40,41,42,45,79,188,190,192,217,219,220],uvp:113,v10:226,v14:197,v25:197,val:[35,36,52,63,70,71,72,74,106,116,145,148,152,161,162,174,175,176,191,192,195,201,204,218,219,220],val_handl:[29,30],val_len_max:116,val_str:116,valid:[28,29,30,33,52,63,66,70,71,72,74,79,85,102,115,122,127,137,139,140,149,152,163,188,210,218,219],valu:[1,4,7,11,28,29,30,33,35,36,39,40,41,42,50,52,55,59,63,66,70,71,72,74,75,77,78,79,81,84,85,88,93,94,95,98,102,103,106,111,112,113,115,116,121,127,144,148,149,152,153,154,155,156,161,162,164,166,168,172,173,174,184,187,188,189,190,191,192,201,203,205,208,212,213,217,218,219,221,222,223,225,226,228,233],valuabl:212,value1:[63,176],value2:[63,176],value_len:[29,30],valuen:176,vanilla:138,vari:[9,102,109,115],variabl:[1,4,10,25,36,47,50,63,72,74,75,78,102,103,112,116,117,141,161,162,163,164,165,173,180,186,188,204,207,212,213,220,221,222,223,226],variant:[34,108,148],variat:11,varieti:[4,189],variou:[35,36,74,102,115,119,121,143,189,194,204],vdd:17,vector:221,vendor:212,ver:[1,7,68,159,160,180,184,193,211,212,213,214,218,219],ver_len:160,ver_str:160,verb:75,verbos:[1,7,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,193,211],veri:[1,9,44,68,102,112,114,115,164,182,190,195,196,212,219,220,233],verif:34,verifi:[34,70,72,93,95,115,143,165,173,196,197,198,200,203,204,207,210,218,219,220],versa:[8,173],version:[1,2,4,6,7,10,11,20,21,24,29,30,34,43,47,50,52,54,56,60,68,69,73,92,96,97,117,127,157,159,160,162,173,176,180,184,192,193,195,196,197,198,199,200,201,203,204,211,215,218,221,223,226,229,232,233,234],via:[8,14,21,27,28,33,38,55,68,102,103,115,117,121,139,141,142,143,149,162,168,172,173,174,176,184,185,186,188,196,198,203,204,212,218,221,222,223,225,228],vice:[8,173],vid:197,view:[1,7,11,13,42,63,75,79,166,171,172,173,174,176,212,217,223,225,234],vim:72,vin:221,violat:33,viper:10,virtual:[14,79,145,148],virtualbox:193,visibl:[2,29,30,40],visit:[14,15,19,52,70,71,72],visual:[5,12,234],visualstudio:11,vol:34,volatil:197,voltag:[121,123,143,153,197,219,223],volum:[41,138],vp_len:116,vscode:11,vtref:[196,198,204,219],vvp:113,wai:[2,3,9,14,17,18,24,25,42,43,44,72,74,97,100,105,112,113,117,139,148,149,150,162,173,175,212,213,214,218,219,223],wait:[15,24,97,98,99,100,102,104,105,111,112,123,144,149,152,163,176,199,204,205,207,217,218,219,228],waitin:104,wake:[24,98,102,105,111,112,144,168,207],wakeup:[112,168],walk:[102,112,127,133,137,162,219],walk_body_func:162,walk_func:162,wall:6,wallclock:[97,113],wanda:94,want:[1,3,10,14,15,18,21,24,25,27,31,63,70,71,72,73,74,93,96,97,98,102,103,104,105,110,111,112,115,116,117,127,137,139,148,162,163,164,167,168,174,179,181,183,185,186,188,190,191,192,193,194,196,197,198,199,201,204,208,210,212,218,219,222,223,233,236],warn:[1,6,19,25,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,175,188,196],warranti:[4,193,218,219,226,233,234],wasn:[23,29,30],watch:183,watchdog:[105,110,153],watchpoint:[193,197],watermark:162,waveform:223,wdog:80,wear:183,wear_level_test:210,wearabl:9,web:180,webfreak:11,weird:23,welcom:[8,18,114,121,182,211,221],well:[8,15,18,25,34,53,68,102,103,109,111,115,116,121,157,179,187,204,217,219],were:[41,86,98,102,115,143,162,173,213,218],werror:[6,25,63],wes:204,west:113,wfi:197,wget:[70,72,93,95],what:[7,8,14,15,17,18,19,20,21,23,24,29,30,33,54,68,109,111,122,127,141,164,165,173,176,186,189,190,191,192,207,210,213,217,218,219],whatev:[35,111,211,219],wheel:[8,180],when:[1,2,6,7,8,11,13,14,17,18,19,21,24,25,27,28,29,30,33,34,35,36,38,41,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,74,75,79,85,94,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,115,116,117,118,121,127,128,129,132,138,139,141,148,149,152,154,155,157,161,163,164,165,167,168,170,172,173,174,175,176,178,183,184,185,186,189,190,191,192,193,196,197,199,200,201,203,205,207,210,212,213,214,218,219,220,221,222,223,224,225,226,230,233],whenev:[28,38,43,103,113,121,161,167,188,190,226],where:[8,9,10,13,16,21,34,41,44,48,50,63,68,72,73,74,96,102,103,106,108,109,112,113,115,116,117,127,128,129,132,135,137,148,151,152,155,160,161,162,173,175,176,190,191,192,195,196,201,204,207,211,219,221,229,232],wherea:[102,213],whether:[11,13,14,15,23,27,28,34,97,100,103,113,115,117,127,149,152,153,164,165,166,168,170,171,172,174,176,186,188,190,210,221,224,225,226],which:[1,2,4,8,10,14,17,19,20,21,23,24,27,28,29,30,32,33,42,43,45,47,52,68,70,71,72,74,75,79,93,94,95,97,98,99,102,103,105,106,109,110,111,112,113,114,115,116,121,122,124,127,137,138,139,144,145,148,149,152,154,157,161,162,163,165,168,173,174,175,180,186,187,188,189,190,191,192,193,203,204,207,210,211,212,213,218,219,230,233],white:[28,34,39],white_list_count:28,whitelist:39,who:[13,163,168],whole:[14,122],whose:[29,30,74,75,162,168],why:[13,17,207],wide:[43,173],widen:102,wifi:[7,211],wifi_connect:211,wifi_init:211,wifi_request_scan:211,wikipedia:[149,152],winc1500_wifi:211,window:[5,6,7,9,11,14,28,39,69,79,91,92,106,117,184,193,195,196,197,198,199,200,203,204,211,221,229,232,233],winusb:[197,199,232],wipe:131,wire:[8,149,152,204,218,219,232],wireless:43,wish:[6,13,29,30,141,149,207,212,231],withdraw:13,within:[1,11,14,33,44,54,68,102,106,107,109,115,121,127,132,135,137,141,143,148,159,161,162,165,166,167,172,174,178,189,199,207,210,212,218,223],without:[6,13,14,21,25,29,30,34,36,40,42,103,115,139,141,142,162,172,173,174,176,178,193,203,210,218,219,224],wno:6,won:[8,25,173,219],wont:223,word:[6,68,102,105,111,115,152,188,193,212,226,233,234],word_siz:152,work:[2,4,8,10,13,14,17,18,19,21,22,25,27,34,36,68,74,75,98,102,104,105,106,108,109,111,112,115,117,121,122,143,174,180,181,183,184,187,193,195,196,201,204,207,210,215,217,218,219,222,223,225,228],work_stack:207,work_stack_s:207,work_task:207,work_task_handl:207,work_task_prio:207,workaround:21,workspac:[1,2,10,52,70,71,72,73,93,95,96],workspaceroot:11,world:[11,43,155,186,191,192,194,214,236],worri:105,worth:[1,107],would:[5,11,14,15,18,19,21,24,71,72,94,95,97,102,105,111,115,116,117,124,127,143,148,149,152,173,174,178,183,199,204,207,210,212,213,218,219,228,232],wrap:[113,174,195],wrapper:[28,100],write:[1,9,19,27,28,29,30,33,40,74,77,78,93,94,95,107,115,116,117,121,122,123,127,128,129,133,138,139,141,143,146,148,149,155,157,159,162,174,182,187,189,190,204,205,207,209,218,219,220,228],write_cmd_rx:[89,201],write_cmd_tx:[89,201],write_id:139,write_req_rx:[89,201],write_req_tx:[89,201],write_rsp_rx:[89,201],write_rsp_tx:[89,201],written:[10,17,25,28,29,30,33,35,72,95,105,115,127,128,129,132,137,141,149,152,162,188,190,195,213],wrong:[23,55,219],wsl:[11,72],www:[14,72,95,114,180,184,193,218,219,226,232,233,234],x03:218,x86:[4,11],x86_64:[193,226,233,234],xml:[7,101],xpf:4,xpsr:[193,197,199],xstr:178,xtal_32768:106,xtal_32768_synth:36,xxx:[6,106,112,122],xxx_branch_0_8_0:[212,213],xxx_branch_1_0_0:[212,213],xxx_branch_1_0_2:[212,213],xxx_branch_1_1_0:[212,213],xxx_branch_1_1_2:[212,213],xxx_branch_1_2_0:[212,213],xxx_branch_1_2_1:[212,213],xxxx:143,xzf:[70,72,73,95,96],yai:218,yaml:10,year:44,yes:[34,116,204],yesno:39,yet:[7,19,20,105,109,116,183,203,212,213,219],yield:105,yml:[1,6,7,14,16,20,25,54,56,63,65,66,68,74,107,108,114,116,117,122,123,139,141,142,162,164,172,173,174,175,176,180,183,184,193,195,201,204,205,208,210,211,212,214,215,218,220,221,223,226],you:[1,3,4,5,6,7,8,9,10,11,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,42,46,47,48,52,54,56,58,59,60,63,64,65,66,67,68,70,71,72,73,74,76,77,79,81,89,93,94,95,96,97,102,105,106,107,108,109,114,115,116,117,118,119,121,124,125,127,128,129,133,141,142,143,145,148,149,151,161,162,163,164,166,167,168,172,173,174,175,176,177,178,179,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,208,210,211,212,213,214,217,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,236],youll:223,your:[1,3,4,6,8,13,14,17,18,20,21,24,25,32,42,52,63,65,68,69,71,72,73,74,83,84,92,94,95,96,97,105,106,107,108,109,110,112,118,119,120,121,122,123,125,127,138,141,143,162,164,172,173,175,176,178,181,182,183,184,185,186,187,189,190,191,192,194,195,203,204,205,208,213,217,218,219,220,222,223,224,228,229,231,232,233,234,236],your_target:14,yourself:[2,13,14,42,105,106,185,218,236],ype:[191,192],yym:6,zadig:[197,199,232],zero:[11,29,30,36,97,102,103,106,112,113,116,127,131,135,137,140,144,148,149,152,153,154,155,161,163,167,168,169,176,190,191,192,194,204,207,210,211,212,226,236],zillion:14,zip:[4,196],zone:113},titles:["&lt;no title&gt;","Concepts","Everything You Need in a Docker Container","Setup &amp; Get Started","Installing the Cross Tools for ARM","Native Installation","Installing Native Toolchain","Creating Your First Mynewt Project","Using the Serial Port with Mynewt OS","Mynewt Documentation","Contributing to Newt or Newtmgr Tools","Developing Mynewt Applications with Visual Studio Code","Appendix","Mynewt FAQ - Administrative","Mynewt FAQ - Bluetooth","Mynewt FAQ - Bootloader and Firmware Upgrade","Mynewt FAQ - File System","Mynewt FAQ - Hardware-Specific Questions","Mynewt FAQ","Mynewt FAQ - Drivers and Modules","Mynewt FAQ - Newt","Mynewt FAQ - Newt Manager","Mynewt FAQ - NFC","Mynewt FAQ - Porting Mynewt","Mynewt FAQ - Syntax, Semantics, Configuration","Mynewt FAQ - Troubleshooting","NimBLE Bluetooth Stack Documentation","NimBLE Host ATT Client Reference","NimBLE Host GAP Reference","NimBLE Host GATT Client Reference","NimBLE Host GATT Server Reference","NimBLE Host","NimBLE Host Identity Reference","NimBLE Host Return Codes","NimBLE Security","Configure device address","Configure clock for controller","NimBLE Setup","Respond to <em>sync</em> and <em>reset</em> events","GAP API for btshell","GATT feature API for btshell","Advertisement Data Fields","API for btshell app","BLE User Guide","Bluetooth Mesh","Sample application","Mynewt Newt Tool Documentation","newt build","newt clean","newt complete","newt create-image","newt debug","newt help","newt info","newt install","newt load","newt mfg","newt new","newt pkg","newt resign-image","newt run","newt size","newt sync","newt target","newt test","newt upgrade","newt vals","newt version","Newt Tool Guide","Install","Installing Newt on Linux","Installing Newt on Mac OS","Installing Newt on Windows","Installing Previous Releases of Newt","Theory of Operations","Command Structure","Mynewt Newt Manager Documentation","Command List","newtmgr config","newtmgr conn","newtmgr crash","newtmgr datetime","newtmgr echo","newtmgr fs","newtmgr image","newtmgr log","newtmgr mpstat","newtmgr reset","newtmgr run","newtmgr stat","newtmgr taskstat","Newt Manager Guide","Install","Installing Newtmgr on Linux","Installing Newtmgr on Mac OS","Installing Newtmgr on Windows","Installing Previous Releases of Newtmgr","Callout","Scheduler","CPU Time","Event Queues","Heap","Mbufs","Memory Pools","Mutex","Apache Mynewt Operating System Kernel","BSP Porting","Porting Mynewt to a new CPU Architecture","Porting Mynewt to a new MCU","Porting Mynewt OS","Sanity","Semaphore","Task","OS Time","Baselibc","Bootloader","Config","Console","Customizing Newt Manager Usage with mgmt","Newt Manager","Using the OIC Framework","Drivers","flash","mmc","elua","lua_init","lua_main","Flash Circular Buffer (FCB)","fcb_append","fcb_append_finish","fcb_append_to_scratch","fcb_clear","fcb_getnext","fcb_init","fcb_is_empty","fcb_offset_last_n","fcb_rotate","fcb_walk","The FAT File System","File System Abstraction","Adding a new file system","Newtron Flash Filesystem (nffs)","Other File Systems","Hardware Abstraction Layer","BSP","Creating New HAL Interfaces","Flash","hal_flash_int","GPIO","I2C","Using HAL in Your Libraries","OS Tick","SPI","System","Timer","UART","Watchdog","Image Manager","imgmgr_module_init","imgr_ver_parse","imgr_ver_str","JSON","Logging","Sensor API","Creating and Configuring a Sensor Device","Sensor Device Driver","Mynewt Sensor Framework Overview","Sensor Listener API","Sensor Manager API","Sensor Notifier API","OIC Sensor Support","Sensor Shell Command","Shell","Split Images","Statistics Module","Validation and Error Messages","Compile-Time Configuration and Initialization","System Modules","testutil","OS User Guide","Blinky, your \u201cHello World!\u201d, on STM32F303 Discovery","Pin Wheel Modifications to \u201cBlinky\u201d on STM32F3 Discovery","Bluetooth Low Energy","Set up a bare bones NimBLE application","Use HCI access to NimBLE controller","BLE Peripheral Project","Advertising","BLE Peripheral App","Characteristic Access","GAP Event callbacks","Service Registration","BLE Eddystone","BLE iBeacon","Blinky, your \u201cHello World!\u201d, on Arduino Zero","Project Blinky","Enabling The Console and Shell for Blinky","Blinky, your \u201cHello World!\u201d, on Arduino Primo","Blinky, your \u201cHello World!\u201d, on STM32F4-Discovery","Blinky, your \u201cHello World!\u201d, on a nRF52 Development Kit","Blinky, your \u201cHello World!\u201d, on Olimex","Blinky, your \u201cHello World!\u201d, on RedBear Nano 2","Enabling Newt Manager in Your Application","Remote Device Management","Over-the-Air Image Upgrade","LoRaWAN App","How to Use Event Queues to Manage Multiple Events","OS Fundamentals","Tasks and Priority Management","How to Reduce Application Code Size","Other","Write a Test Suite for a Package","Enable Wi-Fi on Arduino MKR1000","Adding Repositories to your Project","Create a Repo out of a Project","Accessing a private repository","Upgrade a repo","Air Quality Sensor Project","Air Quality Sensor Project via Bluetooth","Air Quality Sensor Project","Adding an Analog Sensor on nRF52","Adding OIC Sensor Support to the bleprph_oic Application","Enabling an Off-Board Sensor in an Existing Application","Enabling OIC Sensor Data Monitoring in the sensors_test Application","Enabling and Calibrating Off-Board DRV2605 LRA Actuator","Changing the Default Configuration for a Sensor","Enabling OIC Sensor Data Monitoring","Developing an Application for an Onboard Sensor","Sensors","Sensor Tutorials Overview","Project Slinky using the Nordic nRF52 Board","Project Sim Slinky","Project Slinky","Project Slinky Using Olimex Board","SEGGER RTT Console","SEGGER SystemView","Tooling","Tutorials"],titleterms:{"abstract":[139,143],"default":[195,207,224],"float":24,"function":[24,106,113,114,124,157,163,165,176,188,190,207,220,224],"import":180,"new":[7,57,107,108,140,145,187,207,224,226,229,230,232],"public":35,"return":[33,123,125,126,128,129,130,131,132,133,134,135,136,137,158,159,160],"switch":[114,207],"try":210,"while":14,Adding:[71,94,140,174,212,219,220,224,226],For:[4,218],One:14,The:[138,195],Use:[2,184,195,201,205,226,229,232],Used:163,Uses:162,Using:[8,70,93,102,117,120,150,218,221,226,232],With:25,acceleromet:224,access:[184,188,214],actual:223,actuat:223,adafruit:21,adc:219,add:[79,106,191,192,217,218,220,226],addit:212,address:[32,35,42,191,192],administr:13,advertis:[14,39,41,42,186,191,192],air:[203,216,217,218],all:[14,205],altern:24,ambigu:175,analog:[14,219],apach:[9,44,105],api:[25,27,28,29,30,39,40,42,97,98,99,100,101,102,103,104,110,111,112,113,116,117,127,138,139,140,141,142,144,145,146,148,149,151,152,153,154,155,156,161,162,163,167,168,169,172,174,178,226],app:[9,42,74,173,184,187,204,219,226,228,234],app_get_light:220,app_set_light:220,appendix:[12,106],applic:[7,11,18,45,105,162,163,164,173,180,183,184,191,192,193,195,196,197,198,199,200,201,204,205,207,208,211,219,220,221,222,223,224,226,229,232],apt:[70,93],architectur:107,arduino:[8,193,196,211],area:[141,175],argument:[19,125,126,128,129,130,131,132,133,134,135,136,137,158,159,160],arm:[4,25],artifact:74,assert:210,assign:175,associ:11,att:[27,33],attach:184,attribut:[42,190],autocomplet:49,avail:[39,40,52,56,63,194,212,228,231],bare:183,base:21,baselibc:114,bash:49,basic:105,beacon:[191,192],bearer:44,begin:[42,186],being:188,belong:42,between:211,binari:[70,72,93,95],bit:6,bitbang:14,ble:[14,17,43,183,185,187,191,192,219,220],ble_gap_disc_param:14,blehci:[14,184],blemesh:14,bleprph_gap_ev:189,bleprph_oic:220,blink:180,blink_rigado:61,blinki:[7,180,181,193,194,195,196,197,198,199,200],block:24,bluetooth:[14,26,43,44,182,184,217,219],bluez:184,bno055:221,board:[8,109,164,193,196,197,198,199,200,204,211,219,220,221,222,223,229,232],bone:183,boot:[25,115,173],boot_seri:15,bootload:[15,115,184,193,196,197,198,199,200,204,211,221,226,229,232],bootutil:15,branch:[71,94],breakout:8,brew:6,bsp:[66,106,109,144,175],btmgmt:184,btmon:184,btshell:[14,39,40,42],buffer:127,bug:[13,25],build:[7,9,11,25,47,68,74,180,181,183,184,193,195,196,197,198,199,200,201,204,207,211,219,220,221,222,224,226,229,230,232],calibr:223,call:[24,224],callback:189,callout:[97,205],can:13,cannot:224,capabl:15,categori:236,central:14,chang:[26,46,76,219,224],channel:39,characterist:[14,42,185,188],check:[70,71,72,93,94,95,106,110,115,168],choos:210,circular:127,clean:48,clear:200,cli:[116,218],client:[27,29],clock:36,close:204,cmsis_nvic:24,code:[11,18,33,106,107,174,208,210],command:[11,20,39,40,52,56,63,75,77,79,119,165,171,172,184,201,218,230],committ:13,commun:[8,21,195,201,223],compil:[18,107,176],complet:[49,172],compon:[43,212],comput:[70,93,211,221,226],concept:[1,173],conclus:[183,191,192,219,223],condit:176,config:[78,116],configur:[1,11,14,24,35,36,39,40,42,116,138,162,163,164,165,168,175,176,180,191,192,195,201,224],confirm:203,conflict:176,congratul:210,conn:79,connect:[14,21,39,42,184,193,195,196,197,198,199,200,201,203,204,211,219,220,221,222,226,229,230,232,233],consider:207,consol:[117,172,174,195,211,221,226,233],contain:2,content:[26,46,76],context:207,contribut:10,control:[18,36,184,191,192,220,221,222,228],copi:[106,220],core:[23,33,105,109],cpu:[99,107,109],crash:[14,80],creat:[7,50,102,106,107,145,164,180,183,184,187,191,192,193,196,197,198,199,200,201,203,204,205,207,210,211,213,218,219,220,221,222,223,226,229,230,232],creation:105,cross:4,crystal:36,current:173,custom:[110,118,201],data:[41,113,124,127,139,141,149,157,161,163,165,167,168,172,178,186,204,219,220,221,222,224,225,226],datetim:81,debian:[70,93],debug:[11,51,74,106],debugg:[4,11],declar:174,decod:161,defin:[11,106,165,174],definit:[147,175,176],delai:24,delet:[79,220],depend:[7,74,106,109,122,123,142,143,180,195,201,213,220,226],descript:[47,48,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,103,104,109,110,111,112,113,114,117,121,124,127,138,139,141,143,144,146,147,148,149,151,152,153,154,155,156,157,161,162,172,173,178,221],descriptor:[42,185,190,212],design:[121,143],detail:174,detect:25,determin:188,develop:[11,198,226],devic:[2,14,21,24,35,39,42,116,163,164,165,184,202,203,220,221,222,223,224,228],direct:42,directori:74,disabl:39,disconnect:14,discov:42,discoveri:[39,180,181,197],disk_op:139,displai:42,docker:2,document:[13,14,15,26,46,76],doe:212,download:[10,70,74,93,106,180,181,204,219],driver:[19,121,163,165,218,219,224],drv2605:223,duplic:175,eabi:25,earli:24,echo:82,eddyston:191,edit:13,editor:13,elf:20,elua:124,empti:[191,192],emul:221,enabl:[2,25,39,49,172,173,174,195,201,211,220,221,222,223,225,226],encod:161,end:24,energi:182,enhanc:141,enter:183,environ:10,equip:207,equival:24,eras:196,error:[25,175],establish:[42,184,211],etap:219,event:[38,100,189,195,205],everyth:[2,204,219],exactli:14,exampl:[8,33,38,43,47,48,50,51,52,56,57,58,59,60,61,63,64,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90,100,105,116,121,122,123,125,126,128,129,130,131,132,133,134,135,136,137,138,139,143,147,155,159,160,175,176,178,205],execut:[6,180,181,196,197,198,200,204,219,230,233,234],exist:[195,201,212,221],explor:7,express:175,extend:[14,39,226],extens:[2,11],extern:[180,193,211],faq:[13,14,15,16,17,18,19,20,21,22,23,24,25],fat:138,fcb:127,fcb_append:128,fcb_append_finish:129,fcb_append_to_scratch:130,fcb_clear:131,fcb_getnext:132,fcb_init:133,fcb_is_empti:134,fcb_offset_last_n:135,fcb_rotat:136,fcb_walk:137,featur:[7,13,34,40,43,44,105],fetch:[7,193,211],field:41,file:[16,20,25,106,122,123,138,139,140,142,174,213,220,224,226],filesystem:[139,141],fill:106,find:212,firmwar:15,first:[7,9],flag:[47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90],flash:[106,115,122,127,141,146,175,196,200],forget:14,format:[24,115],framework:[120,165,166,201,225],from:[14,70,71,72,93,94,95,117,220,222,224],ft232h:8,full:117,fundament:206,futur:141,gap:[28,39,189],gatt:[29,30,40,217],gcc:[6,25],gdb:6,gener:[18,34,42,121,143,176,205],get:[3,70,93,165],git:[13,18,72],global:[47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90],gpio:148,grei:25,group:14,guarante:189,guid:[43,68,91,179],hal:[109,145,150,218],hal_flash_int:147,hal_i2c:149,handler:[116,162,172],hardcod:35,hardwar:[17,35,143,180,204,219,221,233,234],hci:[33,184],header:[32,33,102,122,123,139,142,174,220,224],heap:101,hello:[180,193,196,197,198,199,200],help:[52,172],high:115,hold:174,homebrew:[71,94],host:[27,28,29,30,31,32,33,191,192],how:[13,114,176,205,208,212,220,224],i2c:149,iOS:25,ibeacon:192,ident:32,identifi:212,ignor:175,imag:[18,25,50,59,84,115,157,173,180,181,184,196,197,198,199,200,201,203,204,211,219,220,221,222,223,224,226,229,232],imgmgr_module_init:158,imgr_ver_pars:159,imgr_ver_str:160,immedi:14,implement:[107,121,162,165,174],includ:[42,174,190],indefinit:[191,192],info:53,inform:172,initi:[42,122,123,141,163,165,174,176,207,224],input:[117,172],instal:[2,4,5,6,10,11,20,49,54,69,70,71,72,73,92,93,94,95,96,180,204,219],instead:226,integr:115,interfac:[142,145,163],intern:141,interrupt:205,introduct:[9,27,28,29,30,31,32,33,44,68,106,185,205,210],invalid:175,invert:17,invok:119,issu:25,join:204,json:161,kei:[14,34,39],kernel:105,kit:198,l2cap:[14,33,39],laptop:13,latest:[70,71,72,93,94,95],launch:234,layer:143,lead:24,led:[180,181],legaci:39,length:17,level:[115,162,203],libc:6,librari:[19,150,180],like:13,limit:[17,115],line:172,link:4,linker:106,linux:[2,4,6,8,10,70,73,93,96],list:[13,77,114,124,157,173,191,192,221,226],listen:[167,226],load:[55,184,193,196,197,198,199,200,201,211,220,221,222,223,224,226,229,232],loader:173,log:[17,19,85,162,165,203],look:168,lorawan:204,low:182,lra:223,lua_init:125,lua_main:126,mac:[2,4,6,8,10,71,73,94,96],macro:113,main:[195,207,220,224,226],make:13,manag:[9,21,33,68,76,91,118,119,157,168,201,202,205,207],manual:[70,93],map:[106,115],master:[71,94],maximum:14,mbuf:102,mcu:[23,106,108,109],mcuboot:15,measur:141,memori:[103,200],merg:13,mesh:[14,43,44],messag:[14,175],method:[35,70,93],mfg:56,mfghash:24,mgmt:118,mingw:72,minim:117,miscellan:141,mkr1000:211,mmc:123,model:44,modif:181,modifi:[195,201,220,226],modul:[14,19,172,174,177],monitor:[184,222,225],more:[68,180],mpstat:86,mqueue:102,msy:102,msys2:72,multicast:14,multipl:[11,139,174,175,205],mutex:104,my_sensor_app:226,mynewt:[2,7,8,9,11,13,14,15,16,17,18,19,20,21,22,23,24,25,35,44,46,71,76,94,105,106,107,108,109,117,166,183,212,220,222,228],name:[19,42,172,174,176],nano2:17,nano:[17,200],nativ:[5,6],need:[2,180,181,204,212,221,233,234],newt:[2,9,10,11,20,21,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,76,91,118,119,201],newtmgr:[10,21,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,96,119,172,174,201,203,229,230,232],newtron:141,next:[6,221],nfc:22,nff:[16,141],nimbl:[14,26,27,28,29,30,31,32,33,34,37,43,183,184,191,192],nmp:21,node:44,none:25,nordic:[8,17,229],normal:102,note:[68,113,124,125,126,128,129,130,131,132,133,134,135,136,137,158,159,160,174],notifi:169,notnul:175,nrf52840:14,nrf52:[17,198,219,221,229],nrf52_adc:219,nrf52dk:[8,21],nrf:35,number:[14,19],object:[163,180,181,194,204,233,234],off:[164,221,223],oic:[120,170,220,222,225,228],oicmgr:201,older:25,olimex:[199,232],omgr_app_init:220,onboard:[164,226],onto:[193,211],open:[184,204],openocd:4,oper:[14,68,74,105,115,149,152,173],option:[196,201],orient:39,ota:204,other:[7,11,142,201,209,213],out:[25,210,212,213],output:[61,66,117],over:[172,203],overrid:[175,176],overview:[77,166,185,186,187,189,194,220,224,225,228,231],own:13,pack:2,packag:[1,7,70,74,93,106,109,117,142,162,163,166,175,176,183,193,201,210,211,218,220,221,226],packet:102,passiv:42,patch:13,peer:[33,42],peer_id:21,perform:42,peripher:[14,185,187],persist:116,pin:[17,181],pkg:[18,58,106],platform:[8,143],point:24,poll:[163,168],pool:[102,103],port:[8,23,106,107,108,109,204],precis:17,preempt:207,prerequisit:[7,184,187,193,194,195,196,197,198,199,200,201,203,205,207,211,218,220,221,222,223,224,225,226,228,229,230,231,232,236],preview:[26,46,76],previou:[73,96],primo:196,principl:[121,143],printf:24,prioriti:[175,207],privaci:34,privat:214,pro:8,process:[172,195],produc:[6,74],profil:[21,201,203,230],project:[1,7,11,13,25,43,180,183,184,185,193,194,195,196,197,198,199,200,201,204,205,211,212,213,216,217,218,219,229,230,231,232],prompt:172,protect:200,protocol:[172,191,192,201],provis:44,pull:[2,13],put:205,qualiti:[216,217,218],queri:[229,232],question:[13,14,17],queue:[100,195,205],radio:14,random:[24,35],rate:163,rational:68,read:[14,42,163,165,188,224,226],reboot:224,rebuild:[10,226],reconfigur:164,recoveri:115,redbear:[17,200],reduc:[18,203,208],refer:[27,28,29,30,32,33,176],referenc:176,regist:[110,142,165,168,172,174,221],registr:190,releas:[70,71,72,73,93,94,95,96],remot:[202,219],repo:[212,213,215,219],repositori:[7,13,68,212,213,214],request:13,requir:[106,219],reset:[38,87,115],resign:59,resolut:213,resolv:[74,176,213],respond:38,restart:14,restrict:175,retriev:[173,174],review:[188,207],round:181,rtt:[226,233],run:[7,11,25,60,88,193,195,230,233,234],runtim:[35,116],safeti:139,sampl:[45,221,224],saniti:110,satisfi:106,scale:210,scan:42,schedul:98,script:[2,106],section:174,secur:[33,34,39],segger:[4,233,234],select:2,semant:24,semaphor:111,semiconductor:8,send:[42,184,204],sensor:[163,164,165,166,167,168,169,170,171,216,217,218,219,220,221,222,224,225,226,227,228],sensor_read:226,sensors_test:222,sequenc:173,serial:[8,24,172,184,195,211,229,232],server:30,servic:[42,185,190,217,219],set:[6,10,24,42,70,93,106,162,163,165,175,176,183,186,190,195,201,218,220,224,230],settl:36,setup:[3,8,16,37,211,233,234],shell:[165,171,172,195,226],should:213,show:[42,79],sign:[115,180,196,197,198,199,200,204,211,219,229,232],signatur:188,sim:230,simul:7,singl:173,size:[17,18,20,61,208],skeleton:226,sleep:24,slinki:[229,230,231,232],slot:115,smart:[220,222,228],softwar:234,some:13,sourc:[7,10,68,70,72,93,95,191,192,201,218,220],special:113,specif:[17,107,213],specifi:[142,176],spi:152,split:173,stack:[26,191,192,207],start:[3,184,211],startup:106,stat:[89,165,174],state:[115,116,173],statist:174,statu:115,step:[10,194,203,220,221,222,223,224,226,231],stm32f303:180,stm32f3:[180,181],stm32f4:197,storag:39,struct:139,structur:[75,113,124,127,139,141,157,161,163,167,168,172,178],stub:117,studio:11,sub:79,submit:13,suit:210,summari:33,support:[2,14,44,74,109,139,143,166,170,180,201,220,221,225,226],swap:115,sync:[20,38,62,191,192],syntax:24,syscfg:[162,173,176,220],sysinit_app:176,system:[16,36,68,105,138,139,140,142,153,175,176,177],systemview:234,tabl:174,talk:211,tap:[71,94],target:[1,35,63,74,106,180,181,183,184,187,193,195,196,197,198,199,200,201,204,211,219,221,223,226,229,230,232,233,234],task:[11,24,110,112,175,205,207,219],taskstat:90,tcp:211,templat:106,termin:221,test:[7,64,106,203,210,218],testutil:178,theori:[74,149,152,173],thingi:226,thread:139,through:174,tick:151,time:[17,36,99,113,176],timer:[154,195,205],togeth:205,tool:[4,10,46,68,72,95,235],toolchain:[4,6],topolog:44,trace:25,transact:17,transceiv:14,transport:[172,201],tree:218,trigger:14,troubleshoot:25,tutori:[173,194,228,231,236],type:[163,165,168,221],uart:155,undefin:175,under:210,undirect:42,unifi:173,unix:24,unsatisfi:25,updat:10,upgrad:[15,20,65,70,71,93,94,173,203,215],upload:[195,203],usag:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90,118,127],usb2:2,usb:8,use:[13,70,93,102,105,212],user:[43,179],using:[68,229,232],val:66,valid:175,valu:[14,17,123,125,126,128,129,130,131,132,133,134,135,136,137,158,159,160,163,165,175,176,220,224],variabl:174,vector:115,verif:[115,224],verifi:224,version:[18,25,67,70,71,72,93,94,95,212,213,219],via:[211,217,219,226],view:[17,219,220,221,222,226],violat:175,virtualbox:2,visual:11,wait:[191,192],want:[13,180],watch:[180,181],watchdog:156,water:219,welcom:9,what:[13,180,181,212],wheel:181,where:213,why:[102,105,212],window:[2,4,8,10,72,73,95,96],work:11,workspac:11,world:[180,193,196,197,198,199,200],would:13,wrapper:2,write:[14,26,42,46,76,188,200,210],yml:[18,106,213,219],you:[2,180,181],your:[2,7,9,10,11,70,93,142,150,174,180,193,196,197,198,199,200,201,207,210,211,212,221,226,230],zero:[24,193]}})
\ No newline at end of file
+Search.setIndex({docnames:["_static/common","concepts","get_started/docker","get_started/index","get_started/native_install/cross_tools","get_started/native_install/index","get_started/native_install/native_tools","get_started/project_create","get_started/serial_access","index","misc/go_env","misc/ide","misc/index","mynewt_faq/admin_faq","mynewt_faq/bluetooth_faq","mynewt_faq/boot_faq","mynewt_faq/fs_faq","mynewt_faq/hardware_faq","mynewt_faq/index","mynewt_faq/modules_faq","mynewt_faq/newt_faq","mynewt_faq/newtmgr_faq","mynewt_faq/nfc_faq","mynewt_faq/port_faq","mynewt_faq/syntax_faq","mynewt_faq/troubleshoot_faq","network/docs/README","network/docs/ble_hs/ble_att","network/docs/ble_hs/ble_gap","network/docs/ble_hs/ble_gattc","network/docs/ble_hs/ble_gatts","network/docs/ble_hs/ble_hs","network/docs/ble_hs/ble_hs_id","network/docs/ble_hs/ble_hs_return_codes","network/docs/ble_sec","network/docs/ble_setup/ble_addr","network/docs/ble_setup/ble_lp_clock","network/docs/ble_setup/ble_setup_intro","network/docs/ble_setup/ble_sync_cb","network/docs/btshell/btshell_GAP","network/docs/btshell/btshell_GATT","network/docs/btshell/btshell_advdata","network/docs/btshell/btshell_api","network/docs/index","network/docs/mesh/index","network/docs/mesh/sample","newt/README","newt/command_list/newt_build","newt/command_list/newt_clean","newt/command_list/newt_complete","newt/command_list/newt_create_image","newt/command_list/newt_debug","newt/command_list/newt_help","newt/command_list/newt_info","newt/command_list/newt_install","newt/command_list/newt_load","newt/command_list/newt_mfg","newt/command_list/newt_new","newt/command_list/newt_pkg","newt/command_list/newt_resign_image","newt/command_list/newt_run","newt/command_list/newt_size","newt/command_list/newt_sync","newt/command_list/newt_target","newt/command_list/newt_test","newt/command_list/newt_upgrade","newt/command_list/newt_vals","newt/command_list/newt_version","newt/index","newt/install/index","newt/install/newt_linux","newt/install/newt_mac","newt/install/newt_windows","newt/install/prev_releases","newt/newt_operation","newt/newt_ops","newtmgr/README","newtmgr/command_list/index","newtmgr/command_list/newtmgr_config","newtmgr/command_list/newtmgr_conn","newtmgr/command_list/newtmgr_crash","newtmgr/command_list/newtmgr_datetime","newtmgr/command_list/newtmgr_echo","newtmgr/command_list/newtmgr_fs","newtmgr/command_list/newtmgr_image","newtmgr/command_list/newtmgr_logs","newtmgr/command_list/newtmgr_mpstats","newtmgr/command_list/newtmgr_reset","newtmgr/command_list/newtmgr_run","newtmgr/command_list/newtmgr_stat","newtmgr/command_list/newtmgr_taskstats","newtmgr/index","newtmgr/install/index","newtmgr/install/install_linux","newtmgr/install/install_mac","newtmgr/install/install_windows","newtmgr/install/prev_releases","os/core_os/callout/callout","os/core_os/context_switch/context_switch","os/core_os/cputime/os_cputime","os/core_os/event_queue/event_queue","os/core_os/heap/heap","os/core_os/mbuf/mbuf","os/core_os/memory_pool/memory_pool","os/core_os/mutex/mutex","os/core_os/mynewt_os","os/core_os/porting/port_bsp","os/core_os/porting/port_cpu","os/core_os/porting/port_mcu","os/core_os/porting/port_os","os/core_os/sanity/sanity","os/core_os/semaphore/semaphore","os/core_os/task/task","os/core_os/time/os_time","os/modules/baselibc","os/modules/bootloader/bootloader","os/modules/config/config","os/modules/console/console","os/modules/devmgmt/customize_newtmgr","os/modules/devmgmt/newtmgr","os/modules/devmgmt/oicmgr","os/modules/drivers/driver","os/modules/drivers/flash","os/modules/drivers/mmc","os/modules/elua/elua","os/modules/elua/lua_init","os/modules/elua/lua_main","os/modules/fcb/fcb","os/modules/fcb/fcb_append","os/modules/fcb/fcb_append_finish","os/modules/fcb/fcb_append_to_scratch","os/modules/fcb/fcb_clear","os/modules/fcb/fcb_getnext","os/modules/fcb/fcb_init","os/modules/fcb/fcb_is_empty","os/modules/fcb/fcb_offset_last_n","os/modules/fcb/fcb_rotate","os/modules/fcb/fcb_walk","os/modules/fs/fatfs","os/modules/fs/fs","os/modules/fs/fs_add","os/modules/fs/nffs","os/modules/fs/otherfs","os/modules/hal/hal","os/modules/hal/hal_bsp/hal_bsp","os/modules/hal/hal_creation","os/modules/hal/hal_flash/hal_flash","os/modules/hal/hal_flash/hal_flash_int","os/modules/hal/hal_gpio/hal_gpio","os/modules/hal/hal_i2c/hal_i2c","os/modules/hal/hal_in_libraries","os/modules/hal/hal_os_tick/hal_os_tick","os/modules/hal/hal_spi/hal_spi","os/modules/hal/hal_system/hal_sys","os/modules/hal/hal_timer/hal_timer","os/modules/hal/hal_uart/hal_uart","os/modules/hal/hal_watchdog/hal_watchdog","os/modules/imgmgr/imgmgr","os/modules/imgmgr/imgmgr_module_init","os/modules/imgmgr/imgr_ver_parse","os/modules/imgmgr/imgr_ver_str","os/modules/json/json","os/modules/logs/logs","os/modules/sensor_framework/sensor_api","os/modules/sensor_framework/sensor_create","os/modules/sensor_framework/sensor_driver","os/modules/sensor_framework/sensor_framework","os/modules/sensor_framework/sensor_listener_api","os/modules/sensor_framework/sensor_mgr_api","os/modules/sensor_framework/sensor_notifier_api","os/modules/sensor_framework/sensor_oic","os/modules/sensor_framework/sensor_shell","os/modules/shell/shell","os/modules/split/split","os/modules/stats/stats","os/modules/sysinitconfig/sysconfig_error","os/modules/sysinitconfig/sysinitconfig","os/modules/system_modules","os/modules/testutil/testutil","os/os_user_guide","os/tutorials/STM32F303","os/tutorials/pin-wheel-mods","tutorials/ble/ble","tutorials/ble/ble_bare_bones","tutorials/ble/blehci_project","tutorials/ble/bleprph/bleprph","tutorials/ble/bleprph/bleprph-sections/bleprph-adv","tutorials/ble/bleprph/bleprph-sections/bleprph-app","tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access","tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event","tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg","tutorials/ble/eddystone","tutorials/ble/ibeacon","tutorials/blinky/arduino_zero","tutorials/blinky/blinky","tutorials/blinky/blinky_console","tutorials/blinky/blinky_primo","tutorials/blinky/blinky_stm32f4disc","tutorials/blinky/nRF52","tutorials/blinky/olimex","tutorials/blinky/rbnano2","tutorials/devmgmt/add_newtmgr","tutorials/devmgmt/devmgmt","tutorials/devmgmt/ota_upgrade_nrf52","tutorials/lora/lorawanapp","tutorials/os_fundamentals/event_queue","tutorials/os_fundamentals/os_fundamentals","tutorials/os_fundamentals/tasks_lesson","tutorials/other/codesize","tutorials/other/other","tutorials/other/unit_test","tutorials/other/wi-fi_on_arduino","tutorials/repo/add_repos","tutorials/repo/create_repo","tutorials/repo/private_repo","tutorials/repo/upgrade_repo","tutorials/sensors/air_quality","tutorials/sensors/air_quality_ble","tutorials/sensors/air_quality_sensor","tutorials/sensors/nrf52_adc","tutorials/sensors/sensor_bleprph_oic","tutorials/sensors/sensor_nrf52_bno055","tutorials/sensors/sensor_nrf52_bno055_oic","tutorials/sensors/sensor_nrf52_drv2605","tutorials/sensors/sensor_offboard_config","tutorials/sensors/sensor_oic_overview","tutorials/sensors/sensor_thingy_lis2dh12_onb","tutorials/sensors/sensors","tutorials/sensors/sensors_framework","tutorials/slinky/project-nrf52-slinky","tutorials/slinky/project-sim-slinky","tutorials/slinky/project-slinky","tutorials/slinky/project-stm32-slinky","tutorials/tooling/segger_rtt","tutorials/tooling/segger_sysview","tutorials/tooling/tooling","tutorials/tutorials"],envversion:52,filenames:["_static/common.rst","concepts.rst","get_started/docker.rst","get_started/index.rst","get_started/native_install/cross_tools.rst","get_started/native_install/index.rst","get_started/native_install/native_tools.rst","get_started/project_create.rst","get_started/serial_access.rst","index.rst","misc/go_env.rst","misc/ide.rst","misc/index.rst","mynewt_faq/admin_faq.rst","mynewt_faq/bluetooth_faq.rst","mynewt_faq/boot_faq.rst","mynewt_faq/fs_faq.rst","mynewt_faq/hardware_faq.rst","mynewt_faq/index.rst","mynewt_faq/modules_faq.rst","mynewt_faq/newt_faq.rst","mynewt_faq/newtmgr_faq.rst","mynewt_faq/nfc_faq.rst","mynewt_faq/port_faq.rst","mynewt_faq/syntax_faq.rst","mynewt_faq/troubleshoot_faq.rst","network/docs/README.rst","network/docs/ble_hs/ble_att.rst","network/docs/ble_hs/ble_gap.rst","network/docs/ble_hs/ble_gattc.rst","network/docs/ble_hs/ble_gatts.rst","network/docs/ble_hs/ble_hs.rst","network/docs/ble_hs/ble_hs_id.rst","network/docs/ble_hs/ble_hs_return_codes.rst","network/docs/ble_sec.rst","network/docs/ble_setup/ble_addr.rst","network/docs/ble_setup/ble_lp_clock.rst","network/docs/ble_setup/ble_setup_intro.rst","network/docs/ble_setup/ble_sync_cb.rst","network/docs/btshell/btshell_GAP.rst","network/docs/btshell/btshell_GATT.rst","network/docs/btshell/btshell_advdata.rst","network/docs/btshell/btshell_api.rst","network/docs/index.rst","network/docs/mesh/index.rst","network/docs/mesh/sample.rst","newt/README.rst","newt/command_list/newt_build.rst","newt/command_list/newt_clean.rst","newt/command_list/newt_complete.rst","newt/command_list/newt_create_image.rst","newt/command_list/newt_debug.rst","newt/command_list/newt_help.rst","newt/command_list/newt_info.rst","newt/command_list/newt_install.rst","newt/command_list/newt_load.rst","newt/command_list/newt_mfg.rst","newt/command_list/newt_new.rst","newt/command_list/newt_pkg.rst","newt/command_list/newt_resign_image.rst","newt/command_list/newt_run.rst","newt/command_list/newt_size.rst","newt/command_list/newt_sync.rst","newt/command_list/newt_target.rst","newt/command_list/newt_test.rst","newt/command_list/newt_upgrade.rst","newt/command_list/newt_vals.rst","newt/command_list/newt_version.rst","newt/index.rst","newt/install/index.rst","newt/install/newt_linux.rst","newt/install/newt_mac.rst","newt/install/newt_windows.rst","newt/install/prev_releases.rst","newt/newt_operation.rst","newt/newt_ops.rst","newtmgr/README.rst","newtmgr/command_list/index.rst","newtmgr/command_list/newtmgr_config.rst","newtmgr/command_list/newtmgr_conn.rst","newtmgr/command_list/newtmgr_crash.rst","newtmgr/command_list/newtmgr_datetime.rst","newtmgr/command_list/newtmgr_echo.rst","newtmgr/command_list/newtmgr_fs.rst","newtmgr/command_list/newtmgr_image.rst","newtmgr/command_list/newtmgr_logs.rst","newtmgr/command_list/newtmgr_mpstats.rst","newtmgr/command_list/newtmgr_reset.rst","newtmgr/command_list/newtmgr_run.rst","newtmgr/command_list/newtmgr_stat.rst","newtmgr/command_list/newtmgr_taskstats.rst","newtmgr/index.rst","newtmgr/install/index.rst","newtmgr/install/install_linux.rst","newtmgr/install/install_mac.rst","newtmgr/install/install_windows.rst","newtmgr/install/prev_releases.rst","os/core_os/callout/callout.rst","os/core_os/context_switch/context_switch.rst","os/core_os/cputime/os_cputime.rst","os/core_os/event_queue/event_queue.rst","os/core_os/heap/heap.rst","os/core_os/mbuf/mbuf.rst","os/core_os/memory_pool/memory_pool.rst","os/core_os/mutex/mutex.rst","os/core_os/mynewt_os.rst","os/core_os/porting/port_bsp.rst","os/core_os/porting/port_cpu.rst","os/core_os/porting/port_mcu.rst","os/core_os/porting/port_os.rst","os/core_os/sanity/sanity.rst","os/core_os/semaphore/semaphore.rst","os/core_os/task/task.rst","os/core_os/time/os_time.rst","os/modules/baselibc.rst","os/modules/bootloader/bootloader.rst","os/modules/config/config.rst","os/modules/console/console.rst","os/modules/devmgmt/customize_newtmgr.rst","os/modules/devmgmt/newtmgr.rst","os/modules/devmgmt/oicmgr.rst","os/modules/drivers/driver.rst","os/modules/drivers/flash.rst","os/modules/drivers/mmc.rst","os/modules/elua/elua.rst","os/modules/elua/lua_init.rst","os/modules/elua/lua_main.rst","os/modules/fcb/fcb.rst","os/modules/fcb/fcb_append.rst","os/modules/fcb/fcb_append_finish.rst","os/modules/fcb/fcb_append_to_scratch.rst","os/modules/fcb/fcb_clear.rst","os/modules/fcb/fcb_getnext.rst","os/modules/fcb/fcb_init.rst","os/modules/fcb/fcb_is_empty.rst","os/modules/fcb/fcb_offset_last_n.rst","os/modules/fcb/fcb_rotate.rst","os/modules/fcb/fcb_walk.rst","os/modules/fs/fatfs.rst","os/modules/fs/fs.rst","os/modules/fs/fs_add.rst","os/modules/fs/nffs.rst","os/modules/fs/otherfs.rst","os/modules/hal/hal.rst","os/modules/hal/hal_bsp/hal_bsp.rst","os/modules/hal/hal_creation.rst","os/modules/hal/hal_flash/hal_flash.rst","os/modules/hal/hal_flash/hal_flash_int.rst","os/modules/hal/hal_gpio/hal_gpio.rst","os/modules/hal/hal_i2c/hal_i2c.rst","os/modules/hal/hal_in_libraries.rst","os/modules/hal/hal_os_tick/hal_os_tick.rst","os/modules/hal/hal_spi/hal_spi.rst","os/modules/hal/hal_system/hal_sys.rst","os/modules/hal/hal_timer/hal_timer.rst","os/modules/hal/hal_uart/hal_uart.rst","os/modules/hal/hal_watchdog/hal_watchdog.rst","os/modules/imgmgr/imgmgr.rst","os/modules/imgmgr/imgmgr_module_init.rst","os/modules/imgmgr/imgr_ver_parse.rst","os/modules/imgmgr/imgr_ver_str.rst","os/modules/json/json.rst","os/modules/logs/logs.rst","os/modules/sensor_framework/sensor_api.rst","os/modules/sensor_framework/sensor_create.rst","os/modules/sensor_framework/sensor_driver.rst","os/modules/sensor_framework/sensor_framework.rst","os/modules/sensor_framework/sensor_listener_api.rst","os/modules/sensor_framework/sensor_mgr_api.rst","os/modules/sensor_framework/sensor_notifier_api.rst","os/modules/sensor_framework/sensor_oic.rst","os/modules/sensor_framework/sensor_shell.rst","os/modules/shell/shell.rst","os/modules/split/split.rst","os/modules/stats/stats.rst","os/modules/sysinitconfig/sysconfig_error.rst","os/modules/sysinitconfig/sysinitconfig.rst","os/modules/system_modules.rst","os/modules/testutil/testutil.rst","os/os_user_guide.rst","os/tutorials/STM32F303.rst","os/tutorials/pin-wheel-mods.rst","tutorials/ble/ble.rst","tutorials/ble/ble_bare_bones.rst","tutorials/ble/blehci_project.rst","tutorials/ble/bleprph/bleprph.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-adv.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-app.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.rst","tutorials/ble/eddystone.rst","tutorials/ble/ibeacon.rst","tutorials/blinky/arduino_zero.rst","tutorials/blinky/blinky.rst","tutorials/blinky/blinky_console.rst","tutorials/blinky/blinky_primo.rst","tutorials/blinky/blinky_stm32f4disc.rst","tutorials/blinky/nRF52.rst","tutorials/blinky/olimex.rst","tutorials/blinky/rbnano2.rst","tutorials/devmgmt/add_newtmgr.rst","tutorials/devmgmt/devmgmt.rst","tutorials/devmgmt/ota_upgrade_nrf52.rst","tutorials/lora/lorawanapp.rst","tutorials/os_fundamentals/event_queue.rst","tutorials/os_fundamentals/os_fundamentals.rst","tutorials/os_fundamentals/tasks_lesson.rst","tutorials/other/codesize.rst","tutorials/other/other.rst","tutorials/other/unit_test.rst","tutorials/other/wi-fi_on_arduino.rst","tutorials/repo/add_repos.rst","tutorials/repo/create_repo.rst","tutorials/repo/private_repo.rst","tutorials/repo/upgrade_repo.rst","tutorials/sensors/air_quality.rst","tutorials/sensors/air_quality_ble.rst","tutorials/sensors/air_quality_sensor.rst","tutorials/sensors/nrf52_adc.rst","tutorials/sensors/sensor_bleprph_oic.rst","tutorials/sensors/sensor_nrf52_bno055.rst","tutorials/sensors/sensor_nrf52_bno055_oic.rst","tutorials/sensors/sensor_nrf52_drv2605.rst","tutorials/sensors/sensor_offboard_config.rst","tutorials/sensors/sensor_oic_overview.rst","tutorials/sensors/sensor_thingy_lis2dh12_onb.rst","tutorials/sensors/sensors.rst","tutorials/sensors/sensors_framework.rst","tutorials/slinky/project-nrf52-slinky.rst","tutorials/slinky/project-sim-slinky.rst","tutorials/slinky/project-slinky.rst","tutorials/slinky/project-stm32-slinky.rst","tutorials/tooling/segger_rtt.rst","tutorials/tooling/segger_sysview.rst","tutorials/tooling/tooling.rst","tutorials/tutorials.rst"],objects:{"":{"29":[28,0,1,"c.29"],"46":[30,0,1,"c.46"],"48":[30,0,1,"c.48"],"HALGpio::HAL_GPIO_MODE_IN":[148,2,1,"c.HALGpio::HAL_GPIO_MODE_IN"],"HALGpio::HAL_GPIO_MODE_NC":[148,2,1,"c.HALGpio::HAL_GPIO_MODE_NC"],"HALGpio::HAL_GPIO_MODE_OUT":[148,2,1,"c.HALGpio::HAL_GPIO_MODE_OUT"],"HALGpio::HAL_GPIO_PULL_DOWN":[148,2,1,"c.HALGpio::HAL_GPIO_PULL_DOWN"],"HALGpio::HAL_GPIO_PULL_NONE":[148,2,1,"c.HALGpio::HAL_GPIO_PULL_NONE"],"HALGpio::HAL_GPIO_PULL_UP":[148,2,1,"c.HALGpio::HAL_GPIO_PULL_UP"],"HALGpio::HAL_GPIO_TRIG_BOTH":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_BOTH"],"HALGpio::HAL_GPIO_TRIG_FALLING":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_FALLING"],"HALGpio::HAL_GPIO_TRIG_HIGH":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_HIGH"],"HALGpio::HAL_GPIO_TRIG_LOW":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_LOW"],"HALGpio::HAL_GPIO_TRIG_NONE":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_NONE"],"HALGpio::HAL_GPIO_TRIG_RISING":[148,2,1,"c.HALGpio::HAL_GPIO_TRIG_RISING"],"HALGpio::hal_gpio_irq_trigger":[148,3,1,"c.HALGpio::hal_gpio_irq_trigger"],"HALGpio::hal_gpio_mode_e":[148,3,1,"c.HALGpio::hal_gpio_mode_e"],"HALGpio::hal_gpio_pull":[148,3,1,"c.HALGpio::hal_gpio_pull"],"HALSystem::HAL_RESET_BROWNOUT":[153,2,1,"c.HALSystem::HAL_RESET_BROWNOUT"],"HALSystem::HAL_RESET_PIN":[153,2,1,"c.HALSystem::HAL_RESET_PIN"],"HALSystem::HAL_RESET_POR":[153,2,1,"c.HALSystem::HAL_RESET_POR"],"HALSystem::HAL_RESET_REQUESTED":[153,2,1,"c.HALSystem::HAL_RESET_REQUESTED"],"HALSystem::HAL_RESET_SOFT":[153,2,1,"c.HALSystem::HAL_RESET_SOFT"],"HALSystem::HAL_RESET_WATCHDOG":[153,2,1,"c.HALSystem::HAL_RESET_WATCHDOG"],"HALSystem::hal_reset_reason":[153,3,1,"c.HALSystem::hal_reset_reason"],"HALUart::HAL_UART_FLOW_CTL_NONE":[155,2,1,"c.HALUart::HAL_UART_FLOW_CTL_NONE"],"HALUart::HAL_UART_FLOW_CTL_RTS_CTS":[155,2,1,"c.HALUart::HAL_UART_FLOW_CTL_RTS_CTS"],"HALUart::HAL_UART_PARITY_EVEN":[155,2,1,"c.HALUart::HAL_UART_PARITY_EVEN"],"HALUart::HAL_UART_PARITY_NONE":[155,2,1,"c.HALUart::HAL_UART_PARITY_NONE"],"HALUart::HAL_UART_PARITY_ODD":[155,2,1,"c.HALUart::HAL_UART_PARITY_ODD"],"HALUart::hal_uart_flow_ctl":[155,3,1,"c.HALUart::hal_uart_flow_ctl"],"HALUart::hal_uart_parity":[155,3,1,"c.HALUart::hal_uart_parity"],"OSTask::OS_TASK_READY":[112,2,1,"c.OSTask::OS_TASK_READY"],"OSTask::OS_TASK_SLEEP":[112,2,1,"c.OSTask::OS_TASK_SLEEP"],"OSTask::os_task_state":[112,3,1,"c.OSTask::os_task_state"],"SensorAPI::SENSOR_EVENT_TYPE_DOUBLE_TAP":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_DOUBLE_TAP"],"SensorAPI::SENSOR_EVENT_TYPE_FREE_FALL":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_FREE_FALL"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_H_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_H_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_L_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_X_L_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_H_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_H_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_L_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Y_L_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_H_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_H_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_L_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_ORIENT_Z_L_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_SINGLE_TAP":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_SINGLE_TAP"],"SensorAPI::SENSOR_EVENT_TYPE_SLEEP":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_SLEEP"],"SensorAPI::SENSOR_EVENT_TYPE_SLEEP_CHANGE":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_SLEEP_CHANGE"],"SensorAPI::SENSOR_EVENT_TYPE_WAKEUP":[163,2,1,"c.SensorAPI::SENSOR_EVENT_TYPE_WAKEUP"],"SensorAPI::SENSOR_TYPE_ACCELEROMETER":[163,2,1,"c.SensorAPI::SENSOR_TYPE_ACCELEROMETER"],"SensorAPI::SENSOR_TYPE_ALL":[163,2,1,"c.SensorAPI::SENSOR_TYPE_ALL"],"SensorAPI::SENSOR_TYPE_ALTITUDE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_ALTITUDE"],"SensorAPI::SENSOR_TYPE_AMBIENT_TEMPERATURE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_AMBIENT_TEMPERATURE"],"SensorAPI::SENSOR_TYPE_COLOR":[163,2,1,"c.SensorAPI::SENSOR_TYPE_COLOR"],"SensorAPI::SENSOR_TYPE_EULER":[163,2,1,"c.SensorAPI::SENSOR_TYPE_EULER"],"SensorAPI::SENSOR_TYPE_GRAVITY":[163,2,1,"c.SensorAPI::SENSOR_TYPE_GRAVITY"],"SensorAPI::SENSOR_TYPE_GYROSCOPE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_GYROSCOPE"],"SensorAPI::SENSOR_TYPE_LIGHT":[163,2,1,"c.SensorAPI::SENSOR_TYPE_LIGHT"],"SensorAPI::SENSOR_TYPE_LINEAR_ACCEL":[163,2,1,"c.SensorAPI::SENSOR_TYPE_LINEAR_ACCEL"],"SensorAPI::SENSOR_TYPE_MAGNETIC_FIELD":[163,2,1,"c.SensorAPI::SENSOR_TYPE_MAGNETIC_FIELD"],"SensorAPI::SENSOR_TYPE_NONE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_NONE"],"SensorAPI::SENSOR_TYPE_PRESSURE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_PRESSURE"],"SensorAPI::SENSOR_TYPE_PROXIMITY":[163,2,1,"c.SensorAPI::SENSOR_TYPE_PROXIMITY"],"SensorAPI::SENSOR_TYPE_RELATIVE_HUMIDITY":[163,2,1,"c.SensorAPI::SENSOR_TYPE_RELATIVE_HUMIDITY"],"SensorAPI::SENSOR_TYPE_ROTATION_VECTOR":[163,2,1,"c.SensorAPI::SENSOR_TYPE_ROTATION_VECTOR"],"SensorAPI::SENSOR_TYPE_TEMPERATURE":[163,2,1,"c.SensorAPI::SENSOR_TYPE_TEMPERATURE"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_1":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_1"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_2":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_2"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_3":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_3"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_4":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_4"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_5":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_5"],"SensorAPI::SENSOR_TYPE_USER_DEFINED_6":[163,2,1,"c.SensorAPI::SENSOR_TYPE_USER_DEFINED_6"],"SensorAPI::SENSOR_TYPE_WEIGHT":[163,2,1,"c.SensorAPI::SENSOR_TYPE_WEIGHT"],"SensorAPI::sensor_event_type_t":[163,3,1,"c.SensorAPI::sensor_event_type_t"],"SensorAPI::sensor_type_t":[163,3,1,"c.SensorAPI::sensor_type_t"],"SysConfig::CONF_EXPORT_PERSIST":[116,2,1,"c.SysConfig::CONF_EXPORT_PERSIST"],"SysConfig::CONF_EXPORT_SHOW":[116,2,1,"c.SysConfig::CONF_EXPORT_SHOW"],"SysConfig::conf_export_tgt":[116,3,1,"c.SysConfig::conf_export_tgt"],"SysConfig::conf_type":[116,3,1,"c.SysConfig::conf_type"],"ble_gap_adv_params::channel_map":[28,0,1,"c.ble_gap_adv_params::channel_map"],"ble_gap_adv_params::conn_mode":[28,0,1,"c.ble_gap_adv_params::conn_mode"],"ble_gap_adv_params::disc_mode":[28,0,1,"c.ble_gap_adv_params::disc_mode"],"ble_gap_adv_params::filter_policy":[28,0,1,"c.ble_gap_adv_params::filter_policy"],"ble_gap_adv_params::high_duty_cycle":[28,0,1,"c.ble_gap_adv_params::high_duty_cycle"],"ble_gap_adv_params::itvl_max":[28,0,1,"c.ble_gap_adv_params::itvl_max"],"ble_gap_adv_params::itvl_min":[28,0,1,"c.ble_gap_adv_params::itvl_min"],"ble_gap_conn_desc::conn_handle":[28,0,1,"c.ble_gap_conn_desc::conn_handle"],"ble_gap_conn_desc::conn_itvl":[28,0,1,"c.ble_gap_conn_desc::conn_itvl"],"ble_gap_conn_desc::conn_latency":[28,0,1,"c.ble_gap_conn_desc::conn_latency"],"ble_gap_conn_desc::master_clock_accuracy":[28,0,1,"c.ble_gap_conn_desc::master_clock_accuracy"],"ble_gap_conn_desc::our_id_addr":[28,0,1,"c.ble_gap_conn_desc::our_id_addr"],"ble_gap_conn_desc::our_ota_addr":[28,0,1,"c.ble_gap_conn_desc::our_ota_addr"],"ble_gap_conn_desc::peer_id_addr":[28,0,1,"c.ble_gap_conn_desc::peer_id_addr"],"ble_gap_conn_desc::peer_ota_addr":[28,0,1,"c.ble_gap_conn_desc::peer_ota_addr"],"ble_gap_conn_desc::role":[28,0,1,"c.ble_gap_conn_desc::role"],"ble_gap_conn_desc::sec_state":[28,0,1,"c.ble_gap_conn_desc::sec_state"],"ble_gap_conn_desc::supervision_timeout":[28,0,1,"c.ble_gap_conn_desc::supervision_timeout"],"ble_gap_event::type":[28,0,1,"c.ble_gap_event::type"],"ble_gap_repeat_pairing::conn_handle":[28,0,1,"c.ble_gap_repeat_pairing::conn_handle"],"ble_gap_repeat_pairing::cur_key_size":[28,0,1,"c.ble_gap_repeat_pairing::cur_key_size"],"ble_gap_repeat_pairing::new_key_size":[28,0,1,"c.ble_gap_repeat_pairing::new_key_size"],"ble_gap_sec_state::authenticated":[28,0,1,"c.ble_gap_sec_state::authenticated"],"ble_gap_sec_state::bonded":[28,0,1,"c.ble_gap_sec_state::bonded"],"ble_gap_sec_state::encrypted":[28,0,1,"c.ble_gap_sec_state::encrypted"],"ble_gap_sec_state::key_size":[28,0,1,"c.ble_gap_sec_state::key_size"],"ble_gatt_access_ctxt::om":[30,0,1,"c.ble_gatt_access_ctxt::om"],"ble_gatt_access_ctxt::op":[30,0,1,"c.ble_gatt_access_ctxt::op"],"ble_gatt_chr_def::access_cb":[30,0,1,"c.ble_gatt_chr_def::access_cb"],"ble_gatt_chr_def::arg":[30,0,1,"c.ble_gatt_chr_def::arg"],"ble_gatt_chr_def::descriptors":[30,0,1,"c.ble_gatt_chr_def::descriptors"],"ble_gatt_chr_def::flags":[30,0,1,"c.ble_gatt_chr_def::flags"],"ble_gatt_chr_def::min_key_size":[30,0,1,"c.ble_gatt_chr_def::min_key_size"],"ble_gatt_chr_def::uuid":[30,0,1,"c.ble_gatt_chr_def::uuid"],"ble_gatt_chr_def::val_handle":[30,0,1,"c.ble_gatt_chr_def::val_handle"],"ble_gatt_dsc_def::access_cb":[30,0,1,"c.ble_gatt_dsc_def::access_cb"],"ble_gatt_dsc_def::arg":[30,0,1,"c.ble_gatt_dsc_def::arg"],"ble_gatt_dsc_def::att_flags":[30,0,1,"c.ble_gatt_dsc_def::att_flags"],"ble_gatt_dsc_def::min_key_size":[30,0,1,"c.ble_gatt_dsc_def::min_key_size"],"ble_gatt_dsc_def::uuid":[30,0,1,"c.ble_gatt_dsc_def::uuid"],"ble_gatt_register_ctxt::op":[30,0,1,"c.ble_gatt_register_ctxt::op"],"ble_gatt_svc_def::characteristics":[30,0,1,"c.ble_gatt_svc_def::characteristics"],"ble_gatt_svc_def::includes":[30,0,1,"c.ble_gatt_svc_def::includes"],"ble_gatt_svc_def::type":[30,0,1,"c.ble_gatt_svc_def::type"],"ble_gatt_svc_def::uuid":[30,0,1,"c.ble_gatt_svc_def::uuid"],"conf_handler::ch_commit":[116,0,1,"c.conf_handler::ch_commit"],"conf_handler::ch_export":[116,0,1,"c.conf_handler::ch_export"],"conf_handler::ch_get":[116,0,1,"c.conf_handler::ch_get"],"conf_handler::ch_name":[116,0,1,"c.conf_handler::ch_name"],"conf_handler::ch_set":[116,0,1,"c.conf_handler::ch_set"],"console_input::line":[117,0,1,"c.console_input::line"],"fcb::f_active":[127,0,1,"c.fcb::f_active"],"fcb::f_active_id":[127,0,1,"c.fcb::f_active_id"],"fcb::f_align":[127,0,1,"c.fcb::f_align"],"fcb::f_magic":[127,0,1,"c.fcb::f_magic"],"fcb::f_mtx":[127,0,1,"c.fcb::f_mtx"],"fcb::f_oldest":[127,0,1,"c.fcb::f_oldest"],"fcb::f_scratch_cnt":[127,0,1,"c.fcb::f_scratch_cnt"],"fcb::f_sector_cnt":[127,0,1,"c.fcb::f_sector_cnt"],"fcb::f_sectors":[127,0,1,"c.fcb::f_sectors"],"fcb::f_version":[127,0,1,"c.fcb::f_version"],"fcb_entry::fe_area":[127,0,1,"c.fcb_entry::fe_area"],"fcb_entry::fe_data_len":[127,0,1,"c.fcb_entry::fe_data_len"],"fcb_entry::fe_data_off":[127,0,1,"c.fcb_entry::fe_data_off"],"fcb_entry::fe_elem_off":[127,0,1,"c.fcb_entry::fe_elem_off"],"fcb_log::fl_entries":[127,0,1,"c.fcb_log::fl_entries"],"fcb_log::fl_fcb":[127,0,1,"c.fcb_log::fl_fcb"],"fcb_log::fl_watermark_off":[127,0,1,"c.fcb_log::fl_watermark_off"],"fops_container::fops":[140,0,1,"c.fops_container::fops"],"fs_ops::SLIST_ENTRY":[140,4,1,"c.fs_ops::SLIST_ENTRY"],"fs_ops::f_close":[140,0,1,"c.fs_ops::f_close"],"fs_ops::f_closedir":[140,0,1,"c.fs_ops::f_closedir"],"fs_ops::f_dirent_is_dir":[140,0,1,"c.fs_ops::f_dirent_is_dir"],"fs_ops::f_dirent_name":[140,0,1,"c.fs_ops::f_dirent_name"],"fs_ops::f_filelen":[140,0,1,"c.fs_ops::f_filelen"],"fs_ops::f_getpos":[140,0,1,"c.fs_ops::f_getpos"],"fs_ops::f_mkdir":[140,0,1,"c.fs_ops::f_mkdir"],"fs_ops::f_name":[140,0,1,"c.fs_ops::f_name"],"fs_ops::f_open":[140,0,1,"c.fs_ops::f_open"],"fs_ops::f_opendir":[140,0,1,"c.fs_ops::f_opendir"],"fs_ops::f_read":[140,0,1,"c.fs_ops::f_read"],"fs_ops::f_readdir":[140,0,1,"c.fs_ops::f_readdir"],"fs_ops::f_rename":[140,0,1,"c.fs_ops::f_rename"],"fs_ops::f_seek":[140,0,1,"c.fs_ops::f_seek"],"fs_ops::f_unlink":[140,0,1,"c.fs_ops::f_unlink"],"fs_ops::f_write":[140,0,1,"c.fs_ops::f_write"],"hal_i2c_master_data::address":[149,0,1,"c.hal_i2c_master_data::address"],"hal_i2c_master_data::buffer":[149,0,1,"c.hal_i2c_master_data::buffer"],"hal_i2c_master_data::len":[149,0,1,"c.hal_i2c_master_data::len"],"hal_spi_settings::baudrate":[152,0,1,"c.hal_spi_settings::baudrate"],"hal_spi_settings::data_mode":[152,0,1,"c.hal_spi_settings::data_mode"],"hal_spi_settings::data_order":[152,0,1,"c.hal_spi_settings::data_order"],"hal_spi_settings::word_size":[152,0,1,"c.hal_spi_settings::word_size"],"hal_timer::bsp_timer":[154,0,1,"c.hal_timer::bsp_timer"],"hal_timer::cb_arg":[154,0,1,"c.hal_timer::cb_arg"],"hal_timer::cb_func":[154,0,1,"c.hal_timer::cb_func"],"hal_timer::expiry":[154,0,1,"c.hal_timer::expiry"],"json_array_t::arr":[161,0,1,"c.json_array_t::arr"],"json_array_t::count":[161,0,1,"c.json_array_t::count"],"json_array_t::element_type":[161,0,1,"c.json_array_t::element_type"],"json_array_t::maxlen":[161,0,1,"c.json_array_t::maxlen"],"json_attr_t::addr":[161,0,1,"c.json_attr_t::addr"],"json_attr_t::attribute":[161,0,1,"c.json_attr_t::attribute"],"json_attr_t::dflt":[161,0,1,"c.json_attr_t::dflt"],"json_attr_t::len":[161,0,1,"c.json_attr_t::len"],"json_attr_t::map":[161,0,1,"c.json_attr_t::map"],"json_attr_t::nodefault":[161,0,1,"c.json_attr_t::nodefault"],"json_attr_t::type":[161,0,1,"c.json_attr_t::type"],"json_buffer::jb_read_next":[161,0,1,"c.json_buffer::jb_read_next"],"json_buffer::jb_read_prev":[161,0,1,"c.json_buffer::jb_read_prev"],"json_buffer::jb_readn":[161,0,1,"c.json_buffer::jb_readn"],"json_encoder::je_arg":[161,0,1,"c.json_encoder::je_arg"],"json_encoder::je_wr_commas":[161,0,1,"c.json_encoder::je_wr_commas"],"json_encoder::je_write":[161,0,1,"c.json_encoder::je_write"],"json_enum_t::name":[161,0,1,"c.json_enum_t::name"],"json_enum_t::value":[161,0,1,"c.json_enum_t::value"],"json_value::jv_len":[161,0,1,"c.json_value::jv_len"],"json_value::jv_pad1":[161,0,1,"c.json_value::jv_pad1"],"json_value::jv_type":[161,0,1,"c.json_value::jv_type"],"json_value::jv_val":[161,0,1,"c.json_value::jv_val"],"log::STAILQ_ENTRY":[162,4,1,"c.log::STAILQ_ENTRY"],"log::STATS_SECT_DECL":[162,4,1,"c.log::STATS_SECT_DECL"],"log::l_append_cb":[162,0,1,"c.log::l_append_cb"],"log::l_arg":[162,0,1,"c.log::l_arg"],"log::l_level":[162,0,1,"c.log::l_level"],"log::l_log":[162,0,1,"c.log::l_log"],"log::l_name":[162,0,1,"c.log::l_name"],"log_handler::log_append":[162,0,1,"c.log_handler::log_append"],"log_handler::log_append_body":[162,0,1,"c.log_handler::log_append_body"],"log_handler::log_append_mbuf":[162,0,1,"c.log_handler::log_append_mbuf"],"log_handler::log_append_mbuf_body":[162,0,1,"c.log_handler::log_append_mbuf_body"],"log_handler::log_flush":[162,0,1,"c.log_handler::log_flush"],"log_handler::log_read":[162,0,1,"c.log_handler::log_read"],"log_handler::log_read_mbuf":[162,0,1,"c.log_handler::log_read_mbuf"],"log_handler::log_registered":[162,0,1,"c.log_handler::log_registered"],"log_handler::log_set_watermark":[162,0,1,"c.log_handler::log_set_watermark"],"log_handler::log_storage_info":[162,0,1,"c.log_handler::log_storage_info"],"log_handler::log_type":[162,0,1,"c.log_handler::log_type"],"log_handler::log_walk":[162,0,1,"c.log_handler::log_walk"],"log_offset::lo_arg":[162,0,1,"c.log_offset::lo_arg"],"log_offset::lo_data_len":[162,0,1,"c.log_offset::lo_data_len"],"log_offset::lo_index":[162,0,1,"c.log_offset::lo_index"],"log_offset::lo_ts":[162,0,1,"c.log_offset::lo_ts"],"log_storage_info::size":[162,0,1,"c.log_storage_info::size"],"log_storage_info::used":[162,0,1,"c.log_storage_info::used"],"log_storage_info::used_unread":[162,0,1,"c.log_storage_info::used_unread"],"nffs_area_desc::nad_flash_id":[141,0,1,"c.nffs_area_desc::nad_flash_id"],"nffs_area_desc::nad_length":[141,0,1,"c.nffs_area_desc::nad_length"],"nffs_area_desc::nad_offset":[141,0,1,"c.nffs_area_desc::nad_offset"],"nffs_config::nc_num_blocks":[141,0,1,"c.nffs_config::nc_num_blocks"],"nffs_config::nc_num_cache_blocks":[141,0,1,"c.nffs_config::nc_num_cache_blocks"],"nffs_config::nc_num_cache_inodes":[141,0,1,"c.nffs_config::nc_num_cache_inodes"],"nffs_config::nc_num_dirs":[141,0,1,"c.nffs_config::nc_num_dirs"],"nffs_config::nc_num_files":[141,0,1,"c.nffs_config::nc_num_files"],"nffs_config::nc_num_inodes":[141,0,1,"c.nffs_config::nc_num_inodes"],"os_callout::c_ev":[97,0,1,"c.os_callout::c_ev"],"os_callout::c_evq":[97,0,1,"c.os_callout::c_evq"],"os_callout::c_ticks":[97,0,1,"c.os_callout::c_ticks"],"os_event::ev_arg":[100,0,1,"c.os_event::ev_arg"],"os_event::ev_cb":[100,0,1,"c.os_event::ev_cb"],"os_event::ev_queued":[100,0,1,"c.os_event::ev_queued"],"os_eventq::evq_owner":[100,0,1,"c.os_eventq::evq_owner"],"os_eventq::evq_task":[100,0,1,"c.os_eventq::evq_task"],"os_mbuf::om_data":[102,0,1,"c.os_mbuf::om_data"],"os_mbuf::om_flags":[102,0,1,"c.os_mbuf::om_flags"],"os_mbuf::om_len":[102,0,1,"c.os_mbuf::om_len"],"os_mbuf::om_omp":[102,0,1,"c.os_mbuf::om_omp"],"os_mbuf::om_pkthdr_len":[102,0,1,"c.os_mbuf::om_pkthdr_len"],"os_mbuf_pkthdr::omp_flags":[102,0,1,"c.os_mbuf_pkthdr::omp_flags"],"os_mbuf_pkthdr::omp_len":[102,0,1,"c.os_mbuf_pkthdr::omp_len"],"os_mbuf_pool::omp_databuf_len":[102,0,1,"c.os_mbuf_pool::omp_databuf_len"],"os_mbuf_pool::omp_pool":[102,0,1,"c.os_mbuf_pool::omp_pool"],"os_mempool::mp_block_size":[103,0,1,"c.os_mempool::mp_block_size"],"os_mempool::mp_flags":[103,0,1,"c.os_mempool::mp_flags"],"os_mempool::mp_membuf_addr":[103,0,1,"c.os_mempool::mp_membuf_addr"],"os_mempool::mp_min_free":[103,0,1,"c.os_mempool::mp_min_free"],"os_mempool::mp_num_blocks":[103,0,1,"c.os_mempool::mp_num_blocks"],"os_mempool::mp_num_free":[103,0,1,"c.os_mempool::mp_num_free"],"os_mempool::name":[103,0,1,"c.os_mempool::name"],"os_mempool_info::omi_block_size":[103,0,1,"c.os_mempool_info::omi_block_size"],"os_mempool_info::omi_min_free":[103,0,1,"c.os_mempool_info::omi_min_free"],"os_mempool_info::omi_num_blocks":[103,0,1,"c.os_mempool_info::omi_num_blocks"],"os_mempool_info::omi_num_free":[103,0,1,"c.os_mempool_info::omi_num_free"],"os_mqueue::mq_ev":[102,0,1,"c.os_mqueue::mq_ev"],"os_mutex::SLIST_HEAD":[104,4,1,"c.os_mutex::SLIST_HEAD"],"os_mutex::_pad":[104,0,1,"c.os_mutex::_pad"],"os_mutex::mu_level":[104,0,1,"c.os_mutex::mu_level"],"os_mutex::mu_owner":[104,0,1,"c.os_mutex::mu_owner"],"os_mutex::mu_prio":[104,0,1,"c.os_mutex::mu_prio"],"os_sanity_check::sc_arg":[110,0,1,"c.os_sanity_check::sc_arg"],"os_sanity_check::sc_checkin_itvl":[110,0,1,"c.os_sanity_check::sc_checkin_itvl"],"os_sanity_check::sc_checkin_last":[110,0,1,"c.os_sanity_check::sc_checkin_last"],"os_sanity_check::sc_func":[110,0,1,"c.os_sanity_check::sc_func"],"os_sem::sem_tokens":[111,0,1,"c.os_sem::sem_tokens"],"os_task::t_arg":[112,0,1,"c.os_task::t_arg"],"os_task::t_ctx_sw_cnt":[112,0,1,"c.os_task::t_ctx_sw_cnt"],"os_task::t_flags":[112,0,1,"c.os_task::t_flags"],"os_task::t_func":[112,0,1,"c.os_task::t_func"],"os_task::t_name":[112,0,1,"c.os_task::t_name"],"os_task::t_next_wakeup":[112,0,1,"c.os_task::t_next_wakeup"],"os_task::t_obj":[112,0,1,"c.os_task::t_obj"],"os_task::t_prio":[112,0,1,"c.os_task::t_prio"],"os_task::t_run_time":[112,0,1,"c.os_task::t_run_time"],"os_task::t_sanity_check":[112,0,1,"c.os_task::t_sanity_check"],"os_task::t_stackptr":[112,0,1,"c.os_task::t_stackptr"],"os_task::t_stacksize":[112,0,1,"c.os_task::t_stacksize"],"os_task::t_stacktop":[112,0,1,"c.os_task::t_stacktop"],"os_task::t_taskid":[112,0,1,"c.os_task::t_taskid"],"os_task_info::oti_cswcnt":[112,0,1,"c.os_task_info::oti_cswcnt"],"os_task_info::oti_last_checkin":[112,0,1,"c.os_task_info::oti_last_checkin"],"os_task_info::oti_next_checkin":[112,0,1,"c.os_task_info::oti_next_checkin"],"os_task_info::oti_prio":[112,0,1,"c.os_task_info::oti_prio"],"os_task_info::oti_runtime":[112,0,1,"c.os_task_info::oti_runtime"],"os_task_info::oti_state":[112,0,1,"c.os_task_info::oti_state"],"os_task_info::oti_stksize":[112,0,1,"c.os_task_info::oti_stksize"],"os_task_info::oti_stkusage":[112,0,1,"c.os_task_info::oti_stkusage"],"os_task_info::oti_taskid":[112,0,1,"c.os_task_info::oti_taskid"],"os_time_change_info::tci_cur_tv":[113,0,1,"c.os_time_change_info::tci_cur_tv"],"os_time_change_info::tci_cur_tz":[113,0,1,"c.os_time_change_info::tci_cur_tz"],"os_time_change_info::tci_newly_synced":[113,0,1,"c.os_time_change_info::tci_newly_synced"],"os_time_change_info::tci_prev_tv":[113,0,1,"c.os_time_change_info::tci_prev_tv"],"os_time_change_info::tci_prev_tz":[113,0,1,"c.os_time_change_info::tci_prev_tz"],"os_timezone::tz_dsttime":[113,0,1,"c.os_timezone::tz_dsttime"],"os_timezone::tz_minuteswest":[113,0,1,"c.os_timezone::tz_minuteswest"],"sensor::s_poll_rate":[163,0,1,"c.sensor::s_poll_rate"],"sensor_data_t::sad":[163,0,1,"c.sensor_data_t::sad"],"sensor_data_t::satd":[163,0,1,"c.sensor_data_t::satd"],"sensor_data_t::scd":[163,0,1,"c.sensor_data_t::scd"],"sensor_data_t::sed":[163,0,1,"c.sensor_data_t::sed"],"sensor_data_t::sgd":[163,0,1,"c.sensor_data_t::sgd"],"sensor_data_t::sgrd":[163,0,1,"c.sensor_data_t::sgrd"],"sensor_data_t::slad":[163,0,1,"c.sensor_data_t::slad"],"sensor_data_t::sld":[163,0,1,"c.sensor_data_t::sld"],"sensor_data_t::smd":[163,0,1,"c.sensor_data_t::smd"],"sensor_data_t::spd":[163,0,1,"c.sensor_data_t::spd"],"sensor_data_t::sqd":[163,0,1,"c.sensor_data_t::sqd"],"sensor_data_t::srhd":[163,0,1,"c.sensor_data_t::srhd"],"sensor_data_t::std":[163,0,1,"c.sensor_data_t::std"],"shell_cmd::help":[172,0,1,"c.shell_cmd::help"],"shell_cmd::sc_cmd":[172,0,1,"c.shell_cmd::sc_cmd"],"shell_cmd::sc_cmd_func":[172,0,1,"c.shell_cmd::sc_cmd_func"],"shell_cmd_help::params":[172,0,1,"c.shell_cmd_help::params"],"shell_cmd_help::summary":[172,0,1,"c.shell_cmd_help::summary"],"shell_cmd_help::usage":[172,0,1,"c.shell_cmd_help::usage"],"shell_module::commands":[172,0,1,"c.shell_module::commands"],"shell_module::name":[172,0,1,"c.shell_module::name"],"shell_param::help":[172,0,1,"c.shell_param::help"],"shell_param::param_name":[172,0,1,"c.shell_param::param_name"],"stats_hdr::STAILQ_ENTRY":[174,4,1,"c.stats_hdr::STAILQ_ENTRY"],"stats_hdr::s_cnt":[174,0,1,"c.stats_hdr::s_cnt"],"stats_hdr::s_map":[174,0,1,"c.stats_hdr::s_map"],"stats_hdr::s_map_cnt":[174,0,1,"c.stats_hdr::s_map_cnt"],"stats_hdr::s_name":[174,0,1,"c.stats_hdr::s_name"],"stats_hdr::s_pad1":[174,0,1,"c.stats_hdr::s_pad1"],"stats_hdr::s_size":[174,0,1,"c.stats_hdr::s_size"],"stats_name_map::snm_name":[174,0,1,"c.stats_name_map::snm_name"],"stats_name_map::snm_off":[174,0,1,"c.stats_name_map::snm_off"],ARG10:[178,1,1,"c.ARG10"],ASSERT_IF_TEST:[178,1,1,"c.ASSERT_IF_TEST"],BLE_GAP_ADV_DFLT_CHANNEL_MAP:[28,1,1,"c.BLE_GAP_ADV_DFLT_CHANNEL_MAP"],BLE_GAP_ADV_FAST_INTERVAL1_MAX:[28,1,1,"c.BLE_GAP_ADV_FAST_INTERVAL1_MAX"],BLE_GAP_ADV_FAST_INTERVAL1_MIN:[28,1,1,"c.BLE_GAP_ADV_FAST_INTERVAL1_MIN"],BLE_GAP_ADV_FAST_INTERVAL2_MAX:[28,1,1,"c.BLE_GAP_ADV_FAST_INTERVAL2_MAX"],BLE_GAP_ADV_FAST_INTERVAL2_MIN:[28,1,1,"c.BLE_GAP_ADV_FAST_INTERVAL2_MIN"],BLE_GAP_CONN_DUR_DFLT:[28,1,1,"c.BLE_GAP_CONN_DUR_DFLT"],BLE_GAP_CONN_MODE_DIR:[28,1,1,"c.BLE_GAP_CONN_MODE_DIR"],BLE_GAP_CONN_MODE_NON:[28,1,1,"c.BLE_GAP_CONN_MODE_NON"],BLE_GAP_CONN_MODE_UND:[28,1,1,"c.BLE_GAP_CONN_MODE_UND"],BLE_GAP_CONN_PAUSE_CENTRAL:[28,1,1,"c.BLE_GAP_CONN_PAUSE_CENTRAL"],BLE_GAP_CONN_PAUSE_PERIPHERAL:[28,1,1,"c.BLE_GAP_CONN_PAUSE_PERIPHERAL"],BLE_GAP_DISC_DUR_DFLT:[28,1,1,"c.BLE_GAP_DISC_DUR_DFLT"],BLE_GAP_DISC_MODE_GEN:[28,1,1,"c.BLE_GAP_DISC_MODE_GEN"],BLE_GAP_DISC_MODE_LTD:[28,1,1,"c.BLE_GAP_DISC_MODE_LTD"],BLE_GAP_DISC_MODE_NON:[28,1,1,"c.BLE_GAP_DISC_MODE_NON"],BLE_GAP_EVENT_ADV_COMPLETE:[28,1,1,"c.BLE_GAP_EVENT_ADV_COMPLETE"],BLE_GAP_EVENT_CONNECT:[28,1,1,"c.BLE_GAP_EVENT_CONNECT"],BLE_GAP_EVENT_CONN_UPDATE:[28,1,1,"c.BLE_GAP_EVENT_CONN_UPDATE"],BLE_GAP_EVENT_CONN_UPDATE_REQ:[28,1,1,"c.BLE_GAP_EVENT_CONN_UPDATE_REQ"],BLE_GAP_EVENT_DISC:[28,1,1,"c.BLE_GAP_EVENT_DISC"],BLE_GAP_EVENT_DISCONNECT:[28,1,1,"c.BLE_GAP_EVENT_DISCONNECT"],BLE_GAP_EVENT_DISC_COMPLETE:[28,1,1,"c.BLE_GAP_EVENT_DISC_COMPLETE"],BLE_GAP_EVENT_ENC_CHANGE:[28,1,1,"c.BLE_GAP_EVENT_ENC_CHANGE"],BLE_GAP_EVENT_EXT_DISC:[28,1,1,"c.BLE_GAP_EVENT_EXT_DISC"],BLE_GAP_EVENT_IDENTITY_RESOLVED:[28,1,1,"c.BLE_GAP_EVENT_IDENTITY_RESOLVED"],BLE_GAP_EVENT_L2CAP_UPDATE_REQ:[28,1,1,"c.BLE_GAP_EVENT_L2CAP_UPDATE_REQ"],BLE_GAP_EVENT_MTU:[28,1,1,"c.BLE_GAP_EVENT_MTU"],BLE_GAP_EVENT_NOTIFY_RX:[28,1,1,"c.BLE_GAP_EVENT_NOTIFY_RX"],BLE_GAP_EVENT_NOTIFY_TX:[28,1,1,"c.BLE_GAP_EVENT_NOTIFY_TX"],BLE_GAP_EVENT_PASSKEY_ACTION:[28,1,1,"c.BLE_GAP_EVENT_PASSKEY_ACTION"],BLE_GAP_EVENT_PHY_UPDATE_COMPLETE:[28,1,1,"c.BLE_GAP_EVENT_PHY_UPDATE_COMPLETE"],BLE_GAP_EVENT_REPEAT_PAIRING:[28,1,1,"c.BLE_GAP_EVENT_REPEAT_PAIRING"],BLE_GAP_EVENT_SUBSCRIBE:[28,1,1,"c.BLE_GAP_EVENT_SUBSCRIBE"],BLE_GAP_EVENT_TERM_FAILURE:[28,1,1,"c.BLE_GAP_EVENT_TERM_FAILURE"],BLE_GAP_EXT_ADV_DATA_STATUS_COMPLETE:[28,1,1,"c.BLE_GAP_EXT_ADV_DATA_STATUS_COMPLETE"],BLE_GAP_EXT_ADV_DATA_STATUS_INCOMPLETE:[28,1,1,"c.BLE_GAP_EXT_ADV_DATA_STATUS_INCOMPLETE"],BLE_GAP_EXT_ADV_DATA_STATUS_TRUNCATED:[28,1,1,"c.BLE_GAP_EXT_ADV_DATA_STATUS_TRUNCATED"],BLE_GAP_INITIAL_CONN_ITVL_MAX:[28,1,1,"c.BLE_GAP_INITIAL_CONN_ITVL_MAX"],BLE_GAP_INITIAL_CONN_ITVL_MIN:[28,1,1,"c.BLE_GAP_INITIAL_CONN_ITVL_MIN"],BLE_GAP_INITIAL_CONN_LATENCY:[28,1,1,"c.BLE_GAP_INITIAL_CONN_LATENCY"],BLE_GAP_INITIAL_CONN_MAX_CE_LEN:[28,1,1,"c.BLE_GAP_INITIAL_CONN_MAX_CE_LEN"],BLE_GAP_INITIAL_CONN_MIN_CE_LEN:[28,1,1,"c.BLE_GAP_INITIAL_CONN_MIN_CE_LEN"],BLE_GAP_INITIAL_SUPERVISION_TIMEOUT:[28,1,1,"c.BLE_GAP_INITIAL_SUPERVISION_TIMEOUT"],BLE_GAP_LE_PHY_1M:[28,1,1,"c.BLE_GAP_LE_PHY_1M"],BLE_GAP_LE_PHY_1M_MASK:[28,1,1,"c.BLE_GAP_LE_PHY_1M_MASK"],BLE_GAP_LE_PHY_2M:[28,1,1,"c.BLE_GAP_LE_PHY_2M"],BLE_GAP_LE_PHY_2M_MASK:[28,1,1,"c.BLE_GAP_LE_PHY_2M_MASK"],BLE_GAP_LE_PHY_ANY_MASK:[28,1,1,"c.BLE_GAP_LE_PHY_ANY_MASK"],BLE_GAP_LE_PHY_CODED:[28,1,1,"c.BLE_GAP_LE_PHY_CODED"],BLE_GAP_LE_PHY_CODED_ANY:[28,1,1,"c.BLE_GAP_LE_PHY_CODED_ANY"],BLE_GAP_LE_PHY_CODED_MASK:[28,1,1,"c.BLE_GAP_LE_PHY_CODED_MASK"],BLE_GAP_LE_PHY_CODED_S2:[28,1,1,"c.BLE_GAP_LE_PHY_CODED_S2"],BLE_GAP_LE_PHY_CODED_S8:[28,1,1,"c.BLE_GAP_LE_PHY_CODED_S8"],BLE_GAP_LIM_DISC_SCAN_INT:[28,1,1,"c.BLE_GAP_LIM_DISC_SCAN_INT"],BLE_GAP_LIM_DISC_SCAN_WINDOW:[28,1,1,"c.BLE_GAP_LIM_DISC_SCAN_WINDOW"],BLE_GAP_PRIVATE_MODE_DEVICE:[28,1,1,"c.BLE_GAP_PRIVATE_MODE_DEVICE"],BLE_GAP_PRIVATE_MODE_NETWORK:[28,1,1,"c.BLE_GAP_PRIVATE_MODE_NETWORK"],BLE_GAP_REPEAT_PAIRING_IGNORE:[28,1,1,"c.BLE_GAP_REPEAT_PAIRING_IGNORE"],BLE_GAP_REPEAT_PAIRING_RETRY:[28,1,1,"c.BLE_GAP_REPEAT_PAIRING_RETRY"],BLE_GAP_ROLE_MASTER:[28,1,1,"c.BLE_GAP_ROLE_MASTER"],BLE_GAP_ROLE_SLAVE:[28,1,1,"c.BLE_GAP_ROLE_SLAVE"],BLE_GAP_SCAN_FAST_INTERVAL_MAX:[28,1,1,"c.BLE_GAP_SCAN_FAST_INTERVAL_MAX"],BLE_GAP_SCAN_FAST_INTERVAL_MIN:[28,1,1,"c.BLE_GAP_SCAN_FAST_INTERVAL_MIN"],BLE_GAP_SCAN_FAST_PERIOD:[28,1,1,"c.BLE_GAP_SCAN_FAST_PERIOD"],BLE_GAP_SCAN_FAST_WINDOW:[28,1,1,"c.BLE_GAP_SCAN_FAST_WINDOW"],BLE_GAP_SCAN_SLOW_INTERVAL1:[28,1,1,"c.BLE_GAP_SCAN_SLOW_INTERVAL1"],BLE_GAP_SCAN_SLOW_WINDOW1:[28,1,1,"c.BLE_GAP_SCAN_SLOW_WINDOW1"],BLE_GAP_SUBSCRIBE_REASON_RESTORE:[28,1,1,"c.BLE_GAP_SUBSCRIBE_REASON_RESTORE"],BLE_GAP_SUBSCRIBE_REASON_TERM:[28,1,1,"c.BLE_GAP_SUBSCRIBE_REASON_TERM"],BLE_GAP_SUBSCRIBE_REASON_WRITE:[28,1,1,"c.BLE_GAP_SUBSCRIBE_REASON_WRITE"],BLE_GATT_ACCESS_OP_READ_CHR:[30,1,1,"c.BLE_GATT_ACCESS_OP_READ_CHR"],BLE_GATT_ACCESS_OP_READ_DSC:[30,1,1,"c.BLE_GATT_ACCESS_OP_READ_DSC"],BLE_GATT_ACCESS_OP_WRITE_CHR:[30,1,1,"c.BLE_GATT_ACCESS_OP_WRITE_CHR"],BLE_GATT_ACCESS_OP_WRITE_DSC:[30,1,1,"c.BLE_GATT_ACCESS_OP_WRITE_DSC"],BLE_GATT_CHR_F_AUTH_SIGN_WRITE:[30,1,1,"c.BLE_GATT_CHR_F_AUTH_SIGN_WRITE"],BLE_GATT_CHR_F_AUX_WRITE:[30,1,1,"c.BLE_GATT_CHR_F_AUX_WRITE"],BLE_GATT_CHR_F_BROADCAST:[30,1,1,"c.BLE_GATT_CHR_F_BROADCAST"],BLE_GATT_CHR_F_INDICATE:[30,1,1,"c.BLE_GATT_CHR_F_INDICATE"],BLE_GATT_CHR_F_NOTIFY:[30,1,1,"c.BLE_GATT_CHR_F_NOTIFY"],BLE_GATT_CHR_F_READ:[30,1,1,"c.BLE_GATT_CHR_F_READ"],BLE_GATT_CHR_F_READ_AUTHEN:[30,1,1,"c.BLE_GATT_CHR_F_READ_AUTHEN"],BLE_GATT_CHR_F_READ_AUTHOR:[30,1,1,"c.BLE_GATT_CHR_F_READ_AUTHOR"],BLE_GATT_CHR_F_READ_ENC:[30,1,1,"c.BLE_GATT_CHR_F_READ_ENC"],BLE_GATT_CHR_F_RELIABLE_WRITE:[30,1,1,"c.BLE_GATT_CHR_F_RELIABLE_WRITE"],BLE_GATT_CHR_F_WRITE:[30,1,1,"c.BLE_GATT_CHR_F_WRITE"],BLE_GATT_CHR_F_WRITE_AUTHEN:[30,1,1,"c.BLE_GATT_CHR_F_WRITE_AUTHEN"],BLE_GATT_CHR_F_WRITE_AUTHOR:[30,1,1,"c.BLE_GATT_CHR_F_WRITE_AUTHOR"],BLE_GATT_CHR_F_WRITE_ENC:[30,1,1,"c.BLE_GATT_CHR_F_WRITE_ENC"],BLE_GATT_CHR_F_WRITE_NO_RSP:[30,1,1,"c.BLE_GATT_CHR_F_WRITE_NO_RSP"],BLE_GATT_CHR_PROP_AUTH_SIGN_WRITE:[30,1,1,"c.BLE_GATT_CHR_PROP_AUTH_SIGN_WRITE"],BLE_GATT_CHR_PROP_BROADCAST:[30,1,1,"c.BLE_GATT_CHR_PROP_BROADCAST"],BLE_GATT_CHR_PROP_EXTENDED:[30,1,1,"c.BLE_GATT_CHR_PROP_EXTENDED"],BLE_GATT_CHR_PROP_INDICATE:[30,1,1,"c.BLE_GATT_CHR_PROP_INDICATE"],BLE_GATT_CHR_PROP_NOTIFY:[30,1,1,"c.BLE_GATT_CHR_PROP_NOTIFY"],BLE_GATT_CHR_PROP_READ:[30,1,1,"c.BLE_GATT_CHR_PROP_READ"],BLE_GATT_CHR_PROP_WRITE:[30,1,1,"c.BLE_GATT_CHR_PROP_WRITE"],BLE_GATT_CHR_PROP_WRITE_NO_RSP:[30,1,1,"c.BLE_GATT_CHR_PROP_WRITE_NO_RSP"],BLE_GATT_DSC_CLT_CFG_UUID16:[30,1,1,"c.BLE_GATT_DSC_CLT_CFG_UUID16"],BLE_GATT_REGISTER_OP_CHR:[30,1,1,"c.BLE_GATT_REGISTER_OP_CHR"],BLE_GATT_REGISTER_OP_DSC:[30,1,1,"c.BLE_GATT_REGISTER_OP_DSC"],BLE_GATT_REGISTER_OP_SVC:[30,1,1,"c.BLE_GATT_REGISTER_OP_SVC"],BLE_GATT_SVC_TYPE_END:[30,1,1,"c.BLE_GATT_SVC_TYPE_END"],BLE_GATT_SVC_TYPE_PRIMARY:[30,1,1,"c.BLE_GATT_SVC_TYPE_PRIMARY"],BLE_GATT_SVC_TYPE_SECONDARY:[30,1,1,"c.BLE_GATT_SVC_TYPE_SECONDARY"],BLE_GATT_SVC_UUID16:[30,1,1,"c.BLE_GATT_SVC_UUID16"],BLE_HS_CONN_HANDLE_NONE:[27,1,1,"c.BLE_HS_CONN_HANDLE_NONE"],BLE_HS_FOREVER:[27,1,1,"c.BLE_HS_FOREVER"],CONF_STR_FROM_BYTES_LEN:[116,1,1,"c.CONF_STR_FROM_BYTES_LEN"],CONF_VALUE_SET:[116,1,1,"c.CONF_VALUE_SET"],CPUTIME_GEQ:[99,1,1,"c.CPUTIME_GEQ"],CPUTIME_GT:[99,1,1,"c.CPUTIME_GT"],CPUTIME_LEQ:[99,1,1,"c.CPUTIME_LEQ"],CPUTIME_LT:[99,1,1,"c.CPUTIME_LT"],FCB_ERR_ARGS:[127,1,1,"c.FCB_ERR_ARGS"],FCB_ERR_CRC:[127,1,1,"c.FCB_ERR_CRC"],FCB_ERR_FLASH:[127,1,1,"c.FCB_ERR_FLASH"],FCB_ERR_MAGIC:[127,1,1,"c.FCB_ERR_MAGIC"],FCB_ERR_NOMEM:[127,1,1,"c.FCB_ERR_NOMEM"],FCB_ERR_NOSPACE:[127,1,1,"c.FCB_ERR_NOSPACE"],FCB_ERR_NOVAR:[127,1,1,"c.FCB_ERR_NOVAR"],FCB_ERR_VERSION:[127,1,1,"c.FCB_ERR_VERSION"],FCB_MAX_LEN:[127,1,1,"c.FCB_MAX_LEN"],FCB_OK:[127,1,1,"c.FCB_OK"],FIRST:[178,1,1,"c.FIRST"],FIRST_AUX:[178,1,1,"c.FIRST_AUX"],FS_ACCESS_APPEND:[139,1,1,"c.FS_ACCESS_APPEND"],FS_ACCESS_READ:[139,1,1,"c.FS_ACCESS_READ"],FS_ACCESS_TRUNCATE:[139,1,1,"c.FS_ACCESS_TRUNCATE"],FS_ACCESS_WRITE:[139,1,1,"c.FS_ACCESS_WRITE"],FS_EACCESS:[139,1,1,"c.FS_EACCESS"],FS_ECORRUPT:[139,1,1,"c.FS_ECORRUPT"],FS_EEMPTY:[139,1,1,"c.FS_EEMPTY"],FS_EEXIST:[139,1,1,"c.FS_EEXIST"],FS_EFULL:[139,1,1,"c.FS_EFULL"],FS_EHW:[139,1,1,"c.FS_EHW"],FS_EINVAL:[139,1,1,"c.FS_EINVAL"],FS_ENOENT:[139,1,1,"c.FS_ENOENT"],FS_ENOMEM:[139,1,1,"c.FS_ENOMEM"],FS_EOFFSET:[139,1,1,"c.FS_EOFFSET"],FS_EOK:[139,1,1,"c.FS_EOK"],FS_EOS:[139,1,1,"c.FS_EOS"],FS_EUNEXP:[139,1,1,"c.FS_EUNEXP"],FS_EUNINIT:[139,1,1,"c.FS_EUNINIT"],FS_NMGR_ID_FILE:[139,1,1,"c.FS_NMGR_ID_FILE"],FS_NMGR_MAX_NAME:[139,1,1,"c.FS_NMGR_MAX_NAME"],HAL_BSP_MAX_ID_LEN:[144,1,1,"c.HAL_BSP_MAX_ID_LEN"],HAL_BSP_POWER_DEEP_SLEEP:[144,1,1,"c.HAL_BSP_POWER_DEEP_SLEEP"],HAL_BSP_POWER_OFF:[144,1,1,"c.HAL_BSP_POWER_OFF"],HAL_BSP_POWER_ON:[144,1,1,"c.HAL_BSP_POWER_ON"],HAL_BSP_POWER_PERUSER:[144,1,1,"c.HAL_BSP_POWER_PERUSER"],HAL_BSP_POWER_SLEEP:[144,1,1,"c.HAL_BSP_POWER_SLEEP"],HAL_BSP_POWER_WFI:[144,1,1,"c.HAL_BSP_POWER_WFI"],HAL_I2C_ERR_ADDR_NACK:[149,1,1,"c.HAL_I2C_ERR_ADDR_NACK"],HAL_I2C_ERR_DATA_NACK:[149,1,1,"c.HAL_I2C_ERR_DATA_NACK"],HAL_I2C_ERR_INVAL:[149,1,1,"c.HAL_I2C_ERR_INVAL"],HAL_I2C_ERR_TIMEOUT:[149,1,1,"c.HAL_I2C_ERR_TIMEOUT"],HAL_I2C_ERR_UNKNOWN:[149,1,1,"c.HAL_I2C_ERR_UNKNOWN"],HAL_SPI_LSB_FIRST:[152,1,1,"c.HAL_SPI_LSB_FIRST"],HAL_SPI_MODE0:[152,1,1,"c.HAL_SPI_MODE0"],HAL_SPI_MODE1:[152,1,1,"c.HAL_SPI_MODE1"],HAL_SPI_MODE2:[152,1,1,"c.HAL_SPI_MODE2"],HAL_SPI_MODE3:[152,1,1,"c.HAL_SPI_MODE3"],HAL_SPI_MSB_FIRST:[152,1,1,"c.HAL_SPI_MSB_FIRST"],HAL_SPI_TYPE_MASTER:[152,1,1,"c.HAL_SPI_TYPE_MASTER"],HAL_SPI_TYPE_SLAVE:[152,1,1,"c.HAL_SPI_TYPE_SLAVE"],HAL_SPI_WORD_SIZE_8BIT:[152,1,1,"c.HAL_SPI_WORD_SIZE_8BIT"],HAL_SPI_WORD_SIZE_9BIT:[152,1,1,"c.HAL_SPI_WORD_SIZE_9BIT"],INT32_MAX:[113,1,1,"c.INT32_MAX"],JSON_ATTR_MAX:[161,1,1,"c.JSON_ATTR_MAX"],JSON_ERR_ARRAYSTART:[161,1,1,"c.JSON_ERR_ARRAYSTART"],JSON_ERR_ATTRLEN:[161,1,1,"c.JSON_ERR_ATTRLEN"],JSON_ERR_ATTRSTART:[161,1,1,"c.JSON_ERR_ATTRSTART"],JSON_ERR_BADATTR:[161,1,1,"c.JSON_ERR_BADATTR"],JSON_ERR_BADENUM:[161,1,1,"c.JSON_ERR_BADENUM"],JSON_ERR_BADNUM:[161,1,1,"c.JSON_ERR_BADNUM"],JSON_ERR_BADSTRING:[161,1,1,"c.JSON_ERR_BADSTRING"],JSON_ERR_BADSUBTRAIL:[161,1,1,"c.JSON_ERR_BADSUBTRAIL"],JSON_ERR_BADTRAIL:[161,1,1,"c.JSON_ERR_BADTRAIL"],JSON_ERR_CHECKFAIL:[161,1,1,"c.JSON_ERR_CHECKFAIL"],JSON_ERR_MISC:[161,1,1,"c.JSON_ERR_MISC"],JSON_ERR_NOARRAY:[161,1,1,"c.JSON_ERR_NOARRAY"],JSON_ERR_NOBRAK:[161,1,1,"c.JSON_ERR_NOBRAK"],JSON_ERR_NONQSTRING:[161,1,1,"c.JSON_ERR_NONQSTRING"],JSON_ERR_NOPARSTR:[161,1,1,"c.JSON_ERR_NOPARSTR"],JSON_ERR_NULLPTR:[161,1,1,"c.JSON_ERR_NULLPTR"],JSON_ERR_OBJARR:[161,1,1,"c.JSON_ERR_OBJARR"],JSON_ERR_OBSTART:[161,1,1,"c.JSON_ERR_OBSTART"],JSON_ERR_QNONSTRING:[161,1,1,"c.JSON_ERR_QNONSTRING"],JSON_ERR_STRLONG:[161,1,1,"c.JSON_ERR_STRLONG"],JSON_ERR_SUBTOOLONG:[161,1,1,"c.JSON_ERR_SUBTOOLONG"],JSON_ERR_SUBTYPE:[161,1,1,"c.JSON_ERR_SUBTYPE"],JSON_ERR_TOKLONG:[161,1,1,"c.JSON_ERR_TOKLONG"],JSON_NITEMS:[161,1,1,"c.JSON_NITEMS"],JSON_STRUCT_ARRAY:[161,1,1,"c.JSON_STRUCT_ARRAY"],JSON_STRUCT_OBJECT:[161,1,1,"c.JSON_STRUCT_OBJECT"],JSON_VALUE_BOOL:[161,1,1,"c.JSON_VALUE_BOOL"],JSON_VALUE_INT:[161,1,1,"c.JSON_VALUE_INT"],JSON_VALUE_STRING:[161,1,1,"c.JSON_VALUE_STRING"],JSON_VALUE_STRINGN:[161,1,1,"c.JSON_VALUE_STRINGN"],JSON_VALUE_TYPE_ARRAY:[161,1,1,"c.JSON_VALUE_TYPE_ARRAY"],JSON_VALUE_TYPE_BOOL:[161,1,1,"c.JSON_VALUE_TYPE_BOOL"],JSON_VALUE_TYPE_INT64:[161,1,1,"c.JSON_VALUE_TYPE_INT64"],JSON_VALUE_TYPE_OBJECT:[161,1,1,"c.JSON_VALUE_TYPE_OBJECT"],JSON_VALUE_TYPE_STRING:[161,1,1,"c.JSON_VALUE_TYPE_STRING"],JSON_VALUE_TYPE_UINT64:[161,1,1,"c.JSON_VALUE_TYPE_UINT64"],JSON_VALUE_UINT:[161,1,1,"c.JSON_VALUE_UINT"],JSON_VAL_MAX:[161,1,1,"c.JSON_VAL_MAX"],LOG_CRITICAL:[162,1,1,"c.LOG_CRITICAL"],LOG_DEBUG:[162,1,1,"c.LOG_DEBUG"],LOG_ENTRY_HDR_SIZE:[162,1,1,"c.LOG_ENTRY_HDR_SIZE"],LOG_ERROR:[162,1,1,"c.LOG_ERROR"],LOG_INFO:[162,1,1,"c.LOG_INFO"],LOG_MODULE_STR:[162,1,1,"c.LOG_MODULE_STR"],LOG_STATS_INC:[162,1,1,"c.LOG_STATS_INC"],LOG_STATS_INCN:[162,1,1,"c.LOG_STATS_INCN"],LOG_WARN:[162,1,1,"c.LOG_WARN"],NFFS_FILENAME_MAX_LEN:[141,1,1,"c.NFFS_FILENAME_MAX_LEN"],NFFS_MAX_AREAS:[141,1,1,"c.NFFS_MAX_AREAS"],NUM:[178,1,1,"c.NUM"],OS_EVENT_QUEUED:[100,1,1,"c.OS_EVENT_QUEUED"],OS_MBUF_DATA:[102,1,1,"c.OS_MBUF_DATA"],OS_MBUF_F_MASK:[102,1,1,"c.OS_MBUF_F_MASK"],OS_MBUF_IS_PKTHDR:[102,1,1,"c.OS_MBUF_IS_PKTHDR"],OS_MBUF_LEADINGSPACE:[102,1,1,"c.OS_MBUF_LEADINGSPACE"],OS_MBUF_PKTHDR:[102,1,1,"c.OS_MBUF_PKTHDR"],OS_MBUF_PKTHDR_TO_MBUF:[102,1,1,"c.OS_MBUF_PKTHDR_TO_MBUF"],OS_MBUF_PKTLEN:[102,1,1,"c.OS_MBUF_PKTLEN"],OS_MBUF_TRAILINGSPACE:[102,1,1,"c.OS_MBUF_TRAILINGSPACE"],OS_MBUF_USRHDR:[102,1,1,"c.OS_MBUF_USRHDR"],OS_MBUF_USRHDR_LEN:[102,1,1,"c.OS_MBUF_USRHDR_LEN"],OS_MEMPOOL_BLOCK_SZ:[103,1,1,"c.OS_MEMPOOL_BLOCK_SZ"],OS_MEMPOOL_BYTES:[103,1,1,"c.OS_MEMPOOL_BYTES"],OS_MEMPOOL_F_EXT:[103,1,1,"c.OS_MEMPOOL_F_EXT"],OS_MEMPOOL_INFO_NAME_LEN:[103,1,1,"c.OS_MEMPOOL_INFO_NAME_LEN"],OS_MEMPOOL_SIZE:[103,1,1,"c.OS_MEMPOOL_SIZE"],OS_SANITY_CHECK_SETFUNC:[110,1,1,"c.OS_SANITY_CHECK_SETFUNC"],OS_STIME_MAX:[113,1,1,"c.OS_STIME_MAX"],OS_TASK_FLAG_EVQ_WAIT:[112,1,1,"c.OS_TASK_FLAG_EVQ_WAIT"],OS_TASK_FLAG_MUTEX_WAIT:[112,1,1,"c.OS_TASK_FLAG_MUTEX_WAIT"],OS_TASK_FLAG_NO_TIMEOUT:[112,1,1,"c.OS_TASK_FLAG_NO_TIMEOUT"],OS_TASK_FLAG_SEM_WAIT:[112,1,1,"c.OS_TASK_FLAG_SEM_WAIT"],OS_TASK_MAX_NAME_LEN:[112,1,1,"c.OS_TASK_MAX_NAME_LEN"],OS_TASK_PRI_HIGHEST:[112,1,1,"c.OS_TASK_PRI_HIGHEST"],OS_TASK_PRI_LOWEST:[112,1,1,"c.OS_TASK_PRI_LOWEST"],OS_TASK_STACK_DEFINE:[112,1,1,"c.OS_TASK_STACK_DEFINE"],OS_TASK_STACK_DEFINE_NOSTATIC:[112,1,1,"c.OS_TASK_STACK_DEFINE_NOSTATIC"],OS_TIMEOUT_NEVER:[113,1,1,"c.OS_TIMEOUT_NEVER"],OS_TIMEVAL_GEQ:[113,1,1,"c.OS_TIMEVAL_GEQ"],OS_TIMEVAL_GT:[113,1,1,"c.OS_TIMEVAL_GT"],OS_TIMEVAL_LEQ:[113,1,1,"c.OS_TIMEVAL_LEQ"],OS_TIMEVAL_LT:[113,1,1,"c.OS_TIMEVAL_LT"],OS_TIME_MAX:[113,1,1,"c.OS_TIME_MAX"],OS_TIME_TICK_GEQ:[113,1,1,"c.OS_TIME_TICK_GEQ"],OS_TIME_TICK_GT:[113,1,1,"c.OS_TIME_TICK_GT"],OS_TIME_TICK_LT:[113,1,1,"c.OS_TIME_TICK_LT"],REST_OR_0:[178,1,1,"c.REST_OR_0"],REST_OR_0_AUX:[178,1,1,"c.REST_OR_0_AUX"],REST_OR_0_AUX_1:[178,1,1,"c.REST_OR_0_AUX_1"],REST_OR_0_AUX_INNER:[178,1,1,"c.REST_OR_0_AUX_INNER"],REST_OR_0_AUX_N:[178,1,1,"c.REST_OR_0_AUX_N"],SENSOR_DATA_CMP_GT:[163,1,1,"c.SENSOR_DATA_CMP_GT"],SENSOR_DATA_CMP_LT:[163,1,1,"c.SENSOR_DATA_CMP_LT"],SENSOR_GET_DEVICE:[163,1,1,"c.SENSOR_GET_DEVICE"],SENSOR_GET_ITF:[163,1,1,"c.SENSOR_GET_ITF"],SENSOR_IGN_LISTENER:[163,1,1,"c.SENSOR_IGN_LISTENER"],SENSOR_ITF_I2C:[163,1,1,"c.SENSOR_ITF_I2C"],SENSOR_ITF_SPI:[163,1,1,"c.SENSOR_ITF_SPI"],SENSOR_ITF_UART:[163,1,1,"c.SENSOR_ITF_UART"],SENSOR_THRESH_ALGO_USERDEF:[163,1,1,"c.SENSOR_THRESH_ALGO_USERDEF"],SENSOR_THRESH_ALGO_WATERMARK:[163,1,1,"c.SENSOR_THRESH_ALGO_WATERMARK"],SENSOR_THRESH_ALGO_WINDOW:[163,1,1,"c.SENSOR_THRESH_ALGO_WINDOW"],SENSOR_VALUE_TYPE_FLOAT:[163,1,1,"c.SENSOR_VALUE_TYPE_FLOAT"],SENSOR_VALUE_TYPE_FLOAT_TRIPLET:[163,1,1,"c.SENSOR_VALUE_TYPE_FLOAT_TRIPLET"],SENSOR_VALUE_TYPE_INT32:[163,1,1,"c.SENSOR_VALUE_TYPE_INT32"],SENSOR_VALUE_TYPE_INT32_TRIPLET:[163,1,1,"c.SENSOR_VALUE_TYPE_INT32_TRIPLET"],SENSOR_VALUE_TYPE_OPAQUE:[163,1,1,"c.SENSOR_VALUE_TYPE_OPAQUE"],SLIST_HEAD:[178,4,1,"c.SLIST_HEAD"],STANDARD_ACCEL_GRAVITY:[163,1,1,"c.STANDARD_ACCEL_GRAVITY"],STATS_CLEAR:[174,1,1,"c.STATS_CLEAR"],STATS_GET:[174,1,1,"c.STATS_GET"],STATS_HDR:[174,1,1,"c.STATS_HDR"],STATS_INC:[174,1,1,"c.STATS_INC"],STATS_INCN:[174,1,1,"c.STATS_INCN"],STATS_NAME:[174,1,1,"c.STATS_NAME"],STATS_NAME_END:[174,1,1,"c.STATS_NAME_END"],STATS_NAME_INIT_PARMS:[174,1,1,"c.STATS_NAME_INIT_PARMS"],STATS_NAME_MAP_NAME:[174,1,1,"c.STATS_NAME_MAP_NAME"],STATS_NAME_START:[174,1,1,"c.STATS_NAME_START"],STATS_RESET:[174,1,1,"c.STATS_RESET"],STATS_SECT_DECL:[174,1,1,"c.STATS_SECT_DECL"],STATS_SECT_END:[174,1,1,"c.STATS_SECT_END"],STATS_SECT_ENTRY16:[174,1,1,"c.STATS_SECT_ENTRY16"],STATS_SECT_ENTRY32:[174,1,1,"c.STATS_SECT_ENTRY32"],STATS_SECT_ENTRY64:[174,1,1,"c.STATS_SECT_ENTRY64"],STATS_SECT_ENTRY:[174,1,1,"c.STATS_SECT_ENTRY"],STATS_SECT_START:[174,1,1,"c.STATS_SECT_START"],STATS_SECT_VAR:[174,1,1,"c.STATS_SECT_VAR"],STATS_SIZE_16:[174,1,1,"c.STATS_SIZE_16"],STATS_SIZE_32:[174,1,1,"c.STATS_SIZE_32"],STATS_SIZE_64:[174,1,1,"c.STATS_SIZE_64"],STATS_SIZE_INIT_PARMS:[174,1,1,"c.STATS_SIZE_INIT_PARMS"],STR:[178,1,1,"c.STR"],TEST_ASSERT:[178,1,1,"c.TEST_ASSERT"],TEST_ASSERT_FATAL:[178,1,1,"c.TEST_ASSERT_FATAL"],TEST_ASSERT_FULL:[178,1,1,"c.TEST_ASSERT_FULL"],TEST_CASE:[178,1,1,"c.TEST_CASE"],TEST_CASE_DECL:[178,1,1,"c.TEST_CASE_DECL"],TEST_CASE_DEFN:[178,1,1,"c.TEST_CASE_DEFN"],TEST_CASE_TASK:[178,1,1,"c.TEST_CASE_TASK"],TEST_PASS:[178,1,1,"c.TEST_PASS"],TEST_SUITE:[178,1,1,"c.TEST_SUITE"],TEST_SUITE_DECL:[178,1,1,"c.TEST_SUITE_DECL"],TEST_SUITE_REGISTER:[178,1,1,"c.TEST_SUITE_REGISTER"],XSTR:[178,1,1,"c.XSTR"],_sbrk:[144,4,1,"c._sbrk"],ble_gap_adv_active:[28,4,1,"c.ble_gap_adv_active"],ble_gap_adv_params:[28,8,1,"_CPPv318ble_gap_adv_params"],ble_gap_adv_rsp_set_data:[28,4,1,"c.ble_gap_adv_rsp_set_data"],ble_gap_adv_rsp_set_fields:[28,4,1,"c.ble_gap_adv_rsp_set_fields"],ble_gap_adv_set_data:[28,4,1,"c.ble_gap_adv_set_data"],ble_gap_adv_set_fields:[28,4,1,"c.ble_gap_adv_set_fields"],ble_gap_adv_start:[28,4,1,"c.ble_gap_adv_start"],ble_gap_adv_stop:[28,4,1,"c.ble_gap_adv_stop"],ble_gap_conn_active:[28,4,1,"c.ble_gap_conn_active"],ble_gap_conn_cancel:[28,4,1,"c.ble_gap_conn_cancel"],ble_gap_conn_desc:[28,8,1,"_CPPv317ble_gap_conn_desc"],ble_gap_conn_find:[28,4,1,"c.ble_gap_conn_find"],ble_gap_conn_find_by_addr:[28,4,1,"c.ble_gap_conn_find_by_addr"],ble_gap_conn_rssi:[28,4,1,"c.ble_gap_conn_rssi"],ble_gap_connect:[28,4,1,"c.ble_gap_connect"],ble_gap_disc:[28,4,1,"c.ble_gap_disc"],ble_gap_disc_active:[28,4,1,"c.ble_gap_disc_active"],ble_gap_disc_cancel:[28,4,1,"c.ble_gap_disc_cancel"],ble_gap_encryption_initiate:[28,4,1,"c.ble_gap_encryption_initiate"],ble_gap_event:[28,8,1,"_CPPv313ble_gap_event"],ble_gap_event_fn:[28,5,1,"c.ble_gap_event_fn"],ble_gap_event_listener:[28,8,1,"_CPPv322ble_gap_event_listener"],ble_gap_event_listener_register:[28,4,1,"c.ble_gap_event_listener_register"],ble_gap_event_listener_unregister:[28,4,1,"c.ble_gap_event_listener_unregister"],ble_gap_ext_adv_configure:[28,4,1,"c.ble_gap_ext_adv_configure"],ble_gap_ext_adv_remove:[28,4,1,"c.ble_gap_ext_adv_remove"],ble_gap_ext_adv_rsp_set_data:[28,4,1,"c.ble_gap_ext_adv_rsp_set_data"],ble_gap_ext_adv_set_addr:[28,4,1,"c.ble_gap_ext_adv_set_addr"],ble_gap_ext_adv_set_data:[28,4,1,"c.ble_gap_ext_adv_set_data"],ble_gap_ext_adv_start:[28,4,1,"c.ble_gap_ext_adv_start"],ble_gap_ext_adv_stop:[28,4,1,"c.ble_gap_ext_adv_stop"],ble_gap_ext_connect:[28,4,1,"c.ble_gap_ext_connect"],ble_gap_ext_disc:[28,4,1,"c.ble_gap_ext_disc"],ble_gap_mesh_cb_register:[28,4,1,"c.ble_gap_mesh_cb_register"],ble_gap_pair_initiate:[28,4,1,"c.ble_gap_pair_initiate"],ble_gap_read_le_phy:[28,4,1,"c.ble_gap_read_le_phy"],ble_gap_repeat_pairing:[28,8,1,"_CPPv322ble_gap_repeat_pairing"],ble_gap_sec_state:[28,8,1,"_CPPv317ble_gap_sec_state"],ble_gap_security_initiate:[28,4,1,"c.ble_gap_security_initiate"],ble_gap_set_event_cb:[28,4,1,"c.ble_gap_set_event_cb"],ble_gap_set_prefered_default_le_phy:[28,4,1,"c.ble_gap_set_prefered_default_le_phy"],ble_gap_set_prefered_le_phy:[28,4,1,"c.ble_gap_set_prefered_le_phy"],ble_gap_set_priv_mode:[28,4,1,"c.ble_gap_set_priv_mode"],ble_gap_terminate:[28,4,1,"c.ble_gap_terminate"],ble_gap_unpair:[28,4,1,"c.ble_gap_unpair"],ble_gap_unpair_oldest_peer:[28,4,1,"c.ble_gap_unpair_oldest_peer"],ble_gap_update_params:[28,4,1,"c.ble_gap_update_params"],ble_gap_wl_set:[28,4,1,"c.ble_gap_wl_set"],ble_gatt_access_ctxt:[30,8,1,"_CPPv320ble_gatt_access_ctxt"],ble_gatt_access_fn:[30,5,1,"c.ble_gatt_access_fn"],ble_gatt_attr_fn:[30,5,1,"c.ble_gatt_attr_fn"],ble_gatt_chr_def:[30,8,1,"_CPPv316ble_gatt_chr_def"],ble_gatt_chr_flags:[30,5,1,"c.ble_gatt_chr_flags"],ble_gatt_chr_fn:[30,5,1,"c.ble_gatt_chr_fn"],ble_gatt_disc_svc_fn:[30,5,1,"c.ble_gatt_disc_svc_fn"],ble_gatt_dsc_def:[30,8,1,"_CPPv316ble_gatt_dsc_def"],ble_gatt_dsc_fn:[30,5,1,"c.ble_gatt_dsc_fn"],ble_gatt_mtu_fn:[30,5,1,"c.ble_gatt_mtu_fn"],ble_gatt_register_ctxt:[30,8,1,"_CPPv322ble_gatt_register_ctxt"],ble_gatt_register_fn:[30,5,1,"c.ble_gatt_register_fn"],ble_gatt_reliable_attr_fn:[30,5,1,"c.ble_gatt_reliable_attr_fn"],ble_gatt_svc_def:[30,8,1,"_CPPv316ble_gatt_svc_def"],ble_gatt_svc_foreach_fn:[30,5,1,"c.ble_gatt_svc_foreach_fn"],ble_gattc_disc_all_chrs:[30,4,1,"c.ble_gattc_disc_all_chrs"],ble_gattc_disc_all_dscs:[30,4,1,"c.ble_gattc_disc_all_dscs"],ble_gattc_disc_all_svcs:[30,4,1,"c.ble_gattc_disc_all_svcs"],ble_gattc_disc_chrs_by_uuid:[30,4,1,"c.ble_gattc_disc_chrs_by_uuid"],ble_gattc_disc_svc_by_uuid:[30,4,1,"c.ble_gattc_disc_svc_by_uuid"],ble_gattc_exchange_mtu:[30,4,1,"c.ble_gattc_exchange_mtu"],ble_gattc_find_inc_svcs:[30,4,1,"c.ble_gattc_find_inc_svcs"],ble_gattc_indicate:[30,4,1,"c.ble_gattc_indicate"],ble_gattc_indicate_custom:[30,4,1,"c.ble_gattc_indicate_custom"],ble_gattc_init:[30,4,1,"c.ble_gattc_init"],ble_gattc_notify:[30,4,1,"c.ble_gattc_notify"],ble_gattc_notify_custom:[30,4,1,"c.ble_gattc_notify_custom"],ble_gattc_read:[30,4,1,"c.ble_gattc_read"],ble_gattc_read_by_uuid:[30,4,1,"c.ble_gattc_read_by_uuid"],ble_gattc_read_long:[30,4,1,"c.ble_gattc_read_long"],ble_gattc_read_mult:[30,4,1,"c.ble_gattc_read_mult"],ble_gattc_write:[30,4,1,"c.ble_gattc_write"],ble_gattc_write_flat:[30,4,1,"c.ble_gattc_write_flat"],ble_gattc_write_long:[30,4,1,"c.ble_gattc_write_long"],ble_gattc_write_no_rsp:[30,4,1,"c.ble_gattc_write_no_rsp"],ble_gattc_write_no_rsp_flat:[30,4,1,"c.ble_gattc_write_no_rsp_flat"],ble_gattc_write_reliable:[30,4,1,"c.ble_gattc_write_reliable"],ble_gatts_add_svcs:[30,4,1,"c.ble_gatts_add_svcs"],ble_gatts_chr_updated:[30,4,1,"c.ble_gatts_chr_updated"],ble_gatts_count_cfg:[30,4,1,"c.ble_gatts_count_cfg"],ble_gatts_find_chr:[30,4,1,"c.ble_gatts_find_chr"],ble_gatts_find_dsc:[30,4,1,"c.ble_gatts_find_dsc"],ble_gatts_find_svc:[30,4,1,"c.ble_gatts_find_svc"],ble_gatts_reset:[30,4,1,"c.ble_gatts_reset"],ble_gatts_show_local:[30,4,1,"c.ble_gatts_show_local"],ble_gatts_start:[30,4,1,"c.ble_gatts_start"],ble_gatts_svc_set_visibility:[30,4,1,"c.ble_gatts_svc_set_visibility"],ble_hs_evq_set:[27,4,1,"c.ble_hs_evq_set"],ble_hs_init:[27,4,1,"c.ble_hs_init"],ble_hs_sched_reset:[27,4,1,"c.ble_hs_sched_reset"],ble_hs_start:[27,4,1,"c.ble_hs_start"],ble_hs_synced:[27,4,1,"c.ble_hs_synced"],completion_cb:[117,5,1,"c.completion_cb"],conf_bytes_from_str:[116,4,1,"c.conf_bytes_from_str"],conf_commit:[116,4,1,"c.conf_commit"],conf_commit_handler_t:[116,5,1,"c.conf_commit_handler_t"],conf_dst_register:[116,4,1,"c.conf_dst_register"],conf_ensure_loaded:[116,4,1,"c.conf_ensure_loaded"],conf_export_func_t:[116,5,1,"c.conf_export_func_t"],conf_export_handler_t:[116,5,1,"c.conf_export_handler_t"],conf_export_tgt_t:[116,5,1,"c.conf_export_tgt_t"],conf_get_handler_t:[116,5,1,"c.conf_get_handler_t"],conf_get_stored_value:[116,4,1,"c.conf_get_stored_value"],conf_get_value:[116,4,1,"c.conf_get_value"],conf_handler:[116,8,1,"_CPPv312conf_handler"],conf_init:[116,4,1,"c.conf_init"],conf_load:[116,4,1,"c.conf_load"],conf_register:[116,4,1,"c.conf_register"],conf_save:[116,4,1,"c.conf_save"],conf_save_one:[116,4,1,"c.conf_save_one"],conf_save_tree:[116,4,1,"c.conf_save_tree"],conf_set_from_storage:[116,4,1,"c.conf_set_from_storage"],conf_set_handler_t:[116,5,1,"c.conf_set_handler_t"],conf_set_value:[116,4,1,"c.conf_set_value"],conf_src_register:[116,4,1,"c.conf_src_register"],conf_store_init:[116,4,1,"c.conf_store_init"],conf_store_load_cb:[116,5,1,"c.conf_store_load_cb"],conf_str_from_bytes:[116,4,1,"c.conf_str_from_bytes"],conf_str_from_value:[116,4,1,"c.conf_str_from_value"],conf_value_from_str:[116,4,1,"c.conf_value_from_str"],console_append_char_cb:[117,5,1,"c.console_append_char_cb"],console_blocking_mode:[117,4,1,"c.console_blocking_mode"],console_echo:[117,4,1,"c.console_echo"],console_handle_char:[117,4,1,"c.console_handle_char"],console_init:[117,4,1,"c.console_init"],console_input:[117,6,1,"c.console_input"],console_is_init:[117,4,1,"c.console_is_init"],console_is_midline:[117,0,1,"c.console_is_midline"],console_line_event_put:[117,4,1,"c.console_line_event_put"],console_line_queue_set:[117,4,1,"c.console_line_queue_set"],console_non_blocking_mode:[117,4,1,"c.console_non_blocking_mode"],console_out:[117,4,1,"c.console_out"],console_printf:[117,4,1,"c.console_printf"],console_read:[117,4,1,"c.console_read"],console_rx_cb:[117,5,1,"c.console_rx_cb"],console_rx_restart:[117,4,1,"c.console_rx_restart"],console_set_completion_cb:[117,4,1,"c.console_set_completion_cb"],console_silence:[117,4,1,"c.console_silence"],console_write:[117,4,1,"c.console_write"],fcb_append:[127,4,1,"c.fcb_append"],fcb_append_finish:[127,4,1,"c.fcb_append_finish"],fcb_append_to_scratch:[127,4,1,"c.fcb_append_to_scratch"],fcb_area_info:[127,4,1,"c.fcb_area_info"],fcb_clear:[127,4,1,"c.fcb_clear"],fcb_entry:[127,8,1,"_CPPv39fcb_entry"],fcb_free_sector_cnt:[127,4,1,"c.fcb_free_sector_cnt"],fcb_getnext:[127,4,1,"c.fcb_getnext"],fcb_init:[127,4,1,"c.fcb_init"],fcb_is_empty:[127,4,1,"c.fcb_is_empty"],fcb_log:[127,8,1,"_CPPv37fcb_log"],fcb_offset_last_n:[127,4,1,"c.fcb_offset_last_n"],fcb_rotate:[127,4,1,"c.fcb_rotate"],fcb_walk:[127,4,1,"c.fcb_walk"],fcb_walk_cb:[127,5,1,"c.fcb_walk_cb"],fops_container:[140,6,1,"c.fops_container"],fs_close:[139,4,1,"c.fs_close"],fs_closedir:[139,4,1,"c.fs_closedir"],fs_dirent_is_dir:[139,4,1,"c.fs_dirent_is_dir"],fs_dirent_name:[139,4,1,"c.fs_dirent_name"],fs_filelen:[139,4,1,"c.fs_filelen"],fs_getpos:[139,4,1,"c.fs_getpos"],fs_mkdir:[139,4,1,"c.fs_mkdir"],fs_open:[139,4,1,"c.fs_open"],fs_opendir:[139,4,1,"c.fs_opendir"],fs_ops:[140,6,1,"c.fs_ops"],fs_ops_for:[140,4,1,"c.fs_ops_for"],fs_ops_from_container:[140,4,1,"c.fs_ops_from_container"],fs_ops_try_unique:[140,4,1,"c.fs_ops_try_unique"],fs_read:[139,4,1,"c.fs_read"],fs_readdir:[139,4,1,"c.fs_readdir"],fs_register:[140,4,1,"c.fs_register"],fs_rename:[139,4,1,"c.fs_rename"],fs_seek:[139,4,1,"c.fs_seek"],fs_unlink:[139,4,1,"c.fs_unlink"],fs_write:[139,4,1,"c.fs_write"],fsutil_read_file:[139,4,1,"c.fsutil_read_file"],fsutil_write_file:[139,4,1,"c.fsutil_write_file"],g_silence_console:[117,0,1,"c.g_silence_console"],g_ts_suites:[178,0,1,"c.g_ts_suites"],hal_bsp_core_dump:[144,4,1,"c.hal_bsp_core_dump"],hal_bsp_flash_dev:[144,4,1,"c.hal_bsp_flash_dev"],hal_bsp_get_nvic_priority:[144,4,1,"c.hal_bsp_get_nvic_priority"],hal_bsp_hw_id:[144,4,1,"c.hal_bsp_hw_id"],hal_bsp_hw_id_len:[144,4,1,"c.hal_bsp_hw_id_len"],hal_bsp_init:[144,4,1,"c.hal_bsp_init"],hal_bsp_power_state:[144,4,1,"c.hal_bsp_power_state"],hal_debugger_connected:[153,4,1,"c.hal_debugger_connected"],hal_flash_align:[146,4,1,"c.hal_flash_align"],hal_flash_erase:[146,4,1,"c.hal_flash_erase"],hal_flash_erase_sector:[146,4,1,"c.hal_flash_erase_sector"],hal_flash_erased_val:[146,4,1,"c.hal_flash_erased_val"],hal_flash_init:[146,4,1,"c.hal_flash_init"],hal_flash_ioctl:[146,4,1,"c.hal_flash_ioctl"],hal_flash_isempty:[146,4,1,"c.hal_flash_isempty"],hal_flash_isempty_no_buf:[146,4,1,"c.hal_flash_isempty_no_buf"],hal_flash_read:[146,4,1,"c.hal_flash_read"],hal_flash_write:[146,4,1,"c.hal_flash_write"],hal_gpio_init_in:[148,4,1,"c.hal_gpio_init_in"],hal_gpio_init_out:[148,4,1,"c.hal_gpio_init_out"],hal_gpio_irq_disable:[148,4,1,"c.hal_gpio_irq_disable"],hal_gpio_irq_enable:[148,4,1,"c.hal_gpio_irq_enable"],hal_gpio_irq_handler_t:[148,5,1,"c.hal_gpio_irq_handler_t"],hal_gpio_irq_init:[148,4,1,"c.hal_gpio_irq_init"],hal_gpio_irq_release:[148,4,1,"c.hal_gpio_irq_release"],hal_gpio_irq_trig_t:[148,5,1,"c.hal_gpio_irq_trig_t"],hal_gpio_mode_t:[148,5,1,"c.hal_gpio_mode_t"],hal_gpio_pull_t:[148,5,1,"c.hal_gpio_pull_t"],hal_gpio_read:[148,4,1,"c.hal_gpio_read"],hal_gpio_toggle:[148,4,1,"c.hal_gpio_toggle"],hal_gpio_write:[148,4,1,"c.hal_gpio_write"],hal_i2c_init:[149,4,1,"c.hal_i2c_init"],hal_i2c_master_data:[149,8,1,"_CPPv319hal_i2c_master_data"],hal_i2c_master_probe:[149,4,1,"c.hal_i2c_master_probe"],hal_i2c_master_read:[149,4,1,"c.hal_i2c_master_read"],hal_i2c_master_write:[149,4,1,"c.hal_i2c_master_write"],hal_reset_cause:[153,4,1,"c.hal_reset_cause"],hal_reset_cause_str:[153,4,1,"c.hal_reset_cause_str"],hal_spi_abort:[152,4,1,"c.hal_spi_abort"],hal_spi_config:[152,4,1,"c.hal_spi_config"],hal_spi_data_mode_breakout:[152,4,1,"c.hal_spi_data_mode_breakout"],hal_spi_disable:[152,4,1,"c.hal_spi_disable"],hal_spi_enable:[152,4,1,"c.hal_spi_enable"],hal_spi_init:[152,4,1,"c.hal_spi_init"],hal_spi_set_txrx_cb:[152,4,1,"c.hal_spi_set_txrx_cb"],hal_spi_settings:[152,8,1,"_CPPv316hal_spi_settings"],hal_spi_slave_set_def_tx_val:[152,4,1,"c.hal_spi_slave_set_def_tx_val"],hal_spi_tx_val:[152,4,1,"c.hal_spi_tx_val"],hal_spi_txrx:[152,4,1,"c.hal_spi_txrx"],hal_spi_txrx_cb:[152,5,1,"c.hal_spi_txrx_cb"],hal_spi_txrx_noblock:[152,4,1,"c.hal_spi_txrx_noblock"],hal_system_clock_start:[153,4,1,"c.hal_system_clock_start"],hal_system_reset:[153,4,1,"c.hal_system_reset"],hal_system_restart:[153,4,1,"c.hal_system_restart"],hal_system_start:[153,4,1,"c.hal_system_start"],hal_timer:[154,8,1,"_CPPv39hal_timer"],hal_timer_cb:[154,5,1,"c.hal_timer_cb"],hal_timer_config:[154,4,1,"c.hal_timer_config"],hal_timer_deinit:[154,4,1,"c.hal_timer_deinit"],hal_timer_delay:[154,4,1,"c.hal_timer_delay"],hal_timer_get_resolution:[154,4,1,"c.hal_timer_get_resolution"],hal_timer_init:[154,4,1,"c.hal_timer_init"],hal_timer_read:[154,4,1,"c.hal_timer_read"],hal_timer_set_cb:[154,4,1,"c.hal_timer_set_cb"],hal_timer_start:[154,4,1,"c.hal_timer_start"],hal_timer_start_at:[154,4,1,"c.hal_timer_start_at"],hal_timer_stop:[154,4,1,"c.hal_timer_stop"],hal_uart_blocking_tx:[155,4,1,"c.hal_uart_blocking_tx"],hal_uart_close:[155,4,1,"c.hal_uart_close"],hal_uart_config:[155,4,1,"c.hal_uart_config"],hal_uart_init:[155,4,1,"c.hal_uart_init"],hal_uart_init_cbs:[155,4,1,"c.hal_uart_init_cbs"],hal_uart_rx_char:[155,5,1,"c.hal_uart_rx_char"],hal_uart_start_rx:[155,4,1,"c.hal_uart_start_rx"],hal_uart_start_tx:[155,4,1,"c.hal_uart_start_tx"],hal_uart_tx_char:[155,5,1,"c.hal_uart_tx_char"],hal_uart_tx_done:[155,5,1,"c.hal_uart_tx_done"],hal_watchdog_enable:[156,4,1,"c.hal_watchdog_enable"],hal_watchdog_init:[156,4,1,"c.hal_watchdog_init"],hal_watchdog_tickle:[156,4,1,"c.hal_watchdog_tickle"],json_array_t:[161,6,1,"c.json_array_t"],json_attr_t:[161,6,1,"c.json_attr_t"],json_buffer:[161,6,1,"c.json_buffer"],json_buffer_read_next_byte_t:[161,5,1,"c.json_buffer_read_next_byte_t"],json_buffer_read_prev_byte_t:[161,5,1,"c.json_buffer_read_prev_byte_t"],json_buffer_readn_t:[161,5,1,"c.json_buffer_readn_t"],json_encode_array_finish:[161,4,1,"c.json_encode_array_finish"],json_encode_array_name:[161,4,1,"c.json_encode_array_name"],json_encode_array_start:[161,4,1,"c.json_encode_array_start"],json_encode_array_value:[161,4,1,"c.json_encode_array_value"],json_encode_object_entry:[161,4,1,"c.json_encode_object_entry"],json_encode_object_finish:[161,4,1,"c.json_encode_object_finish"],json_encode_object_key:[161,4,1,"c.json_encode_object_key"],json_encode_object_start:[161,4,1,"c.json_encode_object_start"],json_encoder:[161,6,1,"c.json_encoder"],json_enum_t:[161,6,1,"c.json_enum_t"],json_read_array:[161,4,1,"c.json_read_array"],json_read_object:[161,4,1,"c.json_read_object"],json_type:[161,3,1,"c.json_type"],json_value:[161,6,1,"c.json_value"],json_write_func_t:[161,5,1,"c.json_write_func_t"],lh_append_body_func_t:[162,5,1,"c.lh_append_body_func_t"],lh_append_func_t:[162,5,1,"c.lh_append_func_t"],lh_append_mbuf_body_func_t:[162,5,1,"c.lh_append_mbuf_body_func_t"],lh_append_mbuf_func_t:[162,5,1,"c.lh_append_mbuf_func_t"],lh_flush_func_t:[162,5,1,"c.lh_flush_func_t"],lh_read_func_t:[162,5,1,"c.lh_read_func_t"],lh_read_mbuf_func_t:[162,5,1,"c.lh_read_mbuf_func_t"],lh_registered_func_t:[162,5,1,"c.lh_registered_func_t"],lh_set_watermark_func_t:[162,5,1,"c.lh_set_watermark_func_t"],lh_storage_info_func_t:[162,5,1,"c.lh_storage_info_func_t"],lh_walk_func_t:[162,5,1,"c.lh_walk_func_t"],log:[162,6,1,"c.log"],log_append:[162,4,1,"c.log_append"],log_append_body:[162,4,1,"c.log_append_body"],log_append_mbuf:[162,4,1,"c.log_append_mbuf"],log_append_mbuf_body:[162,4,1,"c.log_append_mbuf_body"],log_append_mbuf_body_no_free:[162,4,1,"c.log_append_mbuf_body_no_free"],log_append_mbuf_no_free:[162,4,1,"c.log_append_mbuf_no_free"],log_append_mbuf_typed:[162,4,1,"c.log_append_mbuf_typed"],log_append_mbuf_typed_no_free:[162,4,1,"c.log_append_mbuf_typed_no_free"],log_append_typed:[162,4,1,"c.log_append_typed"],log_cbmem_handler:[162,0,1,"c.log_cbmem_handler"],log_console_get:[162,4,1,"c.log_console_get"],log_console_handler:[162,0,1,"c.log_console_handler"],log_console_init:[162,4,1,"c.log_console_init"],log_fcb_handler:[162,0,1,"c.log_fcb_handler"],log_fcb_slot1_handler:[162,0,1,"c.log_fcb_slot1_handler"],log_find:[162,4,1,"c.log_find"],log_flush:[162,4,1,"c.log_flush"],log_handler:[162,6,1,"c.log_handler"],log_init:[162,4,1,"c.log_init"],log_level_get:[162,4,1,"c.log_level_get"],log_level_set:[162,4,1,"c.log_level_set"],log_list_get_next:[162,4,1,"c.log_list_get_next"],log_module_get_name:[162,4,1,"c.log_module_get_name"],log_module_register:[162,4,1,"c.log_module_register"],log_nmgr_register_group:[162,4,1,"c.log_nmgr_register_group"],log_offset:[162,6,1,"c.log_offset"],log_printf:[162,4,1,"c.log_printf"],log_read:[162,4,1,"c.log_read"],log_read_body:[162,4,1,"c.log_read_body"],log_read_hdr:[162,4,1,"c.log_read_hdr"],log_read_mbuf:[162,4,1,"c.log_read_mbuf"],log_read_mbuf_body:[162,4,1,"c.log_read_mbuf_body"],log_register:[162,4,1,"c.log_register"],log_set_append_cb:[162,4,1,"c.log_set_append_cb"],log_set_watermark:[162,4,1,"c.log_set_watermark"],log_storage_info:[162,4,1,"c.log_storage_info"],log_walk:[162,4,1,"c.log_walk"],log_walk_body:[162,4,1,"c.log_walk_body"],log_walk_body_func_t:[162,5,1,"c.log_walk_body_func_t"],log_walk_func_t:[162,5,1,"c.log_walk_func_t"],nffs_area_desc:[141,6,1,"c.nffs_area_desc"],nffs_config:[141,0,1,"c.nffs_config"],nffs_detect:[141,4,1,"c.nffs_detect"],nffs_format:[141,4,1,"c.nffs_format"],nffs_init:[141,4,1,"c.nffs_init"],nffs_misc_desc_from_flash_area:[141,4,1,"c.nffs_misc_desc_from_flash_area"],os_callout:[97,8,1,"_CPPv310os_callout"],os_callout_init:[97,4,1,"c.os_callout_init"],os_callout_queued:[97,4,1,"c.os_callout_queued"],os_callout_remaining_ticks:[97,4,1,"c.os_callout_remaining_ticks"],os_callout_reset:[97,4,1,"c.os_callout_reset"],os_callout_stop:[97,4,1,"c.os_callout_stop"],os_cputime_delay_nsecs:[99,4,1,"c.os_cputime_delay_nsecs"],os_cputime_delay_ticks:[99,4,1,"c.os_cputime_delay_ticks"],os_cputime_delay_usecs:[99,4,1,"c.os_cputime_delay_usecs"],os_cputime_get32:[99,4,1,"c.os_cputime_get32"],os_cputime_init:[99,4,1,"c.os_cputime_init"],os_cputime_nsecs_to_ticks:[99,4,1,"c.os_cputime_nsecs_to_ticks"],os_cputime_ticks_to_nsecs:[99,4,1,"c.os_cputime_ticks_to_nsecs"],os_cputime_ticks_to_usecs:[99,4,1,"c.os_cputime_ticks_to_usecs"],os_cputime_timer_init:[99,4,1,"c.os_cputime_timer_init"],os_cputime_timer_relative:[99,4,1,"c.os_cputime_timer_relative"],os_cputime_timer_start:[99,4,1,"c.os_cputime_timer_start"],os_cputime_timer_stop:[99,4,1,"c.os_cputime_timer_stop"],os_cputime_usecs_to_ticks:[99,4,1,"c.os_cputime_usecs_to_ticks"],os_event:[100,8,1,"_CPPv38os_event"],os_event_fn:[100,5,1,"c.os_event_fn"],os_eventq:[100,8,1,"_CPPv39os_eventq"],os_eventq_dflt_get:[100,4,1,"c.os_eventq_dflt_get"],os_eventq_get:[100,4,1,"c.os_eventq_get"],os_eventq_get_no_wait:[100,4,1,"c.os_eventq_get_no_wait"],os_eventq_init:[100,4,1,"c.os_eventq_init"],os_eventq_inited:[100,4,1,"c.os_eventq_inited"],os_eventq_poll:[100,4,1,"c.os_eventq_poll"],os_eventq_put:[100,4,1,"c.os_eventq_put"],os_eventq_remove:[100,4,1,"c.os_eventq_remove"],os_eventq_run:[100,4,1,"c.os_eventq_run"],os_get_uptime:[113,4,1,"c.os_get_uptime"],os_get_uptime_usec:[113,4,1,"c.os_get_uptime_usec"],os_gettimeofday:[113,4,1,"c.os_gettimeofday"],os_mbuf:[102,8,1,"_CPPv37os_mbuf"],os_mbuf_adj:[102,4,1,"c.os_mbuf_adj"],os_mbuf_append:[102,4,1,"c.os_mbuf_append"],os_mbuf_appendfrom:[102,4,1,"c.os_mbuf_appendfrom"],os_mbuf_cmpf:[102,4,1,"c.os_mbuf_cmpf"],os_mbuf_cmpm:[102,4,1,"c.os_mbuf_cmpm"],os_mbuf_concat:[102,4,1,"c.os_mbuf_concat"],os_mbuf_copydata:[102,4,1,"c.os_mbuf_copydata"],os_mbuf_copyinto:[102,4,1,"c.os_mbuf_copyinto"],os_mbuf_dup:[102,4,1,"c.os_mbuf_dup"],os_mbuf_extend:[102,4,1,"c.os_mbuf_extend"],os_mbuf_free:[102,4,1,"c.os_mbuf_free"],os_mbuf_free_chain:[102,4,1,"c.os_mbuf_free_chain"],os_mbuf_get:[102,4,1,"c.os_mbuf_get"],os_mbuf_get_pkthdr:[102,4,1,"c.os_mbuf_get_pkthdr"],os_mbuf_len:[102,4,1,"c.os_mbuf_len"],os_mbuf_off:[102,4,1,"c.os_mbuf_off"],os_mbuf_pkthdr:[102,8,1,"_CPPv314os_mbuf_pkthdr"],os_mbuf_pool:[102,8,1,"_CPPv312os_mbuf_pool"],os_mbuf_pool_init:[102,4,1,"c.os_mbuf_pool_init"],os_mbuf_prepend:[102,4,1,"c.os_mbuf_prepend"],os_mbuf_prepend_pullup:[102,4,1,"c.os_mbuf_prepend_pullup"],os_mbuf_pullup:[102,4,1,"c.os_mbuf_pullup"],os_mbuf_trim_front:[102,4,1,"c.os_mbuf_trim_front"],os_mbuf_widen:[102,4,1,"c.os_mbuf_widen"],os_memblock:[103,8,1,"_CPPv311os_memblock"],os_memblock_from:[103,4,1,"c.os_memblock_from"],os_memblock_get:[103,4,1,"c.os_memblock_get"],os_memblock_put:[103,4,1,"c.os_memblock_put"],os_memblock_put_from_cb:[103,4,1,"c.os_memblock_put_from_cb"],os_membuf_t:[103,5,1,"c.os_membuf_t"],os_mempool:[103,8,1,"_CPPv310os_mempool"],os_mempool_clear:[103,4,1,"c.os_mempool_clear"],os_mempool_ext_init:[103,4,1,"c.os_mempool_ext_init"],os_mempool_info:[103,8,1,"_CPPv315os_mempool_info"],os_mempool_info_get_next:[103,4,1,"c.os_mempool_info_get_next"],os_mempool_init:[103,4,1,"c.os_mempool_init"],os_mempool_is_sane:[103,4,1,"c.os_mempool_is_sane"],os_mempool_put_fn:[103,5,1,"c.os_mempool_put_fn"],os_mempool_unregister:[103,4,1,"c.os_mempool_unregister"],os_mqueue:[102,8,1,"_CPPv39os_mqueue"],os_mqueue_get:[102,4,1,"c.os_mqueue_get"],os_mqueue_init:[102,4,1,"c.os_mqueue_init"],os_mqueue_put:[102,4,1,"c.os_mqueue_put"],os_msys_count:[102,4,1,"c.os_msys_count"],os_msys_get:[102,4,1,"c.os_msys_get"],os_msys_get_pkthdr:[102,4,1,"c.os_msys_get_pkthdr"],os_msys_num_free:[102,4,1,"c.os_msys_num_free"],os_msys_register:[102,4,1,"c.os_msys_register"],os_msys_reset:[102,4,1,"c.os_msys_reset"],os_mutex:[104,8,1,"_CPPv38os_mutex"],os_mutex_init:[104,4,1,"c.os_mutex_init"],os_mutex_pend:[104,4,1,"c.os_mutex_pend"],os_mutex_release:[104,4,1,"c.os_mutex_release"],os_sanity_check:[110,8,1,"_CPPv315os_sanity_check"],os_sanity_check_func_t:[110,5,1,"c.os_sanity_check_func_t"],os_sanity_check_init:[110,4,1,"c.os_sanity_check_init"],os_sanity_check_register:[110,4,1,"c.os_sanity_check_register"],os_sanity_check_reset:[110,4,1,"c.os_sanity_check_reset"],os_sanity_task_checkin:[110,4,1,"c.os_sanity_task_checkin"],os_sched:[98,4,1,"c.os_sched"],os_sched_get_current_task:[98,4,1,"c.os_sched_get_current_task"],os_sched_next_task:[98,4,1,"c.os_sched_next_task"],os_sched_set_current_task:[98,4,1,"c.os_sched_set_current_task"],os_sem:[111,8,1,"_CPPv36os_sem"],os_sem_get_count:[111,4,1,"c.os_sem_get_count"],os_sem_init:[111,4,1,"c.os_sem_init"],os_sem_pend:[111,4,1,"c.os_sem_pend"],os_sem_release:[111,4,1,"c.os_sem_release"],os_settimeofday:[113,4,1,"c.os_settimeofday"],os_stime_t:[113,5,1,"c.os_stime_t"],os_task:[112,8,1,"_CPPv37os_task"],os_task_count:[112,4,1,"c.os_task_count"],os_task_func_t:[112,5,1,"c.os_task_func_t"],os_task_info:[112,8,1,"_CPPv312os_task_info"],os_task_info_get_next:[112,4,1,"c.os_task_info_get_next"],os_task_init:[112,4,1,"c.os_task_init"],os_task_remove:[112,4,1,"c.os_task_remove"],os_task_state_t:[112,5,1,"c.os_task_state_t"],os_tick_idle:[151,4,1,"c.os_tick_idle"],os_tick_init:[151,4,1,"c.os_tick_init"],os_time_advance:[113,4,1,"c.os_time_advance"],os_time_change_fn:[113,5,1,"c.os_time_change_fn"],os_time_change_info:[113,8,1,"_CPPv319os_time_change_info"],os_time_change_listen:[113,4,1,"c.os_time_change_listen"],os_time_change_listener:[113,8,1,"_CPPv323os_time_change_listener"],os_time_change_remove:[113,4,1,"c.os_time_change_remove"],os_time_delay:[113,4,1,"c.os_time_delay"],os_time_get:[113,4,1,"c.os_time_get"],os_time_is_set:[113,4,1,"c.os_time_is_set"],os_time_ms_to_ticks32:[113,4,1,"c.os_time_ms_to_ticks32"],os_time_ms_to_ticks:[113,4,1,"c.os_time_ms_to_ticks"],os_time_t:[113,5,1,"c.os_time_t"],os_time_ticks_to_ms32:[113,4,1,"c.os_time_ticks_to_ms32"],os_time_ticks_to_ms:[113,4,1,"c.os_time_ticks_to_ms"],os_timeradd:[113,1,1,"c.os_timeradd"],os_timersub:[113,1,1,"c.os_timersub"],os_timeval:[113,8,1,"_CPPv310os_timeval"],os_timezone:[113,8,1,"_CPPv311os_timezone"],sensor:[163,8,1,"_CPPv36sensor"],sensor_cfg:[163,8,1,"_CPPv310sensor_cfg"],sensor_check_type:[163,4,1,"c.sensor_check_type"],sensor_clear_high_thresh:[168,4,1,"c.sensor_clear_high_thresh"],sensor_clear_low_thresh:[168,4,1,"c.sensor_clear_low_thresh"],sensor_clear_trigger_thresh_t:[163,5,1,"c.sensor_clear_trigger_thresh_t"],sensor_data_func_t:[163,5,1,"c.sensor_data_func_t"],sensor_data_t:[163,9,1,"_CPPv313sensor_data_t"],sensor_error_func_t:[163,5,1,"c.sensor_error_func_t"],sensor_ftostr:[168,4,1,"c.sensor_ftostr"],sensor_get_config:[163,4,1,"c.sensor_get_config"],sensor_get_config_func_t:[163,5,1,"c.sensor_get_config_func_t"],sensor_get_type_traits_byname:[168,4,1,"c.sensor_get_type_traits_byname"],sensor_get_type_traits_bytype:[168,4,1,"c.sensor_get_type_traits_bytype"],sensor_handle_interrupt_t:[163,5,1,"c.sensor_handle_interrupt_t"],sensor_init:[163,4,1,"c.sensor_init"],sensor_itf_lock:[163,4,1,"c.sensor_itf_lock"],sensor_itf_unlock:[163,4,1,"c.sensor_itf_unlock"],sensor_lock:[163,4,1,"c.sensor_lock"],sensor_mgr_compare_func_t:[168,5,1,"c.sensor_mgr_compare_func_t"],sensor_mgr_evq_get:[168,4,1,"c.sensor_mgr_evq_get"],sensor_mgr_find_next:[168,4,1,"c.sensor_mgr_find_next"],sensor_mgr_find_next_bydevname:[168,4,1,"c.sensor_mgr_find_next_bydevname"],sensor_mgr_find_next_bytype:[168,4,1,"c.sensor_mgr_find_next_bytype"],sensor_mgr_lock:[168,4,1,"c.sensor_mgr_lock"],sensor_mgr_match_bytype:[168,4,1,"c.sensor_mgr_match_bytype"],sensor_mgr_put_interrupt_evt:[168,4,1,"c.sensor_mgr_put_interrupt_evt"],sensor_mgr_put_notify_evt:[168,4,1,"c.sensor_mgr_put_notify_evt"],sensor_mgr_put_read_evt:[168,4,1,"c.sensor_mgr_put_read_evt"],sensor_mgr_register:[168,4,1,"c.sensor_mgr_register"],sensor_mgr_unlock:[168,4,1,"c.sensor_mgr_unlock"],sensor_notifier:[163,8,1,"_CPPv315sensor_notifier"],sensor_notifier_func_t:[163,5,1,"c.sensor_notifier_func_t"],sensor_oic_init:[168,4,1,"c.sensor_oic_init"],sensor_oic_tx_trigger:[168,4,1,"c.sensor_oic_tx_trigger"],sensor_pkg_init:[163,4,1,"c.sensor_pkg_init"],sensor_read:[163,4,1,"c.sensor_read"],sensor_read_ev_ctx:[163,8,1,"_CPPv318sensor_read_ev_ctx"],sensor_read_func_t:[163,5,1,"c.sensor_read_func_t"],sensor_register_err_func:[167,4,1,"c.sensor_register_err_func"],sensor_register_listener:[167,4,1,"c.sensor_register_listener"],sensor_register_notifier:[169,4,1,"c.sensor_register_notifier"],sensor_set_config_func_t:[163,5,1,"c.sensor_set_config_func_t"],sensor_set_driver:[163,4,1,"c.sensor_set_driver"],sensor_set_interface:[163,4,1,"c.sensor_set_interface"],sensor_set_n_poll_rate:[168,4,1,"c.sensor_set_n_poll_rate"],sensor_set_notification_t:[163,5,1,"c.sensor_set_notification_t"],sensor_set_poll_rate_ms:[168,4,1,"c.sensor_set_poll_rate_ms"],sensor_set_thresh:[168,4,1,"c.sensor_set_thresh"],sensor_set_trigger_thresh_t:[163,5,1,"c.sensor_set_trigger_thresh_t"],sensor_set_type_mask:[163,4,1,"c.sensor_set_type_mask"],sensor_shell_register:[168,4,1,"c.sensor_shell_register"],sensor_trigger_cmp_func_t:[163,5,1,"c.sensor_trigger_cmp_func_t"],sensor_trigger_init:[168,4,1,"c.sensor_trigger_init"],sensor_trigger_notify_func_t:[163,5,1,"c.sensor_trigger_notify_func_t"],sensor_type_traits:[163,8,1,"_CPPv318sensor_type_traits"],sensor_unlock:[163,4,1,"c.sensor_unlock"],sensor_unregister_listener:[167,4,1,"c.sensor_unregister_listener"],sensor_unregister_notifier:[169,4,1,"c.sensor_unregister_notifier"],sensor_unset_notification_t:[163,5,1,"c.sensor_unset_notification_t"],shell_cmd:[172,6,1,"c.shell_cmd"],shell_cmd_func_t:[172,5,1,"c.shell_cmd_func_t"],shell_cmd_help:[172,6,1,"c.shell_cmd_help"],shell_cmd_register:[172,4,1,"c.shell_cmd_register"],shell_evq_set:[172,4,1,"c.shell_evq_set"],shell_module:[172,6,1,"c.shell_module"],shell_nlip_input_func_t:[172,5,1,"c.shell_nlip_input_func_t"],shell_nlip_input_register:[172,4,1,"c.shell_nlip_input_register"],shell_nlip_output:[172,4,1,"c.shell_nlip_output"],shell_param:[172,6,1,"c.shell_param"],shell_prompt_function_t:[172,5,1,"c.shell_prompt_function_t"],shell_register:[172,4,1,"c.shell_register"],shell_register_app_cmd_handler:[172,4,1,"c.shell_register_app_cmd_handler"],shell_register_default_module:[172,4,1,"c.shell_register_default_module"],shell_register_prompt_handler:[172,4,1,"c.shell_register_prompt_handler"],snm_name:[174,0,1,"c.snm_name"],snm_off:[174,0,1,"c.snm_off"],stats_group_find:[174,4,1,"c.stats_group_find"],stats_group_walk:[174,4,1,"c.stats_group_walk"],stats_group_walk_func_t:[174,5,1,"c.stats_group_walk_func_t"],stats_hdr:[174,6,1,"c.stats_hdr"],stats_init:[174,4,1,"c.stats_init"],stats_init_and_reg:[174,4,1,"c.stats_init_and_reg"],stats_name_map:[174,6,1,"c.stats_name_map"],stats_nmgr_register_group:[174,4,1,"c.stats_nmgr_register_group"],stats_register:[174,4,1,"c.stats_register"],stats_reset:[174,4,1,"c.stats_reset"],stats_shell_register:[174,4,1,"c.stats_shell_register"],stats_walk:[174,4,1,"c.stats_walk"],stats_walk_func_t:[174,5,1,"c.stats_walk_func_t"],t_array:[161,2,1,"c.t_array"],t_boolean:[161,2,1,"c.t_boolean"],t_character:[161,2,1,"c.t_character"],t_check:[161,2,1,"c.t_check"],t_ignore:[161,2,1,"c.t_ignore"],t_integer:[161,2,1,"c.t_integer"],t_object:[161,2,1,"c.t_object"],t_real:[161,2,1,"c.t_real"],t_string:[161,2,1,"c.t_string"],t_structobject:[161,2,1,"c.t_structobject"],t_uinteger:[161,2,1,"c.t_uinteger"],tc_config:[178,0,1,"c.tc_config"],tc_current_config:[178,0,1,"c.tc_current_config"],ts_config:[178,0,1,"c.ts_config"],ts_current_config:[178,0,1,"c.ts_current_config"],tu_any_failed:[178,0,1,"c.tu_any_failed"],tu_case_complete:[178,4,1,"c.tu_case_complete"],tu_case_fail:[178,4,1,"c.tu_case_fail"],tu_case_fail_assert:[178,4,1,"c.tu_case_fail_assert"],tu_case_failed:[178,0,1,"c.tu_case_failed"],tu_case_idx:[178,0,1,"c.tu_case_idx"],tu_case_init:[178,4,1,"c.tu_case_init"],tu_case_jb:[178,0,1,"c.tu_case_jb"],tu_case_name:[178,0,1,"c.tu_case_name"],tu_case_pass:[178,4,1,"c.tu_case_pass"],tu_case_pass_manual:[178,4,1,"c.tu_case_pass_manual"],tu_case_post_test:[178,4,1,"c.tu_case_post_test"],tu_case_pre_test:[178,4,1,"c.tu_case_pre_test"],tu_case_report_fn_t:[178,5,1,"c.tu_case_report_fn_t"],tu_case_reported:[178,0,1,"c.tu_case_reported"],tu_case_set_init_cb:[178,4,1,"c.tu_case_set_init_cb"],tu_case_set_post_cb:[178,4,1,"c.tu_case_set_post_cb"],tu_case_set_pre_cb:[178,4,1,"c.tu_case_set_pre_cb"],tu_case_write_pass_auto:[178,4,1,"c.tu_case_write_pass_auto"],tu_init_test_fn_t:[178,5,1,"c.tu_init_test_fn_t"],tu_post_test_fn_t:[178,5,1,"c.tu_post_test_fn_t"],tu_pre_test_fn_t:[178,5,1,"c.tu_pre_test_fn_t"],tu_restart:[178,4,1,"c.tu_restart"],tu_start_os:[178,4,1,"c.tu_start_os"],tu_suite_complete:[178,4,1,"c.tu_suite_complete"],tu_suite_failed:[178,0,1,"c.tu_suite_failed"],tu_suite_init:[178,4,1,"c.tu_suite_init"],tu_suite_name:[178,0,1,"c.tu_suite_name"],tu_suite_post_test:[178,4,1,"c.tu_suite_post_test"],tu_suite_pre_test:[178,4,1,"c.tu_suite_pre_test"],tu_suite_register:[178,4,1,"c.tu_suite_register"],tu_suite_restart_fn_t:[178,5,1,"c.tu_suite_restart_fn_t"],tu_suite_set_complete_cb:[178,4,1,"c.tu_suite_set_complete_cb"],tu_suite_set_fail_cb:[178,4,1,"c.tu_suite_set_fail_cb"],tu_suite_set_init_cb:[178,4,1,"c.tu_suite_set_init_cb"],tu_suite_set_pass_cb:[178,4,1,"c.tu_suite_set_pass_cb"],tu_suite_set_post_test_cb:[178,4,1,"c.tu_suite_set_post_test_cb"],tu_suite_set_pre_test_cb:[178,4,1,"c.tu_suite_set_pre_test_cb"],tu_testsuite_fn_t:[178,5,1,"c.tu_testsuite_fn_t"]},"json_array_t.arr":{booleans:[161,6,1,"c.json_array_t.arr.booleans"],integers:[161,6,1,"c.json_array_t.arr.integers"],objects:[161,6,1,"c.json_array_t.arr.objects"],reals:[161,6,1,"c.json_array_t.arr.reals"],strings:[161,6,1,"c.json_array_t.arr.strings"],uintegers:[161,6,1,"c.json_array_t.arr.uintegers"]},"json_value.jv_val":{composite:[161,6,1,"c.json_value.jv_val.composite"]},json_array_t:{arr:[161,7,1,"c.json_array_t.arr"]},json_attr_t:{addr:[161,7,1,"c.json_attr_t.addr"],dflt:[161,7,1,"c.json_attr_t.dflt"]},json_value:{jv_val:[161,7,1,"c.json_value.jv_val"]}},objnames:{"0":["c","variable","variable"],"1":["c","define","define"],"2":["c","enumvalue","enumvalue"],"3":["c","enum","enum"],"4":["c","function","C function"],"5":["c","typedef","typedef"],"6":["c","struct","struct"],"7":["c","union","union"],"8":["cpp","class","C++ class"],"9":["cpp","type","C++ type"]},objtypes:{"0":"c:variable","1":"c:define","2":"c:enumvalue","3":"c:enum","4":"c:function","5":"c:typedef","6":"c:struct","7":"c:union","8":"cpp:class","9":"cpp:type"},terms:{"000s":[196,198,204,219],"008s":[196,198,204,219],"00z":210,"01t22":81,"02d":24,"02t22":210,"04x":33,"05t02":210,"093s":[196,198,204,219],"0b1000110":149,"0mb":10,"0ubuntu5":6,"0x0":[193,200,218,219],"0x00":[33,200,204,218],"0x0000":[184,218],"0x00000000":[173,175,176],"0x00000001":115,"0x00000002":[115,200],"0x00000004":115,"0x00000008":115,"0x00000010":115,"0x000000b8":193,"0x000000d8":[233,234],"0x000000dc":[183,226,233,234],"0x00004000":[173,175,176],"0x00008000":[106,173,175,176],"0x00009ef4":200,"0x0000fca6":193,"0x00023800":173,"0x0003f000":173,"0x0003f800":173,"0x0006":[41,218],"0x0007d000":[19,176],"0x000a":218,"0x000e0000":175,"0x0010":39,"0x01":[33,39,42,115,204,218],"0x0100":39,"0x01000000":199,"0x0101":33,"0x0102":33,"0x0103":33,"0x0104":33,"0x0105":33,"0x0106":33,"0x0107":33,"0x0108":33,"0x0109":33,"0x010a":33,"0x010b":33,"0x010c":33,"0x010d":33,"0x010e":33,"0x010f":33,"0x0110":33,"0x0111":33,"0x02":[33,39,42,115,204,218],"0x0201":33,"0x0202":33,"0x0203":33,"0x0204":33,"0x0205":33,"0x0206":33,"0x0207":33,"0x0208":33,"0x0209":33,"0x020a":33,"0x020b":33,"0x020c":33,"0x020d":33,"0x020e":33,"0x020f":33,"0x0210":33,"0x0211":33,"0x0212":33,"0x0213":33,"0x0214":33,"0x0215":33,"0x0216":33,"0x0217":33,"0x0218":33,"0x0219":33,"0x021a":33,"0x021b":33,"0x021c":33,"0x021d":33,"0x021e":33,"0x021f":33,"0x0220":33,"0x0221":33,"0x0222":33,"0x0223":33,"0x0224":33,"0x0225":33,"0x0226":33,"0x0227":33,"0x0228":33,"0x0229":33,"0x022a":33,"0x022c":33,"0x022d":33,"0x022e":33,"0x022f":33,"0x0230":33,"0x0232":33,"0x0234":33,"0x0235":33,"0x0236":33,"0x0237":33,"0x0238":33,"0x0239":33,"0x023a":33,"0x023b":33,"0x023c":33,"0x023d":33,"0x023e":33,"0x023f":33,"0x0240":33,"0x03":[33,42,115,218],"0x0300":[33,39],"0x0301":33,"0x0302":33,"0x04":[33,39],"0x0401":33,"0x0402":33,"0x0403":33,"0x0404":33,"0x0405":33,"0x0406":33,"0x0407":33,"0x0408":33,"0x0409":33,"0x040a":33,"0x040b":33,"0x040c":33,"0x040d":33,"0x040e":33,"0x0483":197,"0x05":33,"0x0501":33,"0x0502":33,"0x0503":33,"0x0504":33,"0x0505":33,"0x0506":33,"0x0507":33,"0x0508":33,"0x0509":33,"0x050a":33,"0x050b":33,"0x050c":33,"0x050d":33,"0x050e":33,"0x06":[33,184,218],"0x07":[33,218,223],"0x08":[33,39,218],"0x08000000":199,"0x08000020":199,"0x08000250":199,"0x08021e90":197,"0x09":[33,218,223],"0x0a":[33,218],"0x0b":33,"0x0bc11477":193,"0x0c":33,"0x0c80":41,"0x0d":33,"0x0e":33,"0x0f":[33,218,221],"0x0f505235":115,"0x1":[219,221,224,226],"0x10":[33,193,200,204,221],"0x100":33,"0x1000":[102,221,224],"0x10000":106,"0x10010000":199,"0x10036413":199,"0x10076413":197,"0x1010":102,"0x103":33,"0x11":[33,35,192,204,218],"0x12":33,"0x13":33,"0x14":33,"0x1400":218,"0x15":[33,217,219,221],"0x16":33,"0x17":33,"0x18":[33,218],"0x1800":42,"0x1808":42,"0x180a":42,"0x19":[33,164],"0x1a":33,"0x1b":33,"0x1c":[33,217,219],"0x1d":33,"0x1e":33,"0x1f":33,"0x2":[221,224],"0x20":[33,45,106,193,200,217,218,219],"0x200":[33,221,224],"0x2000":[221,224],"0x20000":219,"0x20000000":106,"0x20002290":197,"0x20002408":193,"0x20008000":193,"0x21":[33,45],"0x21000000":193,"0x22":[33,35,45,204],"0x23":[33,45],"0x24":33,"0x25":[33,218],"0x26":33,"0x27":33,"0x28":33,"0x2800":218,"0x29":33,"0x2a":33,"0x2ba01477":200,"0x2c":33,"0x2d":[33,218],"0x2e":33,"0x2f":33,"0x30":[33,193,200,218],"0x300":33,"0x311":221,"0x32":[33,221],"0x33":35,"0x34":33,"0x35":33,"0x36":33,"0x37":33,"0x374b":197,"0x38":33,"0x39":33,"0x3a":33,"0x3a000":106,"0x3b":33,"0x3c":33,"0x3c00":218,"0x3d":33,"0x3e":33,"0x3f":33,"0x4":[221,224],"0x40":[33,149,193,200,217,219],"0x400":33,"0x4000":[221,224],"0x40007000":219,"0x4001e504":200,"0x4001e50c":200,"0x41000000":197,"0x42000":74,"0x44":[35,218],"0x4400":218,"0x46":149,"0x4f":[217,219],"0x50":[193,200],"0x500":33,"0x5000":218,"0x53":223,"0x55":35,"0x6":218,"0x60":[193,200,218],"0x61":[217,219],"0x62":218,"0x65":218,"0x66":35,"0x68":218,"0x69":[218,223],"0x6c":218,"0x6c00":218,"0x6d":218,"0x6e":218,"0x70":[193,200,218],"0x72":[217,218,219],"0x7800":218,"0x79":223,"0x7fefd260":115,"0x7fff8000":219,"0x8":218,"0x80":[217,219],"0x8000":74,"0x8000000":199,"0x8079b62c":115,"0x81":149,"0x8801":218,"0x8c":149,"0x8d":149,"0x90":[217,219],"0x96f3b83c":115,"0x9c01":218,"0x9f":218,"0xa":218,"0xa0":221,"0xa001":218,"0xa7":[217,219],"0xaf":[217,219],"0xb3":[217,219],"0xb401":218,"0xb5":[217,219],"0xbead":[217,219],"0xcc01":218,"0xd2":[217,219],"0xd801":218,"0xdead":[217,219],"0xe401":218,"0xe7":[217,219],"0xf":218,"0xf001":218,"0xf395c277":115,"0xfb":221,"0xfe":218,"0xff":115,"0xffff":[41,152,218],"0xffffffff":[115,163,193],"0xffffffff0xffffffff0xffffffff0xffffffff":200,"100kb":114,"1024kbyte":[197,199],"103kb":173,"10m":39,"110kb":173,"128hz":17,"128kb":[9,175],"12c":[196,198,204,219],"12kb":[19,176],"12mhz":9,"132425ssb":42,"132428ssb":42,"132433ssb":42,"132437ssb":42,"132441ssb":42,"14e":233,"14h":[226,233],"1503a0":211,"16kb":[9,175,176],"16kbram":66,"16mb":9,"190a192":218,"1_amd64":[70,73,93,96],"1c15":[217,219],"1d11":229,"1d13":[211,232],"1d560":173,"1eec4":173,"1kb":173,"1mhz":17,"1ms":14,"1st":[14,81],"1ubuntu1":6,"1wx":200,"200mhz":9,"2015q2":[4,11],"2022609336ssb":187,"2022687456ssb":187,"2022789012ssb":187,"2022851508ssb":187,"2042859320ssb":187,"2042937440ssb":187,"248m":6,"250m":205,"256kb":193,"262s":[196,198,204,219],"28a29":218,"28t22":210,"291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682":203,"296712s":199,"2a24":61,"2d5217f":94,"2m_interval_max":39,"2m_interval_min":39,"2m_latenc":39,"2m_max_conn_event_len":39,"2m_min_conn_event_len":39,"2m_scan_interv":39,"2m_scan_window":39,"2m_timeout":39,"2msym":43,"300v":[196,198,204,219],"30j":218,"32kb":[176,193],"32mb":9,"32wx":[193,200],"363s":[196,198,204,219],"3_1":49,"3mb":94,"46872ssb":218,"4_9":4,"4fa7":[217,219],"500m":205,"512kb":106,"54684ssb":218,"575c":173,"5kb":114,"5ms":14,"6lowpan":43,"73d77f":84,"78e4d263eeb5af5635705b7cae026cc184f14aa6c6c59c6e80616035cd2efc8f":173,"7b3w9m4n2mg3sqmgw2q1b9p80000gn":68,"7kb":173,"8ab6433f8971b05c2a9c3341533e8ddb754e404":214,"948f118966f7989628f8f3be28840fd23a200fc219bb72acdfe9096f06c4b39b":173,"9cf8af22b1b573909a8290a90c066d4e190407e97680b7a32243960ec2bf3a7f":232,"9mb":71,"abstract":[9,33,108,109,121,138,141,142,163,165,166,205,218,236],"boolean":[161,176],"break":[18,33,102,123,188,218],"byte":[14,17,20,21,28,29,30,32,35,39,59,79,84,86,102,103,112,115,116,117,119,127,128,139,141,144,146,149,152,155,161,162,173,191,192,203,204,207],"case":[2,6,7,17,25,29,30,33,42,43,68,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,102,105,106,110,111,112,113,115,121,141,145,168,172,173,174,176,178,180,184,188,189,191,192,193,207,210,211,217,218,219,223,234],"catch":33,"char":[103,105,110,112,116,117,121,125,126,139,140,153,155,159,160,161,162,168,172,174,176,178,188,191,192,195,205,207,210,218,224,226],"class":[121,204],"const":[28,29,30,100,102,103,106,112,113,115,116,117,122,139,140,141,142,144,146,147,153,161,162,165,172,174,178,188,190,191,192,210,217,218,219],"default":[1,2,4,6,7,8,11,14,17,21,24,27,28,33,36,38,39,40,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,100,102,104,105,106,107,109,110,112,117,118,120,121,122,138,141,152,161,162,163,164,165,166,168,170,171,172,173,174,175,176,180,184,186,188,191,192,193,194,201,203,204,205,212,217,218,219,221,222,223,225,226,228,233],"enum":[112,116,148,153,155,161,163,217,218],"export":[1,10,35,73,74,93,95,96,100,116,117,121,123,162,163,164,165,166,201,220,221,224],"final":[8,68,102,104,106,115,129,143,173,181,183,186,207,217,219],"float":[77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,114,161,163,168,220],"function":[1,7,9,14,18,25,27,28,29,30,33,35,44,74,97,98,99,100,101,102,103,105,107,108,109,110,112,115,116,117,121,122,123,125,127,133,137,138,139,140,141,142,143,145,146,148,149,150,151,152,153,154,155,158,160,161,162,164,166,167,168,170,172,173,174,177,178,180,183,186,187,189,191,192,194,195,201,203,204,205,210,212,217,218,219,221,223,226,231,233,234,236],"goto":[110,139,165,217,218,219],"i\u00b2c":149,"import":[10,68,70,93,102,106,113,114,149,183,186,189,207,219],"int":[1,14,19,27,28,29,30,33,38,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,97,99,100,102,103,105,110,112,113,116,117,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,144,145,146,148,149,151,152,153,154,155,156,159,160,161,162,163,164,165,167,168,169,172,174,176,178,181,186,188,189,190,191,192,195,205,207,210,217,218,219,224,226],"long":[3,14,16,21,28,29,30,36,40,43,102,105,111,114,138,149,161,173,200,226],"new":[2,3,4,6,10,13,18,25,28,29,30,35,36,39,42,43,44,47,52,54,58,59,63,66,70,71,72,74,98,102,106,109,112,115,117,127,128,129,138,139,141,143,149,157,163,172,173,174,176,180,182,183,184,189,190,191,192,193,196,197,198,199,200,203,204,210,211,212,218,219,220,222,223,236],"null":[28,29,30,97,98,99,100,102,103,104,105,106,110,111,112,116,117,122,139,140,141,147,152,162,163,164,165,168,172,175,176,186,189,190,191,192,195,205,207,217,218,219,220,224,226],"public":[28,29,30,32,37,39,41,42,45,70,79,93,97,100,102,103,104,110,111,112,113,115,116,117,140,141,149,152,154,161,162,163,172,174,191,192],"return":[27,28,29,30,31,38,97,98,99,100,102,103,104,105,106,110,111,112,113,116,117,122,127,139,140,144,146,147,148,149,152,153,154,155,156,161,162,163,164,165,167,168,169,172,176,178,186,188,189,190,193,195,204,205,207,210,217,218,219,221,224,226,230],"short":[102,104,172,207],"static":[32,38,79,97,100,103,105,106,110,111,113,116,117,122,126,142,160,162,163,164,165,180,184,186,188,189,190,191,192,195,205,217,218,219,220,224,226],"switch":[11,13,33,71,84,90,94,98,105,106,112,115,143,157,172,183,184,188,189,201,217,218,219,226,233],"transient":189,"true":[8,11,15,99,103,110,113,117,173,203,210,219,229,232],"try":[2,14,17,20,21,24,25,33,35,43,102,139,149,180,181,183,184,187,193,194,195,196,197,198,200,211,213,218,219,221,223,226,228,233],"var":[63,68,78,79,110,116],"void":[14,27,28,29,30,33,38,97,98,99,100,102,103,105,110,112,113,116,117,121,122,123,125,127,137,139,140,141,142,144,145,146,148,149,151,152,153,154,155,156,158,160,161,162,163,164,165,167,168,172,174,176,178,186,188,189,190,191,192,195,205,207,217,218,219,220,224,226],"while":[4,6,7,8,17,18,35,38,43,62,68,74,102,103,105,106,110,112,114,117,123,125,139,155,165,173,176,178,191,192,195,201,205,207,208,210,217,218,219,224,226,233,234],AES:34,ANS:185,Adding:[69,92,236],And:[74,115,127,173,175,181,182,187,207,217,218,219],Are:[14,18],But:[14,219],CTS:[155,184],FOR:4,For:[2,3,5,6,7,8,10,11,14,15,18,19,21,27,29,30,33,34,35,36,41,42,47,50,52,63,66,68,70,71,72,73,74,75,79,96,97,102,105,106,109,113,114,115,121,122,139,141,142,145,148,149,152,161,162,163,164,165,166,167,173,174,175,176,178,180,183,188,189,190,191,192,193,195,197,198,199,203,204,205,210,211,212,213,219,221,224,226,229,232,233,234,236],IDE:[5,11],IDs:115,Its:[107,113,114,180,213],NOT:[149,154,219],Not:[7,33,41,99,102,143,148,152,173,219],One:[6,27,29,30,33,105,114,173,180,186,211,223],PCs:8,QoS:[33,43],RTS:[155,184],Such:[191,192,213],TMS:193,That:[2,17,21,25,28,33,74,127,176,191,192,193,204,211,212,218,219],The:[1,2,3,4,5,6,7,8,10,11,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,39,41,42,43,44,46,47,50,56,58,59,60,63,68,70,71,72,74,76,77,79,83,84,85,86,88,89,90,91,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,127,139,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,186,188,189,190,191,192,193,194,196,197,198,199,200,201,202,203,204,205,207,208,210,211,212,213,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,236],Then:[13,25,26,46,76,115,127,173,180,184,210,218,219,233],There:[4,8,14,15,17,18,21,34,35,40,70,74,93,97,102,104,106,107,111,112,113,114,116,117,121,143,148,162,163,168,172,173,174,188,193,204,210,214,219,226,233,234],Theres:223,These:[5,29,30,33,39,63,74,102,106,107,109,111,115,116,121,149,166,172,175,182,186,190,191,192,193,194,199,201,212,213,220,221],Use:[1,7,8,10,28,39,40,63,70,71,72,75,84,93,94,95,106,119,127,129,173,180,188,191,192,193,196,204,211,212,218,219,220,222,231],Used:[106,152,155,162],Useful:163,Uses:[44,55,120,175],Using:[29,30,33,62,104,119,195,231,236],Was:204,Will:[33,140],With:[9,14,33,42,43,102,105,109,115,173,175,181,183,207,233,234,236],Yes:[13,14,32,102,115,120],__arg:110,__asm:197,__builtin_offsetof:174,__d:163,__entri:174,__etext:199,__ev:100,__f:[110,163],__hdr:102,__itvl:110,__jv:161,__l:162,__len:161,__mod:162,__n:[102,174],__name:[112,174],__om:102,__omp:102,__s:163,__sc:110,__sectnam:174,__sectvarnam:174,__size:[112,174],__str:161,__t1:[99,113],__t2:[99,113],__t:163,__type:102,__v:161,__var:174,__wfi:197,_access:188,_adc:219,_addr:191,_addr_:[191,192],_app:191,_build:[26,46,76],_cfg:[164,165],_cli:[165,166,221],_cnt:127,_config:[163,164,165,224],_creat:164,_dev:164,_gatt_ac:188,_imghdr_siz:106,_init:[163,164,165],_log:165,_name:176,_nrf52_adc_h_:219,_ofb:[164,166,221],_onb:[164,166,226],_pad1:115,_pad2:115,_pad3:115,_pad:[104,115],_param:172,_pars:157,_reserv:163,_resource_t:220,_sbrk:144,_senseair_h_:218,_sensor:164,_set:191,_shell_init:[165,221],_stage:176,_stat:165,_str:157,_va_args_:165,_val:[164,165],a10:178,a600anj1:173,abbrevi:186,abc:[162,210],abil:[6,34,44,68,102,207],abl:[2,14,25,102,106,121,122,187,191,192,193,201,212,218,219],abort:[28,62,152,162,163,175,176,210,224],about:[1,3,13,14,18,19,35,41,53,70,71,72,75,77,93,94,95,103,105,106,110,112,113,127,128,132,161,162,167,173,174,179,180,186,189,190,191,192,196,200,204,205,207,213,219],abov:[9,16,21,27,32,102,105,110,113,115,149,152,172,173,174,175,176,183,186,188,191,192,195,201,204,210,212,217,219],absent:115,absolut:[102,154],abstrat:127,acc:221,accel:[221,226],accel_rev:221,acceleromet:[163,165,220,221,222,226],accept:[14,33,39,123,149,155,157,180,193,197,199,204,212],access:[8,14,28,29,30,33,39,43,72,74,77,83,93,94,95,99,101,102,104,105,106,111,121,122,123,127,139,141,142,143,149,157,162,163,165,166,168,173,176,178,183,190,193,205,210,218],access_:190,access_cb:[29,30,188,190,217,219],access_flag:[139,140],accgyro:221,accommod:[29,30,36,102,109,115,191],accompani:19,accomplish:[9,21,68,141,188],accord:[14,106,115,178],accordingli:[14,36,102,106,112],account:[13,74,102,115],accur:199,accuraci:28,achiev:[38,191,192],ack_rxd:204,acknowledg:204,acl:33,acquir:[38,104,111,149,163],acquisit:149,across:[42,44,68,74,75,121,143],act:[34,42,157,173],action:[9,14,39,75,180,186,190,204,207,219],activ:[11,14,28,29,30,43,60,84,106,112,116,117,152,157,173,180,186,203,204,223,229,232,233,234],actual:[2,7,14,23,25,47,90,102,106,112,115,145,156,162,173,175,179,183,191,192,193,207,212,213,214,219],actuat:227,adafruit:[8,25,219,221,223],adapt:[43,109,193,196,197,211,226],adapter_nsrst_delai:[193,197],adaptor:199,adc0:219,adc:[9,14,19,66,121],adc_0:219,adc_buf_read:219,adc_buf_releas:219,adc_buf_s:219,adc_buf_set:219,adc_chan_config:219,adc_config:219,adc_dev:219,adc_event_handler_set:219,adc_evq:219,adc_hw_impl:66,adc_init:219,adc_number_channel:219,adc_number_sampl:219,adc_read:219,adc_read_ev:219,adc_result:219,adc_result_mv:219,adc_sampl:219,adc_sns_str:219,adc_sns_typ:219,adc_sns_val:219,adc_stack:219,adc_stack_s:219,adc_stm32f4:121,adc_task:219,adc_task_handl:219,adc_task_prio:219,add:[1,2,4,6,7,10,11,14,21,25,29,30,39,50,52,63,68,70,71,72,74,75,93,100,102,105,109,111,113,114,117,118,127,139,143,149,164,165,174,176,180,181,183,184,187,193,194,195,201,203,205,207,208,210,211,212,219,221,222,223,224,225,227,229,230,231,232,236],added:[11,13,29,30,45,66,68,94,102,106,111,112,113,115,117,122,124,139,149,172,193,195,203,205,211,213,217,218,229,230,232,236],adding:[2,18,21,44,50,68,102,106,107,113,127,174,183,195,210,212,213,217,218,219],addit:[1,11,14,18,27,28,41,43,56,68,74,75,102,106,107,109,113,115,121,149,162,173,176,180,183,186,193,194,196,197,199,200,201,204,207,218,219,230],addition:75,addr:[28,39,42,122,161,184,191,192,221],addr_typ:[39,42],address:[14,21,28,33,34,37,39,41,43,44,45,68,79,102,103,105,115,121,122,123,138,146,149,152,161,162,163,165,173,184,188,203,204,211,226,233],aditihilbert:4,adjust:[21,29,30,33,102,106,181,205],admin:[4,184],administr:18,adress:39,adsertis:39,adv:[14,39,42,43,44],adv_channel_map:218,adv_data:39,adv_field:[28,186,191],adv_filter_polici:218,adv_itvl_max:218,adv_itvl_min:218,adv_param:[28,186,189,191,192],advanc:[72,233,234],advantag:[189,219],advantang:186,adverb:75,adverti:[191,192],advertis:[28,29,30,33,36,38,43,44,45,79,185,187,189,203,217,218,219,220],advertise_128bit_uuid:220,advertise_16bit_uuid:220,advertising_interv:[39,41],advic:[107,108],advinterv:41,aes:[193,196,198,200,211,229,230,232],aesni:[229,230],af80:[217,219],affect:[115,141,142,162,173,183,208],aflag:[1,63,74],after:[4,8,10,17,24,25,27,29,30,34,38,42,54,63,68,70,71,74,93,94,99,102,103,107,112,113,115,116,121,125,129,133,139,141,149,152,155,162,163,165,173,175,178,180,184,186,188,189,190,193,194,201,203,207,211,212,221,223,226],afterward:[21,218],again:[8,14,25,28,33,38,70,72,93,106,112,115,127,173,174,186,193,196,197,198,199,200,204,207,219,223,232],against:[14,34,102,105,113,168],agnost:139,agre:[218,219],agreement:[218,219],ahead:113,aid:[74,165],aim:[33,122,139,185,236],ain0:219,ain1:219,air:[28,33,102,173,201,202,204,227,236],air_q:218,air_qual:[217,218],albeit:182,alert:185,algo:168,algorithm:[43,98],align:[102,103,127,207],all201612161220:88,all:[1,2,3,6,7,8,9,11,13,15,16,18,19,25,27,28,29,30,31,33,34,36,38,39,40,41,42,43,44,48,53,54,56,62,63,64,65,66,68,74,79,85,88,102,104,105,106,107,109,110,112,113,115,116,117,121,127,131,137,139,141,142,143,145,152,161,162,163,164,165,166,167,168,170,172,173,174,175,176,178,179,180,181,183,184,185,186,187,188,189,190,191,192,195,197,199,201,204,208,210,212,213,214,215,217,218,219,221,224,226,229,232],alloc:[86,90,100,101,102,103,138,146,162,186,188],allow:[2,3,4,6,8,9,11,14,19,25,28,33,39,43,44,52,63,68,70,71,72,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,100,102,104,105,109,111,115,117,121,139,141,144,149,152,153,162,166,167,168,169,171,172,173,174,176,180,184,186,189,191,195,196,201,204,205,207,211,219,221,223,226,228],almost:[8,207],alon:14,along:[21,74,102,103,112,163,168,218],alongsid:[191,207],alphabet:176,alreadi:[6,7,8,10,14,18,20,25,28,29,30,33,36,44,56,71,72,94,95,99,108,109,115,122,133,148,154,180,181,182,183,193,195,196,197,198,199,200,204,211,217,219,220,229,232,233,234],also:[1,3,5,6,7,8,10,11,14,18,20,21,25,26,35,36,39,43,47,50,53,68,70,71,72,73,74,79,93,96,102,103,105,106,109,111,112,113,115,116,117,118,121,122,127,139,141,152,155,157,162,163,164,165,167,170,172,173,174,175,176,180,183,186,189,190,194,195,201,204,205,207,208,210,211,212,213,217,218,219,221,222,223,224,225,226,229,230,232],alt:232,altern:[6,18,21,102,115,127,173,188],although:212,altogeth:[97,217],alwai:[8,14,18,24,74,106,113,114,115,145,162,172,182,188,191,192,199,210,212,213,218,236],ambigu:33,ambiti:183,amd64:[70,93],amend:[1,14,45,63,75,203,208,233,234],amg:221,among:[98,106,115,173],amongst:102,amount:[36,102,103,108,139,162,173,186,207],analog:[121,227],analyz:[11,234],android:[220,222,225,228],ani:[1,4,8,13,14,15,16,17,18,19,21,25,26,27,29,30,34,39,43,46,62,63,72,74,76,77,79,86,89,90,93,94,95,97,99,100,102,103,104,105,106,108,110,111,112,113,115,117,122,123,127,139,140,141,152,155,162,165,166,169,172,173,174,176,180,184,186,195,196,201,202,203,204,213,217,218,219,226,231,236],announc:[186,191,192],annoy:[188,214],anonym:[25,39],anoth:[13,14,18,19,38,39,42,43,74,102,104,105,106,107,108,111,112,113,117,148,157,173,175,180,186,188,204,207,218,219,230,233,234],ans:[218,219],answer:105,anymor:[102,207],anyon:[14,17,25],anyth:[1,8,35,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,173,180,181,183,191,192,194,213,219],apach:[1,2,6,7,10,11,13,18,24,25,26,28,43,45,46,50,51,52,56,57,63,64,66,68,70,71,72,74,75,76,93,94,95,97,106,115,117,120,121,122,123,138,139,142,145,162,164,172,173,174,176,177,180,183,184,185,187,191,193,194,195,196,197,198,199,200,204,210,211,212,213,218,219,220,221,222,223,226,228,229,230,231,232,233,234,236],apart:113,api:[1,14,26,31,32,33,43,66,68,74,105,109,121,122,143,147,165,166,192,197,220,225],app:[1,7,8,11,14,17,18,21,24,25,38,41,43,45,47,50,51,55,56,58,59,60,61,63,66,68,75,86,89,90,106,115,117,121,139,143,153,172,174,175,176,180,181,183,185,186,189,190,191,192,193,195,196,197,198,199,200,201,202,203,205,207,210,211,217,218,220,221,222,223,224,225,229,230,231,232,233,236],app_log_init:162,appear:[17,25,39,41,109,149,188,190,207],append:[102,127,162,210],append_loc:[127,128,129],append_test:210,appl:[193,226,228,233,234],appli:[11,20,36,113,115,116,117,141,155,162,173,176,204,210],applic:[1,2,4,5,6,8,9,10,12,17,19,20,27,28,29,30,31,33,35,36,37,38,40,42,43,47,52,55,60,63,68,70,71,72,73,74,86,89,90,91,95,96,100,102,106,110,112,115,117,118,119,120,121,139,141,146,152,165,166,167,168,169,170,171,172,174,175,176,179,182,185,188,189,194,203,209,210,217,218,225,228,230,231,234,236],applicaton:1,applict:11,approach:[44,106,176],appropri:[28,29,30,75,102,106,109,112,119,121,149,152,176,180,181,183,186,189,191,192,194,219,225],approv:13,apps_air_qu:218,apps_bleprph:173,apps_blinki:[68,74],apps_my_sensor_app:226,apr:[8,196,198,204,219],apropo:[193,226,233,234],apt:[4,6,7,10,69,73,92,96,184],arbitrari:[115,180,184,193,196,197,198,199,200,204,211,219,221,223,229,230,232],arbitrarili:[115,192],arc4:193,arch:[74,106,109,178,196,197,198,199,200,204,226],arch_sim:[195,226],architectur:[70,93,98,103,106,108,109,113,115,121,138,143,148,207],archiv:[4,7,70,72,74,180,183,193,195,196,197,198,199,200,201,204,211,218,219,221,226,229,230,232],arduino:[11,194,207,209,212,218,236],arduino_101:66,arduino_blinki:[11,193,207],arduino_boot:[11,193],arduino_mkr1000:211,arduino_primo_nrf52:[66,196],arduino_primoo_nrf52:196,arduino_zero:193,arduino_zero_debug:193,arduinowifi:211,area:[14,16,102,106,115,116,127,137,144,162,176],area_cnt:144,area_desc:141,aren:[19,20,114],arg10:178,arg:[11,28,29,30,99,102,103,105,110,112,113,121,127,137,146,148,152,154,155,162,163,165,167,168,172,178,188,189,205,207,217,218,219,226],argc:[105,112,116,125,126,159,172,176,191,192,195,205,207,210,218,224,226],argument:[10,11,28,29,30,33,58,63,68,75,97,100,102,103,110,112,113,117,124,127,145,148,149,152,154,161,162,163,165,167,168,172,186,189,190,191,192,196,198,207,212,213,226],argv:[112,116,125,126,159,172,176,191,192,195,205,207,210,218,224,226],arm:[5,6,7,11,20,23,97,106,114,193,199,226,232,233,234],around:[25,42,102,115,219,220,222],arr:161,arrai:[29,30,35,100,116,126,127,137,141,152,161,172,176,181,186,190,207],arrang:[106,173],arriv:102,articl:214,artifact:[48,52,63,68,70,71,72,212],asf:[1,212,218,219],ask:[13,18,105,116,155,199,207,212,213],aspect:[39,102,115,207],assembl:[1,74,106,109,196,197,198,199,200,204,226],assert:[23,80,102,110,117,152,164,174,178,188,189,190,191,192,195,205,207,217,218,219,224,226],assert_if_test:178,assign:[13,19,21,29,30,32,35,41,43,50,63,66,79,103,105,106,112,127,142,162,176,180,188,193,196,197,198,199,200,204,211,219,221,223,229,232],associ:[14,28,29,30,34,36,100,102,110,112,115,154,162,163,176,186,189],assum:[7,11,15,42,56,72,73,95,96,100,102,106,112,115,122,152,157,176,180,181,182,183,195,201,204,205,217,219,220,222,223,225,226,233,234],assumpt:19,asynchron:[28,155],at45db:[19,122],at45db_default_config:122,at45db_dev:122,at45db_erase_sector:122,at45db_init:122,at45db_read:122,at45db_sector_info:122,at45db_writ:122,at45dbxxx:122,at91samd21g18:193,at91samd:193,atmel:[2,193,211],atop:[121,143],att:[31,40,43,188],att_flag:[29,30],att_handl:[29,30],attach:[8,11,102,106,148,153,183,196,204,219,226,233,234],attempt:[14,27,28,33,35,39,102,103,104,112,115,149,176,188,189,190,204],attempt_stat:174,attent:3,attr:[14,29,30,40,42],attr_handl:[14,29,30,187,188,189,217,219],attribut:[27,29,30,33,40,43,63,66,75,79,103,107,109,161,176,185,188],auth:[14,28,39,214],authent:[28,33,34,42,187],author:[1,25,33,56,74,117,210,218,219],auto:[41,122,223],autocalibr:223,autocomplet:68,autoconf:68,autogener:14,autom:44,automat:[1,13,28,29,30,36,37,43,55,68,72,74,107,158,172,174,176,183,185,186,193,196,197,199,200,201,210,212,218,219,220,236],autoselect:193,avaial:204,avail:[1,2,3,4,7,9,14,15,18,24,29,30,33,35,36,41,42,43,44,45,60,70,71,72,75,77,86,93,94,95,100,102,103,104,110,111,114,115,117,119,121,155,157,163,167,168,173,176,179,191,195,201,204,213,225,233,234],avail_queu:117,avoid:[74,102,104,105,110,172,207,220],awai:[33,106,116,188,219],await:3,awar:[21,24,186,191,192],b0_0:199,b0_1:199,b1_0:199,b1_1:199,b5729002b340:[217,219],b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2:203,bab:162,back:[8,18,71,77,82,93,94,95,102,103,113,114,115,116,117,149,162,163,170,190,199,200,201,218,225,229,230,232],backend:116,background:28,backward:[18,43,115,117,127,172],bad:[14,115,173,213],badli:105,bake:15,band:[34,39,43],bank:199,bar:[11,14,116,236],bare:[97,185,191,192,236],base64:[7,116,117,204,226],base:[1,2,4,6,7,11,19,33,36,43,44,47,52,68,70,71,72,74,102,114,119,121,123,143,144,149,168,175,184,190,193,196,197,199,200,207,211,220,221,223,226],baselibc:[7,24,61,106],baselin:120,bash:[2,11,68,72,106],bash_complet:49,bash_profil:[10,71,73,94,96],bashrc:68,basi:[9,32,34,112,213,218,219],basic:[1,14,17,19,27,41,42,43,44,74,102,106,112,114,121,144,146,148,155,173,183,184,201,204,212,214,216,217,228,230,231],batch:106,batteri:[9,36,44,109,191],baud:[79,117,184],baudrat:[122,152,155],bbno055_cli:221,bc_acc_bw:[165,224],bc_acc_rang:[165,224],bc_mask:[165,224],bc_opr_mod:[165,224],bc_placement:165,bc_pwr_mode:[165,224],bc_unit:[165,224],bc_use_ext_xt:224,bcfg:224,bd_addr:33,be9699809a049:84,beacon:[27,182,183,194],bearer:[14,43,45],becaus:[8,11,14,21,28,33,34,38,42,63,100,115,142,149,152,163,165,168,173,175,207,210,212,214,218,220,221,222,226],becom:[14,34,44,115,186,189],been:[4,13,17,28,33,38,49,56,68,71,72,74,90,94,95,101,102,103,112,113,115,116,125,127,139,141,152,155,162,168,173,176,184,189,193,196,204,211,217,218,219],befor:[2,4,7,8,11,14,27,33,54,63,70,74,93,97,99,101,102,104,105,106,110,112,113,114,115,116,117,127,133,141,152,154,155,156,161,163,167,168,172,173,174,176,178,183,184,185,186,188,191,192,194,195,197,201,204,205,207,210,211,219,225,228,231],begin:[14,29,30,38,102,112,116,127,135,155,168,184,187,189,191,192,210,212],beginn:236,behav:[33,42,105,191,192,210],behavior:[72,105,109,141,188,190,207,210,211,234],behaviour:102,behind:[102,113],being:[14,15,25,28,29,30,33,102,103,105,110,112,113,115,116,122,139,148,149,150,159,160,162,163,173,187,189,207,210,236],bell:111,belong:[27,29,30,103,115,190],below:[1,2,4,6,8,11,19,31,33,34,35,36,42,56,72,75,102,105,106,107,111,112,115,117,119,122,139,142,154,165,173,180,183,188,190,193,196,197,199,200,204,207,208,210,212,213,214,219,220,221,224,228,236],benefit:[13,105,176,179,205],best:[24,102,106,161,213],beta:121,better:[14,17,20,115,174],between:[7,11,15,18,19,20,38,39,43,44,50,59,68,111,113,117,148,149,159,161,166,168,173,175,176,184,196,201,204,205,213,219,221,223,226],beyond:102,bhd:79,big:[35,74,102,204,213],bigger:173,bin:[2,4,7,10,11,18,20,47,48,50,51,56,59,61,63,68,70,71,72,73,74,93,94,95,96,106,173,176,180,181,183,184,187,193,195,196,197,198,199,200,201,203,204,210,211,218,219,221,223,226,229,230,232,233,234],bin_basenam:74,binari:[4,7,10,20,47,50,52,68,71,73,74,92,94,96,114,119,149,195],binutil:4,bit:[7,14,24,27,29,30,35,37,39,41,70,71,72,79,94,95,99,102,103,112,113,114,115,149,150,152,155,163,165,167,168,173,174,183,188,189,190,191,192,207,211,213,217,219,220,226,233,234],bitbang:150,bitfield:163,bitmap:103,bitmask:112,bits0x00:39,bl_rev:221,bla:162,blank:24,ble:[21,25,27,28,29,30,31,32,35,38,42,44,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,100,102,115,119,120,173,176,182,184,186,188,189,190,194,201,203,216,217,218,222,225,228,236],ble_:188,ble_addr_t:[28,191,192],ble_addr_type_publ:[28,189],ble_addr_type_random:28,ble_addr_type_rpa_pub_default:28,ble_addr_type_rpa_rnd_default:28,ble_app:[183,191,192],ble_app_advertis:[191,192],ble_app_on_sync:[191,192],ble_app_set_addr:[191,192],ble_att:[89,188,201],ble_att_err_attr_not_found:33,ble_att_err_attr_not_long:33,ble_att_err_insufficient_authen:33,ble_att_err_insufficient_author:33,ble_att_err_insufficient_enc:33,ble_att_err_insufficient_key_sz:33,ble_att_err_insufficient_r:[33,217,219],ble_att_err_invalid_attr_value_len:[33,188],ble_att_err_invalid_handl:33,ble_att_err_invalid_offset:33,ble_att_err_invalid_pdu:33,ble_att_err_prepare_queue_ful:33,ble_att_err_read_not_permit:33,ble_att_err_req_not_support:33,ble_att_err_unlik:[33,217,219],ble_att_err_unsupported_group:33,ble_att_err_write_not_permit:33,ble_att_svr_entry_pool:86,ble_att_svr_prep_entry_pool:86,ble_eddystone_set_adv_data_uid:191,ble_eddystone_set_adv_data_url:191,ble_eddystone_url_scheme_http:191,ble_eddystone_url_suffix_org:191,ble_err_acl_conn_exist:33,ble_err_auth_fail:33,ble_err_chan_class:33,ble_err_cmd_disallow:33,ble_err_coarse_clk_adj:33,ble_err_conn_accept_tmo:33,ble_err_conn_establish:33,ble_err_conn_limit:33,ble_err_conn_parm:33,ble_err_conn_rej_bd_addr:33,ble_err_conn_rej_channel:33,ble_err_conn_rej_resourc:33,ble_err_conn_rej_secur:33,ble_err_conn_spvn_tmo:33,ble_err_conn_term_loc:33,ble_err_conn_term_m:33,ble_err_ctlr_busi:33,ble_err_diff_trans_col:33,ble_err_dir_adv_tmo:33,ble_err_encryption_mod:33,ble_err_host_busy_pair:33,ble_err_hw_fail:33,ble_err_inq_rsp_too_big:33,ble_err_instant_pass:33,ble_err_insufficient_sec:33,ble_err_inv_hci_cmd_parm:33,ble_err_inv_lmp_ll_parm:33,ble_err_link_key_chang:33,ble_err_lmp_collis:33,ble_err_lmp_ll_rsp_tmo:33,ble_err_lmp_pdu:33,ble_err_mac_conn_fail:33,ble_err_mem_capac:33,ble_err_no_pair:33,ble_err_no_role_chang:33,ble_err_page_tmo:33,ble_err_parm_out_of_rang:33,ble_err_pending_role_sw:33,ble_err_pinkey_miss:33,ble_err_qos_parm:33,ble_err_qos_reject:33,ble_err_rd_conn_term_pwroff:33,ble_err_rd_conn_term_resrc:33,ble_err_rem_user_conn_term:33,ble_err_repeated_attempt:33,ble_err_reserved_slot:33,ble_err_role_sw_fail:33,ble_err_sco_air_mod:33,ble_err_sco_itvl:33,ble_err_sco_offset:33,ble_err_sec_simple_pair:33,ble_err_synch_conn_limit:33,ble_err_unit_key_pair:33,ble_err_unk_conn_id:33,ble_err_unk_lmp:33,ble_err_unknown_hci_cmd:33,ble_err_unspecifi:33,ble_err_unsupp_lmp_ll_parm:33,ble_err_unsupp_qo:33,ble_err_unsupp_rem_featur:33,ble_err_unsupport:33,ble_ext_adv:14,ble_ext_adv_max_s:14,ble_ga:190,ble_gap:[28,89],ble_gap_adv_act:28,ble_gap_adv_dflt_channel_map:28,ble_gap_adv_fast_interval1_max:28,ble_gap_adv_fast_interval1_min:28,ble_gap_adv_fast_interval2_max:28,ble_gap_adv_fast_interval2_min:28,ble_gap_adv_param:[28,191,192],ble_gap_adv_rsp_set_data:28,ble_gap_adv_rsp_set_field:28,ble_gap_adv_set_data:28,ble_gap_adv_set_field:[28,186],ble_gap_adv_start:[28,186,189,191,192],ble_gap_adv_stop:28,ble_gap_chr_uuid16_appear:[188,190],ble_gap_chr_uuid16_device_nam:[188,190],ble_gap_chr_uuid16_periph_pref_conn_param:188,ble_gap_chr_uuid16_periph_priv_flag:188,ble_gap_chr_uuid16_reconnect_addr:188,ble_gap_conn_act:28,ble_gap_conn_cancel:28,ble_gap_conn_desc:[28,189],ble_gap_conn_dur_dflt:28,ble_gap_conn_find:[28,189],ble_gap_conn_find_by_addr:28,ble_gap_conn_fn:186,ble_gap_conn_mode_dir:28,ble_gap_conn_mode_non:28,ble_gap_conn_mode_und:[28,186,189],ble_gap_conn_param:28,ble_gap_conn_pause_centr:28,ble_gap_conn_pause_peripher:28,ble_gap_conn_rssi:28,ble_gap_connect:28,ble_gap_disc:28,ble_gap_disc_act:28,ble_gap_disc_cancel:28,ble_gap_disc_dur_dflt:28,ble_gap_disc_mode_gen:[28,186,189],ble_gap_disc_mode_ltd:28,ble_gap_disc_mode_non:28,ble_gap_disc_param:28,ble_gap_encryption_initi:28,ble_gap_ev:[28,189],ble_gap_event_adv_complet:28,ble_gap_event_conn_upd:[28,189],ble_gap_event_conn_update_req:28,ble_gap_event_connect:[28,189],ble_gap_event_disc:28,ble_gap_event_disc_complet:28,ble_gap_event_disconnect:[28,189],ble_gap_event_enc_chang:[28,189],ble_gap_event_ext_disc:28,ble_gap_event_fn:[28,191,192],ble_gap_event_identity_resolv:28,ble_gap_event_l2cap_update_req:28,ble_gap_event_listen:28,ble_gap_event_listener_regist:28,ble_gap_event_listener_unregist:28,ble_gap_event_mtu:28,ble_gap_event_notify_rx:28,ble_gap_event_notify_tx:28,ble_gap_event_passkey_act:28,ble_gap_event_phy_update_complet:28,ble_gap_event_repeat_pair:28,ble_gap_event_subscrib:[28,189],ble_gap_event_term_failur:28,ble_gap_ext_adv_configur:28,ble_gap_ext_adv_data_status_complet:28,ble_gap_ext_adv_data_status_incomplet:28,ble_gap_ext_adv_data_status_trunc:28,ble_gap_ext_adv_param:28,ble_gap_ext_adv_remov:28,ble_gap_ext_adv_rsp_set_data:28,ble_gap_ext_adv_set_addr:28,ble_gap_ext_adv_set_data:28,ble_gap_ext_adv_start:28,ble_gap_ext_adv_stop:28,ble_gap_ext_connect:28,ble_gap_ext_disc:28,ble_gap_ext_disc_param:28,ble_gap_initial_conn_itvl_max:28,ble_gap_initial_conn_itvl_min:28,ble_gap_initial_conn_lat:28,ble_gap_initial_conn_max_ce_len:28,ble_gap_initial_conn_min_ce_len:28,ble_gap_initial_supervision_timeout:28,ble_gap_le_phy_1m:28,ble_gap_le_phy_1m_mask:28,ble_gap_le_phy_2m:28,ble_gap_le_phy_2m_mask:28,ble_gap_le_phy_any_mask:28,ble_gap_le_phy_cod:28,ble_gap_le_phy_coded_ani:28,ble_gap_le_phy_coded_mask:28,ble_gap_le_phy_coded_s2:28,ble_gap_le_phy_coded_s8:28,ble_gap_lim_disc_scan_int:28,ble_gap_lim_disc_scan_window:28,ble_gap_mesh_cb_regist:28,ble_gap_pair_initi:28,ble_gap_private_mode_devic:28,ble_gap_private_mode_network:28,ble_gap_read_le_phi:28,ble_gap_repeat_pair:28,ble_gap_repeat_pairing_ignor:28,ble_gap_repeat_pairing_retri:28,ble_gap_role_mast:28,ble_gap_role_slav:28,ble_gap_scan_fast_interval_max:28,ble_gap_scan_fast_interval_min:28,ble_gap_scan_fast_period:28,ble_gap_scan_fast_window:28,ble_gap_scan_slow_interval1:28,ble_gap_scan_slow_window1:28,ble_gap_sec_st:28,ble_gap_security_initi:28,ble_gap_set_event_cb:28,ble_gap_set_prefered_default_le_phi:28,ble_gap_set_prefered_le_phi:28,ble_gap_set_priv_mod:28,ble_gap_subscribe_reason_restor:28,ble_gap_subscribe_reason_term:28,ble_gap_subscribe_reason_writ:28,ble_gap_svc_uuid16:[188,190],ble_gap_termin:28,ble_gap_unpair:28,ble_gap_unpair_oldest_p:28,ble_gap_upd:86,ble_gap_upd_param:28,ble_gap_update_param:[14,28],ble_gap_wl_set:28,ble_gatt:[29,30,89],ble_gatt_access_ctxt:[29,30,188,217,219],ble_gatt_access_fn:[29,30],ble_gatt_access_op_read_chr:[29,30,188,217,219],ble_gatt_access_op_read_dsc:[29,30],ble_gatt_access_op_write_chr:[29,30,188,217,219],ble_gatt_access_op_write_dsc:[29,30],ble_gatt_attr:[29,30],ble_gatt_attr_fn:[14,29,30],ble_gatt_chr:[29,30],ble_gatt_chr_def:[29,30,188,190,217,219],ble_gatt_chr_f_auth_sign_writ:[29,30],ble_gatt_chr_f_aux_writ:[29,30],ble_gatt_chr_f_broadcast:[29,30],ble_gatt_chr_f_ind:[29,30],ble_gatt_chr_f_notifi:[29,30,217,219],ble_gatt_chr_f_read:[29,30,188,190,217,219],ble_gatt_chr_f_read_authen:[29,30],ble_gatt_chr_f_read_author:[29,30],ble_gatt_chr_f_read_enc:[29,30,217,219],ble_gatt_chr_f_reliable_writ:[29,30],ble_gatt_chr_f_writ:[29,30,217,219],ble_gatt_chr_f_write_authen:[29,30],ble_gatt_chr_f_write_author:[29,30],ble_gatt_chr_f_write_enc:[29,30,217,219],ble_gatt_chr_f_write_no_rsp:[29,30],ble_gatt_chr_flag:[29,30],ble_gatt_chr_fn:[29,30],ble_gatt_chr_prop_auth_sign_writ:[29,30],ble_gatt_chr_prop_broadcast:[29,30],ble_gatt_chr_prop_extend:[29,30],ble_gatt_chr_prop_ind:[29,30],ble_gatt_chr_prop_notifi:[29,30],ble_gatt_chr_prop_read:[29,30],ble_gatt_chr_prop_writ:[29,30],ble_gatt_chr_prop_write_no_rsp:[29,30],ble_gatt_disc_svc_fn:[29,30],ble_gatt_dsc:[29,30],ble_gatt_dsc_clt_cfg_uuid16:[29,30],ble_gatt_dsc_def:[29,30],ble_gatt_dsc_fn:[29,30],ble_gatt_error:[29,30],ble_gatt_mtu_fn:[29,30],ble_gatt_register_ctxt:[29,30],ble_gatt_register_fn:[29,30,190],ble_gatt_register_op_chr:[29,30],ble_gatt_register_op_dsc:[29,30],ble_gatt_register_op_svc:[29,30],ble_gatt_reliable_attr_fn:[29,30],ble_gatt_svc:[29,30],ble_gatt_svc_def:[29,30,188,190,217,219],ble_gatt_svc_foreach_fn:[29,30],ble_gatt_svc_type_end:[29,30],ble_gatt_svc_type_primari:[29,30,188,190,217,219],ble_gatt_svc_type_secondari:[29,30],ble_gatt_svc_uuid16:[29,30],ble_gattc:89,ble_gattc_disc_all_chr:[29,30],ble_gattc_disc_all_dsc:[29,30],ble_gattc_disc_all_svc:[29,30],ble_gattc_disc_chrs_by_uuid:[29,30],ble_gattc_disc_svc_by_uuid:[29,30],ble_gattc_exchange_mtu:[29,30],ble_gattc_find_inc_svc:[29,30],ble_gattc_ind:[29,30],ble_gattc_indicate_custom:[29,30],ble_gattc_init:[29,30],ble_gattc_notifi:[29,30],ble_gattc_notify_custom:[29,30],ble_gattc_proc_pool:86,ble_gattc_read:[14,29,30],ble_gattc_read_by_uuid:[29,30],ble_gattc_read_long:[29,30],ble_gattc_read_mult:[29,30],ble_gattc_writ:[29,30],ble_gattc_write_flat:[14,29,30],ble_gattc_write_long:[29,30],ble_gattc_write_no_rsp:[29,30],ble_gattc_write_no_rsp_flat:[29,30],ble_gattc_write_reli:[29,30],ble_gatts_add_svc:[29,30],ble_gatts_chr_upd:[29,30,217,219],ble_gatts_clt_cfg_pool:86,ble_gatts_count_cfg:[29,30],ble_gatts_find_chr:[29,30,217,219],ble_gatts_find_dsc:[29,30],ble_gatts_find_svc:[29,30],ble_gatts_register_svc:190,ble_gatts_reset:[29,30],ble_gatts_show_loc:[29,30],ble_gatts_start:[29,30],ble_gatts_svc_set_vis:[29,30],ble_h:[32,33,35,38,89,191,192,217],ble_hci_ram_evt_hi_pool:86,ble_hci_ram_evt_lo_pool:86,ble_hci_uart_baud:184,ble_hs_:190,ble_hs_adv_field:[28,186,191],ble_hs_att_err:33,ble_hs_cfg:[38,191,192],ble_hs_conn_handle_non:27,ble_hs_conn_pool:86,ble_hs_eagain:33,ble_hs_ealreadi:[28,33],ble_hs_eapp:33,ble_hs_eauthen:33,ble_hs_eauthor:33,ble_hs_ebaddata:33,ble_hs_ebusi:[28,29,30,33],ble_hs_econtrol:33,ble_hs_edon:[28,33],ble_hs_eencrypt:33,ble_hs_eencrypt_key_sz:33,ble_hs_einv:[14,28,29,30,33],ble_hs_emsgs:[28,33],ble_hs_eno:[28,29,30,33],ble_hs_enoaddr:33,ble_hs_enomem:[29,30,33],ble_hs_enomem_evt:33,ble_hs_enotconn:[28,33],ble_hs_enotsup:33,ble_hs_enotsync:33,ble_hs_eo:33,ble_hs_ereject:33,ble_hs_erol:33,ble_hs_err_sm_peer_bas:33,ble_hs_err_sm_us_bas:33,ble_hs_estore_cap:33,ble_hs_estore_fail:33,ble_hs_etimeout:33,ble_hs_etimeout_hci:33,ble_hs_eunknown:33,ble_hs_ev_tx_notif:100,ble_hs_event_tx_notifi:100,ble_hs_evq_set:27,ble_hs_forev:[27,28,189,191,192],ble_hs_hci_cmd_send:218,ble_hs_hci_err:33,ble_hs_hci_ev_pool:86,ble_hs_id:35,ble_hs_id_gen_rnd:[35,191,192],ble_hs_id_set_rnd:[32,35,191,192],ble_hs_init:27,ble_hs_l2c_err:33,ble_hs_reset_fn:38,ble_hs_sched_reset:27,ble_hs_sm_peer_err:33,ble_hs_sm_us_err:33,ble_hs_start:27,ble_hs_sync:27,ble_hs_sync_fn:38,ble_ibeacon_set_adv_data:192,ble_l2cap:89,ble_l2cap_chan_pool:86,ble_l2cap_sig_err_cmd_not_understood:33,ble_l2cap_sig_err_invalid_cid:33,ble_l2cap_sig_err_mtu_exceed:33,ble_l2cap_sig_proc_pool:86,ble_ll:[89,90],ble_ll_cfg_feat_le_encrypt:173,ble_ll_conn:89,ble_ll_prio:176,ble_lp_clock:36,ble_max_connect:[14,220,222],ble_mesh_dev_uuid:45,ble_mesh_pb_gatt:45,ble_npl_eventq:27,ble_own:[191,192],ble_own_addr_publ:28,ble_own_addr_random:[28,191,192],ble_own_addr_rpa_public_default:28,ble_own_addr_rpa_random_default:28,ble_phi:89,ble_public_dev_addr:35,ble_rigado:60,ble_role_broadcast:222,ble_role_peripher:222,ble_sm_err_alreadi:33,ble_sm_err_authreq:33,ble_sm_err_cmd_not_supp:33,ble_sm_err_confirm_mismatch:33,ble_sm_err_cross_tran:33,ble_sm_err_dhkei:33,ble_sm_err_enc_key_sz:33,ble_sm_err_inv:33,ble_sm_err_numcmp:33,ble_sm_err_oob:33,ble_sm_err_pair_not_supp:33,ble_sm_err_passkei:33,ble_sm_err_rep:33,ble_sm_err_unspecifi:33,ble_sm_legaci:173,ble_store_config:14,ble_svc_gap_device_name_set:219,ble_svc_gatt_chang:[29,30],ble_tgt:[183,191,192],ble_uu:190,ble_uuid128_init:[217,219],ble_uuid128_t:[217,219],ble_uuid16:[188,190],ble_uuid16_declar:[217,219],ble_uuid:[217,219],ble_uuid_128_to_16:188,ble_uuid_t:[29,30],ble_uuid_u16:[217,219],ble_uuidxx_declar:[29,30],ble_xtal_settle_tim:36,blecent:[7,14,74],blecsc:74,blehci:[7,74],blehciproj:184,blehostd:79,blehr:74,blemesh:[43,45,74],blemesh_light:74,blemesh_shel:74,blenano:66,bleprph:[7,21,43,74,79,173,185,186,187,188,189,190,203,217,218,219,220,234],bleprph_advertis:[186,189],bleprph_appear:188,bleprph_device_nam:[186,188],bleprph_le_phy_support:219,bleprph_log:[186,189,217,219],bleprph_oic:[7,74,225],bleprph_oic_sensor:220,bleprph_on_connect:186,bleprph_pref_conn_param:188,bleprph_print_conn_desc:189,bleprph_privacy_flag:188,bleprph_reconnect_addr:188,blesplit:[7,74],bletest:[7,74],bletoh:102,bleuart:[7,74],bleuartx000:25,blink:[1,7,74,106,112,181,193,194,196,197,198,199,200,205,207,219,236],blink_nord:234,blink_rigado:60,blinki:[1,11,17,18,20,47,56,57,61,68,74,106,183,184,204,205,207,211,218,219,228,229,230,232,233,234,236],blinky_callout:195,blinky_sim:74,blksize:103,blksz:[86,230],blob:[33,145],block:[33,41,86,99,100,102,103,111,121,127,130,141,149,152,154,155,163,205,218,230],block_addr:103,block_siz:103,blocks_siz:103,blue:200,bluetooth:[1,9,18,19,21,33,34,35,36,39,41,45,102,173,185,186,191,192,194,203,218,236],bmd300eval:[61,66,198,219],bmd:[198,219],bmp280:25,bno055:[164,165,220,222,224],bno055_0:[164,221,224],bno055_acc_cfg_bw_125hz:224,bno055_acc_cfg_rng_16g:224,bno055_acc_unit_ms2:224,bno055_angrate_unit_dp:224,bno055_cfg:[165,224],bno055_cli:[221,222],bno055_config:[165,224],bno055_default_cfg:165,bno055_do_format_android:224,bno055_err:165,bno055_euler_unit_deg:224,bno055_get_chip_id:165,bno055_id:165,bno055_info:165,bno055_init:[164,165],bno055_log:165,bno055_ofb:[164,220,221,222],bno055_opr_mode_ndof:224,bno055_pwr_mode_norm:224,bno055_sensor_get_config:165,bno055_sensor_read:165,bno055_shel:221,bno055_shell_init:221,bno055_stat:165,bno055_stat_sect:165,bno055_temp_unit_degc:224,board:[1,2,4,5,7,11,17,21,25,35,36,42,52,55,60,66,68,70,71,72,74,105,106,121,143,144,149,165,166,171,173,175,176,180,181,184,187,191,192,194,195,201,203,205,207,217,218,224,225,226,228,231,233,234,236],bodi:[115,162,178,224],body_len:162,bold:180,bond:[28,34,39,41,42,187],bondabl:39,bone:[97,185,191,192,236],bookkeep:127,bool:[103,113,117,161],boot:[7,15,21,27,56,74,106,113,114,117,157,180,184,193,196,197,198,199,200,201,203,204,211,218,219,221,223,226,229,230,232],boot_boot_serial_test:7,boot_bootutil:173,boot_img_mag:115,boot_load:106,boot_mag:115,boot_nrf52dk:218,boot_olimex:199,boot_seri:[7,117],boot_serial_setup:7,boot_test:7,bootabl:[173,203,229,232],bootload:[1,11,18,24,25,56,60,106,109,114,117,153,157,180,194,195,203,207,218,219,220,222,223,231],bootutil:[7,114,115,117,193,196,197,198,199,200,204,211,218,219,221,229,230,232],bootutil_misc:[7,193,196,197,198,200,221,229,230,232],both:[6,9,10,14,27,33,34,39,41,52,68,70,71,72,75,102,104,106,111,115,116,118,121,141,149,152,161,162,173,175,176,179,193,195,204,210,211,214,219],bottl:[71,94],bottom:[11,106,110,112,187],bound:[102,106,139],boundari:[102,103,106],box:[11,234],bps:155,brace:25,branch:[1,4,7,10,13,18,20,68,69,70,72,73,92,93,95,96,115,193,211,212,213],branchnam:13,brand:200,bread:219,breadboard:219,breakdown:173,breakpoint:[193,197],breviti:[173,180,230],brew:[3,4,7,10,49,68,71,73,94,96],brick:115,brief:[14,32,148,191,192,204],briefli:106,bring:[11,106,143,221,225,228],broad:236,broadca:[191,192],broadcast:[14,27,39,44,186,191,192],brows:[187,196,212],bsd:114,bsncent:74,bsnprph:74,bsp:[1,7,16,25,36,45,47,50,51,55,56,58,60,63,68,74,75,105,116,121,141,143,147,148,154,155,163,164,165,166,168,173,176,180,183,184,187,193,195,196,197,198,199,200,204,205,211,218,219,220,221,222,223,224,226,229,230,232,233,234,236],bsp_arduino_zero:193,bsp_arduino_zero_pro:[193,211],bsp_timer:154,bsppackag:106,bss:[20,61,106,173],bssnz_t:[217,219],bt_mesh_provis:14,btattach:184,btmesh_shel:14,btshell:[7,41,43,50,51,58,59,63,74,84,187,201],btshell_chr_pool:86,btshell_dsc_pool:86,btshell_svc_pool:86,buad:79,buf:[116,122,139,161,162],buf_len:[102,116],buffer:[14,19,21,28,29,30,33,102,103,105,109,110,116,117,121,146,149,152,161,162,175,192,219],buffer_len:219,buffer_size_down:233,bug:[4,7,10,193,197,226,233,234],bugzilla:25,bui:219,build:[1,2,3,4,5,6,10,14,20,24,44,45,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,93,95,105,106,107,109,115,121,143,149,160,162,166,173,174,175,176,178,185,186,187,194,203,205,210,217,218,223,228,231,236],build_arduino_blinki:11,build_arduino_boot:11,build_numb:159,build_profil:[1,45,50,51,56,63,66,74,106,173,180,183,184,187,193,196,197,198,199,200,204,211,218,219,220,221,222,223,226,229,230,232],buildabl:7,built:[1,4,7,8,9,15,26,43,46,47,51,52,55,56,68,70,71,72,73,74,76,94,95,96,102,115,152,162,173,178,180,183,184,187,191,192,193,194,195,196,197,198,199,200,201,204,210,211,217,218,219,220,221,226,229,230,232],bundl:[24,68,114],burn:[24,191,192],bus:[2,149],buse:[121,143],busi:[33,103,104,207,218],button1_pin:205,button:[2,4,11,13,24,111,193,196,205],bytes_read:139,bytesp:127,c_ev:97,c_evq:97,c_tick:97,cabl:[184,193,194,196,197,198,199,201,203,204,205,207,211,219,226,228,229,231,232],cach:[71,94,121,141,143],cache_large_file_test:210,cal:223,calcul:[29,30,33,41,61,102,103,113,115,127,162],calendar:9,call:[6,7,9,10,14,23,27,28,29,30,32,35,38,43,49,74,97,98,99,100,101,102,103,104,105,106,110,111,112,113,114,115,116,117,118,119,121,122,125,127,128,129,130,132,133,137,142,145,148,149,151,152,153,154,155,156,158,161,162,163,164,165,167,168,169,170,172,174,176,178,182,183,186,187,188,189,190,191,192,193,195,201,204,205,207,210,212,218,219,220,221,223,226,231],callback:[14,27,28,29,30,33,38,99,100,102,103,113,117,127,132,137,148,152,154,155,162,163,164,165,167,169,170,172,176,186,188,190,191,192,195,205,218,226],caller:[28,102,103,117,127,146,154,160,161,162],callout:[100,105,110,168,195,226],callout_l:205,callout_reset:116,came:184,can:[1,2,3,4,5,6,7,8,9,10,11,14,15,17,18,19,21,25,26,27,28,29,30,32,33,34,35,36,39,42,43,44,46,47,48,55,58,63,68,70,71,72,73,74,75,76,77,79,85,89,93,94,95,96,97,98,99,100,102,103,104,105,106,107,109,110,111,112,114,115,116,117,118,121,122,123,124,127,128,130,132,133,137,138,139,141,142,143,148,150,151,152,154,155,156,157,161,162,163,164,165,166,167,168,172,173,174,175,176,178,179,180,181,183,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,208,210,211,212,213,217,218,219,220,221,222,223,224,226,228,229,230,232,233,234,236],cancel:[28,33,39,97],candid:212,cannot:[4,14,32,33,84,99,101,104,105,111,115,138,144,152,154,176,193,201,211,212,213,214],cap:14,capabl:[33,34,39,41,108,117,121,162,173,195,207,233],capac:33,captian:94,carbon:217,card:[121,123,138],care:[16,28,102,105,112,191,192,212,213,217],carri:102,cascad:[1,74],case_nam:178,cast:[102,103,188],cat:[25,93,218,219],catastroph:38,categor:106,categori:[18,109],caus:[14,27,103,105,111,149,153,163,175,203,207,219,233],caveat:[14,115],cb_arg:[14,28,29,30,116,127,137,154,178,186,190,191,192],cb_func:154,cbmem:[7,162],cbmem_buf:162,cbmem_init:162,cbor:[119,120],cborattr:7,cc1:25,cccd:[28,29,30,39],ccm:34,cdc:196,cell:34,cellar:[4,6,10,49,71,73,94,96],central:[33,42,185,186,187,189],certain:[1,18,43,102,103,105,106,121,184,213],certainli:[14,219],cess_op_:188,cfg:[83,139,149,152,154,155,163,164,165,197],cflag:[1,25,63,74,106],cgi:[25,114],ch_commit:116,ch_export:116,ch_get:116,ch_get_handler_t:116,ch_name:116,ch_set:116,chain:[102,103,161],challeng:208,chanc:[105,112],chang:[1,4,6,7,10,13,14,17,18,20,21,28,29,30,32,33,34,36,40,42,43,59,62,63,65,70,74,75,93,102,106,107,113,115,116,148,152,162,163,164,172,173,175,176,180,181,184,187,189,191,192,193,196,197,201,205,207,217,218,220,221,222,223,226,228,233,234],channel:[14,28,33,41,43,121,219],channel_map:[28,39],chapter:[2,43,109,119],charact:[117,126,141,155,157,159,160,161,172,176,190,211,218,226,233],character:36,characteri:[188,190],characterist:[9,29,30,39,40,43,115,162,187,190,217,219],check:[4,6,8,10,14,15,17,23,33,34,68,69,92,97,100,103,112,113,116,146,161,163,165,173,175,176,180,183,184,185,196,199,203,204,210,213,221,224,231],checkbox:72,checkin:[90,110,112],checkout:[13,93,95,194],checksum:[127,129],child:[103,139],chip:[4,109,121,122,143,148,152,153,163,165,193,194,196,197,200,211,212,221,223],chip_id:[221,223],chipset:[121,143,193,211],choic:[2,13,141,184,221],choos:[6,7,13,14,21,72,102,112,114,173,174,183,186,195,196,198,201,207,217,219],chose:174,chosen:[102,106,115,138,219],chr:[29,30,188,217,219],chr_access:188,chr_def_handl:[29,30],chr_end_handl:[29,30],chr_uuid128:[29,30],chr_uuid:[29,30],chr_val_handl:[29,30,217,219],chunk:[21,102],ci40:66,cid:187,circuit:149,circular:[19,162,175,176],circularli:213,clamp:223,clang:6,clarif:13,clarifi:121,clariti:123,classif:33,clean:[1,10,26,46,52,63,70,71,72,76,94,139,204,207],cleanli:176,clear:[28,29,30,85,97,102,103,112,115,127,163,167,168],clearli:[8,33],cli:117,click:[2,4,11,13,187,191,192,193,196,197,199,223,232],client:[11,14,15,19,30,31,33,39,43,44,139,142,166,191,217],clk:152,clock:[28,33,37,99,153,193,197,221],clock_freq:99,clone:[10,13,58,63,68,71,94],close:[2,72,121,139,155,164,193,196,197,199,200,224],closer:[72,95],closest:154,clue:25,cmake:1,cmd:[68,74,106,146,172,218,221],cmd_len:218,cmd_pkt:218,cmd_read_co2:218,cmp:218,cmsi:[2,7,24,61,193,196,197,198,199,200,226],cmsis_nvic:[196,197,198,199,200,226],cn4:180,cnt:[86,117,141,152,162,174,230],co2:[217,218],co2_evq:217,co2_read_ev:217,co2_sns_str:217,co2_sns_typ:217,co2_sns_val:217,co2_stack:217,co2_stack_s:217,co2_task:217,co2_task_handl:217,co2_task_prio:217,coap:[120,166,170,220,225],coars:33,coc:39,code:[1,5,7,9,10,12,13,14,15,26,27,28,29,30,31,36,38,39,41,43,68,98,102,103,105,108,109,110,113,114,115,116,117,119,121,123,126,127,139,142,143,144,148,149,152,154,155,157,162,163,164,165,166,167,168,169,173,176,178,185,186,188,189,190,193,194,195,201,204,205,207,209,211,212,218,219,220,223,224,225,226,228,230,231,236],codebas:[193,211],coded_interval_max:39,coded_interval_min:39,coded_lat:39,coded_max_conn_event_len:39,coded_min_conn_event_len:39,coded_param:28,coded_scan_interv:39,coded_scan_window:39,coded_timeout:39,codepag:138,coding_standard:7,coexist:115,collect:[1,7,56,68,74,102,103,119,127,142,161,173,180,212],collis:33,colon:[14,79],color:181,column:32,com11:8,com1:79,com3:[8,195,211,221,229,232],com6:8,com:[8,10,11,13,26,28,46,68,70,71,72,76,93,94,95,114,145,180,184,195,211,212,214,221,229,230,232],combin:[1,33,34,38,56,74,105,106,149,183,191,192,212,213],combo:173,come:[3,42,43,68,74,106,114,116,117,121,162,193,199,200,211,218,219,232],comm:[180,194],comma:[64,79],command:[1,2,4,7,8,10,14,15,21,27,33,42,47,48,49,50,51,53,54,55,57,58,59,60,61,62,64,65,66,67,70,71,72,73,74,80,81,83,84,85,88,89,91,93,94,95,96,106,109,115,118,120,123,124,125,149,157,158,162,166,173,174,175,176,178,180,181,183,191,192,193,195,196,197,198,199,200,203,204,207,208,210,211,212,214,215,219,220,221,222,223,224,226,229,232,233,234],comment:[3,13,14,26,106,179,223,236],commerci:218,commit:[10,13,116,219],common:[68,74,100,102,109,111,112,121,122,140,143,148,165,166,173,190,197],commonli:[18,111,152,191],commun:[9,38,39,43,44,79,91,117,119,123,149,152,163,164,165,180,181,184,186,189,194,203,204,205,207,211,212,219,221,226,229,230,231,232,236],compani:41,compar:[13,33,102,163,196,197,198,204,207,215,219],compare_func:168,comparison:[33,34,102,113,168],compat:[4,14,18,21,25,43,68,115,117,122,172,173,193,204,211,218,221,223,224,226,233],compens:113,compil:[1,4,5,6,7,8,10,14,33,47,60,66,68,71,74,94,102,105,106,109,114,121,172,174,178,179,180,183,193,196,197,198,199,200,201,204,205,211,218,219,220,221,226,229,230,232],complaint:43,complementari:44,complet:[9,11,26,28,33,34,39,41,42,46,68,72,76,106,108,109,112,115,117,127,139,143,146,149,152,155,162,173,179,184,186,191,192,197,205,207,212,218,219,220,224,225,226,229,230,232],completion_cb:117,complex:[9,44,105,106,121,143,182,207],compli:43,complianc:[218,219],compliant:43,complic:[68,105,173],compon:[1,7,11,31,52,61,68,70,71,72,74,98,106,109,116,121,143,149,152,173,174,184,191,192,194,201,203,205,211,218,228,231],compos:[52,70,71,72,179],composit:161,comprehens:179,compress:[68,94,141,191],compris:[7,115,141],comput:[3,4,6,8,11,14,24,44,69,71,72,92,94,117,129,138,183,184,193,194,196,197,198,199,200,203,207,220,222,223,228,229,231,232],concept:[11,34,102,105,172,176,182,183,185,193,194,203,207,211,228,231],conceptu:19,concern:[3,28,102],concis:119,conclud:[191,192,219],concurr:[1,14,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,97,101,185,186],condit:[4,28,33,115,149,164,168,172,175,210,218,219],condition:[68,164,175,176,221,223],conduct:[115,119],conf:204,conf_bytes_from_str:116,conf_commit:116,conf_commit_handler_t:116,conf_dst_regist:116,conf_ensure_load:116,conf_export_func_t:116,conf_export_handler_t:116,conf_export_persist:116,conf_export_show:116,conf_export_tgt:116,conf_export_tgt_t:116,conf_fcb_dst:116,conf_fcb_src:116,conf_file_dst:116,conf_file_src:116,conf_get_handler_t:116,conf_get_stored_valu:116,conf_get_valu:116,conf_handl:116,conf_init:116,conf_int8:116,conf_load:[116,219],conf_regist:116,conf_sav:116,conf_save_on:116,conf_save_tre:116,conf_set_from_storag:116,conf_set_handler_t:116,conf_set_valu:116,conf_src_regist:116,conf_stor:116,conf_store_init:116,conf_store_load_cb:116,conf_str_from_byt:116,conf_str_from_bytes_len:116,conf_str_from_valu:116,conf_typ:116,conf_value_from_str:116,conf_value_set:116,confidenti:34,config:[1,7,14,45,63,74,75,77,91,93,94,95,118,122,138,139,154,175,176,183,201,218,219,221],config_:164,config_bno055_sensor:[164,224],config_cli:116,config_fcb:[116,175],config_fcb_flash_area:[175,176],config_lis2dh12_sensor:164,config_newtmgr:[63,201],config_nff:[116,139,175],config_pkg_init:176,configur:[6,7,9,19,28,29,30,32,33,37,38,44,45,63,68,70,71,72,74,75,99,103,105,106,107,109,115,117,119,121,139,141,143,144,148,149,152,154,155,156,166,167,170,173,177,183,186,190,193,196,199,200,204,205,207,208,214,218,219,221,223,225,226,228,230,233,234],configuraton:138,confirm:[8,25,33,39,84,115,173,204,229,232],confirmbe9699809a049:84,conflict:[74,175,213],confluenc:13,confus:[212,219],congratul:[7,180,187,217,218,219],conifgur:116,conjunct:[44,167],conn:[21,39,40,42,77,78,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,189,191,192,203,229,230,232],conn_handl:[14,28,29,30,33,187,188,189,217,219],conn_interval_max:41,conn_interval_min:41,conn_itvl:[28,42,187],conn_lat:[28,42,187],conn_mod:[28,189],conn_param:28,conn_profil:[78,79,80,81,82,83,84,85,86,87,88,89,90],conn_upd:189,connect:[4,7,8,9,11,17,27,28,29,30,33,34,36,38,40,41,43,44,51,55,56,68,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,109,117,119,120,121,143,148,149,152,153,173,180,185,186,187,188,189,191,192,194,205,217,218,223,227,228,231],connect_don:211,connectable_mod:186,connection_profil:84,connectionless:39,connector:[4,184,196,199,201,204,232],connextra:21,connintervalmax:41,connintervalmin:41,connstr:[21,79,203,229,230,232],conntyp:21,consecut:110,consequ:[33,115,173],conserv:[9,102,109],consid:[8,43,75,102,105,111,129,149,190,212],consist:[1,43,44,74,111,112,115,116,119,121,152,173,175,176,178,190],consol:[1,7,8,11,14,19,38,68,74,109,114,116,124,139,155,162,176,183,184,187,191,192,194,205,210,218,219,223,230],console_append_char_cb:117,console_blocking_mod:117,console_compat:117,console_echo:117,console_handle_char:117,console_init:117,console_input:117,console_is_init:117,console_is_midlin:117,console_line_event_put:117,console_line_queue_set:117,console_max_input_len:117,console_non_blocking_mod:117,console_out:117,console_pkg_init:176,console_printf:[24,33,38,117,139,217,218,219,226],console_read:117,console_rtt:[117,218,226,233],console_rx_cb:117,console_rx_restart:117,console_set_completion_cb:117,console_set_queu:117,console_sil:117,console_tick:117,console_uart:[117,218,226,233],console_uart_baud:117,console_uart_dev:117,console_uart_flow_control:117,console_uart_tx_buf_s:117,console_writ:117,consortium:119,constant:[14,17,28,152,162,163],constantli:[186,211,219,236],constitu:56,constrain:[9,68,120,208],constraint:193,construct:[10,24,102,111],consult:[139,143],consum:[29,30,100,111,155],consumpt:34,contact:[107,108,180],contain:[1,3,7,10,14,16,18,26,28,29,30,41,44,47,63,68,74,97,102,103,106,108,109,111,112,113,115,116,117,119,121,124,127,139,140,144,148,155,157,159,160,161,163,167,168,173,174,176,178,179,183,184,186,188,190,191,192,204,210,212,213,221,236],content:[11,25,28,29,30,62,74,93,102,106,115,127,128,129,139,154,161,162,173,180,186,190,191,192,199,204,207,210,213,214,221,223,224],context:[14,19,28,29,30,68,90,98,99,100,105,112,117,121,124,126,152,154,163,168,172,176,189,195,201,205],contigu:[102,115,127],continu:[6,14,28,106,111,116,172,173,181,184,193,194,199,201,205,207,211,219,222,224,225,226,228,230,231,233],contrast:176,contribut:[12,34,70,71,72,93,94,95,114,182,210,219,228],contributor:[143,218,219],control:[8,9,14,19,27,28,31,32,33,34,35,37,38,41,43,44,68,79,109,117,121,127,141,143,145,152,155,162,165,172,176,183,197,199,212,213,218,223,225],contruct:187,convei:102,conveni:[11,28,33,102,116,160],convent:[204,210,221,226],convers:[113,114,121,188],convert:[1,8,33,84,97,99,102,113,116,121,152,161,168,176,188,190,219],convini:168,cooper:14,coordin:[220,222],copi:[1,4,14,58,62,63,75,93,95,102,107,108,115,116,127,161,164,173,174,186,189,193,203,218,219,224,226,233,234],copy_don:115,copyright:[4,193,199,218,219,226,233,234],core:[1,6,7,11,18,20,24,25,28,29,30,41,43,45,50,51,56,61,63,64,66,68,74,75,84,101,106,108,110,117,119,121,122,123,138,139,142,143,145,162,164,172,173,174,176,177,180,183,184,185,186,187,193,194,195,196,197,198,199,200,204,207,210,211,212,213,218,219,220,221,222,223,226,228,229,230,231,232,233,234,236],core_cminstr:197,core_cmx:24,core_o:117,core_path:74,coreconvert:84,coredownload:84,coredump:[7,144],coredump_flash_area:176,coreeras:84,corelist:84,corner:199,corp:[2,193],correct:[1,2,4,14,19,21,23,54,103,106,113,115,141,173,176,184,197,198,199,204,207,210,219,221],correctli:[2,16,102,181,184,193,197,210,218,220],correpond:113,correspo:190,correspond:[11,28,29,30,33,99,102,103,106,115,142,162,163,168,186,188,191,192,213,219],correspondingli:28,corrupt:[14,103],corrupt_block_test:210,corrupt_scratch_test:210,cortex:[4,114,196,198,204,211,219,226],cortex_m0:74,cortex_m4:[74,106,196,197,198,199,200,204,226],cortex_m:193,cost:9,could:[14,19,29,30,33,102,111,159,188,223],couldn:186,count:[24,29,30,68,94,102,111,112,115,116,161,177],counter:[98,102,174,204],countri:43,coupl:[1,14,199,219],cours:[14,217],cover:[8,74,121,176,177,179,190,207,223],cpha:152,cpol:152,cpptool:11,cpu:[14,17,98,106,108,121,143,144,151,193,197,207],cputim:[36,99,221,226],cputime_geq:99,cputime_gt:99,cputime_leq:99,cputime_lt:99,crank:219,crash:[77,91,93,94,95,110,115,118,153,155,201],crash_test:[7,118,201],crash_test_newtmgr:201,crc:[7,117,123,218],creat:[1,2,3,4,5,6,8,10,11,13,14,15,21,23,24,25,28,34,39,45,47,52,54,56,57,58,59,60,63,68,70,71,72,74,75,79,84,93,94,95,100,103,104,105,108,110,111,112,114,117,121,130,139,141,162,163,165,166,168,170,173,174,175,176,178,181,185,190,194,195,212,214,217,224,225,228,231,236],create_arduino_blinki:11,create_mbuf_pool:102,create_path:139,creation:[60,121,180,204,219],creator:[163,164,165,166,168,220,221,223,224,226],credenti:214,criteria:[33,162],critic:3,cross:[5,6,7,9,109],crt0:61,crti:61,crtn:61,crw:8,crypto:[7,24,193,196,198,200,211,229,230,232],crypto_mbedtl:173,cryptograph:[34,115],cryptographi:34,crystal:37,csrk:39,cssv6:41,csw:[90,229,232],ctlr_name:79,ctlr_path:79,ctrl:[11,183,221,233],ctx:168,ctxt:[29,30,188,189,217,219],cur_ind:189,cur_key_s:28,cur_notifi:189,curi:[187,189],curiou:3,curl:[10,71],curn:[187,189],curr:211,currantlab:[94,95],current:[10,14,24,28,36,39,44,52,53,54,57,58,59,63,64,70,71,72,73,84,94,95,96,97,98,99,102,103,104,105,106,110,111,112,113,115,116,117,121,122,123,124,126,127,138,139,148,149,152,154,157,163,168,172,174,175,180,191,193,194,197,199,201,203,204,207,208,212,213,215,221,226],cursor:168,custom:[25,35,84,103,119,142,144,162,172,176],cvs:[193,199,226,233,234],cwd:11,cycl:[28,32,43,44],cylind:219,daemon:[2,184],dai:[113,172],dap:[2,193,196,200],daplink:17,darwin10:[193,226,233,234],darwin:6,data:[9,14,17,24,27,28,29,30,33,39,40,42,43,44,56,61,77,82,93,94,95,97,99,102,103,105,106,109,112,115,116,117,119,120,128,129,130,131,132,133,137,140,150,152,155,162,164,166,170,171,173,176,177,188,189,191,192,207,217,218,223,228,234,236],data_func:163,data_len:[28,29,30,218],data_mod:152,data_ord:152,databas:[29,30,40],databit:155,databuf:[102,226],datalen:39,datasheet:[106,223],date:[10,81,138,204,210,218],datetim:[7,77,91,93,94,95,117,118,120,201,210],datetime_pars:210,daunt:186,daylight:113,dbm:[39,41,43],deactiv:173,deal:[102,105,106,121],deb:[70,73,93,96],debian:[4,6],debug:[1,2,4,5,6,7,17,19,23,52,56,60,63,68,70,71,72,75,107,165,166,175,180,183,184,193,195,196,197,198,199,200,203,211,218,219,220,221,222,223,226,229,230,232,233,234],debug_arduino_blinki:11,debug_arduinoblinki:11,debugg:[5,25,51,52,68,70,71,72,74,153,193,196,197,199,200,204,232,233,234],dec:[61,173],decemb:34,decid:[68,98,109,207],decim:[24,34,149],decis:149,declar:[11,29,30,104,112,116,145,154,164,205,210,212,224,226],decod:[116,172],decompress:191,dedic:[14,100,106,109,172,173,188,201,205,233,234],deep:144,deeper:[102,180,204,219],def:[7,29,30,164,175,176,226],defaultdevic:95,defin:[1,6,14,16,17,18,28,32,33,36,39,40,41,43,44,47,55,56,60,63,66,74,97,99,100,102,103,105,110,112,115,116,118,120,121,139,141,144,145,147,148,152,161,162,163,164,166,167,168,170,171,172,173,175,176,178,180,182,184,186,188,194,196,204,205,207,210,212,213,217,218,219,220,221,225,226,229,231,232,233],defininig:44,defininit:160,definit:[1,11,29,30,41,48,50,55,63,74,97,102,103,106,115,172,174,178,184,188,190,212,217],defint:[102,175],del:39,delai:[14,38,99,113,154,181,204,207,223],deleg:173,delet:[1,6,11,13,39,48,52,58,62,63,68,70,71,72,74,75,141,181,208,224,226],delimit:[63,116],deliv:[97,138],delta:[68,94,180],demo:217,demonstr:[33,38,102,139,204,221,226],denable_trac:25,denot:102,dep:[1,63,68,74,75,106,117,122,123,138,139,142,143,162,164,172,174,176,183,195,201,205,210,218,219,220,226],depend:[1,4,6,8,14,18,25,28,33,34,36,39,52,54,62,63,65,68,70,71,72,75,79,97,102,108,114,115,117,138,139,148,149,152,162,164,172,174,176,178,183,193,207,210,211,212,215,218,219,221,223,229,231,232],depict:143,deploi:[56,173,195],deploy:44,deprec:176,depth:[4,108],dequeu:[100,205],deriv:33,desc:189,descend:115,describ:[1,2,7,10,11,13,26,36,40,46,76,103,105,106,107,109,112,113,115,116,119,127,133,138,140,141,148,150,152,153,162,163,164,165,172,173,175,176,178,180,183,185,190,191,197,200,201,204,212,218,219,220,221,224,228],descript:[1,7,13,14,25,32,39,40,42,68,74,102,106,107,108,116,123,126,128,129,130,131,132,133,134,135,136,137,159,160,164,174,175,176,180,204,208,210,212,213,218,219,234],descriptor:[28,29,30,39,40,74,141,188],descripytor:[29,30],design:[27,34,35,43,68,109,110,113,115,141,172,173,190,207,210],desir:[99,102,111,154,164,168,210,215],desktop:13,destin:[4,14,44,102,149,160,162],detail:[1,11,13,14,15,28,34,41,43,68,105,112,115,116,139,141,149,152,163,164,165,173,180,183,186,188,190,191,192,193,201,204,212,226,233,234],detect:[33,68,103,127,139,141,153,175,176,184],determin:[29,30,33,100,102,103,112,115,127,146,154,163,172,173,176,179,186,189,212,224],determinist:14,dev:[1,2,3,4,7,8,10,11,13,21,25,61,74,79,95,117,121,122,163,164,165,176,179,180,181,183,184,187,193,195,196,197,198,199,200,203,204,211,212,213,214,218,219,220,221,223,224,226,229,230,232,236],dev_found:184,develop:[3,5,6,7,8,9,12,19,33,68,72,74,95,102,103,105,107,108,109,112,119,121,163,166,170,172,176,179,184,185,188,191,193,194,196,199,200,203,207,212,213,218,219,225,228,232,233,234,236],devic:[3,4,8,9,15,17,27,28,29,30,32,33,34,37,40,41,43,44,45,56,68,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,109,115,117,119,120,121,122,123,139,143,145,148,149,152,166,167,168,170,173,174,175,176,177,182,183,185,186,187,188,190,191,192,193,195,196,197,198,199,200,201,204,211,217,219,225,226,227,229,230,231,232,233,234,236],device_id:145,deviceaddr:35,deviceaddrtyp:35,devnam:168,dflt:161,dhcp:211,dhkei:33,diag:[155,223],diagnost:223,diagram:[119,197,199,207],dialog:[11,72,234],dictat:[10,29,30,75],did:[20,21,173],didn:223,diff:218,differ:[4,6,7,8,10,11,14,15,18,19,20,21,27,29,30,33,36,39,42,58,68,70,93,97,102,104,105,106,107,108,109,112,116,121,141,143,148,155,164,173,174,175,176,183,184,195,196,197,199,201,203,205,207,208,210,211,212,213,215,218,221,223,224,226,232,234],differenti:[102,212],difficult:[43,108,115,175],dig:[7,185],digit:[24,34,121,148,219],dioxid:217,dir:[39,123,139,140],direct:[13,28,33,39,72,149,172,174,213],direct_addr:[28,191,192],directli:[7,8,10,27,31,49,139,154,155,162,173,176,191,193,208,210,211,220,224],directori:[1,4,6,7,8,10,11,13,18,25,47,48,50,54,56,58,63,68,70,72,73,93,95,96,101,106,107,108,121,123,139,141,151,153,178,180,181,183,184,193,194,196,197,198,199,200,210,211,212,213,218,219,220,221,223,226,228,229,231,232,234,236],dirent:[123,139,140],dirnam:139,dirti:180,disabl:[6,25,33,34,36,42,98,99,117,138,148,152,155,162,164,165,172,173,175,176,189,201,208,211,219,220,221,222,226,233],disable_auto_eras:122,disallow:[33,141],disbl:172,disc_mod:[28,189,218],disc_param:28,discard:[162,211],disciplin:184,disclaim:[7,10,68,183],disconnec:39,disconnect:[39,189],discontigu:115,discov:[14,29,30,34,39,40,184],discover:[14,28,29,30,39,41,120,170,186,225],discoverable_mod:186,discoveri:[14,28,29,30,40,119,121,123,184,189,194],discret:141,discrimin:28,discuss:[13,102,107,164,173,186,221],disjoint:33,disk:[7,115,127,139,141],disk_nam:139,disk_op:123,disk_regist:[123,139],dispatch:[105,176,205],displai:[1,6,14,34,39,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,74,75,77,79,82,84,85,86,89,90,93,94,95,116,121,143,176,184,199,204,220,222,228,229,232],displayonli:39,displayyesno:39,dist:[70,93],distanc:[43,174],distinct:34,distinguish:19,distribut:[1,4,6,33,39,43,68,114,115,212,218,219],distro:6,div0:80,dive:102,diversifi:28,divid:[31,33,80,116,118,141,173],dle:39,dll:[196,198,204,219],dm00063382:180,dma:121,dndebug:63,dnrf52:106,do_task:174,doc:[4,6,7,13,26,35,46,76,193,197],docker:[3,7,193,236],dockertest:2,document:[1,4,8,11,17,18,19,24,27,31,33,35,37,72,75,77,106,110,114,124,138,139,142,143,145,167,173,178,180,185,188,190,191,192,193,196,198,203,207,210,211,212,221,226,229,230,233,234],doe:[7,14,17,20,21,24,25,27,28,33,34,48,63,72,74,79,84,100,102,103,105,106,107,112,113,115,116,117,119,121,127,141,146,149,152,157,162,164,165,167,174,175,176,183,186,193,196,197,198,200,201,203,204,205,207,208,214,226,231],doesn:[8,14,21,33,45,110,115,123,168,173,181,183,184,186,196,207],doing:[23,101,113,121,188,195,207],domain:2,don:[1,13,14,19,24,28,29,30,44,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,100,102,116,124,127,180,188,190,191,192,212,218,219],done:[6,7,8,15,23,28,35,37,68,94,104,105,106,113,115,117,127,128,156,157,168,180,184,190,191,192,193,196,197,198,201,203,204,207,211,219,226,233,234],dont:[223,233],doorbel:68,dop:139,doubl:[2,161,199],doubt:[14,190],down:[1,11,74,93,95,148,173,197,199,201,232],downgrad:[6,7],download:[1,2,4,7,11,13,15,18,20,41,52,54,55,68,71,72,73,83,84,94,95,96,139,157,183,184,193,196,197,198,199,200,210,211,214,226,228,229,230,232,233,234],doxygen:[4,7,26,101,193,197],doxygengroup:101,dpidr:200,dpkg:[70,73,93,96],dptr:162,drag:33,drain:36,draw:36,drive:[9,25,74,113,121,149],drive_tim:223,driver:[7,17,18,25,68,122,123,139,143,147,148,150,152,154,155,164,166,174,183,193,196,197,198,199,200,211,221,223,226,232,233],drop:[11,21,38,155,197,199,232],drv2605:227,drv2605_calibrated_bemf:223,drv2605_calibrated_bemf_gain:223,drv2605_calibrated_comp:223,drv2605_cli:223,drv2605_drive_tim:223,drv2605_en_pin:223,drv2605_od_clamp:223,drv2605_ofb:223,drv2605_rated_voltag:223,drv2605_shell:223,drv2605_shell_init:223,dsc:[29,30,188],dsc_uuid:[29,30],dsize:102,dst:[14,58,63,83,102,139,146,160],dsym:[68,74],dtest:63,due:[17,23,28,29,30,33,103,115,122,127,138,153,168,193,197,199],dump:[25,29,30,116,223,233],dump_cal:223,dumpreg:221,duplex:43,duplic:[39,102],durat:[14,28,32,39,42,113,188,221],duration_m:[28,191,192],dure:[14,19,28,29,30,33,34,84,98,106,110,112,115,117,158,162,163,164,173,176,178,183,188,195,207,220,224],duti:[28,43,44],dwarf:74,dylib:4,dyn:[72,95],dynam:[101,103],e407:[199,232],e407_:199,e407_devboard:[66,199,232],e407_devboard_download:199,e407_sch:232,e761d2af:[217,219],e_gatt:190,eabi:[4,7,11,20,106,114,193,226,233,234],each:[1,2,10,11,13,14,19,20,21,29,30,32,33,34,35,40,43,45,56,61,62,63,74,75,77,79,86,90,100,102,103,105,106,111,113,115,117,121,139,141,143,148,162,163,165,166,167,168,170,172,173,174,176,188,189,190,191,192,193,201,205,207,210,212,221,224,225,226,236],eager:3,earlier:[13,42,70,71,72,93,94,95,116,188,191,192,218,219,233],eas:122,easi:[1,2,3,8,9,121,143,149,174,175,196,219,220,223],easier:[21,36,106,218],easili:[9,14,166,176,226],east:113,eavesdropp:32,ecdsa256:115,ecdsa:115,echo:[11,21,73,77,91,93,94,95,96,117,118,120,201,211,229,230,232],echocommand:11,eclips:11,ectabl:[191,192],edbg:[2,193],eddyston:[39,194],eddystone_url:[39,41],edg:148,edit:[7,107,138,180,181,204,208,212,224],editor:[72,74,180,181,197],ediv:[28,39],edr:[33,41,184],edu:[196,233],ee02:204,eeprom:122,effect:[111,113,116,139,141,219],effici:[17,43,44,102,103,193],effort:219,eid:191,eight:119,einval:99,eir:41,eir_len:184,either:[1,4,6,8,10,14,25,28,39,41,42,43,70,72,74,93,97,98,100,102,103,112,116,117,118,124,127,148,149,152,153,173,176,191,192,201,204,218,219,228],elaps:[33,99,113],electron:236,elem:172,element:[29,30,52,66,68,70,71,72,102,103,112,115,116,126,127,128,129,132,134,135,161,172,207],element_typ:161,elemsp:127,elev:104,elf:[7,11,47,51,61,68,74,84,173,180,183,184,187,193,195,196,197,198,199,200,201,204,210,211,218,219,221,226,229,230,232,233,234],elfifi:84,elicit:173,els:[35,98,110,115,139,165,173,217,218,219,233],elsewher:[185,188,212],emac:218,email:[3,179,236],emb:122,embed:[1,3,4,11,25,52,68,70,71,72,114,115,141,152,179,180,193,199,226,233,234],emit:[68,74],emploi:43,empti:[63,102,112,127,146,172,176,182,190,210],emptiv:9,emul:[204,211,224],enabl:[1,8,9,14,17,24,36,42,44,45,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,75,86,89,90,91,100,106,116,117,118,119,121,122,138,143,148,152,156,162,164,165,166,168,170,171,175,176,180,183,186,189,194,202,203,205,209,216,217,218,219,224,228,231,233,234,236],enc:160,enc_chang:189,encapsul:43,encod:[7,64,116,117,119,120,170,172,204,210,220,225,226],encoding_cborattr:173,encoding_tinycbor:173,encompass:[27,33],encount:[7,21,33,70,102,116,137,207],encourag:121,encrypt:[28,33,34,39,42,141,187,189],encrypt_connect:33,end:[9,19,28,29,30,33,40,42,68,102,115,127,149,176,182,183,204,218],end_group_handl:[29,30],end_handl:[29,30],endian:[35,74,102,115,152,204],endif:[164,165,174,176,195,210,218,219,226],energi:[9,34,43,102,194,236],english:115,enjoi:219,enough:[68,102,109,113,115,157,160],enqueu:[28,102,154],ensur:[10,11,18,43,72,102,106,110,113,114,143,149,173,174,175,176,184,188,194,201,203,205,207,211,212,213,221,225,228,231],entail:173,enter:[11,34,60,106,172,174,193,195,197,207,221,223,226],entir:[2,19,102,103,106,115,141,190,207,218],entirelai:223,entireti:139,entiti:[56,185],entri:[19,28,29,30,33,34,85,116,127,128,129,132,135,137,139,141,162,165,168,172,173,190,222],enumer:[115,145,153,163],environ:[3,4,9,11,25,68,71,72,74,95,109,114,121,152,184,230],eof:[70,93],ephemer:191,epoch:113,equal:[14,29,30,41,85,102,162,175,176],equat:[41,223],equival:[59,74,122,143,219,236],eras:[21,25,84,115,122,123,127,136,141,146,193,197,198,199,204,219],erase_sector:199,erm:223,err:[110,139,165,174,217,219],err_fn:167,error:[1,2,4,6,7,19,27,28,29,30,33,38,43,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,93,95,99,102,104,105,106,110,111,116,122,123,127,139,141,144,146,148,149,152,154,155,162,163,165,167,168,169,172,173,176,186,188,189,190,193,196,197,199,200,204,210,211,213,217,218,219,220,224,226,232],error_rsp_rx:[89,201],error_rsp_tx:[89,201],error_stat:174,escap:[211,218,226,233],especi:[14,16,113],essenti:[56,74,176,207],establish:[28,33,39,91,186,187,189,196,198,201,204,205,219],estim:102,etc:[1,14,17,18,25,36,38,43,49,56,70,93,102,103,105,108,109,115,119,121,143,144,155,159,182,189,207,219],ethernet:[121,143],etyp:[162,219],eui:204,eul:221,euler:221,ev_arg:[97,100,110,117],ev_cb:[97,100,102,117,205],ev_queu:100,eval:[198,219],evalu:[11,99,113,175,176,198,204,212,219],evalut:113,even:[4,13,14,17,18,24,25,99,102,109,115,138,155,161,168,173,217,219,224],event:[14,24,27,28,33,36,37,39,97,102,105,110,112,117,121,162,163,168,169,172,174,176,184,186,187,191,192,201,206,207,217,219,224,226,236],event_q:219,event_queu:117,eventq:[102,168,217,219],eventq_exampl:205,eventu:[4,112,113,218],ever:[102,103,115,127,223],everi:[1,25,27,45,74,110,111,112,121,127,137,152,178,189,191,193,195,213,223,226],everyon:[13,207],everyth:[1,18,21,106,110,116,173,207,210,211,218],evq:[27,97,100,102,117,168,172],evq_own:100,evq_task:100,evtyp:168,exact:[109,115,148,154,174],exactli:[102,106,111,176],examin:[154,186,188,230],exampl:[1,2,3,6,7,9,11,14,15,16,17,18,19,27,34,35,36,37,42,44,68,70,71,72,73,74,75,77,93,95,96,98,102,103,104,106,107,109,110,111,112,113,114,115,117,120,141,142,145,148,149,150,162,164,165,166,167,172,173,174,179,180,182,184,185,189,193,195,197,201,204,207,210,211,212,213,214,220,221,222,223,224,225,226,229,230,232,233,234,236],example1:102,example2:102,exce:233,exceed:33,except:[7,64,100,115,146,162,174,186,191,192,218,219],excerpt:[117,163,164,165,175,176,188,190,224],exchang:[27,29,30,34,39,40,43],excit:[7,180,183],exclud:[64,115,173,221],exclus:[34,104,111,113],exe:[11,72,73,95,96],exec:25,exec_write_req_rx:[89,201],exec_write_req_tx:[89,201],exec_write_rsp_rx:[89,201],exec_write_rsp_tx:[89,201],execut:[1,2,7,10,11,25,29,30,42,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,74,75,80,93,95,98,100,103,105,106,109,112,113,114,120,123,124,126,152,157,162,167,176,178,186,188,189,190,191,192,195,201,207,210],exhaust:[29,30,33,110,127],exisit:39,exist:[2,19,21,28,29,30,33,36,41,54,59,62,63,84,107,127,133,138,141,148,163,165,171,176,181,187,193,196,197,198,199,200,211,213,219,220,222,224,225,226,228,229,231,232,233,234,236],exit:[8,93,196,198,204,219,233],expect:[6,14,15,33,56,74,97,105,110,116,117,121,163,173,184,191,192,204,207,210],experi:[25,34,208,221],experienc:17,experiment:112,expertis:212,expir:[28,97,99,100,154,156,205],expire_msec:156,expire_sec:156,expiri:[97,154],explain:[4,11,14,111,182,183,184,191,192,194,201,211,213,228,231,236],explan:[47,48,50,51,52,56,57,58,59,60,61,63,64,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90,139,186],explanatori:[42,107,191,192],explic:221,explicit:210,explicitli:186,explor:[115,173,188,228],export_func:116,expos:[1,14,27,43,105,120,141,166,172,176,185,190],expr:178,express:[35,176,190,218,219],ext:[11,14,197],extend:[28,33,41,42,102,103,113,222,225],extended_dur:39,extended_period:39,extens:[25,42,43,124,204],extent:[193,226,233,234],extern:[8,11,41,53,106,110,121,122,143,148,162,174,212,213,233,234],extra:[15,20,51,55,60,102,121,139,152,186,203,226,233],extra_gdb_cmd:74,extract:[4,10,71,72,73,95,96,152,180,196],extrajtagcmd:[51,55,60],extrem:9,f401re:66,f411a55d7a5f54eb8880d380bf47521d8c41ed77fd0a7bd5373b0ae87ddabd42:229,f4discoveri:197,f_activ:127,f_active_id:127,f_align:127,f_close:[140,142],f_closedir:[140,142],f_dirent_is_dir:[140,142],f_dirent_nam:[140,142],f_filelen:[140,142],f_getpo:[140,142],f_magic:127,f_mkdir:[140,142],f_mtx:127,f_name:[140,142],f_oldest:127,f_open:[140,142],f_opendir:[140,142],f_read:[140,142],f_readdir:[140,142],f_renam:[140,142],f_scratch:127,f_scratch_cnt:127,f_sector:127,f_sector_cnt:127,f_seek:[140,142],f_unlink:[140,142],f_version:127,f_write:[140,142],face:173,facil:[32,114,178,205],fact:[23,122,212],factor:9,factori:200,fail:[14,17,27,33,55,70,93,102,110,127,130,141,149,163,167,178,183,189,196,197,200,204,210,212,219,233],failov:173,failur:[28,29,30,33,97,102,110,112,113,115,116,123,128,129,130,132,133,135,136,137,139,140,144,148,149,152,154,155,156,162,163,167,168,169,188,189,190,210],fair:102,fairli:[36,68,74,102,111],fall:[109,114,148,236],fallback:39,fals:[103,113,117,173,175],famili:[4,114,122,138,184],familiar:[3,11,176,180,182,183,185,201,219,226,233,236],famliar:218,fanci:112,faq:10,far:[183,226],fashion:[105,127,180],fast:23,fat2n:7,fatal:[27,178],fatf:[7,123,138,139],fault:117,favorit:[180,181],fcb:[7,116,128,129,130,131,132,133,134,135,136,137,162],fcb_append:[127,129,130],fcb_append_finish:[127,128],fcb_append_to_scratch:[127,128],fcb_area_info:127,fcb_clear:127,fcb_entri:[127,128,129,132,137],fcb_err_arg:127,fcb_err_crc:127,fcb_err_flash:127,fcb_err_mag:127,fcb_err_nomem:127,fcb_err_nospac:[127,128],fcb_err_novar:[127,132],fcb_err_vers:127,fcb_free_sector_cnt:127,fcb_getnext:127,fcb_init:127,fcb_is_empti:127,fcb_log:[127,162],fcb_max_len:127,fcb_offset_last_n:127,fcb_ok:127,fcb_rotat:[127,128],fcb_walk:127,fcb_walk_cb:[127,137],fe80:233,fe_area:[127,132,137],fe_data_:127,fe_data_len:[127,132,137],fe_data_off:[127,132,137],fe_elem_:127,fe_elem_off:127,feat:219,feather:21,featur:[1,3,10,14,18,19,32,33,42,103,109,112,172,173,176,179,186,204,221,228],feedback:[180,181,194,219],feel:3,femal:232,fetch:[1,11,20,53,70,93,184,194,201,203,205,212,213,218,228,231],few:[1,6,16,27,37,44,68,74,103,106,107,174,183,188,191,204,210,219,236],ffconf:138,ffffffff:199,ffs2nativ:[7,74],fhss:43,ficr:35,fictiti:[212,213],field:[14,28,29,30,33,39,97,98,102,106,115,117,149,163,164,165,172,173,174,176,186,188,190,191,192,212,213,219,221,224],fifo:127,figur:[102,115,116,127,223],file:[1,2,4,6,7,10,11,13,14,18,19,24,47,49,50,54,56,59,61,63,68,70,71,72,73,74,77,83,84,93,94,95,96,107,108,109,114,115,116,117,121,141,145,148,150,157,162,163,164,172,173,175,176,178,180,181,183,184,190,193,195,196,197,199,200,201,204,205,208,210,211,212,214,217,218,219,221,223,230,234],file_nam:74,filenam:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,83,84,106,138,139,140,141,173,184],filesystem:[68,116,138,140,157],fill:[13,28,29,30,61,108,112,116,127,128,130,132,133,144,160,161,183,188,191,192,210,218,219],filter:[2,19,28,34,39,42,85,193],filter_dupl:[14,28],filter_polici:[14,28],find:[1,2,3,14,15,16,21,29,30,33,40,47,68,74,101,102,107,109,116,133,143,168,174,175,179,180,183,184,193,196,197,200,211,226,229,232,233,234,236],find_info_req_rx:[89,201],find_info_req_tx:[89,201],find_info_rsp_rx:[89,201],find_info_rsp_tx:[89,201],find_type_value_req_rx:[89,201],find_type_value_req_tx:89,find_type_value_rsp_rx:89,find_type_value_rsp_tx:89,fine:[9,25,191,192],finish:[4,111,112,127,128,155,204,218],fip:43,fire:[97,154,156,187,207,226],firmwar:[14,18,24,115,139,196,198,201,204,211,219,233,234],first:[2,3,6,8,11,14,21,24,25,26,28,29,30,34,41,43,46,70,71,72,73,76,95,96,97,100,102,103,104,106,112,113,114,115,116,127,141,142,145,152,159,161,168,172,173,176,178,180,182,185,186,187,188,190,191,192,194,195,201,204,207,211,217,218,219,221,223,226,228,231,236],first_aux:178,fit:[4,28,102,113,186,187,208],five:[33,34,43,201],fix:[6,10,14,21,25,103,113,115,214],fl_area:[127,128],fl_data_off:[127,128],fl_entri:127,fl_fcb:127,fl_watermark_off:127,flag:[1,6,11,15,29,30,39,41,68,70,71,72,74,75,77,93,94,95,102,107,112,115,139,173,184,188,190,203,217,219,221,229,232],flash0:139,flash:[1,9,14,15,16,19,20,24,25,52,56,61,68,70,71,72,74,108,109,116,121,128,129,133,139,142,143,147,148,150,157,162,173,176,193,197,198,199,201,204,208,219],flash_area:[127,137],flash_area_bootload:[106,115,175,176],flash_area_image_0:[106,115],flash_area_image_1:[106,115,176],flash_area_image_scratch:[106,115,175],flash_area_nff:[175,176],flash_area_noexist:175,flash_area_read:[127,132,137],flash_area_reboot_log:[175,176],flash_area_writ:[127,128],flash_area_x:127,flash_id:[122,144,146],flash_map:[7,116,144,175,176],flash_map_init:176,flash_own:[175,176],flash_spi_chip_select:148,flash_test:[7,117],flat:[14,29,30,102,161,162],flavor:193,flexibl:[102,109,179,186,212,213],flicker:23,flight:102,float_us:[24,220],floating_var:24,flood:44,flow:[43,117,155,184,191,192],flow_ctl:155,flra:223,fltstr:168,fly:152,fmt:117,focu:207,folder:[4,11,13,26,46,68,72,76,181,196],follow:[1,2,3,4,6,7,8,10,11,14,18,21,24,25,28,29,30,32,33,35,36,38,39,41,42,43,44,45,50,51,56,63,64,68,70,71,72,73,74,77,79,80,84,85,86,90,91,93,94,95,96,102,104,106,107,109,111,112,113,114,115,117,118,120,121,122,123,127,139,141,142,143,149,151,152,162,163,164,165,166,168,170,173,174,175,176,178,180,181,183,184,185,186,188,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,210,211,212,213,214,217,218,219,220,221,222,223,224,225,226,228,229,231,232],foo:[14,18,116],foo_callout:116,foo_conf_export:116,foo_conf_set:116,foo_val:116,footer:[115,195],footprint:[9,119,121],fop:140,fops_contain:140,forc:[54,62,65,102,173],forev:[100,104,111,112],forgeri:34,forget:[93,180,217,219],forgo:21,fork:13,form:[1,29,30,32,34,35,38,79,102,112,176,188,189,191,204,210,212,223],formal:[7,33],format:[8,15,26,41,63,79,81,84,85,102,116,117,119,138,139,141,157,159,160,161,163,174,176,178,184,191,195,211,212,213,221,229,232],formula:[3,73,96],forth:[116,161],fortun:68,forver:39,forward:[21,113,186],found:[1,14,25,26,28,29,30,33,46,68,76,103,106,135,141,161,162,168,172,184,189,190,191,193,197,199,232],foundat:[4,43,44,115,119,193,199,212,218,219,226,233,234],four:[32,34,60,115,139,223],fraction:[113,210],fragment:14,frame:[172,204,207],framerwork:118,framework:[40,43,110,119,163,170,171,178,184,220,221,222,226,227,228],frdm:66,free:[2,4,29,30,86,101,102,103,127,162,173,187,189,193,199,226,230,233,234],freebsd:114,freed:[29,30,102,103],freedom:[189,191,192],freq_hz:154,frequenc:[17,36,43,99,106,110,113,121,143,151,154,156,174,204,207],frequent:[13,32,34,43,110,191,192,226],fresh:223,freshli:102,friend:44,friendli:[14,121],from:[1,4,6,7,8,9,10,11,13,18,19,26,28,29,30,32,33,34,35,38,39,42,44,45,48,49,51,52,54,56,57,58,59,60,62,63,64,68,69,73,74,75,77,78,79,81,82,83,84,85,86,89,90,92,96,97,98,99,100,101,102,103,105,106,107,108,109,112,113,114,115,116,118,119,120,122,123,124,126,127,133,139,140,142,144,148,149,152,154,155,157,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,180,182,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,210,211,212,213,218,219,221,223,226,228,229,230,232,233,234],front:102,fs_access_append:139,fs_access_read:139,fs_access_trunc:139,fs_access_writ:139,fs_cli:7,fs_close:139,fs_closedir:[123,139],fs_dir:[139,140],fs_dirent:[7,139,140],fs_dirent_is_dir:139,fs_dirent_nam:[123,139],fs_eaccess:139,fs_ealreadi:139,fs_ecorrupt:139,fs_eempti:139,fs_eexist:139,fs_eful:139,fs_ehw:139,fs_einval:139,fs_enoent:[123,139],fs_enomem:139,fs_eo:139,fs_eoffset:139,fs_eok:139,fs_eunexp:139,fs_euninit:139,fs_fcb:173,fs_file:[7,139,140],fs_filelen:139,fs_getpo:139,fs_if:[140,142],fs_mkdir:[7,139],fs_mount:7,fs_name:139,fs_nmgr:7,fs_nmgr_id_fil:139,fs_nmgr_max_nam:139,fs_op:[140,142],fs_open:139,fs_opendir:[123,139],fs_ops_for:140,fs_ops_from_contain:140,fs_ops_try_uniqu:140,fs_read:139,fs_readdir:[123,139],fs_regist:[140,142],fs_renam:139,fs_seek:139,fs_unlink:139,fs_write:139,fssl:[10,71],fsutil:7,fsutil_read_fil:139,fsutil_write_fil:139,ftdichip:184,fulfil:188,full:[1,7,8,24,25,33,40,42,43,61,68,106,115,116,122,128,144,157,162,172,173,175,176,181,183,186,189,190,195,201,218,219,221,226,236],fulli:[9,27,28,43,115,141,173,183,192,212,213,219],fun:[180,218],func:[102,110,112,116,149,154,156],fundament:[1,236],funtion:161,further:[6,106,110,149],furthermor:[105,115,141,173,191,192,207],fuse:68,futur:[97,102,149,163,172,176,204,212,213,214],fyi:14,g_bno055_sensor_driv:165,g_bno055stat:165,g_led_pin:[181,195,207],g_mbuf_buff:102,g_mbuf_mempool:102,g_mbuf_pool:102,g_mystat:174,g_os_run_list:98,g_os_sleep_list:98,g_silence_consol:117,g_stats_map_my_stat_sect:174,g_task1_loop:195,g_ts_suit:178,gain:[104,111,142,183,219],gap:[14,29,30,31,32,33,42,43,102,185,188,190,218,219,220],garbag:127,gatewai:204,gatt:[14,27,31,39,42,43,44,45,185,188,190,218,219,220],gatt_acc:188,gatt_adc_v:219,gatt_co2_v:217,gatt_co2_val_len:217,gatt_svr:[190,217,219,221],gatt_svr_chr_access_gap:[188,190],gatt_svr_chr_access_sec_test:[190,217,219],gatt_svr_chr_sec_test_rand_uuid:[190,217,219],gatt_svr_chr_sec_test_static_uuid:[190,217,219],gatt_svr_chr_writ:[217,219],gatt_svr_register_cb:190,gatt_svr_sns_access:[217,219],gatt_svr_svc:[188,190,217,219],gatt_svr_svc_adc_uuid:219,gatt_svr_svc_co2_uuid:217,gatt_svr_svc_sec_test_uuid:[190,217,219],gaussian:43,gavin:71,gc_on_oom_test:210,gc_test:210,gcc:[4,7,70,114],gcc_startup_:106,gcc_startup_myboard:106,gcc_startup_myboard_split:106,gcc_startup_nrf52:[106,196,198,226],gcc_startup_nrf52_split:[196,198,200,204,226],gdb:[4,7,11,25,51,60,74,75,106,183,193,195,196,197,199,200,207,219,226,233,234],gdb_arduino_blinki:11,gdbmacro:7,gdbpath:11,gdbserver:6,gear:114,gen:[39,42],gen_task:205,gen_task_ev:205,gen_task_prio:205,gen_task_stack:205,gen_task_stack_sz:205,gen_task_str:205,gener:[1,10,14,19,25,27,28,29,30,31,32,33,35,39,40,41,43,44,47,48,56,68,74,75,100,102,103,104,106,112,115,123,141,148,161,173,175,180,181,183,184,186,187,190,191,192,193,194,195,196,197,198,199,200,201,203,204,207,210,211,212,217,218,219,221,223,226,229,232,233,234],get:[2,4,6,7,8,9,10,13,14,23,24,25,27,29,30,35,68,69,71,72,73,74,77,89,92,94,95,96,98,100,102,103,104,105,106,108,109,110,111,112,113,115,116,120,121,127,137,144,148,152,154,161,163,167,168,170,172,173,176,180,181,182,184,186,188,190,191,192,193,194,196,197,199,200,203,204,205,207,210,211,217,218,219,225,226,232,236],gettng:208,gfsk:43,ggdb:6,ghz:[43,211],gist:[121,148],git:[68,71,93,94,95,114,193,211,212,213,214],github:[1,7,10,13,26,28,46,68,70,71,72,76,93,94,95,114,145,180,193,211,212,213,214,218,219,228],githublogin:214,githubpassword:214,githubusercont:[10,70,71,93,94],gitignor:18,give:[19,68,148,173,180,183,191,192,204,207,212,213,218,219],given:[11,14,33,55,97,99,100,102,103,109,112,113,115,123,124,126,127,132,133,139,144,148,152,154,155,157,162,163,167,168,207,213],glanc:186,glibc:70,global:[1,14,41,75,102,103,104,117,162,163,165,168,174,178,188],gmt:113,gnd:[8,204,219,221,232],gnu:[3,4,11,25,51,60,193,197,199,200,226,233,234],goal:[68,114,168,231],gobjcopi:6,gobjdump:6,gobl:94,goe:[15,74,178,210],going:[21,109,116,173,191,195,218,219],golang:[10,72,95],gone:187,good:[7,9,18,25,34,68,104,106,110,115,138,173,183,186,192,204],googl:[191,228],gopath:[10,70,71,72,73,93,94,95,96],got:[20,25,217,218,219],govern:[218,219],gpg:[70,93],gpio:[8,15,17,109,121,150,152,155,205,223],gpio_ev:205,gpio_l:205,gpl:[4,193,197,199,200,226,233,234],gplv3:[193,199,226,233,234],gpo:143,gpregret:15,grab:101,graduat:219,grain:9,grandpar:[29,30],grant:104,granular:113,graph:[1,63,75],graviti:221,great:[8,43,115,175,181,219],greater:[41,43,102,175],greatest:115,green:[2,11,13,193,197,198,211,221,229],grid:68,ground:[219,221],group:[2,33,89,118,121,172,174,176,201,204],grow:[66,207],guarante:[14,102,103],guard:105,guid:[7,8,10,11,14,31,72,75,77,95,165,166,176,185,190,192,201,205,207,208,210,212,229,232],gyro:221,gyro_rev:221,gyroscop:[163,221],h_mynewt_syscfg_:176,hack:[7,9,11,14,180,181,219],had:[102,105,115,173],hal:[1,7,9,19,61,68,74,99,108,121,122,142,143,149,152,154,155,165,183,193,197,199,205,219,221,223,226,236],hal_bsp:[7,23,106,121,147,164,193,196,197,199,224],hal_bsp_core_dump:144,hal_bsp_flash_dev:[106,122,144,147],hal_bsp_get_nvic_prior:144,hal_bsp_hw_id:144,hal_bsp_hw_id_len:144,hal_bsp_init:[144,164],hal_bsp_max_id_len:144,hal_bsp_mem_dump:144,hal_bsp_power_deep_sleep:144,hal_bsp_power_off:144,hal_bsp_power_on:144,hal_bsp_power_perus:144,hal_bsp_power_sleep:144,hal_bsp_power_st:144,hal_bsp_power_wfi:144,hal_common:[7,183,197,199],hal_debugger_connect:153,hal_flash:[7,106,122,139,144,147,193,197,199],hal_flash_align:146,hal_flash_eras:146,hal_flash_erase_sector:146,hal_flash_erased_v:146,hal_flash_init:146,hal_flash_ioctl:146,hal_flash_isempti:146,hal_flash_isempty_no_buf:146,hal_flash_read:146,hal_flash_verify_buf_sz:146,hal_flash_writ:146,hal_gpio:[7,123,145,148,205],hal_gpio_init_in:148,hal_gpio_init_out:[112,148,181,195,205,207],hal_gpio_irq_dis:148,hal_gpio_irq_en:[148,205],hal_gpio_irq_handler_t:148,hal_gpio_irq_init:[148,205],hal_gpio_irq_releas:148,hal_gpio_irq_trig_t:148,hal_gpio_irq_trigg:148,hal_gpio_mode_:148,hal_gpio_mode_in:148,hal_gpio_mode_nc:148,hal_gpio_mode_out:148,hal_gpio_mode_t:148,hal_gpio_pul:148,hal_gpio_pull_down:148,hal_gpio_pull_non:148,hal_gpio_pull_t:148,hal_gpio_pull_up:[148,205],hal_gpio_read:148,hal_gpio_toggl:[112,148,181,195,205],hal_gpio_trig_both:148,hal_gpio_trig_fal:148,hal_gpio_trig_high:148,hal_gpio_trig_low:148,hal_gpio_trig_non:148,hal_gpio_trig_ris:[148,205],hal_gpio_writ:[17,145,148,207],hal_i2c:17,hal_i2c_begin:149,hal_i2c_end:149,hal_i2c_err_addr_nack:149,hal_i2c_err_data_nack:149,hal_i2c_err_inv:149,hal_i2c_err_timeout:149,hal_i2c_err_unknown:149,hal_i2c_init:149,hal_i2c_master_data:149,hal_i2c_master_prob:149,hal_i2c_master_read:149,hal_i2c_master_writ:149,hal_i2c_prob:149,hal_i2c_read:149,hal_i2c_writ:149,hal_os_tick:[151,196,226],hal_reset_brownout:153,hal_reset_caus:[153,224],hal_reset_cause_str:153,hal_reset_pin:153,hal_reset_por:153,hal_reset_reason:153,hal_reset_request:153,hal_reset_soft:153,hal_reset_watchdog:153,hal_rtc:138,hal_spi:[123,152],hal_spi_abort:152,hal_spi_config:152,hal_spi_data_mode_breakout:152,hal_spi_dis:152,hal_spi_en:152,hal_spi_init:[123,152],hal_spi_lsb_first:152,hal_spi_mod:152,hal_spi_mode0:152,hal_spi_mode1:152,hal_spi_mode2:152,hal_spi_mode3:152,hal_spi_moden:152,hal_spi_msb_first:152,hal_spi_set:[122,152],hal_spi_set_txrx_cb:152,hal_spi_slave_set_def_tx_v:152,hal_spi_tx_v:152,hal_spi_txrx:152,hal_spi_txrx_cb:152,hal_spi_txrx_noblock:152,hal_spi_type_mast:152,hal_spi_type_slav:152,hal_spi_word_size_8bit:152,hal_spi_word_size_9bit:152,hal_system:153,hal_system_clock_start:153,hal_system_reset:153,hal_system_restart:153,hal_system_start:153,hal_tim:[99,154],hal_timer_cb:[99,154],hal_timer_config:154,hal_timer_deinit:154,hal_timer_delai:154,hal_timer_get_resolut:154,hal_timer_init:[23,154],hal_timer_read:154,hal_timer_set_cb:154,hal_timer_start:154,hal_timer_start_at:154,hal_timer_stop:154,hal_uart:218,hal_uart_blocking_tx:155,hal_uart_clos:155,hal_uart_config:[155,218],hal_uart_flow_ctl:155,hal_uart_flow_ctl_non:[155,218],hal_uart_flow_ctl_rts_ct:155,hal_uart_init:155,hal_uart_init_cb:[155,218],hal_uart_par:155,hal_uart_parity_even:155,hal_uart_parity_non:[155,218],hal_uart_parity_odd:155,hal_uart_rx_char:155,hal_uart_start_rx:155,hal_uart_start_tx:[155,218],hal_uart_tx_char:155,hal_uart_tx_don:155,hal_watchdog_en:156,hal_watchdog_init:156,hal_watchdog_tickl:156,hal_xxxx:143,half:[29,30,106,113],halfwai:115,halgpio:148,halsystem:153,halt:[105,151,152,193,197,199],haluart:155,hand:[173,180,207,210],handbook:[196,200],handi:[14,106,219],handl:[14,15,27,28,29,30,33,39,40,42,74,102,114,121,122,123,139,162,163,166,167,172,187,188,189,201,205,217,219,226],handler:[19,100,105,106,118,148,167,170,205,207,217,219,220],happen:[9,14,33,38,116,127,187,190,191,192,193,211,213],happi:[7,9],har:232,hard:[110,117,223],hardcod:[37,39],hardwar:[2,3,5,6,7,9,18,23,33,36,37,43,44,47,99,106,108,109,115,121,141,144,145,146,147,148,149,151,153,154,155,156,165,173,176,183,184,191,192,193,195,196,197,198,205,207,208,211,212,218,226,236],harm:115,has:[2,3,4,7,10,11,13,14,15,17,21,24,27,28,33,34,36,38,42,47,49,56,63,68,70,71,72,74,75,90,93,94,95,98,99,100,101,102,103,105,106,109,110,111,112,113,115,116,117,119,121,125,127,139,141,148,149,152,154,155,157,165,167,168,173,174,176,178,188,189,190,193,195,196,197,201,203,204,207,210,211,212,213,217,218,219,225,226,233,234,236],hash:[47,50,56,59,84,115,173,203,229,232],hasn:116,have:[1,2,3,6,7,8,9,10,11,13,14,18,20,21,23,24,25,29,30,32,33,34,36,42,45,56,63,65,67,68,70,71,72,73,74,75,77,93,94,95,96,97,100,102,103,105,106,108,109,110,111,112,114,115,117,119,121,122,124,127,130,141,143,147,148,154,155,162,163,172,173,174,175,176,179,180,181,182,183,184,187,188,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,210,211,212,213,215,217,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,236],haven:[3,25,123,179,213,219,236],hci1:184,hci:[14,27,28,43,182],hci_adv_param:186,hci_common:201,hci_reason:28,hdr:[115,162],hdr_ver:159,head:[10,71,93,94,95,100,102,167],header:[1,15,50,52,59,68,70,71,72,74,106,115,119,127,128,145,148,162,164,176,178,195,196,201,217,218,219],headless:2,health:191,heap:[29,30,103,105,106],heart:207,held:212,hello:[11,21,82,155,194,201,211,229,230,232,236],help:[1,8,11,14,16,44,47,48,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,80,81,82,83,84,85,86,87,88,89,90,93,94,95,105,107,108,113,121,161,173,175,182,183,186,193,195,196,198,204,207,208,210,211,214,218,219,221,223,226,233,234],helper:[1,74,102,107,122,191,192],henc:[115,179],her:105,here:[1,3,8,10,13,14,17,18,21,28,41,45,68,86,89,90,97,100,102,103,106,107,110,112,115,116,117,127,141,148,152,161,162,163,165,172,173,174,175,176,179,180,184,188,190,191,192,193,195,196,197,200,204,205,210,211,212,213,218,219,223,230,236],hertz:99,hex:[7,50,56,61,84,149,173,199,204,217,226],hexidecim:79,hfxo:36,hidapi:4,hidraw:4,hierarchi:[139,176,178],high:[9,17,28,31,43,77,99,111,121,148,163,168,205,207,233],high_duti:39,high_duty_cycl:28,high_thresh:163,higher:[10,17,23,27,28,33,43,68,71,72,85,93,94,95,104,105,111,112,143,162,168,175,176,179,184,207,210,213],highest:[98,104,105,112,175,176,207],highli:179,highlight:[2,6,42,180,193,196,198,200,211,219,220,226],hint:68,his:[28,105],histori:175,hit:[49,195],hmac:24,hog:207,hold:[26,46,56,76,102,103,149,160,165,172,180,204,207,212,219],hole:219,home:[7,10,72,106,173,183,195,210,214,218],homebrew:[4,6,7,10,49,69,73,92,96],homepag:[1,25,56,74,117,210,218,219],honor:24,hook:[110,199,218,232],hop:[43,121],hope:14,host:[7,9,14,34,35,38,41,42,43,79,83,84,97,100,102,115,170,183,184,188,189,190,193,210,211,217,218,219,220,225,226,233,234],hotkei:233,hour:113,how:[2,3,4,5,6,7,8,10,11,14,15,16,17,18,21,24,25,33,35,42,43,68,70,71,72,73,79,93,94,95,96,102,104,106,109,113,115,116,117,127,133,135,141,149,152,162,164,165,173,174,177,178,179,180,181,182,183,184,187,188,189,191,192,193,194,195,196,197,198,199,200,201,203,204,207,209,210,211,217,218,221,222,223,225,226,228,229,230,231,232,236],howev:[3,14,24,25,70,93,102,109,112,114,115,117,141,148,174,196,203,212],htm:184,html:[4,26,46,76,124,193,197,199,226,233,234],http:[1,4,10,11,13,14,25,26,28,46,52,68,70,71,72,74,76,93,94,95,114,117,124,145,180,184,191,193,196,197,199,200,210,212,214,218,219,226,232,233,234],httperror404:[70,93],hub:211,human:[29,30,184,212],hw_bsp_nativ:74,hw_drivers_nimble_nrf51:173,hw_hal:68,hw_mcu_nordic_nrf51xxx:173,hypothet:33,i2c:[8,17,121,122,143,221,222,223,226],i2c_0:[220,221,222,223,226],i2c_0_itf_bno:164,i2c_0_itf_li:164,i2c_num:149,i2s:193,i2s_callback:193,i386:[4,6],iOS:[187,217,219,220,222,225,228],ibeacon:[35,183,194,236],icloud:25,icon:[11,13,25],id16:190,id3:[26,46,76],id_init:176,idcod:193,idea:[14,25,74,102,104,110,186],ideal:[18,43],ident:[23,28,31,33,34,35,39,42,79,102,114,120,173,174,178],identifi:[1,8,24,32,33,39,41,47,84,106,112,115,116,144,149,191,192,196,198,204,211,219,229,232],idl:[39,90,110,183,207,229,232],idx:[39,122,141],ietf:161,if_rw:120,ifdef:[173,176,195,226],ifndef:[176,218,219],ignor:[6,14,24,28,39,95,103,139,141,176,233],ih_flag:115,ih_hdr_siz:115,ih_img_s:115,ih_key_id:115,ih_mag:115,ih_tlv_siz:115,ih_ver:115,iii:115,illustr:[11,102,104,105,115,207,219,226],imag:[2,6,7,11,14,15,19,21,24,44,47,51,52,55,56,60,68,70,71,72,74,77,91,93,94,95,106,107,109,114,117,118,158,159,160,174,175,179,183,187,193,194,195,202,208,217,218,230,231,233,234,236],image_ec256:[193,196,197,198,199,200,204,211,221,229,230,232],image_ec:[7,193,196,197,198,199,200,204,211,221,229,230,232],image_f_ecdsa224_sha256:115,image_f_non_boot:115,image_f_p:115,image_f_pkcs15_rsa2048_sha256:115,image_f_sha256:115,image_head:115,image_header_s:115,image_mag:115,image_magic_non:115,image_ok:115,image_rsa:[7,193,196,197,198,199,200,204,211,221,229,230,232],image_tlv:115,image_tlv_:115,image_tlv_ecdsa224:115,image_tlv_rsa2048:115,image_tlv_sha256:115,image_valid:[7,193,197,198,200,211,221,229,230,232],image_vers:[115,157,159,160],img:[25,50,59,84,180,181,183,184,187,193,196,197,198,199,200,201,203,204,211,218,221,223,226,229,232,233,234],img_start:153,imgmgr:[7,117,118,139,157,176,201,218,219],imgmgr_max_ver_str:160,imgmgr_module_init:[157,176],imgr_ver:157,imgr_ver_jsonstr:160,imgr_ver_pars:157,imgr_ver_str:157,immedi:[28,38,100,106,115,152,154,163,186,191,192],immin:28,impact:36,impl:74,implemen:79,implement:[9,13,14,19,43,45,74,79,100,102,103,106,108,109,115,116,117,118,138,139,141,143,145,147,148,149,150,151,152,153,157,161,163,164,166,168,171,172,176,178,185,188,190,191,204,205,210,219,220,221,223,226],impli:[19,191,192,210,213,218,219],implicit:210,impos:[115,141],imposs:32,impract:190,impress:219,improv:195,imuplu:221,inc:[4,193,199,226,233,234],includ:[1,4,7,9,13,14,16,18,25,28,29,30,32,33,34,38,39,40,43,44,56,63,72,74,97,100,102,103,104,106,108,109,110,111,112,113,115,116,117,120,121,122,123,125,127,138,139,140,141,142,143,144,145,149,152,154,155,157,161,162,163,164,165,168,170,172,173,175,176,177,178,180,184,185,186,188,191,192,196,201,203,205,207,210,212,213,217,218,219,220,221,223,224,225,226,231,233],include_tx_pow:39,inclus:162,incom:[33,100,155,157,172,205],incompat:[70,93,212],incomplet:[41,106,139],incomplete_block_test:210,incorrect:[55,113],incr:144,increas:[34,43,102,172,176,207,233],increasin:127,increment:[102,113,116,174],incub:[7,68,145,176,180,219],inde:[105,199],indefini:[191,192],indefinit:113,indent:6,independ:[34,109,115,121,143,144,146,148,149,151,153,154,155,156,176],indetermin:[102,210],index:[44,85,115,162,184],indian:113,indic:[7,14,21,27,28,29,30,32,33,38,40,41,42,100,103,106,110,113,115,117,119,148,149,154,162,163,172,173,175,176,188,190,193,196,197,200,203,210,211,226,228],indirect:219,indirectli:162,individu:[10,112,115,116,121,148,176,201,212],industri:[43,138],infinit:[100,103,105,176,195,207],info:[14,19,52,70,71,72,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,103,112,113,116,127,128,132,162,189,193,197,199,200,203,211,217,219],inform:[1,6,7,11,14,15,19,20,28,33,34,35,39,41,47,50,52,53,70,71,72,74,75,77,79,84,93,94,95,100,102,103,106,108,109,112,113,115,119,120,132,162,163,165,166,167,173,174,176,179,180,183,186,189,190,191,192,193,195,203,204,205,207,212,213,214,218,219,221,226,229,232,234],infrastructur:183,ing:[121,191,192],inher:[1,35,188],inherit:[1,4,28,72,104,163],ininclud:174,init:[63,68,163,164,168,176,218,219],init_app_task:105,init_func_nam:176,init_funct:176,init_stag:176,init_task:[205,207],init_tim:[195,226],initi:[14,16,19,24,25,27,28,29,30,32,35,37,38,39,40,43,74,97,99,100,102,103,104,105,106,110,111,112,116,117,121,125,133,139,143,144,146,148,149,152,154,155,158,161,162,164,167,168,170,172,178,181,184,185,189,191,192,195,201,205,210,217,218,219,220,221,223,226],initialis:[165,193],inlin:26,inod:141,inoper:[38,191,192],input:[29,30,33,34,39,113,121,143,148,152,199,205,210,233],inquiri:[33,41],insert:[102,112],insid:[14,36,102,105,144,195,199,210],insight:[121,207],inspect:[15,61,115,116,146,189],instal:[3,7,9,18,25,26,46,52,67,68,76,91,105,106,107,123,167,181,182,183,184,193,194,196,197,198,199,200,201,203,205,207,210,211,213,215,218,220,221,222,225,226,228,229,230,231,232,233,236],instanc:[2,3,9,14,19,28,29,30,39,75,102,162,174,186,191,192,193],instant:33,instantan:207,instanti:[105,121],instantli:111,instead:[7,8,10,11,14,15,24,28,36,100,103,111,115,117,146,173,176,187,193,195,196,197,198,199,200,201,205,210,214,217,218,219,220,224],instruct:[3,4,7,8,10,68,70,75,93,98,109,193,196,200,201,205,220,221,222,224,226,230,233,234],insuffici:[33,102],insur:[103,112],int16_t:113,int32_max:[39,113],int32_t:[28,113,155,191,192],int64_t:[113,162],int8:116,int8_t:28,int_max:102,integ:[19,161,163,174,176],integr:[11,14,34,103,149,174,219],intellig:143,intend:[24,36,41,49,149,179],inter:[149,205],interact:[2,8,117,119,157,187,195,208,233],interchang:161,interconnect:[9,119],interdepend:[116,176],interest:[7,27,31,102,106,143,173,181,183,186,191,236],interfac:[4,31,42,43,44,102,112,115,120,121,122,123,138,139,140,143,144,146,148,149,151,152,153,155,156,162,165,166,180,182,184,185,193,197,199,218,221,222,223,226,232],interleav:14,intern:[7,19,33,102,105,106,110,113,121,122,127,147,154,156,157,161,193,219,223],internet:[7,11,43,184,194,201,203,205,211,228,231],interoper:[119,120],interpret:[124,126,163,167],interrupt:[14,23,98,99,100,106,115,144,148,151,152,154,155,163,168],interv:[14,28,33,39,41,110,112,163,167,168,205,221,226],interval_max:39,interval_min:39,intervent:109,intiat:106,introduc:[1,42,175,176],introduct:[207,236],introductori:228,intuit:115,invalid:[28,29,30,33,99,115,123,129,149,152,154,188,210],invers:[104,111],invert:111,invis:[29,30],invoc:[6,190],invok:[2,210,214,226],involv:[29,30,32,34,106,109,143,149,210],io_cap:39,ioctl:139,iot:43,iotiv:220,ipsp:43,iptest:74,ipv6:43,irk:[32,39],irq:[24,148],irq_num:144,irq_prio:[122,123],isbuildcommand:11,ism:43,ismylaptop:218,isn:[17,106,183],isol:[106,173],isr:24,isshellcommand:11,issu:[1,6,13,14,21,23,24,42,68,79,105,111,115,119,139,141,149,196,197,198,200,201,204,215,218,219],ist:113,it_len:115,it_typ:115,ite_chr:188,item:[1,100,106,116,142,162,167,192],iter:[103,112,115,139,162,168],itf:165,its:[7,8,10,13,14,27,28,29,30,31,32,33,68,74,98,100,102,103,104,105,106,109,110,112,115,117,122,127,139,141,148,149,152,162,173,174,175,176,178,180,181,182,183,186,188,189,190,191,192,203,204,207,212,218,223,224,230,236],itself:[16,17,28,38,74,102,103,112,115,121,125,127,142,157,168,176,177,180,196,210,218,219,223],itvl:14,itvl_max:28,itvl_min:28,iv_build_num:115,iv_major:115,iv_minor:115,iv_revis:115,jan:[113,218],javascript:68,jb_read_next:161,jb_read_prev:161,jb_readn:161,je_arg:161,je_encode_buf:161,je_wr_comma:161,je_writ:161,jira:13,jlink:[74,106,196,198,203,211,221,226,229],jlink_debug:74,jlink_dev:74,jlinkex:[196,198,204,219],jlinkgdbserv:[226,233],jlinkgdbserverclex:218,jmp_buf:178,job:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,98,105,106,172,188],join:[3,121,179,211,236],json:[7,11,47,50,64,68,74,180,181,201,210],json_array_t:161,json_attr_max:161,json_attr_t:161,json_buff:161,json_buffer_read_next_byte_t:161,json_buffer_read_prev_byte_t:161,json_buffer_readn_t:161,json_decod:210,json_encod:[160,161,210],json_encode_array_finish:161,json_encode_array_nam:161,json_encode_array_start:161,json_encode_array_valu:161,json_encode_object_entri:161,json_encode_object_finish:161,json_encode_object_kei:161,json_encode_object_start:161,json_enum_t:161,json_err_arraystart:161,json_err_attrlen:161,json_err_attrstart:161,json_err_badattr:161,json_err_badenum:161,json_err_badnum:161,json_err_badstr:161,json_err_badsubtrail:161,json_err_badtrail:161,json_err_checkfail:161,json_err_misc:161,json_err_noarrai:161,json_err_nobrak:161,json_err_nonqstr:161,json_err_noparstr:161,json_err_nullptr:161,json_err_objarr:161,json_err_obstart:161,json_err_qnonstr:161,json_err_strlong:161,json_err_subtoolong:161,json_err_subtyp:161,json_err_toklong:161,json_nitem:161,json_read_arrai:161,json_read_object:161,json_simple_decod:210,json_simple_encod:210,json_struct_arrai:161,json_struct_object:161,json_typ:161,json_val_max:161,json_valu:161,json_value_bool:161,json_value_int:161,json_value_str:161,json_value_stringn:161,json_value_type_arrai:161,json_value_type_bool:161,json_value_type_int64:161,json_value_type_object:161,json_value_type_str:161,json_value_type_uint64:161,json_value_uint:161,json_write_func_t:161,jtag:[4,51,55,60,193,196,197,199,211,226,232],jul:[93,94],jump0:80,jump:[115,173],jumper:[8,180,199,218,219,232],just:[1,7,8,14,18,19,21,25,29,30,33,34,35,75,97,100,106,107,112,113,115,122,123,138,139,168,173,180,187,188,191,192,193,195,204,214,215,218,219],jv_len:161,jv_pad1:161,jv_type:161,jv_val:161,k30:[217,218],k64f:66,keep:[9,14,18,34,36,105,115,117,121,127,152,164,172,173,180,181,207,210,219],keg:[73,96],kei:[8,28,29,30,32,33,43,44,50,59,70,93,106,115,116,160,161,176,188,204,211,221],kept:[98,113,115,127],kernel:[1,7,9,19,64,68,74,106,117,121,143,163,168,173,176,177,183,184,205,218,219,220,221,223,224,226],kernel_o:173,key_siz:28,keyboard:[11,34,117],keyboarddisplai:39,keyboardonli:39,keychain:[70,93],keystor:39,keyword:[1,74,107,117,210,212,218,219],khz:[152,193,197],kick:[110,191,192],kilobyt:109,kind:[44,121,218,219,233],kit:[8,60,74,180,181,194,196,203,218,219,233,234,236],klibc:114,know:[1,8,11,14,17,25,42,74,117,163,167,174,175,188,189,191,192,194,195,207,211,218,219,231,236],known:[43,68,113,186,207],kw41z:14,l13:196,l2cap:43,l_append_cb:162,l_arg:162,l_level:162,l_log:162,l_name:162,lab:45,label:[8,106,199,219],lack:[127,138,173],lag:190,languag:[10,11,68,109,124,218,219],laptop:[3,8,180,181,184,201,204,205,219],larg:[28,33,36,44,102,112,113,173,174,207],large_system_test:210,large_unlink_test:210,large_write_test:210,larger:[17,21,44,102],largest:102,las_app_port:204,las_app_tx:204,las_join:204,las_link_chk:204,las_rd_app_eui:204,las_rd_app_kei:204,las_rd_dev_eui:204,las_rd_mib:204,las_wr_app_eui:204,las_wr_app_kei:204,las_wr_dev_eui:204,las_wr_mib:204,last:[14,28,29,30,33,38,85,90,102,103,110,112,115,127,135,155,163,172,176,178,186,190,191,192,193,204,211,219,221,224,226],last_checkin:[90,229,232],last_n_entri:127,last_n_off:135,last_op:149,last_read_tim:165,latenc:[28,39],later:[7,8,14,29,30,85,97,102,115,178,181,183,189,193,204,210,219,226,233,234],latest:[1,2,4,7,10,18,20,21,62,65,68,69,73,92,96,116,180,193,211,212,213,218,219],latter:[33,102,119,141],launch:11,launchpad:4,law:[193,218,219,226,233,234],layer:[9,33,43,102,103,108,109,121,139,141,142,155,165,166,176,185,205,219,236],layout:[109,115,232],lc_f:164,lc_pull_up_disc:164,lc_rate:164,lc_s_mask:164,ld4:197,ldebug:[20,175],ldflag:63,ldr:199,le_elem_off:132,le_scan_interv:14,le_scan_window:14,lead:[102,105,189,219],leadingspac:102,learn:[7,38,74,180,181,194,228],least:[34,102,110,115,152,154,195,201,204,219,236],leav:[102,122,135,173],led1:[198,205],led2:205,led3:205,led:[1,7,17,23,74,106,109,112,121,143,148,184,193,194,195,196,197,198,199,200,201,205,207,211,219,221,229,232,236],led_blink_pin:[106,112,181,195,196,207],led_blink_pin_1:181,led_blink_pin_2:181,led_blink_pin_3:181,led_blink_pin_4:181,led_blink_pin_5:181,led_blink_pin_6:181,led_blink_pin_7:181,led_blink_pin_8:181,led_pin:181,left:[99,103,112,132,160,173,199,217,226,236],legaci:[14,42,138,176,207],len:[102,116,122,127,128,139,140,149,152,161,162,168,188,204,218],length:[33,39,43,102,106,115,116,117,127,144,160,162,168,188,204],less:[14,105,114,115,162,190,191,192],lesson:[207,236],let:[4,8,68,102,106,117,162,163,173,174,180,183,185,186,187,188,189,190,191,192,195,199,207,210,212,213,217,218,219,223,226],level:[1,2,9,14,18,19,27,31,33,35,39,41,42,44,45,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,102,104,106,118,121,122,139,141,143,165,175,176,179,187,188,191,192,193,197,204,210,211,213,217,218,219],level_list:85,leverag:[119,121,182,219],lflag:[1,63,74],lh_append_body_func_t:162,lh_append_func_t:162,lh_append_mbuf_body_func_t:162,lh_append_mbuf_func_t:162,lh_flush_func_t:162,lh_read_func_t:162,lh_read_mbuf_func_t:162,lh_registered_func_t:162,lh_set_watermark_func_t:162,lh_storage_info_func_t:162,lh_walk_func_t:162,lib:[1,4,58,66,68,95,114,117,139,142,175,176,218,219],libc6:6,libc:[7,106,114],libc_baselibc:[173,199],libftdi1:4,libftdi:4,libg:61,libgcc:[61,173],libhidapi:4,librari:[1,4,15,61,63,68,71,94,100,102,106,107,109,114,115,117,121,139,142,143,157,173,174,178,183,210,212,213,218,219,220],libusb:4,libusb_error_access:197,libusb_open:197,licens:[4,7,10,68,74,114,121,183,193,197,199,200,211,212,218,219,226,233,234],lieu:79,life:[36,191],lifetim:113,light:[9,44,143,163,180,181,194,197,198,199,200,205,220,221,229,232],lightblu:[187,217,219],lightweight:138,like:[2,3,5,8,11,14,15,19,20,21,44,68,71,72,75,94,95,102,105,106,109,110,111,114,115,117,121,127,143,146,149,174,180,181,183,193,197,199,210,212,218,219,220,222,223,224,226,228,232,233,234],likewis:75,limit:[3,14,24,28,33,39,41,112,114,116,122,138,173,186,191,201,218,219,233],limt:174,line:[2,6,7,11,15,21,49,51,52,60,75,106,114,117,148,174,178,180,181,184,190,195,197,198,212,214,219,220,221,226,233],linearacc:221,lines_queu:117,link:[2,3,7,25,28,33,34,39,43,47,51,55,72,73,74,94,96,98,102,154,172,173,176,178,179,180,183,184,187,192,193,195,196,197,198,199,200,204,211,218,219,221,226,229,230,232,233,234,236],linker:[1,74,107,114,173,183,199],linkerscript:[74,106],linux:[5,7,9,11,21,69,79,91,92,122,184,193,195,196,197,199,200,203,211,221,229,230,231,232],liquid:219,lis2dh12:[164,226],lis2dh12_0:[164,226],lis2dh12_cfg:164,lis2dh12_config:164,lis2dh12_data_rate_hn_1344hz_l_5376hz:164,lis2dh12_fs_2g:164,lis2dh12_init:164,lis2dh12_onb:[164,226],list:[3,6,7,8,11,15,21,28,34,39,41,47,48,61,63,64,66,70,72,74,79,84,85,86,88,89,90,91,93,98,100,102,103,106,107,108,112,113,115,117,118,121,123,142,154,162,163,167,168,169,172,174,176,179,180,181,183,186,189,190,193,194,195,196,197,198,199,200,203,204,212,213,218,219,223,224,229,230,232,236],listen:[2,14,27,28,42,44,79,102,113,163,166,168,173,186],listener_cb:226,lit:[181,184,201,207],littl:[6,33,35,102,115,180,181,183,190,204,213,218],live:[121,180,189,190,193,211,212,213],lma:199,lmp:33,lo_arg:162,lo_data_len:162,lo_index:162,lo_t:162,load:[2,4,5,7,11,15,47,52,56,60,68,70,71,72,74,106,115,116,153,173,180,181,187,194,195,203,204,205,207,213,217,218,219,233,234],load_arduino_blinki:11,load_arduino_boot:11,load_rom:223,loader:[21,56,63,106,115,117,153,193,196,197,198,200,211,221,229,230,232],loc:[127,128,132,137],local:[1,4,6,7,10,13,18,28,29,30,33,39,40,49,53,62,68,71,73,84,94,96,107,112,113,186,193,211,224],localhost:[79,218,226,233],locat:[1,8,10,32,44,74,102,106,115,127,132,149,178,190,195,199,207,211,212,218,221,229,230,232],lock:[9,101,105,111,127,163,168,205],log:[1,7,13,14,25,29,30,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,79,80,81,82,83,84,86,87,88,89,90,91,93,94,95,115,118,119,127,137,139,142,143,172,173,175,176,177,180,183,193,196,197,199,200,201,208,218,219,224,226,230,233],log_:19,log_append:162,log_append_bodi:162,log_append_cb:162,log_append_mbuf:162,log_append_mbuf_bodi:162,log_append_mbuf_body_no_fre:162,log_append_mbuf_no_fre:162,log_append_mbuf_typ:162,log_append_mbuf_typed_no_fre:162,log_append_typ:162,log_cbm_handl:162,log_cbmem_handl:162,log_cli:[172,208],log_console_get:162,log_console_handl:[162,165],log_console_init:162,log_crit:162,log_debug:162,log_entry_hdr:162,log_entry_hdr_s:162,log_error:[162,165],log_etype_:162,log_fcb:176,log_fcb_handl:162,log_fcb_slot1_handl:162,log_find:162,log_flush:162,log_handl:162,log_info:[162,165],log_init:[162,176],log_level:[63,162,176,203,208],log_level_:162,log_level_debug:162,log_level_error:162,log_level_get:162,log_level_set:162,log_list_get_next:162,log_module_bno055:165,log_module_default:162,log_module_get_nam:162,log_module_regist:162,log_module_str:162,log_nam:85,log_newmgr:175,log_newtmgr:[63,175,176,201],log_nmgr_register_group:[162,176],log_offset:162,log_printf:162,log_read:162,log_read_bodi:162,log_read_hdr:162,log_read_mbuf:162,log_read_mbuf_bodi:162,log_regist:[162,165],log_set_append_cb:162,log_set_watermark:162,log_shel:180,log_stats_inc:162,log_stats_incn:162,log_storage_info:162,log_syslevel:[162,165],log_typ:162,log_walk:162,log_walk_bodi:162,log_walk_body_func_t:162,log_walk_func_t:162,log_warn:162,logic:[1,35,41,43,115,155,204,218],login:214,loglevel:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95],logxi:94,long_filename_test:210,longer:[3,8,10,25,36,43,103,167,175,184,218,220],longrange_interv:39,longrange_pass:39,longrange_window:39,look:[8,14,17,19,21,29,30,36,68,74,106,108,112,114,115,117,118,140,149,173,174,180,181,186,188,189,190,207,210,213,215,217,218,219,223,224,226,236],lookup:[168,188,226],loop:[23,97,100,105,112,139,176,183,195,201,207,217,219],loos:168,lora:204,lora_app_shel:[74,204],lora_app_shell_telee02:204,lora_app_shell_telee0:204,lora_mac_timer_num:204,lorap:74,lorashel:74,lose:38,loss:[38,41,144],lost:110,lost_found_test:210,lot:[7,14,20,173,175,186,210,219,223],low:[9,17,33,34,43,44,99,102,106,111,122,139,143,148,152,153,163,165,168,188,191,192,193,194,197,207,211,236],low_thresh:163,lower:[14,33,99,104,105,111,112,175,176,185,195,199,203,207],lowercas:21,lowest:[86,98,103,112,176,207],lowpow:221,lrwxr:[4,94],lsb:149,lst:[47,68,74],ltbase:176,ltd:39,ltk:[28,39],ltk_sc:39,ltrequir:176,lua:[72,95,124,125,126],lua_cmd:126,lua_init:124,lua_main:124,lwip:121,m32:6,m4g:221,mac:[3,5,7,9,11,21,33,68,69,91,92,180,181,184,187,193,195,196,197,199,200,203,204,211,217,219,221,229,230,231,232],machin:[2,3,7,8,107,184,236],maco:[4,8,21,79],macro:[19,29,30,33,102,103,106,110,161,165,174,176,178,190,207,210,219],made:[2,10,13,28,33,68,84,98,112,115,149,204,207,219],mag:221,mag_rev:221,maggyro:221,magic:[74,115,127],magnet:[163,221],magnetomet:165,mai:[2,4,6,7,8,11,14,18,19,23,25,34,39,41,42,44,64,66,70,71,75,93,94,95,98,100,102,103,105,106,109,114,115,117,119,121,143,148,149,154,162,163,164,165,167,168,173,174,175,176,178,183,184,193,195,196,197,198,199,200,201,204,207,211,212,218,219,221,223,226,229,232,233],mail:[3,13,121,179,180,181,183,194,219,236],main:[7,11,27,38,44,70,74,90,93,100,102,105,108,112,115,117,125,159,163,168,172,176,181,183,186,191,192,193,196,197,198,199,200,201,205,210,217,218,219,221,229,230,232],mainli:173,maintain:[4,62,98,115,121,163,168,176,210,212,213],mainten:[119,174],major:[15,68,74,109,159,192,207,212,213],major_num:[212,213],make:[1,2,3,7,8,9,10,14,17,18,19,21,24,25,26,29,30,32,33,36,42,43,44,46,68,70,76,84,98,102,103,106,115,121,127,128,141,143,160,162,168,173,174,180,181,182,183,184,186,188,189,191,192,193,195,199,203,204,207,210,212,217,218,219,220,226,236],makerbeacon:201,malloc:[101,103,106,114,207,219],man:[6,39,114],manag:[6,8,18,25,29,30,39,43,44,52,58,70,71,72,74,77,79,81,84,85,86,89,90,93,94,95,100,103,105,106,107,109,112,115,117,121,143,158,161,163,165,166,167,173,176,177,195,196,203,206,208,211,213,221,226,229,231,232,236],mandatori:[33,106,190,191,192],mani:[19,33,44,68,74,102,108,115,127,135,143,154,188,193,212,223],manifest:[47,50,56,68,74,180,181,201],manipul:[1,52,58,102],manner:[29,30,39,41,102,105,115,143],manual:[28,29,30,37,43,72,73,96,103,105,112,114,141,173,180,193,199,226,232,233,234],manufactur:[32,39,41,52,56,70,71,72,79,173,186,193,211,223],many_children_test:210,map:[2,3,8,28,33,39,40,74,109,121,122,143,147,148,155,161,173,174,175,176,188,195,211,212,213,221,229,232,233],map_cnt:174,mar:[113,196,198,204,219,226],march:81,mark:[39,40,84,106,199],marker:106,market:[44,198],mask:[28,39,163,165,167,168,224,226],mass:[184,197],mass_eras:[196,197],master:[1,7,10,28,39,69,70,72,73,92,93,95,96,121,143,145,149,152,193,211,212,213,219],master_clock_accuraci:28,match:[2,7,20,28,33,106,107,109,115,162,167,168,173,193,197,211,212,213],materi:14,matter:13,max:[14,160,161,223],max_cbmem_buf:162,max_conn_event_len:39,max_ev:[28,39],max_len:[139,140,144],max_protohdr:102,maxim:9,maximum:[17,24,28,39,41,43,102,115,116,117,141,144,160,172,210,233],maxlen:[116,161],mayb:[223,233,234],mb_crc:218,mb_crc_check:218,mb_crc_tbl:218,mbed:[196,200],mbedtl:[7,193,196,198,200,211,229,230,232],mblehciproj:184,mblen:102,mbuf:[14,29,30,105,161,162,222],mbuf_buf_s:102,mbuf_memblock_overhead:102,mbuf_memblock_s:102,mbuf_mempool_s:102,mbuf_num_mbuf:102,mbuf_payload_s:102,mbuf_pkthdr_overhead:102,mbuf_pool:102,mbuf_usage_example1:102,mbuf_usage_example2:102,mcu:[7,9,17,19,24,25,66,107,110,115,121,122,143,148,149,151,152,153,154,155,157,180,181,193,196,207,211,219,226],mcu_dcdc_en:25,mcu_gpio_porta:122,mcu_sim_parse_arg:[195,226],mcuboot:115,mdw:199,mean:[2,11,14,20,21,33,102,104,110,111,112,113,115,122,152,176,190,197,213],meaning:[125,155],meant:[1,110,116],measur:[9,28,102,204,207],mechan:[1,28,34,105,173,176,205,212,214,218,219],medic:[43,68],medium:[19,162],meet:[164,184,193,194,196,197,198,199,200,203,221,223,224,225,226,228,229,230,231,232],mem:[7,176],member:[28,29,30,97,100,102,103,104,110,111,112,113,116,117,140,141,149,152,154,161,162,163,172,174,186,188,219],membuf:103,memcmp:102,memcpi:188,memori:[9,33,61,86,100,101,102,105,106,109,110,114,115,119,121,122,138,141,143,144,146,149,175,188,199,201,204,205,207,208,230,233],mempool:[77,93,94,95,102,103,172],memset:[164,186,189,192,219],mention:[11,163,219],menu:[11,72,197,199,232],merchant:4,merci:103,mesh:45,messag:[2,4,19,25,29,30,34,44,55,70,71,72,88,117,119,120,162,172,193,197,204,205,211],messi:219,messsag:75,met:[33,201,205,211],meta:[8,211,221],metadata:[18,56,115],meter:43,method:[21,28,37,102,112,120,141,145,148,152,162,172,174,188,212],mfg:[7,24,52,70,71,72,83,176],mfg_data:[14,41],mfg_init:176,mgmt:[7,117,119,152,158,172,175,176,201,218,219],mgmt_evq_set:201,mgmt_group_id_config:118,mgmt_group_id_crash:118,mgmt_group_id_default:118,mgmt_group_id_imag:118,mgmt_group_id_log:118,mgmt_group_id_runtest:118,mgmt_group_id_stat:118,mgmt_imgmgr:173,mgmt_newtmgr_nmgr_o:173,mgr:168,mgutz:94,mhz:[36,43],mib:[68,94,204],mic:33,micro:[21,68,193,194,196,198,199,203,204,207,211,219,221,228,229,231,232,233,234],microcontrol:[9,114,115,199,232],microsecond:[36,99,113],microsoft:11,mid:[14,27,115,197],middl:[39,115,219],might:[1,2,14,16,19,31,33,74,106,109,116,117,121,143,149,165,168,173,175,183,185,186,191,192,193,197,212,213,215,226,233,234],migrat:176,milisecond:39,milli:168,millisecond:[28,39,113,204],millivolt:219,min:[85,86,115,211,230],min_conn_event_len:39,min_key_s:[29,30],mind:[14,110,183],mine:217,mingw32:72,mingw64:72,mingw:[4,7,8,10,11,69,95,195,211,221,229,232],mini:197,minicom:[8,195,211,221],minim:[106,121,138,139,141,165,183],minimum:[28,29,30,39,41,85,102,103,115,162,183],minor:[159,192,212,213],minor_num:[212,213],minu:102,minut:[94,113,191,210],mip:[7,74],mirror:[1,10,13,18,72,95,212,218,219],misc:221,misconfigur:168,mislead:6,mismatch:[33,102],miso:152,miso_pin:[122,123],miss:[25,33,70,106,175,180,181,183,194,219],misspel:175,mitm:39,mk64f12:[121,143],mkdir:[10,56,93,95,106,180,193,196,197,198,199,200,204,211,212,218,219],mkdir_test:210,mkr1000:209,mkr1000_boot:211,mkr1000_wifi:211,mlme:204,mman:70,mmc0:[123,139],mmc:[121,138],mmc_addr_error:123,mmc_card_error:123,mmc_crc_error:123,mmc_device_error:123,mmc_erase_error:123,mmc_init:123,mmc_invalid_command:123,mmc_ok:123,mmc_op:[123,139],mmc_param_error:123,mmc_read_error:123,mmc_response_error:123,mmc_timeout:123,mmc_voltage_error:123,mmc_write_error:123,mn_socket:7,mobil:44,mod:[42,187,218],modbu:218,mode:[9,14,28,33,34,39,41,121,143,144,148,152,155,165,173,186,193,197,199,210,221,223],model:[14,34,43,45,100,157,196],modern:[8,138],modif:[10,180,210,220],modifi:[6,28,75,102,106,113,120,154,162,181,207,218,219,225,228],modlog:25,modlog_alloc:25,modlog_map:25,modul:[18,85,99,103,105,114,119,124,162,195,204,232],module_list:85,modulo:113,moment:[14,19,122,149,157,188,213],mon:[193,196,197],monitor:[102,117,119,127,170,174,199,220,228,236],monolith:190,month:210,more:[1,4,7,9,11,13,14,15,19,25,28,29,30,33,34,41,42,43,47,48,52,56,64,66,70,71,72,74,75,77,93,94,95,98,100,102,105,106,111,112,113,114,115,116,121,128,132,139,152,155,161,163,164,165,166,167,172,173,176,181,183,186,190,191,192,193,195,196,203,204,207,210,211,213,217,218,219,221,223,226,229,232,233,236],moreov:[25,218],mosi:152,mosi_pin:[122,123],most:[1,8,14,17,23,27,28,32,35,36,37,43,74,102,106,107,112,114,115,145,152,173,175,186,207,210,217,219,221,224,226],mostli:[6,9,173,191,192],motor:[9,223],mount:219,mous:[121,143],move:[8,58,70,71,72,94,98,105,113,115,144,173,195,199,219,220,222,226],mp_block_siz:103,mp_flag:103,mp_membuf_addr:103,mp_min_fre:103,mp_num_block:103,mp_num_fre:103,mpe:103,mpool:[204,218],mpstat:[77,91,93,94,95,118,120,201,230],mq_ev:102,mqeueue:102,ms5837:25,msb:149,msdo:106,msec:[14,39,156],msg:[162,178],msg_data:39,msp:[193,199],msy:72,msys2:[10,69],msys2_path_typ:72,msys64:72,msys_1:[86,230],msys_1_block_count:[220,222],msys_1_block_s:[220,222],mtd:122,mtu:[21,29,30,33,39,40,187],mu_level:104,mu_own:104,mu_prio:104,much:[14,102,106,111,114,133,218],multi:[1,9,63,75,109,112,149],multilib:[6,7,70],multipl:[4,14,17,19,25,29,30,35,39,41,47,48,63,64,68,97,104,105,110,114,116,119,121,143,152,168,176,186,190,191,212],multiplex:[14,43],multiplexor:109,multipli:[103,207],multitask:[105,207],must:[1,2,4,5,7,8,9,10,11,26,27,28,29,30,34,36,37,46,50,54,59,66,68,70,72,74,76,79,81,84,93,98,99,100,102,103,105,106,109,110,112,113,115,116,117,123,127,135,139,141,142,149,152,154,155,159,160,161,162,163,164,165,167,168,170,172,174,175,176,180,183,186,188,195,198,199,201,203,204,207,211,212,213,219,221,222,224,225,226,229,232,233],mutex:[101,105,111,112],mutual:104,my_at45db_dev:122,my_blinki:63,my_blinky_sim:[7,47,48,56,68,74,183,184,196,197,218],my_blocking_enc_proc:33,my_callout:205,my_conf:116,my_config_nam:176,my_driv:[218,219],my_ev_cb:205,my_eventq:201,my_gpio_irq:205,my_interrupt_ev_cb:205,my_memory_buff:103,my_new_target:63,my_newt_target:63,my_packag:162,my_package_log:162,my_pool:103,my_proj1:183,my_proj:183,my_project:[1,193,211,212,219],my_protocol_head:102,my_protocol_typ:102,my_result_mv:219,my_sensor:226,my_sensor_devic:226,my_sensor_poll_tim:226,my_stack_s:112,my_stat:174,my_stat_sect:174,my_target1:75,my_task:112,my_task_evq:102,my_task_func:112,my_task_handl:102,my_task_pri:112,my_task_prio:112,my_task_rx_data_func:102,my_task_stack:112,my_timer_ev_cb:205,my_timer_interrupt_eventq:205,my_timer_interrupt_task:205,my_timer_interrupt_task_prio:205,my_timer_interrupt_task_stack:205,my_timer_interrupt_task_stack_sz:205,my_timer_interrupt_task_str:205,my_uart:155,myadc:219,myapp1:233,myapp:174,myapp_console_buf:117,myapp_console_ev:117,myapp_init:117,myapp_process_input:117,mybl:[47,48,59,63,79,86,89,90,201],myble2:[50,51,184],myblehostd:79,mybleprph:[79,203],mybletyp:79,myboard:[58,106],myboard_debug:106,myboard_download:106,myconn:201,mycor:84,mydata:102,mydata_length:102,mylora:204,mymcu:108,mymfg:83,mymodul:110,mymodule_has_buff:110,mymodule_perform_sanity_check:110,mymodule_register_sanity_check:110,mynewt:[1,3,4,5,6,10,12,26,28,33,37,42,43,45,50,51,52,56,57,63,64,66,68,69,70,72,73,74,75,84,91,92,93,95,96,97,99,100,101,110,111,112,113,114,115,119,120,121,122,123,138,139,141,142,143,144,145,148,149,152,155,162,164,165,172,173,174,175,176,177,178,179,180,182,184,185,187,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,208,210,211,213,218,219,221,223,225,226,229,230,231,232,233,234,236],mynewt_0_8_0_b2_tag:[212,213],mynewt_0_8_0_tag:212,mynewt_0_9_0_tag:212,mynewt_1_0_0_b1_tag:212,mynewt_1_0_0_b2_tag:212,mynewt_1_0_0_rc1_tag:212,mynewt_1_0_0_tag:212,mynewt_1_4_1_tag:[70,72,93,95],mynewt_arduino_zero:[193,211,212],mynewt_nord:219,mynewt_stm32f3:180,mynewt_v:[146,164,165,172,174,176,210,219],mynewt_val_:[14,176],mynewt_val_ble_max_connect:14,mynewt_val_log_level:176,mynewt_val_log_newtmgr:176,mynewt_val_msys_1_block_count:176,mynewt_val_msys_1_block_s:176,mynewt_val_my_config_nam:176,mynewtl:220,mynewtsan:88,mypeerprofil:21,myperiph:[187,203],mypool:103,myprofil:21,myproj2:173,myproj:[2,7,11,106,180,181,193,195,196,197,198,199,200,203,212,218,220,221,223,226,234],myriad:9,myself:14,myseri:[86,89,90],myserial01:79,myserial02:79,myserial03:79,mytarget:25,mytask:207,mytask_handl:207,mytask_prio:207,mytask_stack:207,mytask_stack_s:207,myudp5683:79,myvar:78,n_sampl:221,nack:149,nad:141,nad_flash_id:141,nad_length:141,nad_offset:141,nak:149,name1:63,name2:63,name:[1,2,4,7,8,10,11,13,14,21,24,25,33,39,41,43,47,48,50,51,55,56,57,58,60,61,63,64,66,68,70,71,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,103,106,107,108,110,112,113,114,116,117,121,139,140,142,143,148,160,161,162,163,164,165,166,168,173,175,178,180,183,186,188,190,191,192,193,195,196,197,198,199,200,201,205,207,210,211,212,213,214,218,219,220,221,222,223,226,229,230,232,233],name_is_complet:186,name_len:[139,186],namespac:[101,172,191],nano2:[56,66,106,200],nano2_debug:[106,200],nano:[194,236],nanosecond:[99,154],nativ:[2,3,7,11,56,63,66,68,72,74,79,116,152,175,176,180,184,196,197,205,211,218,219,230,236],natur:106,navig:[13,236],nbuf:102,nc_num_block:141,nc_num_cache_block:141,nc_num_cache_inod:141,nc_num_dir:141,nc_num_fil:141,nc_num_inod:141,nding:190,ndof:221,ndof_fmc_off:221,nearest:[72,196],nearli:19,neatli:186,necessari:[6,29,30,36,52,60,70,71,72,102,115,139,180,183,188,193,204,210,219],necessarili:27,need:[4,5,6,7,8,9,10,11,13,14,15,17,18,21,23,25,27,28,29,30,35,36,45,56,63,65,68,70,71,72,73,74,77,79,93,94,96,97,98,101,102,103,104,105,106,108,109,110,111,112,115,117,122,127,128,129,139,146,153,156,162,163,165,166,167,168,172,173,174,175,176,183,184,186,188,189,190,191,192,193,195,196,197,198,199,200,201,203,205,207,210,211,213,214,217,218,219,220,222,223,226,229,230,232],neg:[102,113,172,190],neither:102,ness:152,nest:[104,139],net:[4,7,14,25,36,64,170,176,183,184,188,190,211,218,219,220,222,225],net_nimble_control:173,net_nimble_host:173,network:[1,9,14,39,44,45,68,102,105,173,204,207,211],never:[14,32,102,105,110,112,176,183,188,207,223],nevq:100,new_btshel:58,new_key_s:28,new_pool:102,new_slinki:58,newer:6,newest:[18,127,175,207],newli:[1,13,32,56,115,184,191,192,212],newlib:114,newlin:117,newt:[1,3,5,6,7,12,14,15,18,24,25,45,69,74,75,86,89,90,93,94,95,96,105,106,107,109,121,173,174,175,176,178,180,181,182,183,184,187,191,192,193,194,195,196,197,198,199,200,202,203,204,205,207,208,210,211,212,213,214,215,218,219,220,221,222,223,224,226,228,229,230,231,232,233,234,236],newt_1:[70,73],newt_1_1_0_windows_amd64:73,newt_3_1_0_windows_amd64:73,newt_group:2,newt_host:2,newt_us:2,newtgmr:[94,95,96],newtmgr:[1,7,9,12,14,15,70,71,72,76,77,91,92,117,118,120,157,162,173,175,176,205,218,219,231,236],newtmgr_1:[93,96],newtmgr_1_1_0_windows_amd64:96,newtmgr_1_3_0_windows_amd64:96,newtmgr_shel:172,newtron:[139,142,175,176],newtvm:10,next:[7,8,25,36,42,84,90,95,98,102,103,112,115,117,119,127,132,139,157,161,163,167,168,173,176,181,183,186,190,191,192,193,196,199,203,207,213,217,218,219,223],next_checkin:[90,229,232],next_t:98,nfc:18,nff:[7,114,122,139,142,150,175,176,178,210],nffs_area_desc:[16,141],nffs_close:142,nffs_closedir:142,nffs_config:141,nffs_detect:141,nffs_detect_fail:[139,141],nffs_dirent_is_dir:142,nffs_dirent_nam:142,nffs_file_len:142,nffs_filename_max_len:141,nffs_flash:150,nffs_flash_area:[16,175,176],nffs_format:141,nffs_getpo:142,nffs_init:[141,142],nffs_intern:141,nffs_max_area:141,nffs_misc_desc_from_flash_area:141,nffs_mkdir:142,nffs_op:142,nffs_open:142,nffs_opendir:142,nffs_pkg_init:16,nffs_read:142,nffs_readdir:142,nffs_renam:142,nffs_seek:142,nffs_test:210,nffs_test_debug:210,nffs_test_priv:210,nffs_test_system_01:210,nffs_test_util:210,nffs_unlink:142,nffs_write:142,nice:[174,217],nil:80,nim:190,nimbl:[7,21,35,36,38,41,79,176,182,185,186,187,188,189,190,201,203,217,218,219,220,222],nimble_max_connect:14,nmgr:120,nmgr_o:118,nmgr_shell:[117,176,201],nmgr_shell_pkg_init:176,nmgr_uart:201,nmgr_urart_spe:201,nmxact:10,no_of_sampl:221,no_rsp:40,no_wl:[39,42],no_wl_inita:39,node:[14,43,45,68,139],nodefault:161,nodup:39,nogdb:[51,60],noinputnooutput:39,non:[7,14,28,29,30,31,32,36,39,43,44,45,97,102,103,112,113,116,127,131,135,137,140,144,148,149,152,153,154,155,163,167,168,169,173,176,191,192,204,212,226],none:[4,7,8,11,20,33,39,42,95,100,106,114,115,168,173,180,193,197,204,226,233,234],nonsens:210,nonzero:[27,28,29,30,102,128,129,130,132,133,136,137,152,162,189,210],nor:34,nordic:[14,19,35,106,121,143,147,151,153,173,196,198,203,205,218,219,221,223,226,231,236],nordic_pca10028:173,nordic_pca10040:106,nordic_pca10040_debug:106,nordic_pca10040_download:106,nordicsemi:[196,198,204,218,219,226],normal:[2,111,178,217,221],notat:[68,199],note:[1,2,4,6,7,10,11,13,14,28,34,35,36,41,43,45,56,60,63,70,71,72,73,74,79,81,84,93,94,95,96,98,99,100,102,103,104,105,106,107,112,115,116,117,123,141,149,152,154,157,162,163,164,165,166,168,172,173,175,176,180,183,184,186,188,190,191,192,193,195,196,197,198,199,200,201,203,204,207,208,211,212,213,214,219,220,221,222,223,224,226,228,229,230,232,233,236],noth:[10,191,192,219],notic:[7,10,68,74,105,106,142,173,183,207,213,218,219],notif:[13,14,29,30,39,40,100,117,163,167,168,169,185,217,219],notifi:[13,27,28,29,30,40,113,166,167,168,189,190],notnul:176,nov:8,novelbit:14,now:[2,8,9,24,72,97,99,102,103,104,106,111,112,115,138,139,148,155,173,180,181,183,185,186,187,189,190,191,192,193,196,201,203,204,207,210,212,217,218,219,221,223,226,230,233,234],nreset:193,nrf51:[36,66,106,121,143,173,208],nrf51dk:[66,173],nrf51xxx:151,nrf52840pdk:45,nrf52:[4,14,19,20,21,25,36,74,106,121,143,147,153,164,184,194,195,196,203,204,205,218,220,222,223,226,231,233,234,236],nrf52_bleprph_oic_bno055:220,nrf52_blinki:[195,198,200,233],nrf52_bno055_oic_test:[220,222],nrf52_bno055_test:[221,224],nrf52_boot:[184,198,201,219,220,221,222,229],nrf52_drv2605_test:223,nrf52_hal:106,nrf52_slinki:229,nrf52_thingi:164,nrf52dk:[50,51,66,74,75,176,183,184,187,195,198,205,217,218,219,220,221,222,223,229],nrf52dk_debug:[74,195],nrf52k_flash_dev:[106,147],nrf52pdk:184,nrf52serial:229,nrf52xxx:[17,61,106,153,196,226],nrf5x:36,nrf:[37,219],nrf_saadc:219,nrf_saadc_channel_config_t:219,nrf_saadc_gain1_6:219,nrf_saadc_input_ain1:219,nrf_saadc_reference_intern:219,nrf_saadc_typ:219,nrfx:219,nrfx_config:219,nrfx_saadc:219,nrfx_saadc_config_t:219,nrfx_saadc_default_channel_config_s:219,nrfx_saadc_default_config:219,nrpa:[32,191,192],nsampl:221,nsec:99,ntoh:102,ntohl:102,ntrst:193,nucleo:66,num:[168,178],num_attr:[29,30],num_block:103,num_byt:146,num_handl:[29,30],number:[1,8,9,13,24,28,29,30,34,39,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,96,97,99,100,102,103,104,105,106,111,112,113,114,115,116,126,127,128,138,140,141,144,146,148,149,151,152,154,155,157,159,160,161,162,163,168,172,174,175,176,184,190,191,192,193,195,199,201,203,204,205,207,211,212,213,217,218,219,221,222,223,229,232,233],numer:[19,33,34,98,106,115],nvm:193,nxp:[14,121,143],objcopi:[6,20],objdump:6,object:[4,10,29,30,61,68,74,94,99,105,106,109,112,119,161,165,167,168,169,172,189,210,221,225],objsiz:[6,61,173],observ:[27,39,163,169,170,184,225],obtain:[14,39,102,104,111,112,154,162,212,218,219],obvious:66,oc_add_devic:220,oc_add_resourc:220,oc_app_resourc:[220,222],oc_get:220,oc_if_rw:220,oc_init_platform:220,oc_main_init:[170,220],oc_new_resourc:220,oc_put:220,oc_resource_bind_resource_interfac:220,oc_resource_bind_resource_typ:220,oc_resource_set_default_interfac:220,oc_resource_set_discover:220,oc_resource_set_periodic_observ:220,oc_resource_set_request_handl:220,oc_serv:[170,201,220,222,225],oc_transport_gatt:201,oc_transport_ip:201,oc_transport_seri:201,occasion:102,occur:[14,27,28,38,39,102,104,113,148,149,152,175,188,189,191,192],occurr:176,ocf:[119,218],ocf_sampl:[7,74],ocimgr:118,octet:[39,41,44,115],od_init:121,od_nam:165,odd:155,odditi:17,off:[2,17,33,43,44,45,97,100,102,109,110,112,117,121,127,143,144,149,162,163,165,166,171,181,183,184,191,192,195,199,201,203,205,220,222,224,225,226,228,236],offboard:223,offer:[1,43,119,121,138,146,219],offset1:102,offset2:102,offset:[29,30,33,40,84,102,106,113,115,127,135,139,140,161,162,173,175,176,221],often:[9,68,106,149,152],ogf:218,ohm:219,oic:[7,25,64,79,119,166,167,168,226,236],oic_bhd:79,oic_bl:79,oic_seri:79,oic_udp:79,oic_udpconnstr:79,oicmgr:[7,79,118,119,120],okai:[14,19],old:[58,127],older:[21,72,95,196,197],oldest:[28,127,132,136,175],olimex:[194,218,231,236],olimex_blinki:199,olimex_stm32:[66,199,232],om1:102,om2:102,om_data:[14,102,162],om_databuf:102,om_flag:102,om_len:[102,162],om_omp:102,om_pkthdr_len:102,om_ptr:162,ome:103,omgr:120,omi_block_s:103,omi_min_fre:103,omi_nam:103,omi_num_block:103,omi_num_fre:103,omit:[15,60,175],omp:102,omp_databuf_len:102,omp_flag:102,omp_len:102,omp_next:102,omp_pool:102,on_reset:38,on_sync:38,onboard:[8,165,166,224,228,233,234,236],onc:[32,41,68,70,74,93,97,99,102,103,104,105,112,115,130,143,152,154,168,180,181,186,191,194,195,201,203,204,212,218,219,223],one:[1,4,7,8,10,11,13,14,16,17,19,21,23,25,28,29,30,32,33,34,35,39,41,42,43,44,47,48,52,56,58,63,64,66,70,71,72,74,80,95,98,100,102,104,105,106,109,111,112,115,116,117,123,124,127,139,140,141,144,149,152,157,162,163,167,168,173,174,175,176,181,183,184,190,191,192,193,194,195,196,197,198,199,200,204,207,210,211,212,213,214,217,218,219,221,228,229,232,236],ones:[27,102,111,121,143,162,184,236],ongo:39,onli:[1,2,7,8,10,11,13,14,15,19,27,28,29,30,32,33,36,39,41,44,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,79,85,93,96,99,100,102,103,105,106,109,110,111,113,115,116,117,118,121,122,123,125,137,139,140,141,149,152,157,162,163,165,166,168,172,173,174,175,176,178,179,181,186,188,191,193,195,201,203,204,207,208,210,211,212,213,214,218,219,220,221,223,225,226,230],onlin:[193,226,233,234],onto:[1,33,55,56,60,97,100,102,106,167,194,196,197,198,199,200,217,218,221,229,232],oob:[14,33,39,41],op_mod:223,opaqu:[28,139,154,162,163,165,167,226],open:[4,8,9,11,13,14,33,43,51,52,60,68,70,71,72,74,109,119,121,139,141,164,191,193,196,197,199,200,210,218,224,230],open_test:210,openocd:[11,106,193,196,197,199,200,232],openocd_debug:196,oper:[1,9,11,28,29,30,31,33,38,43,44,52,70,71,72,97,102,109,110,111,112,113,117,119,121,139,140,141,142,143,144,146,148,155,162,163,168,174,176,177,179,183,184,188,189,190,191,192,193,204,210,211,213,214,217,218,219,221,223,226],oppos:[44,102,168,214],opt:4,optim:[1,36,45,50,51,56,63,74,102,106,107,114,121,173,180,183,184,187,193,196,197,198,199,200,204,207,211,218,219,221,226,229,232],optimis:44,option:[2,3,4,6,7,8,11,18,21,28,29,30,34,35,39,49,50,59,64,68,75,79,85,97,98,100,103,106,113,115,119,121,137,138,159,163,165,166,167,172,173,175,176,178,183,184,190,193,197,199,204,211,212,213,218,221,232],orang:[196,200],order:[1,9,14,17,26,34,46,68,74,76,98,100,102,103,104,110,112,114,115,116,119,152,163,175,176,181,201,204,207,210,213,215,218,219,223,226,233,234],org:[1,4,10,13,25,52,70,71,72,74,93,95,114,117,124,191,193,196,197,199,200,210,218,219,226,233,234],organ:[10,121,174,210,212],origin:[10,59,106,115,199],os_align:[102,103],os_arch:[74,103,113],os_bad_mutex:104,os_callout:[74,97,110,116,195,205,226],os_callout_func:[97,102],os_callout_func_init:97,os_callout_init:[97,110,195,205,226],os_callout_queu:97,os_callout_remaining_tick:97,os_callout_reset:[97,110,195,205,226],os_callout_stop:97,os_cfg:74,os_cli:176,os_cputim:[17,74],os_cputime_delay_nsec:99,os_cputime_delay_tick:99,os_cputime_delay_usec:99,os_cputime_freq:36,os_cputime_freq_pwr2:99,os_cputime_get32:99,os_cputime_init:99,os_cputime_nsecs_to_tick:99,os_cputime_ticks_to_nsec:99,os_cputime_ticks_to_usec:99,os_cputime_timer_init:99,os_cputime_timer_num:[36,99],os_cputime_timer_rel:99,os_cputime_timer_start:99,os_cputime_timer_stop:99,os_cputime_usecs_to_tick:99,os_dev:[74,121,163,164,165,224],os_dev_clos:[164,224],os_dev_cr:[121,163,164,165,168],os_dev_init_func_t:[121,165],os_dev_init_primari:164,os_dev_open:[164,219,224],os_einv:[102,113],os_eno:116,os_error_t:[98,103,104,111],os_ev:[97,100,102,110,116,117,195,205,226],os_event_fn:[97,100,102],os_event_queu:100,os_event_t_mqueue_data:102,os_event_t_tim:97,os_eventq:[74,97,100,102,110,117,168,172,205,217,219],os_eventq_dflt_get:[38,100,105,112,117,176,191,192,195,205,224,226],os_eventq_get:[100,110],os_eventq_get_no_wait:100,os_eventq_init:[100,102,110,117,205,217,219],os_eventq_pol:100,os_eventq_put:[100,117,205],os_eventq_remov:100,os_eventq_run:[38,100,102,105,112,176,191,192,195,205,224,226],os_exit_crit:98,os_fault:74,os_get_uptim:113,os_get_uptime_usec:113,os_gettimeofdai:113,os_heap:74,os_init:[99,112],os_invalid_parm:[103,104,111],os_main_task_prio:[176,207],os_main_task_stack_s:176,os_malloc:[74,101],os_mbuf:[14,28,29,30,74,102,162,172],os_mbuf_adj:102,os_mbuf_append:[102,217,219],os_mbuf_appendfrom:102,os_mbuf_cmpf:102,os_mbuf_cmpm:102,os_mbuf_concat:102,os_mbuf_copydata:[14,102],os_mbuf_copyinto:102,os_mbuf_count:102,os_mbuf_data:102,os_mbuf_dup:102,os_mbuf_extend:102,os_mbuf_f_:102,os_mbuf_f_mask:102,os_mbuf_fre:102,os_mbuf_free_chain:102,os_mbuf_get:102,os_mbuf_get_pkthdr:102,os_mbuf_is_pkthdr:102,os_mbuf_leadingspac:102,os_mbuf_len:102,os_mbuf_off:102,os_mbuf_pkthdr:102,os_mbuf_pkthdr_to_mbuf:102,os_mbuf_pktlen:102,os_mbuf_pool:102,os_mbuf_pool_init:102,os_mbuf_prepend:102,os_mbuf_prepend_pullup:102,os_mbuf_pullup:102,os_mbuf_trailingspac:102,os_mbuf_trim_front:102,os_mbuf_usrhdr:102,os_mbuf_usrhdr_len:102,os_mbuf_widen:102,os_memblock:103,os_memblock_from:103,os_memblock_get:103,os_memblock_put:103,os_memblock_put_from_cb:103,os_membuf_t:[102,103],os_mempool:[74,102,103],os_mempool_block_sz:103,os_mempool_byt:103,os_mempool_clear:103,os_mempool_ext:103,os_mempool_ext_init:103,os_mempool_f_:103,os_mempool_f_ext:103,os_mempool_info:103,os_mempool_info_get_next:103,os_mempool_info_name_len:103,os_mempool_init:[102,103],os_mempool_is_san:103,os_mempool_put_fn:103,os_mempool_s:[102,103],os_mempool_unregist:103,os_mqueu:102,os_mqueue_get:102,os_mqueue_init:102,os_mqueue_put:102,os_msys_count:102,os_msys_get:102,os_msys_get_pkthdr:102,os_msys_num_fre:102,os_msys_regist:102,os_msys_reset:102,os_mutex:[74,98,104,127,163],os_mutex_init:104,os_mutex_pend:104,os_mutex_releas:[98,104],os_ok:[98,104,111],os_pkg_init:176,os_san:[74,110],os_sanity_check:[110,112],os_sanity_check_func_t:110,os_sanity_check_init:110,os_sanity_check_regist:110,os_sanity_check_reset:110,os_sanity_check_setfunc:110,os_sanity_task_checkin:110,os_sch:[74,98],os_sched_get_current_t:207,os_sched_get_current_task:[98,110,207],os_sched_next_task:98,os_sched_set_current_task:98,os_sem:[74,105,111,218],os_sem_get_count:111,os_sem_init:[24,105,111,218],os_sem_pend:[24,105,111,218],os_sem_releas:[24,105,111,218],os_settimeofdai:113,os_stack_align:[207,217,219],os_stack_t:[110,112,205,207,217,219],os_start:112,os_stime_max:113,os_stime_t:113,os_sysview:234,os_task:[74,98,100,104,105,110,112,205,207,217,219],os_task_count:112,os_task_flag_evq_wait:112,os_task_flag_mutex_wait:112,os_task_flag_no_timeout:112,os_task_flag_sem_wait:112,os_task_func_t:[110,112,178],os_task_info:112,os_task_info_get_next:112,os_task_init:[105,110,112,205,207,217,219],os_task_max_name_len:112,os_task_pri_highest:112,os_task_pri_lowest:112,os_task_readi:112,os_task_remov:112,os_task_sleep:112,os_task_st:112,os_task_stack_defin:112,os_task_stack_define_nostat:112,os_task_state_t:112,os_test:74,os_tick_idl:[151,193,196,226],os_tick_init:151,os_tick_per_sec:23,os_ticks_per_sec:[17,24,97,110,113,116,151,165,195,205,207,217,218,219,226],os_tim:[74,113,210],os_time_adv:113,os_time_change_fn:113,os_time_change_info:113,os_time_change_listen:113,os_time_change_remov:113,os_time_delai:[24,112,113,165,181,205,207,217,219],os_time_get:113,os_time_is_set:113,os_time_max:113,os_time_ms_to_tick:113,os_time_ms_to_ticks32:113,os_time_t:[97,100,104,110,111,112,113,151,163,165],os_time_tick_geq:113,os_time_tick_gt:113,os_time_tick_lt:113,os_time_ticks_to_m:113,os_time_ticks_to_ms32:113,os_timeout:[104,111,218],os_timeout_nev:[104,105,111,113,163,164,224,226],os_timeradd:113,os_timersub:113,os_timev:[113,210],os_timeval_geq:113,os_timeval_gt:113,os_timeval_leq:113,os_timeval_lt:113,os_timezon:[113,210],os_wait_forev:[100,105,112,205,207,217,219],osmalloc:101,ostask:112,ostick:113,osx:[180,181],ota:201,otg1:199,otg2:[199,232],other:[1,6,8,10,13,14,15,18,24,25,27,28,29,30,33,34,36,41,44,63,68,74,99,100,102,103,105,106,107,110,111,112,113,115,116,117,121,139,141,146,149,162,165,167,168,172,173,174,176,180,183,184,185,186,188,189,193,194,195,196,205,207,208,210,212,217,218,219,220,221,222,226,228,233,234],otherwis:[23,28,29,30,102,103,105,112,113,117,129,131,134,140,148,152,162,168,212,213],oti:112,oti_cswcnt:112,oti_last_checkin:112,oti_nam:112,oti_next_checkin:112,oti_prio:112,oti_runtim:112,oti_st:112,oti_stks:112,oti_stkusag:112,oti_taskid:112,oui:[32,204],our:[14,27,33,68,102,106,173,174,180,181,183,186,191,192,194,195,201,207,210,213,217,219,229,232],our_id_addr:[28,42,187],our_id_addr_typ:187,our_key_dist:39,our_ota_addr:[28,42,187],our_ota_addr_typ:[42,187],out:[8,9,10,14,21,27,33,34,35,38,39,43,74,93,94,95,97,102,108,112,115,117,123,127,128,131,133,141,142,143,144,160,173,183,185,187,191,192,194,199,211,223,231],out_cpha:152,out_cpol:152,out_data:[139,140],out_def_handl:[29,30],out_desc:28,out_dir:140,out_dsc_handl:[29,30],out_fil:140,out_handl:[29,30],out_id_addr_typ:42,out_len:[139,140],out_m:113,out_nam:[123,139,140],out_name_len:[139,140],out_off:102,out_rssi:28,out_tick:113,out_val_handl:[29,30],outcom:[29,30,162],outdat:71,outfil:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75],outgo:[29,30],outlin:5,output:[1,7,11,24,34,39,42,43,47,48,50,51,52,53,54,55,56,57,58,59,60,62,63,64,65,67,70,71,72,75,82,86,88,89,90,94,101,106,112,113,115,143,148,155,162,168,173,175,180,193,195,196,197,199,200,204,205,210,211,218,221,226,230,233],outsid:[33,43,102,177],outweigh:102,over:[15,21,25,28,29,30,33,34,35,39,41,43,44,78,79,80,81,82,83,84,85,86,87,88,89,90,102,115,120,121,123,127,129,137,149,155,162,173,188,194,195,197,201,202,204,207,211,217,218,220,221,222,225,228,231,233,236],overal:[13,14,36,102,112,141],overdr:223,overflow:[14,113],overhead:102,overlap:33,overrid:[63,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,106,162,173,174,184,201,219],overridden:[35,176,184],overview:[115,221,222,226],overwrit:[6,28,62,63,72,73,95,96,106,117,193,208,211],overwrite_many_test:210,overwrite_one_test:210,overwrite_three_test:210,overwrite_two_test:210,overwritten:115,own:[2,10,18,24,32,33,52,70,71,72,74,100,104,105,109,111,112,122,152,162,173,174,182,183,219,223],own_addr_t:[191,192],own_addr_typ:[28,39,79,191,192,218],owner:[100,104,214],ownership:[29,30,104,218,219],pacakg:183,pacif:113,pack:[4,68,94,102,196,198,203,211,221,226,229],packag:[6,9,10,14,16,18,25,35,36,38,47,52,53,54,56,58,63,64,65,66,68,69,71,72,73,92,96,100,105,107,112,115,116,118,119,121,124,125,139,141,143,144,157,158,161,164,165,168,170,171,172,173,174,178,180,184,194,195,196,204,205,209,212,213,219,222,223,224,225,236],package1:162,package1_log:162,package2:162,package2_log:162,packet:[33,39,41,43,149,172,191,204],packet_data:102,pacman:[7,10,72],pad:[102,115,162],page:[1,4,5,6,7,8,13,14,15,33,34,70,71,73,93,94,96,106,114,122,142,149,150,163,164,165,166,180,181,183,185,189,191,192,194,219],page_s:122,pair:[14,28,29,30,33,34,39,43,79,115,116,161,176,187,189],pakcag:172,panel:11,paradigm:102,param:[28,39,172,189],param_nam:172,paramet:[1,14,27,28,29,30,33,38,39,40,42,74,79,85,97,98,99,100,102,103,104,110,111,112,113,116,117,123,127,137,140,144,146,148,149,151,152,154,155,156,162,163,164,165,167,168,169,172,176,186,188,189,190,191,192,201,210],parameter_nam:176,parameter_valu:176,parent:[27,29,30,103,139,168],parenthes:102,pariti:155,parlanc:10,parmaet:39,parmet:[39,40],pars:[68,157,159,172,191,210],part:[19,21,34,41,102,108,115,127,141,142,162,173,186,187,190,218,219,225],parti:[191,193,211],partial:[77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,102,115,141],particular:[4,17,24,27,28,33,60,74,102,105,106,109,110,115,117,121,139,143,152,154,161,189,191,192],particularli:208,partit:[33,106,115,141,173],partner:14,pass:[1,7,11,14,15,19,27,28,29,30,33,39,74,97,99,100,102,103,104,110,111,112,113,116,117,121,122,124,126,127,137,148,149,152,154,155,161,162,163,164,165,167,172,186,190,191,192,210,226],passiv:[14,39],passkei:[14,33,34,39],password:[10,71,93,184,214],past:[33,102],patch:[196,197,200],path:[2,4,6,10,11,21,25,41,63,70,71,72,73,74,79,93,94,95,96,106,107,139,140,176,212,218,219],pathloss:41,pattern:[39,106,207,223],payload:[14,29,30,102,119,120,149],pc6:232,pc7:232,pca100040:184,pca10028:173,pca10040:106,pca:[198,203,218,219],pcb:218,pci:[121,143],pcmcia:[121,143],pdata:149,pdf:[180,232],pdt:[113,210],pdu:[14,28,33,39],peek:207,peer:[13,21,28,29,30,34,40,79,152,188,190,191,192,203],peer_addr:[28,39,42,79,186],peer_addr_typ:[39,42,79,186],peer_id:79,peer_id_addr:[28,187],peer_id_addr_typ:187,peer_nam:[21,79,203],peer_ota_addr:[28,187],peer_ota_addr_typ:187,pem:[50,59],pencil:13,pend:[33,97,100,104,111,115,149,203],per:[10,17,19,24,32,102,104,115,116,141,144,148,152,155,174,207,210,213,223],perfectli:14,perfom:115,perform:[3,4,5,9,10,11,14,20,27,28,29,30,33,34,37,39,49,70,71,72,77,93,94,95,98,102,103,105,106,110,112,114,115,117,122,138,139,149,154,168,173,176,180,188,193,195,196,203,204,213,217,219,220,221,222,223,226],perhap:212,period:[9,14,28,32,34,39,97,110,151,156,205,207],peripher:[9,17,19,33,36,38,41,42,43,106,109,121,143,144,149,152,174,182,183,186,189,190,191,203,217,218,219],perman:[84,115,173,186,189,203],permiss:[218,219],permit:[29,30,33,190,193,226,233,234],persist:[14,28,115,138,162],perspect:173,pertain:189,petteriaimonen:114,phdr:102,phone:[14,34,44],php:68,phy:[28,39,43],phy_1m_conn_param:28,phy_2m_conn_param:28,phy_coded_conn_param:28,phy_init:219,phy_mask:28,phy_opt:[28,39],physic:[39,41,43,79,117,145,148,155],pick:[98,105,162,191,192],pictur:[180,196],pid:197,piec:[43,106,218],pin:[7,8,33,106,109,112,121,143,145,148,149,152,153,155,163,180,195,196,199,204,205,211,218,219,221,223,226,232],ping:105,pinout:108,pipe:19,piqu:236,pitfal:102,pkcs15:115,pkg1:175,pkg2:175,pkg:[1,7,10,25,52,56,63,66,68,70,71,72,74,107,108,114,117,121,122,123,138,139,142,143,162,164,172,174,175,176,183,195,201,205,210,218,219,220,226],pkg_init_func1_nam:176,pkg_init_func1_stag:176,pkg_init_func2_nam:176,pkg_init_func2_stag:176,pkg_init_func:176,pkg_init_funcn_nam:176,pkg_init_funcn_stag:176,pkga_syscfg_nam:176,pkga_syscfg_name1:176,pkga_syscfg_name2:176,pkgn_syscfg_name1:176,pkt:218,pkthdr_len:102,pkts_rxd:102,place:[3,14,68,74,100,113,114,115,127,149,152,163,173,176,178,181,183,184,190,191,192,199,201,207,213,228],plai:[11,14,17,43,228],plain:[173,197,213],plan:[2,14,121,172],platform:[2,7,9,10,11,35,36,70,71,72,79,93,94,95,97,105,106,107,109,121,144,149,152,154,177,178,183,193,195,196,197,199,200,203,207,211,218,219,221,229,230,231,232],pleas:[14,17,18,52,70,71,72,107,108,174,180,181,193,194,212,219,226,233,234],plenti:207,plist:74,plu:[102,149],plug:[8,142,180,199,200,219],plumb:217,pmode:221,point:[2,4,6,23,44,98,102,104,106,108,112,114,115,116,117,121,128,129,130,131,132,134,135,136,137,152,162,163,168,183,188,189,191,192,219,220],pointer:[14,29,30,80,97,98,99,100,102,103,104,106,111,112,113,116,117,121,127,128,129,137,140,142,144,149,152,154,159,160,161,162,163,164,165,168,172,188,189,207],poke:219,polici:[28,39,212],poll:[14,100,105,167,221,226],poll_du:221,poll_dur:221,poll_interv:221,poll_itvl:221,poll_rat:168,poller:[163,167,168,226],pong:105,pool:[86,93,105,204,222,230],popul:[1,7,11,28,29,30,63,75,113,194,211,228,231,236],port:[2,11,14,15,17,18,79,105,115,117,121,148,155,162,174,184,193,195,196,197,198,199,200,201,211,218,221,226,229,230,231,232,236],portabl:[121,143],portingto:107,portion:[115,133,149,219],posit:[102,113,115,127,156,199],posix:72,possibilti:[233,234],possibl:[14,17,27,28,34,36,39,40,42,43,45,49,66,102,104,113,115,121,139,141,143,144,162,173,174,190,212,221,233],post:[62,97,102,121,163,183,205],potenti:[109,173,213],pour:[71,94],power:[2,9,21,33,34,39,41,43,44,68,106,109,117,121,143,144,152,153,165,184,193,198,199,201,203,204,211,220,221,222,223,224,226,229,232],power_mod:223,ppa:4,pre:[4,9,162,174,212,213,218,219],precaut:188,prece:102,preced:35,precis:[6,14,24,33,168],predict:207,preempt:[104,105,111,112],preemptiv:[105,112,207],prefer:[3,21,39,41,125,188,203,218],preference0x01:39,prefix:[14,74,166,176,219],preload:152,prepar:[33,196,198,204,219],prepend:102,preper:223,preprocessor:[172,174],prerequisit:11,presenc:[106,186,191,192,212],present:[1,14,17,27,102,106,115,117,157,164,168,173,184,199,210],preserv:102,press:[8,11,24,111,183,205,207,211,221,234],presum:[102,204,223],pretti:[14,219],prev:112,prev_cursor:168,prev_ind:189,prev_notifi:189,prevent:[29,30,104,105,115,188],previ:[187,189],preview:184,previou:[43,69,70,71,72,91,92,93,94,95,112,115,153,161,168,175,176,183,184,195,212,217],previous:[6,11,70,71,72,73,93,94,95,96,152,187,201,215,219,221],prevn:[187,189],pri:[90,144,229,232],primari:[29,30,39,106,115,119,190,192,203,217],primarili:114,primary_phi:39,primo:[194,218],primo_boot:196,primo_debug:196,primoblinki:196,print:[24,29,30,61,70,71,72,75,116,117,123,139,155,168,172,175],print_statu:139,print_usag:159,printabl:[157,160],printf:[114,123],prio:[110,112,151],prior:[28,29,30,34,36,62,102,105,113,115,152,154,178,204],prioriti:[24,28,90,98,100,104,105,111,112,121,141,144,151,176,184,205,206,236],priv:39,priv_mod:28,privaci:[32,39,43],privat:[32,34,45,50,59,70,79,93,115,191,192],privileg:2,prng:24,pro:[21,193,196,207],probabl:[7,14,17,21,106,185,214,218],probe:[149,196,211,226],problem:[7,18,111,115,173,175],proce:[3,6,10,115,193,196,197,198,199,200,210,211,229,232],procedur:[6,10,14,27,28,29,30,32,33,34,39,40,77,88,93,94,95,115,142,146,173,218,221,225],proceed:[7,185,191,192],process:[3,6,9,13,25,27,33,34,38,39,44,74,97,98,100,102,106,112,115,117,118,162,168,170,173,174,176,180,191,192,201,205,207,218,220,224,225,226,233,234],process_rx_data_queu:102,processor:[4,9,102,112,121,143,144,148,193,199,207,226,233,234],produc:[111,115,174,197],product:[19,24,68,109,148,166,184,218,232],profil:[27,28,29,30,39,40,43,44,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,94,95,183,193,229,231,232],profile01:[78,80,81,82,83,84,85,86,87,88,89,90],profile0:90,program:[4,6,8,11,35,98,115,117,150,153,180,193,195,196,198,204,207,211,219,223],programat:117,programm:[197,233,234],programmat:[124,223,226],progress:[7,22,28,33,115,121,122,152,182],project:[3,6,8,10,16,17,18,20,26,46,47,52,53,54,57,62,63,65,68,70,71,72,74,76,101,112,114,115,117,122,123,125,138,143,157,162,174,178,181,187,207,210,214,215,220,221,223,226,227,228,233,236],prompt:[7,8,10,11,60,71,72,106,183,193,195,196,197,198,199,200,221,226],prone:190,proper:[29,30,121,218],properli:[36,74,105,110,184,188,207,217,219],properti:[11,28,32,44,72,106,115,120,141,162,180,185,196],propos:13,prot_length:102,prot_tif:102,prot_typ:102,protcol:102,protect:[34,101,115,127],protocol:[14,15,21,27,33,40,43,74,79,102,115,119,120,149,222,225,228,231],prototyp:[109,155,176,191,192],provid:[1,2,7,8,9,10,11,14,15,19,25,28,29,30,32,33,34,39,42,43,44,50,52,58,63,70,71,72,79,83,84,85,88,93,97,99,101,102,103,104,105,106,108,109,110,112,113,115,117,121,122,123,127,138,139,140,141,143,146,148,149,152,154,159,162,163,166,168,170,172,174,178,179,185,191,192,193,201,204,210,211,212,213,218,219,225],provis:[14,43,45],provision:[14,44],proxi:[43,44],pseln:219,pselp:219,pset:152,psm:[14,39],psp:[193,197],pst:[81,113,210],pth:199,ptr:[155,163,168],public_id:39,public_id_addr:42,public_target_address:41,publish:[14,34],pull:[10,18,20,28,62,93,95,100,102,121,148,195,199,205],pulldown:148,pullup:[102,148,162],purchas:223,purpos:[4,8,19,34,63,68,106,110,115,143,148,162,165,167,173,174,188,204,207,219,226],push:[13,14,18],put:[1,2,7,18,56,74,93,95,100,102,103,104,106,111,112,113,120,144,168,186,191,192,207,210,219],putti:[8,195,211,221],pwd:[2,10],pwm:[9,19],pwm_test:74,pwr:[197,199],px4:4,python:[26,46,76],qty:178,qualifi:188,qualiti:227,quat:221,queri:[9,28,32,63,68,70,71,72,74,75,102,120,162,163,165,174,186,221,223,230],question:[18,183],queu:[29,30,33,97,100,155,205],queue:[14,27,28,29,30,38,74,97,99,102,105,110,111,112,117,154,168,172,176,191,192,201,206,217,224,226,228,236],quick:[2,3],quickli:[113,143,207,219,221,223,225,226,228],quickstart:[2,207],quiet:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75],quit:[14,32,106,183,186,191,192,193,196,197,199,200,233],quot:79,radio:[36,43,184],raff:94,rais:104,ram:[61,106,108,141,144,173,183,193,218,220],ram_siz:106,ran:[25,110],rand:[24,39],rand_val:28,random:[28,32,33,37,39,42,79,184,190,191,192,217,219],random_id:39,random_id_addr:42,randomli:32,rang:[9,33,41,43,102,114,159,162,204],rapid:14,rare:102,rate:[14,23,79,97,117,168,170,184,204,221,223,225,226],rather:[21,27,33,106,113,114,115,139,173,219],raw:[10,14,70,71,93,94,117,162,176,219],rb_blinki:[56,63],rb_blinky_rsa:56,rb_boot:56,rb_btshell:63,rbnano2_blinki:200,rbnano2_boot:200,rdy:98,reach:[14,110,154],read:[4,6,7,10,11,27,29,30,31,32,33,35,39,40,68,74,77,78,81,86,89,90,93,94,95,100,102,112,115,116,117,121,122,123,127,129,132,133,137,139,146,148,149,154,161,162,167,168,170,171,176,180,187,189,190,191,192,193,194,197,200,201,203,204,205,207,210,211,212,217,218,219,220,221,222,225,228,231,233,234],read_acceleromet:226,read_cb:226,read_chr:188,read_config:139,read_rsp_rx:89,read_rsp_tx:89,read_sensor_interv:226,read_test:210,read_type_req_rx:89,read_type_req_tx:[89,201],read_type_rsp_rx:[89,201],read_type_rsp_tx:[89,201],readabl:[29,30,184,214],readdesc:7,readdir_test:210,reader:[210,217,219],readi:[13,98,100,112,117,155,161,193,207,218,223,233],readili:121,readm:[7,10,68,74,106,183,210],readnow:74,real:[1,7,9,14,100,105,113,117,161,179,183,190,205,218,226,233],realist:210,realli:[23,102,219],rearm:97,rearrang:102,reason:[14,21,27,28,33,38,39,102,103,115,153,187,189,204,207,210,212],reassembl:43,rebas:10,reboot:[7,25,84,115,116,153,173,175,203,220,222],reboot_log:85,reboot_log_flash_area:[175,176],reboot_start:224,rebuild:[14,25,45,74,95,224],rec0:115,rec1:115,rec2:115,recal:[188,212],receiv:[13,14,21,27,28,33,39,41,44,68,94,102,117,118,123,149,152,155,163,167,168,169,172,186,189,190,197,201,204,226,229,232],recent:[28,196,219],recip:6,recipi:41,recogn:[68,219],recommend:[3,4,7,11,14,17,18,24,25,70,71,93,94,102,117,150,164,165,172,175,176,186,190,196,200,201,205,208,221,228,233],reconfigur:[152,155,224],reconnect:188,record:[115,165,174,178,234],recov:115,recover:115,recreat:213,recur:156,recurs:[68,74,103],red:[39,40,180,197,199,232],redbear:[194,236],redefin:175,redistribut:[68,193,212,226,233,234],redo:25,reduc:[9,21,34,36,44,100,114,119,162,201,205,209],redund:173,reenter:208,ref0:80,refer:[7,8,13,15,18,31,34,35,41,68,80,106,152,166,173,186,191,192,193,195,199,211,219,221,232],referenc:[1,148],reflect:[162,187],refrain:38,refresh:[2,62,193],refus:[226,233],regard:[141,210,218,219],regardless:[29,30,54,162],region:[19,102,106,115,141,146],regist:[14,19,28,29,30,35,88,98,102,103,107,113,116,118,121,124,125,139,140,143,144,149,158,162,163,167,169,170,176,188,190,207,218,219,223,226],registr:[29,30,116,142,163,174,188,226],registri:[102,165],regress:178,regular:[102,210],reject:[28,33,210],rel:[14,102,105,135],relai:[43,44],relat:[13,28,39,44,56,122,173,186,189,193,204,226,233,234],relationship:[39,111],releas:[3,4,7,44,62,69,91,92,102,103,104,105,111,121,148,149,172,176,193,211,212,213,219],release_not:[7,10],relev:[28,108,115,121,148],reli:[1,7,68,176],reliabl:[14,28,29,30,43,115,138,141,191,192,213],reload:25,remain:[18,97,106,162,173,188,207],remaind:[106,186,210,212],rememb:[2,54,93,95,104,193],remind:193,remot:[1,7,9,11,33,39,40,62,68,79,91,93,94,95,119,149,180,184,193,194,195,201,203,205,211,218,226,228,230,231,236],remov:[2,4,6,28,29,30,39,48,58,73,96,99,100,102,103,111,112,113,117,123,163,167,169,173,188,193,226],renam:25,rename_test:210,repeat:[2,10,33,149,181,188],repeatedli:[29,30,41,115],replac:[4,6,28,29,30,106,108,114,157,173,176,181,193,195,229,232],repli:39,repo814721459:68,repo:[1,6,7,10,13,18,20,25,54,68,70,74,93,106,121,139,173,180,183,193,195,196,197,198,199,200,204,210,211,214,218,220,221,226,229,230,232,233,234],repop:7,report:[1,4,6,13,15,28,29,30,33,106,127,144,149,155,163,174,193,197,210,218,226,233,234],reposistori:7,repositori:[1,4,10,11,14,18,53,54,57,62,64,65,70,74,93,121,180,182,183,185,193,194,204,211,215,218,219,228,231,236],repres:[1,8,11,19,28,29,30,74,100,102,111,113,115,117,163,165,167,168,172,190,207],represent:[115,119],reproduc:[1,74,115,142,191,192],req_api:[74,117,162],req_len:102,request:[11,14,18,21,28,33,39,79,80,87,91,102,104,106,111,115,119,120,123,127,153,166,167,169,170,172,173,187,188,193,197,199,201,204,212,213,217,219,220,225,226,229,232],requir:[1,2,4,6,9,10,14,25,27,29,30,33,36,42,44,66,72,74,79,93,95,100,102,103,105,107,108,109,111,115,117,119,122,139,141,154,162,164,172,173,174,175,176,180,183,186,188,193,196,200,201,204,205,207,210,212,213,217,218,221,224,225,226,236],res:220,resch:98,reserv:[33,102,106,109,128,130,163,204,207],reset:[27,29,30,37,77,91,93,94,95,97,110,118,119,153,173,183,184,187,196,197,198,200,201,219,221,223,226,233,234],reset_cb:38,reset_config:193,reset_handl:[106,199],resid:[109,115,181,190,218],resign:[70,71,72],resist:219,resistor:[205,219],resolut:[34,99,154,174],resolv:[1,24,25,28,32,33,34,39,45,68,79,94,175,180,191,192,212],resort:168,resourc:[9,29,30,33,41,74,101,104,111,120,166,167,168,170,172,180,193,205,219,220,222,225,226,232,233,234],respect:113,respond:[30,37,149,173,186,188,190,217,218],respons:[14,21,28,29,30,33,40,41,82,98,103,105,117,119,123,170,173,186,188,207,211,218,225,229,230,232],rest:[1,15,59,74,102,159,161],rest_or_0:178,rest_or_0_aux:178,rest_or_0_aux_1:178,rest_or_0_aux_inn:178,rest_or_0_aux_n:178,restart:[2,10,28,115,116,127,153,178,193,223],restor:[14,28,116,141,196,198,204,219],restrict:[115,127,141,172,176,188,189],restructuredtext:13,result:[11,21,28,33,71,75,102,113,116,149,160,163,174,176,178,190,197,210,217,218,219],resum:[43,112,115,186,189],resynchron:[27,62],retain:[29,30,115,176,189],retent:144,retransmit:44,retreiv:120,retri:[200,204],retriev:[28,29,30,70,93,100,102,113,119,139,140,144,162,163,165,183,228],reus:[68,94,115,176],reusabl:68,rev:221,revdep:[1,63,75],revers:[1,35,63,75,115,188,199],revert:[115,203],review:[13,173,186,210],revis:[4,159,221,223],revision_num:[212,213],revisit:[183,189],rfc:[81,161,210],ribbon:[199,232],rigado:[61,198,219],right:[2,3,13,14,17,68,74,116,186,199,219],rimari:190,ring:111,rise:148,ristic:190,robust:138,role:[14,28,33,42,43,44,111,188],rom:223,room:[102,207],root:[2,4,8,44,93,123,180,212],round:168,routin:[27,98,114,116,127,128,130,142,161,218],rpa:[32,39],rpa_pub:[39,79],rpa_rnd:[39,79],rsa2048:115,rsa:115,rsp:[14,39],rsp_field:28,rssi:[28,39,41,184],rtc:9,rto:[68,105,207],rtt:[8,14,117,218,235,236],rtt_buffer_size_down:233,rubi:[10,68,71],rule:[176,197,210],rumbl:223,run:[2,3,4,5,6,8,9,10,14,20,21,23,27,28,35,36,42,47,52,54,56,63,65,68,70,71,72,73,74,77,79,80,90,91,93,94,95,96,97,98,99,100,102,104,105,106,109,110,111,112,115,116,118,119,122,123,139,154,170,172,173,175,178,179,180,181,183,184,191,192,194,196,197,198,199,200,201,203,204,207,210,211,218,219,220,221,222,223,224,226,229,231,232,236],runner:11,runtest:[7,118,201],runtest_newtmgr:201,runtim:[37,90,112,193,211,229,232],runtimeco:[70,71,93,94,180,193,211,212],rwx:106,rwxr:[93,95],rx_cb:117,rx_data:218,rx_func:155,rx_off:218,rx_phy:28,rx_phys_mask:[28,39],rx_power:39,rxbuf:152,rxpkt:102,rxpkt_q:102,s_cnt:174,s_dev:163,s_func:163,s_hdr:174,s_itf:163,s_listener_list:163,s_lock:163,s_map:174,s_map_cnt:174,s_mask:163,s_name:174,s_next:[163,174],s_next_run:163,s_pad1:174,s_poll_rat:163,s_size:174,s_st:[163,226],s_type:163,sad:[163,226],sad_i:226,sad_x:226,sad_x_is_valid:226,sad_y_is_valid:226,sad_z:226,sad_z_is_valid:226,safe:[103,113,139],safeguard:105,safer:14,safeti:188,sai:[14,19,20,74,102,112,193,211,212,213],said:[148,219],sam0:193,sam3u128:[196,198,204,218,219,226],samd21:[193,211],samd21g18a:193,samd21xx:193,samd:193,same:[6,11,13,14,15,19,25,28,34,41,47,50,60,64,72,74,91,102,104,106,107,111,115,116,117,138,141,149,168,173,174,175,176,180,181,186,188,189,194,196,198,204,205,207,212,213,214,219,220,223],sampl:[1,11,14,42,43,74,102,107,121,170,173,176,219,220,222,225,226,231],sample_buffer1:219,sample_buffer2:219,sample_target:66,sane:[28,112],saniti:[90,105,112,183],sanity_interv:110,sanity_itvl:[110,112],sanity_task:110,sanity_task_interv:110,satd:163,satisfactori:212,satisfi:[168,213],sattempt_stat:174,save:[11,44,62,63,84,113,116,117,149,165,188,207,223],saw:189,sbrk:[106,196,197,198,199,200],sc_arg:110,sc_checkin_itvl:110,sc_checkin_last:110,sc_cmd:[172,218],sc_cmd_f:172,sc_cmd_func:[172,218],sc_cmd_func_t:172,sc_func:110,sc_next:139,sc_valtyp:163,scalabl:138,scale:44,scan:[14,28,36,38,39,41,43,184,186,220,222],scan_interv:39,scan_req:39,scan_req_notif:39,scan_result:211,scan_rsp:39,scan_window:39,scannabl:[14,39,42],scd:163,scenario:[34,111,157],scene:44,schedul:[9,14,19,36,97,100,105,109,112,113,207],schemat:[106,232],scheme:[24,32,41,106],scientif:43,sck_pin:[122,123],scl:[149,221],sco:33,scope:[11,102,207],scratch:[106,115,127,128,130,173],screen:[8,204],script:[7,55,74,124,126,199],scroll:[11,187,201],sd_get_config:[163,165],sd_read:[163,165],sda:[149,221],sdcard:123,sdk:[58,66,176],search:[11,28,29,30,100,107,121,162,168,183,193,199,212,220,226,233,234],searchabl:[121,168],sec000:115,sec125:115,sec126:115,sec127:115,sec:[24,221,226],sec_stat:28,second:[17,28,34,38,39,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,97,102,103,106,110,112,113,115,127,156,168,172,173,180,181,186,191,192,195,199,207,210,217,219,221,226],secondar:190,secondari:[29,30,39,84,106,115,190,203],secondary_phi:39,secret:[34,39],section:[1,5,6,7,10,11,14,27,36,37,41,42,74,102,105,106,112,115,116,140,165,173,175,176,177,182,186,189,190,193,194,201,203,207,211,212,213,219,228,230,231],sector:[115,127,128,133,135,136,137,146,199],sector_address:[122,146],secur:[14,28,43,115,173,190,203,214,217,219],sed:163,see:[2,4,5,6,7,8,10,11,13,14,15,17,20,21,24,25,26,28,34,35,36,43,46,49,56,68,70,71,72,74,76,77,79,93,94,95,100,102,104,105,106,109,112,115,116,124,134,143,149,152,161,162,163,164,165,166,167,170,171,172,174,175,176,180,181,183,184,186,187,188,190,191,192,193,194,195,196,197,198,199,200,201,203,204,207,208,211,212,213,214,217,218,219,220,221,222,223,225,226,228,229,231,232,233,234],seek:102,seem:[14,17,19,23,25,186,219],seen:[103,147,150,212,236],segger:[8,14,117,196,198,203,204,211,218,219,221,226,229,235,236],segger_rtt_conf:233,segment:[43,102,220],sel:232,select:[4,11,25,32,43,68,72,148,152,163,172,193,195,196,197,199,220,222,232,234],selected_tx_pow:28,selector:163,self:[3,42,107,178,191,192,210],selftest:210,sem:111,sem_token:111,sema:218,semant:[18,189],semaphor:[24,105,112,218],send:[3,14,17,19,21,27,28,29,30,33,39,40,44,51,55,60,77,79,80,82,87,91,93,94,95,102,117,119,120,149,152,155,163,170,179,180,181,186,194,217,219,225,230,236],send_pkt:102,sender:186,sens:[33,115,173,219],senseair:[217,218],senseair_cmd:218,senseair_co2:[217,218],senseair_init:218,senseair_read:[217,218],senseair_read_typ:[217,218],senseair_rx_char:218,senseair_shell_func:218,senseair_tx:218,senseair_tx_char:218,sensi:220,sensibl:176,sensor:[9,14,25,44,121,174,223,236],sensor_accel_data:[163,226],sensor_callout:226,sensor_cfg:[163,165],sensor_check_typ:163,sensor_clear_high_thresh:168,sensor_clear_low_thresh:168,sensor_clear_trigger_thresh_t:163,sensor_cli:[171,221,222,226],sensor_color_data:163,sensor_cr:[164,221,224],sensor_data_cmp_gt:163,sensor_data_cmp_lt:163,sensor_data_func_t:[163,165,167],sensor_data_funct_t:165,sensor_data_t:163,sensor_dev_cr:164,sensor_devic:163,sensor_driv:[163,165],sensor_error_func_t:[163,167],sensor_euler_data:163,sensor_event_type_double_tap:163,sensor_event_type_free_fal:163,sensor_event_type_orient_chang:163,sensor_event_type_orient_x_chang:163,sensor_event_type_orient_x_h_chang:163,sensor_event_type_orient_x_l_chang:163,sensor_event_type_orient_y_chang:163,sensor_event_type_orient_y_h_chang:163,sensor_event_type_orient_y_l_chang:163,sensor_event_type_orient_z_chang:163,sensor_event_type_orient_z_h_chang:163,sensor_event_type_orient_z_l_chang:163,sensor_event_type_single_tap:163,sensor_event_type_sleep:163,sensor_event_type_sleep_chang:163,sensor_event_type_t:[163,168],sensor_event_type_wakeup:163,sensor_ftostr:[168,226],sensor_get_config:163,sensor_get_config_func_t:[163,165],sensor_get_devic:163,sensor_get_itf:[163,165],sensor_get_type_traits_bynam:168,sensor_get_type_traits_bytyp:168,sensor_gyro_data:163,sensor_handle_interrupt_t:163,sensor_humid_data:163,sensor_ign_listen:163,sensor_init:[163,165],sensor_itf:[163,164,165],sensor_itf_i2c:[163,164],sensor_itf_lock:163,sensor_itf_spi:163,sensor_itf_uart:163,sensor_itf_unlock:163,sensor_light_data:163,sensor_listen:[163,167,226],sensor_lock:163,sensor_mag_data:163,sensor_mgr_compare_func_t:168,sensor_mgr_evq_get:168,sensor_mgr_find_next:168,sensor_mgr_find_next_bydevnam:[168,226],sensor_mgr_find_next_bytyp:168,sensor_mgr_lock:168,sensor_mgr_match_bytyp:168,sensor_mgr_put_interrupt_evt:168,sensor_mgr_put_notify_evt:168,sensor_mgr_put_read_evt:168,sensor_mgr_regist:[163,165,168],sensor_mgr_unlock:168,sensor_mgr_wakeup_r:[168,226],sensor_nam:221,sensor_notifi:[163,169],sensor_notifier_func_t:163,sensor_notify_ev_ctx:168,sensor_o:[170,220,221,222,225,226],sensor_offset:221,sensor_oic_init:[168,170,220],sensor_oic_obs_r:[170,225],sensor_oic_tx_trigg:168,sensor_pkg_init:163,sensor_press_data:163,sensor_quat_data:163,sensor_read:[163,167],sensor_read_ev_ctx:163,sensor_read_func_t:[163,165],sensor_register_err_func:167,sensor_register_listen:[167,226],sensor_register_notifi:169,sensor_set_config_func_t:163,sensor_set_driv:[163,165],sensor_set_interfac:[163,165],sensor_set_n_poll_r:168,sensor_set_notification_t:163,sensor_set_poll_rate_m:[163,168,226],sensor_set_thresh:168,sensor_set_trigger_thresh_t:163,sensor_set_type_mask:[163,165],sensor_shel:221,sensor_shell_regist:168,sensor_temp_data:163,sensor_thresh_algo_userdef:163,sensor_thresh_algo_watermark:163,sensor_thresh_algo_window:163,sensor_timestamp:163,sensor_trigger_cmp_func_t:163,sensor_trigger_init:168,sensor_trigger_notify_func_t:[163,168],sensor_type_acceleromet:[163,164,165,224,226],sensor_type_al:163,sensor_type_altitud:163,sensor_type_ambient_temperatur:163,sensor_type_color:163,sensor_type_eul:[163,165,224],sensor_type_grav:[163,165,224],sensor_type_gyroscop:[163,165,224],sensor_type_light:163,sensor_type_linear_accel:[163,165,224],sensor_type_magnetic_field:[163,165,224],sensor_type_non:163,sensor_type_pressur:163,sensor_type_proxim:163,sensor_type_relative_humid:163,sensor_type_rotation_vector:[163,165,224],sensor_type_t:[163,165,167,168,226],sensor_type_temperatur:[163,165],sensor_type_trait:[163,168],sensor_type_user_defined_1:163,sensor_type_user_defined_2:163,sensor_type_user_defined_3:163,sensor_type_user_defined_4:163,sensor_type_user_defined_5:163,sensor_type_user_defined_6:163,sensor_type_weight:163,sensor_unlock:163,sensor_unregister_listen:[167,226],sensor_unregister_notifi:169,sensor_unset_notification_t:163,sensor_value_type_float:[163,165],sensor_value_type_float_triplet:[163,165],sensor_value_type_int32:163,sensor_value_type_int32_triplet:163,sensor_value_type_opaqu:163,sensor_value_type_temperatur:165,sensorapi:163,sensornam:[163,164,165,166,221,224,226],sensorname_cli:165,sensorname_ofb:221,sensors_o:222,sensors_test:[74,220,221,223,224,225],sensors_test_config_bno055:224,sent:[33,41,117,149,152,155,172,188,190,204],sentenc:75,sep:[4,95],separ:[14,18,28,33,38,47,48,63,64,79,115,121,159,162,173,174,188,191,192,193,196,197,199,200,204],seper:233,septemb:223,sequenc:[27,105,115,117,141,223],sequenti:141,seri:[115,139,153,190,236],serial:[15,17,21,79,100,115,116,117,119,120,121,127,144,149,152,174,196,200,201,203,204,205,218,220,221,222,230,231],serror_stat:174,serv:[31,68,106,127,166,173,220],server:[11,14,27,29,31,33,39,43,44,120,166,167,170,173,190,204,217,220,222,225,226],servic:[14,29,30,39,40,41,43,44,105,109,121,143,179,186,187,188,189,211,213,218,220],service_data_uuid128:[39,41],service_data_uuid16:41,service_data_uuid32:[39,41],service_uuid128:[29,30],sesnor:226,session:[11,51,52,60,68,70,71,72,74,106,193,196,197,199,200,233],set:[1,2,7,8,9,11,13,14,15,16,17,23,25,28,29,30,32,33,35,36,39,40,41,44,45,47,49,50,52,63,66,68,69,71,72,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,97,98,99,102,109,110,111,112,113,115,116,117,121,122,132,139,141,143,148,149,151,152,154,155,156,161,164,166,168,170,171,172,173,174,178,180,184,187,188,191,192,193,194,196,197,198,199,200,203,204,205,207,208,210,211,212,213,214,217,219,221,222,223,225,226,228,229,231,232,233],setting1:175,setting2:175,settl:37,setup:[10,70,72,73,84,93,95,96,165,173,183,184,194,195,201,203,217,218,219,221,223,226,228,229,230,231,232],sever:[3,14,33,35,39,43,74,106,107,109,113,115,162,173,176,179,190,191,192,198,199,212],sgd:163,sgrd:163,sha256:115,sha:115,shadow:116,shall:[14,28,36,39,41,163],share:[4,25,34,101,102,104,105,111,173,205,212],shdr:174,sheet:165,shell:[1,7,8,14,42,43,68,72,93,109,116,117,124,125,162,166,168,174,175,176,180,194,201,204,207,208,218,220,221,222,223,228,233],shell_cmd:[172,218],shell_cmd_argc_max:[172,204],shell_cmd_func_t:172,shell_cmd_h:172,shell_cmd_help:[172,208],shell_cmd_regist:[172,218],shell_command:172,shell_compat:172,shell_complet:172,shell_evq_set:172,shell_init:[172,176],shell_max_compat_command:172,shell_max_input_len:125,shell_max_modul:172,shell_modul:172,shell_nam:172,shell_newtmgr:[172,201],shell_nlip_input_func_t:172,shell_nlip_input_regist:172,shell_nlip_output:172,shell_os_modul:[172,208],shell_param:172,shell_prompt_function_t:172,shell_prompt_modul:[172,195],shell_regist:172,shell_register_app_cmd_handl:172,shell_register_default_modul:172,shell_register_prompt_handl:172,shell_stack:125,shell_task:[172,175,176,195,201,208,218,221,226],shell_task_init:125,shell_task_prio:125,shell_task_prior:175,shell_task_stack_s:125,shield:105,shift:[11,43],ship:[6,21],shortcut:11,shorten:186,shorter:181,shorthand:[102,212],shot:204,should:[4,8,11,13,14,16,19,21,28,29,30,32,38,42,45,68,70,72,74,94,97,98,99,100,102,103,106,109,110,111,112,113,115,116,117,121,124,125,127,133,137,139,141,143,144,149,152,154,155,156,159,161,162,165,168,172,174,176,180,181,184,186,187,188,189,191,192,193,195,196,197,198,199,200,204,207,210,211,212,215,218,219,220,221,224,226,229,232,233,234],shouldn:17,show:[1,4,5,6,7,8,10,11,14,20,39,40,44,49,52,53,56,63,66,70,71,72,73,74,75,85,93,94,95,96,102,112,116,117,155,162,173,175,176,178,179,180,184,190,193,194,195,196,197,198,199,200,201,203,204,205,207,211,217,218,219,220,221,222,223,224,225,226,228,229,230,232,233,234,236],show_bug:25,shown:[6,7,11,56,68,74,102,105,115,122,154,165,174,180,188,193,196,204,210,212,214,219,221,224,226,230],si_addr:[163,164],si_cs_pin:163,si_num:[163,164],si_typ:[163,164],sibl:[10,213],sid:39,side:[11,24,42,43,116,218],sierra:[71,94],sig:[33,41,44],sigh:223,sign:[6,13,50,59,60,70,71,72,93,163,181,184,194],signal:[33,38,41,43,112,152,189],signatuar:11,signatur:[39,59,115],signifi:149,signific:[32,102,152,173,204],significantli:[23,44],signigic:102,silenc:117,silent:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,117,176],silicon:45,sim1:[229,230,232],sim:[6,7,74,107,218,229,231,232],sim_slinki:[175,230],similar:[1,8,11,21,105,106,162,164,184,204,210,219],similarli:[102,162],simpl:[11,33,43,74,98,102,105,106,111,112,114,116,119,121,138,143,174,180,185,186,191,192,195,207,219,226,228],simplehttpserv:[26,46,76],simpler:[106,190],simplest:[102,229,232],simpli:[6,13,18,100,102,103,111,112,117,143,173,180,182,187,193,207,217,218],simplic:[115,191,192],simplifi:[15,33,100,103,149],simul:[2,3,5,6,63,207,226,230],simultaen:102,simultan:[14,39,41,42],simultaneosli:139,sinc:[3,14,15,17,33,36,45,74,102,105,106,111,113,115,116,152,172,174,181,183,184,191,192,193,195,203,207,211,212,217,218,219,220],singl:[2,3,7,14,17,34,52,60,68,70,71,72,100,102,111,112,115,116,121,139,141,162,163,165,174,176,185,186,190,191,210,212],sissu:153,sit:[27,31,121,143,173],site:[72,95,185,196,200],situat:[105,173],six:[34,35],size:[9,21,28,29,30,33,39,41,52,68,70,71,72,74,86,90,100,102,103,106,112,113,114,115,116,117,119,122,141,146,152,162,173,174,175,176,179,193,197,199,201,204,207,209,222],size_t:[139,140,161],sizeof:[102,116,123,139,164,186,188,189,192,207,217,218,219],skelet:184,skeleton:[7,57,63,180,183,184,193,196,197,198,199,200,204,211,219,229,230,232],skip:[6,10,60,72,115,127,129,162,193,196,197,198,199,200,211,229,232],sl_arg:[167,226],sl_func:[167,226],sl_next:167,sl_sensor_typ:[167,226],slad:163,slave:[17,39,41,149,152],slave_interval_rang:41,sld:163,sleep:[9,98,100,102,104,111,112,113,144,195,205,207],slightli:[109,173],slink:[229,230,232],slinki:[7,58,74,117,139,173,175,176],slinky_o:[7,74],slinky_sim:175,slinky_task_prior:175,slist_entri:[139,140,163,167],slist_head:[104,163,178],slos854c:223,slot0:115,slot1:115,slot:[7,15,19,33,74,84,157,173,184,187,193,195,196,197,198,199,200,203,204,208,211,218,221,226,229,232,233,234],slower:[3,109,110],small:[33,36,102,113,117,121,139,173,174,190,197,210,219],smaller:[21,102,119,156,173,193],smallest:102,smart:[43,44,68,74,218,225],smarter:213,smd:163,smp:[33,43],snapshot:[56,196,200,213],snip:[1,49,56,68,74,183,184,201,219],snippet:188,snm_name:174,snm_off:174,soc:[19,109],socket:2,soft:[77,93,94,95,153],softwar:[1,3,4,6,43,51,55,60,63,109,110,115,143,179,193,196,198,199,203,211,212,218,219,221,226,229,233],solder:218,solut:[68,143,191,192],solv:[115,173],some:[1,8,11,14,15,17,18,25,42,77,89,102,103,105,106,109,111,112,114,115,117,123,127,138,139,141,144,152,155,162,168,175,178,180,185,186,187,188,189,191,192,195,196,197,200,201,204,207,208,210,211,212,218,223,226,229,232,233,234,236],somebodi:[116,218],somehow:74,someon:[13,17,98,219],someth:[14,19,20,21,24,25,33,180,183,184,211,214,217,233],sometim:[116,193,211,233],somewhat:[105,115],somewher:[14,115,173,219],soon:[27,43,213],sooner:156,sophist:207,sort:187,sought:162,sound:15,sourc:[1,4,9,26,36,43,63,69,71,73,74,92,94,96,102,109,115,116,121,165,166,176,178,185,193,196,197,199,205,211,212,213,219,226,228,232],space:[11,14,43,47,48,63,64,79,102,109,127,128,141,149,157,160,172,173,174,183,191,194,211,228,231,236],spare:19,spd:163,spec:[14,28,33],specfi:221,special:[8,102,109,122,173,190,191,192,210,211,212,213,221],specif:[10,18,19,21,27,33,34,35,41,43,44,70,71,72,74,75,98,100,102,103,105,106,108,109,113,115,119,121,137,139,141,143,148,149,151,152,153,154,155,157,162,163,165,168,173,176,178,184,186,188,189,191,192,193,199,201,204,207,210,211,212,218,219,229,232],specifi:[1,4,6,7,10,11,16,20,21,24,27,28,29,30,33,39,42,47,48,50,52,54,56,58,59,63,64,66,68,70,71,72,74,78,79,80,81,82,83,84,85,86,87,88,89,90,97,99,100,102,103,106,109,110,112,113,114,117,119,120,137,144,146,148,149,157,162,163,164,165,166,167,168,170,171,172,175,178,183,186,188,189,190,191,192,193,198,199,201,203,208,211,212,213,214,219,221,225,226,229,232,233],spectrum:43,speed:[9,43,155,193,196,197,198,204,219,233],spew:211,sphinx:[26,46,76],spi:[8,19,43,109,121,122,123,148],spi_cfg:[122,123],spi_miso_pin:[122,123],spi_mosi_pin:[122,123],spi_num:[122,123,152],spi_sck_pin:[122,123],spi_ss_pin:[122,123],spi_typ:152,spitest:[7,74],split:[7,15,84,106,153,175,203,218,219,229,230,232],split_app:7,split_app_init:176,split_config:[229,230],split_elf_nam:74,split_file_test:210,split_load:176,splitti:[7,74,173,175],spot:106,spread:43,spuriou:210,sqd:163,squar:149,sram:199,src:[6,7,10,14,24,25,58,63,68,74,83,93,95,102,106,108,121,142,143,146,150,151,153,159,176,178,181,183,193,196,197,198,199,200,204,207,210,211,217,218,219,221,224,226,229,230,232],src_off:102,srhd:163,ss_op_wr:188,ss_pin:[122,123],ssec:39,st_cputim:226,st_ostv:226,stabil:[212,213],stabl:[1,7,70,71,93,94,212,213],stack:[1,9,14,15,22,27,28,29,30,31,36,38,39,42,43,68,90,98,100,102,105,112,146,173,176,182,183,184,185,186,188,189,190,204,218],stack_bottom:112,stack_siz:[110,112],staff:[93,94],stage:[110,115,121,163,164,173,176],stai:23,stailq_entri:[162,174],stale:[2,193],stand:[14,21,102],standalon:[21,173],standard:[7,43,44,113,119,120,121,122,138,139,143,186,191,192,204,217,218],standard_accel_grav:163,standbi:[43,157,223],start:[2,4,8,9,11,13,14,19,21,27,28,38,39,40,42,51,60,72,75,84,95,99,101,102,103,104,105,106,108,112,115,121,124,127,128,130,133,139,146,149,150,152,153,154,155,156,162,168,173,176,180,182,183,186,193,194,195,196,197,199,200,203,204,207,210,212,217,218,219,220,221,222,224,226,230,234,236],start_handl:[29,30],starter:181,startup:[29,30,32,38,42,43,115,173,176,191,192,207,223],startup_stm32f40x:[197,199],stash:62,stat:[1,7,25,77,91,93,94,95,118,119,176,183,201,204,208,218,219,226,233],state:[6,15,17,18,28,29,30,38,43,44,65,68,98,100,106,110,112,113,120,127,143,144,148,161,193,199,203,205,207,213,215],statement:[10,17,176,201],statist:[1,61,77,86,89,90,93,94,95,177,204,229,230,232,233],stats_clear:174,stats_cli:[1,208],stats_get:174,stats_group_find:174,stats_group_walk:174,stats_group_walk_func_t:174,stats_hdr:[165,174],stats_inc:174,stats_incn:174,stats_init:[165,174],stats_init_and_reg:174,stats_module_init:176,stats_my_stat_sect:174,stats_nam:[1,50,51,89,165,174],stats_name_end:[165,174],stats_name_init_parm:[165,174],stats_name_map:174,stats_name_map_nam:174,stats_name_start:[165,174],stats_newtmgr:[1,175,176,201],stats_nmgr_register_group:174,stats_regist:[165,174],stats_reset:174,stats_sect_decl:[162,165,174],stats_sect_end:[165,174],stats_sect_entri:[165,174],stats_sect_entry16:174,stats_sect_entry32:174,stats_sect_entry64:174,stats_sect_start:[165,174],stats_sect_var:174,stats_shell_regist:174,stats_size_16:174,stats_size_32:[165,174],stats_size_64:174,stats_size_init_parm:[165,174],stats_walk:174,stats_walk_func_t:174,statu:[10,13,29,30,33,123,139,163,173,187,189,191,193,203,204,218,223,229,230,232],std:163,stderr:159,step:[2,4,6,7,11,60,68,70,72,93,95,105,106,107,115,117,149,164,173,174,183,184,191,192,193,196,197,198,199,200,204,211,212,219,229,230,232],sterli:213,sterlinghugh:213,stic:[188,190],still:[5,14,72,79,99,109,110,117,168,187,219,228,233],stitch:1,stksz:[90,229,232],stkuse:[90,229,232],stlink:197,stm32:[148,197,199,232],stm32_boot:232,stm32_slinki:232,stm32f2x:197,stm32f303vc:[180,181],stm32f3discoveri:180,stm32f4:[121,122,123,194],stm32f4_adc_dev_init:121,stm32f4_hal_spi_cfg:[122,123],stm32f4disc_blinki:197,stm32f4disc_boot:197,stm32f4discoveri:[66,197],stm32f4discovery_debug:197,stm32f4x:197,stm32f4xx:148,stm32f4xxi:148,stm32l072czy6tr_boot:25,stm32serial:232,stm32x:197,stm34f4xx:148,stm:232,stmf303:180,stmf3:180,stmf3_blinki:[180,181],stmf3_boot:[180,181],stop:[2,28,39,97,99,127,137,149,150,154,155,169,186,211,221],stopbit:155,storag:[19,28,33,116,127,162,184,212],store:[1,10,14,19,25,28,34,39,44,47,48,50,63,68,70,72,74,93,98,100,102,113,116,117,127,134,152,157,160,161,162,174,183,186,188,189,212,218,219,220,223,226,228],stori:102,str:[116,117,155,161,178],straight:[186,218],straightforward:[183,219],strategi:207,strcmp:[116,218],stream:[43,161,162],strength:41,strict:[188,193],strictli:[141,219],string:[1,21,39,41,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,114,116,117,120,126,139,153,157,159,160,161,162,168,172,174,176,191,192,210,212,213,217,218,219,230],strip:[59,102],strlen:[186,188],strongli:139,struct:[14,25,27,28,29,30,97,98,99,100,102,103,104,105,106,110,111,112,113,115,116,117,121,122,123,127,128,129,130,131,132,133,134,135,136,137,140,141,142,144,147,149,152,154,157,159,160,161,162,163,164,165,167,168,169,172,174,178,186,188,189,190,191,192,195,205,207,210,217,218,219,224,226],structur:[7,10,11,28,31,40,68,74,91,97,100,102,103,104,105,106,111,112,115,116,117,121,123,133,149,154,159,160,162,164,165,166,174,188,194,210,211,218,219,224,228,231,236],struggl:16,strutur:102,stt:[163,168],stub:[25,74,114,162,191,192,195,205,210,218,219],stuctur:163,studio:[5,12],stuff:212,style:117,sub:[40,56,58,63,83,84,85,88,89,121,192,215],subcommand:[58,63,75,77,79,83,84,85,88,89],subcompon:43,subdirectori:[2,178,210],subfold:196,submit:10,submodul:18,subrang:33,subscrib:[14,29,30,40,187,189,219],subscript:28,subsequ:[14,28,34,43,115,173,186,189,210],subset:[34,163,165,168,221],substitut:[6,183,184],subsystem:[42,72,100,116,117,122,123,172],subtract:[111,113],subtre:116,succ:28,succe:[28,210],succeed:223,succesfulli:[181,183,184,187,193,195,196,197,198,199,200,203,204,211,218,221,223,226,229,232,233,234],success:[3,14,27,28,29,30,33,68,97,99,102,103,105,110,112,113,116,123,128,129,130,131,132,133,135,136,137,140,144,148,149,152,154,155,156,159,162,163,167,168,169,172,178,180,181,188,190,199,204,210],successfuli:[106,210,226],successfulli:[7,25,33,68,103,106,110,162,163,173,180,181,183,184,187,189,191,192,193,196,197,198,199,200,201,203,204,211,218,219,220,221,222,223,226,229,230,232],sucess:168,sudo:[4,6,7,10,70,71,73,93,96,184],suffici:[14,102,103],suffix:210,suggest:[3,6,14,72,168,179,208,236],suit:[6,68,178,183,209],suitabl:[14,33,106,141],suite_nam:178,summar:[106,173],summari:[6,10,32,49,172,192],supervis:28,supervision_timeout:[28,42,187],supplement:[41,186],supplementari:106,suppli:[28,29,30,153,162,210],supplier:223,support:[1,3,4,6,7,11,15,17,19,21,24,27,29,30,32,33,34,41,42,43,45,66,71,79,94,99,105,106,108,114,115,117,119,120,121,122,123,138,144,148,152,161,162,163,164,165,168,172,173,174,176,183,184,185,186,190,191,193,194,196,203,205,211,212,213,218,222,223,228,230,231,236],suppos:[14,56,104,111,148,174],suppress:230,suppresstasknam:11,sure:[2,7,8,10,14,18,19,25,29,30,70,102,160,183,184,186,188,193,195,204,210,212,217,219],suspend:221,svc:[29,30,190],svc_uuid:[29,30],sw_rev:221,swap:[2,98,106,141,142,173,193,223,233],swclk:193,swd:[193,196,197,198,199,200,204,211,219,226],swdio:193,swim:197,swo:[196,211,226],symbol:[4,7,11,14,74,173,193,197,226,233,234],symlink:[73,96],sync:[27,33,37,52,70,71,72],sync_cb:[38,191,192],synchron:[27,33,52,62,70,71,72,109,111,121,152],syntax:[14,18,176,204,208,221],synthes:36,sys:[1,7,24,25,68,70,74,116,117,118,142,162,172,174,175,176,183,195,201,205,210,211,218,219,221,226,234],sys_:102,sys_config:173,sys_config_test:7,sys_console_ful:173,sys_einv:[165,226],sys_enodev:165,sys_flash_map:[197,199],sys_log:173,sys_mfg:[7,193,196,197,198,199,221,229,232],sys_shel:173,sys_stat:173,sys_sysinit:[7,193,196,197,198,199,200,221,229,232],syscfg:[14,16,24,35,36,45,50,51,63,74,106,110,116,117,139,141,164,165,166,168,170,171,172,174,175,184,193,195,196,201,203,204,208,210,211,218,219,221,222,223,225,226,233,234],sysclock:23,sysconfig:[116,201],sysflash:[193,199],sysinit:[7,37,38,105,112,117,158,164,176,191,192,193,195,204,205,210,211,218,219,226],sysinit_assert_act:176,sysinit_panic_assert:[164,165,176],sysresetreq:193,system:[1,3,6,8,9,14,18,19,37,52,63,70,71,72,74,75,99,102,103,106,109,110,112,113,114,115,116,117,118,127,141,144,148,152,155,157,158,162,168,173,174,179,183,184,193,195,196,199,204,207,208,211,212,213,218,226,234],system_l:148,system_stm32f4xx:[197,199],systemview:236,sysview:[234,235],sysview_mynewt:234,sytem:150,syuu:72,t_arg:112,t_arrai:161,t_boolean:161,t_charact:161,t_check:161,t_ctx_sw_cnt:112,t_flag:112,t_func:[112,207],t_ignor:161,t_integ:161,t_name:112,t_next_wakeup:112,t_obj:112,t_object:161,t_prio:[98,112],t_real:161,t_run_tim:112,t_sanity_check:112,t_stackptr:112,t_stacksiz:112,t_stacktop:112,t_string:161,t_structobject:161,t_taskid:112,t_uinteg:161,tab:[42,49],tabl:[14,32,33,106,115,118,138,140,176,188,190,204,221],tag:213,tail:102,tailq_entri:154,take:[6,7,14,17,19,29,30,35,58,63,68,75,102,105,116,128,157,160,173,174,186,188,189,190,191,192,207,210,217,219],taken:[7,16,28,74,100,105,188,212,213,217],talk:[21,184,186,223,230],tap:[4,69,92],tar:[4,70,71,72,73,94,95,96],tarbal:4,target:[3,4,5,7,11,14,20,24,25,37,41,45,47,48,49,50,51,52,55,56,59,60,61,66,68,70,71,72,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,109,116,157,163,173,174,175,176,178,182,191,192,194,203,207,208,210,218,220,222,225,231],target_nam:47,targetin:[191,192],task1:[105,110,229,232],task1_evq:110,task1_handl:105,task1_init:105,task1_prio:105,task1_sanity_checkin_itvl:110,task1_sem:105,task1_stack:105,task1_stack_s:105,task2:[105,229,232],task2_handl:105,task2_init:105,task2_prio:105,task2_sem:105,task2_stack:105,task2_stack_s:105,task:[9,10,14,27,28,68,77,90,93,94,95,97,98,100,102,103,104,105,106,108,109,111,113,117,121,124,126,168,172,176,178,188,195,201,204,206,217,218,220,224,226,229,230,232,236],task_l:205,task_prior:[175,176],tasknam:11,taskstat:[77,91,93,94,95,118,120,201,229,232],taught:223,tbd:190,tc_config:178,tc_current_config:178,tci_cur_tv:113,tci_cur_tz:113,tci_newly_sync:113,tci_prev_tv:113,tci_prev_tz:113,tck:193,tcp:[193,197],tdi:193,tdo:193,teach:207,team:[4,143],technic:[13,180,223],technolog:[43,122],tee:[1,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75],teh:163,telee02:204,telee02_boot:204,telemetri:191,telenor:204,teli:[191,192],tell:[15,17,19,21,42,68,127,155,157,161,163,173,174,176,180,186,188,191,192,199,213,217],telnet:[211,218,226,233],tem:221,temperatur:[139,163,221],templat:[7,58,183,210,217,218,226],temporari:[33,110,115],temporarili:[104,110],ten:152,term:[3,28,115,121,139,148,151,212],termin:[2,4,7,8,10,11,13,14,28,29,30,33,39,43,72,95,116,117,139,141,172,184,186,189,190,193,195,196,197,198,199,200,204,211,218,224,226,233],terribl:[7,183],test:[4,6,11,14,20,28,52,63,70,71,72,77,80,84,88,93,94,95,115,117,118,143,165,166,173,176,178,184,190,191,192,193,195,196,198,201,209,212,217,219,230,233,236],test_assert:[178,210],test_assert_fat:[178,210],test_assert_ful:178,test_cas:[178,210],test_case_decl:178,test_case_defn:178,test_case_task:178,test_datetime_parse_simpl:210,test_datetime_suit:210,test_json:210,test_json_util:210,test_pass:178,test_project:57,test_suit:[178,210],test_suite_decl:178,test_suite_regist:178,test_task_handl:178,test_task_nam:178,testbench:[7,74],testcas:[7,210],testnam:88,testutil:[7,142,210],text:[52,61,82,102,117,139,172,173,197,229,232],textual:1,tgt:116,tgz:[4,72,95],than:[3,7,14,17,21,24,27,28,33,41,85,102,104,105,106,109,111,112,113,114,115,119,139,152,156,162,168,172,173,175,184,190,191,192,196,207,219,226,233],thank:42,thee:109,thei:[1,6,14,15,18,33,41,42,74,97,100,102,103,105,106,111,112,115,116,121,154,173,174,176,178,179,181,186,187,188,190,191,192,204,208,210,212,213,215,217,221],their_key_dist:39,them:[2,9,14,25,29,30,68,102,106,111,112,127,157,173,174,176,184,186,191,192,193,207,210,211,212,219,220,223,236],themselv:[102,105,190],theori:[14,68,176],therebi:[111,127],therefor:[33,103,115,135,139,207,214],thi:[1,2,3,4,5,6,7,8,9,10,11,13,14,17,19,20,21,25,26,27,28,29,30,31,33,34,35,36,37,38,39,41,42,43,44,45,46,47,54,56,65,66,68,70,71,72,73,74,76,77,79,84,85,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,121,122,123,124,125,127,128,129,130,133,139,140,141,142,143,144,145,146,147,148,149,150,152,154,155,156,157,158,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,208,210,211,212,213,214,217,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,236],thing:[1,14,16,17,21,24,36,38,43,68,74,103,106,109,110,121,149,163,173,191,192,210,213,217,218,219,224,226],thingi:[164,233,234],thingy_boot:226,thingy_debug:[226,233,234],thingy_my_sensor:226,think:[13,19,115,219],third:[6,32,113,184,186,193,211,219],thoough:178,thorough:213,those:[1,14,24,44,45,52,68,70,71,72,74,106,109,115,124,128,173,179,213,217,218,219,223],though:[17,102,115,149,168,173],thought:[19,219],thread:[9,113,183,193,197,199],three:[2,10,24,28,32,72,74,102,115,117,162,173,174,176,183,185,186,192,193,199,204,205,207],threshold:[163,168],through:[8,23,28,35,43,74,75,102,112,115,120,127,133,138,139,141,143,152,161,168,185,187,189,192,193,195,199,201,210,211,217,219,222,223,225,228],throughout:[1,106,210],throughput:[14,43],thrown:6,thu:[14,102,106,111,115,121,141,148,149,152,207],tick:[17,23,97,99,104,109,110,111,113,117,149,154,172,195,196,207,226],ticker:97,ticket:13,tickl:[110,156],tid:[90,229,232],tie:173,tied:[14,139],ties:[102,183],time:[1,7,9,10,11,14,19,21,29,30,32,33,34,37,39,43,44,47,56,70,71,72,73,74,90,95,96,97,100,102,105,106,109,110,111,112,115,117,123,127,138,143,156,162,163,169,172,173,174,179,181,183,186,188,190,191,192,196,198,204,205,207,210,211,217,218,219,221,223,226,228,233],time_datetim:[173,226],time_datetime_test:210,time_in_flight:102,timelin:14,timeout:[17,28,33,39,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,100,104,111,149,163,203,218],timer:[17,23,36,97,99,100,106,110,143,151,156,168,226],timer_0:36,timer_4:204,timer_5:36,timer_ev_cb:[195,226],timer_interrupt_task:205,timer_num:154,timestamp:[85,163],timev:113,timezon:[113,210],timo:100,timo_func:97,timtest:[7,74],ting:[191,192],tini:[199,232],tinycbor:[7,220],tinycrypt:[7,24],tinyprintf:114,tip:110,titl:[8,231],tlm:191,tlv:[39,115],tmp:[70,72,93,95,173],tmpstr:226,tmr:154,todo:[74,121,191,192],togeth:[1,56,68,74,102,124,173,187,199,219],togetherth:24,toggl:[7,112,148,195,205,207],token:[88,105,111,172,214],told:157,too:[28,33,102,105,113,121,144,175],took:197,tool:[1,2,3,5,6,7,9,11,12,14,15,18,21,52,67,70,71,74,75,76,79,91,92,93,94,105,106,107,109,120,121,174,175,176,178,180,182,183,184,193,194,199,201,203,204,205,208,210,211,212,213,214,219,220,226,228,230,231,233,234,236],toolbox:2,toolchain:[2,3,5,7,11,25,26,46,72,76,184,194,201,203,211,228,231,236],toolkit:3,tools_1:[70,71,94],top:[1,11,13,18,27,48,74,102,112,121,141,149,162,175,184,191,192,210,219],topic:1,total:[9,29,30,68,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,102,112,114,115,162,196,198,204,219],tour:185,track:[32,34,43,113,115],tradeoff:173,trail:[102,115],trailer:115,trait:[163,168],transact:[33,149,152],transfer:[17,34,152,218],transit:115,translat:[148,191],transmiss:[33,39,152,155,204],transmit:[14,41,44,117,149,152,168,204],transmitt:155,transport:[33,39,43,93,117,120,176,183,184,193,197,203,218,219,220,222,225,228],travers:[102,116,139],traverse_dir:139,treat:[25,127],tree:[1,6,7,19,63,68,74,106,139,183],tri:[3,77,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,116,123,175,204],trial:106,tricki:112,trig:148,trigger:[6,13,23,100,148,163,168,223],trim:102,trip:110,triplet:163,trng_test:74,troubleshoot:[18,174,175],truncate_test:210,trust:[34,39,218],ts_case_fail_arg:178,ts_case_fail_cb:178,ts_case_pass_arg:178,ts_case_pass_cb:178,ts_case_post_arg:178,ts_case_post_test_cb:178,ts_case_pre_arg:178,ts_case_pre_test_cb:178,ts_config:178,ts_current_config:178,ts_print_result:178,ts_restart_arg:178,ts_restart_cb:178,ts_suit:178,ts_suite_complete_arg:178,ts_suite_complete_cb:178,ts_suite_init_arg:178,ts_suite_init_cb:178,ts_suite_nam:178,ts_system_assert:178,ts_testsuite_list:178,tt_chr_f:190,tt_svc_type_p:190,ttl:[184,232],tty:[8,195,211,221,229,232],ttys002:79,ttys003:79,ttys005:230,ttys012:[229,232],ttys10:8,ttys2:[8,195,211,221,229,232],ttys5:8,ttyusb0:[21,79,184],ttyusb2:[8,211,229,232],ttyusb:[8,195,211,221,229,232],tu_any_fail:[178,210],tu_case_complet:178,tu_case_fail:178,tu_case_fail_assert:178,tu_case_idx:178,tu_case_init:178,tu_case_jb:178,tu_case_nam:178,tu_case_pass:178,tu_case_pass_manu:178,tu_case_post_test:178,tu_case_pre_test:178,tu_case_report:178,tu_case_report_fn_t:178,tu_case_set_init_cb:178,tu_case_set_post_cb:178,tu_case_set_pre_cb:178,tu_case_write_pass_auto:178,tu_init_test_fn_t:178,tu_post_test_fn_t:178,tu_pre_test_fn_t:178,tu_restart:178,tu_start_o:178,tu_suite_complet:178,tu_suite_fail:178,tu_suite_init:178,tu_suite_nam:178,tu_suite_post_test:178,tu_suite_pre_test:178,tu_suite_regist:178,tu_suite_restart_fn_t:178,tu_suite_set_complete_cb:178,tu_suite_set_fail_cb:178,tu_suite_set_init_cb:178,tu_suite_set_pass_cb:178,tu_suite_set_post_test_cb:178,tu_suite_set_pre_test_cb:178,tu_testsuite_fn_t:178,tupl:113,turn:[17,36,121,143,144,148,173,183,184,194,195,198,201,212,213,221,229],tutiori:[86,89],tutori:[2,3,6,7,8,11,18,35,43,72,90,164,165,170,171,172,178,180,182,183,184,185,186,187,188,189,190,191,192,193,195,196,197,198,199,200,201,203,204,205,207,210,211,218,219,220,221,222,223,224,225,226,229,230,232],tv_sec:[113,210,226],tv_usec:[113,210,226],tvp:113,tweak:138,twi:17,two:[2,3,11,14,21,31,32,34,35,39,43,44,56,58,63,68,74,79,102,103,104,105,106,108,112,113,115,117,119,141,149,162,163,172,173,174,175,176,180,183,184,186,188,191,192,193,195,196,197,198,199,200,201,204,205,207,210,211,212,213,214,215,219,220,221,225,226,229,232],tx_data:218,tx_done:155,tx_func:155,tx_len:218,tx_off:218,tx_phy:28,tx_phys_mask:[28,39],tx_power_level:[39,41],tx_time_on_air:204,txbuf:152,txd:204,txom:[29,30],txpower:204,txrx:152,txrx_cb:152,txt:[25,83,139,234],type:[1,7,8,10,11,13,14,19,21,25,28,29,30,32,33,35,39,41,42,44,52,56,58,59,66,68,70,71,72,74,79,97,102,103,106,109,112,115,116,117,120,148,152,155,161,162,164,167,170,172,175,176,180,183,184,186,187,188,189,190,191,193,196,197,198,199,203,204,205,207,210,211,212,213,214,217,218,219,224,225,226,229,230,232,233,234],typedef:[28,29,30,38,100,103,110,112,113,116,117,127,137,148,152,154,155,161,162,163,168,172,174,178],typic:[3,9,27,38,43,44,68,74,102,105,106,107,110,115,117,121,141,143,145,148,149,152,162,163,173,174,176,178,186,191,192,210],tz_dsttime:[113,210],tz_minuteswest:[113,210],u8_len:123,uart0:[117,230],uart:[7,8,14,43,68,109,117,121,150,183,184,196,197,198,199,200,201,204,218,226,233],uart_bitbang:[150,196],uart_flow_control_non:117,uart_hal:[7,197,198,199],uart_rx_char:155,uartno:218,ubuntu:[4,6,7,70,93],uci:35,udev:197,udiv:28,udp:79,uext:232,uicr:35,uid:191,uint16:[39,40],uint16_max:39,uint16_t:[14,28,29,30,33,102,103,104,110,111,112,115,122,127,128,149,152,161,162,163,174,188,217,218,219],uint32:[39,84],uint32_max:39,uint32_t:[99,102,103,112,113,115,122,127,135,139,140,141,144,146,149,151,152,154,156,162,163,165,168,174],uint64:39,uint64_t:[28,161],uint8:39,uint8_max:39,uint8_t:[28,29,30,35,45,100,102,103,104,106,110,112,115,117,121,122,127,135,139,140,141,144,146,147,149,152,155,161,162,163,165,174,186,188,191,192,218,219],uinteg:161,ultim:188,umbrella:173,unabl:[2,24,193,196,197,200],unaccept:33,unadorn:33,unam:2,unc_t:172,unchang:106,uncoded_param:28,unconfigur:162,unconfirm:204,und:[39,42],undefin:[95,144,176],under:[4,7,10,11,13,15,28,33,38,47,68,74,84,114,116,121,172,190,193,197,198,200,218,219],underli:[109,121,127,139,142,143,152,163],understand:[7,19,113,163,173,179,180,203,204,212,219,223],underwai:115,undesir:105,undirect:[28,39,186],unexpect:[28,29,30,33,139],unexpectedli:[33,210],unfortun:14,unicast:44,unicod:138,unidirect:39,unifi:121,uniform:[41,72],uniformli:75,uninstal:7,unint32:84,uninterpret:176,union:[28,29,30,161,163,188],uniqu:[9,32,45,106,144,162,174,175,176,191,204],unit:[1,7,14,28,33,39,52,64,70,71,72,97,112,115,176,210,236],unittest:[7,58,68,74,176,183,210,218],univers:[19,155],unix:[2,72,139,180],unknown:[33,149,175],unlabel:218,unless:[28,39,112,115,141,149,157,176,218,219],unlicens:43,unlik:[33,103,210],unlink:[71,73,94,96],unlink_test:210,unlock:[163,168],unmet:106,unpack:[70,72],unpair:28,unplug:200,unprovis:44,unread:162,unrecogn:25,unregist:[28,103,113,167],unresolv:[143,210],unrespons:33,unset:[63,115,163],unsign:[28,112,161,174,200,226],unspecifi:[33,55],unstabl:[70,71,93,94],unsuccess:149,unsupport:[33,190],unsync:38,untar:4,until:[14,33,38,74,99,100,102,105,111,113,117,127,149,152,155,163,186,191,192,204,212],unuesd:189,unus:[84,127,217,219],unwritten:[115,146],updat:[2,4,14,18,28,29,30,33,39,42,49,50,62,65,70,71,72,73,93,94,96,102,115,129,162,176,187,189,195,196,208,210,217,219,220,226],upgrad:[2,14,18,52,69,72,92,106,115,117,180,184,193,201,202,211,219,233,236],uplink:204,uplink_cntr:204,uplink_freq:204,upload:[14,15,21,25,56,83,84,139,157,173,196],upon:[1,3,13,38,68,102,115,174,189],upper:[35,155,176],uppercas:166,upstream:119,uri:[39,41,120],url:[39,191,210,212],url_bodi:191,url_body_len:191,url_schem:191,url_suffix:191,usabl:[1,103,106,183,191],usag:[1,9,70,71,72,75,93,94,95,102,112,119,121,122,139,141,149,162,163,172,174,176,204,207,218,230],usart6_rx:232,usart6_tx:232,usb:[2,3,17,21,43,55,79,184,193,194,196,197,198,199,200,201,203,204,205,207,211,219,221,228,229,231,232],usbmodem1411:8,usbmodem14211:79,usbmodem14221:79,usbmodem401322:8,usbmodem:8,usbseri:[8,195,211,221,229,232],usbttlseri:184,use:[1,4,5,6,7,8,10,11,14,15,17,20,21,24,25,27,28,29,30,32,33,34,36,39,42,43,45,54,58,63,64,68,69,71,72,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,97,99,100,106,107,109,111,112,115,116,117,118,121,123,127,128,138,139,141,142,149,152,154,161,162,163,164,165,166,167,168,172,173,174,175,176,178,180,181,182,183,184,186,187,188,189,191,192,193,194,195,196,199,201,203,204,205,207,208,210,211,213,214,217,218,219,220,221,223,225,226,228,229,230,231,232,233,234],use_wl:39,use_wl_inita:39,usec:[99,221,226],used:[6,7,10,11,14,15,20,21,24,27,28,32,33,34,35,36,39,41,42,44,47,59,62,74,79,85,97,99,102,103,104,106,111,112,113,114,115,116,117,122,123,127,130,138,139,146,149,150,152,154,156,161,162,163,164,165,172,173,174,175,176,179,180,181,184,186,188,189,190,191,192,193,204,207,210,211,212,213,217,218,220,221],used_unread:162,useful:[3,14,27,29,30,33,105,165,183,212],user:[1,2,4,6,7,8,9,14,31,33,34,36,61,68,71,72,74,91,93,94,95,97,100,102,103,106,107,110,115,117,118,121,122,127,133,139,141,144,152,153,154,155,163,171,173,174,175,176,180,190,193,199,204,205,211,212,213,214,218,219,226,232],user_defined_head:102,user_hdr:102,user_hdr_len:102,user_id:[175,176],user_manu:180,user_pkthdr_len:102,usernam:[13,61,72,212],uses:[2,4,6,7,8,11,14,24,27,33,34,35,36,42,43,45,68,78,79,80,81,82,83,84,85,86,87,88,89,90,91,99,100,106,110,113,114,115,117,118,119,120,121,123,127,138,139,143,148,149,162,163,164,165,167,168,172,175,176,178,188,189,190,193,195,198,201,203,205,211,212,214,220,221,222,223,226,229,232],using:[1,2,4,6,7,8,10,11,13,14,15,17,19,21,24,25,26,32,33,36,38,39,40,41,43,44,46,49,50,56,57,70,71,72,73,74,76,79,89,93,94,95,96,97,99,100,102,104,105,107,108,109,110,111,112,113,114,115,116,121,127,130,132,137,138,139,143,148,149,151,152,154,156,161,165,166,168,172,173,174,176,178,180,183,184,190,192,193,194,195,196,197,198,199,200,201,203,204,205,207,210,211,218,219,220,222,223,226,230,231,233,234],usr:[4,6,10,49,70,71,72,73,93,94,95,96],usu:108,usual:[15,36,102,103,114,121,162],utc:[81,113,210],utctim:113,utf:41,util:[7,10,33,43,44,105,114,117,138,150,152,162,176,201,210,219],util_cbmem:226,util_cbmem_test:7,util_crc:[226,230,232],util_mem:[7,193,195,196,197,198,199,200,204,211,221,226,229,230,232],util_pars:[204,221,226],uuid128:[39,41,188,190,192],uuid128_is_complet:[39,41],uuid16:[39,40,41,188,217,219],uuid16_is_complet:[39,41],uuid32:[39,41],uuid32_is_complet:[39,41],uuid:[21,29,30,39,40,41,42,45,79,188,190,192,217,219,220],uvp:113,v10:226,v14:197,v25:197,val:[35,36,52,63,70,71,72,74,106,116,145,148,152,161,162,174,175,176,191,192,195,201,204,218,219,220],val_handl:[29,30],val_len_max:116,val_str:116,valid:[28,29,30,33,52,63,66,70,71,72,74,79,85,102,115,122,127,137,139,140,149,152,163,188,210,218,219],valu:[1,4,7,11,28,29,30,33,35,36,39,40,41,42,50,52,55,59,63,66,70,71,72,74,75,77,78,79,81,84,85,88,93,94,95,98,102,103,106,111,112,113,115,116,121,127,144,148,149,152,153,154,155,156,161,162,164,166,168,172,173,174,184,187,188,189,190,191,192,201,203,205,208,212,213,217,218,219,221,222,223,225,226,228,233],valuabl:212,value1:[63,176],value2:[63,176],value_len:[29,30],valuen:176,vanilla:138,vari:[9,102,109,115],variabl:[1,4,10,25,36,47,50,63,72,74,75,78,102,103,112,116,117,141,161,162,163,164,165,173,180,186,188,204,207,212,213,220,221,222,223,226],variant:[34,108,148],variat:11,varieti:[4,189],variou:[35,36,74,102,115,119,121,143,189,194,204],vdd:17,vector:221,vendor:212,ver:[1,7,68,159,160,180,184,193,211,212,213,214,218,219],ver_len:160,ver_str:160,verb:75,verbos:[1,7,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,193,211],veri:[1,9,44,68,102,112,114,115,164,182,190,195,196,212,219,220,233],verif:34,verifi:[34,70,72,93,95,115,143,165,173,196,197,198,200,203,204,207,210,218,219,220],versa:[8,173],version:[1,2,4,6,7,10,11,20,21,24,29,30,34,43,47,50,52,54,56,60,68,69,73,92,96,97,117,127,157,159,160,162,173,176,180,184,192,193,195,196,197,198,199,200,201,203,204,211,215,218,221,223,226,229,232,233,234],via:[8,14,21,27,28,33,38,55,68,102,103,115,117,121,139,141,142,143,149,162,168,172,173,174,176,184,185,186,188,196,198,203,204,212,218,221,222,223,225,228],vice:[8,173],vid:197,view:[1,7,11,13,42,63,75,79,166,171,172,173,174,176,212,217,223,225,234],vim:72,vin:221,violat:33,viper:10,virtual:[14,79,145,148],virtualbox:193,visibl:[2,29,30,40],visit:[14,15,19,52,70,71,72],visual:[5,12,234],visualstudio:11,vol:34,volatil:197,voltag:[121,123,143,153,197,219,223],volum:[41,138],vp_len:116,vscode:11,vtref:[196,198,204,219],vvp:113,w64:10,wai:[2,3,9,14,17,18,24,25,42,43,44,72,74,97,100,105,112,113,117,139,148,149,150,162,173,175,212,213,214,218,219,223],wait:[15,24,97,98,99,100,102,104,105,111,112,123,144,149,152,163,176,199,204,205,207,217,218,219,228],waitin:104,wake:[24,98,102,105,111,112,144,168,207],wakeup:[112,168],walk:[102,112,127,133,137,162,219],walk_body_func:162,walk_func:162,wall:6,wallclock:[97,113],wanda:94,want:[1,3,10,14,15,18,21,24,25,27,31,63,70,71,72,73,74,93,96,97,98,102,103,104,105,110,111,112,115,116,117,127,137,139,148,162,163,164,167,168,174,179,181,183,185,186,188,190,191,192,193,194,196,197,198,199,201,204,208,210,212,218,219,222,223,233,236],warn:[1,6,19,25,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,70,71,72,75,175,188,196],warranti:[4,193,218,219,226,233,234],wasn:[23,29,30],watch:183,watchdog:[105,110,153],watchpoint:[193,197],watermark:162,waveform:223,wdog:80,wear:183,wear_level_test:210,wearabl:9,web:180,webfreak:11,weird:23,welcom:[8,18,114,121,182,211,221],well:[8,15,18,25,34,53,68,102,103,109,111,115,116,121,157,179,187,204,217,219],were:[41,86,98,102,115,143,162,173,213,218],werror:[6,25,63],wes:204,west:113,wfi:197,wget:[70,72,93,95],what:[7,8,14,15,17,18,19,20,21,23,24,29,30,33,54,68,109,111,122,127,141,164,165,173,176,186,189,190,191,192,207,210,213,217,218,219],whatev:[35,111,211,219],wheel:[8,180],when:[1,2,6,7,8,11,13,14,17,18,19,21,24,25,27,28,29,30,33,34,35,36,38,41,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,74,75,79,85,94,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,115,116,117,118,121,127,128,129,132,138,139,141,148,149,152,154,155,157,161,163,164,165,167,168,170,172,173,174,175,176,178,183,184,185,186,189,190,191,192,193,196,197,199,200,201,203,205,207,210,212,213,214,218,219,220,221,222,223,224,225,226,230,233],whenev:[28,38,43,103,113,121,161,167,188,190,226],where:[8,9,10,13,16,21,34,41,44,48,50,63,68,72,73,74,96,102,103,106,108,109,112,113,115,116,117,127,128,129,132,135,137,148,151,152,155,160,161,162,173,175,176,190,191,192,195,196,201,204,207,211,219,221,229,232],wherea:[102,213],whether:[11,13,14,15,23,27,28,34,97,100,103,113,115,117,127,149,152,153,164,165,166,168,170,171,172,174,176,186,188,190,210,221,224,225,226],which:[1,2,4,8,10,14,17,19,20,21,23,24,27,28,29,30,32,33,42,43,45,47,52,68,70,71,72,74,75,79,93,94,95,97,98,99,102,103,105,106,109,110,111,112,113,114,115,116,121,122,124,127,137,138,139,144,145,148,149,152,154,157,161,162,163,165,168,173,174,175,180,186,187,188,189,190,191,192,193,203,204,207,210,211,212,213,218,219,230,233],white:[28,34,39],white_list_count:28,whitelist:39,who:[13,163,168],whole:[14,122],whose:[29,30,74,75,162,168],why:[13,17,207],wide:[43,173],widen:102,wifi:[7,211],wifi_connect:211,wifi_init:211,wifi_request_scan:211,wikipedia:[149,152],winc1500_wifi:211,window:[5,6,7,9,11,14,28,39,69,79,91,92,106,117,184,193,195,196,197,198,199,200,203,204,211,221,229,232,233],winusb:[197,199,232],wipe:131,wire:[8,149,152,204,218,219,232],wireless:43,wish:[6,13,29,30,141,149,207,212,231],withdraw:13,within:[1,11,14,33,44,54,68,102,106,107,109,115,121,127,132,135,137,141,143,148,159,161,162,165,166,167,172,174,178,189,199,207,210,212,218,223],without:[6,13,14,21,25,29,30,34,36,40,42,103,115,139,141,142,162,172,173,174,176,178,193,203,210,218,219,224],wno:6,won:[8,25,173,219],wont:223,word:[6,68,102,105,111,115,152,188,193,212,226,233,234],word_siz:152,work:[2,4,8,10,13,14,17,18,19,21,22,25,27,34,36,68,74,75,98,102,104,105,106,108,109,111,112,115,117,121,122,143,174,180,181,183,184,187,193,195,196,201,204,207,210,215,217,218,219,222,223,225,228],work_stack:207,work_stack_s:207,work_task:207,work_task_handl:207,work_task_prio:207,workaround:21,workspac:[1,2,10,52,70,71,72,73,93,95,96],workspaceroot:11,world:[11,43,155,186,191,192,194,214,236],worri:105,worth:[1,107],would:[5,11,14,15,18,19,21,24,71,72,94,95,97,102,105,111,115,116,117,124,127,143,148,149,152,173,174,178,183,199,204,207,210,212,213,218,219,228,232],wrap:[113,174,195],wrapper:[28,100],write:[1,9,19,27,28,29,30,33,40,74,77,78,93,94,95,107,115,116,117,121,122,123,127,128,129,133,138,139,141,143,146,148,149,155,157,159,162,174,182,187,189,190,204,205,207,209,218,219,220,228],write_cmd_rx:[89,201],write_cmd_tx:[89,201],write_id:139,write_req_rx:[89,201],write_req_tx:[89,201],write_rsp_rx:[89,201],write_rsp_tx:[89,201],written:[10,17,25,28,29,30,33,35,72,95,105,115,127,128,129,132,137,141,149,152,162,188,190,195,213],wrong:[23,55,219],wsl:[11,72],www:[14,72,95,114,180,184,193,218,219,226,232,233,234],x03:218,x64_64:10,x86:[4,11],x86_64:[193,226,233,234],xml:[7,101],xpf:4,xpsr:[193,197,199],xstr:178,xtal_32768:106,xtal_32768_synth:36,xxx:[6,106,112,122],xxx_branch_0_8_0:[212,213],xxx_branch_1_0_0:[212,213],xxx_branch_1_0_2:[212,213],xxx_branch_1_1_0:[212,213],xxx_branch_1_1_2:[212,213],xxx_branch_1_2_0:[212,213],xxx_branch_1_2_1:[212,213],xxxx:143,xzf:[70,72,73,95,96],yai:218,yaml:10,year:44,yes:[34,116,204],yesno:39,yet:[7,19,20,105,109,116,183,203,212,213,219],yield:105,yml:[1,6,7,14,16,20,25,54,56,63,65,66,68,74,107,108,114,116,117,122,123,139,141,142,162,164,172,173,174,175,176,180,183,184,193,195,201,204,205,208,210,211,212,214,215,218,220,221,223,226],you:[1,3,4,5,6,7,8,9,10,11,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,42,46,47,48,52,54,56,58,59,60,63,64,65,66,67,68,70,71,72,73,74,76,77,79,81,89,93,94,95,96,97,102,105,106,107,108,109,114,115,116,117,118,119,121,124,125,127,128,129,133,141,142,143,145,148,149,151,161,162,163,164,166,167,168,172,173,174,175,176,177,178,179,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,203,204,205,207,208,210,211,212,213,214,217,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,236],youll:223,your:[1,3,4,6,8,13,14,17,18,20,21,24,25,32,42,52,63,65,68,69,71,72,73,74,83,84,92,94,95,96,97,105,106,107,108,109,110,112,118,119,120,121,122,123,125,127,138,141,143,162,164,172,173,175,176,178,181,182,183,184,185,186,187,189,190,191,192,194,195,203,204,205,208,213,217,218,219,220,222,223,224,228,229,231,232,233,234,236],your_target:14,yourself:[2,13,14,42,105,106,185,218,236],ype:[191,192],yym:6,zadig:[197,199,232],zero:[11,29,30,36,97,102,103,106,112,113,116,127,131,135,137,140,144,148,149,152,153,154,155,161,163,167,168,169,176,190,191,192,194,204,207,210,211,212,226,236],zillion:14,zip:[4,196],zone:113},titles:["&lt;no title&gt;","Concepts","Everything You Need in a Docker Container","Setup &amp; Get Started","Installing the Cross Tools for ARM","Native Installation","Installing Native Toolchain","Creating Your First Mynewt Project","Using the Serial Port with Mynewt OS","Mynewt Documentation","Contributing to Newt or Newtmgr Tools","Developing Mynewt Applications with Visual Studio Code","Appendix","Mynewt FAQ - Administrative","Mynewt FAQ - Bluetooth","Mynewt FAQ - Bootloader and Firmware Upgrade","Mynewt FAQ - File System","Mynewt FAQ - Hardware-Specific Questions","Mynewt FAQ","Mynewt FAQ - Drivers and Modules","Mynewt FAQ - Newt","Mynewt FAQ - Newt Manager","Mynewt FAQ - NFC","Mynewt FAQ - Porting Mynewt","Mynewt FAQ - Syntax, Semantics, Configuration","Mynewt FAQ - Troubleshooting","NimBLE Bluetooth Stack Documentation","NimBLE Host ATT Client Reference","NimBLE Host GAP Reference","NimBLE Host GATT Client Reference","NimBLE Host GATT Server Reference","NimBLE Host","NimBLE Host Identity Reference","NimBLE Host Return Codes","NimBLE Security","Configure device address","Configure clock for controller","NimBLE Setup","Respond to <em>sync</em> and <em>reset</em> events","GAP API for btshell","GATT feature API for btshell","Advertisement Data Fields","API for btshell app","BLE User Guide","Bluetooth Mesh","Sample application","Mynewt Newt Tool Documentation","newt build","newt clean","newt complete","newt create-image","newt debug","newt help","newt info","newt install","newt load","newt mfg","newt new","newt pkg","newt resign-image","newt run","newt size","newt sync","newt target","newt test","newt upgrade","newt vals","newt version","Newt Tool Guide","Install","Installing Newt on Linux","Installing Newt on Mac OS","Installing Newt on Windows","Installing Previous Releases of Newt","Theory of Operations","Command Structure","Mynewt Newt Manager Documentation","Command List","newtmgr config","newtmgr conn","newtmgr crash","newtmgr datetime","newtmgr echo","newtmgr fs","newtmgr image","newtmgr log","newtmgr mpstat","newtmgr reset","newtmgr run","newtmgr stat","newtmgr taskstat","Newt Manager Guide","Install","Installing Newtmgr on Linux","Installing Newtmgr on Mac OS","Installing Newtmgr on Windows","Installing Previous Releases of Newtmgr","Callout","Scheduler","CPU Time","Event Queues","Heap","Mbufs","Memory Pools","Mutex","Apache Mynewt Operating System Kernel","BSP Porting","Porting Mynewt to a new CPU Architecture","Porting Mynewt to a new MCU","Porting Mynewt OS","Sanity","Semaphore","Task","OS Time","Baselibc","Bootloader","Config","Console","Customizing Newt Manager Usage with mgmt","Newt Manager","Using the OIC Framework","Drivers","flash","mmc","elua","lua_init","lua_main","Flash Circular Buffer (FCB)","fcb_append","fcb_append_finish","fcb_append_to_scratch","fcb_clear","fcb_getnext","fcb_init","fcb_is_empty","fcb_offset_last_n","fcb_rotate","fcb_walk","The FAT File System","File System Abstraction","Adding a new file system","Newtron Flash Filesystem (nffs)","Other File Systems","Hardware Abstraction Layer","BSP","Creating New HAL Interfaces","Flash","hal_flash_int","GPIO","I2C","Using HAL in Your Libraries","OS Tick","SPI","System","Timer","UART","Watchdog","Image Manager","imgmgr_module_init","imgr_ver_parse","imgr_ver_str","JSON","Logging","Sensor API","Creating and Configuring a Sensor Device","Sensor Device Driver","Mynewt Sensor Framework Overview","Sensor Listener API","Sensor Manager API","Sensor Notifier API","OIC Sensor Support","Sensor Shell Command","Shell","Split Images","Statistics Module","Validation and Error Messages","Compile-Time Configuration and Initialization","System Modules","testutil","OS User Guide","Blinky, your \u201cHello World!\u201d, on STM32F303 Discovery","Pin Wheel Modifications to \u201cBlinky\u201d on STM32F3 Discovery","Bluetooth Low Energy","Set up a bare bones NimBLE application","Use HCI access to NimBLE controller","BLE Peripheral Project","Advertising","BLE Peripheral App","Characteristic Access","GAP Event callbacks","Service Registration","BLE Eddystone","BLE iBeacon","Blinky, your \u201cHello World!\u201d, on Arduino Zero","Project Blinky","Enabling The Console and Shell for Blinky","Blinky, your \u201cHello World!\u201d, on Arduino Primo","Blinky, your \u201cHello World!\u201d, on STM32F4-Discovery","Blinky, your \u201cHello World!\u201d, on a nRF52 Development Kit","Blinky, your \u201cHello World!\u201d, on Olimex","Blinky, your \u201cHello World!\u201d, on RedBear Nano 2","Enabling Newt Manager in Your Application","Remote Device Management","Over-the-Air Image Upgrade","LoRaWAN App","How to Use Event Queues to Manage Multiple Events","OS Fundamentals","Tasks and Priority Management","How to Reduce Application Code Size","Other","Write a Test Suite for a Package","Enable Wi-Fi on Arduino MKR1000","Adding Repositories to your Project","Create a Repo out of a Project","Accessing a private repository","Upgrade a repo","Air Quality Sensor Project","Air Quality Sensor Project via Bluetooth","Air Quality Sensor Project","Adding an Analog Sensor on nRF52","Adding OIC Sensor Support to the bleprph_oic Application","Enabling an Off-Board Sensor in an Existing Application","Enabling OIC Sensor Data Monitoring in the sensors_test Application","Enabling and Calibrating Off-Board DRV2605 LRA Actuator","Changing the Default Configuration for a Sensor","Enabling OIC Sensor Data Monitoring","Developing an Application for an Onboard Sensor","Sensors","Sensor Tutorials Overview","Project Slinky using the Nordic nRF52 Board","Project Sim Slinky","Project Slinky","Project Slinky Using Olimex Board","SEGGER RTT Console","SEGGER SystemView","Tooling","Tutorials"],titleterms:{"abstract":[139,143],"default":[195,207,224],"float":24,"function":[24,106,113,114,124,157,163,165,176,188,190,207,220,224],"import":180,"new":[7,57,107,108,140,145,187,207,224,226,229,230,232],"public":35,"return":[33,123,125,126,128,129,130,131,132,133,134,135,136,137,158,159,160],"switch":[114,207],"try":210,"while":14,Adding:[71,94,140,174,212,219,220,224,226],For:[4,218],One:14,The:[138,195],Use:[2,184,195,201,205,226,229,232],Used:163,Uses:162,Using:[8,70,93,102,117,120,150,218,221,226,232],With:25,acceleromet:224,access:[184,188,214],actual:223,actuat:223,adafruit:21,adc:219,add:[79,106,191,192,217,218,220,226],addit:212,address:[32,35,42,191,192],administr:13,advertis:[14,39,41,42,186,191,192],air:[203,216,217,218],all:[14,205],altern:24,ambigu:175,analog:[14,219],apach:[9,44,105],api:[25,27,28,29,30,39,40,42,97,98,99,100,101,102,103,104,110,111,112,113,116,117,127,138,139,140,141,142,144,145,146,148,149,151,152,153,154,155,156,161,162,163,167,168,169,172,174,178,226],app:[9,42,74,173,184,187,204,219,226,228,234],app_get_light:220,app_set_light:220,appendix:[12,106],applic:[7,11,18,45,105,162,163,164,173,180,183,184,191,192,193,195,196,197,198,199,200,201,204,205,207,208,211,219,220,221,222,223,224,226,229,232],apt:[70,93],architectur:107,arduino:[8,193,196,211],area:[141,175],argument:[19,125,126,128,129,130,131,132,133,134,135,136,137,158,159,160],arm:[4,25],artifact:74,assert:210,assign:175,associ:11,att:[27,33],attach:184,attribut:[42,190],autocomplet:49,avail:[39,40,52,56,63,194,212,228,231],bare:183,base:21,baselibc:114,bash:49,basic:105,beacon:[191,192],bearer:44,begin:[42,186],being:188,belong:42,between:211,binari:[70,72,93,95],bit:6,bitbang:14,ble:[14,17,43,183,185,187,191,192,219,220],ble_gap_disc_param:14,blehci:[14,184],blemesh:14,bleprph_gap_ev:189,bleprph_oic:220,blink:180,blink_rigado:61,blinki:[7,180,181,193,194,195,196,197,198,199,200],block:24,bluetooth:[14,26,43,44,182,184,217,219],bluez:184,bno055:221,board:[8,109,164,193,196,197,198,199,200,204,211,219,220,221,222,223,229,232],bone:183,boot:[25,115,173],boot_seri:15,bootload:[15,115,184,193,196,197,198,199,200,204,211,221,226,229,232],bootutil:15,branch:[71,94],breakout:8,brew:6,bsp:[66,106,109,144,175],btmgmt:184,btmon:184,btshell:[14,39,40,42],buffer:127,bug:[13,25],build:[7,9,11,25,47,68,74,180,181,183,184,193,195,196,197,198,199,200,201,204,207,211,219,220,221,222,224,226,229,230,232],calibr:223,call:[24,224],callback:189,callout:[97,205],can:13,cannot:224,capabl:15,categori:236,central:14,chang:[26,46,76,219,224],channel:39,characterist:[14,42,185,188],check:[70,71,72,93,94,95,106,110,115,168],choos:210,circular:127,clean:48,clear:200,cli:[116,218],client:[27,29],clock:36,close:204,cmsis_nvic:24,code:[11,18,33,106,107,174,208,210],command:[11,20,39,40,52,56,63,75,77,79,119,165,171,172,184,201,218,230],committ:13,commun:[8,21,195,201,223],compil:[18,107,176],complet:[49,172],compon:[43,212],comput:[70,93,211,221,226],concept:[1,173],conclus:[183,191,192,219,223],condit:176,config:[78,116],configur:[1,11,14,24,35,36,39,40,42,116,138,162,163,164,165,168,175,176,180,191,192,195,201,224],confirm:203,conflict:176,congratul:210,conn:79,connect:[14,21,39,42,184,193,195,196,197,198,199,200,201,203,204,211,219,220,221,222,226,229,230,232,233],consider:207,consol:[117,172,174,195,211,221,226,233],contain:2,content:[26,46,76],context:207,contribut:10,control:[18,36,184,191,192,220,221,222,228],copi:[106,220],core:[23,33,105,109],cpu:[99,107,109],crash:[14,80],creat:[7,50,102,106,107,145,164,180,183,184,187,191,192,193,196,197,198,199,200,201,203,204,205,207,210,211,213,218,219,220,221,222,223,226,229,230,232],creation:105,cross:4,crystal:36,current:173,custom:[110,118,201],data:[41,113,124,127,139,141,149,157,161,163,165,167,168,172,178,186,204,219,220,221,222,224,225,226],datetim:81,debian:[70,93],debug:[11,51,74,106],debugg:[4,11],declar:174,decod:161,defin:[11,106,165,174],definit:[147,175,176],delai:24,delet:[79,220],depend:[7,74,106,109,122,123,142,143,180,195,201,213,220,226],descript:[47,48,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,103,104,109,110,111,112,113,114,117,121,124,127,138,139,141,143,144,146,147,148,149,151,152,153,154,155,156,157,161,162,172,173,178,221],descriptor:[42,185,190,212],design:[121,143],detail:174,detect:25,determin:188,develop:[11,198,226],devic:[2,14,21,24,35,39,42,116,163,164,165,184,202,203,220,221,222,223,224,228],direct:42,directori:74,disabl:39,disconnect:14,discov:42,discoveri:[39,180,181,197],disk_op:139,displai:42,docker:2,document:[13,14,15,26,46,76],doe:212,download:[10,70,74,93,106,180,181,204,219],driver:[19,121,163,165,218,219,224],drv2605:223,duplic:175,eabi:25,earli:24,echo:82,eddyston:191,edit:13,editor:13,elf:20,elua:124,empti:[191,192],emul:221,enabl:[2,25,39,49,172,173,174,195,201,211,220,221,222,223,225,226],encod:161,end:24,energi:182,enhanc:141,enter:183,environ:10,equip:207,equival:24,eras:196,error:[25,175],establish:[42,184,211],etap:219,event:[38,100,189,195,205],everyth:[2,204,219],exactli:14,exampl:[8,33,38,43,47,48,50,51,52,56,57,58,59,60,61,63,64,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90,100,105,116,121,122,123,125,126,128,129,130,131,132,133,134,135,136,137,138,139,143,147,155,159,160,175,176,178,205],execut:[6,180,181,196,197,198,200,204,219,230,233,234],exist:[195,201,212,221],explor:7,express:175,extend:[14,39,226],extens:[2,11],extern:[180,193,211],faq:[13,14,15,16,17,18,19,20,21,22,23,24,25],fat:138,fcb:127,fcb_append:128,fcb_append_finish:129,fcb_append_to_scratch:130,fcb_clear:131,fcb_getnext:132,fcb_init:133,fcb_is_empti:134,fcb_offset_last_n:135,fcb_rotat:136,fcb_walk:137,featur:[7,13,34,40,43,44,105],fetch:[7,193,211],field:41,file:[16,20,25,106,122,123,138,139,140,142,174,213,220,224,226],filesystem:[139,141],fill:106,find:212,firmwar:15,first:[7,9],flag:[47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90],flash:[106,115,122,127,141,146,175,196,200],forget:14,format:[24,115],framework:[120,165,166,201,225],from:[14,70,71,72,93,94,95,117,220,222,224],ft232h:8,full:117,fundament:206,futur:141,gap:[28,39,189],gatt:[29,30,40,217],gcc:[6,25],gdb:6,gener:[18,34,42,121,143,176,205],get:[3,70,93,165],git:[10,13,18,72],global:[47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90],gpio:148,grei:25,group:14,guarante:189,guid:[43,68,91,179],hal:[109,145,150,218],hal_flash_int:147,hal_i2c:149,handler:[116,162,172],hardcod:35,hardwar:[17,35,143,180,204,219,221,233,234],hci:[33,184],header:[32,33,102,122,123,139,142,174,220,224],heap:101,hello:[180,193,196,197,198,199,200],help:[52,172],high:115,hold:174,homebrew:[71,94],host:[27,28,29,30,31,32,33,191,192],how:[13,114,176,205,208,212,220,224],i2c:149,iOS:25,ibeacon:192,ident:32,identifi:212,ignor:175,imag:[18,25,50,59,84,115,157,173,180,181,184,196,197,198,199,200,201,203,204,211,219,220,221,222,223,224,226,229,232],imgmgr_module_init:158,imgr_ver_pars:159,imgr_ver_str:160,immedi:14,implement:[107,121,162,165,174],includ:[42,174,190],indefinit:[191,192],info:53,inform:172,initi:[42,122,123,141,163,165,174,176,207,224],input:[117,172],instal:[2,4,5,6,10,11,20,49,54,69,70,71,72,73,92,93,94,95,96,180,204,219],instead:226,integr:115,interfac:[142,145,163],intern:141,interrupt:205,introduct:[9,27,28,29,30,31,32,33,44,68,106,185,205,210],invalid:175,invert:17,invok:119,issu:25,join:204,json:161,kei:[14,34,39],kernel:105,kit:198,l2cap:[14,33,39],laptop:13,latest:[70,71,72,93,94,95],launch:234,layer:143,lead:24,led:[180,181],legaci:39,length:17,level:[115,162,203],libc:6,librari:[19,150,180],like:13,limit:[17,115],line:172,link:4,linker:106,linux:[2,4,6,8,10,70,73,93,96],list:[13,77,114,124,157,173,191,192,221,226],listen:[167,226],load:[55,184,193,196,197,198,199,200,201,211,220,221,222,223,224,226,229,232],loader:173,log:[17,19,85,162,165,203],look:168,lorawan:204,low:182,lra:223,lua_init:125,lua_main:126,mac:[2,4,6,8,10,71,73,94,96],macro:113,main:[195,207,220,224,226],make:13,manag:[9,21,33,68,76,91,118,119,157,168,201,202,205,207],manual:[70,93],map:[106,115],master:[71,94],maximum:14,mbuf:102,mcu:[23,106,108,109],mcuboot:15,measur:141,memori:[103,200],merg:13,mesh:[14,43,44],messag:[14,175],method:[35,70,93],mfg:56,mfghash:24,mgmt:118,mingw:72,minim:117,miscellan:141,mkr1000:211,mmc:123,model:44,modif:181,modifi:[195,201,220,226],modul:[14,19,172,174,177],monitor:[184,222,225],more:[68,180],mpstat:86,mqueue:102,msy:102,msys2:72,multicast:14,multipl:[11,139,174,175,205],mutex:104,my_sensor_app:226,mynewt:[2,7,8,9,11,13,14,15,16,17,18,19,20,21,22,23,24,25,35,44,46,71,76,94,105,106,107,108,109,117,166,183,212,220,222,228],name:[19,42,172,174,176],nano2:17,nano:[17,200],nativ:[5,6],need:[2,180,181,204,212,221,233,234],newt:[2,9,10,11,20,21,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,76,91,118,119,201],newtmgr:[10,21,78,79,80,81,82,83,84,85,86,87,88,89,90,93,94,95,96,119,172,174,201,203,229,230,232],newtron:141,next:[6,221],nfc:22,nff:[16,141],nimbl:[14,26,27,28,29,30,31,32,33,34,37,43,183,184,191,192],nmp:21,node:44,none:25,nordic:[8,17,229],normal:102,note:[68,113,124,125,126,128,129,130,131,132,133,134,135,136,137,158,159,160,174],notifi:169,notnul:175,nrf52840:14,nrf52:[17,198,219,221,229],nrf52_adc:219,nrf52dk:[8,21],nrf:35,number:[14,19],object:[163,180,181,194,204,233,234],off:[164,221,223],oic:[120,170,220,222,225,228],oicmgr:201,older:25,olimex:[199,232],omgr_app_init:220,onboard:[164,226],onto:[193,211],open:[184,204],openocd:4,oper:[14,68,74,105,115,149,152,173],option:[196,201],orient:39,ota:204,other:[7,11,142,201,209,213],out:[25,210,212,213],output:[61,66,117],over:[172,203],overrid:[175,176],overview:[77,166,185,186,187,189,194,220,224,225,228,231],own:13,pack:2,packag:[1,7,70,74,93,106,109,117,142,162,163,166,175,176,183,193,201,210,211,218,220,221,226],packet:102,passiv:42,patch:13,peer:[33,42],peer_id:21,perform:42,peripher:[14,185,187],persist:116,pin:[17,181],pkg:[18,58,106],platform:[8,143],point:24,poll:[163,168],pool:[102,103],port:[8,23,106,107,108,109,204],precis:17,preempt:207,prerequisit:[7,184,187,193,194,195,196,197,198,199,200,201,203,205,207,211,218,220,221,222,223,224,225,226,228,229,230,231,232,236],preview:[26,46,76],previou:[73,96],primo:196,principl:[121,143],printf:24,prioriti:[175,207],privaci:34,privat:214,pro:8,process:[172,195],produc:[6,74],profil:[21,201,203,230],project:[1,7,11,13,25,43,180,183,184,185,193,194,195,196,197,198,199,200,201,204,205,211,212,213,216,217,218,219,229,230,231,232],prompt:172,protect:200,protocol:[172,191,192,201],provis:44,pull:[2,13],put:205,qualiti:[216,217,218],queri:[229,232],question:[13,14,17],queue:[100,195,205],radio:14,random:[24,35],rate:163,rational:68,read:[14,42,163,165,188,224,226],reboot:224,rebuild:[10,226],reconfigur:164,recoveri:115,redbear:[17,200],reduc:[18,203,208],refer:[27,28,29,30,32,33,176],referenc:176,regist:[110,142,165,168,172,174,221],registr:190,releas:[70,71,72,73,93,94,95,96],remot:[202,219],repo:[212,213,215,219],repositori:[7,13,68,212,213,214],request:13,requir:[106,219],reset:[38,87,115],resign:59,resolut:213,resolv:[74,176,213],respond:38,restart:14,restrict:175,retriev:[173,174],review:[188,207],round:181,rtt:[226,233],run:[7,11,25,60,88,193,195,230,233,234],runtim:[35,116],safeti:139,sampl:[45,221,224],saniti:110,satisfi:106,scale:210,scan:42,schedul:98,script:[2,106],section:174,secur:[33,34,39],segger:[4,233,234],select:2,semant:24,semaphor:111,semiconductor:8,send:[42,184,204],sensor:[163,164,165,166,167,168,169,170,171,216,217,218,219,220,221,222,224,225,226,227,228],sensor_read:226,sensors_test:222,sequenc:173,serial:[8,24,172,184,195,211,229,232],server:30,servic:[42,185,190,217,219],set:[6,10,24,42,70,93,106,162,163,165,175,176,183,186,190,195,201,218,220,224,230],settl:36,setup:[3,8,16,37,211,233,234],shell:[165,171,172,195,226],should:213,show:[42,79],sign:[115,180,196,197,198,199,200,204,211,219,229,232],signatur:188,sim:230,simul:7,singl:173,size:[17,18,20,61,208],skeleton:226,sleep:24,slinki:[229,230,231,232],slot:115,smart:[220,222,228],softwar:234,some:13,sourc:[7,10,68,70,72,93,95,191,192,201,218,220],special:113,specif:[17,107,213],specifi:[142,176],spi:152,split:173,stack:[26,191,192,207],start:[3,184,211],startup:106,stat:[89,165,174],state:[115,116,173],statist:174,statu:115,step:[10,194,203,220,221,222,223,224,226,231],stm32f303:180,stm32f3:[180,181],stm32f4:197,storag:39,struct:139,structur:[75,113,124,127,139,141,157,161,163,167,168,172,178],stub:117,studio:11,sub:79,submit:13,suit:210,summari:33,support:[2,14,44,74,109,139,143,166,170,180,201,220,221,225,226],swap:115,sync:[20,38,62,191,192],syntax:24,syscfg:[162,173,176,220],sysinit_app:176,system:[16,36,68,105,138,139,140,142,153,175,176,177],systemview:234,tabl:174,talk:211,tap:[71,94],target:[1,35,63,74,106,180,181,183,184,187,193,195,196,197,198,199,200,201,204,211,219,221,223,226,229,230,232,233,234],task:[11,24,110,112,175,205,207,219],taskstat:90,tcp:211,templat:106,termin:221,test:[7,64,106,203,210,218],testutil:178,theori:[74,149,152,173],thingi:226,thread:139,through:174,tick:151,time:[17,36,99,113,176],timer:[154,195,205],togeth:205,tool:[4,10,46,68,72,95,235],toolchain:[4,6],topolog:44,trace:25,transact:17,transceiv:14,transport:[172,201],tree:218,trigger:14,troubleshoot:25,tutori:[173,194,228,231,236],type:[163,165,168,221],uart:155,undefin:175,under:210,undirect:42,unifi:173,unix:24,unsatisfi:25,updat:10,upgrad:[15,20,65,70,71,93,94,173,203,215],upload:[195,203],usag:[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,78,79,80,81,82,83,84,85,86,87,88,89,90,118,127],usb2:2,usb:8,use:[13,70,93,102,105,212],user:[43,179],using:[68,229,232],val:66,valid:175,valu:[14,17,123,125,126,128,129,130,131,132,133,134,135,136,137,158,159,160,163,165,175,176,220,224],variabl:174,vector:115,verif:[115,224],verifi:224,version:[18,25,67,70,71,72,93,94,95,212,213,219],via:[211,217,219,226],view:[17,219,220,221,222,226],violat:175,virtualbox:2,visual:11,wait:[191,192],want:[13,180],watch:[180,181],watchdog:156,water:219,welcom:9,what:[13,180,181,212],wheel:181,where:213,why:[102,105,212],window:[2,4,8,10,72,73,95,96],work:11,workspac:11,world:[180,193,196,197,198,199,200],would:13,wrapper:2,write:[14,26,42,46,76,188,200,210],yml:[18,106,213,219],you:[2,180,181],your:[2,7,9,10,11,70,93,142,150,174,180,193,196,197,198,199,200,201,207,210,211,212,221,226,230],zero:[24,193]}})
\ No newline at end of file
diff --git a/master/tutorials/ble/ble.html b/master/tutorials/ble/ble.html
index fd20836f5..852e8d774 100644
--- a/master/tutorials/ble/ble.html
+++ b/master/tutorials/ble/ble.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Bluetooth Low Energy &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Bluetooth Low Energy &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="Set up a bare bones NimBLE application" href="ble_bare_bones.html"/>
           <link rel="prev" title="Project Slinky Using Olimex Board" href="../slinky/project-stm32-slinky.html"/> 
@@ -316,7 +316,7 @@ <h1>Bluetooth Low Energy<a class="headerlink" href="#bluetooth-low-energy" title
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/ble_bare_bones.html b/master/tutorials/ble/ble_bare_bones.html
index cb4766c4d..a3dfaa24b 100644
--- a/master/tutorials/ble/ble_bare_bones.html
+++ b/master/tutorials/ble/ble_bare_bones.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Set up a bare bones NimBLE application &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Set up a bare bones NimBLE application &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Bluetooth Low Energy" href="ble.html"/>
           <link rel="next" title="BLE iBeacon" href="ibeacon.html"/>
           <link rel="prev" title="Bluetooth Low Energy" href="ble.html"/> 
@@ -497,7 +497,7 @@ <h2><a class="toc-backref" href="#id6">Conclusion</a><a class="headerlink" href=
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/blehci_project.html b/master/tutorials/ble/blehci_project.html
index 5b2d0cf11..adf8f920e 100644
--- a/master/tutorials/ble/blehci_project.html
+++ b/master/tutorials/ble/blehci_project.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Use HCI access to NimBLE controller &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Use HCI access to NimBLE controller &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Bluetooth Low Energy" href="ble.html"/>
           <link rel="next" title="LoRaWAN App" href="../lora/lorawanapp.html"/>
           <link rel="prev" title="BLE Peripheral App" href="bleprph/bleprph-sections/bleprph-app.html"/> 
@@ -524,7 +524,7 @@ <h2><a class="toc-backref" href="#id10">Start btmgmt to send commands</a><a clas
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
index d54248199..b4eb780ef 100644
--- a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
+++ b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Advertising &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Advertising &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="BLE Peripheral Project" href="../bleprph.html"/>
           <link rel="next" title="GAP Event callbacks" href="bleprph-gap-event.html"/>
           <link rel="prev" title="Characteristic Access" href="bleprph-chr-access.html"/> 
@@ -457,7 +457,7 @@ <h2><a class="toc-backref" href="#id3">Begin advertising</a><a class="headerlink
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
index 5c98d80bd..a8b27146e 100644
--- a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
+++ b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>BLE Peripheral App &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>BLE Peripheral App &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="BLE Peripheral Project" href="../bleprph.html"/>
           <link rel="next" title="Use HCI access to NimBLE controller" href="../../blehci_project.html"/>
           <link rel="prev" title="GAP Event callbacks" href="bleprph-gap-event.html"/> 
@@ -407,7 +407,7 @@ <h2>Create a New Target<a class="headerlink" href="#create-a-new-target" title="
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
index 6a3594b5b..515e15258 100644
--- a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
+++ b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Characteristic Access &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Characteristic Access &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="BLE Peripheral Project" href="../bleprph.html"/>
           <link rel="next" title="Advertising" href="bleprph-adv.html"/>
           <link rel="prev" title="Service Registration" href="bleprph-svc-reg.html"/> 
@@ -634,7 +634,7 @@ <h2><a class="toc-backref" href="#id5">Write access</a><a class="headerlink" hre
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
index 6daa41275..2d3537cee 100644
--- a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
+++ b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>GAP Event callbacks &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>GAP Event callbacks &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="BLE Peripheral Project" href="../bleprph.html"/>
           <link rel="next" title="BLE Peripheral App" href="bleprph-app.html"/>
           <link rel="prev" title="Advertising" href="bleprph-adv.html"/> 
@@ -476,7 +476,7 @@ <h2><a class="toc-backref" href="#id3">Guarantees</a><a class="headerlink" href=
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
index 1150ddb0b..247c246f3 100644
--- a/master/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
+++ b/master/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Service Registration &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Service Registration &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../../index.html"/>
           <link rel="up" title="BLE Peripheral Project" href="../bleprph.html"/>
           <link rel="next" title="Characteristic Access" href="bleprph-chr-access.html"/>
           <link rel="prev" title="BLE Peripheral Project" href="../bleprph.html"/> 
@@ -695,7 +695,7 @@ <h2><a class="toc-backref" href="#id3">Descriptors and Included Services</a><a c
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/bleprph/bleprph.html b/master/tutorials/ble/bleprph/bleprph.html
index a262e8ce1..05b187345 100644
--- a/master/tutorials/ble/bleprph/bleprph.html
+++ b/master/tutorials/ble/bleprph/bleprph.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>BLE Peripheral Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>BLE Peripheral Project &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Bluetooth Low Energy" href="../ble.html"/>
           <link rel="next" title="Service Registration" href="bleprph-sections/bleprph-svc-reg.html"/>
           <link rel="prev" title="BLE Eddystone" href="../eddystone.html"/> 
@@ -365,7 +365,7 @@ <h3><a class="toc-backref" href="#id2">Services, Characteristics, Descriptors</a
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/eddystone.html b/master/tutorials/ble/eddystone.html
index 7ec3dfb8d..735a1a174 100644
--- a/master/tutorials/ble/eddystone.html
+++ b/master/tutorials/ble/eddystone.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>BLE Eddystone &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>BLE Eddystone &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Bluetooth Low Energy" href="ble.html"/>
           <link rel="next" title="BLE Peripheral Project" href="bleprph/bleprph.html"/>
           <link rel="prev" title="BLE iBeacon" href="ibeacon.html"/> 
@@ -729,7 +729,7 @@ <h2>Source Listing<a class="headerlink" href="#source-listing" title="Permalink
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/ble/ibeacon.html b/master/tutorials/ble/ibeacon.html
index 991f798c4..e46f29e9c 100644
--- a/master/tutorials/ble/ibeacon.html
+++ b/master/tutorials/ble/ibeacon.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>BLE iBeacon &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>BLE iBeacon &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Bluetooth Low Energy" href="ble.html"/>
           <link rel="next" title="BLE Eddystone" href="eddystone.html"/>
           <link rel="prev" title="Set up a bare bones NimBLE application" href="ble_bare_bones.html"/> 
@@ -686,7 +686,7 @@ <h2><a class="toc-backref" href="#id8">Source Listing</a><a class="headerlink" h
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/blinky/arduino_zero.html b/master/tutorials/blinky/arduino_zero.html
index c594c6bd7..04de3d9d6 100644
--- a/master/tutorials/blinky/arduino_zero.html
+++ b/master/tutorials/blinky/arduino_zero.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Blinky, your “Hello World!”, on Arduino Zero &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Blinky, your “Hello World!”, on Arduino Zero &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Blinky" href="blinky.html"/>
           <link rel="next" title="Blinky, your “Hello World!”, on Arduino Primo" href="blinky_primo.html"/>
           <link rel="prev" title="Project Blinky" href="blinky.html"/> 
@@ -705,7 +705,7 @@ <h2><a class="toc-backref" href="#id9">Run the Blinky Application</a><a class="h
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/blinky/blinky.html b/master/tutorials/blinky/blinky.html
index bcaa9453c..1a4c896a9 100644
--- a/master/tutorials/blinky/blinky.html
+++ b/master/tutorials/blinky/blinky.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Project Blinky &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Project Blinky &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="Blinky, your “Hello World!”, on Arduino Zero" href="arduino_zero.html"/>
           <link rel="prev" title="Tutorials" href="../tutorials.html"/> 
@@ -387,7 +387,7 @@ <h2><a class="toc-backref" href="#id4">Overview of Steps</a><a class="headerlink
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/blinky/blinky_console.html b/master/tutorials/blinky/blinky_console.html
index 56b6e4f8d..d673d65ab 100644
--- a/master/tutorials/blinky/blinky_console.html
+++ b/master/tutorials/blinky/blinky_console.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Enabling The Console and Shell for Blinky &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Enabling The Console and Shell for Blinky &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Blinky" href="blinky.html"/>
           <link rel="next" title="Adding Repositories to your Project" href="../repo/add_repos.html"/>
           <link rel="prev" title="Blinky, your “Hello World!”, on STM32F4-Discovery" href="blinky_stm32f4disc.html"/> 
@@ -533,7 +533,7 @@ <h2><a class="toc-backref" href="#id8">Communicate with the Application</a><a cl
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/blinky/blinky_primo.html b/master/tutorials/blinky/blinky_primo.html
index c6a01df05..76078a8e3 100644
--- a/master/tutorials/blinky/blinky_primo.html
+++ b/master/tutorials/blinky/blinky_primo.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Blinky, your “Hello World!”, on Arduino Primo &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Blinky, your “Hello World!”, on Arduino Primo &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Blinky" href="blinky.html"/>
           <link rel="next" title="Blinky, your “Hello World!”, on Olimex" href="olimex.html"/>
           <link rel="prev" title="Blinky, your “Hello World!”, on Arduino Zero" href="arduino_zero.html"/> 
@@ -602,7 +602,7 @@ <h2><a class="toc-backref" href="#id12">Erase Flash</a><a class="headerlink" hre
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/blinky/blinky_stm32f4disc.html b/master/tutorials/blinky/blinky_stm32f4disc.html
index bf36db5e1..3542ac863 100644
--- a/master/tutorials/blinky/blinky_stm32f4disc.html
+++ b/master/tutorials/blinky/blinky_stm32f4disc.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Blinky, your “Hello World!”, on STM32F4-Discovery &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Blinky, your “Hello World!”, on STM32F4-Discovery &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Blinky" href="blinky.html"/>
           <link rel="next" title="Enabling The Console and Shell for Blinky" href="blinky_console.html"/>
           <link rel="prev" title="Blinky, your “Hello World!”, on RedBear Nano 2" href="rbnano2.html"/> 
@@ -538,7 +538,7 @@ <h2>Load the Bootloader and the Blinky Application Image<a class="headerlink" hr
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/blinky/nRF52.html b/master/tutorials/blinky/nRF52.html
index 1bb2930d3..a37f3576a 100644
--- a/master/tutorials/blinky/nRF52.html
+++ b/master/tutorials/blinky/nRF52.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Blinky, your “Hello World!”, on a nRF52 Development Kit &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Blinky, your “Hello World!”, on a nRF52 Development Kit &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Blinky" href="blinky.html"/>
           <link rel="next" title="Blinky, your “Hello World!”, on RedBear Nano 2" href="rbnano2.html"/>
           <link rel="prev" title="Blinky, your “Hello World!”, on Olimex" href="olimex.html"/> 
@@ -514,7 +514,7 @@ <h2><a class="toc-backref" href="#id7">Load the Bootloader and the Blinky Applic
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/blinky/olimex.html b/master/tutorials/blinky/olimex.html
index 2e24b4588..97920bbf4 100644
--- a/master/tutorials/blinky/olimex.html
+++ b/master/tutorials/blinky/olimex.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Blinky, your “Hello World!”, on Olimex &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Blinky, your “Hello World!”, on Olimex &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Blinky" href="blinky.html"/>
           <link rel="next" title="Blinky, your “Hello World!”, on a nRF52 Development Kit" href="nRF52.html"/>
           <link rel="prev" title="Blinky, your “Hello World!”, on Arduino Primo" href="blinky_primo.html"/> 
@@ -563,7 +563,7 @@ <h2><a class="toc-backref" href="#id8">Load the Bootloader and Blinky Applicatio
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/blinky/rbnano2.html b/master/tutorials/blinky/rbnano2.html
index e9ad473d9..2871eebdf 100644
--- a/master/tutorials/blinky/rbnano2.html
+++ b/master/tutorials/blinky/rbnano2.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Blinky, your “Hello World!”, on RedBear Nano 2 &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Blinky, your “Hello World!”, on RedBear Nano 2 &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Blinky" href="blinky.html"/>
           <link rel="next" title="Blinky, your “Hello World!”, on STM32F4-Discovery" href="blinky_stm32f4disc.html"/>
           <link rel="prev" title="Blinky, your “Hello World!”, on a nRF52 Development Kit" href="nRF52.html"/> 
@@ -524,7 +524,7 @@ <h2><a class="toc-backref" href="#id9">Load the Blinky Application Image</a><a c
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/devmgmt/add_newtmgr.html b/master/tutorials/devmgmt/add_newtmgr.html
index 5344abfc1..65f388784 100644
--- a/master/tutorials/devmgmt/add_newtmgr.html
+++ b/master/tutorials/devmgmt/add_newtmgr.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Enabling Newt Manager in Your Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Enabling Newt Manager in Your Application &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Remote Device Management" href="devmgmt.html"/>
           <link rel="next" title="Over-the-Air Image Upgrade" href="ota_upgrade_nrf52.html"/>
           <link rel="prev" title="Remote Device Management" href="devmgmt.html"/> 
@@ -610,7 +610,7 @@ <h3><a class="toc-backref" href="#id13">Customize the Newt Manager Commands that
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/devmgmt/devmgmt.html b/master/tutorials/devmgmt/devmgmt.html
index 2be2bb403..4f6eb45c3 100644
--- a/master/tutorials/devmgmt/devmgmt.html
+++ b/master/tutorials/devmgmt/devmgmt.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Remote Device Management &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Remote Device Management &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="Enabling Newt Manager in Your Application" href="add_newtmgr.html"/>
           <link rel="prev" title="Tasks and Priority Management" href="../os_fundamentals/tasks_lesson.html"/> 
@@ -315,7 +315,7 @@ <h1>Remote Device Management<a class="headerlink" href="#remote-device-managemen
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/devmgmt/ota_upgrade_nrf52.html b/master/tutorials/devmgmt/ota_upgrade_nrf52.html
index 77a35859c..5c06175df 100644
--- a/master/tutorials/devmgmt/ota_upgrade_nrf52.html
+++ b/master/tutorials/devmgmt/ota_upgrade_nrf52.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Over-the-Air Image Upgrade &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Over-the-Air Image Upgrade &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Remote Device Management" href="devmgmt.html"/>
           <link rel="next" title="Sensors" href="../sensors/sensors.html"/>
           <link rel="prev" title="Enabling Newt Manager in Your Application" href="add_newtmgr.html"/> 
@@ -526,7 +526,7 @@ <h2><a class="toc-backref" href="#id7">Step 4: Confirming the Image</a><a class=
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/lora/lorawanapp.html b/master/tutorials/lora/lorawanapp.html
index b9c0dd1dc..37c1f4d26 100644
--- a/master/tutorials/lora/lorawanapp.html
+++ b/master/tutorials/lora/lorawanapp.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>LoRaWAN App &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>LoRaWAN App &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="OS Fundamentals" href="../os_fundamentals/os_fundamentals.html"/>
           <link rel="prev" title="Use HCI access to NimBLE controller" href="../ble/blehci_project.html"/> 
@@ -626,7 +626,7 @@ <h2>Sending data<a class="headerlink" href="#sending-data" title="Permalink to t
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/os_fundamentals/event_queue.html b/master/tutorials/os_fundamentals/event_queue.html
index f26183f9d..1d3ad8280 100644
--- a/master/tutorials/os_fundamentals/event_queue.html
+++ b/master/tutorials/os_fundamentals/event_queue.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>How to Use Event Queues to Manage Multiple Events &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>How to Use Event Queues to Manage Multiple Events &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="OS Fundamentals" href="os_fundamentals.html"/>
           <link rel="next" title="Tasks and Priority Management" href="tasks_lesson.html"/>
           <link rel="prev" title="OS Fundamentals" href="os_fundamentals.html"/> 
@@ -820,7 +820,7 @@ <h3><a class="toc-backref" href="#id9">Putting It All Together</a><a class="head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/os_fundamentals/os_fundamentals.html b/master/tutorials/os_fundamentals/os_fundamentals.html
index ebfc56f65..69e3cced5 100644
--- a/master/tutorials/os_fundamentals/os_fundamentals.html
+++ b/master/tutorials/os_fundamentals/os_fundamentals.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>OS Fundamentals &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>OS Fundamentals &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="How to Use Event Queues to Manage Multiple Events" href="event_queue.html"/>
           <link rel="prev" title="LoRaWAN App" href="../lora/lorawanapp.html"/> 
@@ -315,7 +315,7 @@ <h1>OS Fundamentals<a class="headerlink" href="#os-fundamentals" title="Permalin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/os_fundamentals/tasks_lesson.html b/master/tutorials/os_fundamentals/tasks_lesson.html
index 06ca54cd5..beb9c0b89 100644
--- a/master/tutorials/os_fundamentals/tasks_lesson.html
+++ b/master/tutorials/os_fundamentals/tasks_lesson.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Tasks and Priority Management &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Tasks and Priority Management &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="OS Fundamentals" href="os_fundamentals.html"/>
           <link rel="next" title="Remote Device Management" href="../devmgmt/devmgmt.html"/>
           <link rel="prev" title="How to Use Event Queues to Manage Multiple Events" href="event_queue.html"/> 
@@ -604,7 +604,7 @@ <h3><a class="toc-backref" href="#id12">Priority Management Considerations</a><a
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/other/codesize.html b/master/tutorials/other/codesize.html
index 969aeac70..9d262128c 100644
--- a/master/tutorials/other/codesize.html
+++ b/master/tutorials/other/codesize.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>How to Reduce Application Code Size &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>How to Reduce Application Code Size &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Other" href="other.html"/>
           <link rel="next" title="Write a Test Suite for a Package" href="unit_test.html"/>
           <link rel="prev" title="Other" href="other.html"/> 
@@ -360,7 +360,7 @@ <h1>How to Reduce Application Code Size<a class="headerlink" href="#how-to-reduc
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/other/other.html b/master/tutorials/other/other.html
index 9d4e3d99e..a52c18382 100644
--- a/master/tutorials/other/other.html
+++ b/master/tutorials/other/other.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Other &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Other &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="How to Reduce Application Code Size" href="codesize.html"/>
           <link rel="prev" title="SEGGER SystemView" href="../tooling/segger_sysview.html"/> 
@@ -317,7 +317,7 @@ <h1>Other<a class="headerlink" href="#other" title="Permalink to this headline">
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/other/unit_test.html b/master/tutorials/other/unit_test.html
index cd1e342a5..4d0252f6c 100644
--- a/master/tutorials/other/unit_test.html
+++ b/master/tutorials/other/unit_test.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Write a Test Suite for a Package &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Write a Test Suite for a Package &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Other" href="other.html"/>
           <link rel="next" title="Enable Wi-Fi on Arduino MKR1000" href="wi-fi_on_arduino.html"/>
           <link rel="prev" title="How to Reduce Application Code Size" href="codesize.html"/> 
@@ -641,7 +641,7 @@ <h2>Congratulations<a class="headerlink" href="#congratulations" title="Permalin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/other/wi-fi_on_arduino.html b/master/tutorials/other/wi-fi_on_arduino.html
index 970533ee3..7a3a20233 100644
--- a/master/tutorials/other/wi-fi_on_arduino.html
+++ b/master/tutorials/other/wi-fi_on_arduino.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Enable Wi-Fi on Arduino MKR1000 &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Enable Wi-Fi on Arduino MKR1000 &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Other" href="other.html"/>
           <link rel="next" title="OS User Guide" href="../../os/os_user_guide.html"/>
           <link rel="prev" title="Write a Test Suite for a Package" href="unit_test.html"/> 
@@ -634,7 +634,7 @@ <h2>Establish TCP Connection and Talk!<a class="headerlink" href="#establish-tcp
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/repo/add_repos.html b/master/tutorials/repo/add_repos.html
index 7ca64fd56..5d861c556 100644
--- a/master/tutorials/repo/add_repos.html
+++ b/master/tutorials/repo/add_repos.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Adding Repositories to your Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Adding Repositories to your Project &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="Create a Repo out of a Project" href="create_repo.html"/>
           <link rel="prev" title="Enabling The Console and Shell for Blinky" href="../blinky/blinky_console.html"/> 
@@ -581,7 +581,7 @@ <h2>How to find out what Repos are available for Mynewt components<a class="head
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/repo/create_repo.html b/master/tutorials/repo/create_repo.html
index f25857e6d..8dddf564e 100644
--- a/master/tutorials/repo/create_repo.html
+++ b/master/tutorials/repo/create_repo.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Create a Repo out of a Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Create a Repo out of a Project &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Adding Repositories to your Project" href="add_repos.html"/>
           <link rel="next" title="Accessing a private repository" href="private_repo.html"/>
           <link rel="prev" title="Adding Repositories to your Project" href="add_repos.html"/> 
@@ -468,7 +468,7 @@ <h2>Resolving dependencies<a class="headerlink" href="#resolving-dependencies" t
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/repo/private_repo.html b/master/tutorials/repo/private_repo.html
index 06f87eec2..859f7970b 100644
--- a/master/tutorials/repo/private_repo.html
+++ b/master/tutorials/repo/private_repo.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Accessing a private repository &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Accessing a private repository &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Adding Repositories to your Project" href="add_repos.html"/>
           <link rel="next" title="Upgrade a repo" href="upgrade_repo.html"/>
           <link rel="prev" title="Create a Repo out of a Project" href="create_repo.html"/> 
@@ -353,7 +353,7 @@ <h1>Accessing a private repository<a class="headerlink" href="#accessing-a-priva
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/repo/upgrade_repo.html b/master/tutorials/repo/upgrade_repo.html
index 59232745c..574c9384f 100644
--- a/master/tutorials/repo/upgrade_repo.html
+++ b/master/tutorials/repo/upgrade_repo.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Upgrade a repo &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Upgrade a repo &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Adding Repositories to your Project" href="add_repos.html"/>
           <link rel="next" title="Project Slinky" href="../slinky/project-slinky.html"/>
           <link rel="prev" title="Accessing a private repository" href="private_repo.html"/> 
@@ -322,7 +322,7 @@ <h1>Upgrade a repo<a class="headerlink" href="#upgrade-a-repo" title="Permalink
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/air_quality.html b/master/tutorials/sensors/air_quality.html
index b76a6677e..e18233fcd 100644
--- a/master/tutorials/sensors/air_quality.html
+++ b/master/tutorials/sensors/air_quality.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Air Quality Sensor Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Air Quality Sensor Project &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Sensors" href="sensors.html"/>
           <link rel="next" title="Air Quality Sensor Project" href="air_quality_sensor.html"/>
           <link rel="prev" title="Adding OIC Sensor Support to the bleprph_oic Application" href="sensor_bleprph_oic.html"/> 
@@ -323,7 +323,7 @@ <h1>Air Quality Sensor Project<a class="headerlink" href="#air-quality-sensor-pr
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/air_quality_ble.html b/master/tutorials/sensors/air_quality_ble.html
index 00bb561f8..7b2669daf 100644
--- a/master/tutorials/sensors/air_quality_ble.html
+++ b/master/tutorials/sensors/air_quality_ble.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Air Quality Sensor Project via Bluetooth &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Air Quality Sensor Project via Bluetooth &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Air Quality Sensor Project" href="air_quality.html"/>
           <link rel="next" title="Adding an Analog Sensor on nRF52" href="nrf52_adc.html"/>
           <link rel="prev" title="Air Quality Sensor Project" href="air_quality_sensor.html"/> 
@@ -504,7 +504,7 @@ <h2>Add Bluetooth GATT Services<a class="headerlink" href="#add-bluetooth-gatt-s
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/air_quality_sensor.html b/master/tutorials/sensors/air_quality_sensor.html
index e502bfe2f..3714fd574 100644
--- a/master/tutorials/sensors/air_quality_sensor.html
+++ b/master/tutorials/sensors/air_quality_sensor.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Air Quality Sensor Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Air Quality Sensor Project &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Air Quality Sensor Project" href="air_quality.html"/>
           <link rel="next" title="Air Quality Sensor Project via Bluetooth" href="air_quality_ble.html"/>
           <link rel="prev" title="Air Quality Sensor Project" href="air_quality.html"/> 
@@ -1013,7 +1013,7 @@ <h2><a class="toc-backref" href="#id8">Using HAL for Drivers</a><a class="header
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/nrf52_adc.html b/master/tutorials/sensors/nrf52_adc.html
index 8c64426e1..181fac925 100644
--- a/master/tutorials/sensors/nrf52_adc.html
+++ b/master/tutorials/sensors/nrf52_adc.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Adding an Analog Sensor on nRF52 &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Adding an Analog Sensor on nRF52 &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Sensors" href="sensors.html"/>
           <link rel="next" title="Enabling and Calibrating Off-Board DRV2605 LRA Actuator" href="sensor_nrf52_drv2605.html"/>
           <link rel="prev" title="Air Quality Sensor Project via Bluetooth" href="air_quality_ble.html"/> 
@@ -1054,7 +1054,7 @@ <h2><a class="toc-backref" href="#id11">Conclusion</a><a class="headerlink" href
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensor_bleprph_oic.html b/master/tutorials/sensors/sensor_bleprph_oic.html
index 13dbe5206..bbe7f2e3d 100644
--- a/master/tutorials/sensors/sensor_bleprph_oic.html
+++ b/master/tutorials/sensors/sensor_bleprph_oic.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Adding OIC Sensor Support to the bleprph_oic Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Adding OIC Sensor Support to the bleprph_oic Application &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Enabling OIC Sensor Data Monitoring" href="sensor_oic_overview.html"/>
           <link rel="next" title="Air Quality Sensor Project" href="air_quality.html"/>
           <link rel="prev" title="Enabling OIC Sensor Data Monitoring in the sensors_test Application" href="sensor_nrf52_bno055_oic.html"/> 
@@ -622,7 +622,7 @@ <h2><a class="toc-backref" href="#id12">Step 7: Viewing Sensor Data from the Myn
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensor_nrf52_bno055.html b/master/tutorials/sensors/sensor_nrf52_bno055.html
index e766b9381..48f76f6a3 100644
--- a/master/tutorials/sensors/sensor_nrf52_bno055.html
+++ b/master/tutorials/sensors/sensor_nrf52_bno055.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Enabling an Off-Board Sensor in an Existing Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Enabling an Off-Board Sensor in an Existing Application &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Sensor Tutorials Overview" href="sensors_framework.html"/>
           <link rel="next" title="Changing the Default Configuration for a Sensor" href="sensor_offboard_config.html"/>
           <link rel="prev" title="Sensor Tutorials Overview" href="sensors_framework.html"/> 
@@ -882,7 +882,7 @@ <h2><a class="toc-backref" href="#id16">Next Steps</a><a class="headerlink" href
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensor_nrf52_bno055_oic.html b/master/tutorials/sensors/sensor_nrf52_bno055_oic.html
index 0f80e5586..d3177077b 100644
--- a/master/tutorials/sensors/sensor_nrf52_bno055_oic.html
+++ b/master/tutorials/sensors/sensor_nrf52_bno055_oic.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Enabling OIC Sensor Data Monitoring in the sensors_test Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Enabling OIC Sensor Data Monitoring in the sensors_test Application &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Enabling OIC Sensor Data Monitoring" href="sensor_oic_overview.html"/>
           <link rel="next" title="Adding OIC Sensor Support to the bleprph_oic Application" href="sensor_bleprph_oic.html"/>
           <link rel="prev" title="Enabling OIC Sensor Data Monitoring" href="sensor_oic_overview.html"/> 
@@ -443,7 +443,7 @@ <h2><a class="toc-backref" href="#id4">Step 3: Viewing Sensor Data from the Myne
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensor_nrf52_drv2605.html b/master/tutorials/sensors/sensor_nrf52_drv2605.html
index 38b7eb37b..b325843b1 100644
--- a/master/tutorials/sensors/sensor_nrf52_drv2605.html
+++ b/master/tutorials/sensors/sensor_nrf52_drv2605.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Enabling and Calibrating Off-Board DRV2605 LRA Actuator &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Enabling and Calibrating Off-Board DRV2605 LRA Actuator &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Sensors" href="sensors.html"/>
           <link rel="next" title="Tooling" href="../tooling/tooling.html"/>
           <link rel="prev" title="Adding an Analog Sensor on nRF52" href="nrf52_adc.html"/> 
@@ -518,7 +518,7 @@ <h2><a class="toc-backref" href="#id6">Conclusion</a><a class="headerlink" href=
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensor_offboard_config.html b/master/tutorials/sensors/sensor_offboard_config.html
index 6e228c2ff..ad2f419ce 100644
--- a/master/tutorials/sensors/sensor_offboard_config.html
+++ b/master/tutorials/sensors/sensor_offboard_config.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Changing the Default Configuration for a Sensor &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Changing the Default Configuration for a Sensor &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Sensor Tutorials Overview" href="sensors_framework.html"/>
           <link rel="next" title="Developing an Application for an Onboard Sensor" href="sensor_thingy_lis2dh12_onb.html"/>
           <link rel="prev" title="Enabling an Off-Board Sensor in an Existing Application" href="sensor_nrf52_bno055.html"/> 
@@ -554,7 +554,7 @@ <h3><a class="toc-backref" href="#id11">Step 8: Verifying that the Accelerometer
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensor_oic_overview.html b/master/tutorials/sensors/sensor_oic_overview.html
index f161aff6e..c821db86d 100644
--- a/master/tutorials/sensors/sensor_oic_overview.html
+++ b/master/tutorials/sensors/sensor_oic_overview.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Enabling OIC Sensor Data Monitoring &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Enabling OIC Sensor Data Monitoring &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Sensor Tutorials Overview" href="sensors_framework.html"/>
           <link rel="next" title="Enabling OIC Sensor Data Monitoring in the sensors_test Application" href="sensor_nrf52_bno055_oic.html"/>
           <link rel="prev" title="Developing an Application for an Onboard Sensor" href="sensor_thingy_lis2dh12_onb.html"/> 
@@ -386,7 +386,7 @@ <h2><a class="toc-backref" href="#id2">Overview of OIC Support in the Sensor Fra
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensor_thingy_lis2dh12_onb.html b/master/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
index 8e5a20cbc..684f42073 100644
--- a/master/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
+++ b/master/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Developing an Application for an Onboard Sensor &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Developing an Application for an Onboard Sensor &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Sensor Tutorials Overview" href="sensors_framework.html"/>
           <link rel="next" title="Enabling OIC Sensor Data Monitoring" href="sensor_oic_overview.html"/>
           <link rel="prev" title="Changing the Default Configuration for a Sensor" href="sensor_offboard_config.html"/> 
@@ -1030,7 +1030,7 @@ <h3><a class="toc-backref" href="#id15">Step 4: Rebuilding the Application and C
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensors.html b/master/tutorials/sensors/sensors.html
index d3be4208b..05c6b8ff7 100644
--- a/master/tutorials/sensors/sensors.html
+++ b/master/tutorials/sensors/sensors.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sensors &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sensors &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="Sensor Tutorials Overview" href="sensors_framework.html"/>
           <link rel="prev" title="Over-the-Air Image Upgrade" href="../devmgmt/ota_upgrade_nrf52.html"/> 
@@ -319,7 +319,7 @@ <h1>Sensors<a class="headerlink" href="#sensors" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/sensors/sensors_framework.html b/master/tutorials/sensors/sensors_framework.html
index 50a47d4fd..bb0fc0403 100644
--- a/master/tutorials/sensors/sensors_framework.html
+++ b/master/tutorials/sensors/sensors_framework.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Sensor Tutorials Overview &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Sensor Tutorials Overview &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Sensors" href="sensors.html"/>
           <link rel="next" title="Enabling an Off-Board Sensor in an Existing Application" href="sensor_nrf52_bno055.html"/>
           <link rel="prev" title="Sensors" href="sensors.html"/> 
@@ -385,7 +385,7 @@ <h2><a class="toc-backref" href="#id3">Prerequisites</a><a class="headerlink" hr
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/slinky/project-nrf52-slinky.html b/master/tutorials/slinky/project-nrf52-slinky.html
index 96139b83d..71988b081 100644
--- a/master/tutorials/slinky/project-nrf52-slinky.html
+++ b/master/tutorials/slinky/project-nrf52-slinky.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Project Slinky using the Nordic nRF52 Board &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Project Slinky using the Nordic nRF52 Board &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Slinky" href="project-slinky.html"/>
           <link rel="next" title="Project Slinky Using Olimex Board" href="project-stm32-slinky.html"/>
           <link rel="prev" title="Project Sim Slinky" href="project-sim-slinky.html"/> 
@@ -550,7 +550,7 @@ <h2><a class="toc-backref" href="#id9">Use Newtmgr to Query the Board</a><a clas
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/slinky/project-sim-slinky.html b/master/tutorials/slinky/project-sim-slinky.html
index 562b2d8ab..db4e9300e 100644
--- a/master/tutorials/slinky/project-sim-slinky.html
+++ b/master/tutorials/slinky/project-sim-slinky.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Project Sim Slinky &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Project Sim Slinky &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Slinky" href="project-slinky.html"/>
           <link rel="next" title="Project Slinky using the Nordic nRF52 Board" href="project-nrf52-slinky.html"/>
           <link rel="prev" title="Project Slinky" href="project-slinky.html"/> 
@@ -433,7 +433,7 @@ <h2><a class="toc-backref" href="#id7">Executing newtmgr commands with the targe
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/slinky/project-slinky.html b/master/tutorials/slinky/project-slinky.html
index 03753d0e0..f48e2d75f 100644
--- a/master/tutorials/slinky/project-slinky.html
+++ b/master/tutorials/slinky/project-slinky.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Project Slinky &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Project Slinky &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="Project Sim Slinky" href="project-sim-slinky.html"/>
           <link rel="prev" title="Upgrade a repo" href="../repo/upgrade_repo.html"/> 
@@ -365,7 +365,7 @@ <h2><a class="toc-backref" href="#id3">Overview of Steps</a><a class="headerlink
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/slinky/project-stm32-slinky.html b/master/tutorials/slinky/project-stm32-slinky.html
index 1c2c3c5dd..c9234dd2a 100644
--- a/master/tutorials/slinky/project-stm32-slinky.html
+++ b/master/tutorials/slinky/project-stm32-slinky.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Project Slinky Using Olimex Board &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Project Slinky Using Olimex Board &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Project Slinky" href="project-slinky.html"/>
           <link rel="next" title="Bluetooth Low Energy" href="../ble/ble.html"/>
           <link rel="prev" title="Project Slinky using the Nordic nRF52 Board" href="project-nrf52-slinky.html"/> 
@@ -585,7 +585,7 @@ <h2><a class="toc-backref" href="#id10">Use Newtmgr to Query the Board</a><a cla
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/tooling/segger_rtt.html b/master/tutorials/tooling/segger_rtt.html
index 5b85c186d..b431c02df 100644
--- a/master/tutorials/tooling/segger_rtt.html
+++ b/master/tutorials/tooling/segger_rtt.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>SEGGER RTT Console &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>SEGGER RTT Console &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tooling" href="tooling.html"/>
           <link rel="next" title="SEGGER SystemView" href="segger_sysview.html"/>
           <link rel="prev" title="Tooling" href="tooling.html"/> 
@@ -414,7 +414,7 @@ <h3><a class="toc-backref" href="#id4">Connect to console</a><a class="headerlin
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/tooling/segger_sysview.html b/master/tutorials/tooling/segger_sysview.html
index c79b619b4..7879d4226 100644
--- a/master/tutorials/tooling/segger_sysview.html
+++ b/master/tutorials/tooling/segger_sysview.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>SEGGER SystemView &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>SEGGER SystemView &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tooling" href="tooling.html"/>
           <link rel="next" title="Other" href="../other/other.html"/>
           <link rel="prev" title="SEGGER RTT Console" href="segger_rtt.html"/> 
@@ -399,7 +399,7 @@ <h3><a class="toc-backref" href="#id5">Launch the app</a><a class="headerlink" h
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/tooling/tooling.html b/master/tutorials/tooling/tooling.html
index 0e862fc1e..d64891b4e 100644
--- a/master/tutorials/tooling/tooling.html
+++ b/master/tutorials/tooling/tooling.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Tooling &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Tooling &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="SEGGER RTT Console" href="segger_rtt.html"/>
           <link rel="prev" title="Enabling and Calibrating Off-Board DRV2605 LRA Actuator" href="../sensors/sensor_nrf52_drv2605.html"/> 
@@ -315,7 +315,7 @@ <h1>Tooling<a class="headerlink" href="#tooling" title="Permalink to this headli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/master/tutorials/tutorials.html b/master/tutorials/tutorials.html
index ecae0a73f..c7abe8db8 100644
--- a/master/tutorials/tutorials.html
+++ b/master/tutorials/tutorials.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Tutorials &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Tutorials &mdash; Apache Mynewt latest documentation</title>
     
 
     
@@ -40,7 +40,7 @@
           <link rel="index" title="Index"
                 href="../genindex.html"/>
           <link rel="search" title="Search" href="../search.html"/>
-      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html"/>
+      <link rel="top" title="Apache Mynewt latest documentation" href="../index.html"/>
           <link rel="next" title="Project Blinky" href="blinky/blinky.html"/>
           <link rel="prev" title="Concepts" href="../concepts.html"/> 
 
@@ -394,7 +394,7 @@ <h2><a class="toc-backref" href="#id3">Tutorial categories</a><a class="headerli
     <script type="text/javascript">
         var DOCUMENTATION_OPTIONS = {
             URL_ROOT:'../',
-            VERSION:'1.3.0',
+            VERSION:'latest',
             COLLAPSE_INDEX:false,
             FILE_SUFFIX:'.html',
             HAS_SOURCE:  true,
diff --git a/sitemap.xml b/sitemap.xml
index ada5aaa52..fa21be6f3 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -76,7 +76,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
diff --git a/v0_9_0/sitemap.xml b/v0_9_0/sitemap.xml
index 03af2145e..d0e911a2a 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>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -12,7 +12,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -20,7 +20,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -53,7 +53,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -65,7 +65,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -101,7 +101,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -111,13 +111,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_0_0/sitemap.xml b/v1_0_0/sitemap.xml
index b49d44d69..07f4f037d 100644
--- a/v1_0_0/sitemap.xml
+++ b/v1_0_0/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,7 +13,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -22,7 +22,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -30,7 +30,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -38,7 +38,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -46,7 +46,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -54,7 +54,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -62,7 +62,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -71,7 +71,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -83,7 +83,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -119,7 +119,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -129,25 +129,25 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_1_0/sitemap.xml b/v1_1_0/sitemap.xml
index a6642b016..2110492fc 100644
--- a/v1_1_0/sitemap.xml
+++ b/v1_1_0/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -125,7 +125,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -135,25 +135,25 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_2_0/sitemap.xml b/v1_2_0/sitemap.xml
index ef498b3bc..d65d6909e 100644
--- a/v1_2_0/sitemap.xml
+++ b/v1_2_0/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -125,7 +125,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -135,37 +135,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_3_0/sitemap.xml b/v1_3_0/sitemap.xml
index 06ea68846..7a5ab1d53 100644
--- a/v1_3_0/sitemap.xml
+++ b/v1_3_0/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -76,7 +76,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -85,7 +85,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -97,7 +97,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -133,7 +133,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -143,37 +143,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-10-16</lastmod>
+     <lastmod>2018-10-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_4_0/_static/common.html b/v1_4_0/_static/common.html
index 978ad0740..a05d48d43 100644
--- a/v1_4_0/_static/common.html
+++ b/v1_4_0/_static/common.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>&lt;no title&gt; &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>&lt;no title&gt; &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" /> 
 
   
   <script src="js/modernizr.min.js"></script>
@@ -283,7 +283,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.4.1, Apache NimBLE 1.0
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/_static/documentation_options.js b/v1_4_0/_static/documentation_options.js
index 2b8dc45a1..8511e62b1 100644
--- a/v1_4_0/_static/documentation_options.js
+++ b/v1_4_0/_static/documentation_options.js
@@ -1,6 +1,6 @@
 var DOCUMENTATION_OPTIONS = {
     URL_ROOT: '',
-    VERSION: '1.3.0',
+    VERSION: '1.4.0',
     LANGUAGE: 'None',
     COLLAPSE_INDEX: false,
     FILE_SUFFIX: '.html',
diff --git a/v1_4_0/concepts.html b/v1_4_0/concepts.html
index e56619c59..f45cec996 100644
--- a/v1_4_0/concepts.html
+++ b/v1_4_0/concepts.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Concepts &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Concepts &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="genindex.html" />
   <link rel="search" title="Search" href="search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="index.html" />
   <link rel="next" title="Tutorials" href="tutorials/tutorials.html" />
   <link rel="prev" title="Using the Serial Port with Mynewt OS" href="get_started/serial_access.html" /> 
 
@@ -480,7 +480,7 @@ <h2><a class="toc-backref" href="#id5">Configuration</a><a class="headerlink" hr
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: './',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/genindex.html b/v1_4_0/genindex.html
index 4a8ceab41..c708ac55f 100644
--- a/v1_4_0/genindex.html
+++ b/v1_4_0/genindex.html
@@ -12,7 +12,7 @@
   
 
   
-  <title>Index &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Index &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -41,7 +41,7 @@
   <link rel="stylesheet" href="_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="#" />
   <link rel="search" title="Search" href="search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="index.html" /> 
 
   
   <script src="_static/js/modernizr.min.js"></script>
@@ -1369,7 +1369,7 @@ <h2 id="T">T</h2>
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: './',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/get_started/docker.html b/v1_4_0/get_started/docker.html
index d9b7bee6d..e606960d4 100644
--- a/v1_4_0/get_started/docker.html
+++ b/v1_4_0/get_started/docker.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Everything You Need in a Docker Container &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Everything You Need in a Docker Container &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Setup &amp; Get Started" href="index.html" />
   <link rel="next" title="Creating Your First Mynewt Project" href="project_create.html" />
   <link rel="prev" title="Installing the Cross Tools for ARM" href="native_install/cross_tools.html" /> 
@@ -437,7 +437,7 @@ <h3><a class="toc-backref" href="#id8">Enable USB2 and select your device</a><a
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/get_started/index.html b/v1_4_0/get_started/index.html
index b1ea0e0cf..39ebec0e2 100644
--- a/v1_4_0/get_started/index.html
+++ b/v1_4_0/get_started/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Setup &amp; Get Started &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Setup &amp; Get Started &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="next" title="Native Installation" href="native_install/index.html" />
   <link rel="prev" title="Introduction" href="../index.html" /> 
 
@@ -330,7 +330,7 @@ <h1>Setup &amp; Get Started<a class="headerlink" href="#setup-get-started" title
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/get_started/native_install/cross_tools.html b/v1_4_0/get_started/native_install/cross_tools.html
index 7c7ecec98..4adc79120 100644
--- a/v1_4_0/get_started/native_install/cross_tools.html
+++ b/v1_4_0/get_started/native_install/cross_tools.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing the Cross Tools for ARM &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing the Cross Tools for ARM &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Native Installation" href="index.html" />
   <link rel="next" title="Everything You Need in a Docker Container" href="../docker.html" />
   <link rel="prev" title="Installing Native Toolchain" href="native_tools.html" /> 
@@ -550,7 +550,7 @@ <h3><a class="toc-backref" href="#id10">Installing SEGGER J-Link</a><a class="he
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/get_started/native_install/index.html b/v1_4_0/get_started/native_install/index.html
index e7b95e093..47ca38603 100644
--- a/v1_4_0/get_started/native_install/index.html
+++ b/v1_4_0/get_started/native_install/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Native Installation &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Native Installation &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Setup &amp; Get Started" href="../index.html" />
   <link rel="next" title="Installing Newt on Mac OS" href="../../newt/install/newt_mac.html" />
   <link rel="prev" title="Setup &amp; Get Started" href="../index.html" /> 
@@ -347,7 +347,7 @@ <h1>Native Installation<a class="headerlink" href="#native-installation" title="
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/get_started/native_install/native_tools.html b/v1_4_0/get_started/native_install/native_tools.html
index 48459dcfe..d0bb02164 100644
--- a/v1_4_0/get_started/native_install/native_tools.html
+++ b/v1_4_0/get_started/native_install/native_tools.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Native Toolchain &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Native Toolchain &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Native Installation" href="index.html" />
   <link rel="next" title="Installing the Cross Tools for ARM" href="cross_tools.html" />
   <link rel="prev" title="Installing Newt on Windows" href="../../newt/install/newt_windows.html" /> 
@@ -466,7 +466,7 @@ <h2><a class="toc-backref" href="#id8">Next</a><a class="headerlink" href="#next
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/get_started/project_create.html b/v1_4_0/get_started/project_create.html
index ed05134ab..744248346 100644
--- a/v1_4_0/get_started/project_create.html
+++ b/v1_4_0/get_started/project_create.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Creating Your First Mynewt Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Creating Your First Mynewt Project &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Setup &amp; Get Started" href="index.html" />
   <link rel="next" title="Using the Serial Port with Mynewt OS" href="serial_access.html" />
   <link rel="prev" title="Everything You Need in a Docker Container" href="docker.html" /> 
@@ -721,7 +721,7 @@ <h2><a class="toc-backref" href="#id9">Exploring other Mynewt OS Features</a><a
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/get_started/serial_access.html b/v1_4_0/get_started/serial_access.html
index 0e1672965..577ca6b32 100644
--- a/v1_4_0/get_started/serial_access.html
+++ b/v1_4_0/get_started/serial_access.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Using the Serial Port with Mynewt OS &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Using the Serial Port with Mynewt OS &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Setup &amp; Get Started" href="index.html" />
   <link rel="next" title="Concepts" href="../concepts.html" />
   <link rel="prev" title="Creating Your First Mynewt Project" href="project_create.html" /> 
@@ -500,7 +500,7 @@ <h4><a class="toc-backref" href="#id11">Example for Windows Platforms</a><a clas
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/index.html b/v1_4_0/index.html
index 5fe0c78d6..7772095f2 100644
--- a/v1_4_0/index.html
+++ b/v1_4_0/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt Documentation &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt Documentation &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="genindex.html" />
   <link rel="search" title="Search" href="search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="#" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="#" />
   <link rel="next" title="Setup &amp; Get Started" href="get_started/index.html" /> 
 
   
@@ -362,7 +362,7 @@ <h2>Build your first Mynewt App with Newt<a class="headerlink" href="#build-your
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: './',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/misc/go_env.html b/v1_4_0/misc/go_env.html
index e3f9b6c42..4970cc08c 100644
--- a/v1_4_0/misc/go_env.html
+++ b/v1_4_0/misc/go_env.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Contributing to Newt or Newtmgr Tools &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Contributing to Newt or Newtmgr Tools &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Appendix" href="index.html" />
   <link rel="next" title="Developing Mynewt Applications with Visual Studio Code" href="ide.html" />
   <link rel="prev" title="Appendix" href="index.html" /> 
@@ -519,7 +519,7 @@ <h2><a class="toc-backref" href="#id8">Step 4: Updating and Rebuilding the Tools
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/misc/ide.html b/v1_4_0/misc/ide.html
index 93dde9b44..7f04631e6 100644
--- a/v1_4_0/misc/ide.html
+++ b/v1_4_0/misc/ide.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Developing Mynewt Applications with Visual Studio Code &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Developing Mynewt Applications with Visual Studio Code &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Appendix" href="index.html" />
   <link rel="prev" title="Contributing to Newt or Newtmgr Tools" href="go_env.html" /> 
 
@@ -637,7 +637,7 @@ <h2><a class="toc-backref" href="#id10">Working with Multiple Mynewt Application
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/misc/index.html b/v1_4_0/misc/index.html
index 272779a37..d48e5ed21 100644
--- a/v1_4_0/misc/index.html
+++ b/v1_4_0/misc/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Appendix &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Appendix &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="next" title="Contributing to Newt or Newtmgr Tools" href="go_env.html" />
   <link rel="prev" title="Mynewt FAQ - Troubleshooting" href="../mynewt_faq/troubleshoot_faq.html" /> 
 
@@ -307,7 +307,7 @@ <h1>Appendix<a class="headerlink" href="#appendix" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/admin_faq.html b/v1_4_0/mynewt_faq/admin_faq.html
index a52688eda..047148d6d 100644
--- a/v1_4_0/mynewt_faq/admin_faq.html
+++ b/v1_4_0/mynewt_faq/admin_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Administrative &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Administrative &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Bluetooth" href="bluetooth_faq.html" />
   <link rel="prev" title="Mynewt FAQ" href="index.html" /> 
@@ -419,7 +419,7 @@ <h3><a class="toc-backref" href="#id6">I would like to make some edits to the do
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/bluetooth_faq.html b/v1_4_0/mynewt_faq/bluetooth_faq.html
index 48cc00a6f..44bf38b1b 100644
--- a/v1_4_0/mynewt_faq/bluetooth_faq.html
+++ b/v1_4_0/mynewt_faq/bluetooth_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Bluetooth &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Bluetooth &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Bootloader and Firmware Upgrade" href="boot_faq.html" />
   <link rel="prev" title="Mynewt FAQ - Administrative" href="admin_faq.html" /> 
@@ -489,7 +489,7 @@ <h2><a class="toc-backref" href="#id13">Read the Value of a Characteristic of a
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/boot_faq.html b/v1_4_0/mynewt_faq/boot_faq.html
index 1961fbfaa..6f49bdf4b 100644
--- a/v1_4_0/mynewt_faq/boot_faq.html
+++ b/v1_4_0/mynewt_faq/boot_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Bootloader and Firmware Upgrade &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Bootloader and Firmware Upgrade &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Drivers and Modules" href="modules_faq.html" />
   <link rel="prev" title="Mynewt FAQ - Bluetooth" href="bluetooth_faq.html" /> 
@@ -352,7 +352,7 @@ <h2><a class="toc-backref" href="#id4"><code class="docutils literal notranslate
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/fs_faq.html b/v1_4_0/mynewt_faq/fs_faq.html
index 7b8ac076a..91f2ebd3e 100644
--- a/v1_4_0/mynewt_faq/fs_faq.html
+++ b/v1_4_0/mynewt_faq/fs_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - File System &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - File System &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Hardware-Specific Questions" href="hardware_faq.html" />
   <link rel="prev" title="Mynewt FAQ - Drivers and Modules" href="modules_faq.html" /> 
@@ -330,7 +330,7 @@ <h2><a class="toc-backref" href="#id1"><code class="docutils literal notranslate
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/hardware_faq.html b/v1_4_0/mynewt_faq/hardware_faq.html
index 98a0df9f3..390f46c8f 100644
--- a/v1_4_0/mynewt_faq/hardware_faq.html
+++ b/v1_4_0/mynewt_faq/hardware_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Hardware-Specific Questions &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Hardware-Specific Questions &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Syntax, Semantics, Configuration" href="syntax_faq.html" />
   <link rel="prev" title="Mynewt FAQ - File System" href="fs_faq.html" /> 
@@ -361,7 +361,7 @@ <h3><a class="toc-backref" href="#id6">View Logs on the Redbear BLE Nano2</a><a
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/index.html b/v1_4_0/mynewt_faq/index.html
index a6a8ebc46..79df78445 100644
--- a/v1_4_0/mynewt_faq/index.html
+++ b/v1_4_0/mynewt_faq/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="next" title="Mynewt FAQ - Administrative" href="admin_faq.html" />
   <link rel="prev" title="Installing Previous Releases of Newtmgr" href="../newtmgr/install/prev_releases.html" /> 
 
@@ -352,7 +352,7 @@ <h3>Version Control Applications with Git<a class="headerlink" href="#version-co
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/modules_faq.html b/v1_4_0/mynewt_faq/modules_faq.html
index 9f9554cfa..c7a71729b 100644
--- a/v1_4_0/mynewt_faq/modules_faq.html
+++ b/v1_4_0/mynewt_faq/modules_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Drivers and Modules &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Drivers and Modules &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - File System" href="fs_faq.html" />
   <link rel="prev" title="Mynewt FAQ - Bootloader and Firmware Upgrade" href="boot_faq.html" /> 
@@ -354,7 +354,7 @@ <h2><a class="toc-backref" href="#id3">Log Name vs. Module Number</a><a class="h
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/newt_faq.html b/v1_4_0/mynewt_faq/newt_faq.html
index 2020aea3c..3b8394451 100644
--- a/v1_4_0/mynewt_faq/newt_faq.html
+++ b/v1_4_0/mynewt_faq/newt_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Newt &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Newt &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Newt Manager" href="newtmgr_faq.html" />
   <link rel="prev" title="Mynewt FAQ - NFC" href="nfc_faq.html" /> 
@@ -340,7 +340,7 @@ <h2><a class="toc-backref" href="#id2"><code class="docutils literal notranslate
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/newtmgr_faq.html b/v1_4_0/mynewt_faq/newtmgr_faq.html
index f0d86c495..134097e88 100644
--- a/v1_4_0/mynewt_faq/newtmgr_faq.html
+++ b/v1_4_0/mynewt_faq/newtmgr_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Newt Manager &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Newt Manager &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Porting Mynewt" href="port_faq.html" />
   <link rel="prev" title="Mynewt FAQ - Newt" href="newt_faq.html" /> 
@@ -388,7 +388,7 @@ <h2><a class="toc-backref" href="#id4">Newt Manager with the Adafruit nRF52DK</a
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/nfc_faq.html b/v1_4_0/mynewt_faq/nfc_faq.html
index 2db5ebbcd..7b089bf13 100644
--- a/v1_4_0/mynewt_faq/nfc_faq.html
+++ b/v1_4_0/mynewt_faq/nfc_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - NFC &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - NFC &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Newt" href="newt_faq.html" />
   <link rel="prev" title="Mynewt FAQ - Syntax, Semantics, Configuration" href="syntax_faq.html" /> 
@@ -315,7 +315,7 @@ <h1>Mynewt FAQ - NFC<a class="headerlink" href="#mynewt-faq-nfc" title="Permalin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/port_faq.html b/v1_4_0/mynewt_faq/port_faq.html
index 477f2a7e1..38677dd4a 100644
--- a/v1_4_0/mynewt_faq/port_faq.html
+++ b/v1_4_0/mynewt_faq/port_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Porting Mynewt &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Porting Mynewt &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - Troubleshooting" href="troubleshoot_faq.html" />
   <link rel="prev" title="Mynewt FAQ - Newt Manager" href="newtmgr_faq.html" /> 
@@ -329,7 +329,7 @@ <h2><a class="toc-backref" href="#id1">Porting Mynewt to Core-M3 MCU</a><a class
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/syntax_faq.html b/v1_4_0/mynewt_faq/syntax_faq.html
index 356db4927..1b551df82 100644
--- a/v1_4_0/mynewt_faq/syntax_faq.html
+++ b/v1_4_0/mynewt_faq/syntax_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Syntax, Semantics, Configuration &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Syntax, Semantics, Configuration &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Mynewt FAQ - NFC" href="nfc_faq.html" />
   <link rel="prev" title="Mynewt FAQ - Hardware-Specific Questions" href="hardware_faq.html" /> 
@@ -376,7 +376,7 @@ <h2><a class="toc-backref" href="#id7">Alternatives to <code class="docutils lit
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/mynewt_faq/troubleshoot_faq.html b/v1_4_0/mynewt_faq/troubleshoot_faq.html
index 3f43aa7f2..5bccbfb32 100644
--- a/v1_4_0/mynewt_faq/troubleshoot_faq.html
+++ b/v1_4_0/mynewt_faq/troubleshoot_faq.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt FAQ - Troubleshooting &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt FAQ - Troubleshooting &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Mynewt FAQ" href="index.html" />
   <link rel="next" title="Appendix" href="../misc/index.html" />
   <link rel="prev" title="Mynewt FAQ - Porting Mynewt" href="port_faq.html" /> 
@@ -396,7 +396,7 @@ <h2><a class="toc-backref" href="#id6">Bug With Older Versions of <code class="d
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/README.html b/v1_4_0/network/docs/README.html
index 38779fc14..46454fe45 100644
--- a/v1_4_0/network/docs/README.html
+++ b/v1_4_0/network/docs/README.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Bluetooth Stack Documentation &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Bluetooth Stack Documentation &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" /> 
 
   
   <script src="../../_static/js/modernizr.min.js"></script>
@@ -316,7 +316,7 @@ <h2><a class="toc-backref" href="#id3">Previewing Changes</a><a class="headerlin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_hs/ble_att.html b/v1_4_0/network/docs/ble_hs/ble_att.html
index 712b60055..9ea68b2d0 100644
--- a/v1_4_0/network/docs/ble_hs/ble_att.html
+++ b/v1_4_0/network/docs/ble_hs/ble_att.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Host ATT Client Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Host ATT Client Reference &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Host" href="ble_hs.html" />
   <link rel="next" title="API for btshell app" href="../btshell/btshell_api.html" />
   <link rel="prev" title="NimBLE Host Identity Reference" href="ble_hs_id.html" /> 
@@ -404,7 +404,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_hs/ble_gap.html b/v1_4_0/network/docs/ble_hs/ble_gap.html
index 11b422a7f..db14ed4ae 100644
--- a/v1_4_0/network/docs/ble_hs/ble_gap.html
+++ b/v1_4_0/network/docs/ble_hs/ble_gap.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Host GAP Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Host GAP Reference &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Host" href="ble_hs.html" />
   <link rel="next" title="NimBLE Host GATT Client Reference" href="ble_gattc.html" />
   <link rel="prev" title="NimBLE Host Return Codes" href="ble_hs_return_codes.html" /> 
@@ -1483,7 +1483,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_hs/ble_gattc.html b/v1_4_0/network/docs/ble_hs/ble_gattc.html
index 61bf3db22..03b37ddb3 100644
--- a/v1_4_0/network/docs/ble_hs/ble_gattc.html
+++ b/v1_4_0/network/docs/ble_hs/ble_gattc.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Host GATT Client Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Host GATT Client Reference &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Host" href="ble_hs.html" />
   <link rel="next" title="NimBLE Host GATT Server Reference" href="ble_gatts.html" />
   <link rel="prev" title="NimBLE Host GAP Reference" href="ble_gap.html" /> 
@@ -1293,7 +1293,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_hs/ble_gatts.html b/v1_4_0/network/docs/ble_hs/ble_gatts.html
index e4c336f4f..98c6616fa 100644
--- a/v1_4_0/network/docs/ble_hs/ble_gatts.html
+++ b/v1_4_0/network/docs/ble_hs/ble_gatts.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Host GATT Server Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Host GATT Server Reference &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Host" href="ble_hs.html" />
   <link rel="next" title="NimBLE Host Identity Reference" href="ble_hs_id.html" />
   <link rel="prev" title="NimBLE Host GATT Client Reference" href="ble_gattc.html" /> 
@@ -1293,7 +1293,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_hs/ble_hs.html b/v1_4_0/network/docs/ble_hs/ble_hs.html
index 385cf16ff..67991e168 100644
--- a/v1_4_0/network/docs/ble_hs/ble_hs.html
+++ b/v1_4_0/network/docs/ble_hs/ble_hs.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Host &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Host &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="BLE User Guide" href="../index.html" />
   <link rel="next" title="NimBLE Host Return Codes" href="ble_hs_return_codes.html" />
   <link rel="prev" title="Respond to sync and reset events" href="../ble_setup/ble_sync_cb.html" /> 
@@ -338,7 +338,7 @@ <h2>Introduction<a class="headerlink" href="#introduction" title="Permalink to t
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_hs/ble_hs_id.html b/v1_4_0/network/docs/ble_hs/ble_hs_id.html
index fee050fea..b8aa4aec9 100644
--- a/v1_4_0/network/docs/ble_hs/ble_hs_id.html
+++ b/v1_4_0/network/docs/ble_hs/ble_hs_id.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Host Identity Reference &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Host Identity Reference &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Host" href="ble_hs.html" />
   <link rel="next" title="NimBLE Host ATT Client Reference" href="ble_att.html" />
   <link rel="prev" title="NimBLE Host GATT Server Reference" href="ble_gatts.html" /> 
@@ -378,7 +378,7 @@ <h2>Header<a class="headerlink" href="#header" title="Permalink to this headline
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_hs/ble_hs_return_codes.html b/v1_4_0/network/docs/ble_hs/ble_hs_return_codes.html
index cc604f1f5..c356058d9 100644
--- a/v1_4_0/network/docs/ble_hs/ble_hs_return_codes.html
+++ b/v1_4_0/network/docs/ble_hs/ble_hs_return_codes.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Host Return Codes &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Host Return Codes &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Host" href="ble_hs.html" />
   <link rel="next" title="NimBLE Host GAP Reference" href="ble_gap.html" />
   <link rel="prev" title="NimBLE Host" href="ble_hs.html" /> 
@@ -1267,7 +1267,7 @@ <h3><a class="toc-backref" href="#id11">Return codes - Security manager (peer)</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_sec.html b/v1_4_0/network/docs/ble_sec.html
index ea15200ad..12dac9c3d 100644
--- a/v1_4_0/network/docs/ble_sec.html
+++ b/v1_4_0/network/docs/ble_sec.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Security &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Security &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="BLE User Guide" href="index.html" />
   <link rel="next" title="NimBLE Setup" href="ble_setup/ble_setup_intro.html" />
   <link rel="prev" title="BLE User Guide" href="index.html" /> 
@@ -371,7 +371,7 @@ <h2>Privacy Feature<a class="headerlink" href="#privacy-feature" title="Permalin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_setup/ble_addr.html b/v1_4_0/network/docs/ble_setup/ble_addr.html
index 9088e13e3..14e1693ff 100644
--- a/v1_4_0/network/docs/ble_setup/ble_addr.html
+++ b/v1_4_0/network/docs/ble_setup/ble_addr.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Configure device address &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Configure device address &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Setup" href="ble_setup_intro.html" />
   <link rel="next" title="Respond to sync and reset events" href="ble_sync_cb.html" />
   <link rel="prev" title="Configure clock for controller" href="ble_lp_clock.html" /> 
@@ -367,7 +367,7 @@ <h2>Method 3: Configure a random address at runtime<a class="headerlink" href="#
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_setup/ble_lp_clock.html b/v1_4_0/network/docs/ble_setup/ble_lp_clock.html
index 564c0e48b..cac0b4325 100644
--- a/v1_4_0/network/docs/ble_setup/ble_lp_clock.html
+++ b/v1_4_0/network/docs/ble_setup/ble_lp_clock.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Configure clock for controller &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Configure clock for controller &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Setup" href="ble_setup_intro.html" />
   <link rel="next" title="Configure device address" href="ble_addr.html" />
   <link rel="prev" title="NimBLE Setup" href="ble_setup_intro.html" /> 
@@ -370,7 +370,7 @@ <h2>Crystal settle time configuration<a class="headerlink" href="#crystal-settle
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_setup/ble_setup_intro.html b/v1_4_0/network/docs/ble_setup/ble_setup_intro.html
index abca94f13..d6bd982f9 100644
--- a/v1_4_0/network/docs/ble_setup/ble_setup_intro.html
+++ b/v1_4_0/network/docs/ble_setup/ble_setup_intro.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>NimBLE Setup &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>NimBLE Setup &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="BLE User Guide" href="../index.html" />
   <link rel="next" title="Configure clock for controller" href="ble_lp_clock.html" />
   <link rel="prev" title="NimBLE Security" href="../ble_sec.html" /> 
@@ -337,7 +337,7 @@ <h1>NimBLE Setup<a class="headerlink" href="#nimble-setup" title="Permalink to t
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/ble_setup/ble_sync_cb.html b/v1_4_0/network/docs/ble_setup/ble_sync_cb.html
index dc1e8b829..3971dbd28 100644
--- a/v1_4_0/network/docs/ble_setup/ble_sync_cb.html
+++ b/v1_4_0/network/docs/ble_setup/ble_sync_cb.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Respond to sync and reset events &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Respond to sync and reset events &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="NimBLE Setup" href="ble_setup_intro.html" />
   <link rel="next" title="NimBLE Host" href="../ble_hs/ble_hs.html" />
   <link rel="prev" title="Configure device address" href="ble_addr.html" /> 
@@ -383,7 +383,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/btshell/btshell_GAP.html b/v1_4_0/network/docs/btshell/btshell_GAP.html
index dadcb246f..f9b9ff0c6 100644
--- a/v1_4_0/network/docs/btshell/btshell_GAP.html
+++ b/v1_4_0/network/docs/btshell/btshell_GAP.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>GAP API for btshell &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>GAP API for btshell &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="API for btshell app" href="btshell_api.html" />
   <link rel="next" title="GATT feature API for btshell" href="btshell_GATT.html" />
   <link rel="prev" title="API for btshell app" href="btshell_api.html" /> 
@@ -1923,7 +1923,7 @@ <h3>Keys storage<a class="headerlink" href="#keys-storage" title="Permalink to t
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/btshell/btshell_GATT.html b/v1_4_0/network/docs/btshell/btshell_GATT.html
index aeded7491..66f6e301f 100644
--- a/v1_4_0/network/docs/btshell/btshell_GATT.html
+++ b/v1_4_0/network/docs/btshell/btshell_GATT.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>GATT feature API for btshell &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>GATT feature API for btshell &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="API for btshell app" href="btshell_api.html" />
   <link rel="next" title="Advertisement Data Fields" href="btshell_advdata.html" />
   <link rel="prev" title="GAP API for btshell" href="btshell_GAP.html" /> 
@@ -566,7 +566,7 @@ <h3>Configuration<a class="headerlink" href="#configuration" title="Permalink to
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/btshell/btshell_advdata.html b/v1_4_0/network/docs/btshell/btshell_advdata.html
index 8d26063e7..1ef0884b4 100644
--- a/v1_4_0/network/docs/btshell/btshell_advdata.html
+++ b/v1_4_0/network/docs/btshell/btshell_advdata.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Advertisement Data Fields &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Advertisement Data Fields &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="API for btshell app" href="btshell_api.html" />
   <link rel="next" title="Bluetooth Mesh" href="../mesh/index.html" />
   <link rel="prev" title="GATT feature API for btshell" href="btshell_GATT.html" /> 
@@ -425,7 +425,7 @@ <h1>Advertisement Data Fields<a class="headerlink" href="#advertisement-data-fie
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/btshell/btshell_api.html b/v1_4_0/network/docs/btshell/btshell_api.html
index 65e3a69db..eca005036 100644
--- a/v1_4_0/network/docs/btshell/btshell_api.html
+++ b/v1_4_0/network/docs/btshell/btshell_api.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>API for btshell app &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>API for btshell app &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="BLE User Guide" href="../index.html" />
   <link rel="next" title="GAP API for btshell" href="btshell_GAP.html" />
   <link rel="prev" title="NimBLE Host ATT Client Reference" href="../ble_hs/ble_att.html" /> 
@@ -434,7 +434,7 @@ <h2><a class="toc-backref" href="#id9">Perform a passive scan</a><a class="heade
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/index.html b/v1_4_0/network/docs/index.html
index d3e9ad709..6cb9b5b15 100644
--- a/v1_4_0/network/docs/index.html
+++ b/v1_4_0/network/docs/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>BLE User Guide &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>BLE User Guide &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="next" title="NimBLE Security" href="ble_sec.html" />
   <link rel="prev" title="JSON" href="../../os/modules/json/json.html" /> 
 
@@ -416,7 +416,7 @@ <h2><a class="toc-backref" href="#id4">Example NimBLE projects</a><a class="head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/mesh/index.html b/v1_4_0/network/docs/mesh/index.html
index 4a011351b..7bf496bfc 100644
--- a/v1_4_0/network/docs/mesh/index.html
+++ b/v1_4_0/network/docs/mesh/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Bluetooth Mesh &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Bluetooth Mesh &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="BLE User Guide" href="../index.html" />
   <link rel="next" title="Sample application" href="sample.html" />
   <link rel="prev" title="Advertisement Data Fields" href="../btshell/btshell_advdata.html" /> 
@@ -403,7 +403,7 @@ <h2><a class="toc-backref" href="#id6">Mesh Node features supported by Apache My
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/network/docs/mesh/sample.html b/v1_4_0/network/docs/mesh/sample.html
index 0a53dc870..aa245c227 100644
--- a/v1_4_0/network/docs/mesh/sample.html
+++ b/v1_4_0/network/docs/mesh/sample.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sample application &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sample application &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Bluetooth Mesh" href="index.html" />
   <link rel="next" title="Newt Tool Guide" href="../../../newt/index.html" />
   <link rel="prev" title="Bluetooth Mesh" href="index.html" /> 
@@ -334,7 +334,7 @@ <h1>Sample application<a class="headerlink" href="#sample-application" title="Pe
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/README.html b/v1_4_0/newt/README.html
index d5dda6825..83fba72bc 100644
--- a/v1_4_0/newt/README.html
+++ b/v1_4_0/newt/README.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt Newt Tool Documentation &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt Newt Tool Documentation &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" /> 
 
   
   <script src="../_static/js/modernizr.min.js"></script>
@@ -312,7 +312,7 @@ <h2><a class="toc-backref" href="#id3">Previewing Changes</a><a class="headerlin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_build.html b/v1_4_0/newt/command_list/newt_build.html
index 261bb3fde..a91e3dce2 100644
--- a/v1_4_0/newt/command_list/newt_build.html
+++ b/v1_4_0/newt/command_list/newt_build.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt build &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt build &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt clean" href="newt_clean.html" />
   <link rel="prev" title="Command Structure" href="../newt_ops.html" /> 
@@ -376,7 +376,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_clean.html b/v1_4_0/newt/command_list/newt_clean.html
index fd9f440fc..b0adfa430 100644
--- a/v1_4_0/newt/command_list/newt_clean.html
+++ b/v1_4_0/newt/command_list/newt_clean.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt clean &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt clean &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt complete" href="newt_complete.html" />
   <link rel="prev" title="newt build" href="newt_build.html" /> 
@@ -378,7 +378,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_complete.html b/v1_4_0/newt/command_list/newt_complete.html
index 746cf6cbe..92149f62f 100644
--- a/v1_4_0/newt/command_list/newt_complete.html
+++ b/v1_4_0/newt/command_list/newt_complete.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt complete &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt complete &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt create-image" href="newt_create_image.html" />
   <link rel="prev" title="newt clean" href="newt_clean.html" /> 
@@ -358,7 +358,7 @@ <h2>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_create_image.html b/v1_4_0/newt/command_list/newt_create_image.html
index f2067e112..9be17b5ef 100644
--- a/v1_4_0/newt/command_list/newt_create_image.html
+++ b/v1_4_0/newt/command_list/newt_create_image.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt create-image &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt create-image &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt debug" href="newt_debug.html" />
   <link rel="prev" title="newt complete" href="newt_complete.html" /> 
@@ -391,7 +391,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_debug.html b/v1_4_0/newt/command_list/newt_debug.html
index 5fc68b73c..5ad5e0173 100644
--- a/v1_4_0/newt/command_list/newt_debug.html
+++ b/v1_4_0/newt/command_list/newt_debug.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt debug &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt debug &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt help" href="newt_help.html" />
   <link rel="prev" title="newt create-image" href="newt_create_image.html" /> 
@@ -382,7 +382,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_help.html b/v1_4_0/newt/command_list/newt_help.html
index e5736f1b4..79b029165 100644
--- a/v1_4_0/newt/command_list/newt_help.html
+++ b/v1_4_0/newt/command_list/newt_help.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt help &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt help &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt info" href="newt_info.html" />
   <link rel="prev" title="newt debug" href="newt_debug.html" /> 
@@ -402,7 +402,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_info.html b/v1_4_0/newt/command_list/newt_info.html
index 6345adbf7..825c2275a 100644
--- a/v1_4_0/newt/command_list/newt_info.html
+++ b/v1_4_0/newt/command_list/newt_info.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt info &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt info &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt install" href="newt_install.html" />
   <link rel="prev" title="newt help" href="newt_help.html" /> 
@@ -353,7 +353,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_install.html b/v1_4_0/newt/command_list/newt_install.html
index 4197671cb..551742721 100644
--- a/v1_4_0/newt/command_list/newt_install.html
+++ b/v1_4_0/newt/command_list/newt_install.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt install &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt install &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt load" href="newt_load.html" />
   <link rel="prev" title="newt info" href="newt_info.html" /> 
@@ -360,7 +360,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_load.html b/v1_4_0/newt/command_list/newt_load.html
index 956998522..3734aebcc 100644
--- a/v1_4_0/newt/command_list/newt_load.html
+++ b/v1_4_0/newt/command_list/newt_load.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt load &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt load &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt mfg" href="newt_mfg.html" />
   <link rel="prev" title="newt install" href="newt_install.html" /> 
@@ -359,7 +359,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_mfg.html b/v1_4_0/newt/command_list/newt_mfg.html
index c120bc4c5..1dc3702f9 100644
--- a/v1_4_0/newt/command_list/newt_mfg.html
+++ b/v1_4_0/newt/command_list/newt_mfg.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt mfg &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt mfg &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt new" href="newt_new.html" />
   <link rel="prev" title="newt load" href="newt_load.html" /> 
@@ -434,7 +434,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_new.html b/v1_4_0/newt/command_list/newt_new.html
index d58ff8a90..a26196e74 100644
--- a/v1_4_0/newt/command_list/newt_new.html
+++ b/v1_4_0/newt/command_list/newt_new.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt new &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt new &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt pkg" href="newt_pkg.html" />
   <link rel="prev" title="newt mfg" href="newt_mfg.html" /> 
@@ -372,7 +372,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_pkg.html b/v1_4_0/newt/command_list/newt_pkg.html
index 7afa5b4bb..206007df7 100644
--- a/v1_4_0/newt/command_list/newt_pkg.html
+++ b/v1_4_0/newt/command_list/newt_pkg.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt pkg &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt pkg &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt resign-image" href="newt_resign_image.html" />
   <link rel="prev" title="newt new" href="newt_new.html" /> 
@@ -422,7 +422,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_resign_image.html b/v1_4_0/newt/command_list/newt_resign_image.html
index b9d1df083..4a1a5063e 100644
--- a/v1_4_0/newt/command_list/newt_resign_image.html
+++ b/v1_4_0/newt/command_list/newt_resign_image.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt resign-image &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt resign-image &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt run" href="newt_run.html" />
   <link rel="prev" title="newt pkg" href="newt_pkg.html" /> 
@@ -379,7 +379,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_run.html b/v1_4_0/newt/command_list/newt_run.html
index ff12a7d0f..27e1e6985 100644
--- a/v1_4_0/newt/command_list/newt_run.html
+++ b/v1_4_0/newt/command_list/newt_run.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt run &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt run &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt size" href="newt_size.html" />
   <link rel="prev" title="newt resign-image" href="newt_resign_image.html" /> 
@@ -387,7 +387,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_size.html b/v1_4_0/newt/command_list/newt_size.html
index 9c37b66c4..a64028999 100644
--- a/v1_4_0/newt/command_list/newt_size.html
+++ b/v1_4_0/newt/command_list/newt_size.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt size &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt size &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt sync" href="newt_sync.html" />
   <link rel="prev" title="newt run" href="newt_run.html" /> 
@@ -404,7 +404,7 @@ <h2>Example output for <code class="docutils literal notranslate"><span class="p
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_sync.html b/v1_4_0/newt/command_list/newt_sync.html
index f9b8612c4..50acd6f0c 100644
--- a/v1_4_0/newt/command_list/newt_sync.html
+++ b/v1_4_0/newt/command_list/newt_sync.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt sync &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt sync &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt target" href="newt_target.html" />
   <link rel="prev" title="newt size" href="newt_size.html" /> 
@@ -362,7 +362,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_target.html b/v1_4_0/newt/command_list/newt_target.html
index 705ee1cbf..b1dd818fc 100644
--- a/v1_4_0/newt/command_list/newt_target.html
+++ b/v1_4_0/newt/command_list/newt_target.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt target &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt target &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt test" href="newt_test.html" />
   <link rel="prev" title="newt sync" href="newt_sync.html" /> 
@@ -555,7 +555,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_test.html b/v1_4_0/newt/command_list/newt_test.html
index e48e5c282..dd14bda27 100644
--- a/v1_4_0/newt/command_list/newt_test.html
+++ b/v1_4_0/newt/command_list/newt_test.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt test &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt test &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt upgrade" href="newt_upgrade.html" />
   <link rel="prev" title="newt target" href="newt_target.html" /> 
@@ -387,7 +387,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_upgrade.html b/v1_4_0/newt/command_list/newt_upgrade.html
index 9ad646c8d..d39859c55 100644
--- a/v1_4_0/newt/command_list/newt_upgrade.html
+++ b/v1_4_0/newt/command_list/newt_upgrade.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt upgrade &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt upgrade &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt vals" href="newt_vals.html" />
   <link rel="prev" title="newt test" href="newt_test.html" /> 
@@ -359,7 +359,7 @@ <h2>Description<a class="headerlink" href="#description" title="Permalink to thi
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_vals.html b/v1_4_0/newt/command_list/newt_vals.html
index ec7d7f171..7ca6aa87a 100644
--- a/v1_4_0/newt/command_list/newt_vals.html
+++ b/v1_4_0/newt/command_list/newt_vals.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt vals &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt vals &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="newt version" href="newt_version.html" />
   <link rel="prev" title="newt upgrade" href="newt_upgrade.html" /> 
@@ -406,7 +406,7 @@ <h2>Example output for <code class="docutils literal notranslate"><span class="p
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/command_list/newt_version.html b/v1_4_0/newt/command_list/newt_version.html
index 34f341604..72730c868 100644
--- a/v1_4_0/newt/command_list/newt_version.html
+++ b/v1_4_0/newt/command_list/newt_version.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newt version &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newt version &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command Structure" href="../newt_ops.html" />
   <link rel="next" title="Install" href="../install/index.html" />
   <link rel="prev" title="newt vals" href="newt_vals.html" /> 
@@ -368,7 +368,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/index.html b/v1_4_0/newt/index.html
index 7a8c7d306..a6b8b225c 100644
--- a/v1_4_0/newt/index.html
+++ b/v1_4_0/newt/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Newt Tool Guide &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Newt Tool Guide &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="next" title="Theory of Operations" href="newt_operation.html" />
   <link rel="prev" title="Sample application" href="../network/docs/mesh/sample.html" /> 
 
@@ -501,7 +501,7 @@ <h2>Notes:<a class="headerlink" href="#notes" title="Permalink to this headline"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/install/index.html b/v1_4_0/newt/install/index.html
index 317f3ae0c..7d420cee7 100644
--- a/v1_4_0/newt/install/index.html
+++ b/v1_4_0/newt/install/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Install &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Install &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Newt Tool Guide" href="../index.html" />
   <link rel="next" title="Installing Previous Releases of Newt" href="prev_releases.html" />
   <link rel="prev" title="newt version" href="../command_list/newt_version.html" /> 
@@ -341,7 +341,7 @@ <h1>Install<a class="headerlink" href="#install" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/install/newt_linux.html b/v1_4_0/newt/install/newt_linux.html
index 26283ede4..7b2ef081e 100644
--- a/v1_4_0/newt/install/newt_linux.html
+++ b/v1_4_0/newt/install/newt_linux.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Newt on Linux &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Newt on Linux &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Native Installation" href="../../get_started/native_install/index.html" />
   <link rel="next" title="Installing Newt on Windows" href="newt_windows.html" />
   <link rel="prev" title="Installing Newt on Mac OS" href="newt_mac.html" /> 
@@ -498,7 +498,7 @@ <h2>Checking the Installed Version of Newt<a class="headerlink" href="#checking-
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/install/newt_mac.html b/v1_4_0/newt/install/newt_mac.html
index 5fb776233..c2ca04f81 100644
--- a/v1_4_0/newt/install/newt_mac.html
+++ b/v1_4_0/newt/install/newt_mac.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Newt on Mac OS &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Newt on Mac OS &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Native Installation" href="../../get_started/native_install/index.html" />
   <link rel="next" title="Installing Newt on Linux" href="newt_linux.html" />
   <link rel="prev" title="Native Installation" href="../../get_started/native_install/index.html" /> 
@@ -476,7 +476,7 @@ <h2>Installing Newt from the Master Branch<a class="headerlink" href="#installin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/install/newt_windows.html b/v1_4_0/newt/install/newt_windows.html
index 703f25f85..d01eff051 100644
--- a/v1_4_0/newt/install/newt_windows.html
+++ b/v1_4_0/newt/install/newt_windows.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Newt on Windows &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Newt on Windows &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Native Installation" href="../../get_started/native_install/index.html" />
   <link rel="next" title="Installing Native Toolchain" href="../../get_started/native_install/native_tools.html" />
   <link rel="prev" title="Installing Newt on Linux" href="newt_linux.html" /> 
@@ -517,7 +517,7 @@ <h2>Checking the Installed Version<a class="headerlink" href="#checking-the-inst
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/install/prev_releases.html b/v1_4_0/newt/install/prev_releases.html
index 209c2c9d2..9251a938a 100644
--- a/v1_4_0/newt/install/prev_releases.html
+++ b/v1_4_0/newt/install/prev_releases.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Previous Releases of Newt &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Previous Releases of Newt &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Install" href="index.html" />
   <link rel="next" title="Newt Manager Guide" href="../../newtmgr/index.html" />
   <link rel="prev" title="Install" href="index.html" /> 
@@ -417,7 +417,7 @@ <h2>Windows<a class="headerlink" href="#windows" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/newt_operation.html b/v1_4_0/newt/newt_operation.html
index 9f4aa7369..5b346c2a7 100644
--- a/v1_4_0/newt/newt_operation.html
+++ b/v1_4_0/newt/newt_operation.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Theory of Operations &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Theory of Operations &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Newt Tool Guide" href="index.html" />
   <link rel="next" title="Command Structure" href="newt_ops.html" />
   <link rel="prev" title="Newt Tool Guide" href="index.html" /> 
@@ -587,7 +587,7 @@ <h2>Download/Debug Support<a class="headerlink" href="#download-debug-support" t
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newt/newt_ops.html b/v1_4_0/newt/newt_ops.html
index daae14fd0..b1a6058e5 100644
--- a/v1_4_0/newt/newt_ops.html
+++ b/v1_4_0/newt/newt_ops.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Command Structure &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Command Structure &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="up" title="Newt Tool Guide" href="index.html" />
   <link rel="next" title="newt build" href="command_list/newt_build.html" />
   <link rel="prev" title="Theory of Operations" href="newt_operation.html" /> 
@@ -382,7 +382,7 @@ <h1>Command Structure<a class="headerlink" href="#command-structure" title="Perm
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/README.html b/v1_4_0/newtmgr/README.html
index 83b42e637..ef42198f2 100644
--- a/v1_4_0/newtmgr/README.html
+++ b/v1_4_0/newtmgr/README.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt Newt Manager Documentation &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt Newt Manager Documentation &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" /> 
 
   
   <script src="../_static/js/modernizr.min.js"></script>
@@ -312,7 +312,7 @@ <h2><a class="toc-backref" href="#id3">Previewing Changes</a><a class="headerlin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/index.html b/v1_4_0/newtmgr/command_list/index.html
index fac1348a7..10a6f075a 100644
--- a/v1_4_0/newtmgr/command_list/index.html
+++ b/v1_4_0/newtmgr/command_list/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Command List &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Command List &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Newt Manager Guide" href="../index.html" />
   <link rel="next" title="newtmgr config" href="newtmgr_config.html" />
   <link rel="prev" title="Newt Manager Guide" href="../index.html" /> 
@@ -368,7 +368,7 @@ <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_config.html b/v1_4_0/newtmgr/command_list/newtmgr_config.html
index 6c02b73ea..cf8fa2b4f 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_config.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_config.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr config &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr config &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr conn" href="newtmgr_conn.html" />
   <link rel="prev" title="Command List" href="index.html" /> 
@@ -366,7 +366,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_conn.html b/v1_4_0/newtmgr/command_list/newtmgr_conn.html
index b576dd20b..fb368716a 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_conn.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_conn.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr conn &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr conn &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr crash" href="newtmgr_crash.html" />
   <link rel="prev" title="newtmgr config" href="newtmgr_config.html" /> 
@@ -525,7 +525,7 @@ <h2><a class="toc-backref" href="#id7">Examples</a><a class="headerlink" href="#
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_crash.html b/v1_4_0/newtmgr/command_list/newtmgr_crash.html
index a15abb97a..2242075c4 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_crash.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_crash.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr crash &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr crash &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr datetime" href="newtmgr_datetime.html" />
   <link rel="prev" title="newtmgr conn" href="newtmgr_conn.html" /> 
@@ -366,7 +366,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_datetime.html b/v1_4_0/newtmgr/command_list/newtmgr_datetime.html
index bc626af32..7c1cd1dd8 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_datetime.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_datetime.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr datetime &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr datetime &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr echo" href="newtmgr_echo.html" />
   <link rel="prev" title="newtmgr crash" href="newtmgr_crash.html" /> 
@@ -370,7 +370,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_echo.html b/v1_4_0/newtmgr/command_list/newtmgr_echo.html
index 7d0c807a8..436b7d592 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_echo.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_echo.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr echo &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr echo &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr fs" href="newtmgr_fs.html" />
   <link rel="prev" title="newtmgr datetime" href="newtmgr_datetime.html" /> 
@@ -363,7 +363,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_fs.html b/v1_4_0/newtmgr/command_list/newtmgr_fs.html
index cab43299a..5458c1ef5 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_fs.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_fs.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr fs &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr fs &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr image" href="newtmgr_image.html" />
   <link rel="prev" title="newtmgr echo" href="newtmgr_echo.html" /> 
@@ -385,7 +385,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_image.html b/v1_4_0/newtmgr/command_list/newtmgr_image.html
index 0fc93648a..8012980ce 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_image.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_image.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr image &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr image &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr log" href="newtmgr_logs.html" />
   <link rel="prev" title="newtmgr fs" href="newtmgr_fs.html" /> 
@@ -459,7 +459,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_logs.html b/v1_4_0/newtmgr/command_list/newtmgr_logs.html
index 19d1b89e9..1bc4dad5c 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_logs.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_logs.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr log &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr log &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr mpstat" href="newtmgr_mpstats.html" />
   <link rel="prev" title="newtmgr image" href="newtmgr_image.html" /> 
@@ -446,7 +446,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_mpstats.html b/v1_4_0/newtmgr/command_list/newtmgr_mpstats.html
index 55fd6c30d..a0a0aa836 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_mpstats.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_mpstats.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr mpstat &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr mpstat &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr reset" href="newtmgr_reset.html" />
   <link rel="prev" title="newtmgr log" href="newtmgr_logs.html" /> 
@@ -391,7 +391,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_reset.html b/v1_4_0/newtmgr/command_list/newtmgr_reset.html
index a3b598b36..b67c0bcc5 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_reset.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_reset.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr reset &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr reset &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr run" href="newtmgr_run.html" />
   <link rel="prev" title="newtmgr mpstat" href="newtmgr_mpstats.html" /> 
@@ -362,7 +362,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_run.html b/v1_4_0/newtmgr/command_list/newtmgr_run.html
index 991e0bc1a..83ff76d90 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_run.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_run.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr run &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr run &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr stat" href="newtmgr_stat.html" />
   <link rel="prev" title="newtmgr reset" href="newtmgr_reset.html" /> 
@@ -388,7 +388,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_stat.html b/v1_4_0/newtmgr/command_list/newtmgr_stat.html
index 98d29e6ca..1ef650941 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_stat.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_stat.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr stat &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr stat &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="newtmgr taskstat" href="newtmgr_taskstats.html" />
   <link rel="prev" title="newtmgr run" href="newtmgr_run.html" /> 
@@ -438,7 +438,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/command_list/newtmgr_taskstats.html b/v1_4_0/newtmgr/command_list/newtmgr_taskstats.html
index fa413c3c3..b406a0ff9 100644
--- a/v1_4_0/newtmgr/command_list/newtmgr_taskstats.html
+++ b/v1_4_0/newtmgr/command_list/newtmgr_taskstats.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>newtmgr taskstat &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>newtmgr taskstat &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Command List" href="index.html" />
   <link rel="next" title="Install" href="../install/index.html" />
   <link rel="prev" title="newtmgr stat" href="newtmgr_stat.html" /> 
@@ -382,7 +382,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/index.html b/v1_4_0/newtmgr/index.html
index c2a2741d9..7483d4120 100644
--- a/v1_4_0/newtmgr/index.html
+++ b/v1_4_0/newtmgr/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Newt Manager Guide &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Newt Manager Guide &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="next" title="Command List" href="command_list/index.html" />
   <link rel="prev" title="Installing Previous Releases of Newt" href="../newt/install/prev_releases.html" /> 
 
@@ -333,7 +333,7 @@ <h1>Newt Manager Guide<a class="headerlink" href="#newt-manager-guide" title="Pe
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/install/index.html b/v1_4_0/newtmgr/install/index.html
index b97079836..2b81e1ddf 100644
--- a/v1_4_0/newtmgr/install/index.html
+++ b/v1_4_0/newtmgr/install/index.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Install &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Install &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Newt Manager Guide" href="../index.html" />
   <link rel="next" title="Installing Newtmgr on Mac OS" href="install_mac.html" />
   <link rel="prev" title="newtmgr taskstat" href="../command_list/newtmgr_taskstats.html" /> 
@@ -340,7 +340,7 @@ <h1>Install<a class="headerlink" href="#install" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/install/install_linux.html b/v1_4_0/newtmgr/install/install_linux.html
index a4e5f1d5d..366e4e9bd 100644
--- a/v1_4_0/newtmgr/install/install_linux.html
+++ b/v1_4_0/newtmgr/install/install_linux.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Newtmgr on Linux &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Newtmgr on Linux &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Install" href="index.html" />
   <link rel="next" title="Installing Newtmgr on Windows" href="install_windows.html" />
   <link rel="prev" title="Installing Newtmgr on Mac OS" href="install_mac.html" /> 
@@ -539,7 +539,7 @@ <h2><a class="toc-backref" href="#id5">Installing the Latest Release Version of
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/install/install_mac.html b/v1_4_0/newtmgr/install/install_mac.html
index fe35e875d..896b42568 100644
--- a/v1_4_0/newtmgr/install/install_mac.html
+++ b/v1_4_0/newtmgr/install/install_mac.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Newtmgr on Mac OS &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Newtmgr on Mac OS &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Install" href="index.html" />
   <link rel="next" title="Installing Newtmgr on Linux" href="install_linux.html" />
   <link rel="prev" title="Install" href="index.html" /> 
@@ -468,7 +468,7 @@ <h2><a class="toc-backref" href="#id6">Installing Newtmgr from the Master Branch
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/install/install_windows.html b/v1_4_0/newtmgr/install/install_windows.html
index 2506dbc4c..93b64c442 100644
--- a/v1_4_0/newtmgr/install/install_windows.html
+++ b/v1_4_0/newtmgr/install/install_windows.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Newtmgr on Windows &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Newtmgr on Windows &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Install" href="index.html" />
   <link rel="next" title="Installing Previous Releases of Newtmgr" href="prev_releases.html" />
   <link rel="prev" title="Installing Newtmgr on Linux" href="install_linux.html" /> 
@@ -468,7 +468,7 @@ <h2><a class="toc-backref" href="#id3">Checking the Installed Version</a><a clas
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/newtmgr/install/prev_releases.html b/v1_4_0/newtmgr/install/prev_releases.html
index 22d8eb00c..e0a0881b7 100644
--- a/v1_4_0/newtmgr/install/prev_releases.html
+++ b/v1_4_0/newtmgr/install/prev_releases.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Installing Previous Releases of Newtmgr &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Installing Previous Releases of Newtmgr &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Install" href="index.html" />
   <link rel="next" title="Mynewt FAQ" href="../../mynewt_faq/index.html" />
   <link rel="prev" title="Installing Newtmgr on Windows" href="install_windows.html" /> 
@@ -433,7 +433,7 @@ <h2><a class="toc-backref" href="#id3">Windows</a><a class="headerlink" href="#w
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/objects.inv b/v1_4_0/objects.inv
index c5c2a4ee9..fc2c8b298 100644
Binary files a/v1_4_0/objects.inv and b/v1_4_0/objects.inv differ
diff --git a/v1_4_0/os/core_os/callout/callout.html b/v1_4_0/os/core_os/callout/callout.html
index cc922127b..fb19c8eea 100644
--- a/v1_4_0/os/core_os/callout/callout.html
+++ b/v1_4_0/os/core_os/callout/callout.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Callout &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Callout &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Heap" href="../heap/heap.html" />
   <link rel="prev" title="Event Queues" href="../event_queue/event_queue.html" /> 
@@ -470,7 +470,7 @@ <h3>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/context_switch/context_switch.html b/v1_4_0/os/core_os/context_switch/context_switch.html
index d1b00470b..8f9be3f6a 100644
--- a/v1_4_0/os/core_os/context_switch/context_switch.html
+++ b/v1_4_0/os/core_os/context_switch/context_switch.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Scheduler &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Scheduler &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Task" href="../task/task.html" />
   <link rel="prev" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" /> 
@@ -419,7 +419,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/cputime/os_cputime.html b/v1_4_0/os/core_os/cputime/os_cputime.html
index 2a99932c2..db90a46e2 100644
--- a/v1_4_0/os/core_os/cputime/os_cputime.html
+++ b/v1_4_0/os/core_os/cputime/os_cputime.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>CPU Time &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>CPU Time &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="OS Time" href="../time/os_time.html" />
   <link rel="prev" title="Mbufs" href="../mbuf/mbuf.html" /> 
@@ -579,7 +579,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/event_queue/event_queue.html b/v1_4_0/os/core_os/event_queue/event_queue.html
index 08580f611..fba9df5b3 100644
--- a/v1_4_0/os/core_os/event_queue/event_queue.html
+++ b/v1_4_0/os/core_os/event_queue/event_queue.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Event Queues &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Event Queues &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Callout" href="../callout/callout.html" />
   <link rel="prev" title="Semaphore" href="../semaphore/semaphore.html" /> 
@@ -590,7 +590,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/heap/heap.html b/v1_4_0/os/core_os/heap/heap.html
index 96d71a62e..2c5bda4f2 100644
--- a/v1_4_0/os/core_os/heap/heap.html
+++ b/v1_4_0/os/core_os/heap/heap.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Heap &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Heap &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Memory Pools" href="../memory_pool/memory_pool.html" />
   <link rel="prev" title="Callout" href="../callout/callout.html" /> 
@@ -349,7 +349,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/mbuf/mbuf.html b/v1_4_0/os/core_os/mbuf/mbuf.html
index e9da44397..6dcdb6866 100644
--- a/v1_4_0/os/core_os/mbuf/mbuf.html
+++ b/v1_4_0/os/core_os/mbuf/mbuf.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mbufs &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mbufs &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="CPU Time" href="../cputime/os_cputime.html" />
   <link rel="prev" title="Memory Pools" href="../memory_pool/memory_pool.html" /> 
@@ -1456,7 +1456,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/memory_pool/memory_pool.html b/v1_4_0/os/core_os/memory_pool/memory_pool.html
index e0b8a7179..19dc4a3d8 100644
--- a/v1_4_0/os/core_os/memory_pool/memory_pool.html
+++ b/v1_4_0/os/core_os/memory_pool/memory_pool.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Memory Pools &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Memory Pools &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Mbufs" href="../mbuf/mbuf.html" />
   <link rel="prev" title="Heap" href="../heap/heap.html" /> 
@@ -717,7 +717,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/mutex/mutex.html b/v1_4_0/os/core_os/mutex/mutex.html
index 76ae72eec..c12b6d9da 100644
--- a/v1_4_0/os/core_os/mutex/mutex.html
+++ b/v1_4_0/os/core_os/mutex/mutex.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mutex &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mutex &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Semaphore" href="../semaphore/semaphore.html" />
   <link rel="prev" title="Task" href="../task/task.html" /> 
@@ -481,7 +481,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/mynewt_os.html b/v1_4_0/os/core_os/mynewt_os.html
index d81be6ad0..8677ca527 100644
--- a/v1_4_0/os/core_os/mynewt_os.html
+++ b/v1_4_0/os/core_os/mynewt_os.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Apache Mynewt Operating System Kernel &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Apache Mynewt Operating System Kernel &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="OS User Guide" href="../os_user_guide.html" />
   <link rel="next" title="Scheduler" href="context_switch/context_switch.html" />
   <link rel="prev" title="OS User Guide" href="../os_user_guide.html" /> 
@@ -542,7 +542,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/porting/port_bsp.html b/v1_4_0/os/core_os/porting/port_bsp.html
index 459a20671..16914c480 100644
--- a/v1_4_0/os/core_os/porting/port_bsp.html
+++ b/v1_4_0/os/core_os/porting/port_bsp.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>BSP Porting &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>BSP Porting &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Porting Mynewt OS" href="port_os.html" />
   <link rel="next" title="Porting Mynewt to a new MCU" href="port_mcu.html" />
   <link rel="prev" title="Porting Mynewt OS" href="port_os.html" /> 
@@ -792,7 +792,7 @@ <h2><a class="toc-backref" href="#id13">Appendix A: BSP files</a><a class="heade
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/porting/port_cpu.html b/v1_4_0/os/core_os/porting/port_cpu.html
index d19412d89..ca5a64006 100644
--- a/v1_4_0/os/core_os/porting/port_cpu.html
+++ b/v1_4_0/os/core_os/porting/port_cpu.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Porting Mynewt to a new CPU Architecture &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Porting Mynewt to a new CPU Architecture &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Porting Mynewt OS" href="port_os.html" />
   <link rel="next" title="Baselibc" href="../../modules/baselibc.html" />
   <link rel="prev" title="Porting Mynewt to a new MCU" href="port_mcu.html" /> 
@@ -372,7 +372,7 @@ <h2>Implement Architecture-specific OS code<a class="headerlink" href="#implemen
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/porting/port_mcu.html b/v1_4_0/os/core_os/porting/port_mcu.html
index 1e1cd502d..02cd0bb2d 100644
--- a/v1_4_0/os/core_os/porting/port_mcu.html
+++ b/v1_4_0/os/core_os/porting/port_mcu.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Porting Mynewt to a new MCU &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Porting Mynewt to a new MCU &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Porting Mynewt OS" href="port_os.html" />
   <link rel="next" title="Porting Mynewt to a new CPU Architecture" href="port_cpu.html" />
   <link rel="prev" title="BSP Porting" href="port_bsp.html" /> 
@@ -353,7 +353,7 @@ <h1>Porting Mynewt to a new MCU<a class="headerlink" href="#porting-mynewt-to-a-
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/porting/port_os.html b/v1_4_0/os/core_os/porting/port_os.html
index 4e8c4ad3c..b19a5424e 100644
--- a/v1_4_0/os/core_os/porting/port_os.html
+++ b/v1_4_0/os/core_os/porting/port_os.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Porting Mynewt OS &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Porting Mynewt OS &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="BSP Porting" href="port_bsp.html" />
   <link rel="prev" title="Split Images" href="../../modules/split/split.html" /> 
@@ -432,7 +432,7 @@ <h2><a class="toc-backref" href="#id5">CPU Core Dependency</a><a class="headerli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/sanity/sanity.html b/v1_4_0/os/core_os/sanity/sanity.html
index a753a3535..da6eba28f 100644
--- a/v1_4_0/os/core_os/sanity/sanity.html
+++ b/v1_4_0/os/core_os/sanity/sanity.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sanity &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sanity &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="System Modules" href="../../modules/system_modules.html" />
   <link rel="prev" title="OS Time" href="../time/os_time.html" /> 
@@ -585,7 +585,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/semaphore/semaphore.html b/v1_4_0/os/core_os/semaphore/semaphore.html
index 3cf48d8df..af9da5520 100644
--- a/v1_4_0/os/core_os/semaphore/semaphore.html
+++ b/v1_4_0/os/core_os/semaphore/semaphore.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Semaphore &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Semaphore &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Event Queues" href="../event_queue/event_queue.html" />
   <link rel="prev" title="Mutex" href="../mutex/mutex.html" /> 
@@ -463,7 +463,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/task/task.html b/v1_4_0/os/core_os/task/task.html
index 809d64fee..0e2a94c6b 100644
--- a/v1_4_0/os/core_os/task/task.html
+++ b/v1_4_0/os/core_os/task/task.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Task &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Task &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Mutex" href="../mutex/mutex.html" />
   <link rel="prev" title="Scheduler" href="../context_switch/context_switch.html" /> 
@@ -748,7 +748,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/core_os/time/os_time.html b/v1_4_0/os/core_os/time/os_time.html
index b6d6f38e4..4c1d49bf6 100644
--- a/v1_4_0/os/core_os/time/os_time.html
+++ b/v1_4_0/os/core_os/time/os_time.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>OS Time &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>OS Time &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html" />
   <link rel="next" title="Sanity" href="../sanity/sanity.html" />
   <link rel="prev" title="CPU Time" href="../cputime/os_cputime.html" /> 
@@ -844,7 +844,7 @@ <h2><a class="toc-backref" href="#id6">API</a><a class="headerlink" href="#api"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/baselibc.html b/v1_4_0/os/modules/baselibc.html
index e7bfea942..717624d9a 100644
--- a/v1_4_0/os/modules/baselibc.html
+++ b/v1_4_0/os/modules/baselibc.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Baselibc &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Baselibc &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="OS User Guide" href="../os_user_guide.html" />
   <link rel="next" title="Drivers" href="drivers/driver.html" />
   <link rel="prev" title="Porting Mynewt to a new CPU Architecture" href="../core_os/porting/port_cpu.html" /> 
@@ -363,7 +363,7 @@ <h2>List of Functions<a class="headerlink" href="#list-of-functions" title="Perm
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/bootloader/bootloader.html b/v1_4_0/os/modules/bootloader/bootloader.html
index 762b3f6ed..587373c23 100644
--- a/v1_4_0/os/modules/bootloader/bootloader.html
+++ b/v1_4_0/os/modules/bootloader/bootloader.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Bootloader &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Bootloader &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="Split Images" href="../split/split.html" />
   <link rel="prev" title="BSP" href="../hal/hal_bsp/hal_bsp.html" /> 
@@ -878,7 +878,7 @@ <h2><a class="toc-backref" href="#id12">Image Signing and Verification</a><a cla
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/config/config.html b/v1_4_0/os/modules/config/config.html
index ba91dbdbc..6f472e48f 100644
--- a/v1_4_0/os/modules/config/config.html
+++ b/v1_4_0/os/modules/config/config.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Config &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Config &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="System Modules" href="../system_modules.html" />
   <link rel="next" title="Logging" href="../logs/logs.html" />
   <link rel="prev" title="System Modules" href="../system_modules.html" /> 
@@ -948,7 +948,7 @@ <h3>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/console/console.html b/v1_4_0/os/modules/console/console.html
index eb1518b6d..1c1d9b681 100644
--- a/v1_4_0/os/modules/console/console.html
+++ b/v1_4_0/os/modules/console/console.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Console &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Console &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="System Modules" href="../system_modules.html" />
   <link rel="next" title="Shell" href="../shell/shell.html" />
   <link rel="prev" title="Statistics Module" href="../stats/stats.html" /> 
@@ -752,7 +752,7 @@ <h2><a class="toc-backref" href="#id9">API</a><a class="headerlink" href="#api"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/devmgmt/customize_newtmgr.html b/v1_4_0/os/modules/devmgmt/customize_newtmgr.html
index 7591a5590..03cf1c418 100644
--- a/v1_4_0/os/modules/devmgmt/customize_newtmgr.html
+++ b/v1_4_0/os/modules/devmgmt/customize_newtmgr.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Customizing Newt Manager Usage with mgmt &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Customizing Newt Manager Usage with mgmt &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Newt Manager" href="newtmgr.html" />
   <link rel="next" title="Image Manager" href="../imgmgr/imgmgr.html" />
   <link rel="prev" title="Using the OIC Framework" href="oicmgr.html" /> 
@@ -361,7 +361,7 @@ <h1>Customizing Newt Manager Usage with mgmt<a class="headerlink" href="#customi
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/devmgmt/newtmgr.html b/v1_4_0/os/modules/devmgmt/newtmgr.html
index 2e1da1e54..847a3d709 100644
--- a/v1_4_0/os/modules/devmgmt/newtmgr.html
+++ b/v1_4_0/os/modules/devmgmt/newtmgr.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Newt Manager &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Newt Manager &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="Using the OIC Framework" href="oicmgr.html" />
   <link rel="prev" title="mmc" href="../drivers/mmc.html" /> 
@@ -367,7 +367,7 @@ <h2>newtmgr<a class="headerlink" href="#newtmgr" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/devmgmt/oicmgr.html b/v1_4_0/os/modules/devmgmt/oicmgr.html
index 706a6c6f5..e6469227d 100644
--- a/v1_4_0/os/modules/devmgmt/oicmgr.html
+++ b/v1_4_0/os/modules/devmgmt/oicmgr.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Using the OIC Framework &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Using the OIC Framework &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Newt Manager" href="newtmgr.html" />
   <link rel="next" title="Customizing Newt Manager Usage with mgmt" href="customize_newtmgr.html" />
   <link rel="prev" title="Newt Manager" href="newtmgr.html" /> 
@@ -353,7 +353,7 @@ <h1>Using the OIC Framework<a class="headerlink" href="#using-the-oic-framework"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/drivers/driver.html b/v1_4_0/os/modules/drivers/driver.html
index 665a3dc39..392821a9e 100644
--- a/v1_4_0/os/modules/drivers/driver.html
+++ b/v1_4_0/os/modules/drivers/driver.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Drivers &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Drivers &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="flash" href="flash.html" />
   <link rel="prev" title="Baselibc" href="../baselibc.html" /> 
@@ -480,7 +480,7 @@ <h2>Implemented drivers<a class="headerlink" href="#implemented-drivers" title="
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/drivers/flash.html b/v1_4_0/os/modules/drivers/flash.html
index 48356f651..798872c59 100644
--- a/v1_4_0/os/modules/drivers/flash.html
+++ b/v1_4_0/os/modules/drivers/flash.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>flash &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>flash &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Drivers" href="driver.html" />
   <link rel="next" title="mmc" href="mmc.html" />
   <link rel="prev" title="Drivers" href="driver.html" /> 
@@ -433,7 +433,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/drivers/mmc.html b/v1_4_0/os/modules/drivers/mmc.html
index 19f04abf9..6da871970 100644
--- a/v1_4_0/os/modules/drivers/mmc.html
+++ b/v1_4_0/os/modules/drivers/mmc.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>mmc &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>mmc &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Drivers" href="driver.html" />
   <link rel="next" title="Newt Manager" href="../devmgmt/newtmgr.html" />
   <link rel="prev" title="flash" href="flash.html" /> 
@@ -442,7 +442,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/elua/elua.html b/v1_4_0/os/modules/elua/elua.html
index 3fdadbe1a..8923cf447 100644
--- a/v1_4_0/os/modules/elua/elua.html
+++ b/v1_4_0/os/modules/elua/elua.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>elua &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>elua &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -342,7 +342,7 @@ <h2>List of Functions<a class="headerlink" href="#list-of-functions" title="Perm
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/elua/lua_init.html b/v1_4_0/os/modules/elua/lua_init.html
index eac98cfcb..539834447 100644
--- a/v1_4_0/os/modules/elua/lua_init.html
+++ b/v1_4_0/os/modules/elua/lua_init.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>lua_init &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>lua_init &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -320,7 +320,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/elua/lua_main.html b/v1_4_0/os/modules/elua/lua_main.html
index 19fad3844..387efc2ca 100644
--- a/v1_4_0/os/modules/elua/lua_main.html
+++ b/v1_4_0/os/modules/elua/lua_main.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>lua_main &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>lua_main &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -332,7 +332,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb.html b/v1_4_0/os/modules/fcb/fcb.html
index 65a4e7f30..840409d1f 100644
--- a/v1_4_0/os/modules/fcb/fcb.html
+++ b/v1_4_0/os/modules/fcb/fcb.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Flash Circular Buffer (FCB) &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Flash Circular Buffer (FCB) &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="Mynewt Sensor Framework Overview" href="../sensor_framework/sensor_framework.html" />
   <link rel="prev" title="Adding a new file system" href="../fs/fs_add.html" /> 
@@ -794,7 +794,7 @@ <h2><a class="toc-backref" href="#id4">API</a><a class="headerlink" href="#api"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_append.html b/v1_4_0/os/modules/fcb/fcb_append.html
index 7d69412ab..86fb52215 100644
--- a/v1_4_0/os/modules/fcb/fcb_append.html
+++ b/v1_4_0/os/modules/fcb/fcb_append.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_append &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_append &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -346,7 +346,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_append_finish.html b/v1_4_0/os/modules/fcb/fcb_append_finish.html
index 3882249f7..7477de4f5 100644
--- a/v1_4_0/os/modules/fcb/fcb_append_finish.html
+++ b/v1_4_0/os/modules/fcb/fcb_append_finish.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_append_finish &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_append_finish &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -333,7 +333,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_append_to_scratch.html b/v1_4_0/os/modules/fcb/fcb_append_to_scratch.html
index baf54e3df..43af49956 100644
--- a/v1_4_0/os/modules/fcb/fcb_append_to_scratch.html
+++ b/v1_4_0/os/modules/fcb/fcb_append_to_scratch.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_append_to_scratch &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_append_to_scratch &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -321,7 +321,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_clear.html b/v1_4_0/os/modules/fcb/fcb_clear.html
index ae847e692..5656ec5a9 100644
--- a/v1_4_0/os/modules/fcb/fcb_clear.html
+++ b/v1_4_0/os/modules/fcb/fcb_clear.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_clear &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_clear &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -319,7 +319,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_getnext.html b/v1_4_0/os/modules/fcb/fcb_getnext.html
index 608676feb..097c125ae 100644
--- a/v1_4_0/os/modules/fcb/fcb_getnext.html
+++ b/v1_4_0/os/modules/fcb/fcb_getnext.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_getnext &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_getnext &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -329,7 +329,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_init.html b/v1_4_0/os/modules/fcb/fcb_init.html
index 9548cead3..0a0cd7c97 100644
--- a/v1_4_0/os/modules/fcb/fcb_init.html
+++ b/v1_4_0/os/modules/fcb/fcb_init.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_init &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_init &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -322,7 +322,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_is_empty.html b/v1_4_0/os/modules/fcb/fcb_is_empty.html
index a0b286fa1..2fea87aa2 100644
--- a/v1_4_0/os/modules/fcb/fcb_is_empty.html
+++ b/v1_4_0/os/modules/fcb/fcb_is_empty.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_is_empty &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_is_empty &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -319,7 +319,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_offset_last_n.html b/v1_4_0/os/modules/fcb/fcb_offset_last_n.html
index e1ad765d2..842188f96 100644
--- a/v1_4_0/os/modules/fcb/fcb_offset_last_n.html
+++ b/v1_4_0/os/modules/fcb/fcb_offset_last_n.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_offset_last_n &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_offset_last_n &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -328,7 +328,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_rotate.html b/v1_4_0/os/modules/fcb/fcb_rotate.html
index f7fac100c..4ecf51329 100644
--- a/v1_4_0/os/modules/fcb/fcb_rotate.html
+++ b/v1_4_0/os/modules/fcb/fcb_rotate.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_rotate &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_rotate &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -319,7 +319,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fcb/fcb_walk.html b/v1_4_0/os/modules/fcb/fcb_walk.html
index 4b0bce1b1..a06cafe06 100644
--- a/v1_4_0/os/modules/fcb/fcb_walk.html
+++ b/v1_4_0/os/modules/fcb/fcb_walk.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>fcb_walk &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>fcb_walk &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -355,7 +355,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fs/fatfs.html b/v1_4_0/os/modules/fs/fatfs.html
index 6465cb758..c8db938af 100644
--- a/v1_4_0/os/modules/fs/fatfs.html
+++ b/v1_4_0/os/modules/fs/fatfs.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>The FAT File System &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>The FAT File System &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="File System Abstraction" href="fs.html" />
   <link rel="next" title="Other File Systems" href="otherfs.html" />
   <link rel="prev" title="Newtron Flash Filesystem (nffs)" href="nffs.html" /> 
@@ -371,7 +371,7 @@ <h3>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fs/fs.html b/v1_4_0/os/modules/fs/fs.html
index eab28f8a1..dde406bee 100644
--- a/v1_4_0/os/modules/fs/fs.html
+++ b/v1_4_0/os/modules/fs/fs.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>File System Abstraction &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>File System Abstraction &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="Newtron Flash Filesystem (nffs)" href="nffs.html" />
   <link rel="prev" title="Validation and Error Messages" href="../sysinitconfig/sysconfig_error.html" /> 
@@ -801,7 +801,7 @@ <h2><a class="toc-backref" href="#id8">API</a><a class="headerlink" href="#api"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fs/fs_add.html b/v1_4_0/os/modules/fs/fs_add.html
index 12f33a2f5..ac20b936d 100644
--- a/v1_4_0/os/modules/fs/fs_add.html
+++ b/v1_4_0/os/modules/fs/fs_add.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Adding a new file system &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Adding a new file system &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="File System Abstraction" href="fs.html" />
   <link rel="next" title="Flash Circular Buffer (FCB)" href="../fcb/fcb.html" />
   <link rel="prev" title="Other File Systems" href="otherfs.html" /> 
@@ -490,7 +490,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fs/nffs.html b/v1_4_0/os/modules/fs/nffs.html
index 7da4bad67..f5aae6039 100644
--- a/v1_4_0/os/modules/fs/nffs.html
+++ b/v1_4_0/os/modules/fs/nffs.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Newtron Flash Filesystem (nffs) &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Newtron Flash Filesystem (nffs) &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="File System Abstraction" href="fs.html" />
   <link rel="next" title="The FAT File System" href="fatfs.html" />
   <link rel="prev" title="File System Abstraction" href="fs.html" /> 
@@ -550,7 +550,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/fs/otherfs.html b/v1_4_0/os/modules/fs/otherfs.html
index be17fa698..203f2e75f 100644
--- a/v1_4_0/os/modules/fs/otherfs.html
+++ b/v1_4_0/os/modules/fs/otherfs.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Other File Systems &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Other File Systems &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="File System Abstraction" href="fs.html" />
   <link rel="next" title="Adding a new file system" href="fs_add.html" />
   <link rel="prev" title="The FAT File System" href="fatfs.html" /> 
@@ -396,7 +396,7 @@ <h2>Header Files<a class="headerlink" href="#header-files" title="Permalink to t
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal.html b/v1_4_0/os/modules/hal/hal.html
index 9f9195a1d..b1d4cabe1 100644
--- a/v1_4_0/os/modules/hal/hal.html
+++ b/v1_4_0/os/modules/hal/hal.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Hardware Abstraction Layer &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Hardware Abstraction Layer &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="Timer" href="hal_timer/hal_timer.html" />
   <link rel="prev" title="Shell" href="../shell/shell.html" /> 
@@ -413,7 +413,7 @@ <h2>Platform Support<a class="headerlink" href="#platform-support" title="Permal
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_bsp/hal_bsp.html b/v1_4_0/os/modules/hal/hal_bsp/hal_bsp.html
index 8f77533a0..ccbca9f02 100644
--- a/v1_4_0/os/modules/hal/hal_bsp/hal_bsp.html
+++ b/v1_4_0/os/modules/hal/hal_bsp/hal_bsp.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>BSP &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>BSP &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="Hardware Abstraction Layer" href="../hal.html" />
   <link rel="next" title="Bootloader" href="../../bootloader/bootloader.html" />
   <link rel="prev" title="Watchdog" href="../hal_watchdog/hal_watchdog.html" /> 
@@ -462,7 +462,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_creation.html b/v1_4_0/os/modules/hal/hal_creation.html
index 72a49080f..7aa214e44 100644
--- a/v1_4_0/os/modules/hal/hal_creation.html
+++ b/v1_4_0/os/modules/hal/hal_creation.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Creating New HAL Interfaces &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Creating New HAL Interfaces &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -304,7 +304,7 @@ <h2>HAL API<a class="headerlink" href="#hal-api" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_flash/hal_flash.html b/v1_4_0/os/modules/hal/hal_flash/hal_flash.html
index 8a8749b45..73e9820cc 100644
--- a/v1_4_0/os/modules/hal/hal_flash/hal_flash.html
+++ b/v1_4_0/os/modules/hal/hal_flash/hal_flash.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Flash &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Flash &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="Hardware Abstraction Layer" href="../hal.html" />
   <link rel="next" title="Watchdog" href="../hal_watchdog/hal_watchdog.html" />
   <link rel="prev" title="I2C" href="../hal_i2c/hal_i2c.html" /> 
@@ -404,7 +404,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_flash/hal_flash_int.html b/v1_4_0/os/modules/hal/hal_flash/hal_flash_int.html
index bf554fb06..924ee2c10 100644
--- a/v1_4_0/os/modules/hal/hal_flash/hal_flash_int.html
+++ b/v1_4_0/os/modules/hal/hal_flash/hal_flash_int.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>hal_flash_int &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>hal_flash_int &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" /> 
 
   
   <script src="../../../../_static/js/modernizr.min.js"></script>
@@ -313,7 +313,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_gpio/hal_gpio.html b/v1_4_0/os/modules/hal/hal_gpio/hal_gpio.html
index 63be91090..03de883b2 100644
--- a/v1_4_0/os/modules/hal/hal_gpio/hal_gpio.html
+++ b/v1_4_0/os/modules/hal/hal_gpio/hal_gpio.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>GPIO &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>GPIO &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="Hardware Abstraction Layer" href="../hal.html" />
   <link rel="next" title="UART" href="../hal_uart/hal_uart.html" />
   <link rel="prev" title="Timer" href="../hal_timer/hal_timer.html" /> 
@@ -628,7 +628,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_i2c/hal_i2c.html b/v1_4_0/os/modules/hal/hal_i2c/hal_i2c.html
index 10616eb8a..62697cc41 100644
--- a/v1_4_0/os/modules/hal/hal_i2c/hal_i2c.html
+++ b/v1_4_0/os/modules/hal/hal_i2c/hal_i2c.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>I2C &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>I2C &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="Hardware Abstraction Layer" href="../hal.html" />
   <link rel="next" title="Flash" href="../hal_flash/hal_flash.html" />
   <link rel="prev" title="SPI" href="../hal_spi/hal_spi.html" /> 
@@ -580,7 +580,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_in_libraries.html b/v1_4_0/os/modules/hal/hal_in_libraries.html
index 1e14b7970..b3b7f8bff 100644
--- a/v1_4_0/os/modules/hal/hal_in_libraries.html
+++ b/v1_4_0/os/modules/hal/hal_in_libraries.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Using HAL in Your Libraries &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Using HAL in Your Libraries &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" /> 
 
   
   <script src="../../../_static/js/modernizr.min.js"></script>
@@ -293,7 +293,7 @@ <h1>Using HAL in Your Libraries<a class="headerlink" href="#using-hal-in-your-li
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_os_tick/hal_os_tick.html b/v1_4_0/os/modules/hal/hal_os_tick/hal_os_tick.html
index bfc57c4c6..d1567e3b3 100644
--- a/v1_4_0/os/modules/hal/hal_os_tick/hal_os_tick.html
+++ b/v1_4_0/os/modules/hal/hal_os_tick/hal_os_tick.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>OS Tick &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>OS Tick &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" /> 
 
   
   <script src="../../../../_static/js/modernizr.min.js"></script>
@@ -336,7 +336,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_spi/hal_spi.html b/v1_4_0/os/modules/hal/hal_spi/hal_spi.html
index 27cd83819..27d82aace 100644
--- a/v1_4_0/os/modules/hal/hal_spi/hal_spi.html
+++ b/v1_4_0/os/modules/hal/hal_spi/hal_spi.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>SPI &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>SPI &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="Hardware Abstraction Layer" href="../hal.html" />
   <link rel="next" title="I2C" href="../hal_i2c/hal_i2c.html" />
   <link rel="prev" title="UART" href="../hal_uart/hal_uart.html" /> 
@@ -699,7 +699,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_system/hal_sys.html b/v1_4_0/os/modules/hal/hal_system/hal_sys.html
index eb7b38844..7ba5992d5 100644
--- a/v1_4_0/os/modules/hal/hal_system/hal_sys.html
+++ b/v1_4_0/os/modules/hal/hal_system/hal_sys.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>System &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>System &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" /> 
 
   
   <script src="../../../../_static/js/modernizr.min.js"></script>
@@ -394,7 +394,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_timer/hal_timer.html b/v1_4_0/os/modules/hal/hal_timer/hal_timer.html
index 7cf65466d..60f06915b 100644
--- a/v1_4_0/os/modules/hal/hal_timer/hal_timer.html
+++ b/v1_4_0/os/modules/hal/hal_timer/hal_timer.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Timer &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Timer &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="Hardware Abstraction Layer" href="../hal.html" />
   <link rel="next" title="GPIO" href="../hal_gpio/hal_gpio.html" />
   <link rel="prev" title="Hardware Abstraction Layer" href="../hal.html" /> 
@@ -562,7 +562,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_uart/hal_uart.html b/v1_4_0/os/modules/hal/hal_uart/hal_uart.html
index 23f3cbece..4dbe89c1d 100644
--- a/v1_4_0/os/modules/hal/hal_uart/hal_uart.html
+++ b/v1_4_0/os/modules/hal/hal_uart/hal_uart.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>UART &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>UART &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="Hardware Abstraction Layer" href="../hal.html" />
   <link rel="next" title="SPI" href="../hal_spi/hal_spi.html" />
   <link rel="prev" title="GPIO" href="../hal_gpio/hal_gpio.html" /> 
@@ -527,7 +527,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/hal/hal_watchdog/hal_watchdog.html b/v1_4_0/os/modules/hal/hal_watchdog/hal_watchdog.html
index e6dacf9ff..fac78c9ff 100644
--- a/v1_4_0/os/modules/hal/hal_watchdog/hal_watchdog.html
+++ b/v1_4_0/os/modules/hal/hal_watchdog/hal_watchdog.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Watchdog &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Watchdog &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="Hardware Abstraction Layer" href="../hal.html" />
   <link rel="next" title="BSP" href="../hal_bsp/hal_bsp.html" />
   <link rel="prev" title="Flash" href="../hal_flash/hal_flash.html" /> 
@@ -376,7 +376,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/imgmgr/imgmgr.html b/v1_4_0/os/modules/imgmgr/imgmgr.html
index 561f798b8..964125be8 100644
--- a/v1_4_0/os/modules/imgmgr/imgmgr.html
+++ b/v1_4_0/os/modules/imgmgr/imgmgr.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Image Manager &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Image Manager &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="imgmgr_module_init" href="imgmgr_module_init.html" />
   <link rel="prev" title="Customizing Newt Manager Usage with mgmt" href="../devmgmt/customize_newtmgr.html" /> 
@@ -398,7 +398,7 @@ <h2>List of Functions<a class="headerlink" href="#list-of-functions" title="Perm
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/imgmgr/imgmgr_module_init.html b/v1_4_0/os/modules/imgmgr/imgmgr_module_init.html
index 789da9832..0c0d82cd7 100644
--- a/v1_4_0/os/modules/imgmgr/imgmgr_module_init.html
+++ b/v1_4_0/os/modules/imgmgr/imgmgr_module_init.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>imgmgr_module_init &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>imgmgr_module_init &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Image Manager" href="imgmgr.html" />
   <link rel="next" title="imgr_ver_parse" href="imgr_ver_parse.html" />
   <link rel="prev" title="Image Manager" href="imgmgr.html" /> 
@@ -343,7 +343,7 @@ <h2>Notes<a class="headerlink" href="#notes" title="Permalink to this headline">
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/imgmgr/imgr_ver_parse.html b/v1_4_0/os/modules/imgmgr/imgr_ver_parse.html
index 7b34f1238..f4418d5b9 100644
--- a/v1_4_0/os/modules/imgmgr/imgr_ver_parse.html
+++ b/v1_4_0/os/modules/imgmgr/imgr_ver_parse.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>imgr_ver_parse &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>imgr_ver_parse &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Image Manager" href="imgmgr.html" />
   <link rel="next" title="imgr_ver_str" href="imgr_ver_str.html" />
   <link rel="prev" title="imgmgr_module_init" href="imgmgr_module_init.html" /> 
@@ -383,7 +383,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/imgmgr/imgr_ver_str.html b/v1_4_0/os/modules/imgmgr/imgr_ver_str.html
index 01e04ca21..7ddbe6162 100644
--- a/v1_4_0/os/modules/imgmgr/imgr_ver_str.html
+++ b/v1_4_0/os/modules/imgmgr/imgr_ver_str.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>imgr_ver_str &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>imgr_ver_str &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Image Manager" href="imgmgr.html" />
   <link rel="next" title="Compile-Time Configuration and Initialization" href="../sysinitconfig/sysinitconfig.html" />
   <link rel="prev" title="imgr_ver_parse" href="imgr_ver_parse.html" /> 
@@ -381,7 +381,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/json/json.html b/v1_4_0/os/modules/json/json.html
index 3c3549f31..ae6860a79 100644
--- a/v1_4_0/os/modules/json/json.html
+++ b/v1_4_0/os/modules/json/json.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>JSON &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>JSON &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="BLE User Guide" href="../../../network/docs/index.html" />
   <link rel="prev" title="testutil" href="../testutil/testutil.html" /> 
@@ -1245,7 +1245,7 @@ <h2><a class="toc-backref" href="#id5">API</a><a class="headerlink" href="#api"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/logs/logs.html b/v1_4_0/os/modules/logs/logs.html
index 34349aab7..65755d490 100644
--- a/v1_4_0/os/modules/logs/logs.html
+++ b/v1_4_0/os/modules/logs/logs.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Logging &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Logging &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="System Modules" href="../system_modules.html" />
   <link rel="next" title="Statistics Module" href="../stats/stats.html" />
   <link rel="prev" title="Config" href="../config/config.html" /> 
@@ -1293,7 +1293,7 @@ <h3><a class="toc-backref" href="#id7">Log API and Log Levels</a><a class="heade
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_api.html b/v1_4_0/os/modules/sensor_framework/sensor_api.html
index d9f5d3c7a..db005b8a9 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_api.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_api.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sensor API &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sensor API &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" />
   <link rel="next" title="Sensor Manager API" href="sensor_mgr_api.html" />
   <link rel="prev" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" /> 
@@ -1438,7 +1438,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_create.html b/v1_4_0/os/modules/sensor_framework/sensor_create.html
index ce4813a30..25a2d2256 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_create.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_create.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Creating and Configuring a Sensor Device &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Creating and Configuring a Sensor Device &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" />
   <link rel="next" title="testutil" href="../testutil/testutil.html" />
   <link rel="prev" title="Sensor Device Driver" href="sensor_driver.html" /> 
@@ -542,7 +542,7 @@ <h2>Reconfiguring A Sensor Device by an Application<a class="headerlink" href="#
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_driver.html b/v1_4_0/os/modules/sensor_framework/sensor_driver.html
index 2126d8c8c..dbdb33a36 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_driver.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_driver.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sensor Device Driver &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sensor Device Driver &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" />
   <link rel="next" title="Creating and Configuring a Sensor Device" href="sensor_create.html" />
   <link rel="prev" title="Sensor Shell Command" href="sensor_shell.html" /> 
@@ -753,7 +753,7 @@ <h2>Defining Stats<a class="headerlink" href="#defining-stats" title="Permalink
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_framework.html b/v1_4_0/os/modules/sensor_framework/sensor_framework.html
index c231f94f5..8aeb9b866 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_framework.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_framework.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Mynewt Sensor Framework Overview &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Mynewt Sensor Framework Overview &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="Sensor API" href="sensor_api.html" />
   <link rel="prev" title="Flash Circular Buffer (FCB)" href="../fcb/fcb.html" /> 
@@ -414,7 +414,7 @@ <h2>Overview of Sensor Support Packages<a class="headerlink" href="#overview-of-
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_listener_api.html b/v1_4_0/os/modules/sensor_framework/sensor_listener_api.html
index 9c8d838fd..91f426d54 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_listener_api.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_listener_api.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sensor Listener API &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sensor Listener API &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" />
   <link rel="next" title="Sensor Notifier API" href="sensor_notifier_api.html" />
   <link rel="prev" title="Sensor Manager API" href="sensor_mgr_api.html" /> 
@@ -445,7 +445,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_mgr_api.html b/v1_4_0/os/modules/sensor_framework/sensor_mgr_api.html
index c3cb7f04d..4fd153fd1 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_mgr_api.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_mgr_api.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sensor Manager API &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sensor Manager API &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" />
   <link rel="next" title="Sensor Listener API" href="sensor_listener_api.html" />
   <link rel="prev" title="Sensor API" href="sensor_api.html" /> 
@@ -750,7 +750,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_notifier_api.html b/v1_4_0/os/modules/sensor_framework/sensor_notifier_api.html
index fc26f3454..050e9305c 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_notifier_api.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_notifier_api.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sensor Notifier API &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sensor Notifier API &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" />
   <link rel="next" title="OIC Sensor Support" href="sensor_oic.html" />
   <link rel="prev" title="Sensor Listener API" href="sensor_listener_api.html" /> 
@@ -366,7 +366,7 @@ <h1>Sensor Notifier API<a class="headerlink" href="#sensor-notifier-api" title="
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_oic.html b/v1_4_0/os/modules/sensor_framework/sensor_oic.html
index a916f3cc6..cf5b399f7 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_oic.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_oic.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>OIC Sensor Support &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>OIC Sensor Support &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" />
   <link rel="next" title="Sensor Shell Command" href="sensor_shell.html" />
   <link rel="prev" title="Sensor Notifier API" href="sensor_notifier_api.html" /> 
@@ -361,7 +361,7 @@ <h1>OIC Sensor Support<a class="headerlink" href="#oic-sensor-support" title="Pe
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sensor_framework/sensor_shell.html b/v1_4_0/os/modules/sensor_framework/sensor_shell.html
index 6df324e5e..a4764883e 100644
--- a/v1_4_0/os/modules/sensor_framework/sensor_shell.html
+++ b/v1_4_0/os/modules/sensor_framework/sensor_shell.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sensor Shell Command &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sensor Shell Command &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Mynewt Sensor Framework Overview" href="sensor_framework.html" />
   <link rel="next" title="Sensor Device Driver" href="sensor_driver.html" />
   <link rel="prev" title="OIC Sensor Support" href="sensor_oic.html" /> 
@@ -338,7 +338,7 @@ <h1>Sensor Shell Command<a class="headerlink" href="#sensor-shell-command" title
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/shell/shell.html b/v1_4_0/os/modules/shell/shell.html
index b6ff41ee2..05b8a095c 100644
--- a/v1_4_0/os/modules/shell/shell.html
+++ b/v1_4_0/os/modules/shell/shell.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Shell &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Shell &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="System Modules" href="../system_modules.html" />
   <link rel="next" title="Hardware Abstraction Layer" href="../hal/hal.html" />
   <link rel="prev" title="Console" href="../console/console.html" /> 
@@ -876,7 +876,7 @@ <h2><a class="toc-backref" href="#id5">API</a><a class="headerlink" href="#api"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/split/split.html b/v1_4_0/os/modules/split/split.html
index d48070a65..29e778081 100644
--- a/v1_4_0/os/modules/split/split.html
+++ b/v1_4_0/os/modules/split/split.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Split Images &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Split Images &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="Porting Mynewt OS" href="../../core_os/porting/port_os.html" />
   <link rel="prev" title="Bootloader" href="../bootloader/bootloader.html" /> 
@@ -784,7 +784,7 @@ <h2>Theory of Operation<a class="headerlink" href="#theory-of-operation" title="
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/stats/stats.html b/v1_4_0/os/modules/stats/stats.html
index 5bd19356c..459e84234 100644
--- a/v1_4_0/os/modules/stats/stats.html
+++ b/v1_4_0/os/modules/stats/stats.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Statistics Module &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Statistics Module &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="System Modules" href="../system_modules.html" />
   <link rel="next" title="Console" href="../console/console.html" />
   <link rel="prev" title="Logging" href="../logs/logs.html" /> 
@@ -834,7 +834,7 @@ <h2><a class="toc-backref" href="#id13">API</a><a class="headerlink" href="#api"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sysinitconfig/sysconfig_error.html b/v1_4_0/os/modules/sysinitconfig/sysconfig_error.html
index 0386ed148..ca5f0dc72 100644
--- a/v1_4_0/os/modules/sysinitconfig/sysconfig_error.html
+++ b/v1_4_0/os/modules/sysinitconfig/sysconfig_error.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Validation and Error Messages &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Validation and Error Messages &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Compile-Time Configuration and Initialization" href="sysinitconfig.html" />
   <link rel="next" title="File System Abstraction" href="../fs/fs.html" />
   <link rel="prev" title="Compile-Time Configuration and Initialization" href="sysinitconfig.html" /> 
@@ -764,7 +764,7 @@ <h3><a class="toc-backref" href="#id16">BSP Package Overrides Undefined Configur
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/sysinitconfig/sysinitconfig.html b/v1_4_0/os/modules/sysinitconfig/sysinitconfig.html
index beaf247a0..9f851e19f 100644
--- a/v1_4_0/os/modules/sysinitconfig/sysinitconfig.html
+++ b/v1_4_0/os/modules/sysinitconfig/sysinitconfig.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Compile-Time Configuration and Initialization &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Compile-Time Configuration and Initialization &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="Validation and Error Messages" href="sysconfig_error.html" />
   <link rel="prev" title="imgr_ver_str" href="../imgmgr/imgr_ver_str.html" /> 
@@ -977,7 +977,7 @@ <h2><a class="toc-backref" href="#id16">Conditional Configurations</a><a class="
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/system_modules.html b/v1_4_0/os/modules/system_modules.html
index 9d9e89ca4..8596e08cc 100644
--- a/v1_4_0/os/modules/system_modules.html
+++ b/v1_4_0/os/modules/system_modules.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>System Modules &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>System Modules &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="OS User Guide" href="../os_user_guide.html" />
   <link rel="next" title="Config" href="config/config.html" />
   <link rel="prev" title="Sanity" href="../core_os/sanity/sanity.html" /> 
@@ -331,7 +331,7 @@ <h1>System Modules<a class="headerlink" href="#system-modules" title="Permalink
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/modules/testutil/testutil.html b/v1_4_0/os/modules/testutil/testutil.html
index 174786b5d..1e74654a3 100644
--- a/v1_4_0/os/modules/testutil/testutil.html
+++ b/v1_4_0/os/modules/testutil/testutil.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>testutil &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>testutil &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="OS User Guide" href="../../os_user_guide.html" />
   <link rel="next" title="JSON" href="../json/json.html" />
   <link rel="prev" title="Creating and Configuring a Sensor Device" href="../sensor_framework/sensor_create.html" /> 
@@ -780,7 +780,7 @@ <h2><a class="toc-backref" href="#id4">API</a><a class="headerlink" href="#api"
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/os_user_guide.html b/v1_4_0/os/os_user_guide.html
index b212a40ef..d92603927 100644
--- a/v1_4_0/os/os_user_guide.html
+++ b/v1_4_0/os/os_user_guide.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>OS User Guide &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>OS User Guide &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="next" title="Apache Mynewt Operating System Kernel" href="core_os/mynewt_os.html" />
   <link rel="prev" title="Enable Wi-Fi on Arduino MKR1000" href="../tutorials/other/wi-fi_on_arduino.html" /> 
 
@@ -329,7 +329,7 @@ <h1>OS User Guide<a class="headerlink" href="#os-user-guide" title="Permalink to
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/tutorials/STM32F303.html b/v1_4_0/os/tutorials/STM32F303.html
index 402424983..1d381b39d 100644
--- a/v1_4_0/os/tutorials/STM32F303.html
+++ b/v1_4_0/os/tutorials/STM32F303.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Blinky, your “Hello World!”, on STM32F303 Discovery &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Blinky, your “Hello World!”, on STM32F303 Discovery &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" /> 
 
   
   <script src="../../_static/js/modernizr.min.js"></script>
@@ -479,7 +479,7 @@ <h2>Want more?<a class="headerlink" href="#want-more" title="Permalink to this h
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/os/tutorials/pin-wheel-mods.html b/v1_4_0/os/tutorials/pin-wheel-mods.html
index 5708d7c24..dd4443483 100644
--- a/v1_4_0/os/tutorials/pin-wheel-mods.html
+++ b/v1_4_0/os/tutorials/pin-wheel-mods.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Pin Wheel Modifications to “Blinky” on STM32F3 Discovery &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Pin Wheel Modifications to “Blinky” on STM32F3 Discovery &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" /> 
 
   
   <script src="../../_static/js/modernizr.min.js"></script>
@@ -366,7 +366,7 @@ <h2>Watch the LEDs go round and round<a class="headerlink" href="#watch-the-leds
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/search.html b/v1_4_0/search.html
index 62fb24330..a48d4a951 100644
--- a/v1_4_0/search.html
+++ b/v1_4_0/search.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Search &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Search &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="genindex.html" />
   <link rel="search" title="Search" href="#" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="index.html" /> 
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="index.html" /> 
 
   
   <script src="_static/js/modernizr.min.js"></script>
@@ -291,7 +291,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.4.1, Apache NimBLE 1.0
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: './',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/ble.html b/v1_4_0/tutorials/ble/ble.html
index c1e7be5c7..73e3e063b 100644
--- a/v1_4_0/tutorials/ble/ble.html
+++ b/v1_4_0/tutorials/ble/ble.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Bluetooth Low Energy &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Bluetooth Low Energy &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="Set up a bare bones NimBLE application" href="ble_bare_bones.html" />
   <link rel="prev" title="Project Slinky Using Olimex Board" href="../slinky/project-stm32-slinky.html" /> 
@@ -323,7 +323,7 @@ <h1>Bluetooth Low Energy<a class="headerlink" href="#bluetooth-low-energy" title
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/ble_bare_bones.html b/v1_4_0/tutorials/ble/ble_bare_bones.html
index e2eb2b21b..bf2084a6d 100644
--- a/v1_4_0/tutorials/ble/ble_bare_bones.html
+++ b/v1_4_0/tutorials/ble/ble_bare_bones.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Set up a bare bones NimBLE application &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Set up a bare bones NimBLE application &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Bluetooth Low Energy" href="ble.html" />
   <link rel="next" title="BLE iBeacon" href="ibeacon.html" />
   <link rel="prev" title="Bluetooth Low Energy" href="ble.html" /> 
@@ -504,7 +504,7 @@ <h2><a class="toc-backref" href="#id6">Conclusion</a><a class="headerlink" href=
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/blehci_project.html b/v1_4_0/tutorials/ble/blehci_project.html
index f45711e74..0e7b949ba 100644
--- a/v1_4_0/tutorials/ble/blehci_project.html
+++ b/v1_4_0/tutorials/ble/blehci_project.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Use HCI access to NimBLE controller &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Use HCI access to NimBLE controller &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Bluetooth Low Energy" href="ble.html" />
   <link rel="next" title="LoRaWAN App" href="../lora/lorawanapp.html" />
   <link rel="prev" title="BLE Peripheral App" href="bleprph/bleprph-sections/bleprph-app.html" /> 
@@ -531,7 +531,7 @@ <h2><a class="toc-backref" href="#id10">Start btmgmt to send commands</a><a clas
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
index 565ce6354..8a82b5b22 100644
--- a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
+++ b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Advertising &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Advertising &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="BLE Peripheral Project" href="../bleprph.html" />
   <link rel="next" title="GAP Event callbacks" href="bleprph-gap-event.html" />
   <link rel="prev" title="Characteristic Access" href="bleprph-chr-access.html" /> 
@@ -464,7 +464,7 @@ <h2><a class="toc-backref" href="#id3">Begin advertising</a><a class="headerlink
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
index 78bfe0db8..33544b18c 100644
--- a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
+++ b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>BLE Peripheral App &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>BLE Peripheral App &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="BLE Peripheral Project" href="../bleprph.html" />
   <link rel="next" title="Use HCI access to NimBLE controller" href="../../blehci_project.html" />
   <link rel="prev" title="GAP Event callbacks" href="bleprph-gap-event.html" /> 
@@ -414,7 +414,7 @@ <h2>Create a New Target<a class="headerlink" href="#create-a-new-target" title="
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
index d2b22cf54..df8152131 100644
--- a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
+++ b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Characteristic Access &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Characteristic Access &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="BLE Peripheral Project" href="../bleprph.html" />
   <link rel="next" title="Advertising" href="bleprph-adv.html" />
   <link rel="prev" title="Service Registration" href="bleprph-svc-reg.html" /> 
@@ -641,7 +641,7 @@ <h2><a class="toc-backref" href="#id5">Write access</a><a class="headerlink" hre
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
index d505eae6e..108ba0388 100644
--- a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
+++ b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>GAP Event callbacks &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>GAP Event callbacks &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="BLE Peripheral Project" href="../bleprph.html" />
   <link rel="next" title="BLE Peripheral App" href="bleprph-app.html" />
   <link rel="prev" title="Advertising" href="bleprph-adv.html" /> 
@@ -483,7 +483,7 @@ <h2><a class="toc-backref" href="#id3">Guarantees</a><a class="headerlink" href=
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
index 063ad3039..3264c8504 100644
--- a/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
+++ b/v1_4_0/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Service Registration &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Service Registration &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../../genindex.html" />
   <link rel="search" title="Search" href="../../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../../index.html" />
   <link rel="up" title="BLE Peripheral Project" href="../bleprph.html" />
   <link rel="next" title="Characteristic Access" href="bleprph-chr-access.html" />
   <link rel="prev" title="BLE Peripheral Project" href="../bleprph.html" /> 
@@ -702,7 +702,7 @@ <h2><a class="toc-backref" href="#id3">Descriptors and Included Services</a><a c
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/bleprph/bleprph.html b/v1_4_0/tutorials/ble/bleprph/bleprph.html
index 4fbb5a9b7..e1b3a7e70 100644
--- a/v1_4_0/tutorials/ble/bleprph/bleprph.html
+++ b/v1_4_0/tutorials/ble/bleprph/bleprph.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>BLE Peripheral Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>BLE Peripheral Project &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../../genindex.html" />
   <link rel="search" title="Search" href="../../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../../index.html" />
   <link rel="up" title="Bluetooth Low Energy" href="../ble.html" />
   <link rel="next" title="Service Registration" href="bleprph-sections/bleprph-svc-reg.html" />
   <link rel="prev" title="BLE Eddystone" href="../eddystone.html" /> 
@@ -372,7 +372,7 @@ <h3><a class="toc-backref" href="#id2">Services, Characteristics, Descriptors</a
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/eddystone.html b/v1_4_0/tutorials/ble/eddystone.html
index 56a7bcf75..1b303983e 100644
--- a/v1_4_0/tutorials/ble/eddystone.html
+++ b/v1_4_0/tutorials/ble/eddystone.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>BLE Eddystone &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>BLE Eddystone &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Bluetooth Low Energy" href="ble.html" />
   <link rel="next" title="BLE Peripheral Project" href="bleprph/bleprph.html" />
   <link rel="prev" title="BLE iBeacon" href="ibeacon.html" /> 
@@ -736,7 +736,7 @@ <h2>Source Listing<a class="headerlink" href="#source-listing" title="Permalink
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/ble/ibeacon.html b/v1_4_0/tutorials/ble/ibeacon.html
index 5c5b3a4ed..4afa3568c 100644
--- a/v1_4_0/tutorials/ble/ibeacon.html
+++ b/v1_4_0/tutorials/ble/ibeacon.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>BLE iBeacon &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>BLE iBeacon &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Bluetooth Low Energy" href="ble.html" />
   <link rel="next" title="BLE Eddystone" href="eddystone.html" />
   <link rel="prev" title="Set up a bare bones NimBLE application" href="ble_bare_bones.html" /> 
@@ -693,7 +693,7 @@ <h2><a class="toc-backref" href="#id8">Source Listing</a><a class="headerlink" h
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/blinky/arduino_zero.html b/v1_4_0/tutorials/blinky/arduino_zero.html
index ac51e09c1..933aa5475 100644
--- a/v1_4_0/tutorials/blinky/arduino_zero.html
+++ b/v1_4_0/tutorials/blinky/arduino_zero.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Blinky, your “Hello World!”, on Arduino Zero &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Blinky, your “Hello World!”, on Arduino Zero &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Blinky" href="blinky.html" />
   <link rel="next" title="Blinky, your “Hello World!”, on Arduino Primo" href="blinky_primo.html" />
   <link rel="prev" title="Project Blinky" href="blinky.html" /> 
@@ -712,7 +712,7 @@ <h2><a class="toc-backref" href="#id9">Run the Blinky Application</a><a class="h
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/blinky/blinky.html b/v1_4_0/tutorials/blinky/blinky.html
index 3828a0fc6..0bdd54607 100644
--- a/v1_4_0/tutorials/blinky/blinky.html
+++ b/v1_4_0/tutorials/blinky/blinky.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Project Blinky &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Project Blinky &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="Blinky, your “Hello World!”, on Arduino Zero" href="arduino_zero.html" />
   <link rel="prev" title="Tutorials" href="../tutorials.html" /> 
@@ -394,7 +394,7 @@ <h2><a class="toc-backref" href="#id4">Overview of Steps</a><a class="headerlink
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/blinky/blinky_console.html b/v1_4_0/tutorials/blinky/blinky_console.html
index be5aae775..363dd4b61 100644
--- a/v1_4_0/tutorials/blinky/blinky_console.html
+++ b/v1_4_0/tutorials/blinky/blinky_console.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Enabling The Console and Shell for Blinky &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Enabling The Console and Shell for Blinky &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Blinky" href="blinky.html" />
   <link rel="next" title="Adding Repositories to your Project" href="../repo/add_repos.html" />
   <link rel="prev" title="Blinky, your “Hello World!”, on STM32F4-Discovery" href="blinky_stm32f4disc.html" /> 
@@ -540,7 +540,7 @@ <h2><a class="toc-backref" href="#id8">Communicate with the Application</a><a cl
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/blinky/blinky_primo.html b/v1_4_0/tutorials/blinky/blinky_primo.html
index 9fc5b21c2..d0ae493d2 100644
--- a/v1_4_0/tutorials/blinky/blinky_primo.html
+++ b/v1_4_0/tutorials/blinky/blinky_primo.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Blinky, your “Hello World!”, on Arduino Primo &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Blinky, your “Hello World!”, on Arduino Primo &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Blinky" href="blinky.html" />
   <link rel="next" title="Blinky, your “Hello World!”, on Olimex" href="olimex.html" />
   <link rel="prev" title="Blinky, your “Hello World!”, on Arduino Zero" href="arduino_zero.html" /> 
@@ -609,7 +609,7 @@ <h2><a class="toc-backref" href="#id12">Erase Flash</a><a class="headerlink" hre
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/blinky/blinky_stm32f4disc.html b/v1_4_0/tutorials/blinky/blinky_stm32f4disc.html
index 29afd112c..8bf43e133 100644
--- a/v1_4_0/tutorials/blinky/blinky_stm32f4disc.html
+++ b/v1_4_0/tutorials/blinky/blinky_stm32f4disc.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Blinky, your “Hello World!”, on STM32F4-Discovery &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Blinky, your “Hello World!”, on STM32F4-Discovery &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Blinky" href="blinky.html" />
   <link rel="next" title="Enabling The Console and Shell for Blinky" href="blinky_console.html" />
   <link rel="prev" title="Blinky, your “Hello World!”, on RedBear Nano 2" href="rbnano2.html" /> 
@@ -545,7 +545,7 @@ <h2>Load the Bootloader and the Blinky Application Image<a class="headerlink" hr
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/blinky/nRF52.html b/v1_4_0/tutorials/blinky/nRF52.html
index dc0cae3e2..0286ee34e 100644
--- a/v1_4_0/tutorials/blinky/nRF52.html
+++ b/v1_4_0/tutorials/blinky/nRF52.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Blinky, your “Hello World!”, on a nRF52 Development Kit &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Blinky, your “Hello World!”, on a nRF52 Development Kit &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Blinky" href="blinky.html" />
   <link rel="next" title="Blinky, your “Hello World!”, on RedBear Nano 2" href="rbnano2.html" />
   <link rel="prev" title="Blinky, your “Hello World!”, on Olimex" href="olimex.html" /> 
@@ -521,7 +521,7 @@ <h2><a class="toc-backref" href="#id7">Load the Bootloader and the Blinky Applic
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/blinky/olimex.html b/v1_4_0/tutorials/blinky/olimex.html
index d5eac048e..6bed61aac 100644
--- a/v1_4_0/tutorials/blinky/olimex.html
+++ b/v1_4_0/tutorials/blinky/olimex.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Blinky, your “Hello World!”, on Olimex &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Blinky, your “Hello World!”, on Olimex &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Blinky" href="blinky.html" />
   <link rel="next" title="Blinky, your “Hello World!”, on a nRF52 Development Kit" href="nRF52.html" />
   <link rel="prev" title="Blinky, your “Hello World!”, on Arduino Primo" href="blinky_primo.html" /> 
@@ -570,7 +570,7 @@ <h2><a class="toc-backref" href="#id8">Load the Bootloader and Blinky Applicatio
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/blinky/rbnano2.html b/v1_4_0/tutorials/blinky/rbnano2.html
index 434bda26f..3ee997e2d 100644
--- a/v1_4_0/tutorials/blinky/rbnano2.html
+++ b/v1_4_0/tutorials/blinky/rbnano2.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Blinky, your “Hello World!”, on RedBear Nano 2 &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Blinky, your “Hello World!”, on RedBear Nano 2 &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Blinky" href="blinky.html" />
   <link rel="next" title="Blinky, your “Hello World!”, on STM32F4-Discovery" href="blinky_stm32f4disc.html" />
   <link rel="prev" title="Blinky, your “Hello World!”, on a nRF52 Development Kit" href="nRF52.html" /> 
@@ -531,7 +531,7 @@ <h2><a class="toc-backref" href="#id9">Load the Blinky Application Image</a><a c
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/devmgmt/add_newtmgr.html b/v1_4_0/tutorials/devmgmt/add_newtmgr.html
index b94ea81a3..78c00c596 100644
--- a/v1_4_0/tutorials/devmgmt/add_newtmgr.html
+++ b/v1_4_0/tutorials/devmgmt/add_newtmgr.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Enabling Newt Manager in Your Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Enabling Newt Manager in Your Application &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Remote Device Management" href="devmgmt.html" />
   <link rel="next" title="Over-the-Air Image Upgrade" href="ota_upgrade_nrf52.html" />
   <link rel="prev" title="Remote Device Management" href="devmgmt.html" /> 
@@ -617,7 +617,7 @@ <h3><a class="toc-backref" href="#id13">Customize the Newt Manager Commands that
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/devmgmt/devmgmt.html b/v1_4_0/tutorials/devmgmt/devmgmt.html
index e56d62edb..32d293e5a 100644
--- a/v1_4_0/tutorials/devmgmt/devmgmt.html
+++ b/v1_4_0/tutorials/devmgmt/devmgmt.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Remote Device Management &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Remote Device Management &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="Enabling Newt Manager in Your Application" href="add_newtmgr.html" />
   <link rel="prev" title="Tasks and Priority Management" href="../os_fundamentals/tasks_lesson.html" /> 
@@ -322,7 +322,7 @@ <h1>Remote Device Management<a class="headerlink" href="#remote-device-managemen
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/devmgmt/ota_upgrade_nrf52.html b/v1_4_0/tutorials/devmgmt/ota_upgrade_nrf52.html
index 0e135b551..2ab6eae98 100644
--- a/v1_4_0/tutorials/devmgmt/ota_upgrade_nrf52.html
+++ b/v1_4_0/tutorials/devmgmt/ota_upgrade_nrf52.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Over-the-Air Image Upgrade &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Over-the-Air Image Upgrade &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Remote Device Management" href="devmgmt.html" />
   <link rel="next" title="Sensors" href="../sensors/sensors.html" />
   <link rel="prev" title="Enabling Newt Manager in Your Application" href="add_newtmgr.html" /> 
@@ -533,7 +533,7 @@ <h2><a class="toc-backref" href="#id7">Step 4: Confirming the Image</a><a class=
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/lora/lorawanapp.html b/v1_4_0/tutorials/lora/lorawanapp.html
index 9bc393168..e66c0cdb3 100644
--- a/v1_4_0/tutorials/lora/lorawanapp.html
+++ b/v1_4_0/tutorials/lora/lorawanapp.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>LoRaWAN App &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>LoRaWAN App &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="OS Fundamentals" href="../os_fundamentals/os_fundamentals.html" />
   <link rel="prev" title="Use HCI access to NimBLE controller" href="../ble/blehci_project.html" /> 
@@ -633,7 +633,7 @@ <h2>Sending data<a class="headerlink" href="#sending-data" title="Permalink to t
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/os_fundamentals/event_queue.html b/v1_4_0/tutorials/os_fundamentals/event_queue.html
index 9bf5cc003..999967124 100644
--- a/v1_4_0/tutorials/os_fundamentals/event_queue.html
+++ b/v1_4_0/tutorials/os_fundamentals/event_queue.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>How to Use Event Queues to Manage Multiple Events &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>How to Use Event Queues to Manage Multiple Events &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="OS Fundamentals" href="os_fundamentals.html" />
   <link rel="next" title="Tasks and Priority Management" href="tasks_lesson.html" />
   <link rel="prev" title="OS Fundamentals" href="os_fundamentals.html" /> 
@@ -827,7 +827,7 @@ <h3><a class="toc-backref" href="#id9">Putting It All Together</a><a class="head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/os_fundamentals/os_fundamentals.html b/v1_4_0/tutorials/os_fundamentals/os_fundamentals.html
index e4e93d033..d00cce9f1 100644
--- a/v1_4_0/tutorials/os_fundamentals/os_fundamentals.html
+++ b/v1_4_0/tutorials/os_fundamentals/os_fundamentals.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>OS Fundamentals &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>OS Fundamentals &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="How to Use Event Queues to Manage Multiple Events" href="event_queue.html" />
   <link rel="prev" title="LoRaWAN App" href="../lora/lorawanapp.html" /> 
@@ -322,7 +322,7 @@ <h1>OS Fundamentals<a class="headerlink" href="#os-fundamentals" title="Permalin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/os_fundamentals/tasks_lesson.html b/v1_4_0/tutorials/os_fundamentals/tasks_lesson.html
index 577edbe56..77191a48c 100644
--- a/v1_4_0/tutorials/os_fundamentals/tasks_lesson.html
+++ b/v1_4_0/tutorials/os_fundamentals/tasks_lesson.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Tasks and Priority Management &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Tasks and Priority Management &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="OS Fundamentals" href="os_fundamentals.html" />
   <link rel="next" title="Remote Device Management" href="../devmgmt/devmgmt.html" />
   <link rel="prev" title="How to Use Event Queues to Manage Multiple Events" href="event_queue.html" /> 
@@ -611,7 +611,7 @@ <h3><a class="toc-backref" href="#id12">Priority Management Considerations</a><a
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/other/codesize.html b/v1_4_0/tutorials/other/codesize.html
index 1c0a9a973..8edef696e 100644
--- a/v1_4_0/tutorials/other/codesize.html
+++ b/v1_4_0/tutorials/other/codesize.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>How to Reduce Application Code Size &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>How to Reduce Application Code Size &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Other" href="other.html" />
   <link rel="next" title="Write a Test Suite for a Package" href="unit_test.html" />
   <link rel="prev" title="Other" href="other.html" /> 
@@ -367,7 +367,7 @@ <h1>How to Reduce Application Code Size<a class="headerlink" href="#how-to-reduc
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/other/other.html b/v1_4_0/tutorials/other/other.html
index eb3188d24..63737cf71 100644
--- a/v1_4_0/tutorials/other/other.html
+++ b/v1_4_0/tutorials/other/other.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Other &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Other &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="How to Reduce Application Code Size" href="codesize.html" />
   <link rel="prev" title="SEGGER SystemView" href="../tooling/segger_sysview.html" /> 
@@ -324,7 +324,7 @@ <h1>Other<a class="headerlink" href="#other" title="Permalink to this headline">
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/other/unit_test.html b/v1_4_0/tutorials/other/unit_test.html
index 36ed7c8bf..009b093cf 100644
--- a/v1_4_0/tutorials/other/unit_test.html
+++ b/v1_4_0/tutorials/other/unit_test.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Write a Test Suite for a Package &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Write a Test Suite for a Package &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Other" href="other.html" />
   <link rel="next" title="Enable Wi-Fi on Arduino MKR1000" href="wi-fi_on_arduino.html" />
   <link rel="prev" title="How to Reduce Application Code Size" href="codesize.html" /> 
@@ -648,7 +648,7 @@ <h2>Congratulations<a class="headerlink" href="#congratulations" title="Permalin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/other/wi-fi_on_arduino.html b/v1_4_0/tutorials/other/wi-fi_on_arduino.html
index f893e8f5b..055459c25 100644
--- a/v1_4_0/tutorials/other/wi-fi_on_arduino.html
+++ b/v1_4_0/tutorials/other/wi-fi_on_arduino.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Enable Wi-Fi on Arduino MKR1000 &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Enable Wi-Fi on Arduino MKR1000 &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Other" href="other.html" />
   <link rel="next" title="OS User Guide" href="../../os/os_user_guide.html" />
   <link rel="prev" title="Write a Test Suite for a Package" href="unit_test.html" /> 
@@ -641,7 +641,7 @@ <h2>Establish TCP Connection and Talk!<a class="headerlink" href="#establish-tcp
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/repo/add_repos.html b/v1_4_0/tutorials/repo/add_repos.html
index 990d8a85e..59451fcde 100644
--- a/v1_4_0/tutorials/repo/add_repos.html
+++ b/v1_4_0/tutorials/repo/add_repos.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Adding Repositories to your Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Adding Repositories to your Project &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="Create a Repo out of a Project" href="create_repo.html" />
   <link rel="prev" title="Enabling The Console and Shell for Blinky" href="../blinky/blinky_console.html" /> 
@@ -588,7 +588,7 @@ <h2>How to find out what Repos are available for Mynewt components<a class="head
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/repo/create_repo.html b/v1_4_0/tutorials/repo/create_repo.html
index 9a75bb35f..f1e9017d0 100644
--- a/v1_4_0/tutorials/repo/create_repo.html
+++ b/v1_4_0/tutorials/repo/create_repo.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Create a Repo out of a Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Create a Repo out of a Project &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Adding Repositories to your Project" href="add_repos.html" />
   <link rel="next" title="Accessing a private repository" href="private_repo.html" />
   <link rel="prev" title="Adding Repositories to your Project" href="add_repos.html" /> 
@@ -475,7 +475,7 @@ <h2>Resolving dependencies<a class="headerlink" href="#resolving-dependencies" t
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/repo/private_repo.html b/v1_4_0/tutorials/repo/private_repo.html
index 19c73105f..98647f5f8 100644
--- a/v1_4_0/tutorials/repo/private_repo.html
+++ b/v1_4_0/tutorials/repo/private_repo.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Accessing a private repository &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Accessing a private repository &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Adding Repositories to your Project" href="add_repos.html" />
   <link rel="next" title="Upgrade a repo" href="upgrade_repo.html" />
   <link rel="prev" title="Create a Repo out of a Project" href="create_repo.html" /> 
@@ -360,7 +360,7 @@ <h1>Accessing a private repository<a class="headerlink" href="#accessing-a-priva
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/repo/upgrade_repo.html b/v1_4_0/tutorials/repo/upgrade_repo.html
index 175e4c0bb..766083c13 100644
--- a/v1_4_0/tutorials/repo/upgrade_repo.html
+++ b/v1_4_0/tutorials/repo/upgrade_repo.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Upgrade a repo &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Upgrade a repo &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Adding Repositories to your Project" href="add_repos.html" />
   <link rel="next" title="Project Slinky" href="../slinky/project-slinky.html" />
   <link rel="prev" title="Accessing a private repository" href="private_repo.html" /> 
@@ -329,7 +329,7 @@ <h1>Upgrade a repo<a class="headerlink" href="#upgrade-a-repo" title="Permalink
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/air_quality.html b/v1_4_0/tutorials/sensors/air_quality.html
index 231b46e03..f1df1c8c3 100644
--- a/v1_4_0/tutorials/sensors/air_quality.html
+++ b/v1_4_0/tutorials/sensors/air_quality.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Air Quality Sensor Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Air Quality Sensor Project &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Sensors" href="sensors.html" />
   <link rel="next" title="Air Quality Sensor Project" href="air_quality_sensor.html" />
   <link rel="prev" title="Adding OIC Sensor Support to the bleprph_oic Application" href="sensor_bleprph_oic.html" /> 
@@ -330,7 +330,7 @@ <h1>Air Quality Sensor Project<a class="headerlink" href="#air-quality-sensor-pr
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/air_quality_ble.html b/v1_4_0/tutorials/sensors/air_quality_ble.html
index d18b213d2..2d7a2137c 100644
--- a/v1_4_0/tutorials/sensors/air_quality_ble.html
+++ b/v1_4_0/tutorials/sensors/air_quality_ble.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Air Quality Sensor Project via Bluetooth &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Air Quality Sensor Project via Bluetooth &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Air Quality Sensor Project" href="air_quality.html" />
   <link rel="next" title="Adding an Analog Sensor on nRF52" href="nrf52_adc.html" />
   <link rel="prev" title="Air Quality Sensor Project" href="air_quality_sensor.html" /> 
@@ -511,7 +511,7 @@ <h2>Add Bluetooth GATT Services<a class="headerlink" href="#add-bluetooth-gatt-s
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/air_quality_sensor.html b/v1_4_0/tutorials/sensors/air_quality_sensor.html
index 0eb3cc243..3c8d053b0 100644
--- a/v1_4_0/tutorials/sensors/air_quality_sensor.html
+++ b/v1_4_0/tutorials/sensors/air_quality_sensor.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Air Quality Sensor Project &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Air Quality Sensor Project &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Air Quality Sensor Project" href="air_quality.html" />
   <link rel="next" title="Air Quality Sensor Project via Bluetooth" href="air_quality_ble.html" />
   <link rel="prev" title="Air Quality Sensor Project" href="air_quality.html" /> 
@@ -1020,7 +1020,7 @@ <h2><a class="toc-backref" href="#id8">Using HAL for Drivers</a><a class="header
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/nrf52_adc.html b/v1_4_0/tutorials/sensors/nrf52_adc.html
index 0beddc920..bfc803fba 100644
--- a/v1_4_0/tutorials/sensors/nrf52_adc.html
+++ b/v1_4_0/tutorials/sensors/nrf52_adc.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Adding an Analog Sensor on nRF52 &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Adding an Analog Sensor on nRF52 &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Sensors" href="sensors.html" />
   <link rel="next" title="Enabling and Calibrating Off-Board DRV2605 LRA Actuator" href="sensor_nrf52_drv2605.html" />
   <link rel="prev" title="Air Quality Sensor Project via Bluetooth" href="air_quality_ble.html" /> 
@@ -1061,7 +1061,7 @@ <h2><a class="toc-backref" href="#id11">Conclusion</a><a class="headerlink" href
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensor_bleprph_oic.html b/v1_4_0/tutorials/sensors/sensor_bleprph_oic.html
index 18a095075..69f11051a 100644
--- a/v1_4_0/tutorials/sensors/sensor_bleprph_oic.html
+++ b/v1_4_0/tutorials/sensors/sensor_bleprph_oic.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Adding OIC Sensor Support to the bleprph_oic Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Adding OIC Sensor Support to the bleprph_oic Application &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Enabling OIC Sensor Data Monitoring" href="sensor_oic_overview.html" />
   <link rel="next" title="Air Quality Sensor Project" href="air_quality.html" />
   <link rel="prev" title="Enabling OIC Sensor Data Monitoring in the sensors_test Application" href="sensor_nrf52_bno055_oic.html" /> 
@@ -629,7 +629,7 @@ <h2><a class="toc-backref" href="#id12">Step 7: Viewing Sensor Data from the Myn
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensor_nrf52_bno055.html b/v1_4_0/tutorials/sensors/sensor_nrf52_bno055.html
index bee43e62f..092bb441b 100644
--- a/v1_4_0/tutorials/sensors/sensor_nrf52_bno055.html
+++ b/v1_4_0/tutorials/sensors/sensor_nrf52_bno055.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Enabling an Off-Board Sensor in an Existing Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Enabling an Off-Board Sensor in an Existing Application &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Sensor Tutorials Overview" href="sensors_framework.html" />
   <link rel="next" title="Changing the Default Configuration for a Sensor" href="sensor_offboard_config.html" />
   <link rel="prev" title="Sensor Tutorials Overview" href="sensors_framework.html" /> 
@@ -889,7 +889,7 @@ <h2><a class="toc-backref" href="#id16">Next Steps</a><a class="headerlink" href
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensor_nrf52_bno055_oic.html b/v1_4_0/tutorials/sensors/sensor_nrf52_bno055_oic.html
index a79e38083..28b63edb4 100644
--- a/v1_4_0/tutorials/sensors/sensor_nrf52_bno055_oic.html
+++ b/v1_4_0/tutorials/sensors/sensor_nrf52_bno055_oic.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Enabling OIC Sensor Data Monitoring in the sensors_test Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Enabling OIC Sensor Data Monitoring in the sensors_test Application &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Enabling OIC Sensor Data Monitoring" href="sensor_oic_overview.html" />
   <link rel="next" title="Adding OIC Sensor Support to the bleprph_oic Application" href="sensor_bleprph_oic.html" />
   <link rel="prev" title="Enabling OIC Sensor Data Monitoring" href="sensor_oic_overview.html" /> 
@@ -450,7 +450,7 @@ <h2><a class="toc-backref" href="#id4">Step 3: Viewing Sensor Data from the Myne
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensor_nrf52_drv2605.html b/v1_4_0/tutorials/sensors/sensor_nrf52_drv2605.html
index e131f8cfe..c033be6b6 100644
--- a/v1_4_0/tutorials/sensors/sensor_nrf52_drv2605.html
+++ b/v1_4_0/tutorials/sensors/sensor_nrf52_drv2605.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Enabling and Calibrating Off-Board DRV2605 LRA Actuator &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Enabling and Calibrating Off-Board DRV2605 LRA Actuator &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Sensors" href="sensors.html" />
   <link rel="next" title="Tooling" href="../tooling/tooling.html" />
   <link rel="prev" title="Adding an Analog Sensor on nRF52" href="nrf52_adc.html" /> 
@@ -525,7 +525,7 @@ <h2><a class="toc-backref" href="#id6">Conclusion</a><a class="headerlink" href=
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensor_offboard_config.html b/v1_4_0/tutorials/sensors/sensor_offboard_config.html
index 0044db259..0a7b2061b 100644
--- a/v1_4_0/tutorials/sensors/sensor_offboard_config.html
+++ b/v1_4_0/tutorials/sensors/sensor_offboard_config.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Changing the Default Configuration for a Sensor &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Changing the Default Configuration for a Sensor &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Sensor Tutorials Overview" href="sensors_framework.html" />
   <link rel="next" title="Developing an Application for an Onboard Sensor" href="sensor_thingy_lis2dh12_onb.html" />
   <link rel="prev" title="Enabling an Off-Board Sensor in an Existing Application" href="sensor_nrf52_bno055.html" /> 
@@ -561,7 +561,7 @@ <h3><a class="toc-backref" href="#id11">Step 8: Verifying that the Accelerometer
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensor_oic_overview.html b/v1_4_0/tutorials/sensors/sensor_oic_overview.html
index 67c727a44..622729da3 100644
--- a/v1_4_0/tutorials/sensors/sensor_oic_overview.html
+++ b/v1_4_0/tutorials/sensors/sensor_oic_overview.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Enabling OIC Sensor Data Monitoring &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Enabling OIC Sensor Data Monitoring &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Sensor Tutorials Overview" href="sensors_framework.html" />
   <link rel="next" title="Enabling OIC Sensor Data Monitoring in the sensors_test Application" href="sensor_nrf52_bno055_oic.html" />
   <link rel="prev" title="Developing an Application for an Onboard Sensor" href="sensor_thingy_lis2dh12_onb.html" /> 
@@ -393,7 +393,7 @@ <h2><a class="toc-backref" href="#id2">Overview of OIC Support in the Sensor Fra
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensor_thingy_lis2dh12_onb.html b/v1_4_0/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
index 0a405a6fa..ea385bc62 100644
--- a/v1_4_0/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
+++ b/v1_4_0/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Developing an Application for an Onboard Sensor &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Developing an Application for an Onboard Sensor &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Sensor Tutorials Overview" href="sensors_framework.html" />
   <link rel="next" title="Enabling OIC Sensor Data Monitoring" href="sensor_oic_overview.html" />
   <link rel="prev" title="Changing the Default Configuration for a Sensor" href="sensor_offboard_config.html" /> 
@@ -1037,7 +1037,7 @@ <h3><a class="toc-backref" href="#id15">Step 4: Rebuilding the Application and C
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensors.html b/v1_4_0/tutorials/sensors/sensors.html
index 86c0cfd2c..5c3011aef 100644
--- a/v1_4_0/tutorials/sensors/sensors.html
+++ b/v1_4_0/tutorials/sensors/sensors.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sensors &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sensors &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="Sensor Tutorials Overview" href="sensors_framework.html" />
   <link rel="prev" title="Over-the-Air Image Upgrade" href="../devmgmt/ota_upgrade_nrf52.html" /> 
@@ -326,7 +326,7 @@ <h1>Sensors<a class="headerlink" href="#sensors" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/sensors/sensors_framework.html b/v1_4_0/tutorials/sensors/sensors_framework.html
index 8cad01e97..5a9dcffff 100644
--- a/v1_4_0/tutorials/sensors/sensors_framework.html
+++ b/v1_4_0/tutorials/sensors/sensors_framework.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Sensor Tutorials Overview &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Sensor Tutorials Overview &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Sensors" href="sensors.html" />
   <link rel="next" title="Enabling an Off-Board Sensor in an Existing Application" href="sensor_nrf52_bno055.html" />
   <link rel="prev" title="Sensors" href="sensors.html" /> 
@@ -392,7 +392,7 @@ <h2><a class="toc-backref" href="#id3">Prerequisites</a><a class="headerlink" hr
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/slinky/project-nrf52-slinky.html b/v1_4_0/tutorials/slinky/project-nrf52-slinky.html
index 37c1e1615..038899eb7 100644
--- a/v1_4_0/tutorials/slinky/project-nrf52-slinky.html
+++ b/v1_4_0/tutorials/slinky/project-nrf52-slinky.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Project Slinky using the Nordic nRF52 Board &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Project Slinky using the Nordic nRF52 Board &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Slinky" href="project-slinky.html" />
   <link rel="next" title="Project Slinky Using Olimex Board" href="project-stm32-slinky.html" />
   <link rel="prev" title="Project Sim Slinky" href="project-sim-slinky.html" /> 
@@ -557,7 +557,7 @@ <h2><a class="toc-backref" href="#id9">Use Newtmgr to Query the Board</a><a clas
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/slinky/project-sim-slinky.html b/v1_4_0/tutorials/slinky/project-sim-slinky.html
index d245552b1..a1eeaea24 100644
--- a/v1_4_0/tutorials/slinky/project-sim-slinky.html
+++ b/v1_4_0/tutorials/slinky/project-sim-slinky.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Project Sim Slinky &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Project Sim Slinky &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Slinky" href="project-slinky.html" />
   <link rel="next" title="Project Slinky using the Nordic nRF52 Board" href="project-nrf52-slinky.html" />
   <link rel="prev" title="Project Slinky" href="project-slinky.html" /> 
@@ -440,7 +440,7 @@ <h2><a class="toc-backref" href="#id7">Executing newtmgr commands with the targe
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/slinky/project-slinky.html b/v1_4_0/tutorials/slinky/project-slinky.html
index ab37415c8..8bdecc051 100644
--- a/v1_4_0/tutorials/slinky/project-slinky.html
+++ b/v1_4_0/tutorials/slinky/project-slinky.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Project Slinky &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Project Slinky &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="Project Sim Slinky" href="project-sim-slinky.html" />
   <link rel="prev" title="Upgrade a repo" href="../repo/upgrade_repo.html" /> 
@@ -372,7 +372,7 @@ <h2><a class="toc-backref" href="#id3">Overview of Steps</a><a class="headerlink
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/slinky/project-stm32-slinky.html b/v1_4_0/tutorials/slinky/project-stm32-slinky.html
index fa6c767bf..3c46bd0ad 100644
--- a/v1_4_0/tutorials/slinky/project-stm32-slinky.html
+++ b/v1_4_0/tutorials/slinky/project-stm32-slinky.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Project Slinky Using Olimex Board &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Project Slinky Using Olimex Board &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Project Slinky" href="project-slinky.html" />
   <link rel="next" title="Bluetooth Low Energy" href="../ble/ble.html" />
   <link rel="prev" title="Project Slinky using the Nordic nRF52 Board" href="project-nrf52-slinky.html" /> 
@@ -592,7 +592,7 @@ <h2><a class="toc-backref" href="#id10">Use Newtmgr to Query the Board</a><a cla
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/tooling/segger_rtt.html b/v1_4_0/tutorials/tooling/segger_rtt.html
index 954ef1f20..1bb7b1cd9 100644
--- a/v1_4_0/tutorials/tooling/segger_rtt.html
+++ b/v1_4_0/tutorials/tooling/segger_rtt.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>SEGGER RTT Console &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>SEGGER RTT Console &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tooling" href="tooling.html" />
   <link rel="next" title="SEGGER SystemView" href="segger_sysview.html" />
   <link rel="prev" title="Tooling" href="tooling.html" /> 
@@ -421,7 +421,7 @@ <h3><a class="toc-backref" href="#id4">Connect to console</a><a class="headerlin
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/tooling/segger_sysview.html b/v1_4_0/tutorials/tooling/segger_sysview.html
index 261cc0456..460dbd172 100644
--- a/v1_4_0/tutorials/tooling/segger_sysview.html
+++ b/v1_4_0/tutorials/tooling/segger_sysview.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>SEGGER SystemView &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>SEGGER SystemView &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tooling" href="tooling.html" />
   <link rel="next" title="Other" href="../other/other.html" />
   <link rel="prev" title="SEGGER RTT Console" href="segger_rtt.html" /> 
@@ -406,7 +406,7 @@ <h3><a class="toc-backref" href="#id5">Launch the app</a><a class="headerlink" h
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/tooling/tooling.html b/v1_4_0/tutorials/tooling/tooling.html
index a83b4e5fd..2df4eca88 100644
--- a/v1_4_0/tutorials/tooling/tooling.html
+++ b/v1_4_0/tutorials/tooling/tooling.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Tooling &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Tooling &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../../genindex.html" />
   <link rel="search" title="Search" href="../../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../../index.html" />
   <link rel="up" title="Tutorials" href="../tutorials.html" />
   <link rel="next" title="SEGGER RTT Console" href="segger_rtt.html" />
   <link rel="prev" title="Enabling and Calibrating Off-Board DRV2605 LRA Actuator" href="../sensors/sensor_nrf52_drv2605.html" /> 
@@ -322,7 +322,7 @@ <h1>Tooling<a class="headerlink" href="#tooling" title="Permalink to this headli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,
diff --git a/v1_4_0/tutorials/tutorials.html b/v1_4_0/tutorials/tutorials.html
index d3f7be0f0..60bbeb940 100644
--- a/v1_4_0/tutorials/tutorials.html
+++ b/v1_4_0/tutorials/tutorials.html
@@ -11,7 +11,7 @@
   
 
   
-  <title>Tutorials &mdash; Apache Mynewt 1.3.0 documentation</title>
+  <title>Tutorials &mdash; Apache Mynewt 1.4.0 documentation</title>
   
 
   
@@ -40,7 +40,7 @@
   <link rel="stylesheet" href="../_static/css/overrides.css" type="text/css" />
   <link rel="index" title="Index" href="../genindex.html" />
   <link rel="search" title="Search" href="../search.html" />
-  <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../index.html" />
+  <link rel="top" title="Apache Mynewt 1.4.0 documentation" href="../index.html" />
   <link rel="next" title="Project Blinky" href="blinky/blinky.html" />
   <link rel="prev" title="Concepts" href="../concepts.html" /> 
 
@@ -401,7 +401,7 @@ <h2><a class="toc-backref" href="#id3">Tutorial categories</a><a class="headerli
   <script type="text/javascript">
     var DOCUMENTATION_OPTIONS = {
       URL_ROOT: '../',
-      VERSION: '1.3.0',
+      VERSION: '1.4.0',
       COLLAPSE_INDEX: false,
       FILE_SUFFIX: '.html',
       HAS_SOURCE: true,


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services