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/04/24 22:36:59 UTC

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

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

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/develop/_sources/network/ble/ble_setup/ble_addr.rst.txt b/develop/_sources/network/ble/ble_setup/ble_addr.rst.txt
index a8531b377..71c6d43e7 100644
--- a/develop/_sources/network/ble/ble_setup/ble_addr.rst.txt
+++ b/develop/_sources/network/ble/ble_setup/ble_addr.rst.txt
@@ -1,4 +1,4 @@
-Configure device ddress
+Configure device address
 ------------------------
 
 A BLE device needs an address to do just about anything. For information
diff --git a/develop/_sources/network/ble/btshell/btshell_GAP.rst.txt b/develop/_sources/network/ble/btshell/btshell_GAP.rst.txt
index 774ea60c6..ce6475554 100644
--- a/develop/_sources/network/ble/btshell/btshell_GAP.rst.txt
+++ b/develop/_sources/network/ble/btshell/btshell_GAP.rst.txt
@@ -56,7 +56,7 @@ Configuration
 +---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
 | **set-priv-mode**   |                 |                            | Set privacy mode for device                                                                             |
 +---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
-|                     | addr            | XX:XX:XX:XX:XX:XX          | Remove device address                                                                                   |
+|                     | addr            | XX:XX:XX:XX:XX:XX          | Remote device address                                                                                   |
 +---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
 |                     | addr\_type      | ``public``                 | Remote device public address type                                                                       |
 +---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
@@ -66,7 +66,7 @@ Configuration
 +---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
 | **white-list**      |                 |                            | Add devices to white list (this command accepts multiple instances of addr and addr\_type parameters)   |
 +---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
-|                     | addr            | XX:XX:XX:XX:XX:XX          | Remove device address                                                                                   |
+|                     | addr            | XX:XX:XX:XX:XX:XX          | Remote device address                                                                                   |
 +---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
 |                     | addr\_type      | ``public``                 | Remote device public address type                                                                       |
 +---------------------+-----------------+----------------------------+---------------------------------------------------------------------------------------------------------+
@@ -151,7 +151,7 @@ Device discovery and connection
 +--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
 |                          |                                | random\_id                 | Remote device random address type (Identity)                                                               |
 +--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
-|                          | peer\_addr                     | XX:XX:XX:XX:XX:XX          | Remove device address                                                                                      |
+|                          | peer\_addr                     | XX:XX:XX:XX:XX:XX          | Remote device address                                                                                      |
 +--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
 |                          | own\_addr\_type                | ``public``                 | Use public address for scan requests                                                                       |
 +--------------------------+--------------------------------+----------------------------+------------------------------------------------------------------------------------------------------------+
@@ -363,7 +363,7 @@ Advertising with Extended Advertising enabled
 +------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
 |                              |                          | random\_id                 | Remote device random address type (Identity)                                        |
 +------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
-|                              | peer\_addr               | XX:XX:XX:XX:XX:XX          | Remove device address - if provided perform directed advertising                    |
+|                              | peer\_addr               | XX:XX:XX:XX:XX:XX          | Remote device address - if provided perform directed advertising                    |
 +------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
 |                              | own\_addr\_type          | ``public``                 | Use public address for scan requests                                                |
 +------------------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
@@ -504,7 +504,7 @@ Legacy Advertising with Extended Advertising disabled
 +--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
 |                    |                          | random\_id                 | Remote device random address type (Identity)                                        |
 +--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
-|                    | peer\_addr               | XX:XX:XX:XX:XX:XX          | Remove device address - if provided perform directed advertising                    |
+|                    | peer\_addr               | XX:XX:XX:XX:XX:XX          | Remote device address - if provided perform directed advertising                    |
 +--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
 |                    | own\_addr\_type          | ``public``                 | Use public address for scan requests                                                |
 +--------------------+--------------------------+----------------------------+-------------------------------------------------------------------------------------+
diff --git a/develop/_sources/os/core_os/porting/port_os.rst.txt b/develop/_sources/os/core_os/porting/port_os.rst.txt
index 406dd41fb..9bafcb8db 100644
--- a/develop/_sources/os/core_os/porting/port_os.rst.txt
+++ b/develop/_sources/os/core_os/porting/port_os.rst.txt
@@ -71,7 +71,7 @@ the UART to be mapped to several different pins. For these MCUs, the BSP
 must specify if and where the UART pins should appear to match the
 hardware layout of your system.
 
--  If your BSP is already supported my Mynewt, there is no additional
+-  If your BSP is already supported by Mynewt, there is no additional
    BSP work involved in porting to your platform. You need only to set
    the ``bsp`` attribute in your Mynewt target using the :doc:`newt command
    tool <../../../newt/index>`.
@@ -85,7 +85,7 @@ Some OS code depends on the MCU or SoC that the system contains. For
 example, the MCU may specify the potential memory map of the system -
 where code and data can reside.
 
--  If your MCU is already supported my Mynewt, there is no additional
+-  If your MCU is already supported by Mynewt, there is no additional
    MCU work involved in porting to your platform. You need only to set
    the ``arch`` attribute in your Mynewt target using the :doc:`newt command
    tool <../../../newt/index>`.
@@ -110,7 +110,7 @@ example, a given CPU core has a specific assembly language instruction
 set, and may require special cross compiler or compiler settings to use
 the appropriate instruction set.
 
--  If your CPU architecture is already supported my Mynewt, there is no
+-  If your CPU architecture is already supported by Mynewt, there is no
    CPU core work involved in porting to your platform. You need only to
    set the ``arch`` and ``compiler`` attributes in your Mynewt target
    using the :doc:`newt command tool <../../../newt/index>`.
diff --git a/develop/_sources/os/modules/config/config.rst.txt b/develop/_sources/os/modules/config/config.rst.txt
index 0fca99f81..0121d315e 100644
--- a/develop/_sources/os/modules/config/config.rst.txt
+++ b/develop/_sources/os/modules/config/config.rst.txt
@@ -96,20 +96,20 @@ storage (or dump to console).
     static int8 foo_val;
 
     struct conf_handler my_conf = {
-	.ch_name = "foo",
-	.ch_set = foo_conf_set,
-	.ch_export = foo_conf_export
+        .ch_name = "foo",
+        .ch_set = foo_conf_set,
+        .ch_export = foo_conf_export
     }
 
     static int
     foo_conf_set(int argc, char **argv, char *val)
     {
-         if (argc == 1) {
-	      if (!strcmp(argv[0], "bar")) {
-	             return CONF_VALUE_SET(val, CONF_INT8, foo_val);
-	      }
-	 }
-	 return OS_ENOENT;
+        if (argc == 1) {
+            if (!strcmp(argv[0], "bar")) {
+                return CONF_VALUE_SET(val, CONF_INT8, foo_val);
+            }
+        }
+        return OS_ENOENT;
     }
 
     static int
@@ -118,8 +118,8 @@ storage (or dump to console).
         char buf[4];
 
         conf_str_from_value(CONF_INT8, &foo_val, buf, sizeof(buf));
-	func("foo/bar", buf)
-	return 0;
+        func("foo/bar", buf)
+        return 0;
     }
 
 Example: Persist Runtime State
@@ -138,19 +138,19 @@ foo_val will continue counting up from where it was before restart.
     static int8 foo_val;
 
     struct conf_handler my_conf = {
-	.ch_name = "foo",
-	.ch_set = foo_conf_set
+        .ch_name = "foo",
+        .ch_set = foo_conf_set
     }
 
     static int
     foo_conf_set(int argc, char **argv, char *val)
     {
-         if (argc == 1) {
-	      if (!strcmp(argv[0], "bar")) {
-	             return CONF_VALUE_SET(val, CONF_INT8, foo_val);
-	      }
-	 }
-	 return OS_ENOENT;
+        if (argc == 1) {
+            if (!strcmp(argv[0], "bar")) {
+                return CONF_VALUE_SET(val, CONF_INT8, foo_val);
+            }
+        }
+        return OS_ENOENT;
     }
 
     static void
@@ -159,15 +159,16 @@ foo_val will continue counting up from where it was before restart.
         struct os_callout *c = (struct os_callout *)ev;
         char buf[4];
 
-	foo_val++;
+    	foo_val++;
         conf_str_from_value(CONF_INT8, &foo_val, buf, sizeof(buf));
-	conf_save_one("foo/bar", bar);
+        conf_save_one("foo/bar", bar);
 
-	callout_reset(c, OS_TICKS_PER_SEC * 120);
+        callout_reset(c, OS_TICKS_PER_SEC * 120);
     }
 
 API
-~~~
+----------
 
-.. doxygengroup:: sys_config
+.. doxygengroup:: SysConfig
     :content-only:
+    :members:
diff --git a/develop/_sources/os/modules/fs/fs/fsutil_write_file.rst.txt b/develop/_sources/os/modules/fs/fs/fsutil_write_file.rst.txt
index 500fe374b..79fb685e8 100644
--- a/develop/_sources/os/modules/fs/fs/fsutil_write_file.rst.txt
+++ b/develop/_sources/os/modules/fs/fs/fsutil_write_file.rst.txt
@@ -51,7 +51,7 @@ This example creates a 4-byte file.
 
         /* Create the parent directory. */
         rc = fs_mkdir("/cfg");
-        if (rc != 0 && rc != FS_EALREADY) {
+        if (rc != 0 && rc != FS_EEXIST) {
             return -1;
         }
 
diff --git a/develop/_sources/os/modules/logs/logs.rst.txt b/develop/_sources/os/modules/logs/logs.rst.txt
index 7d98e2fd8..fa993c135 100644
--- a/develop/_sources/os/modules/logs/logs.rst.txt
+++ b/develop/_sources/os/modules/logs/logs.rst.txt
@@ -4,7 +4,9 @@ Logging
 Mynewt log package supports logging of information within a Mynewt
 application. It allows packages to define their own log streams with
 separate names. It also allows an application to control the output
-destination of logs. ### Description
+destination of logs. 
+
+### Description
 
 In the Mynewt OS, the log package comes in two versions:
 
diff --git a/develop/_sources/os/modules/sysinitconfig/sysinitconfig.rst.txt b/develop/_sources/os/modules/sysinitconfig/sysinitconfig.rst.txt
index 9bb3cf5ea..f91f8f730 100644
--- a/develop/_sources/os/modules/sysinitconfig/sysinitconfig.rst.txt
+++ b/develop/_sources/os/modules/sysinitconfig/sysinitconfig.rst.txt
@@ -1,5 +1,5 @@
-System Configuration and Initialization
----------------------------------------
+Compile-Time Configuration and Initialization
+-----------------------------------------------
 
 .. toctree::
    :hidden:
diff --git a/develop/_sources/os/modules/system_modules.rst.txt b/develop/_sources/os/modules/system_modules.rst.txt
new file mode 100644
index 000000000..25f82c507
--- /dev/null
+++ b/develop/_sources/os/modules/system_modules.rst.txt
@@ -0,0 +1,12 @@
+System Modules
+=============
+
+.. toctree::
+   :hidden:
+
+   Config <config/config>
+
+This section covers the core system functionality of the Apache Mynewt 
+Operating System outside of the Kernel itself.  This includes how you 
+count statistics, log data and manage configuration of a device in the 
+Apache Mynewt platform.
diff --git a/develop/_sources/os/os_user_guide.rst.txt b/develop/_sources/os/os_user_guide.rst.txt
index 66e3c9066..85cdaba85 100644
--- a/develop/_sources/os/os_user_guide.rst.txt
+++ b/develop/_sources/os/os_user_guide.rst.txt
@@ -5,9 +5,10 @@ OS User Guide
    :hidden:
 
    Kernel <core_os/mynewt_os>
+   System <modules/system_modules>
    Hardware Abstraction <modules/hal/hal>
    Porting Guide <core_os/porting/port_os>
-   System Configuration <modules/sysinitconfig/sysinitconfig>
+   Compile-Time Configuration <modules/sysinitconfig/sysinitconfig>
    Console <modules/console/console>
 
 This guide provides comprehensive information about Mynewt OS, the
diff --git a/develop/genindex.html b/develop/genindex.html
index 63decee18..51c1384ef 100644
--- a/develop/genindex.html
+++ b/develop/genindex.html
@@ -267,6 +267,38 @@ <h2 id="_">_</h2>
 <h2 id="C">C</h2>
 <table style="width: 100%" class="indextable genindextable"><tr>
   <td style="width: 33%; vertical-align: top;"><ul>
+      <li><a href="os/modules/config/config.html#c.conf_bytes_from_str">conf_bytes_from_str (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_commit">conf_commit (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_get_value">conf_get_value (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#_CPPv312conf_handler">conf_handler (C++ class)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_init">conf_init (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_load">conf_load (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_register">conf_register (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_save">conf_save (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_save_one">conf_save_one (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_save_tree">conf_save_tree (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_set_value">conf_set_value (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_store_init">conf_store_init (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_str_from_bytes">conf_str_from_bytes (C function)</a>
+</li>
+  </ul></td>
+  <td style="width: 33%; vertical-align: top;"><ul>
+      <li><a href="os/modules/config/config.html#c.conf_str_from_value">conf_str_from_value (C function)</a>
+</li>
+      <li><a href="os/modules/config/config.html#c.conf_value_from_str">conf_value_from_str (C function)</a>
+</li>
       <li><a href="os/modules/console/console.html#c.console_blocking_mode">console_blocking_mode (C function)</a>
 </li>
       <li><a href="os/modules/console/console.html#c.console_echo">console_echo (C function)</a>
@@ -279,8 +311,6 @@ <h2 id="C">C</h2>
 </li>
       <li><a href="os/modules/console/console.html#c.console_non_blocking_mode">console_non_blocking_mode (C function)</a>
 </li>
-  </ul></td>
-  <td style="width: 33%; vertical-align: top;"><ul>
       <li><a href="os/modules/console/console.html#c.console_out">console_out (C function)</a>
 </li>
       <li><a href="os/modules/console/console.html#c.console_printf">console_printf (C function)</a>
@@ -498,6 +528,8 @@ <h2 id="O">O</h2>
       <li><a href="os/core_os/event_queue/event_queue.html#c.os_eventq_remove">os_eventq_remove (C function)</a>
 </li>
       <li><a href="os/core_os/event_queue/event_queue.html#c.os_eventq_run">os_eventq_run (C function)</a>
+</li>
+      <li><a href="os/core_os/time/os_time.html#c.os_get_uptime">os_get_uptime (C function)</a>
 </li>
       <li><a href="os/core_os/time/os_time.html#c.os_get_uptime_usec">os_get_uptime_usec (C function)</a>
 </li>
@@ -545,10 +577,10 @@ <h2 id="O">O</h2>
 </li>
       <li><a href="os/core_os/mbuf/mbuf.html#c.os_mbuf_prepend_pullup">os_mbuf_prepend_pullup (C function)</a>
 </li>
-  </ul></td>
-  <td style="width: 33%; vertical-align: top;"><ul>
       <li><a href="os/core_os/mbuf/mbuf.html#c.os_mbuf_pullup">os_mbuf_pullup (C function)</a>
 </li>
+  </ul></td>
+  <td style="width: 33%; vertical-align: top;"><ul>
       <li><a href="os/core_os/mbuf/mbuf.html#c.os_mbuf_trim_front">os_mbuf_trim_front (C function)</a>
 </li>
       <li><a href="os/core_os/memory_pool/memory_pool.html#_CPPv311os_memblock">os_memblock (C++ class)</a>
@@ -562,6 +594,8 @@ <h2 id="O">O</h2>
       <li><a href="os/core_os/memory_pool/memory_pool.html#c.os_memblock_put_from_cb">os_memblock_put_from_cb (C function)</a>
 </li>
       <li><a href="os/core_os/memory_pool/memory_pool.html#_CPPv310os_mempool">os_mempool (C++ class)</a>
+</li>
+      <li><a href="os/core_os/memory_pool/memory_pool.html#c.os_mempool_clear">os_mempool_clear (C function)</a>
 </li>
       <li><a href="os/core_os/memory_pool/memory_pool.html#c.os_mempool_ext_init">os_mempool_ext_init (C function)</a>
 </li>
@@ -650,6 +684,8 @@ <h2 id="O">O</h2>
       <li><a href="os/core_os/time/os_time.html#c.os_time_get">os_time_get (C function)</a>
 </li>
       <li><a href="os/core_os/time/os_time.html#c.os_time_ms_to_ticks">os_time_ms_to_ticks (C function)</a>
+</li>
+      <li><a href="os/core_os/time/os_time.html#c.os_time_ticks_to_ms">os_time_ticks_to_ms (C function)</a>
 </li>
       <li><a href="os/core_os/time/os_time.html#_CPPv310os_timeval">os_timeval (C++ class)</a>
 </li>
diff --git a/develop/network/ble/ble_setup/ble_addr.html b/develop/network/ble/ble_setup/ble_addr.html
index 2a125847f..e44db270b 100644
--- a/develop/network/ble/ble_setup/ble_addr.html
+++ b/develop/network/ble/ble_setup/ble_addr.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>Configure device ddress &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Configure device address &mdash; Apache Mynewt 1.3.0 documentation</title>
     
 
     
@@ -158,7 +158,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
     
       <a href="ble_setup_intro.html">NimBLE Setup</a> /
     
-    Configure device ddress
+    Configure device address
     
   <div class="sourcelink">
     <a href="https://github.com/apache/mynewt-core/edit/master/docs/network/ble/ble_setup/ble_addr.rst" class="icon icon-github"
@@ -228,7 +228,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../ble_sec.html">NimBLE Security</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="ble_setup_intro.html">NimBLE Setup</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="ble_lp_clock.html">Configure clock for controller</a></li>
-<li class="toctree-l3 current"><a class="current reference internal" href="#">Configure device ddress</a></li>
+<li class="toctree-l3 current"><a class="current reference internal" href="#">Configure device address</a></li>
 <li class="toctree-l3"><a class="reference internal" href="ble_sync_cb.html">Respond to <em>sync</em> and <em>reset</em> events</a></li>
 </ul>
 </li>
@@ -268,8 +268,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                   <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
                    <div itemprop="articleBody">
                     
-  <div class="section" id="configure-device-ddress">
-<h1>Configure device ddress<a class="headerlink" href="#configure-device-ddress" title="Permalink to this headline">¶</a></h1>
+  <div class="section" id="configure-device-address">
+<h1>Configure device address<a class="headerlink" href="#configure-device-address" title="Permalink to this headline">¶</a></h1>
 <p>A BLE device needs an address to do just about anything. For information
 on the various types of Bluetooth addresses, see the <cite>NimBLE Host
 Identity Reference :doc:`&lt;../../../network/ble/ble_hs/ble_hs_id/ble_hs_id&gt;</cite>.</p>
diff --git a/develop/network/ble/ble_setup/ble_lp_clock.html b/develop/network/ble/ble_setup/ble_lp_clock.html
index f2a303a54..5960fc3d1 100644
--- a/develop/network/ble/ble_setup/ble_lp_clock.html
+++ b/develop/network/ble/ble_setup/ble_lp_clock.html
@@ -42,7 +42,7 @@
           <link rel="search" title="Search" href="../../../search.html"/>
       <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
           <link rel="up" title="NimBLE Setup" href="ble_setup_intro.html"/>
-          <link rel="next" title="Configure device ddress" href="ble_addr.html"/>
+          <link rel="next" title="Configure device address" href="ble_addr.html"/>
           <link rel="prev" title="NimBLE Setup" href="ble_setup_intro.html"/> 
 
     
@@ -228,7 +228,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../ble_sec.html">NimBLE Security</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="ble_setup_intro.html">NimBLE Setup</a><ul class="current">
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Configure clock for controller</a></li>
-<li class="toctree-l3"><a class="reference internal" href="ble_addr.html">Configure device ddress</a></li>
+<li class="toctree-l3"><a class="reference internal" href="ble_addr.html">Configure device address</a></li>
 <li class="toctree-l3"><a class="reference internal" href="ble_sync_cb.html">Respond to <em>sync</em> and <em>reset</em> events</a></li>
 </ul>
 </li>
@@ -334,7 +334,7 @@ <h2>Crystal settle time configuration<a class="headerlink" href="#crystal-settle
                   
     <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
       
-        <a href="ble_addr.html" class="btn btn-neutral float-right" title="Configure device ddress" accesskey="n">Next: Configure device ddress <span class="fa fa-arrow-circle-right"></span></a>
+        <a href="ble_addr.html" class="btn btn-neutral float-right" title="Configure device address" accesskey="n">Next: Configure device address <span class="fa fa-arrow-circle-right"></span></a>
       
       
         <a href="ble_setup_intro.html" class="btn btn-neutral" title="NimBLE Setup" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: NimBLE Setup</a>
diff --git a/develop/network/ble/ble_setup/ble_setup_intro.html b/develop/network/ble/ble_setup/ble_setup_intro.html
index a0ed997a3..d41795bac 100644
--- a/develop/network/ble/ble_setup/ble_setup_intro.html
+++ b/develop/network/ble/ble_setup/ble_setup_intro.html
@@ -226,7 +226,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../ble_sec.html">NimBLE Security</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">NimBLE Setup</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="ble_lp_clock.html">Configure clock for controller</a></li>
-<li class="toctree-l3"><a class="reference internal" href="ble_addr.html">Configure device ddress</a></li>
+<li class="toctree-l3"><a class="reference internal" href="ble_addr.html">Configure device address</a></li>
 <li class="toctree-l3"><a class="reference internal" href="ble_sync_cb.html">Respond to <em>sync</em> and <em>reset</em> events</a></li>
 </ul>
 </li>
@@ -279,7 +279,7 @@ <h1>NimBLE Setup<a class="headerlink" href="#nimble-setup" title="Permalink to t
 <li class="toctree-l2"><a class="reference internal" href="ble_lp_clock.html#crystal-settle-time-configuration">Crystal settle time configuration</a></li>
 </ul>
 </li>
-<li class="toctree-l1"><a class="reference internal" href="ble_addr.html">Configure device ddress</a><ul>
+<li class="toctree-l1"><a class="reference internal" href="ble_addr.html">Configure device address</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="ble_addr.html#method-1-configure-nrf-hardware-with-a-public-address">Method 1: Configure nRF hardware with a public address</a></li>
 <li class="toctree-l2"><a class="reference internal" href="ble_addr.html#method-2-hardcode-a-public-address-in-the-mynewt-target">Method 2: Hardcode a public address in the Mynewt target</a></li>
 <li class="toctree-l2"><a class="reference internal" href="ble_addr.html#method-3-configure-a-random-address-at-runtime">Method 3: Configure a random address at runtime</a></li>
diff --git a/develop/network/ble/ble_setup/ble_sync_cb.html b/develop/network/ble/ble_setup/ble_sync_cb.html
index 3deb09b75..7551245fc 100644
--- a/develop/network/ble/ble_setup/ble_sync_cb.html
+++ b/develop/network/ble/ble_setup/ble_sync_cb.html
@@ -43,7 +43,7 @@
       <link rel="top" title="Apache Mynewt 1.3.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 ddress" href="ble_addr.html"/> 
+          <link rel="prev" title="Configure device address" href="ble_addr.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -228,7 +228,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../ble_sec.html">NimBLE Security</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="ble_setup_intro.html">NimBLE Setup</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="ble_lp_clock.html">Configure clock for controller</a></li>
-<li class="toctree-l3"><a class="reference internal" href="ble_addr.html">Configure device ddress</a></li>
+<li class="toctree-l3"><a class="reference internal" href="ble_addr.html">Configure device address</a></li>
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Respond to <em>sync</em> and <em>reset</em> events</a></li>
 </ul>
 </li>
@@ -350,7 +350,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
         <a href="../ble_hs/ble_hs.html" class="btn btn-neutral float-right" title="NimBLE Host" accesskey="n">Next: NimBLE Host <span class="fa fa-arrow-circle-right"></span></a>
       
       
-        <a href="ble_addr.html" class="btn btn-neutral" title="Configure device ddress" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Configure device ddress</a>
+        <a href="ble_addr.html" class="btn btn-neutral" title="Configure device address" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Configure device address</a>
       
     </div>
 
diff --git a/develop/network/ble/btshell/btshell_GAP.html b/develop/network/ble/btshell/btshell_GAP.html
index 3e3dc7de5..c58257fea 100644
--- a/develop/network/ble/btshell/btshell_GAP.html
+++ b/develop/network/ble/btshell/btshell_GAP.html
@@ -358,7 +358,7 @@ <h3>Configuration<a class="headerlink" href="#configuration" title="Permalink to
 <tr class="row-odd"><td>&#160;</td>
 <td>addr</td>
 <td>XX:XX:XX:XX:XX:XX</td>
-<td>Remove device address</td>
+<td>Remote device address</td>
 </tr>
 <tr class="row-even"><td>&#160;</td>
 <td>addr_type</td>
@@ -383,7 +383,7 @@ <h3>Configuration<a class="headerlink" href="#configuration" title="Permalink to
 <tr class="row-even"><td>&#160;</td>
 <td>addr</td>
 <td>XX:XX:XX:XX:XX:XX</td>
-<td>Remove device address</td>
+<td>Remote device address</td>
 </tr>
 <tr class="row-odd"><td>&#160;</td>
 <td>addr_type</td>
@@ -598,7 +598,7 @@ <h3>Device discovery and connection<a class="headerlink" href="#device-discovery
 <tr class="row-even"><td>&#160;</td>
 <td>peer_addr</td>
 <td>XX:XX:XX:XX:XX:XX</td>
-<td>Remove device address</td>
+<td>Remote device address</td>
 </tr>
 <tr class="row-odd"><td>&#160;</td>
 <td>own_addr_type</td>
@@ -1133,7 +1133,7 @@ <h3>Advertising with Extended Advertising enabled<a class="headerlink" href="#ad
 <tr class="row-even"><td>&#160;</td>
 <td>peer_addr</td>
 <td>XX:XX:XX:XX:XX:XX</td>
-<td>Remove device address - if provided perform directed advertising</td>
+<td>Remote device address - if provided perform directed advertising</td>
 </tr>
 <tr class="row-odd"><td>&#160;</td>
 <td>own_addr_type</td>
@@ -1488,7 +1488,7 @@ <h3>Legacy Advertising with Extended Advertising disabled<a class="headerlink" h
 <tr class="row-odd"><td>&#160;</td>
 <td>peer_addr</td>
 <td>XX:XX:XX:XX:XX:XX</td>
-<td>Remove device address - if provided perform directed advertising</td>
+<td>Remote device address - if provided perform directed advertising</td>
 </tr>
 <tr class="row-even"><td>&#160;</td>
 <td>own_addr_type</td>
diff --git a/develop/newt/newt_operation.html b/develop/newt/newt_operation.html
index 5d40ca4ac..ff8bd3d1c 100644
--- a/develop/newt/newt_operation.html
+++ b/develop/newt/newt_operation.html
@@ -364,7 +364,7 @@ <h3>“targets” Package Directory<a class="headerlink" href="#targets-package-
 You can use the <code class="docutils literal notranslate"><span class="pre">newt</span> <span class="pre">target</span> <span class="pre">config</span> <span class="pre">show</span></code> command to see the configuration settings and values for your target, and use
 the <code class="docutils literal notranslate"><span class="pre">newt</span> <span class="pre">target</span> <span class="pre">set</span></code> command to set the <code class="docutils literal notranslate"><span class="pre">syscfg</span></code> variable and override the configuration setting values.  You can
 also use an editor to create your target’s <code class="docutils literal notranslate"><span class="pre">syscfg.yml</span></code> file and add the setting values to the file.
-See <a class="reference internal" href="../os/modules/sysinitconfig/sysinitconfig.html"><span class="doc">System Configuration and Initialization</span></a> for more information on system configuration settings.</p>
+See <a class="reference internal" href="../os/modules/sysinitconfig/sysinitconfig.html"><span class="doc">Compile-Time Configuration and Initialization</span></a> for more information on system configuration settings.</p>
 </div>
 </div>
 <div class="section" id="resolving-dependencies">
@@ -444,7 +444,7 @@ <h2>Resolving dependencies<a class="headerlink" href="#resolving-dependencies" t
 <li>Reads and validates the configuration setting definitions and values from the package <code class="docutils literal notranslate"><span class="pre">syscfg.yml</span></code> files.
 It generates a <code class="docutils literal notranslate"><span class="pre">syscfg.h</span></code> header file that packages include in the source files in order to access the settings.
 It also generates a system initialization function to initialize the packages.
-See <a class="reference internal" href="../os/modules/sysinitconfig/sysinitconfig.html"><span class="doc">System Configuration and Initialization</span></a> for more information.</li>
+See <a class="reference internal" href="../os/modules/sysinitconfig/sysinitconfig.html"><span class="doc">Compile-Time Configuration and Initialization</span></a> for more information.</li>
 </ul>
 <p>In order to properly resolve all dependencies in the build system, newt recursively processes the package dependencies
 until there are no new dependencies.  And it builds a big list of all the packages that need to be build.</p>
diff --git a/develop/objects.inv b/develop/objects.inv
index 6826d9ccd..7b1050129 100644
Binary files a/develop/objects.inv and b/develop/objects.inv differ
diff --git a/develop/os/core_os/callout/callout.html b/develop/os/core_os/callout/callout.html
index bb7983213..654f2ad00 100644
--- a/develop/os/core_os/callout/callout.html
+++ b/develop/os/core_os/callout/callout.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/context_switch/context_switch.html b/develop/os/core_os/context_switch/context_switch.html
index 6cfa750db..8b0662792 100644
--- a/develop/os/core_os/context_switch/context_switch.html
+++ b/develop/os/core_os/context_switch/context_switch.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/cputime/os_cputime.html b/develop/os/core_os/cputime/os_cputime.html
index 36291cc2b..9b532c41d 100644
--- a/develop/os/core_os/cputime/os_cputime.html
+++ b/develop/os/core_os/cputime/os_cputime.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/event_queue/event_queue.html b/develop/os/core_os/event_queue/event_queue.html
index b643ead0f..71c39358b 100644
--- a/develop/os/core_os/event_queue/event_queue.html
+++ b/develop/os/core_os/event_queue/event_queue.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/heap/heap.html b/develop/os/core_os/heap/heap.html
index 255a71bb3..a57c955a4 100644
--- a/develop/os/core_os/heap/heap.html
+++ b/develop/os/core_os/heap/heap.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/mbuf/mbuf.html b/develop/os/core_os/mbuf/mbuf.html
index c40dd6003..355eab477 100644
--- a/develop/os/core_os/mbuf/mbuf.html
+++ b/develop/os/core_os/mbuf/mbuf.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/memory_pool/memory_pool.html b/develop/os/core_os/memory_pool/memory_pool.html
index 815f339a7..235ee8256 100644
--- a/develop/os/core_os/memory_pool/memory_pool.html
+++ b/develop/os/core_os/memory_pool/memory_pool.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
@@ -419,6 +420,22 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
 </p>
 </dd></dl>
 
+<dl class="function">
+<dt id="c.os_mempool_clear">
+<span class="target" id="group___o_s_mempool_1gabae129c70f5fcd1d00189ffd43a29cd3"></span>os_error_t <code class="descname">os_mempool_clear</code><span class="sig-paren">(</span>struct  os_mempool  *<em>&nbsp;mp</em><span class="sig-paren">)</span><a class="headerlink" href="#c.os_mempool_clear" title="Permalink to this definition">¶</a></dt>
+<dd><p>Clears a memory pool. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>os_error_t </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">mp</span></code>: The mempool to clear.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
 <dl class="function">
 <dt id="c.os_mempool_is_sane">
 <span class="target" id="group___o_s_mempool_1ga94f119d4163b6ad4b5c41f11c0628e5d"></span>bool <code class="descname">os_mempool_is_sane</code><span class="sig-paren">(</span>const struct  os_mempool  *<em>&nbsp;mp</em><span class="sig-paren">)</span><a class="headerlink" href="#c.os_mempool_is_sane" title="Permalink to this definition">¶</a></dt>
diff --git a/develop/os/core_os/mutex/mutex.html b/develop/os/core_os/mutex/mutex.html
index fc0c14370..de69de41f 100644
--- a/develop/os/core_os/mutex/mutex.html
+++ b/develop/os/core_os/mutex/mutex.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/mynewt_os.html b/develop/os/core_os/mynewt_os.html
index f4ee8689d..c7515e880 100644
--- a/develop/os/core_os/mynewt_os.html
+++ b/develop/os/core_os/mynewt_os.html
@@ -237,9 +237,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../modules/console/console.html">Console</a></li>
 </ul>
 </li>
@@ -339,7 +340,7 @@ <h2>Basic OS Application Creation<a class="headerlink" href="#basic-os-applicati
 <li>In your application <code class="docutils literal notranslate"><span class="pre">main()</span></code> function, call the <code class="docutils literal notranslate"><span class="pre">sysinit()</span></code>
 function to initialize the system and packages, perform application
 specific initialization, then wait and dispatch events from the OS
-default event queue in an infinite loop. (See <a class="reference internal" href="../modules/sysinitconfig/sysinitconfig.html"><span class="doc">System Configuration and Initialization</span></a>
+default event queue in an infinite loop. (See <a class="reference internal" href="../modules/sysinitconfig/sysinitconfig.html"><span class="doc">Compile-Time Configuration and Initialization</span></a>
 for more details.)</li>
 </ol>
 <p>Initializing application modules and tasks can get somewhat complicated
diff --git a/develop/os/core_os/porting/port_bsp.html b/develop/os/core_os/porting/port_bsp.html
index 9c5640bb8..62e7df0a9 100644
--- a/develop/os/core_os/porting/port_bsp.html
+++ b/develop/os/core_os/porting/port_bsp.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="port_os.html">Porting Guide</a><ul class="current">
 <li class="toctree-l3 current"><a class="current reference internal" href="#">BSP Porting</a></li>
@@ -232,7 +233,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="port_cpu.html">Porting Mynewt to a new CPU Architecture</a></li>
 </ul>
 </li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/porting/port_cpu.html b/develop/os/core_os/porting/port_cpu.html
index 4c5f7b5bf..c582ec219 100644
--- a/develop/os/core_os/porting/port_cpu.html
+++ b/develop/os/core_os/porting/port_cpu.html
@@ -42,7 +42,7 @@
           <link rel="search" title="Search" href="../../../search.html"/>
       <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
           <link rel="up" title="Porting Mynewt OS" href="port_os.html"/>
-          <link rel="next" title="System Configuration and Initialization" href="../../modules/sysinitconfig/sysinitconfig.html"/>
+          <link rel="next" title="Compile-Time Configuration and Initialization" href="../../modules/sysinitconfig/sysinitconfig.html"/>
           <link rel="prev" title="Porting Mynewt to a new MCU" href="port_mcu.html"/> 
 
     
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="port_os.html">Porting Guide</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="port_bsp.html">BSP Porting</a></li>
@@ -232,7 +233,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Porting Mynewt to a new CPU Architecture</a></li>
 </ul>
 </li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
@@ -325,7 +326,7 @@ <h2>Implement Architecture-specific OS code<a class="headerlink" href="#implemen
                   
     <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
       
-        <a href="../../modules/sysinitconfig/sysinitconfig.html" class="btn btn-neutral float-right" title="System Configuration and Initialization" accesskey="n">Next: System Configuration and Initialization <span class="fa fa-arrow-circle-right"></span></a>
+        <a href="../../modules/sysinitconfig/sysinitconfig.html" class="btn btn-neutral float-right" title="Compile-Time Configuration and Initialization" accesskey="n">Next: Compile-Time Configuration and Initialization <span class="fa fa-arrow-circle-right"></span></a>
       
       
         <a href="port_mcu.html" class="btn btn-neutral" title="Porting Mynewt to a new MCU" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Porting Mynewt to a new MCU</a>
diff --git a/develop/os/core_os/porting/port_mcu.html b/develop/os/core_os/porting/port_mcu.html
index 26091efc8..a6e9d6d7d 100644
--- a/develop/os/core_os/porting/port_mcu.html
+++ b/develop/os/core_os/porting/port_mcu.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="port_os.html">Porting Guide</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="port_bsp.html">BSP Porting</a></li>
@@ -232,7 +233,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="port_cpu.html">Porting Mynewt to a new CPU Architecture</a></li>
 </ul>
 </li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/porting/port_os.html b/develop/os/core_os/porting/port_os.html
index 8a8a27b87..07f29bdf4 100644
--- a/develop/os/core_os/porting/port_os.html
+++ b/develop/os/core_os/porting/port_os.html
@@ -223,6 +223,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Porting Guide</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="port_bsp.html">BSP Porting</a></li>
@@ -230,7 +231,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="port_cpu.html">Porting Mynewt to a new CPU Architecture</a></li>
 </ul>
 </li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
@@ -331,7 +332,7 @@ <h2><a class="toc-backref" href="#id2">Board Support Package (BSP) Dependency</a
 must specify if and where the UART pins should appear to match the
 hardware layout of your system.</p>
 <ul class="simple">
-<li>If your BSP is already supported my Mynewt, there is no additional
+<li>If your BSP is already supported by Mynewt, there is no additional
 BSP work involved in porting to your platform. You need only to set
 the <code class="docutils literal notranslate"><span class="pre">bsp</span></code> attribute in your Mynewt target using the <a class="reference internal" href="../../../newt/index.html"><span class="doc">newt command
 tool</span></a>.</li>
@@ -345,7 +346,7 @@ <h2><a class="toc-backref" href="#id3">MCU Dependency</a><a class="headerlink" h
 example, the MCU may specify the potential memory map of the system -
 where code and data can reside.</p>
 <ul class="simple">
-<li>If your MCU is already supported my Mynewt, there is no additional
+<li>If your MCU is already supported by Mynewt, there is no additional
 MCU work involved in porting to your platform. You need only to set
 the <code class="docutils literal notranslate"><span class="pre">arch</span></code> attribute in your Mynewt target using the <a class="reference internal" href="../../../newt/index.html"><span class="doc">newt command
 tool</span></a>.</li>
@@ -369,7 +370,7 @@ <h2><a class="toc-backref" href="#id5">CPU Core Dependency</a><a class="headerli
 set, and may require special cross compiler or compiler settings to use
 the appropriate instruction set.</p>
 <ul class="simple">
-<li>If your CPU architecture is already supported my Mynewt, there is no
+<li>If your CPU architecture is already supported by Mynewt, there is no
 CPU core work involved in porting to your platform. You need only to
 set the <code class="docutils literal notranslate"><span class="pre">arch</span></code> and <code class="docutils literal notranslate"><span class="pre">compiler</span></code> attributes in your Mynewt target
 using the <a class="reference internal" href="../../../newt/index.html"><span class="doc">newt command tool</span></a>.</li>
diff --git a/develop/os/core_os/sanity/sanity.html b/develop/os/core_os/sanity/sanity.html
index da8be4922..a3354a4de 100644
--- a/develop/os/core_os/sanity/sanity.html
+++ b/develop/os/core_os/sanity/sanity.html
@@ -42,7 +42,7 @@
           <link rel="search" title="Search" href="../../../search.html"/>
       <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
           <link rel="up" title="Apache Mynewt Operating System Kernel" href="../mynewt_os.html"/>
-          <link rel="next" title="Hardware Abstraction Layer" href="../../modules/hal/hal.html"/>
+          <link rel="next" title="System Modules" href="../../modules/system_modules.html"/>
           <link rel="prev" title="OS Time" href="../time/os_time.html"/> 
 
     
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
@@ -538,7 +539,7 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
                   
     <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
       
-        <a href="../../modules/hal/hal.html" class="btn btn-neutral float-right" title="Hardware Abstraction Layer" accesskey="n">Next: Hardware Abstraction Layer <span class="fa fa-arrow-circle-right"></span></a>
+        <a href="../../modules/system_modules.html" class="btn btn-neutral float-right" title="System Modules" accesskey="n">Next: System Modules <span class="fa fa-arrow-circle-right"></span></a>
       
       
         <a href="../time/os_time.html" class="btn btn-neutral" title="OS Time" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: OS Time</a>
diff --git a/develop/os/core_os/semaphore/semaphore.html b/develop/os/core_os/semaphore/semaphore.html
index 1dec1f0b1..b4b376a2c 100644
--- a/develop/os/core_os/semaphore/semaphore.html
+++ b/develop/os/core_os/semaphore/semaphore.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/task/task.html b/develop/os/core_os/task/task.html
index d2f2975ee..43753ee61 100644
--- a/develop/os/core_os/task/task.html
+++ b/develop/os/core_os/task/task.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/core_os/time/os_time.html b/develop/os/core_os/time/os_time.html
index ca6c5834c..6c4bb1e8c 100644
--- a/develop/os/core_os/time/os_time.html
+++ b/develop/os/core_os/time/os_time.html
@@ -239,9 +239,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l3"><a class="reference internal" href="../sanity/sanity.html">Sanity</a></li>
 </ul>
 </li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../modules/console/console.html">Console</a></li>
 </ul>
 </li>
@@ -508,6 +509,20 @@ <h2><a class="toc-backref" href="#id6">API</a><a class="headerlink" href="#api"
 </p>
 </dd></dl>
 
+<dl class="function">
+<dt id="c.os_get_uptime">
+<span class="target" id="group___o_s_time_1gacb19775faa258691ed6451aab8a546ec"></span>void <code class="descname">os_get_uptime</code><span class="sig-paren">(</span>struct  os_timeval  *<em>&nbsp;tvp</em><span class="sig-paren">)</span><a class="headerlink" href="#c.os_get_uptime" title="Permalink to this definition">¶</a></dt>
+<dd><p>Get time since boot as <a class="reference internal" href="#structos__timeval"><span class="std std-ref">os_timeval</span></a>. </p>
+<p><dl class="docutils">
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">tv</span></code>: Structure to put the time since boot. </li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
 <dl class="function">
 <dt id="c.os_time_ms_to_ticks">
 <span class="target" id="group___o_s_time_1gae5d9e53dfa7e8fd721766271ea003ac7"></span>int <code class="descname">os_time_ms_to_ticks</code><span class="sig-paren">(</span>uint32_t<em>&nbsp;ms</em>, uint32_t *<em>&nbsp;out_ticks</em><span class="sig-paren">)</span><a class="headerlink" href="#c.os_time_ms_to_ticks" title="Permalink to this definition">¶</a></dt>
@@ -525,6 +540,23 @@ <h2><a class="toc-backref" href="#id6">API</a><a class="headerlink" href="#api"
 </p>
 </dd></dl>
 
+<dl class="function">
+<dt id="c.os_time_ticks_to_ms">
+<span class="target" id="group___o_s_time_1gaa240a9884c7f644eb16ff2fddfdb8663"></span>int <code class="descname">os_time_ticks_to_ms</code><span class="sig-paren">(</span>uint32_t<em>&nbsp;ticks</em>, uint32_t *<em>&nbsp;out_ms</em><span class="sig-paren">)</span><a class="headerlink" href="#c.os_time_ticks_to_ms" title="Permalink to this definition">¶</a></dt>
+<dd><p>Converts OS ticks to milliseconds. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success; OS_EINVAL if the result is too large to fit in a uint32_t. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">ticks</span></code>: The OS ticks input. </li>
+<li><code class="docutils literal notranslate"><span class="pre">out_ms</span></code>: The milliseconds output.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
 <dl class="define">
 <dt id="c.OS_TIME_MAX">
 <span class="target" id="group___o_s_time_1ga7d9d6efeb91296092166d7f9e1b82cc3"></span><code class="descname">OS_TIME_MAX</code><a class="headerlink" href="#c.OS_TIME_MAX" title="Permalink to this definition">¶</a></dt>
diff --git a/develop/os/modules/config/config.html b/develop/os/modules/config/config.html
index 9fc09c16c..3eb2a3e74 100644
--- a/develop/os/modules/config/config.html
+++ b/develop/os/modules/config/config.html
@@ -40,7 +40,10 @@
           <link rel="index" title="Index"
                 href="../../../genindex.html"/>
           <link rel="search" 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.3.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="System Modules" href="../system_modules.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -151,6 +154,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
   <div class="container">
     <a href="/documentation/">Docs</a> /
     
+      <a href="../../os_user_guide.html">OS User Guide</a> /
+    
+      <a href="../system_modules.html">System Modules</a> /
+    
     Config
     
   <div class="sourcelink">
@@ -211,12 +218,23 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
       
         
         
-            <ul>
+            <ul class="current">
 <li class="toctree-l1"><a class="reference internal" href="../../../index.html">Introduction</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../../../get_started/index.html">Setup &amp; Get Started</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../../../concepts.html">Concepts</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2 current"><a class="reference internal" href="../system_modules.html">System</a><ul class="current">
+<li class="toctree-l3 current"><a class="current reference internal" href="#">Config</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../hal/hal.html">Hardware Abstraction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../core_os/porting/port_os.html">Porting Guide</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../console/console.html">Console</a></li>
+</ul>
+</li>
 <li class="toctree-l1"><a class="reference internal" href="../../../network/ble/ble_intro.html">BLE User Guide</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../../../newt/index.html">Newt Tool Guide</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../../../newtmgr/index.html">Newt Manager Guide</a></li>
@@ -362,12 +380,12 @@ <h2>Example: Device Configuration<a class="headerlink" href="#example-device-con
 static int
 foo_conf_set(int argc, char **argv, char *val)
 {
-     if (argc == 1) {
-          if (!strcmp(argv[0], &quot;bar&quot;)) {
-                 return CONF_VALUE_SET(val, CONF_INT8, foo_val);
-          }
-     }
-     return OS_ENOENT;
+    if (argc == 1) {
+        if (!strcmp(argv[0], &quot;bar&quot;)) {
+            return CONF_VALUE_SET(val, CONF_INT8, foo_val);
+        }
+    }
+    return OS_ENOENT;
 }
 
 static int
@@ -400,12 +418,12 @@ <h2>Example: Persist Runtime State<a class="headerlink" href="#example-persist-r
 static int
 foo_conf_set(int argc, char **argv, char *val)
 {
-     if (argc == 1) {
-          if (!strcmp(argv[0], &quot;bar&quot;)) {
-                 return CONF_VALUE_SET(val, CONF_INT8, foo_val);
-          }
-     }
-     return OS_ENOENT;
+    if (argc == 1) {
+        if (!strcmp(argv[0], &quot;bar&quot;)) {
+            return CONF_VALUE_SET(val, CONF_INT8, foo_val);
+        }
+    }
+    return OS_ENOENT;
 }
 
 static void
@@ -422,12 +440,398 @@ <h2>Example: Persist Runtime State<a class="headerlink" href="#example-persist-r
 }
 </pre></div>
 </div>
-</div>
 <div class="section" id="api">
-<h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</a></h2>
-<div class="admonition warning">
-<p class="first admonition-title">Warning</p>
-<p class="last">doxygengroup: Cannot find namespace “sys_config” in doxygen xml output for project “mynewt-core” from directory: mynewt-core-xml</p>
+<h3>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</a></h3>
+<dl class="enum">
+<dt id="c.SysConfig::conf_type">
+<span class="target" id="group___sys_config_1gadaa57f7be62fb82725711436838525fb"></span><em class="property">enum </em><code class="descclassname">SysConfig::</code><code class="descname">conf_type</code><a class="headerlink" href="#c.SysConfig::conf_type" title="Permalink to this definition">¶</a></dt>
+<dd><p>Type of configuration value. </p>
+<p><em>Values:</em></p>
+</dd></dl>
+
+<dl class="enum">
+<dt id="c.SysConfig::conf_export_tgt">
+<span class="target" id="group___sys_config_1ga15704e06649f43f84b77a132135b06b4"></span><em class="property">enum </em><code class="descclassname">SysConfig::</code><code class="descname">conf_export_tgt</code><a class="headerlink" href="#c.SysConfig::conf_export_tgt" title="Permalink to this definition">¶</a></dt>
+<dd><p>Parameter to commit handler describing where data is going to. </p>
+<p><em>Values:</em></p>
+<dl class="enumvalue">
+<dt id="c.SysConfig::CONF_EXPORT_PERSIST">
+<span class="target" id="group___sys_config_1gga15704e06649f43f84b77a132135b06b4a072d4d507c5eedded69e65fcb7e15e29"></span><code class="descname">CONF_EXPORT_PERSIST</code><a class="headerlink" href="#c.SysConfig::CONF_EXPORT_PERSIST" title="Permalink to this definition">¶</a></dt>
+<dd><p>Value is to be persisted. </p>
+</dd></dl>
+
+<dl class="enumvalue">
+<dt id="c.SysConfig::CONF_EXPORT_SHOW">
+<span class="target" id="group___sys_config_1gga15704e06649f43f84b77a132135b06b4a9de243286fbb6af8898b33c46f60aef3"></span><code class="descname">CONF_EXPORT_SHOW</code><a class="headerlink" href="#c.SysConfig::CONF_EXPORT_SHOW" title="Permalink to this definition">¶</a></dt>
+<dd><p>Value is to be display. </p>
+</dd></dl>
+
+</dd></dl>
+
+<dl class="typedef">
+<dt id="c.conf_export_tgt_t">
+<span class="target" id="group___sys_config_1ga3139953d688ce6e67e5bf294254a717e"></span><em class="property">typedef </em>enum conf_export_tgt <code class="descname">conf_export_tgt_t</code><a class="headerlink" href="#c.conf_export_tgt_t" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="typedef">
+<dt id="c.conf_get_handler_t">
+<span class="target" id="group___sys_config_1ga7972bd63f95c6bed4e8fea7bc491883d"></span><em class="property">typedef </em>char*<code class="descname">(* conf_get_handler_t)</code><span class="sig-paren">(</span>int<em>&nbsp;argc</em>, char<em>&nbsp;**argv</em>, char<em>&nbsp;*val</em>, int<em>&nbsp;val_len_max</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_get_handler_t" title="Permalink to this definition">¶</a></dt>
+<dd><p>Handler for getting configuration items, this handler is called per-configuration section. </p>
+<p>Configuration sections are delimited by ‘/’, for example:</p>
+<p><ul class="simple">
+<li>section/name/value</li>
+</ul>
+</p>
+<p>Would be passed as:</p>
+<p><ul class="simple">
+<li>argc = 3</li>
+<li>argv[0] = section</li>
+<li>argv[1] = name</li>
+<li>argv[2] = value</li>
+</ul>
+</p>
+<p>The handler returns the value into val, null terminated, up to val_len_max.</p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>A pointer to val or NULL if error. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">argc</span></code>: The number of sections in the configuration variable </li>
+<li><code class="docutils literal notranslate"><span class="pre">argv</span></code>: The array of configuration sections </li>
+<li><code class="docutils literal notranslate"><span class="pre">val</span></code>: A pointer to the buffer to return the configuration value into. </li>
+<li><code class="docutils literal notranslate"><span class="pre">val_len_max</span></code>: The maximum length of the val buffer to copy into.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="typedef">
+<dt id="c.conf_set_handler_t">
+<span class="target" id="group___sys_config_1ga17c92dca2b6152bc1fdb72352b6a39d6"></span><em class="property">typedef </em>int<code class="descname">(* conf_set_handler_t)</code><span class="sig-paren">(</span>int<em>&nbsp;argc</em>, char<em>&nbsp;**argv</em>, char<em>&nbsp;*val</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_set_handler_t" title="Permalink to this definition">¶</a></dt>
+<dd><p>Set the configuration variable pointed to by argc and argv. </p>
+<p>See description of ch_get_handler_t for format of these variables. This sets the configuration variable to the shadow value, but does not apply the configuration change. In order to apply the change, call the ch_commit() handler.</p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero error code on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">argc</span></code>: The number of sections in the configuration variable. </li>
+<li><code class="docutils literal notranslate"><span class="pre">argv</span></code>: The array of configuration sections </li>
+<li><code class="docutils literal notranslate"><span class="pre">val</span></code>: The value to configure that variable to</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="typedef">
+<dt id="c.conf_commit_handler_t">
+<span class="target" id="group___sys_config_1ga1f131dd7f98b14eca5645021c5495d1c"></span><em class="property">typedef </em>int<code class="descname">(* conf_commit_handler_t)</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.conf_commit_handler_t" title="Permalink to this definition">¶</a></dt>
+<dd><p>Commit shadow configuration state to the active configuration. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero error code on failure. </dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="typedef">
+<dt id="c.conf_export_func_t">
+<span class="target" id="group___sys_config_1ga865b6196a4967a677093acab1c30cd9c"></span><em class="property">typedef </em>void<code class="descname">(* conf_export_func_t)</code><span class="sig-paren">(</span>char<em>&nbsp;*name</em>, char<em>&nbsp;*val</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_export_func_t" title="Permalink to this definition">¶</a></dt>
+<dd><p>Called per-configuration variable being exported. </p>
+<p><dl class="docutils">
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">name</span></code>: The name of the variable to export </li>
+<li><code class="docutils literal notranslate"><span class="pre">val</span></code>: The value of the variable to export </li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="typedef">
+<dt id="c.conf_export_handler_t">
+<span class="target" id="group___sys_config_1ga1f4844e6263870c3ba17fc505928907a"></span><em class="property">typedef </em>int<code class="descname">(* conf_export_handler_t)</code><span class="sig-paren">(</span><a class="reference internal" href="#c.conf_export_func_t" title="conf_export_func_t">conf_export_func_t</a><em>&nbsp;export_func</em>, <a class="reference internal" href="#c.conf_export_tgt_t" title="conf_export_tgt_t">conf_export_tgt_t</a><em>&nbsp;tgt</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_export_handler_t" title="Permalink to this definition">¶</a></dt>
+<dd><p>Export all of the configuration variables, calling the export_func per variable being exported. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero error code on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">export_func</span></code>: The export function to call. </li>
+<li><code class="docutils literal notranslate"><span class="pre">tgt</span></code>: The target of the export, either for persistence or display.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_init">
+<span class="target" id="group___sys_config_1ga52d24de486941818e4a754fcdf0caf89"></span>void <code class="descname">conf_init</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.conf_init" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="function">
+<dt id="c.conf_store_init">
+<span class="target" id="group___sys_config_1gaf1daa987dacc4151f4e23ed0a026a840"></span>void <code class="descname">conf_store_init</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.conf_store_init" title="Permalink to this definition">¶</a></dt>
+<dd></dd></dl>
+
+<dl class="function">
+<dt id="c.conf_register">
+<span class="target" id="group___sys_config_1ga466993e72af044cf7bc40385c89e871b"></span>int <code class="descname">conf_register</code><span class="sig-paren">(</span>struct  conf_handler  *<em>&nbsp;cf</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_register" title="Permalink to this definition">¶</a></dt>
+<dd><p>Register a handler for configurations items. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">cf</span></code>: Structure containing registration info.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_load">
+<span class="target" id="group___sys_config_1gacf73e033ff513cc8097d4cb43612997f"></span>int <code class="descname">conf_load</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.conf_load" title="Permalink to this definition">¶</a></dt>
+<dd><p>Load configuration from registered persistence sources. </p>
+<p>Handlers for configuration subtrees registered earlier will be called for encountered values.</p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_save">
+<span class="target" id="group___sys_config_1gaea200fb1a87284e617f19dd07693fc02"></span>int <code class="descname">conf_save</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.conf_save" title="Permalink to this definition">¶</a></dt>
+<dd><p>Save currently running configuration. </p>
+<p>All configuration which is different from currently persisted values will be saved.</p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_save_tree">
+<span class="target" id="group___sys_config_1gaca7e9b95fc76cd55f9ed725de2bd6b32"></span>int <code class="descname">conf_save_tree</code><span class="sig-paren">(</span>char *<em>&nbsp;name</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_save_tree" title="Permalink to this definition">¶</a></dt>
+<dd><p>Save currently running configuration for configuration subtree. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">name</span></code>: Name of the configuration subtree.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_save_one">
+<span class="target" id="group___sys_config_1ga83e07b7401ab7d18bb53f5c949e54520"></span>int <code class="descname">conf_save_one</code><span class="sig-paren">(</span>const char *<em>&nbsp;name</em>, char *<em>&nbsp;var</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_save_one" title="Permalink to this definition">¶</a></dt>
+<dd><p>Write a single configuration value to persisted storage (if it has changed value). </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">name</span></code>: Name/key of the configuration item. </li>
+<li><code class="docutils literal notranslate"><span class="pre">var</span></code>: Value of the configuration item.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_set_value">
+<span class="target" id="group___sys_config_1ga19bea2a80aae229bdcf329d06220546d"></span>int <code class="descname">conf_set_value</code><span class="sig-paren">(</span>char *<em>&nbsp;name</em>, char *<em>&nbsp;val_str</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_set_value" title="Permalink to this definition">¶</a></dt>
+<dd><p>Set configuration item identified by <code class="docutils literal notranslate"><span class="pre">name</span></code> to be value <code class="docutils literal notranslate"><span class="pre">val_str</span></code>. </p>
+<p>This finds the configuration handler for this subtree and calls it’s set handler.</p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">name</span></code>: Name/key of the configuration item. </li>
+<li><code class="docutils literal notranslate"><span class="pre">val_str</span></code>: Value of the configuration item.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_get_value">
+<span class="target" id="group___sys_config_1ga328b57ed20a40480601aae1133118825"></span>char* <code class="descname">conf_get_value</code><span class="sig-paren">(</span>char *<em>&nbsp;name</em>, char *<em>&nbsp;buf</em>, int<em>&nbsp;buf_len</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_get_value" title="Permalink to this definition">¶</a></dt>
+<dd><p>Get value of configuration item identified by <code class="docutils literal notranslate"><span class="pre">name</span></code>. </p>
+<p>This calls the configuration handler ch_get for the subtree.</p>
+<p>Configuration handler can copy the string to <code class="docutils literal notranslate"><span class="pre">buf</span></code>, the maximum number of bytes it will copy is limited by <code class="docutils literal notranslate"><span class="pre">buf_len</span></code>.</p>
+<p>Return value will be pointer to beginning of the value. Note that this might, or might not be the same as buf.</p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">name</span></code>: Name/key of the configuration item. </li>
+<li><code class="docutils literal notranslate"><span class="pre">val_str</span></code>: Value of the configuration item.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_commit">
+<span class="target" id="group___sys_config_1ga18261aaac34e82bed8abab36720c5106"></span>int <code class="descname">conf_commit</code><span class="sig-paren">(</span>char *<em>&nbsp;name</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_commit" title="Permalink to this definition">¶</a></dt>
+<dd><p>Call commit for all configuration handler. </p>
+<p>This should apply all configuration which has been set, but not applied yet.</p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">name</span></code>: Name of the configuration subtree, or NULL to commit everything.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_value_from_str">
+<span class="target" id="group___sys_config_1ga44b534581b99102aa3c71ec0c074be74"></span>int <code class="descname">conf_value_from_str</code><span class="sig-paren">(</span>char *<em>&nbsp;val_str</em>, enum  conf_type<em>&nbsp;type</em>, void *<em>&nbsp;vp</em>, int<em>&nbsp;maxlen</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_value_from_str" title="Permalink to this definition">¶</a></dt>
+<dd><p>Convenience routine for converting value passed as a string to native data type. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">val_str</span></code>: Value of the configuration item as string. </li>
+<li><code class="docutils literal notranslate"><span class="pre">type</span></code>: Type of the value to convert to. </li>
+<li><code class="docutils literal notranslate"><span class="pre">vp</span></code>: Pointer to variable to fill with the decoded value. </li>
+<li><code class="docutils literal notranslate"><span class="pre">vp</span></code>: Size of that variable.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_bytes_from_str">
+<span class="target" id="group___sys_config_1ga59c8f9f2729a65ec60dbeabc82cc1d83"></span>int <code class="descname">conf_bytes_from_str</code><span class="sig-paren">(</span>char *<em>&nbsp;val_str</em>, void *<em>&nbsp;vp</em>, int *<em>&nbsp;len</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_bytes_from_str" title="Permalink to this definition">¶</a></dt>
+<dd><p>Convenience routine for converting byte array passed as a base64 encoded string. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">val_str</span></code>: Value of the configuration item as string. </li>
+<li><code class="docutils literal notranslate"><span class="pre">vp</span></code>: Pointer to variable to fill with the decoded value. </li>
+<li><code class="docutils literal notranslate"><span class="pre">len</span></code>: Size of that variable. On return the number of bytes in the array.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_str_from_value">
+<span class="target" id="group___sys_config_1gaae067816c43888ce983d56c06857288c"></span>char* <code class="descname">conf_str_from_value</code><span class="sig-paren">(</span>enum  conf_type<em>&nbsp;type</em>, void *<em>&nbsp;vp</em>, char *<em>&nbsp;buf</em>, int<em>&nbsp;buf_len</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_str_from_value" title="Permalink to this definition">¶</a></dt>
+<dd><p>Convenience routine for converting native data type to a string. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">type</span></code>: Type of the value to convert from. </li>
+<li><code class="docutils literal notranslate"><span class="pre">vp</span></code>: Pointer to variable to convert. </li>
+<li><code class="docutils literal notranslate"><span class="pre">buf</span></code>: Buffer where string value will be stored. </li>
+<li><code class="docutils literal notranslate"><span class="pre">buf_len</span></code>: Size of the buffer.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="function">
+<dt id="c.conf_str_from_bytes">
+<span class="target" id="group___sys_config_1gac587d4020d3441d91acd0319bc3cc7df"></span>char* <code class="descname">conf_str_from_bytes</code><span class="sig-paren">(</span>void *<em>&nbsp;vp</em>, int<em>&nbsp;vp_len</em>, char *<em>&nbsp;buf</em>, int<em>&nbsp;buf_len</em><span class="sig-paren">)</span><a class="headerlink" href="#c.conf_str_from_bytes" title="Permalink to this definition">¶</a></dt>
+<dd><p>Convenience routine for converting byte array into a base64 encoded string. </p>
+<p><dl class="docutils">
+<dt><strong>Return</strong></dt>
+<dd>0 on success, non-zero on failure. </dd>
+<dt><strong>Parameters</strong></dt>
+<dd><ul class="breatheparameterlist first last simple">
+<li><code class="docutils literal notranslate"><span class="pre">vp</span></code>: Pointer to variable to convert. </li>
+<li><code class="docutils literal notranslate"><span class="pre">vp_len</span></code>: Number of bytes to convert. </li>
+<li><code class="docutils literal notranslate"><span class="pre">buf</span></code>: Buffer where string value will be stored. </li>
+<li><code class="docutils literal notranslate"><span class="pre">buf_len</span></code>: Size of the buffer.</li>
+</ul>
+</dd>
+</dl>
+</p>
+</dd></dl>
+
+<dl class="define">
+<dt id="c.CONF_STR_FROM_BYTES_LEN">
+<span class="target" id="group___sys_config_1ga461179cab6050d584dbbcc17b750ce19"></span><code class="descname">CONF_STR_FROM_BYTES_LEN</code><span class="sig-paren">(</span>len<span class="sig-paren">)</span><a class="headerlink" href="#c.CONF_STR_FROM_BYTES_LEN" title="Permalink to this definition">¶</a></dt>
+<dd><p>Return the length of a configuration string from buffer length. </p>
+</dd></dl>
+
+<dl class="define">
+<dt id="c.CONF_VALUE_SET">
+<span class="target" id="group___sys_config_1gabb0645b39f5af9ded6e29d57419f8b81"></span><code class="descname">CONF_VALUE_SET</code><span class="sig-paren">(</span>str, type, val<span class="sig-paren">)</span><a class="headerlink" href="#c.CONF_VALUE_SET" title="Permalink to this definition">¶</a></dt>
+<dd><p>Convert a string into a value of type. </p>
+</dd></dl>
+
+<dl class="class">
+<dt id="_CPPv312conf_handler">
+<span id="_CPPv212conf_handler"></span><span id="conf_handler"></span><span class="target" id="structconf__handler"></span><em class="property">struct </em><code class="descname">conf_handler</code><a class="headerlink" href="#_CPPv312conf_handler" title="Permalink to this definition">¶</a><br /></dt>
+<dd><em>#include &lt;config.h&gt;</em><p>Configuration handler, used to register a config item/subtree. </p>
+<div class="breathe-sectiondef docutils container">
+<p class="breathe-sectiondef-title rubric">Public Members</p>
+<dl class="variable">
+<dt id="c.conf_handler::ch_name">
+<span class="target" id="structconf__handler_1a35034e3b248fd18443874d14628172c3"></span>char* <code class="descname">ch_name</code><a class="headerlink" href="#c.conf_handler::ch_name" title="Permalink to this definition">¶</a></dt>
+<dd><p>The name of the conifguration item/subtree. </p>
+</dd></dl>
+
+<dl class="variable">
+<dt id="c.conf_handler::ch_get">
+<span class="target" id="structconf__handler_1a477bcc5fd1bfaddfe6dc9d56a0ee335e"></span><a class="reference internal" href="#c.conf_get_handler_t" title="conf_get_handler_t">conf_get_handler_t</a> <code class="descname">ch_get</code><a class="headerlink" href="#c.conf_handler::ch_get" title="Permalink to this definition">¶</a></dt>
+<dd><p>Get configuration value. </p>
+</dd></dl>
+
+<dl class="variable">
+<dt id="c.conf_handler::ch_set">
+<span class="target" id="structconf__handler_1a8f71bae9be3ff976f1dbf7f9fe9c0c08"></span><a class="reference internal" href="#c.conf_set_handler_t" title="conf_set_handler_t">conf_set_handler_t</a> <code class="descname">ch_set</code><a class="headerlink" href="#c.conf_handler::ch_set" title="Permalink to this definition">¶</a></dt>
+<dd><p>Set configuration value. </p>
+</dd></dl>
+
+<dl class="variable">
+<dt id="c.conf_handler::ch_commit">
+<span class="target" id="structconf__handler_1a98ecedb5f842c0e4037b14b304a0ca44"></span><a class="reference internal" href="#c.conf_commit_handler_t" title="conf_commit_handler_t">conf_commit_handler_t</a> <code class="descname">ch_commit</code><a class="headerlink" href="#c.conf_handler::ch_commit" title="Permalink to this definition">¶</a></dt>
+<dd><p>Commit configuration value. </p>
+</dd></dl>
+
+<dl class="variable">
+<dt id="c.conf_handler::ch_export">
+<span class="target" id="structconf__handler_1a937df3d08c22321c37f2307e48c28102"></span><a class="reference internal" href="#c.conf_export_handler_t" title="conf_export_handler_t">conf_export_handler_t</a> <code class="descname">ch_export</code><a class="headerlink" href="#c.conf_handler::ch_export" title="Permalink to this definition">¶</a></dt>
+<dd><p>Export configuration value. </p>
+</dd></dl>
+
+</div>
+</dd></dl>
+
 </div>
 </div>
 </div>
@@ -436,6 +840,15 @@ <h2>API<a class="headerlink" href="#api" title="Permalink to this headline">¶</
                    </div>
                   </div>
                   
+    <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
+      
+        <a href="../hal/hal.html" class="btn btn-neutral float-right" title="Hardware Abstraction Layer" accesskey="n">Next: Hardware Abstraction Layer <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="../system_modules.html" class="btn btn-neutral" title="System Modules" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: System Modules</a>
+      
+    </div>
+
                 </div>
               </div>
             </div>
diff --git a/develop/os/modules/console/console.html b/develop/os/modules/console/console.html
index 01af2aacd..86b22f29c 100644
--- a/develop/os/modules/console/console.html
+++ b/develop/os/modules/console/console.html
@@ -223,9 +223,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Console</a></li>
 </ul>
 </li>
@@ -556,17 +557,17 @@ <h2><a class="toc-backref" href="#id9">API</a><a class="headerlink" href="#api"
 <p class="breathe-sectiondef-title rubric">Typedefs</p>
 <dl class="typedef">
 <dt id="c.console_rx_cb">
-<span class="target" id="console_8h_1a28b09e6faebf3f226c9c73f296c772db"></span><em class="property">typedef </em>void<code class="descname">(* console_rx_cb)</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.console_rx_cb" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a28b09e6faebf3f226c9c73f296c772db"></span><em class="property">typedef </em>void<code class="descname">(* console_rx_cb)</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.console_rx_cb" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="typedef">
 <dt id="c.console_append_char_cb">
-<span class="target" id="console_8h_1aa1649e5c8303160003073fcdcc4d5a08"></span><em class="property">typedef </em>int<code class="descname">(* console_append_char_cb)</code><span class="sig-paren">(</span>char<em>&nbsp;*line</em>, uint8_t<em>&nbsp;byte</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_append_char_cb" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1aa1649e5c8303160003073fcdcc4d5a08"></span><em class="property">typedef </em>int<code class="descname">(* console_append_char_cb)</code><span class="sig-paren">(</span>char<em>&nbsp;*line</em>, uint8_t<em>&nbsp;byte</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_append_char_cb" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="typedef">
 <dt id="c.completion_cb">
-<span class="target" id="console_8h_1a5d88336d9aedf8a43587d7e6e7262cd3"></span><em class="property">typedef </em>void<code class="descname">(* completion_cb)</code><span class="sig-paren">(</span>char<em>&nbsp;*str</em>, <a class="reference internal" href="#c.console_append_char_cb" title="console_append_char_cb">console_append_char_cb</a><em>&nbsp;cb</em><span class="sig-paren">)</span><a class="headerlink" href="#c.completion_cb" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a5d88336d9aedf8a43587d7e6e7262cd3"></span><em class="property">typedef </em>void<code class="descname">(* completion_cb)</code><span class="sig-paren">(</span>char<em>&nbsp;*str</em>, <a class="reference internal" href="#c.console_append_char_cb" title="console_append_char_cb">console_append_char_cb</a><em>&nbsp;cb</em><span class="sig-paren">)</span><a class="headerlink" href="#c.completion_cb" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 </div>
@@ -574,62 +575,62 @@ <h2><a class="toc-backref" href="#id9">API</a><a class="headerlink" href="#api"
 <p class="breathe-sectiondef-title rubric">Functions</p>
 <dl class="function">
 <dt id="c.console_init">
-<span class="target" id="console_8h_1ae198feb5fa066fe9ed6c59bb87d767e9"></span>int <code class="descname">console_init</code><span class="sig-paren">(</span><a class="reference internal" href="#c.console_rx_cb" title="console_rx_cb">console_rx_cb</a><em>&nbsp;rx_cb</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_init" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1ae198feb5fa066fe9ed6c59bb87d767e9"></span>int <code class="descname">console_init</code><span class="sig-paren">(</span><a class="reference internal" href="#c.console_rx_cb" title="console_rx_cb">console_rx_cb</a><em>&nbsp;rx_cb</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_init" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_is_init">
-<span class="target" id="console_8h_1ad39b7dd9413c3738d95d1cc38c62dcb2"></span>int <code class="descname">console_is_init</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.console_is_init" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1ad39b7dd9413c3738d95d1cc38c62dcb2"></span>int <code class="descname">console_is_init</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.console_is_init" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_write">
-<span class="target" id="console_8h_1af133dc4b2490178e7e7893fc254a85e0"></span>void <code class="descname">console_write</code><span class="sig-paren">(</span>const char *<em>&nbsp;str</em>, int<em>&nbsp;cnt</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_write" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1af133dc4b2490178e7e7893fc254a85e0"></span>void <code class="descname">console_write</code><span class="sig-paren">(</span>const char *<em>&nbsp;str</em>, int<em>&nbsp;cnt</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_write" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_read">
-<span class="target" id="console_8h_1a000fad49278baaec3848aba3fa9556cb"></span>int <code class="descname">console_read</code><span class="sig-paren">(</span>char *<em>&nbsp;str</em>, int<em>&nbsp;cnt</em>, int *<em>&nbsp;newline</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_read" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a000fad49278baaec3848aba3fa9556cb"></span>int <code class="descname">console_read</code><span class="sig-paren">(</span>char *<em>&nbsp;str</em>, int<em>&nbsp;cnt</em>, int *<em>&nbsp;newline</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_read" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_blocking_mode">
-<span class="target" id="console_8h_1af036548e29267e7b8f4a61bcbda68a35"></span>void <code class="descname">console_blocking_mode</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.console_blocking_mode" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1af036548e29267e7b8f4a61bcbda68a35"></span>void <code class="descname">console_blocking_mode</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.console_blocking_mode" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_non_blocking_mode">
-<span class="target" id="console_8h_1a7bafaa5930d1f88684d4692fed11b157"></span>void <code class="descname">console_non_blocking_mode</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.console_non_blocking_mode" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a7bafaa5930d1f88684d4692fed11b157"></span>void <code class="descname">console_non_blocking_mode</code><span class="sig-paren">(</span>void<span class="sig-paren">)</span><a class="headerlink" href="#c.console_non_blocking_mode" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_echo">
-<span class="target" id="console_8h_1a79a26136ccbca1d0d9c8c1e06b837cee"></span>void <code class="descname">console_echo</code><span class="sig-paren">(</span>int<em>&nbsp;on</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_echo" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a79a26136ccbca1d0d9c8c1e06b837cee"></span>void <code class="descname">console_echo</code><span class="sig-paren">(</span>int<em>&nbsp;on</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_echo" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_printf">
-<span class="target" id="console_8h_1ac182c9c447f004bd05aaae9bf750b6ed"></span>int <code class="descname">console_printf</code><span class="sig-paren">(</span>const char *<em>&nbsp;fmt</em>, ...<span class="sig-paren">)</span><a class="headerlink" href="#c.console_printf" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a7af55dcf9e50644d903184215bd24b77"></span>static int static int <code class="descname">console_printf</code><span class="sig-paren">(</span>const char *<em>&nbsp;fmt</em>, ...<span class="sig-paren">)</span><a class="headerlink" href="#c.console_printf" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_set_queues">
-<span class="target" id="console_8h_1aee42b20be342979b4428e58c996599d0"></span>int void <code class="descname">console_set_queues</code><span class="sig-paren">(</span>struct  os_eventq  *<em>&nbsp;avail_queue</em>, struct  os_eventq  *<em>&nbsp;cmd_queue</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_set_queues" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1aee42b20be342979b4428e58c996599d0"></span>int void <code class="descname">console_set_queues</code><span class="sig-paren">(</span>struct  os_eventq  *<em>&nbsp;avail_queue</em>, struct  os_eventq  *<em>&nbsp;cmd_queue</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_set_queues" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_set_completion_cb">
-<span class="target" id="console_8h_1a27736a40a1ba4fcbf1850fe953028c53"></span>void <code class="descname">console_set_completion_cb</code><span class="sig-paren">(</span><a class="reference internal" href="#c.completion_cb" title="completion_cb">completion_cb</a><em>&nbsp;cb</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_set_completion_cb" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a27736a40a1ba4fcbf1850fe953028c53"></span>void <code class="descname">console_set_completion_cb</code><span class="sig-paren">(</span><a class="reference internal" href="#c.completion_cb" title="completion_cb">completion_cb</a><em>&nbsp;cb</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_set_completion_cb" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_handle_char">
-<span class="target" id="console_8h_1a3e46daa7c48f67a1ff0f221d49a597e0"></span>int <code class="descname">console_handle_char</code><span class="sig-paren">(</span>uint8_t<em>&nbsp;byte</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_handle_char" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a3e46daa7c48f67a1ff0f221d49a597e0"></span>int <code class="descname">console_handle_char</code><span class="sig-paren">(</span>uint8_t<em>&nbsp;byte</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_handle_char" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 <dl class="function">
 <dt id="c.console_out">
-<span class="target" id="console_8h_1a93d5392315f991a1ce513a51170443cc"></span>int <code class="descname">console_out</code><span class="sig-paren">(</span>int<em>&nbsp;character</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_out" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a93d5392315f991a1ce513a51170443cc"></span>int <code class="descname">console_out</code><span class="sig-paren">(</span>int<em>&nbsp;character</em><span class="sig-paren">)</span><a class="headerlink" href="#c.console_out" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 </div>
@@ -637,7 +638,7 @@ <h2><a class="toc-backref" href="#id9">API</a><a class="headerlink" href="#api"
 <p class="breathe-sectiondef-title rubric">Variables</p>
 <dl class="variable">
 <dt id="c.console_is_midline">
-<span class="target" id="console_8h_1a99c3dc883e5262377e8ab35af6a0b25c"></span>int <code class="descname">console_is_midline</code><a class="headerlink" href="#c.console_is_midline" title="Permalink to this definition">¶</a></dt>
+<span class="target" id="full_2include_2console_2console_8h_1a99c3dc883e5262377e8ab35af6a0b25c"></span>int <code class="descname">console_is_midline</code><a class="headerlink" href="#c.console_is_midline" title="Permalink to this definition">¶</a></dt>
 <dd></dd></dl>
 
 </div>
@@ -649,8 +650,8 @@ <h2><a class="toc-backref" href="#id9">API</a><a class="headerlink" href="#api"
 <div class="breathe-sectiondef docutils container">
 <p class="breathe-sectiondef-title rubric">Public Members</p>
 <dl class="variable">
-<dt>
-<span class="target" id="structconsole__input_1a547829e09b9b83e69a6c63e8ca649dee"></span><code class="descname">char console_input::line[MYNEWT_VAL(CONSOLE_MAX_INPUT_LEN)]</code></dt>
+<dt id="c.console_input::line">
+<span class="target" id="structconsole__input_1a430d31af9a9c1e3265cf1f1934fa2c5f"></span>char <code class="descname">line</code><a class="headerlink" href="#c.console_input::line" title="Permalink to this definition">¶</a></dt>
 <dd><p>Data buffer that the console uses to save received characters until a new line is received. </p>
 </dd></dl>
 
diff --git a/develop/os/modules/fs/fs/fsutil_write_file.html b/develop/os/modules/fs/fs/fsutil_write_file.html
index 3fb118d10..f299999e2 100644
--- a/develop/os/modules/fs/fs/fsutil_write_file.html
+++ b/develop/os/modules/fs/fs/fsutil_write_file.html
@@ -307,7 +307,7 @@ <h2>Example<a class="headerlink" href="#example" title="Permalink to this headli
 
     /* Create the parent directory. */
     rc = fs_mkdir(&quot;/cfg&quot;);
-    if (rc != 0 &amp;&amp; rc != FS_EALREADY) {
+    if (rc != 0 &amp;&amp; rc != FS_EEXIST) {
         return -1;
     }
 
diff --git a/develop/os/modules/hal/hal.html b/develop/os/modules/hal/hal.html
index 9d63614ff..735751a5e 100644
--- a/develop/os/modules/hal/hal.html
+++ b/develop/os/modules/hal/hal.html
@@ -43,7 +43,7 @@
       <link rel="top" title="Apache Mynewt 1.3.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="Sanity" href="../../core_os/sanity/sanity.html"/> 
+          <link rel="prev" title="Config" href="../config/config.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -223,6 +223,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Hardware Abstraction</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="hal_timer/hal_timer.html">Timer</a></li>
 <li class="toctree-l3"><a class="reference internal" href="hal_gpio/hal_gpio.html">GPIO</a></li>
@@ -235,7 +236,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../console/console.html">Console</a></li>
 </ul>
 </li>
@@ -369,7 +370,7 @@ <h2>Platform Support<a class="headerlink" href="#platform-support" title="Permal
         <a href="hal_timer/hal_timer.html" class="btn btn-neutral float-right" title="Timer" accesskey="n">Next: Timer <span class="fa fa-arrow-circle-right"></span></a>
       
       
-        <a href="../../core_os/sanity/sanity.html" class="btn btn-neutral" title="Sanity" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Sanity</a>
+        <a href="../config/config.html" class="btn btn-neutral" title="Config" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Config</a>
       
     </div>
 
diff --git a/develop/os/modules/hal/hal_bsp/hal_bsp.html b/develop/os/modules/hal/hal_bsp/hal_bsp.html
index 2e602101a..228b1866b 100644
--- a/develop/os/modules/hal/hal_bsp/hal_bsp.html
+++ b/develop/os/modules/hal/hal_bsp/hal_bsp.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="../hal.html">Hardware Abstraction</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="../hal_timer/hal_timer.html">Timer</a></li>
 <li class="toctree-l3"><a class="reference internal" href="../hal_gpio/hal_gpio.html">GPIO</a></li>
@@ -237,7 +238,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/modules/hal/hal_flash/hal_flash.html b/develop/os/modules/hal/hal_flash/hal_flash.html
index 552a90bb1..82cba871c 100644
--- a/develop/os/modules/hal/hal_flash/hal_flash.html
+++ b/develop/os/modules/hal/hal_flash/hal_flash.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="../hal.html">Hardware Abstraction</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="../hal_timer/hal_timer.html">Timer</a></li>
 <li class="toctree-l3"><a class="reference internal" href="../hal_gpio/hal_gpio.html">GPIO</a></li>
@@ -237,7 +238,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/modules/hal/hal_gpio/hal_gpio.html b/develop/os/modules/hal/hal_gpio/hal_gpio.html
index 35e9b851e..0ffa7b5e9 100644
--- a/develop/os/modules/hal/hal_gpio/hal_gpio.html
+++ b/develop/os/modules/hal/hal_gpio/hal_gpio.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="../hal.html">Hardware Abstraction</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="../hal_timer/hal_timer.html">Timer</a></li>
 <li class="toctree-l3 current"><a class="current reference internal" href="#">GPIO</a></li>
@@ -237,7 +238,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/modules/hal/hal_i2c/hal_i2c.html b/develop/os/modules/hal/hal_i2c/hal_i2c.html
index d1b75223b..91423dff0 100644
--- a/develop/os/modules/hal/hal_i2c/hal_i2c.html
+++ b/develop/os/modules/hal/hal_i2c/hal_i2c.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="../hal.html">Hardware Abstraction</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="../hal_timer/hal_timer.html">Timer</a></li>
 <li class="toctree-l3"><a class="reference internal" href="../hal_gpio/hal_gpio.html">GPIO</a></li>
@@ -237,7 +238,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/modules/hal/hal_spi/hal_spi.html b/develop/os/modules/hal/hal_spi/hal_spi.html
index e47754fab..b460cc42d 100644
--- a/develop/os/modules/hal/hal_spi/hal_spi.html
+++ b/develop/os/modules/hal/hal_spi/hal_spi.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="../hal.html">Hardware Abstraction</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="../hal_timer/hal_timer.html">Timer</a></li>
 <li class="toctree-l3"><a class="reference internal" href="../hal_gpio/hal_gpio.html">GPIO</a></li>
@@ -237,7 +238,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/modules/hal/hal_timer/hal_timer.html b/develop/os/modules/hal/hal_timer/hal_timer.html
index bb2fe21c3..1857cb0cc 100644
--- a/develop/os/modules/hal/hal_timer/hal_timer.html
+++ b/develop/os/modules/hal/hal_timer/hal_timer.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="../hal.html">Hardware Abstraction</a><ul class="current">
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Timer</a></li>
 <li class="toctree-l3"><a class="reference internal" href="../hal_gpio/hal_gpio.html">GPIO</a></li>
@@ -237,7 +238,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/modules/hal/hal_uart/hal_uart.html b/develop/os/modules/hal/hal_uart/hal_uart.html
index 3c167b84f..947d9607c 100644
--- a/develop/os/modules/hal/hal_uart/hal_uart.html
+++ b/develop/os/modules/hal/hal_uart/hal_uart.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="../hal.html">Hardware Abstraction</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="../hal_timer/hal_timer.html">Timer</a></li>
 <li class="toctree-l3"><a class="reference internal" href="../hal_gpio/hal_gpio.html">GPIO</a></li>
@@ -237,7 +238,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/modules/hal/hal_watchdog/hal_watchdog.html b/develop/os/modules/hal/hal_watchdog/hal_watchdog.html
index dfa0bb705..ad737d257 100644
--- a/develop/os/modules/hal/hal_watchdog/hal_watchdog.html
+++ b/develop/os/modules/hal/hal_watchdog/hal_watchdog.html
@@ -225,6 +225,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="../hal.html">Hardware Abstraction</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="../hal_timer/hal_timer.html">Timer</a></li>
 <li class="toctree-l3"><a class="reference internal" href="../hal_gpio/hal_gpio.html">GPIO</a></li>
@@ -237,7 +238,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/os/modules/logs/logs.html b/develop/os/modules/logs/logs.html
index 23088cfb7..52651a7cb 100644
--- a/develop/os/modules/logs/logs.html
+++ b/develop/os/modules/logs/logs.html
@@ -254,7 +254,8 @@ <h1>Logging<a class="headerlink" href="#logging" title="Permalink to this headli
 <p>Mynewt log package supports logging of information within a Mynewt
 application. It allows packages to define their own log streams with
 separate names. It also allows an application to control the output
-destination of logs. ### Description</p>
+destination of logs.</p>
+<p>### Description</p>
 <p>In the Mynewt OS, the log package comes in two versions:</p>
 <ul class="simple">
 <li>The <code class="docutils literal notranslate"><span class="pre">sys/log/full</span></code> package implements the complete log
diff --git a/develop/os/modules/sysinitconfig/sysconfig_error.html b/develop/os/modules/sysinitconfig/sysconfig_error.html
index 06d0c0569..a80ca48c8 100644
--- a/develop/os/modules/sysinitconfig/sysconfig_error.html
+++ b/develop/os/modules/sysinitconfig/sysconfig_error.html
@@ -41,9 +41,9 @@
                 href="../../../genindex.html"/>
           <link rel="search" title="Search" href="../../../search.html"/>
       <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../../index.html"/>
-          <link rel="up" title="System Configuration and Initialization" href="sysinitconfig.html"/>
+          <link rel="up" title="Compile-Time Configuration and Initialization" href="sysinitconfig.html"/>
           <link rel="next" title="Console" href="../console/console.html"/>
-          <link rel="prev" title="System Configuration and Initialization" href="sysinitconfig.html"/> 
+          <link rel="prev" title="Compile-Time Configuration and Initialization" href="sysinitconfig.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -156,7 +156,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
     
       <a href="../../os_user_guide.html">OS User Guide</a> /
     
-      <a href="sysinitconfig.html">System Configuration and Initialization</a> /
+      <a href="sysinitconfig.html">Compile-Time Configuration and Initialization</a> /
     
     Validation and Error Messages
     
@@ -225,9 +225,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2 current"><a class="reference internal" href="sysinitconfig.html">System Configuration</a><ul class="current">
+<li class="toctree-l2 current"><a class="reference internal" href="sysinitconfig.html">Compile-Time Configuration</a><ul class="current">
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Validation and Error Messages</a></li>
 </ul>
 </li>
@@ -720,7 +721,7 @@ <h3><a class="toc-backref" href="#id16">BSP Package Overrides Undefined Configur
         <a href="../console/console.html" class="btn btn-neutral float-right" title="Console" accesskey="n">Next: Console <span class="fa fa-arrow-circle-right"></span></a>
       
       
-        <a href="sysinitconfig.html" class="btn btn-neutral" title="System Configuration and Initialization" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: System Configuration and Initialization</a>
+        <a href="sysinitconfig.html" class="btn btn-neutral" title="Compile-Time Configuration and Initialization" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Compile-Time Configuration and Initialization</a>
       
     </div>
 
diff --git a/develop/os/modules/sysinitconfig/sysinitconfig.html b/develop/os/modules/sysinitconfig/sysinitconfig.html
index 7eb2d03d7..e4b33396f 100644
--- a/develop/os/modules/sysinitconfig/sysinitconfig.html
+++ b/develop/os/modules/sysinitconfig/sysinitconfig.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>System Configuration and Initialization &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>Compile-Time Configuration and Initialization &mdash; Apache Mynewt 1.3.0 documentation</title>
     
 
     
@@ -156,7 +156,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
     
       <a href="../../os_user_guide.html">OS User Guide</a> /
     
-    System Configuration and Initialization
+    Compile-Time Configuration and Initialization
     
   <div class="sourcelink">
     <a href="https://github.com/apache/mynewt-core/edit/master/docs/os/modules/sysinitconfig/sysinitconfig.rst" class="icon icon-github"
@@ -223,9 +223,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../../../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="reference internal" href="../../os_user_guide.html">OS User Guide</a><ul class="current">
 <li class="toctree-l2"><a class="reference internal" href="../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="#">System Configuration</a><ul>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Compile-Time Configuration</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="sysconfig_error.html">Validation and Error Messages</a></li>
 </ul>
 </li>
@@ -264,8 +265,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                   <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
                    <div itemprop="articleBody">
                     
-  <div class="section" id="system-configuration-and-initialization">
-<h1>System Configuration and Initialization<a class="headerlink" href="#system-configuration-and-initialization" title="Permalink to this headline">¶</a></h1>
+  <div class="section" id="compile-time-configuration-and-initialization">
+<h1>Compile-Time Configuration and Initialization<a class="headerlink" href="#compile-time-configuration-and-initialization" title="Permalink to this headline">¶</a></h1>
 <div class="toctree-wrapper compound">
 </div>
 <p>This guide describes how Mynewt manages system configuration and
diff --git a/develop/os/modules/system_modules.html b/develop/os/modules/system_modules.html
new file mode 100644
index 000000000..f41565ca6
--- /dev/null
+++ b/develop/os/modules/system_modules.html
@@ -0,0 +1,347 @@
+
+
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+    
+
+    
+    <title>System Modules &mdash; Apache Mynewt 1.3.0 documentation</title>
+    
+
+    
+    
+      <link rel="shortcut icon" href="../../_static/mynewt-logo-only-newt32x32.png"/>
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
+
+    
+      <link rel="stylesheet" href="../../_static/css/sphinx_theme.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/bootstrap-3.0.3.min.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/v2.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/custom.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/restructuredtext.css" type="text/css" />
+    
+
+    
+
+    <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="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"/> 
+
+    
+    <script src="../../_static/js/modernizr.min.js"></script>
+
+    
+    <script>
+    (function(i, s, o, g, r, a, m) {
+	i["GoogleAnalyticsObject"] = r;
+	(i[r] =
+		i[r] ||
+		function() {
+			(i[r].q = i[r].q || []).push(arguments);
+		}),
+		(i[r].l = 1 * new Date());
+	(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
+	a.async = 1;
+	a.src = g;
+	m.parentNode.insertBefore(a, m);
+})(window, document, "script", "//www.google-analytics.com/analytics.js", "ga");
+
+ga("create", "UA-72162311-1", "auto");
+ga("send", "pageview");
+</script>
+    
+
+  </head>
+
+  <body class="not-front page-documentation" role="document" >
+    <div id="wrapper">
+      <div class="container">
+    <div id="banner" class="row v2-main-banner">
+        <a class="logo-cell" href="/">
+            <img class="logo" src="../../_static/img/logo.png">
+        </a>
+        <div class="tagline-cell">
+            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
+        </div>
+        <div class="news-cell">
+            <div class="well">
+              <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (December 13, 2017)
+            </div>
+        </div>
+    </div>
+</div>
+      
+<header>
+    <nav id="navbar" class="navbar navbar-inverse" role="navigation">
+        <div class="container">
+            <!-- Collapsed navigation -->
+            <div class="navbar-header">
+                <!-- Expander button -->
+                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
+                    <span class="sr-only">Toggle navigation</span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                </button>
+
+            </div>
+
+            <!-- Expanded navigation -->
+            <div class="navbar-collapse collapse">
+                <!-- Main navigation -->
+                <ul class="nav navbar-nav navbar-right">
+                    <li>
+                        <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
+                    </li>
+                    <li class="important">
+                        <a href="/get_started/quick_start.html">Quick Start</a>
+                    </li>
+                    <li>
+                        <a href="/about/">About</a>
+                    </li>
+                    <li>
+                        <a href="/talks/">Talks</a>
+                    </li>
+                    <li class="active">
+                        <a href="/documentation/">Documentation</a>
+                    </li>
+                    <li>
+                        <a href="/download/">Download</a>
+                    </li>
+                    <li>
+                        <a href="/community/">Community</a>
+                    </li>
+                    <li>
+                        <a href="/events/">Events</a>
+                    </li>
+                </ul>
+
+                <!-- Search, Navigation and Repo links -->
+                <ul class="nav navbar-nav navbar-right">
+                    
+                </ul>
+            </div>
+        </div>
+    </nav>
+</header>
+      <!-- STARTS MAIN CONTENT -->
+      <div id="main-content">
+        
+
+
+
+
+
+<div id="breadcrumb">
+  <div class="container">
+    <a href="/documentation/">Docs</a> /
+    
+      <a href="../os_user_guide.html">OS User Guide</a> /
+    
+    System Modules
+    
+  <div class="sourcelink">
+    <a href="https://github.com/apache/mynewt-core/edit/master/docs/os/modules/system_modules.rst" class="icon icon-github"
+           rel="nofollow"> Edit on GitHub</a>
+</div>
+  </div>
+</div>
+        <!-- STARTS CONTAINER -->
+        <div class="container">
+          <!-- STARTS .content -->
+          <div id="content" class="row">
+            
+            <!-- STARTS .container-sidebar -->
+<div class="container-sidebar col-xs-12 col-sm-3">
+  <div id="docSidebar" class="sticky-container">
+    <div role="search" class="sphinx-search">
+  <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">
+    <input type="text" name="q" placeholder="Search documentation" class="search-documentation" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+    
+<!-- Note: only works when deployed -->
+<select class="form-control" onchange="if (this.value) window.location.href=this.value">
+    <option
+      value="/develop"
+      selected
+      >
+      Version: develop (latest - mynewt-documentation)
+    </option>
+    <option
+      value="/latest/os/introduction"
+      >
+      Version: master (latest - mynewt-site)
+    </option>
+    <option
+      value="/v1_2_0/os/introduction"
+      >
+      Version: 1.2.0
+    </option>
+    <option
+      value="/v1_1_0/os/introduction">
+      Version: 1.1.0
+    </option>
+    <option
+      value="/v1_0_0/os/introduction">
+      Version: 1.0.0
+    </option>
+    <option
+      value="/v0_9_0/os/introduction">
+      Version: 0_9_0
+    </option>
+</select>
+    <div class="region region-sidebar">
+      <div class="docs-menu">
+      
+        
+        
+            <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../../index.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../get_started/index.html">Setup &amp; Get Started</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../concepts.html">Concepts</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../tutorials/tutorials.html">Tutorials</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../os_user_guide.html">OS User Guide</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">System</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="config/config.html">Config</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="hal/hal.html">Hardware Abstraction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../core_os/porting/port_os.html">Porting Guide</a></li>
+<li class="toctree-l2"><a class="reference internal" href="sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="console/console.html">Console</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../../network/ble/ble_intro.html">BLE User Guide</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../newt/index.html">Newt Tool Guide</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../newtmgr/index.html">Newt Manager Guide</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../mynewt_faq.html">Mynewt OS related FAQ</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../misc/index.html">Appendix</a></li>
+</ul>
+
+        
+      
+      </div>
+    </div>
+  </div>
+  <!-- ENDS STICKY CONTAINER -->
+</div>
+<!-- ENDS .container-sidebar -->
+
+            <div class="col-xs-12 col-sm-9">
+              <div class="alert alert-info" role="alert">
+  <p>
+    This is the development version of Apache Mynewt documentation. As such it may not be as complete as the latest
+    stable version of the documentation found <a href="/latest/os/introduction/">here</a>.
+  </p>
+  <p>
+    To improve this documentation please visit <a href="https://github.com/apache/mynewt-documentation">https://github.com/apache/mynewt-documentation</a>.
+  </p>
+</div>
+              
+              <div class="">
+                <div class="rst-content">
+                  <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+                   <div itemprop="articleBody">
+                    
+  <div class="section" id="system-modules">
+<h1>System Modules<a class="headerlink" href="#system-modules" title="Permalink to this headline">¶</a></h1>
+<div class="toctree-wrapper compound">
+</div>
+<p>This section covers the core system functionality of the Apache Mynewt
+Operating System outside of the Kernel itself.  This includes how you
+count statistics, log data and manage configuration of a device in the
+Apache Mynewt platform.</p>
+</div>
+
+
+                   </div>
+                  </div>
+                  
+    <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
+      
+        <a href="config/config.html" class="btn btn-neutral float-right" title="Config" accesskey="n">Next: Config <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="../core_os/sanity/sanity.html" class="btn btn-neutral" title="Sanity" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Sanity</a>
+      
+    </div>
+
+                </div>
+              </div>
+            </div>
+            <!-- ENDS CONTENT SECTION -->
+          </div>
+          <!-- ENDS .content -->
+        </div>
+      </div>
+      <footer>
+  <div class="container">
+    <div class="row">
+      <div class="col-xs-12">
+          
+              <p class="copyright">Apache Mynewt is available under Apache License, version 2.0.</p>
+          
+      </div>
+      <div class="col-xs-12">
+          <div class="logos">
+              <img src="../../_static/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
+              <small class="footnote">
+                Apache Mynewt, Mynewt, Apache, the Apache feather logo, and the Apache Mynewt project logo are either
+                registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+              </small>
+              <a href="https://join.slack.com/mynewt/shared_invite/MTkwMTg1ODM1NTg5LTE0OTYxNzQ4NzQtZTU1YmNhYjhkMg">
+                <img src="../../_static/img/add_to_slack.png" alt="Slack Icon" title="Join our Slack Community" />
+              </a>
+          </div>
+      </div>
+    </div>
+  </div>
+</footer>
+    </div>
+    <!-- ENDS #wrapper -->
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'../../',
+            VERSION:'1.3.0',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true,
+            SOURCELINK_SUFFIX: '.txt'
+        };
+    </script>
+      <script type="text/javascript" src="../../_static/jquery.js"></script>
+      <script type="text/javascript" src="../../_static/underscore.js"></script>
+      <script type="text/javascript" src="../../_static/doctools.js"></script>
+      <script type="text/javascript" src="../../_static/js/bootstrap-3.0.3.min.js"></script>
+      <script type="text/javascript" src="../../_static/js/affix.js"></script>
+      <script type="text/javascript" src="../../_static/js/main.js"></script>
+
+   
+
+  </body>
+</html>
\ No newline at end of file
diff --git a/develop/os/os_user_guide.html b/develop/os/os_user_guide.html
index e35ca6485..d2b08ca1f 100644
--- a/develop/os/os_user_guide.html
+++ b/develop/os/os_user_guide.html
@@ -220,9 +220,10 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l1"><a class="reference internal" href="../tutorials/tutorials.html">Tutorials</a></li>
 <li class="toctree-l1 current"><a class="current reference internal" href="#">OS User Guide</a><ul>
 <li class="toctree-l2"><a class="reference internal" href="core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="modules/system_modules.html">System</a></li>
 <li class="toctree-l2"><a class="reference internal" href="modules/hal/hal.html">Hardware Abstraction</a></li>
 <li class="toctree-l2"><a class="reference internal" href="core_os/porting/port_os.html">Porting Guide</a></li>
-<li class="toctree-l2"><a class="reference internal" href="modules/sysinitconfig/sysinitconfig.html">System Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="modules/sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
 <li class="toctree-l2"><a class="reference internal" href="modules/console/console.html">Console</a></li>
 </ul>
 </li>
diff --git a/develop/searchindex.js b/develop/searchindex.js
index 99c3eeb1f..d2264fce5 100644
--- a/develop/searchindex.js
+++ b/develop/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/faq","misc/go_env","misc/ide","misc/index","mynewt_faq","network/ble/ble_hs/ble_att","network/ble/ble_hs/ble_gap","network/ble/ble_hs/ble_gattc","network/ble/ble_hs/ble_gatts","network/ble/ble_hs/ble_hs","network/ble/ble_hs/ble_hs_id","network/ble/ble_hs/ble_hs_return_codes","network/ble/ble_intro","network/ble/ble_sec","network/ble/ble_setup/ble_addr","network/ble/ble_setup/ble_lp_clock","network/ble/ble_setup/ble_setup_intro","network/ble/ble_setup/ble_sync_cb","network/ble/btshell/btshell_GAP","network/ble/btshell/btshell_GATT","network/ble/btshell/btshell_advdata","network/ble/btshell/btshell_api","network/ble/mesh/index","network/ble/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/boot_build_status","os/modules/bootloader/boot_build_status_one","os/modules/bootloader/boot_clear_status","os/modules/bootloader/boot_copy_area","os/modules/bootloader/boot_copy_image","os/modules/bootloader/boot_erase_area","os/modules/bootloader/boot_fill_slot","os/modules/bootloader/boot_find_image_area_idx","os/modules/bootloader/boot_find_image_part","os/modules/bootloader/boot_find_image_slot","os/modules/bootloader/boot_go","os/modules/bootloader/boot_init_flash","os/modules/bootloader/boot_move_area","os/modules/bootloader/boot_read_image_header","os/modules/bootloader/boot_read_image_headers","os/modules/bootloader/boot_read_status","os/modules/bootloader/boot_select_image_slot","os/modules/bootloader/boot_slot_addr","os/modules/bootloader/boot_slot_to_area_idx","os/modules/bootloader/boot_swap_areas","os/modules/bootloader/boot_vect_delete_main","os/modules/bootloader/boot_vect_delete_test","os/modules/bootloader/boot_vect_read_main","os/modules/bootloader/boot_vect_read_one","os/modules/bootloader/boot_vect_read_test","os/modules/bootloader/boot_write_status","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/fs","os/modules/fs/fs/fs_close","os/modules/fs/fs/fs_closedir","os/modules/fs/fs/fs_dirent_is_dir","os/modules/fs/fs/fs_dirent_name","os/modules/fs/fs/fs_filelen","os/modules/fs/fs/fs_getpos","os/modules/fs/fs/fs_mkdir","os/modules/fs/fs/fs_open","os/modules/fs/fs/fs_opendir","os/modules/fs/fs/fs_ops","os/modules/fs/fs/fs_read","os/modules/fs/fs/fs_readdir","os/modules/fs/fs/fs_register","os/modules/fs/fs/fs_rename","os/modules/fs/fs/fs_return_codes","os/modules/fs/fs/fs_seek","os/modules/fs/fs/fs_unlink","os/modules/fs/fs/fs_write","os/modules/fs/fs/fsutil_read_file","os/modules/fs/fs/fsutil_write_file","os/modules/fs/nffs/nffs","os/modules/fs/nffs/nffs_area_desc","os/modules/fs/nffs/nffs_config","os/modules/fs/nffs/nffs_detect","os/modules/fs/nffs/nffs_format","os/modules/fs/nffs/nffs_init","os/modules/fs/nffs/nffs_internals","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/json/json_encode_object_entry","os/modules/json/json_encode_object_finish","os/modules/json/json_encode_object_key","os/modules/json/json_encode_object_start","os/modules/json/json_read_object","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_overview","os/modules/sensor_framework/sensor_listener_api","os/modules/sensor_framework/sensor_mgr_api","os/modules/sensor_framework/sensor_oic","os/modules/sensor_framework/sensor_shell","os/modules/shell/shell","os/modules/shell/shell_cmd_register","os/modules/shell/shell_evq_set","os/modules/shell/shell_nlip_input_register","os/modules/shell/shell_nlip_output","os/modules/shell/shell_register","os/modules/shell/shell_register_app_cmd_handler","os/modules/shell/shell_register_default_module","os/modules/split/split","os/modules/stats/stats","os/modules/sysinitconfig/sysconfig_error","os/modules/sysinitconfig/sysinitconfig","os/modules/testutil/test_assert","os/modules/testutil/test_case","os/modules/testutil/test_decl","os/modules/testutil/test_pass","os/modules/testutil/test_suite","os/modules/testutil/testutil","os/modules/testutil/tu_init","os/modules/testutil/tu_restart","os/os_user_guide","os/tutorials/STM32F303","os/tutorials/add_newtmgr","os/tutorials/define_target","os/tutorials/event_queue","os/tutorials/ota_upgrade_nrf52","os/tutorials/pin-wheel-mods","os/tutorials/tasks_lesson","os/tutorials/try_markdown","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/lora/lorawanapp","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_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/faq.rst","misc/go_env.rst","misc/ide.rst","misc/index.rst","mynewt_faq.rst","network/ble/ble_hs/ble_att.rst","network/ble/ble_hs/ble_gap.rst","network/ble/ble_hs/ble_gattc.rst","network/ble/ble_hs/ble_gatts.rst","network/ble/ble_hs/ble_hs.rst","network/ble/ble_hs/ble_hs_id.rst","network/ble/ble_hs/ble_hs_return_codes.rst","network/ble/ble_intro.rst","network/ble/ble_sec.rst","network/ble/ble_setup/ble_addr.rst","network/ble/ble_setup/ble_lp_clock.rst","network/ble/ble_setup/ble_setup_intro.rst","network/ble/ble_setup/ble_sync_cb.rst","network/ble/btshell/btshell_GAP.rst","network/ble/btshell/btshell_GATT.rst","network/ble/btshell/btshell_advdata.rst","network/ble/btshell/btshell_api.rst","network/ble/mesh/index.rst","network/ble/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/boot_build_status.rst","os/modules/bootloader/boot_build_status_one.rst","os/modules/bootloader/boot_clear_status.rst","os/modules/bootloader/boot_copy_area.rst","os/modules/bootloader/boot_copy_image.rst","os/modules/bootloader/boot_erase_area.rst","os/modules/bootloader/boot_fill_slot.rst","os/modules/bootloader/boot_find_image_area_idx.rst","os/modules/bootloader/boot_find_image_part.rst","os/modules/bootloader/boot_find_image_slot.rst","os/modules/bootloader/boot_go.rst","os/modules/bootloader/boot_init_flash.rst","os/modules/bootloader/boot_move_area.rst","os/modules/bootloader/boot_read_image_header.rst","os/modules/bootloader/boot_read_image_headers.rst","os/modules/bootloader/boot_read_status.rst","os/modules/bootloader/boot_select_image_slot.rst","os/modules/bootloader/boot_slot_addr.rst","os/modules/bootloader/boot_slot_to_area_idx.rst","os/modules/bootloader/boot_swap_areas.rst","os/modules/bootloader/boot_vect_delete_main.rst","os/modules/bootloader/boot_vect_delete_test.rst","os/modules/bootloader/boot_vect_read_main.rst","os/modules/bootloader/boot_vect_read_one.rst","os/modules/bootloader/boot_vect_read_test.rst","os/modules/bootloader/boot_write_status.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/fs.rst","os/modules/fs/fs/fs_close.rst","os/modules/fs/fs/fs_closedir.rst","os/modules/fs/fs/fs_dirent_is_dir.rst","os/modules/fs/fs/fs_dirent_name.rst","os/modules/fs/fs/fs_filelen.rst","os/modules/fs/fs/fs_getpos.rst","os/modules/fs/fs/fs_mkdir.rst","os/modules/fs/fs/fs_open.rst","os/modules/fs/fs/fs_opendir.rst","os/modules/fs/fs/fs_ops.rst","os/modules/fs/fs/fs_read.rst","os/modules/fs/fs/fs_readdir.rst","os/modules/fs/fs/fs_register.rst","os/modules/fs/fs/fs_rename.rst","os/modules/fs/fs/fs_return_codes.rst","os/modules/fs/fs/fs_seek.rst","os/modules/fs/fs/fs_unlink.rst","os/modules/fs/fs/fs_write.rst","os/modules/fs/fs/fsutil_read_file.rst","os/modules/fs/fs/fsutil_write_file.rst","os/modules/fs/nffs/nffs.rst","os/modules/fs/nffs/nffs_area_desc.rst","os/modules/fs/nffs/nffs_config.rst","os/modules/fs/nffs/nffs_detect.rst","os/modules/fs/nffs/nffs_format.rst","os/modules/fs/nffs/nffs_init.rst","os/modules/fs/nffs/nffs_internals.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/json/json_encode_object_entry.rst","os/modules/json/json_encode_object_finish.rst","os/modules/json/json_encode_object_key.rst","os/modules/json/json_encode_object_start.rst","os/modules/json/json_read_object.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_overview.rst","os/modules/sensor_framework/sensor_listener_api.rst","os/modules/sensor_framework/sensor_mgr_api.rst","os/modules/sensor_framework/sensor_oic.rst","os/modules/sensor_framework/sensor_shell.rst","os/modules/shell/shell.rst","os/modules/shell/shell_cmd_register.rst","os/modules/shell/shell_evq_set.rst","os/modules/shell/shell_nlip_input_register.rst","os/modules/shell/shell_nlip_output.rst","os/modules/shell/shell_register.rst","os/modules/shell/shell_register_app_cmd_handler.rst","os/modules/shell/shell_register_default_module.rst","os/modules/split/split.rst","os/modules/stats/stats.rst","os/modules/sysinitconfig/sysconfig_error.rst","os/modules/sysinitconfig/sysinitconfig.rst","os/modules/testutil/test_assert.rst","os/modules/testutil/test_case.rst","os/modules/testutil/test_decl.rst","os/modules/testutil/test_pass.rst","os/modules/testutil/test_suite.rst","os/modules/testutil/testutil.rst","os/modules/testutil/tu_init.rst","os/modules/testutil/tu_restart.rst","os/os_user_guide.rst","os/tutorials/STM32F303.rst","os/tutorials/add_newtmgr.rst","os/tutorials/define_target.rst","os/tutorials/event_queue.rst","os/tutorials/ota_upgrade_nrf52.rst","os/tutorials/pin-wheel-mods.rst","os/tutorials/tasks_lesson.rst","os/tutorials/try_markdown.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/lora/lorawanapp.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_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:{"":{"HALGpio::HAL_GPIO_MODE_IN":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_IN"],"HALGpio::HAL_GPIO_MODE_NC":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_NC"],"HALGpio::HAL_GPIO_MODE_OUT":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_OUT"],"HALGpio::HAL_GPIO_PULL_DOWN":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_DOWN"],"HALGpio::HAL_GPIO_PULL_NONE":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_NONE"],"HALGpio::HAL_GPIO_PULL_UP":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_UP"],"HALGpio::HAL_GPIO_TRIG_BOTH":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_BOTH"],"HALGpio::HAL_GPIO_TRIG_FALLING":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_FALLING"],"HALGpio::HAL_GPIO_TRIG_HIGH":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_HIGH"],"HALGpio::HAL_GPIO_TRIG_LOW":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_LOW"],"HALGpio::HAL_GPIO_TRIG_NONE":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_NONE"],"HALGpio::HAL_GPIO_TRIG_RISING":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_RISING"],"HALGpio::hal_gpio_irq_trigger":[187,2,1,"c.HALGpio::hal_gpio_irq_trigger"],"HALGpio::hal_gpio_mode_e":[187,2,1,"c.HALGpio::hal_gpio_mode_e"],"HALGpio::hal_gpio_pull":[187,2,1,"c.HALGpio::hal_gpio_pull"],"HALSystem::HAL_RESET_BROWNOUT":[192,1,1,"c.HALSystem::HAL_RESET_BROWNOUT"],"HALSystem::HAL_RESET_PIN":[192,1,1,"c.HALSystem::HAL_RESET_PIN"],"HALSystem::HAL_RESET_POR":[192,1,1,"c.HALSystem::HAL_RESET_POR"],"HALSystem::HAL_RESET_REQUESTED":[192,1,1,"c.HALSystem::HAL_RESET_REQUESTED"],"HALSystem::HAL_RESET_SOFT":[192,1,1,"c.HALSystem::HAL_RESET_SOFT"],"HALSystem::HAL_RESET_WATCHDOG":[192,1,1,"c.HALSystem::HAL_RESET_WATCHDOG"],"HALSystem::hal_reset_reason":[192,2,1,"c.HALSystem::hal_reset_reason"],"HALUart::HAL_UART_FLOW_CTL_NONE":[194,1,1,"c.HALUart::HAL_UART_FLOW_CTL_NONE"],"HALUart::HAL_UART_FLOW_CTL_RTS_CTS":[194,1,1,"c.HALUart::HAL_UART_FLOW_CTL_RTS_CTS"],"HALUart::HAL_UART_PARITY_EVEN":[194,1,1,"c.HALUart::HAL_UART_PARITY_EVEN"],"HALUart::HAL_UART_PARITY_NONE":[194,1,1,"c.HALUart::HAL_UART_PARITY_NONE"],"HALUart::HAL_UART_PARITY_ODD":[194,1,1,"c.HALUart::HAL_UART_PARITY_ODD"],"HALUart::hal_uart_flow_ctl":[194,2,1,"c.HALUart::hal_uart_flow_ctl"],"HALUart::hal_uart_parity":[194,2,1,"c.HALUart::hal_uart_parity"],"OSTask::OS_TASK_READY":[100,1,1,"c.OSTask::OS_TASK_READY"],"OSTask::OS_TASK_SLEEP":[100,1,1,"c.OSTask::OS_TASK_SLEEP"],"OSTask::os_task_state":[100,2,1,"c.OSTask::os_task_state"],"hal_i2c_master_data::address":[188,6,1,"c.hal_i2c_master_data::address"],"hal_i2c_master_data::buffer":[188,6,1,"c.hal_i2c_master_data::buffer"],"hal_spi_settings::baudrate":[191,6,1,"c.hal_spi_settings::baudrate"],"hal_spi_settings::data_mode":[191,6,1,"c.hal_spi_settings::data_mode"],"hal_spi_settings::data_order":[191,6,1,"c.hal_spi_settings::data_order"],"hal_spi_settings::word_size":[191,6,1,"c.hal_spi_settings::word_size"],"hal_timer::bsp_timer":[193,6,1,"c.hal_timer::bsp_timer"],"hal_timer::cb_arg":[193,6,1,"c.hal_timer::cb_arg"],"hal_timer::cb_func":[193,6,1,"c.hal_timer::cb_func"],"hal_timer::expiry":[193,6,1,"c.hal_timer::expiry"],"os_callout::c_ev":[85,6,1,"c.os_callout::c_ev"],"os_callout::c_evq":[85,6,1,"c.os_callout::c_evq"],"os_callout::c_ticks":[85,6,1,"c.os_callout::c_ticks"],"os_event::ev_arg":[88,6,1,"c.os_event::ev_arg"],"os_event::ev_cb":[88,6,1,"c.os_event::ev_cb"],"os_event::ev_queued":[88,6,1,"c.os_event::ev_queued"],"os_eventq::evq_owner":[88,6,1,"c.os_eventq::evq_owner"],"os_eventq::evq_task":[88,6,1,"c.os_eventq::evq_task"],"os_mbuf::om_data":[90,6,1,"c.os_mbuf::om_data"],"os_mbuf::om_flags":[90,6,1,"c.os_mbuf::om_flags"],"os_mbuf::om_len":[90,6,1,"c.os_mbuf::om_len"],"os_mbuf::om_omp":[90,6,1,"c.os_mbuf::om_omp"],"os_mbuf::om_pkthdr_len":[90,6,1,"c.os_mbuf::om_pkthdr_len"],"os_mbuf_pkthdr::omp_flags":[90,6,1,"c.os_mbuf_pkthdr::omp_flags"],"os_mbuf_pkthdr::omp_len":[90,6,1,"c.os_mbuf_pkthdr::omp_len"],"os_mbuf_pool::omp_databuf_len":[90,6,1,"c.os_mbuf_pool::omp_databuf_len"],"os_mbuf_pool::omp_pool":[90,6,1,"c.os_mbuf_pool::omp_pool"],"os_mempool::mp_block_size":[91,6,1,"c.os_mempool::mp_block_size"],"os_mempool::mp_flags":[91,6,1,"c.os_mempool::mp_flags"],"os_mempool::mp_membuf_addr":[91,6,1,"c.os_mempool::mp_membuf_addr"],"os_mempool::mp_min_free":[91,6,1,"c.os_mempool::mp_min_free"],"os_mempool::mp_num_blocks":[91,6,1,"c.os_mempool::mp_num_blocks"],"os_mempool::mp_num_free":[91,6,1,"c.os_mempool::mp_num_free"],"os_mempool::name":[91,6,1,"c.os_mempool::name"],"os_mempool_info::omi_block_size":[91,6,1,"c.os_mempool_info::omi_block_size"],"os_mempool_info::omi_min_free":[91,6,1,"c.os_mempool_info::omi_min_free"],"os_mempool_info::omi_num_blocks":[91,6,1,"c.os_mempool_info::omi_num_blocks"],"os_mempool_info::omi_num_free":[91,6,1,"c.os_mempool_info::omi_num_free"],"os_mqueue::mq_ev":[90,6,1,"c.os_mqueue::mq_ev"],"os_mutex::SLIST_HEAD":[92,3,1,"c.os_mutex::SLIST_HEAD"],"os_mutex::_pad":[92,6,1,"c.os_mutex::_pad"],"os_mutex::mu_level":[92,6,1,"c.os_mutex::mu_level"],"os_mutex::mu_owner":[92,6,1,"c.os_mutex::mu_owner"],"os_mutex::mu_prio":[92,6,1,"c.os_mutex::mu_prio"],"os_sanity_check::sc_arg":[98,6,1,"c.os_sanity_check::sc_arg"],"os_sanity_check::sc_checkin_itvl":[98,6,1,"c.os_sanity_check::sc_checkin_itvl"],"os_sanity_check::sc_checkin_last":[98,6,1,"c.os_sanity_check::sc_checkin_last"],"os_sanity_check::sc_func":[98,6,1,"c.os_sanity_check::sc_func"],"os_sem::sem_tokens":[99,6,1,"c.os_sem::sem_tokens"],"os_task::t_arg":[100,6,1,"c.os_task::t_arg"],"os_task::t_ctx_sw_cnt":[100,6,1,"c.os_task::t_ctx_sw_cnt"],"os_task::t_flags":[100,6,1,"c.os_task::t_flags"],"os_task::t_func":[100,6,1,"c.os_task::t_func"],"os_task::t_name":[100,6,1,"c.os_task::t_name"],"os_task::t_next_wakeup":[100,6,1,"c.os_task::t_next_wakeup"],"os_task::t_obj":[100,6,1,"c.os_task::t_obj"],"os_task::t_prio":[100,6,1,"c.os_task::t_prio"],"os_task::t_run_time":[100,6,1,"c.os_task::t_run_time"],"os_task::t_sanity_check":[100,6,1,"c.os_task::t_sanity_check"],"os_task::t_stackptr":[100,6,1,"c.os_task::t_stackptr"],"os_task::t_stacksize":[100,6,1,"c.os_task::t_stacksize"],"os_task::t_stacktop":[100,6,1,"c.os_task::t_stacktop"],"os_task::t_taskid":[100,6,1,"c.os_task::t_taskid"],"os_task_info::oti_cswcnt":[100,6,1,"c.os_task_info::oti_cswcnt"],"os_task_info::oti_last_checkin":[100,6,1,"c.os_task_info::oti_last_checkin"],"os_task_info::oti_next_checkin":[100,6,1,"c.os_task_info::oti_next_checkin"],"os_task_info::oti_prio":[100,6,1,"c.os_task_info::oti_prio"],"os_task_info::oti_runtime":[100,6,1,"c.os_task_info::oti_runtime"],"os_task_info::oti_state":[100,6,1,"c.os_task_info::oti_state"],"os_task_info::oti_stksize":[100,6,1,"c.os_task_info::oti_stksize"],"os_task_info::oti_stkusage":[100,6,1,"c.os_task_info::oti_stkusage"],"os_task_info::oti_taskid":[100,6,1,"c.os_task_info::oti_taskid"],"os_timezone::tz_dsttime":[101,6,1,"c.os_timezone::tz_dsttime"],"os_timezone::tz_minuteswest":[101,6,1,"c.os_timezone::tz_minuteswest"],CPUTIME_GEQ:[87,0,1,"c.CPUTIME_GEQ"],CPUTIME_GT:[87,0,1,"c.CPUTIME_GT"],CPUTIME_LEQ:[87,0,1,"c.CPUTIME_LEQ"],CPUTIME_LT:[87,0,1,"c.CPUTIME_LT"],HAL_BSP_MAX_ID_LEN:[183,0,1,"c.HAL_BSP_MAX_ID_LEN"],HAL_BSP_POWER_DEEP_SLEEP:[183,0,1,"c.HAL_BSP_POWER_DEEP_SLEEP"],HAL_BSP_POWER_OFF:[183,0,1,"c.HAL_BSP_POWER_OFF"],HAL_BSP_POWER_ON:[183,0,1,"c.HAL_BSP_POWER_ON"],HAL_BSP_POWER_PERUSER:[183,0,1,"c.HAL_BSP_POWER_PERUSER"],HAL_BSP_POWER_SLEEP:[183,0,1,"c.HAL_BSP_POWER_SLEEP"],HAL_BSP_POWER_WFI:[183,0,1,"c.HAL_BSP_POWER_WFI"],HAL_SPI_LSB_FIRST:[191,0,1,"c.HAL_SPI_LSB_FIRST"],HAL_SPI_MODE0:[191,0,1,"c.HAL_SPI_MODE0"],HAL_SPI_MODE1:[191,0,1,"c.HAL_SPI_MODE1"],HAL_SPI_MODE2:[191,0,1,"c.HAL_SPI_MODE2"],HAL_SPI_MODE3:[191,0,1,"c.HAL_SPI_MODE3"],HAL_SPI_MSB_FIRST:[191,0,1,"c.HAL_SPI_MSB_FIRST"],HAL_SPI_TYPE_MASTER:[191,0,1,"c.HAL_SPI_TYPE_MASTER"],HAL_SPI_TYPE_SLAVE:[191,0,1,"c.HAL_SPI_TYPE_SLAVE"],HAL_SPI_WORD_SIZE_8BIT:[191,0,1,"c.HAL_SPI_WORD_SIZE_8BIT"],HAL_SPI_WORD_SIZE_9BIT:[191,0,1,"c.HAL_SPI_WORD_SIZE_9BIT"],OS_CALLOUT_F_QUEUED:[85,0,1,"c.OS_CALLOUT_F_QUEUED"],OS_EVENT_QUEUED:[88,0,1,"c.OS_EVENT_QUEUED"],OS_MBUF_DATA:[90,0,1,"c.OS_MBUF_DATA"],OS_MBUF_F_MASK:[90,0,1,"c.OS_MBUF_F_MASK"],OS_MBUF_IS_PKTHDR:[90,0,1,"c.OS_MBUF_IS_PKTHDR"],OS_MBUF_LEADINGSPACE:[90,0,1,"c.OS_MBUF_LEADINGSPACE"],OS_MBUF_PKTHDR:[90,0,1,"c.OS_MBUF_PKTHDR"],OS_MBUF_PKTHDR_TO_MBUF:[90,0,1,"c.OS_MBUF_PKTHDR_TO_MBUF"],OS_MBUF_PKTLEN:[90,0,1,"c.OS_MBUF_PKTLEN"],OS_MBUF_TRAILINGSPACE:[90,0,1,"c.OS_MBUF_TRAILINGSPACE"],OS_MBUF_USRHDR:[90,0,1,"c.OS_MBUF_USRHDR"],OS_MBUF_USRHDR_LEN:[90,0,1,"c.OS_MBUF_USRHDR_LEN"],OS_MEMPOOL_BYTES:[91,0,1,"c.OS_MEMPOOL_BYTES"],OS_MEMPOOL_F_EXT:[91,0,1,"c.OS_MEMPOOL_F_EXT"],OS_MEMPOOL_INFO_NAME_LEN:[91,0,1,"c.OS_MEMPOOL_INFO_NAME_LEN"],OS_MEMPOOL_SIZE:[91,0,1,"c.OS_MEMPOOL_SIZE"],OS_SANITY_CHECK_SETFUNC:[98,0,1,"c.OS_SANITY_CHECK_SETFUNC"],OS_TASK_FLAG_EVQ_WAIT:[100,0,1,"c.OS_TASK_FLAG_EVQ_WAIT"],OS_TASK_FLAG_MUTEX_WAIT:[100,0,1,"c.OS_TASK_FLAG_MUTEX_WAIT"],OS_TASK_FLAG_NO_TIMEOUT:[100,0,1,"c.OS_TASK_FLAG_NO_TIMEOUT"],OS_TASK_FLAG_SEM_WAIT:[100,0,1,"c.OS_TASK_FLAG_SEM_WAIT"],OS_TASK_MAX_NAME_LEN:[100,0,1,"c.OS_TASK_MAX_NAME_LEN"],OS_TASK_PRI_HIGHEST:[100,0,1,"c.OS_TASK_PRI_HIGHEST"],OS_TASK_PRI_LOWEST:[100,0,1,"c.OS_TASK_PRI_LOWEST"],OS_TASK_STACK_DEFINE:[100,0,1,"c.OS_TASK_STACK_DEFINE"],OS_TIMEOUT_NEVER:[101,0,1,"c.OS_TIMEOUT_NEVER"],OS_TIME_MAX:[101,0,1,"c.OS_TIME_MAX"],OS_TIME_TICK_GEQ:[101,0,1,"c.OS_TIME_TICK_GEQ"],OS_TIME_TICK_GT:[101,0,1,"c.OS_TIME_TICK_GT"],OS_TIME_TICK_LT:[101,0,1,"c.OS_TIME_TICK_LT"],_sbrk:[183,3,1,"c._sbrk"],completion_cb:[131,4,1,"c.completion_cb"],console_append_char_cb:[131,4,1,"c.console_append_char_cb"],console_blocking_mode:[131,3,1,"c.console_blocking_mode"],console_echo:[131,3,1,"c.console_echo"],console_handle_char:[131,3,1,"c.console_handle_char"],console_init:[131,3,1,"c.console_init"],console_input:[131,5,1,"c.console_input"],console_is_init:[131,3,1,"c.console_is_init"],console_is_midline:[131,6,1,"c.console_is_midline"],console_non_blocking_mode:[131,3,1,"c.console_non_blocking_mode"],console_out:[131,3,1,"c.console_out"],console_printf:[131,3,1,"c.console_printf"],console_read:[131,3,1,"c.console_read"],console_rx_cb:[131,4,1,"c.console_rx_cb"],console_set_completion_cb:[131,3,1,"c.console_set_completion_cb"],console_set_queues:[131,3,1,"c.console_set_queues"],console_write:[131,3,1,"c.console_write"],hal_bsp_core_dump:[183,3,1,"c.hal_bsp_core_dump"],hal_bsp_flash_dev:[183,3,1,"c.hal_bsp_flash_dev"],hal_bsp_get_nvic_priority:[183,3,1,"c.hal_bsp_get_nvic_priority"],hal_bsp_hw_id:[183,3,1,"c.hal_bsp_hw_id"],hal_bsp_init:[183,3,1,"c.hal_bsp_init"],hal_bsp_power_state:[183,3,1,"c.hal_bsp_power_state"],hal_debugger_connected:[192,3,1,"c.hal_debugger_connected"],hal_flash_align:[185,3,1,"c.hal_flash_align"],hal_flash_erase:[185,3,1,"c.hal_flash_erase"],hal_flash_erase_sector:[185,3,1,"c.hal_flash_erase_sector"],hal_flash_init:[185,3,1,"c.hal_flash_init"],hal_flash_ioctl:[185,3,1,"c.hal_flash_ioctl"],hal_flash_read:[185,3,1,"c.hal_flash_read"],hal_flash_write:[185,3,1,"c.hal_flash_write"],hal_gpio_init_in:[187,3,1,"c.hal_gpio_init_in"],hal_gpio_init_out:[187,3,1,"c.hal_gpio_init_out"],hal_gpio_irq_disable:[187,3,1,"c.hal_gpio_irq_disable"],hal_gpio_irq_enable:[187,3,1,"c.hal_gpio_irq_enable"],hal_gpio_irq_handler_t:[187,4,1,"c.hal_gpio_irq_handler_t"],hal_gpio_irq_init:[187,3,1,"c.hal_gpio_irq_init"],hal_gpio_irq_release:[187,3,1,"c.hal_gpio_irq_release"],hal_gpio_irq_trig_t:[187,4,1,"c.hal_gpio_irq_trig_t"],hal_gpio_mode_t:[187,4,1,"c.hal_gpio_mode_t"],hal_gpio_pull_t:[187,4,1,"c.hal_gpio_pull_t"],hal_gpio_read:[187,3,1,"c.hal_gpio_read"],hal_gpio_toggle:[187,3,1,"c.hal_gpio_toggle"],hal_gpio_write:[187,3,1,"c.hal_gpio_write"],hal_i2c_init:[188,3,1,"c.hal_i2c_init"],hal_i2c_master_data:[188,7,1,"_CPPv319hal_i2c_master_data"],hal_i2c_master_probe:[188,3,1,"c.hal_i2c_master_probe"],hal_i2c_master_read:[188,3,1,"c.hal_i2c_master_read"],hal_i2c_master_write:[188,3,1,"c.hal_i2c_master_write"],hal_reset_cause:[192,3,1,"c.hal_reset_cause"],hal_spi_abort:[191,3,1,"c.hal_spi_abort"],hal_spi_config:[191,3,1,"c.hal_spi_config"],hal_spi_data_mode_breakout:[191,3,1,"c.hal_spi_data_mode_breakout"],hal_spi_disable:[191,3,1,"c.hal_spi_disable"],hal_spi_enable:[191,3,1,"c.hal_spi_enable"],hal_spi_init:[191,3,1,"c.hal_spi_init"],hal_spi_set_txrx_cb:[191,3,1,"c.hal_spi_set_txrx_cb"],hal_spi_settings:[191,7,1,"_CPPv316hal_spi_settings"],hal_spi_slave_set_def_tx_val:[191,3,1,"c.hal_spi_slave_set_def_tx_val"],hal_spi_tx_val:[191,3,1,"c.hal_spi_tx_val"],hal_spi_txrx:[191,3,1,"c.hal_spi_txrx"],hal_spi_txrx_cb:[191,4,1,"c.hal_spi_txrx_cb"],hal_spi_txrx_noblock:[191,3,1,"c.hal_spi_txrx_noblock"],hal_system_clock_start:[192,3,1,"c.hal_system_clock_start"],hal_system_reset:[192,3,1,"c.hal_system_reset"],hal_system_restart:[192,3,1,"c.hal_system_restart"],hal_system_start:[192,3,1,"c.hal_system_start"],hal_timer:[193,7,1,"_CPPv39hal_timer"],hal_timer_cb:[193,4,1,"c.hal_timer_cb"],hal_timer_config:[193,3,1,"c.hal_timer_config"],hal_timer_deinit:[193,3,1,"c.hal_timer_deinit"],hal_timer_delay:[193,3,1,"c.hal_timer_delay"],hal_timer_get_resolution:[193,3,1,"c.hal_timer_get_resolution"],hal_timer_init:[193,3,1,"c.hal_timer_init"],hal_timer_read:[193,3,1,"c.hal_timer_read"],hal_timer_set_cb:[193,3,1,"c.hal_timer_set_cb"],hal_timer_start:[193,3,1,"c.hal_timer_start"],hal_timer_start_at:[193,3,1,"c.hal_timer_start_at"],hal_timer_stop:[193,3,1,"c.hal_timer_stop"],hal_uart_blocking_tx:[194,3,1,"c.hal_uart_blocking_tx"],hal_uart_close:[194,3,1,"c.hal_uart_close"],hal_uart_config:[194,3,1,"c.hal_uart_config"],hal_uart_init:[194,3,1,"c.hal_uart_init"],hal_uart_init_cbs:[194,3,1,"c.hal_uart_init_cbs"],hal_uart_rx_char:[194,4,1,"c.hal_uart_rx_char"],hal_uart_start_rx:[194,3,1,"c.hal_uart_start_rx"],hal_uart_start_tx:[194,3,1,"c.hal_uart_start_tx"],hal_uart_tx_char:[194,4,1,"c.hal_uart_tx_char"],hal_uart_tx_done:[194,4,1,"c.hal_uart_tx_done"],hal_watchdog_enable:[195,3,1,"c.hal_watchdog_enable"],hal_watchdog_init:[195,3,1,"c.hal_watchdog_init"],hal_watchdog_tickle:[195,3,1,"c.hal_watchdog_tickle"],os_callout:[85,7,1,"_CPPv310os_callout"],os_callout_init:[85,3,1,"c.os_callout_init"],os_callout_queued:[85,3,1,"c.os_callout_queued"],os_callout_remaining_ticks:[85,3,1,"c.os_callout_remaining_ticks"],os_callout_reset:[85,3,1,"c.os_callout_reset"],os_callout_stop:[85,3,1,"c.os_callout_stop"],os_cputime_delay_nsecs:[87,3,1,"c.os_cputime_delay_nsecs"],os_cputime_delay_ticks:[87,3,1,"c.os_cputime_delay_ticks"],os_cputime_delay_usecs:[87,3,1,"c.os_cputime_delay_usecs"],os_cputime_get32:[87,3,1,"c.os_cputime_get32"],os_cputime_init:[87,3,1,"c.os_cputime_init"],os_cputime_nsecs_to_ticks:[87,3,1,"c.os_cputime_nsecs_to_ticks"],os_cputime_ticks_to_nsecs:[87,3,1,"c.os_cputime_ticks_to_nsecs"],os_cputime_ticks_to_usecs:[87,3,1,"c.os_cputime_ticks_to_usecs"],os_cputime_timer_init:[87,3,1,"c.os_cputime_timer_init"],os_cputime_timer_relative:[87,3,1,"c.os_cputime_timer_relative"],os_cputime_timer_start:[87,3,1,"c.os_cputime_timer_start"],os_cputime_timer_stop:[87,3,1,"c.os_cputime_timer_stop"],os_cputime_usecs_to_ticks:[87,3,1,"c.os_cputime_usecs_to_ticks"],os_event:[88,7,1,"_CPPv38os_event"],os_event_fn:[88,4,1,"c.os_event_fn"],os_eventq:[88,7,1,"_CPPv39os_eventq"],os_eventq_dflt_get:[88,3,1,"c.os_eventq_dflt_get"],os_eventq_get:[88,3,1,"c.os_eventq_get"],os_eventq_get_no_wait:[88,3,1,"c.os_eventq_get_no_wait"],os_eventq_init:[88,3,1,"c.os_eventq_init"],os_eventq_inited:[88,3,1,"c.os_eventq_inited"],os_eventq_poll:[88,3,1,"c.os_eventq_poll"],os_eventq_put:[88,3,1,"c.os_eventq_put"],os_eventq_remove:[88,3,1,"c.os_eventq_remove"],os_eventq_run:[88,3,1,"c.os_eventq_run"],os_get_uptime_usec:[101,3,1,"c.os_get_uptime_usec"],os_gettimeofday:[101,3,1,"c.os_gettimeofday"],os_mbuf:[90,7,1,"_CPPv37os_mbuf"],os_mbuf_adj:[90,3,1,"c.os_mbuf_adj"],os_mbuf_append:[90,3,1,"c.os_mbuf_append"],os_mbuf_appendfrom:[90,3,1,"c.os_mbuf_appendfrom"],os_mbuf_cmpf:[90,3,1,"c.os_mbuf_cmpf"],os_mbuf_cmpm:[90,3,1,"c.os_mbuf_cmpm"],os_mbuf_concat:[90,3,1,"c.os_mbuf_concat"],os_mbuf_copydata:[90,3,1,"c.os_mbuf_copydata"],os_mbuf_copyinto:[90,3,1,"c.os_mbuf_copyinto"],os_mbuf_dup:[90,3,1,"c.os_mbuf_dup"],os_mbuf_extend:[90,3,1,"c.os_mbuf_extend"],os_mbuf_free:[90,3,1,"c.os_mbuf_free"],os_mbuf_free_chain:[90,3,1,"c.os_mbuf_free_chain"],os_mbuf_get:[90,3,1,"c.os_mbuf_get"],os_mbuf_get_pkthdr:[90,3,1,"c.os_mbuf_get_pkthdr"],os_mbuf_off:[90,3,1,"c.os_mbuf_off"],os_mbuf_pkthdr:[90,7,1,"_CPPv314os_mbuf_pkthdr"],os_mbuf_pool:[90,7,1,"_CPPv312os_mbuf_pool"],os_mbuf_pool_init:[90,3,1,"c.os_mbuf_pool_init"],os_mbuf_prepend:[90,3,1,"c.os_mbuf_prepend"],os_mbuf_prepend_pullup:[90,3,1,"c.os_mbuf_prepend_pullup"],os_mbuf_pullup:[90,3,1,"c.os_mbuf_pullup"],os_mbuf_trim_front:[90,3,1,"c.os_mbuf_trim_front"],os_memblock:[91,7,1,"_CPPv311os_memblock"],os_memblock_from:[91,3,1,"c.os_memblock_from"],os_memblock_get:[91,3,1,"c.os_memblock_get"],os_memblock_put:[91,3,1,"c.os_memblock_put"],os_memblock_put_from_cb:[91,3,1,"c.os_memblock_put_from_cb"],os_membuf_t:[91,4,1,"c.os_membuf_t"],os_mempool:[91,7,1,"_CPPv310os_mempool"],os_mempool_ext_init:[91,3,1,"c.os_mempool_ext_init"],os_mempool_info:[91,7,1,"_CPPv315os_mempool_info"],os_mempool_info_get_next:[91,3,1,"c.os_mempool_info_get_next"],os_mempool_init:[91,3,1,"c.os_mempool_init"],os_mempool_is_sane:[91,3,1,"c.os_mempool_is_sane"],os_mempool_put_fn:[91,4,1,"c.os_mempool_put_fn"],os_mqueue:[90,7,1,"_CPPv39os_mqueue"],os_mqueue_get:[90,3,1,"c.os_mqueue_get"],os_mqueue_init:[90,3,1,"c.os_mqueue_init"],os_mqueue_put:[90,3,1,"c.os_mqueue_put"],os_msys_count:[90,3,1,"c.os_msys_count"],os_msys_get:[90,3,1,"c.os_msys_get"],os_msys_get_pkthdr:[90,3,1,"c.os_msys_get_pkthdr"],os_msys_num_free:[90,3,1,"c.os_msys_num_free"],os_msys_register:[90,3,1,"c.os_msys_register"],os_msys_reset:[90,3,1,"c.os_msys_reset"],os_mutex:[92,7,1,"_CPPv38os_mutex"],os_mutex_init:[92,3,1,"c.os_mutex_init"],os_mutex_pend:[92,3,1,"c.os_mutex_pend"],os_mutex_release:[92,3,1,"c.os_mutex_release"],os_sanity_check:[98,7,1,"_CPPv315os_sanity_check"],os_sanity_check_func_t:[98,4,1,"c.os_sanity_check_func_t"],os_sanity_check_init:[98,3,1,"c.os_sanity_check_init"],os_sanity_check_register:[98,3,1,"c.os_sanity_check_register"],os_sanity_check_reset:[98,3,1,"c.os_sanity_check_reset"],os_sanity_task_checkin:[98,3,1,"c.os_sanity_task_checkin"],os_sched_get_current_task:[86,3,1,"c.os_sched_get_current_task"],os_sem:[99,7,1,"_CPPv36os_sem"],os_sem_get_count:[99,3,1,"c.os_sem_get_count"],os_sem_init:[99,3,1,"c.os_sem_init"],os_sem_pend:[99,3,1,"c.os_sem_pend"],os_sem_release:[99,3,1,"c.os_sem_release"],os_settimeofday:[101,3,1,"c.os_settimeofday"],os_stime_t:[101,4,1,"c.os_stime_t"],os_task:[100,7,1,"_CPPv37os_task"],os_task_count:[100,3,1,"c.os_task_count"],os_task_func_t:[100,4,1,"c.os_task_func_t"],os_task_info:[100,7,1,"_CPPv312os_task_info"],os_task_info_get_next:[100,3,1,"c.os_task_info_get_next"],os_task_init:[100,3,1,"c.os_task_init"],os_task_remove:[100,3,1,"c.os_task_remove"],os_task_state_t:[100,4,1,"c.os_task_state_t"],os_tick_idle:[190,3,1,"c.os_tick_idle"],os_tick_init:[190,3,1,"c.os_tick_init"],os_time_advance:[101,3,1,"c.os_time_advance"],os_time_delay:[101,3,1,"c.os_time_delay"],os_time_get:[101,3,1,"c.os_time_get"],os_time_ms_to_ticks:[101,3,1,"c.os_time_ms_to_ticks"],os_time_t:[101,4,1,"c.os_time_t"],os_timeradd:[101,0,1,"c.os_timeradd"],os_timersub:[101,0,1,"c.os_timersub"],os_timeval:[101,7,1,"_CPPv310os_timeval"],os_timezone:[101,7,1,"_CPPv311os_timezone"]}},objnames:{"0":["c","define","define"],"1":["c","enumvalue","enumvalue"],"2":["c","enum","enum"],"3":["c","function","C function"],"4":["c","typedef","typedef"],"5":["c","struct","struct"],"6":["c","variable","variable"],"7":["cpp","class","C++ class"]},objtypes:{"0":"c:define","1":"c:enumvalue","2":"c:enum","3":"c:function","4":"c:typedef","5":"c:struct","6":"c:variable","7":"cpp:class"},terms:{"000s":[258,260,263,275],"008s":[258,260,263,275],"00z":266,"01t22":69,"02d":14,"02t22":266,"04x":21,"05t02":266,"093s":[258,260,263,275],"0b1000110":188,"0mb":11,"0ubuntu5":6,"0x0":[255,262,275],"0x00":[21,262,263,274],"0x0000":[246,274],"0x00000000":[180,223,225,226],"0x00000001":129,"0x00000002":[129,262],"0x00000004":129,"0x00000008":129,"0x00000010":129,"0x000000b8":255,"0x000000d8":[288,289],"0x000000dc":[245,281,288,289],"0x00004000":[223,225,226],"0x00008000":[94,223,225,226],"0x00009ef4":262,"0x0000fca6":255,"0x00023800":223,"0x0003f000":223,"0x0003f800":223,"0x0006":30,"0x0007d000":[14,226],"0x000e0000":225,"0x0010":28,"0x01":[21,28,31,129,263],"0x0100":28,"0x01000000":261,"0x0101":21,"0x0102":21,"0x0103":21,"0x0104":21,"0x0105":21,"0x0106":21,"0x0107":21,"0x0108":21,"0x0109":21,"0x010a":21,"0x010b":21,"0x010c":21,"0x010d":21,"0x010e":21,"0x010f":21,"0x0110":21,"0x0111":21,"0x02":[21,28,31,129,263,274],"0x0201":21,"0x0202":21,"0x0203":21,"0x0204":21,"0x0205":21,"0x0206":21,"0x0207":21,"0x0208":21,"0x0209":21,"0x020a":21,"0x020b":21,"0x020c":21,"0x020d":21,"0x020e":21,"0x020f":21,"0x0210":21,"0x0211":21,"0x0212":21,"0x0213":21,"0x0214":21,"0x0215":21,"0x0216":21,"0x0217":21,"0x0218":21,"0x0219":21,"0x021a":21,"0x021b":21,"0x021c":21,"0x021d":21,"0x021e":21,"0x021f":21,"0x0220":21,"0x0221":21,"0x0222":21,"0x0223":21,"0x0224":21,"0x0225":21,"0x0226":21,"0x0227":21,"0x0228":21,"0x0229":21,"0x022a":21,"0x022c":21,"0x022d":21,"0x022e":21,"0x022f":21,"0x0230":21,"0x0232":21,"0x0234":21,"0x0235":21,"0x0236":21,"0x0237":21,"0x0238":21,"0x0239":21,"0x023a":21,"0x023b":21,"0x023c":21,"0x023d":21,"0x023e":21,"0x023f":21,"0x0240":21,"0x03":[21,31,129],"0x0300":[21,28],"0x0301":21,"0x0302":21,"0x04":[21,28],"0x0401":21,"0x0402":21,"0x0403":21,"0x0404":21,"0x0405":21,"0x0406":21,"0x0407":21,"0x0408":21,"0x0409":21,"0x040a":21,"0x040b":21,"0x040c":21,"0x040d":21,"0x040e":21,"0x0483":259,"0x05":21,"0x0501":21,"0x0502":21,"0x0503":21,"0x0504":21,"0x0505":21,"0x0506":21,"0x0507":21,"0x0508":21,"0x0509":21,"0x050a":21,"0x050b":21,"0x050c":21,"0x050d":21,"0x050e":21,"0x06":[21,246],"0x07":21,"0x08":[21,28,274],"0x08000000":261,"0x08000020":261,"0x08000250":261,"0x08021e90":259,"0x09":21,"0x0a":21,"0x0b":21,"0x0bc11477":255,"0x0c":21,"0x0c80":30,"0x0d":21,"0x0e":21,"0x0f":[21,277],"0x0f505235":129,"0x0fffffff":180,"0x1":[275,277,279,281],"0x10":[21,255,262,263,277],"0x100":21,"0x1000":[90,277,279],"0x10000":94,"0x10000000":180,"0x10010000":261,"0x10036413":261,"0x10076413":259,"0x1010":90,"0x103":21,"0x11":[21,24,254,263],"0x12":21,"0x13":21,"0x14":21,"0x1400":274,"0x15":[21,273,275,277],"0x16":21,"0x17":21,"0x18":21,"0x1800":31,"0x1808":31,"0x180a":31,"0x19":[21,208],"0x1a":21,"0x1b":21,"0x1c":[21,273,275],"0x1d":21,"0x1e":21,"0x1f":21,"0x2":[277,279],"0x20":[21,33,94,255,262,273,275],"0x200":[21,277,279],"0x2000":[277,279],"0x20000":275,"0x20000000":94,"0x20002290":259,"0x20002408":255,"0x20008000":255,"0x21":[21,33],"0x21000000":255,"0x22":[21,24,33,263],"0x23":[21,33],"0x24":21,"0x25":[21,274],"0x26":21,"0x27":21,"0x28":21,"0x2800":274,"0x29":21,"0x2a":21,"0x2ba01477":262,"0x2c":21,"0x2d":21,"0x2e":21,"0x2f":21,"0x30":[21,255,262],"0x300":21,"0x311":277,"0x32":[21,277],"0x33":24,"0x34":21,"0x35":21,"0x36":21,"0x37":21,"0x374b":259,"0x38":21,"0x39":21,"0x3a":21,"0x3a000":94,"0x3b":21,"0x3c":21,"0x3c00":274,"0x3d":21,"0x3e":21,"0x3f":21,"0x4":[277,279],"0x40":[21,255,262,273,275],"0x400":21,"0x4000":[277,279],"0x40007000":275,"0x4001e504":262,"0x4001e50c":262,"0x40number":188,"0x41000000":259,"0x42000":62,"0x44":[24,274],"0x4400":274,"0x46":188,"0x4f":[273,275],"0x50":[255,262],"0x500":21,"0x5000":274,"0x55":24,"0x60":[255,262],"0x61":[273,275],"0x66":24,"0x6c00":274,"0x70":[255,262],"0x72":[273,275],"0x7800":274,"0x7fefd260":129,"0x7fff8000":275,"0x7fffffff":180,"0x80":[273,275],"0x8000":62,"0x8000000":261,"0x80000000":180,"0x8079b62c":129,"0x81":188,"0x8801":274,"0x8c":188,"0x8d":188,"0x90":[273,275],"0x96f3b83c":129,"0x9c01":274,"0x9f":274,"0xa0":277,"0xa001":274,"0xa7":[273,275],"0xaf":[273,275],"0xb3":[273,275],"0xb401":274,"0xb5":[273,275],"0xbead":[273,275],"0xcc01":274,"0xd2":[273,275],"0xd801":274,"0xdead":[273,275],"0xe401":274,"0xe7":[273,275],"0xf":274,"0xf001":274,"0xf395c277":129,"0xfb":277,"0xfe":274,"0xff":[129,180],"0xffff":[30,191,274],"0xfffffffe":180,"0xffffffff":[92,99,129,180,207,255],"0xffffffff0xffffffff0xffffffff0xffffffff":262,"100kb":102,"1024kbyte":[259,261],"103kb":223,"10m":28,"110kb":223,"128hz":14,"128kb":[9,225],"12c":[258,260,263,275],"12kb":[14,226],"12mhz":9,"132425ssb":31,"132428ssb":31,"132433ssb":31,"132437ssb":31,"132441ssb":31,"14e":288,"14h":[281,288],"1503a0":267,"16kb":[9,225,226],"16kbram":54,"16mb":9,"190a192":274,"1_amd64":[58,61,81,84],"1c15":[273,275],"1d11":284,"1d13":[267,287],"1d560":223,"1eec4":223,"1kb":223,"1mhz":14,"1ms":14,"1st":[14,69],"1ubuntu1":6,"1wx":262,"200mhz":9,"2015q2":[4,12],"2022609336ssb":249,"2022687456ssb":249,"2022789012ssb":249,"2022851508ssb":249,"2042859320ssb":249,"2042937440ssb":249,"248m":6,"250m":239,"256kb":255,"262s":[258,260,263,275],"28a29":274,"28t22":266,"291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682":240,"296712s":261,"2a24":49,"2d5217f":82,"2m_interval_max":28,"2m_interval_min":28,"2m_latenc":28,"2m_max_conn_event_len":28,"2m_min_conn_event_len":28,"2m_scan_interv":28,"2m_scan_window":28,"2m_timeout":28,"2msym":22,"300v":[258,260,263,275],"32kb":[226,255],"32mb":9,"32wx":[255,262],"363s":[258,260,263,275],"3_1":37,"3mb":82,"4_9":4,"4fa7":[273,275],"500m":239,"512kb":94,"575c":223,"5kb":102,"5ms":14,"6lowpan":22,"73d77f":72,"78e4d263eeb5af5635705b7cae026cc184f14aa6c6c59c6e80616035cd2efc8f":223,"7b3w9m4n2mg3sqmgw2q1b9p80000gn":56,"7kb":223,"8ab6433f8971b05c2a9c3341533e8ddb754e404":270,"948f118966f7989628f8f3be28840fd23a200fc219bb72acdfe9096f06c4b39b":223,"9cf8af22b1b573909a8290a90c066d4e190407e97680b7a32243960ec2bf3a7f":287,"9mb":59,"abstract":[9,21,96,97,135,152,163,166,174,181,207,209,210,239,274,291],"boolean":[200,226],"break":[21,90,137,234,250,274],"byte":[14,20,24,28,47,67,72,74,90,91,100,129,131,133,141,142,154,158,159,161,164,169,170,171,172,173,174,175,180,183,188,191,194,200,223,227,240,242,253,254,263],"case":[2,6,7,14,21,22,31,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,93,94,98,99,100,129,135,174,180,184,223,224,226,227,228,229,230,231,232,234,236,242,246,250,251,253,254,255,266,267,273,274,275,289],"catch":21,"char":[91,93,98,100,130,131,135,139,140,153,155,156,157,160,161,162,163,165,167,170,172,173,177,178,180,194,198,199,200,201,203,206,215,216,220,221,222,224,226,233,239,242,250,253,254,257,266,274,279,281],"class":[135,263],"const":[88,90,91,94,100,129,131,136,153,155,156,157,158,159,160,161,162,163,165,166,167,170,171,172,173,177,178,181,183,185,186,200,205,206,209,215,220,222,224,250,252,253,254,266,273,274,275],"default":[1,2,4,6,7,12,14,21,25,27,28,29,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,92,93,94,95,97,98,100,131,132,134,135,136,152,176,191,200,206,207,208,209,210,212,213,214,215,217,222,223,224,225,226,236,237,239,240,246,248,250,253,254,255,256,263,268,273,274,275,277,278,280,281,283,288],"enum":[100,130,187,192,194,200,207,273,274],"export":[1,11,24,61,62,81,83,84,88,131,135,137,206,207,208,209,210,237,276,277,279],"final":[8,56,90,92,94,129,143,180,182,202,223,241,242,245,248,273,275],"float":[65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,102,200,207,276],"function":[1,7,9,15,21,24,32,62,85,87,88,89,90,91,93,95,96,97,98,100,129,130,131,135,136,137,139,147,151,152,153,154,155,156,157,159,161,162,163,165,167,168,169,170,172,174,175,177,180,181,182,184,187,188,189,190,191,192,193,194,197,199,201,202,203,204,205,206,208,210,213,215,216,217,218,220,221,223,227,228,229,230,231,233,234,236,237,239,240,245,248,249,251,253,254,256,257,263,266,268,273,274,275,277,281,286,288,289,291],"goto":[98,160,205,209,218,219,273,274,275],"i\u00b2c":188,"import":[11,56,58,81,90,94,101,102,188,242,245,248,251,275],"int":[1,14,21,27,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,85,87,88,90,91,93,98,100,101,130,131,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,160,161,162,163,164,165,166,167,169,170,171,172,173,177,178,179,181,183,184,185,187,188,190,191,192,193,194,195,198,199,200,201,202,203,204,205,208,209,215,216,218,219,220,221,222,224,226,227,228,229,231,232,233,239,241,242,248,250,251,252,253,254,257,266,273,274,275,279,281],"long":[3,14,22,25,29,90,93,99,102,152,170,180,188,223,262,281],"new":[2,3,4,6,10,11,14,22,24,25,28,31,32,35,40,42,46,47,51,54,58,59,60,62,86,90,94,97,100,129,131,141,142,143,152,153,162,167,174,177,178,182,188,196,215,223,224,226,236,240,242,244,245,246,251,252,253,254,255,258,259,260,261,262,263,266,267,268,274,275,276,278,291],"null":[85,87,88,90,91,92,93,94,98,99,100,131,136,153,157,161,164,172,174,180,186,191,205,206,208,209,215,220,222,225,226,239,242,248,251,252,253,254,257,273,274,275,276,279,281],"public":[20,26,28,30,31,33,58,67,81,85,88,90,91,92,98,99,100,101,129,131,188,191,193,253,254],"return":[19,27,85,86,87,88,90,91,92,93,94,98,99,100,101,130,131,136,141,153,183,186,187,188,191,192,193,194,195,200,208,209,212,226,239,242,248,250,251,252,255,257,263,266,273,274,275,277,279,281,285],"short":[90,92,215,242],"static":[20,27,67,85,88,91,93,94,98,99,130,131,136,140,181,199,201,202,204,205,206,208,209,216,218,219,220,221,222,227,236,239,246,248,250,251,252,253,254,257,273,274,275,276,279,281],"switch":[10,12,21,59,72,78,82,86,93,94,100,129,182,196,215,237,245,246,250,251,273,274,275,281,288],"transient":251,"true":[8,12,14,87,91,98,101,205,223,227,240,266,275,284,287],"try":[2,14,21,22,24,90,153,180,188,236,241,245,246,249,255,256,257,258,259,260,262,267,269,275,277,281,283,288],"var":[51,56,66,67,98,167],"void":[21,27,85,86,87,88,90,91,93,98,100,101,130,131,135,136,137,139,151,153,154,158,160,161,163,164,167,169,170,171,172,173,179,181,183,184,185,187,188,190,191,192,193,194,195,197,199,200,206,208,209,211,216,217,218,220,221,222,226,227,228,229,231,232,233,234,239,242,248,250,251,252,253,254,257,273,274,275,276,279,281],"while":[4,6,7,8,22,24,27,50,56,62,90,91,93,94,98,100,102,131,137,139,153,155,156,157,162,165,180,194,200,205,209,223,226,227,232,237,239,242,253,254,257,264,266,273,274,275,279,281,288,289],AES:23,ANS:247,Adding:[57,80,291],And:[62,129,141,223,225,241,242,244,249,273,274,275],Are:14,But:275,CTS:[194,246],FOR:4,For:[2,3,5,6,7,8,11,12,14,21,23,24,25,30,31,35,38,40,51,54,56,58,59,60,61,62,63,67,84,85,90,93,94,97,101,102,129,135,136,153,171,174,175,180,181,184,187,188,191,200,206,207,208,209,210,211,221,223,224,225,226,232,234,236,239,240,245,250,251,252,253,254,255,257,259,260,261,263,266,267,268,269,274,275,277,279,281,284,287,288,289,291],IDE:[5,12],IDs:129,Its:[95,101,102,236,269],NOT:[157,188,193,275],Not:[7,21,30,87,90,180,182,187,191,223,275],One:[6,21,93,102,180,223,236,248,267,274],PCs:8,QoS:[21,22],RTS:[194,246],Such:[180,253,254,269],TMS:255,That:[2,14,21,62,141,180,226,253,254,255,263,267,268,274,275],The:[1,2,3,4,5,6,7,8,10,11,12,14,15,16,17,18,19,20,21,22,23,24,25,27,28,30,31,32,34,35,38,44,46,47,48,51,56,58,59,60,62,64,65,67,71,72,73,74,76,77,78,79,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,129,130,131,132,133,134,135,136,137,141,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,173,174,175,176,177,178,180,181,182,183,184,185,186,187,188,190,191,192,193,194,195,196,198,199,200,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,223,224,225,226,227,230,232,234,235,236,237,239,240,241,242,243,244,245,246,248,250,251,252,253,254,255,256,258,259,260,261,262,263,264,266,267,268,269,273,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,291],Then:[10,14,34,64,129,141,180,223,236,246,266,274,275,288],There:[4,8,14,23,24,29,58,62,81,85,90,92,94,95,99,100,101,102,130,131,135,161,180,182,187,206,207,212,215,223,224,250,255,263,266,270,275,281,288,289],These:[5,21,28,51,62,90,94,95,97,99,129,130,135,180,188,207,210,211,212,215,225,237,244,248,252,253,254,255,256,261,268,269,276,277],Use:[1,7,8,11,28,29,51,58,59,60,63,72,81,82,83,94,133,141,143,223,236,250,253,254,255,258,263,267,268,275,276,278,286],Used:[94,191,194,228,229,231],Uses:[32,43,134,225],Using:[21,50,92,257,286,291],Was:263,Will:21,With:[9,14,21,22,31,90,93,97,129,223,225,241,242,245,274,288,289,291],Yes:[10,14,20,90,129,134,243],__arg:98,__asm:259,__builtin_offsetof:224,__etext:261,__ev:88,__f:98,__hdr:90,__itvl:98,__n:90,__name:100,__om:90,__omp:90,__sc:98,__size:100,__t1:[87,101],__t2:[87,101],__type:90,__wfi:259,_access:250,_adc:275,_addr:253,_addr_:[253,254],_app:253,_build:[34,64],_cfg:[208,209],_cli:[209,210,277],_cnt:141,_config:[207,208,209,279],_file:153,_gatt_ac:250,_imghdr_siz:94,_init:[207,208,209],_log:209,_name:226,_nrf52_adc_h_:275,_object:200,_ofb:[208,210,277],_onb:[208,210,281],_pad1:129,_pad2:129,_pad3:129,_pad:[92,129],_param:215,_rea:200,_reserv:207,_resource_t:276,_sbrk:183,_senseair_h_:274,_sensor:208,_set:253,_shell_init:[209,277],_stage:226,_stat:209,a600anj1:223,abbrevi:248,abc:266,abil:[6,23,32,56,90,242],abl:[2,14,90,94,135,136,237,243,249,253,254,255,268,274,275],abort:[50,191,216,220,225,226,227,266,279],about:[1,3,10,14,24,30,41,58,59,60,63,65,81,82,83,91,93,94,98,100,101,141,142,146,180,200,211,223,224,235,236,239,242,248,251,252,253,254,258,262,263,269,274,275],abov:[9,14,15,20,90,93,98,101,129,153,161,180,188,191,215,223,224,225,226,237,245,248,250,253,254,257,263,266,268,273,275],absent:[129,180],absolut:[90,193],abstrat:141,acc:277,accel:[277,281],accel_rev:277,acceleromet:[207,209,276,277,278,281],accept:[21,28,137,161,180,188,194,196,236,255,259,261,263,268],access:[16,21,22,28,60,62,65,71,81,82,83,87,89,90,92,93,94,99,135,136,137,141,153,161,168,170,174,181,182,188,196,206,207,209,210,223,226,232,239,245,252,255,266,274],access_:252,access_cb:[250,252,273],access_fla:161,access_flag:[161,163],accgyro:277,accommod:[25,90,97,129,180,253],accompani:14,accomplish:[9,14,56,174,180,250],accord:[14,94,129,232,233],accordingli:[25,94,100],account:[10,62,90,129],accur:261,achiev:[27,180,253,254],ack_rxd:263,acknowledg:263,acl:21,acquir:[27,92,99,180,188],acquisit:188,across:[31,32,56,62,63,135,180,182],act:[23,31,196,223],action:[9,14,28,63,236,242,248,252,263,275],activ:[12,17,18,22,48,72,94,100,191,196,223,236,240,248,263,284,287,288,289],actual:[2,7,14,35,78,90,94,100,129,157,164,172,180,184,195,223,225,227,235,242,245,253,254,255,268,269,270,274,275],ad_fil:153,adafruit:[8,275,277],adapt:[22,97,255,258,259,267,281],adapter_nsrst_delai:[255,259],adaptor:261,adc0:275,adc:[9,14,54,135],adc_0:275,adc_0_interrupt_prior:275,adc_0_oversampl:275,adc_0_resolut:275,adc_buf_read:275,adc_buf_releas:275,adc_buf_s:275,adc_buf_set:275,adc_chan_config:275,adc_config:275,adc_dev:275,adc_event_handler_set:275,adc_evq:275,adc_hw_impl:54,adc_init:275,adc_nrf52:275,adc_number_channel:275,adc_number_sampl:275,adc_read:275,adc_read_ev:275,adc_result:275,adc_result_mv:275,adc_sampl:275,adc_sns_str:275,adc_sns_typ:275,adc_sns_val:275,adc_stack:275,adc_stack_s:275,adc_stm32f4:135,adc_task:275,adc_task_handl:275,adc_task_prio:275,add:[1,2,4,6,7,11,12,14,28,38,40,51,56,58,59,60,62,63,81,88,90,93,97,99,101,102,131,132,141,153,182,188,208,209,216,224,226,236,237,239,240,241,242,245,246,249,255,256,257,264,266,267,268,277,278,279,280,282,284,285,286,287,291],added:[10,12,33,54,56,82,90,94,99,100,129,131,136,138,153,188,215,239,240,255,257,267,269,273,274,284,285,287,291],adding:[2,14,32,38,56,90,94,95,101,141,224,245,257,266,268,269,273,274,275],addit:[1,12,14,22,30,44,56,62,63,90,94,95,97,129,135,153,180,188,206,223,226,227,230,236,237,242,245,248,255,256,258,259,261,262,263,274,285],addition:63,addr:[28,31,136,200,205,246,253,254,277],addr_typ:[28,31],address:[14,21,22,23,26,28,30,32,33,56,67,90,91,93,129,135,136,137,152,180,185,188,191,200,207,209,223,240,246,250,263,267,281,288],aditihilbert:4,adjust:[14,21,90,94,239,241],admin:[4,246],administr:[11,13],adress:28,adsertis:28,adv:[14,22,28,31,32],adv_data:28,adv_field:[248,253],adv_param:[248,251,253,254],advanc:[60,169,180,288,289],advantag:251,advantang:248,adverb:63,adverti:[253,254],advertis:[16,21,22,25,27,32,33,67,240,247,249,251,273,275,276],advertise_128bit_uuid:276,advertise_16bit_uuid:276,advertising_interv:[28,30],advic:[95,96],advinterv:30,aes:[255,258,260,262,267,284,285,287],aesni:[284,285],af80:[273,275],affect:[129,169,174,175,181,206,223,245,264],aflag:[1,51,62],after:[4,8,11,14,23,27,31,42,51,56,58,59,62,81,82,87,90,91,95,100,101,129,130,135,139,143,147,153,174,180,188,191,194,209,223,225,230,236,237,240,242,243,246,248,250,251,252,255,256,267,268,277,281],again:[8,14,21,27,58,60,81,94,100,129,141,223,224,242,248,255,258,259,260,261,262,263,273,275,287],against:[14,23,90,93,101],agnost:153,agre:[274,275],agreement:[274,275],ah02mie2:274,ahead:101,aid:[62,209],aim:[21,136,153,247,291],ain0:275,ain1:275,air:[21,90,223,237,263,282,291],air_q:274,air_qual:[273,274,275],albeit:244,alert:247,algorithm:[22,86],align:[90,91,141,242],all201612161220:76,all:[1,2,3,6,7,8,9,10,12,15,16,17,18,19,21,22,23,25,27,28,29,30,31,32,36,41,42,44,50,51,52,53,54,56,62,67,73,76,90,92,93,94,95,97,98,100,101,129,130,131,135,141,145,151,153,160,161,164,166,167,170,172,174,176,178,180,181,182,184,191,200,206,207,208,209,210,211,212,213,215,220,223,224,225,226,230,232,235,236,237,241,243,245,246,247,248,249,250,251,252,253,254,257,259,261,263,264,266,268,269,270,271,273,274,275,277,279,281,284,287],alloc:[74,78,88,89,90,91,152,180,220,248,250],allow:[2,3,4,6,8,9,12,14,21,22,28,32,40,51,56,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,92,93,97,99,129,131,135,153,174,180,183,188,191,192,206,210,211,212,214,215,223,224,226,229,233,236,237,239,242,246,248,251,253,257,258,263,267,275,277,281,283],almost:[8,242],alon:233,along:[14,62,90,91,100,218,274],alongsid:[242,253],alphabet:[180,226],alreadi:[6,7,8,11,14,21,25,32,44,59,60,82,83,87,96,97,129,136,147,154,160,161,166,167,168,173,180,187,193,236,241,244,245,255,257,258,259,260,261,262,263,267,273,274,275,276,284,287,288,289],also:[1,3,5,6,7,8,11,12,14,22,24,25,28,35,38,41,56,58,59,60,61,62,67,81,84,90,91,93,94,97,99,100,101,129,130,131,132,135,136,141,153,174,180,191,194,196,206,207,208,209,211,213,215,223,224,225,226,236,237,239,242,245,248,251,252,256,257,263,264,266,267,268,269,273,274,275,277,278,279,280,281,284,285,287],alt:287,altern:[6,129,141,223,250],although:268,altogeth:[85,273],alwai:[8,14,62,94,101,129,157,159,161,162,169,171,180,184,244,250,253,254,261,266,268,269,274,291],ambigu:21,ambiti:245,amd64:[58,81],amend:[1,33,51,63,240,264,288,289],amg:277,among:[86,94,129,177,223],amongst:90,amount:[25,90,91,96,153,172,206,223,242,248],analog:[135,282],analyz:[12,289],android:[276,278,280,283],ani:[1,4,8,10,14,15,22,23,28,34,50,51,60,62,64,65,67,74,77,78,81,82,83,85,87,88,90,91,92,93,94,96,98,99,100,101,129,131,136,137,153,160,170,174,175,176,177,179,180,191,194,206,209,210,215,223,224,226,233,236,237,240,246,248,257,258,263,269,273,274,275,281,286,291],announc:[248,253,254],annoy:[250,270],anonym:28,anoth:[10,14,22,27,28,31,62,90,92,93,94,95,96,99,100,101,131,187,196,223,225,236,242,248,250,263,274,275,285,288,289],ans:[274,275],answer:93,anymor:[90,242],anyon:14,anyth:[1,8,24,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,223,236,241,245,253,254,256,269,274,275],apach:[1,2,6,7,10,11,12,14,22,33,34,38,39,40,44,45,51,52,54,56,58,59,60,62,63,64,81,82,83,85,94,129,131,134,135,153,184,223,224,226,236,243,245,246,247,249,253,255,256,257,258,259,260,261,262,263,266,267,268,269,274,275,276,277,278,281,283,284,285,286,287,288,289,291],apart:101,api:[1,14,17,18,19,20,21,22,54,56,62,93,97,135,136,163,182,186,209,210,215,224,254,259,276,280],app:[1,7,8,12,14,22,27,30,33,35,38,39,43,44,46,47,48,49,51,54,56,63,74,77,78,94,129,131,135,153,182,192,224,225,226,236,237,239,240,241,242,245,247,248,251,252,253,254,255,257,258,259,260,261,262,266,267,273,274,275,276,277,278,279,280,284,285,286,287,288,291],app_error:275,app_log_init:206,app_util_platform:275,appear:[14,28,30,97,188,242,250,252],append:[90,141,159,169,171,180,266],append_loc:[142,143],append_test:266,appl:[255,281,283,288,289],appli:[12,14,25,101,129,131,174,175,180,194,206,223,226,263,266],applic:[1,2,4,5,6,8,9,11,13,14,15,19,21,22,24,25,26,27,29,31,35,40,43,48,51,56,58,59,60,61,62,74,77,78,79,83,84,88,90,94,98,100,129,131,132,133,134,135,153,174,180,185,191,209,210,211,212,213,214,215,221,224,225,226,235,240,244,247,250,251,256,265,266,273,274,280,283,285,286,289,291],applicaton:1,applict:12,approach:[32,94,226],appropri:[63,90,94,97,100,133,135,180,188,191,226,236,241,245,248,251,253,254,256,274,275,280],approv:10,apps_air_qu:274,apps_bleprph:223,apps_blinki:[56,62],apps_my_sensor_app:281,apr:[258,260,263,275],apropo:[255,281,288,289],apt:[4,6,7,57,61,80,84,246],arbitrari:[129,236,246,255,258,259,260,261,262,263,267,275,277,284,285,287],arbitrarili:[129,180,254],arc4:255,arch:[62,94,97,232,258,259,260,261,262,263,281],arch_sim:[257,281],architectur:[58,81,86,91,94,96,97,101,129,135,152,182,187,242],archiv:[4,7,58,60,62,167,236,237,245,255,257,258,259,260,261,262,263,267,274,275,277,281,284,285,287],arduino:[12,242,256,265,268,273,274,291],arduino_101:54,arduino_blinki:[12,242,255],arduino_boot:[12,255],arduino_mkr1000:267,arduino_primo_nrf52:[54,258,274],arduino_zero:255,arduino_zero_debug:255,arduinowifi:267,area:[14,90,94,129,130,141,151,175,177,178,183,226],area_cnt:183,area_desc:[177,178],aren:[14,102],arg:[12,87,90,91,93,98,100,135,151,185,187,191,193,194,206,209,218,227,239,242,250,251,273,274,275,281],argc:[93,100,130,139,140,177,178,198,215,216,220,221,222,226,233,239,242,253,254,257,266,274,279,281],argument:[11,12,14,21,46,51,56,63,85,88,90,91,98,100,101,131,168,184,187,188,191,193,200,206,209,211,215,221,242,248,251,252,253,254,258,260,268,269,281],argv:[100,130,139,140,177,178,198,215,216,220,221,222,226,233,239,242,253,254,257,266,274,279,281],arm:[5,6,7,12,85,94,102,255,261,281,287,288,289],around:[31,90,129,275,276,278],arrai:[24,88,140,141,151,174,175,177,178,191,200,201,202,204,205,215,220,226,241,242,248,252],arrang:[94,223],arriv:90,articl:270,artifact:[36,40,51,56,58,59,60,268],ascii:180,asf:[1,268,274,275],ask:[10,14,93,130,194,207,242,261,268,269,274],aspect:[28,90,129,242],assembl:[1,62,94,97,258,259,260,261,262,263,281],assert:[14,68,90,98,131,158,171,177,178,191,208,224,227,239,242,250,251,252,253,254,257,273,274,275,279,281],assign:[10,14,20,22,24,30,38,51,54,67,91,93,94,100,141,180,181,226,236,250,255,258,259,260,261,262,263,267,275,277,284,287],associ:[23,25,88,90,98,100,129,193,226,227,248,251],assum:[7,12,14,31,44,60,61,83,84,88,90,94,100,129,136,191,196,226,236,237,239,241,244,245,257,263,273,274,275,276,278,280,281,288,289],assumpt:14,asynchron:194,at45db:[14,136],at45db_default_config:136,at45db_dev:136,at45db_erase_sector:136,at45db_init:136,at45db_read:136,at45db_sector_info:136,at45db_writ:136,at45dbxxx:136,at91samd21g18:255,at91samd:255,ate_m:207,atmel:[2,255,267],atop:[135,182],att:[19,22,29,250],attach:[8,12,90,94,187,192,245,258,263,275,281,288,289],attempt:[21,24,28,90,91,92,100,129,164,172,177,178,179,180,188,226,250,251,252,263],attempt_stat:224,attent:3,attr:[29,31,205],attr_handl:[249,250,251,273,275],attribit:200,attribut:[15,17,18,21,22,29,51,54,63,67,91,95,97,200,205,226,247,250],auth:[14,28,270],authent:[21,23,31,129,249],author:[1,21,44,62,131,266,274,275],auto:[30,136],autocomplet:56,autoconf:56,autom:32,automat:[1,10,22,25,26,43,56,62,95,197,215,224,226,230,237,245,247,248,255,258,259,261,262,266,268,274,275,276,291],autoselect:255,avaial:263,avail:[1,2,3,4,7,9,14,21,22,24,25,30,31,32,33,48,58,59,60,63,65,74,81,82,83,88,90,91,92,98,99,102,129,131,133,135,141,153,164,174,194,196,207,215,223,226,232,235,237,253,257,263,269,275,280,288,289],avail_queu:131,avoid:[62,90,92,93,98,242,276],awai:[21,94,130,250,275],await:3,awar:[248,253,254],b0_0:261,b0_1:261,b1_0:261,b1_1:261,b5729002b340:[273,275],b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2:240,bab:206,back:[8,59,65,70,81,82,83,90,91,101,102,129,130,131,188,213,237,252,261,262,274,280,284,285,287],backend:130,backward:[22,129,131,180,215],bad:[129,223,269],badli:93,bake:14,band:[22,23,28],bang:274,bank:261,bar:[12,130,291],bare:[85,247,253,254,291],base64:[7,131,263,281],base:[1,2,4,6,7,12,14,21,22,25,32,35,40,56,58,59,60,62,90,102,133,135,137,169,182,183,188,225,242,246,252,255,258,259,261,262,267,274,276,277,281],baselibc:[7,14,49,94],baselin:134,bash:[2,12,56,60,94],bash_complet:37,bash_profil:[11,59,61,82,84],bashrc:56,basi:[9,20,23,100,269,274,275],basic:[1,14,15,22,30,31,32,62,90,94,100,102,135,153,183,185,187,194,223,237,240,245,246,263,268,270,272,273,283,285,286],batch:94,batteri:[9,25,32,97,253],baud:[67,131,246,274],baudrat:[136,191,194],bbno055_cli:277,bc_acc_bw:[209,279],bc_acc_rang:[209,279],bc_mask:[209,279],bc_opr_mod:[209,279],bc_placement:209,bc_pwr_mode:[209,279],bc_unit:[209,279],bc_use_ext_xt:279,bcfg:279,bd_addr:21,be9699809a049:72,beacon:[15,244,245,256],bearer:[14,22,33],becaus:[8,12,14,21,23,27,31,51,88,129,170,180,181,188,191,207,209,212,216,223,225,242,266,268,270,274,276,277,278,281],becom:[23,32,129,248,251],been:[4,10,14,21,27,37,44,56,59,60,62,78,82,83,85,89,90,91,100,129,130,139,141,153,154,166,174,180,191,194,223,226,243,246,251,255,258,263,267,273,274],befor:[2,4,7,8,12,14,21,42,51,58,62,81,85,87,89,90,92,93,94,98,100,101,102,129,130,131,141,147,174,175,179,191,193,194,195,200,211,212,215,217,223,224,226,232,233,237,239,242,245,246,247,248,250,253,254,256,257,259,263,266,267,275,280,283,286],begin:[14,27,90,100,141,149,194,246,249,251,253,254,266,268],beginn:291,behav:[21,31,93,253,254,266],behavior:[60,93,97,162,163,174,242,250,252,266,267,289],behaviour:90,behind:[90,101],being:[14,21,90,91,93,98,100,101,129,130,136,153,180,187,188,189,198,199,223,227,242,249,251,266,274,291],bell:99,belong:[15,91,129,180,252],below:[1,2,4,6,12,14,19,21,23,24,25,31,44,63,90,93,94,95,99,100,129,131,133,136,154,161,164,180,181,193,209,223,236,242,245,250,252,255,258,259,261,262,263,264,266,268,269,270,273,275,276,277,279,283,291],benefit:[10,93,180,226,235,239],best:[14,90,94,161,200,269],beta:[135,275],better:[14,129,224],between:[7,12,22,27,28,32,38,47,56,99,101,131,180,187,188,198,200,210,223,225,226,237,239,246,258,263,269,275,277,281],beyond:[90,180],bhd:67,big:[24,62,90,263,269],bigger:223,bin:[2,4,7,11,12,14,35,36,38,39,44,47,49,51,56,58,59,60,61,62,81,82,83,84,94,169,170,223,226,236,237,240,241,245,246,249,255,257,258,259,260,261,262,263,266,267,274,275,277,281,284,285,287,288,289],bin_basenam:62,binari:[4,7,11,14,35,38,40,56,59,61,62,80,82,84,102,133,188,257,274],binutil:4,bit:[7,15,24,26,28,30,58,59,60,67,82,83,87,90,91,100,101,102,129,180,188,189,191,194,207,209,211,212,223,224,242,245,250,251,252,253,254,267,269,274,275,276,281,288,289],bitbang:189,bitmap:91,bitmask:100,bits0x00:28,bl_rev:277,bla:206,blank:14,ble:[15,19,20,24,27,31,32,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,129,133,134,223,226,237,240,244,246,248,250,251,252,256,272,273,274,278,280,283,291],ble_:250,ble_addr_t:[253,254],ble_addr_type_publ:251,ble_app:[245,253,254],ble_app_advertis:[253,254],ble_app_on_sync:[253,254],ble_app_set_addr:[253,254],ble_att:[77,237,250],ble_att_err_attr_not_found:21,ble_att_err_attr_not_long:21,ble_att_err_insufficient_authen:21,ble_att_err_insufficient_author:21,ble_att_err_insufficient_enc:21,ble_att_err_insufficient_key_sz:21,ble_att_err_insufficient_r:[21,273,275],ble_att_err_invalid_attr_value_len:[21,250],ble_att_err_invalid_handl:21,ble_att_err_invalid_offset:21,ble_att_err_invalid_pdu:21,ble_att_err_prepare_queue_ful:21,ble_att_err_read_not_permit:21,ble_att_err_req_not_support:21,ble_att_err_unlik:[21,273,275],ble_att_err_unsupported_group:21,ble_att_err_write_not_permit:21,ble_att_svr_entry_pool:74,ble_att_svr_prep_entry_pool:74,ble_eddystone_set_adv_data_uid:253,ble_eddystone_set_adv_data_url:253,ble_eddystone_url_scheme_http:253,ble_eddystone_url_suffix_org:253,ble_err_acl_conn_exist:21,ble_err_auth_fail:21,ble_err_chan_class:21,ble_err_cmd_disallow:21,ble_err_coarse_clk_adj:21,ble_err_conn_accept_tmo:21,ble_err_conn_establish:21,ble_err_conn_limit:21,ble_err_conn_parm:21,ble_err_conn_rej_bd_addr:21,ble_err_conn_rej_channel:21,ble_err_conn_rej_resourc:21,ble_err_conn_rej_secur:21,ble_err_conn_spvn_tmo:21,ble_err_conn_term_loc:21,ble_err_conn_term_m:21,ble_err_ctlr_busi:21,ble_err_diff_trans_col:21,ble_err_dir_adv_tmo:21,ble_err_encryption_mod:21,ble_err_host_busy_pair:21,ble_err_hw_fail:21,ble_err_inq_rsp_too_big:21,ble_err_instant_pass:21,ble_err_insufficient_sec:21,ble_err_inv_hci_cmd_parm:21,ble_err_inv_lmp_ll_parm:21,ble_err_link_key_chang:21,ble_err_lmp_collis:21,ble_err_lmp_ll_rsp_tmo:21,ble_err_lmp_pdu:21,ble_err_mac_conn_fail:21,ble_err_mem_capac:21,ble_err_no_pair:21,ble_err_no_role_chang:21,ble_err_page_tmo:21,ble_err_parm_out_of_rang:21,ble_err_pending_role_sw:21,ble_err_pinkey_miss:21,ble_err_qos_parm:21,ble_err_qos_reject:21,ble_err_rd_conn_term_pwroff:21,ble_err_rd_conn_term_resrc:21,ble_err_rem_user_conn_term:21,ble_err_repeated_attempt:21,ble_err_reserved_slot:21,ble_err_role_sw_fail:21,ble_err_sco_air_mod:21,ble_err_sco_itvl:21,ble_err_sco_offset:21,ble_err_sec_simple_pair:21,ble_err_synch_conn_limit:21,ble_err_unit_key_pair:21,ble_err_unk_conn_id:21,ble_err_unk_lmp:21,ble_err_unknown_hci_cmd:21,ble_err_unspecifi:21,ble_err_unsupp_lmp_ll_parm:21,ble_err_unsupp_qo:21,ble_err_unsupp_rem_featur:21,ble_err_unsupport:21,ble_ga:252,ble_gap:[14,77],ble_gap_adv_param:[253,254],ble_gap_adv_set_field:248,ble_gap_adv_start:[248,251,253,254],ble_gap_chr_uuid16_appear:[250,252],ble_gap_chr_uuid16_device_nam:[250,252],ble_gap_chr_uuid16_periph_pref_conn_param:250,ble_gap_chr_uuid16_periph_priv_flag:250,ble_gap_chr_uuid16_reconnect_addr:250,ble_gap_conn_desc:251,ble_gap_conn_find:251,ble_gap_conn_fn:248,ble_gap_conn_mode_und:[248,251],ble_gap_disc_mode_gen:[248,251],ble_gap_ev:251,ble_gap_event_conn_upd:251,ble_gap_event_connect:251,ble_gap_event_disconnect:251,ble_gap_event_enc_chang:251,ble_gap_event_fn:[253,254],ble_gap_event_subscrib:251,ble_gap_svc_uuid16:[250,252],ble_gap_upd:74,ble_gap_update_param:14,ble_gatt:77,ble_gatt_access_ctxt:[250,273,275],ble_gatt_access_op_read_chr:[250,273,275],ble_gatt_access_op_write_chr:[250,273,275],ble_gatt_chr_def:[250,252,273],ble_gatt_chr_f_notifi:273,ble_gatt_chr_f_read:[250,252,273],ble_gatt_chr_f_read_enc:273,ble_gatt_chr_f_writ:273,ble_gatt_chr_f_write_enc:273,ble_gatt_register_fn:252,ble_gatt_svc_def:[250,252,273],ble_gatt_svc_type_primari:[250,252,273],ble_gattc:77,ble_gattc_proc_pool:74,ble_gatts_chr_upd:[273,275],ble_gatts_clt_cfg_pool:74,ble_gatts_find_chr:[273,275],ble_gatts_register_svc:252,ble_h:[14,15,16,17,18,20,21,24,27,77,253,254,275],ble_hci_ram_evt_hi_pool:74,ble_hci_ram_evt_lo_pool:74,ble_hci_uart_baud:246,ble_hs_:252,ble_hs_adv_field:[248,253],ble_hs_att_err:21,ble_hs_cfg:[27,253,254],ble_hs_conn_pool:74,ble_hs_eagain:21,ble_hs_ealreadi:21,ble_hs_eapp:21,ble_hs_eauthen:21,ble_hs_eauthor:21,ble_hs_ebaddata:21,ble_hs_ebusi:21,ble_hs_econtrol:21,ble_hs_edon:21,ble_hs_eencrypt:21,ble_hs_eencrypt_key_sz:21,ble_hs_einv:[14,21],ble_hs_emsgs:21,ble_hs_eno:21,ble_hs_enoaddr:21,ble_hs_enomem:21,ble_hs_enomem_evt:21,ble_hs_enotconn:21,ble_hs_enotsup:21,ble_hs_enotsync:21,ble_hs_eo:21,ble_hs_ereject:21,ble_hs_erol:21,ble_hs_err_sm_peer_bas:21,ble_hs_err_sm_us_bas:21,ble_hs_estore_cap:21,ble_hs_estore_fail:21,ble_hs_etimeout:21,ble_hs_etimeout_hci:21,ble_hs_eunknown:21,ble_hs_ev_tx_notif:88,ble_hs_event_tx_notifi:88,ble_hs_forev:[251,253,254],ble_hs_hci_err:21,ble_hs_hci_ev_pool:74,ble_hs_id:24,ble_hs_id_gen_rnd:[24,253,254],ble_hs_id_set_rnd:[20,24,253,254],ble_hs_l2c_err:21,ble_hs_reset_fn:27,ble_hs_sm_peer_err:21,ble_hs_sm_us_err:21,ble_hs_sync_fn:27,ble_ibeacon_set_adv_data:254,ble_l2cap:77,ble_l2cap_chan_pool:74,ble_l2cap_sig_err_cmd_not_understood:21,ble_l2cap_sig_err_invalid_cid:21,ble_l2cap_sig_err_mtu_exceed:21,ble_l2cap_sig_proc_pool:74,ble_ll:[77,78,274],ble_ll_cfg_feat_le_encrypt:223,ble_ll_conn:77,ble_ll_prio:226,ble_lp_clock:25,ble_max_connect:[276,278],ble_mesh_dev_uuid:33,ble_mesh_pb_gatt:33,ble_own:[253,254],ble_own_addr_random:[253,254],ble_phi:77,ble_prph:274,ble_public_dev_addr:24,ble_rigado:48,ble_role_broadcast:278,ble_role_peripher:278,ble_sm_err_alreadi:21,ble_sm_err_authreq:21,ble_sm_err_cmd_not_supp:21,ble_sm_err_confirm_mismatch:21,ble_sm_err_cross_tran:21,ble_sm_err_dhkei:21,ble_sm_err_enc_key_sz:21,ble_sm_err_inv:21,ble_sm_err_numcmp:21,ble_sm_err_oob:21,ble_sm_err_pair_not_supp:21,ble_sm_err_passkei:21,ble_sm_err_rep:21,ble_sm_err_unspecifi:21,ble_sm_legaci:223,ble_store_config:14,ble_tgt:[245,253,254],ble_uu:252,ble_uuid128_init:[273,275],ble_uuid128_t:[273,275],ble_uuid16:[250,252],ble_uuid16_declar:[273,275],ble_uuid:275,ble_uuid_128_to_16:250,ble_uuid_u16:[273,275],ble_xtal_settle_tim:25,bleadc:275,blecent:[7,62],blehci:[7,62],blehciproj:246,blehostd:67,blemesh:[22,33],blenano:54,bleprph:[7,14,22,62,67,223,240,247,248,249,250,251,252,273,274,275,276,289],bleprph_advertis:[248,251],bleprph_appear:250,bleprph_device_nam:[248,250],bleprph_log:[248,251,273,275],bleprph_oic:[7,62,280],bleprph_oic_sensor:276,bleprph_on_connect:248,bleprph_pref_conn_param:250,bleprph_print_conn_desc:251,bleprph_privacy_flag:250,bleprph_reconnect_addr:250,blesplit:[7,62],bletest:[7,62],bletini:[7,22,38,39,46,47,51,62,72,237,246,249],bletiny_chr_pool:74,bletiny_dsc_pool:74,bletiny_svc_pool:74,bletoh:90,bleuart:[7,62],bleuartx000:14,blink:[1,7,62,94,100,239,241,242,255,256,258,259,260,261,262,274,275,291],blink_nord:289,blink_nrf:274,blink_primo:274,blink_rigado:48,blinki:[1,12,14,35,44,45,49,56,62,94,242,245,246,263,267,274,275,283,284,285,287,288,289,291],blinky_callout:257,blinky_primo:274,blinky_sim:62,blksize:91,blksz:[74,285],blob:[21,184],block:[21,30,74,87,88,90,91,99,135,141,144,174,175,176,177,178,188,191,193,194,239,274,285],block_addr:91,block_siz:91,blocks_siz:91,blue:262,bluetooth:[1,9,21,23,24,25,28,30,33,90,223,240,247,248,253,254,256,274,275,291],bmd300eval:[49,54,260,275],bmd:[260,275],bno055:[208,209,276,278,279],bno055_0:[208,277,279],bno055_acc_cfg_bw_125hz:279,bno055_acc_cfg_rng_16g:279,bno055_acc_unit_ms2:279,bno055_angrate_unit_dp:279,bno055_cfg:[209,279],bno055_cli:[277,278],bno055_config:[209,279],bno055_default_cfg:209,bno055_do_format_android:279,bno055_err:209,bno055_euler_unit_deg:279,bno055_get_chip_id:209,bno055_id:209,bno055_info:209,bno055_init:[208,209],bno055_ofb:[208,276,277,278],bno055_opr_mode_ndof:279,bno055_pwr_mode_norm:279,bno055_sensor_get_config:209,bno055_sensor_read:209,bno055_shel:277,bno055_shell_init:277,bno055_stat_sect:209,bno055_temp_unit_degc:279,board:[1,2,4,5,7,8,12,14,24,25,31,40,43,48,54,56,58,59,60,62,93,94,135,182,183,188,209,210,214,223,225,226,236,237,239,240,241,242,246,249,253,254,256,257,273,274,279,280,281,283,286,288,289,291],bodi:[129,279],bold:[236,243],bond:[23,28,30,31,249],bondabl:28,bone:[85,247,253,254,291],bookkeep:141,bool:[91,200],boot:[7,44,62,94,101,102,131,196,236,237,240,246,255,258,259,260,261,262,263,267,274,275,277,281,284,285,287],boot_boot_serial_test:7,boot_bootutil:223,boot_build_statu:129,boot_build_status_on:129,boot_clear_statu:129,boot_copy_area:129,boot_copy_imag:129,boot_erase_area:129,boot_fill_slot:129,boot_find_image_area_idx:129,boot_find_image_part:129,boot_find_image_slot:129,boot_go:129,boot_img_mag:129,boot_init_flash:129,boot_load:94,boot_mag:129,boot_move_area:129,boot_nrf:274,boot_olimex:261,boot_primo:274,boot_read_image_head:129,boot_read_statu:129,boot_select_image_slot:129,boot_seri:[7,14,131],boot_serial_setup:7,boot_slot_addr:129,boot_slot_to_area_idx:129,boot_swap_area:129,boot_test:7,boot_vect_delete_main:129,boot_vect_delete_test:129,boot_vect_read_main:129,boot_vect_read_on:129,boot_vect_read_test:129,boot_write_statu:129,bootabl:[223,240,284,287],bootload:[1,12,44,48,94,97,102,131,192,196,236,240,242,256,257,274,275,276,278,286],bootutil:[7,14,102,129,131,255,258,259,260,261,262,263,267,277,284,285,287],bootutil_misc:[7,255,258,259,260,262,277,284,285,287],both:[6,9,11,15,21,23,28,30,40,56,58,59,60,63,90,92,94,99,129,130,132,135,174,180,188,191,200,206,223,225,226,235,255,257,263,266,267,270,275],bottl:[59,82],bottom:[12,94,98,100,249],bound:[90,94,153],boundari:[90,91,94],box:[12,289],bps:194,branch:[1,4,7,10,11,14,56,57,58,60,61,80,81,83,84,129,243,255,267,268,269],branchnam:10,brand:262,bread:275,breadboard:275,breakdown:223,breakout:8,breakpoint:[255,259],breviti:[223,236,285],brew:[3,4,7,11,37,56,59,61,82,84],brick:129,bridg:180,brief:[14,20,187,253,254,263],briefli:94,bring:[12,94,182,277,280,283],broad:291,broadca:[253,254],broadcast:[14,15,28,32,248,253,254],brows:[249,258,268],browser:243,bsd:102,bsp:[1,7,14,25,33,35,38,39,43,44,46,48,51,56,62,63,93,130,135,174,175,177,178,182,186,187,193,194,207,208,209,210,212,223,226,236,239,245,246,249,255,257,258,259,260,261,262,263,267,274,275,276,277,278,279,281,284,285,287,288,289,291],bsp_arduino_zero:255,bsp_arduino_zero_pro:[255,267],bsp_flash_dev:175,bsp_timer:193,bsppackag:94,bss:[14,49,94,223],bssnz_t:[273,274,275],bt_mesh_provis:14,btattach:246,btmesh_shel:14,btshell:[14,30],buad:67,buf:[130,136,154,155,156,157,161,162,164,165,169,172,200],buf_len:90,buffer:[14,21,90,91,93,97,98,131,135,157,164,170,172,180,188,191,200,206,225,254,275],buffer_len:275,buffer_size_down:288,bug:[4,7,11,161,162,255,259,281,288,289],bui:275,build:[1,2,3,4,5,6,11,32,33,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,81,83,93,94,95,97,129,135,182,188,199,206,210,223,224,225,226,232,239,240,247,248,249,256,266,273,274,283,286,291],build_arduino_blinki:12,build_arduino_boot:12,build_numb:198,build_profil:[1,33,38,39,44,51,54,62,94,223,236,245,246,249,255,258,259,260,261,262,263,267,274,275,276,277,278,281,284,285,287],buildabl:7,builder:243,built:[1,4,7,8,9,14,22,34,35,39,40,43,44,56,58,59,60,61,62,64,82,83,84,90,129,191,206,223,232,236,237,243,245,246,249,253,254,255,256,257,258,259,260,261,262,263,266,267,273,274,275,276,277,281,284,285,287],bunch:274,bundl:[14,56,102,153],burn:[14,253,254],bus:[2,188],buse:[135,182],busi:[21,91,92,242,274],button1_pin:239,button:[2,4,10,12,14,99,239,255,258],bytes_read:[154,161,164,169,172],bytyp:212,c_ev:85,c_evq:85,c_tick:85,cabl:[237,239,240,242,246,255,256,258,259,260,261,263,267,275,281,283,284,286,287],cach:[59,82,135,174,176,182],cache_large_file_test:266,calcul:[21,30,49,91,101,129,141],calendar:9,call:[6,7,9,11,20,22,24,27,37,62,85,86,87,88,89,90,91,92,93,94,98,99,100,101,102,129,130,131,132,133,135,136,139,141,142,143,144,146,147,151,159,162,166,169,172,173,176,177,179,180,181,184,187,188,190,191,192,193,194,195,197,200,206,207,208,209,211,212,213,215,217,218,221,224,226,228,229,230,231,232,233,234,237,239,242,244,245,248,249,250,251,252,253,254,255,257,263,266,268,274,275,276,277,281,286],callback:[21,27,87,88,90,91,131,141,146,151,187,191,193,194,207,208,209,211,213,226,239,248,250,252,253,254,257,274,281],caller:[90,91,131,141,193,199,200,216,220],callout:[88,93,98,212,257,281],callout_l:239,callout_reset:130,came:246,can:[1,2,3,4,5,6,7,8,9,11,12,14,20,21,22,23,24,25,28,31,32,34,35,36,43,46,51,56,58,59,60,61,62,63,64,65,67,73,77,81,82,83,84,85,86,87,88,90,91,92,93,94,95,97,98,99,100,102,129,130,131,132,135,136,137,138,141,142,144,146,147,151,152,153,162,166,167,170,172,174,175,177,180,181,182,187,189,190,191,193,194,195,196,200,206,207,208,209,210,211,212,215,216,220,221,222,223,224,225,226,228,229,231,232,235,236,237,239,240,241,242,243,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,273,274,275,276,277,278,279,281,283,284,285,287,288,289,291],cancel:[21,28,85],candid:268,cannot:[4,20,21,72,87,89,92,93,99,129,130,152,170,180,183,191,193,226,237,255,267,268,269,270],cap:14,capabl:[14,21,23,28,30,96,131,135,206,223,242,257,288],capac:21,captian:82,captur:180,carbon:273,card:[137,152],care:[14,90,93,100,164,172,253,254,268,269,273],carri:90,cascad:[1,62],cast:[90,91,250],cat:[81,274,275],catastroph:27,categor:94,categori:[14,97],caus:[91,93,99,154,161,162,167,170,180,188,192,225,227,240,242,275,288],caveat:[14,129],cb_arg:[151,193,248,252,253,254],cb_func:193,cbmem:[7,206,227],cbmem_buf:206,cbmem_entry_hdr:227,cbmem_init:206,cbmem_read:227,cbmem_test_case_1_walk:227,cbor:[133,134],cborattr:7,cccd:28,ccm:23,cdc:258,cell:23,cellar:[4,6,11,37,59,61,82,84],central:[14,21,31,247,248,249,251],certain:[1,22,90,91,93,94,135,246,269],certainli:[14,275],cess_op_:250,cfg:[71,172,173,188,191,193,194,208,209,259],cflag:[1,51,62,94],cgi:102,ch_commit:130,ch_export:130,ch_get:130,ch_name:130,ch_set:130,chain:[90,91,200],challeng:264,chanc:[93,100],chang:[1,4,6,7,10,11,14,20,21,22,23,25,29,31,47,50,51,53,58,62,63,81,90,94,95,129,180,187,191,207,208,215,223,225,226,236,237,239,241,242,243,246,249,251,253,254,255,259,273,274,275,276,277,278,281,283,288,289],channel:[14,21,22,30,135,275],channel_map:28,chapter:[2,22,97,133],charact:[131,140,157,160,174,180,194,198,199,200,201,202,203,204,215,220,226,252,267,281,288],character:25,characteri:[250,252],characterist:[9,17,18,22,28,29,129,249,252,273,275],check:[4,6,8,11,14,21,23,56,57,80,85,88,91,100,130,180,200,209,223,225,226,236,240,245,246,247,258,261,263,266,269,274,277,279,286],checkbox:60,checkin:[78,98,100],checkout:[10,81,83,256],checksum:[141,143],child:[91,155,156,157,162,165,180],children:180,chip:[4,97,135,136,182,187,191,192,207,209,255,256,258,259,262,267,268,274,277],chip_id:277,chipset:[135,182,255,267],choic:[2,10,174,246,277],choos:[6,7,10,14,90,100,102,223,224,237,242,245,248,257,258,260,273,275],chose:224,chosen:[90,94,129,152,180,275],chr:[250,273,275],chr_access:250,chr_val_handl:[273,275],chunk:[14,90],ci40:54,cid:249,circuit:188,circular:[14,206,225,226],circularli:269,clang:6,clarif:10,clarifi:135,clariti:137,classif:21,clean:[1,11,34,40,51,58,59,60,64,82,160,178,242,263],cleanli:226,clear:[73,85,90,100,129,180],clearli:[8,21],cli:131,click:[2,4,10,12,243,249,253,254,255,258,259,261,287],client:[12,14,18,19,21,22,28,32,153,181,210,253,273],clk:191,clobber:167,clock:[21,26,87,192,255,259,277],clock_freq:87,clone:[10,11,46,51,56,59,82],close:[2,60,135,153,154,155,156,157,158,161,162,164,165,169,170,171,172,173,194,208,255,258,259,261,262,279],closest:193,clue:14,cmake:1,cmd:[56,62,94,185,274,277],cmd_len:274,cmd_queue:131,cmd_read_co2:274,cmp:274,cmsi:[2,7,14,49,255,258,259,260,261,262,281],cmsis_nvic:[258,259,260,261,262,281],cn4:236,cnt:[74,131,177,178,191,285],co2:[273,274],co2_evq:273,co2_read_ev:273,co2_sns_str:273,co2_sns_typ:273,co2_sns_val:273,co2_stack:273,co2_stack_s:273,co2_task:273,co2_task_handl:273,co2_task_prio:273,coap:[134,210,213,276,280],coars:21,coc:28,code:[1,5,7,9,10,11,13,19,22,25,27,28,30,56,86,90,91,93,96,97,98,101,102,129,131,133,135,137,140,153,154,155,156,157,158,160,161,162,164,165,167,169,170,171,172,173,177,178,179,180,181,182,183,187,188,191,193,194,196,206,208,209,210,223,226,227,228,229,231,232,233,237,239,242,247,248,250,251,252,255,256,257,263,265,267,268,274,275,276,279,280,281,283,285,286,291],codebas:[255,267],coded_interval_max:28,coded_interval_min:28,coded_lat:28,coded_max_conn_event_len:28,coded_min_conn_event_len:28,coded_scan_interv:28,coded_scan_window:28,coded_timeout:28,codepag:152,coding_standard:7,coexist:129,collect:[1,7,44,56,62,90,91,133,141,181,200,223,236,268],collis:21,colon:67,color:241,column:20,com11:8,com1:67,com3:[8,257,267,277,284,287],com6:8,com:[8,10,11,12,34,56,58,59,60,64,81,82,83,102,184,236,246,257,267,268,270,277,284,285,287],combin:[1,21,23,27,44,62,93,94,188,245,253,254,268,269],combo:223,come:[3,22,31,56,62,94,102,131,135,206,255,261,262,267,274,275,287],comm:[236,256],comma:[52,67],comman:221,command:[1,2,4,7,8,11,21,31,35,36,37,38,39,41,42,43,45,46,47,48,49,50,52,53,54,55,58,59,60,61,62,68,69,71,72,73,76,77,79,81,82,83,84,94,97,129,132,134,137,139,188,196,197,206,210,216,220,221,222,223,224,225,226,232,236,238,240,241,242,245,253,254,255,257,258,259,260,261,262,263,264,266,267,268,270,271,275,276,277,278,279,281,284,287,288,289],comment:[3,10,14,94,235,291],commerci:274,commit:[10,11],common:[56,62,88,90,97,99,100,135,136,182,187,209,210,223,252,259],commonli:[99,191,253],commun:[9,14,22,27,28,32,67,79,131,133,137,188,191,207,208,209,236,239,240,241,242,246,248,251,256,263,267,268,274,275,277,281,284,285,286,287,291],compani:30,compar:[10,21,90,161,242,258,259,260,263,271,275],comparison:[21,23,90,101],compat:[4,14,22,56,129,131,136,215,216,223,255,263,267,277,279,281,288],compens:101,compil:[1,4,5,6,7,8,11,21,35,48,54,56,59,62,82,90,94,97,102,135,215,224,226,232,235,236,237,239,245,255,258,259,260,261,262,263,267,274,275,276,277,281,284,285,287],complaint:22,complementari:32,complet:[9,12,21,23,28,30,31,34,56,60,64,94,96,97,100,129,131,141,155,156,157,162,165,180,182,188,191,194,206,223,230,234,235,239,242,246,248,253,254,259,268,275,276,279,280,281,284,285,287],completion_cb:131,complex:[9,32,93,94,135,182,242,244],compli:22,complianc:[274,275],compliant:22,complic:[56,93,223],compon:[1,7,12,19,40,49,56,58,59,60,62,86,94,97,130,135,182,188,191,223,224,237,239,240,246,253,254,256,267,274,283,286],compos:[40,58,59,60,235],composit:200,comprehens:235,compress:[56,82,174,253],compris:[7,129,174,175],comput:[3,4,6,8,12,14,32,57,59,60,80,82,131,143,152,240,242,245,246,255,256,258,259,260,261,262,276,278,283,284,286,287],concept:[12,23,90,93,161,215,226,240,242,244,245,247,255,256,267,283,286],conceptu:14,concern:[3,90,180],concis:133,conclud:[253,254,275],concurr:[1,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,85,89,247,248],condit:[4,21,129,180,188,208,215,225,227,266,274,275],condition:[56,208,225,226,277],conduct:[129,133],conf:263,conf_export_tgt:130,conf_fcb_dst:130,conf_fcb_src:130,conf_file_dst:130,conf_file_src:130,conf_get_valu:130,conf_handl:130,conf_init:233,conf_int8:130,conf_load:130,conf_regist:[130,227],conf_sav:130,conf_save_on:130,conf_set_valu:130,conf_str_from_valu:130,conf_value_set:130,confidenti:23,config:[1,7,14,33,51,62,63,65,79,81,82,83,132,136,152,154,158,161,164,171,193,225,226,233,237,245,274,275,277],config_:208,config__sensor:208,config_bno055_sensor:[208,279],config_cli:130,config_fcb:[130,225],config_fcb_flash_area:[225,226],config_lis2dh12_sensor:208,config_newtmgr:[51,237],config_nff:[130,153,225],config_pkg_init:226,config_test_al:233,config_test_handl:227,config_test_insert:[227,228],configur:[6,7,9,14,20,21,26,27,32,33,51,56,58,59,60,62,63,87,91,93,94,95,97,129,131,133,135,153,174,176,180,182,183,187,188,191,193,194,195,210,211,213,223,239,242,245,248,252,255,258,261,262,263,264,270,275,277,280,281,283,285,288,289],configuraton:152,confirm:[8,14,21,28,72,129,223,240,263,284,287],confirmbe9699809a049:72,conflict:[62,225,269],confluenc:10,confus:[268,275],congratul:[7,236,249,273,274,275],conjunct:[32,211],conn:[14,28,29,31,65,66,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,240,251,253,254,284,285,287],conn_handl:[21,249,250,251,273,275],conn_interval_max:30,conn_interval_min:30,conn_itvl:[31,249],conn_lat:[31,249],conn_mod:251,conn_profil:[66,67,68,69,70,71,72,73,74,75,76,77,78],conn_upd:251,connect:[4,7,8,9,12,16,21,22,23,25,27,29,30,32,39,43,44,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,97,131,133,134,135,182,187,188,191,192,223,236,239,247,248,249,250,251,253,254,256,273,274,283,286],connect_don:267,connectable_mod:248,connection_profil:72,connectionless:28,connector:[4,237,246,258,261,263,287],connextra:14,connintervalmax:30,connintervalmin:30,connstr:[14,67,240,284,285,287],conntyp:14,consecut:98,consequ:[21,129,223],conserv:[9,90,97],consid:[22,63,90,93,99,143,188,227,252,268],consider:227,consist:[1,22,32,62,99,100,129,130,133,135,163,180,191,223,225,226,232,252],consol:[1,7,8,12,14,27,56,62,97,102,130,138,155,156,157,162,165,172,194,206,219,226,239,245,246,249,253,254,256,266,274,275,285],console_append_char_cb:131,console_blocking_mod:131,console_compat:131,console_echo:131,console_handle_char:131,console_init:131,console_input:131,console_is_init:131,console_is_midlin:131,console_max_input_len:131,console_non_blocking_mod:131,console_out:131,console_pkg_init:226,console_printf:[14,21,27,131,154,155,156,157,161,162,164,165,169,172,227,273,274,275,281],console_prompt:274,console_read:131,console_rtt:[131,281,288],console_rx_cb:131,console_set_completion_cb:131,console_set_queu:131,console_tick:[131,274],console_uart:[131,281,288],console_uart_baud:131,console_uart_dev:131,console_uart_flow_control:131,console_uart_tx_buf_s:131,console_writ:[131,227],consolid:180,consortium:133,constant:[14,191],constantli:[248,267,275,291],constitu:[44,180],constrain:[9,56,134,264],constraint:255,construct:[11,14,90,99],consult:[153,182],consum:[88,99,194],consumpt:23,contact:[95,96,236],contain:[1,3,7,11,14,30,32,35,51,56,62,85,90,91,94,96,97,99,100,101,129,131,133,135,138,141,154,157,158,161,164,167,168,169,171,177,180,183,187,194,196,198,199,200,211,219,223,224,226,227,230,232,235,245,246,248,250,252,253,254,263,266,268,269,277,291],content:[12,14,50,62,81,90,94,129,141,142,143,155,156,157,162,165,172,180,193,200,223,233,236,242,248,252,253,254,261,263,266,269,270,277,279],context:[14,56,78,86,87,88,93,100,131,135,140,191,193,215,217,226,237,239,251,257],contigu:[90,129,141,180],continu:[6,14,94,99,130,180,215,223,237,239,241,242,243,246,255,256,261,267,275,278,279,280,281,283,285,286,288],contrast:226,contribut:[13,23,58,59,60,81,82,83,244,266,283],contributor:[182,274,275],control:[8,9,14,19,20,21,22,23,24,26,27,30,32,56,67,97,131,135,141,161,174,182,184,191,194,206,209,215,226,245,259,261,268,269,274,275,280],contruct:249,convei:90,conveni:[12,21,90,130,172,180,199,227],convent:[263,266,277,281],convers:[102,135,250],convert:[1,8,21,72,85,87,90,101,130,135,175,177,178,180,191,200,226,250,252,274,275],cooper:14,coordin:[276,278],copi:[1,4,46,50,51,63,81,83,90,95,96,129,141,180,200,208,223,224,240,248,251,255,274,275,279,281,288,289],copy_don:129,copyright:[4,255,261,274,275,281,288,289],core:[1,6,7,12,22,30,33,38,39,44,49,51,52,54,56,62,63,72,89,94,96,98,130,133,135,153,182,184,223,224,236,242,245,246,247,248,249,255,256,257,258,259,260,261,262,263,266,267,268,269,274,275,276,277,278,281,283,284,285,286,287,288,289,291],core_cminstr:259,core_cmx:14,core_o:[14,131],core_path:62,coreconvert:72,coredownload:72,coredump:[7,183],coredump_flash_area:226,coreeras:72,corelist:72,corner:261,corp:[2,255],correct:[1,2,4,42,91,94,101,129,174,223,226,242,246,259,260,261,263,266,275,277],correctli:[2,14,90,241,246,255,259,266,275,276],correspo:252,correspond:[12,21,87,90,91,94,129,163,176,180,181,206,207,248,250,253,254,269,275],corrupt:[91,168,180],corrupt_block_test:266,corrupt_scratch_test:266,cortex:[4,102,258,260,263,267,275,281],cortex_m0:62,cortex_m4:[62,94,258,259,260,261,262,263,281],cortex_m:255,cost:9,could:[14,21,90,99,180,198,250,274],couldn:[227,248,274],count:[14,56,82,90,99,100,129,130,180],counter:[86,90,224,263],countri:22,coupl:[1,14,261,274,275],cours:[14,273],cover:[8,62,135,180,226,235,242,252],cpha:191,cpol:191,cpptool:12,cpu:[14,86,94,96,135,182,183,190,242,255,259],cputim:[14,25,87,277,281],cputime_geq:87,cputime_gt:87,cputime_leq:87,cputime_lt:87,crank:275,crash:[65,79,81,82,83,98,129,132,192,194,237],crash_test:[7,132,237],crash_test_newtmgr:237,crc16:180,crc:[7,131,137,274],creat:[1,2,3,4,5,6,8,10,11,12,14,23,28,33,35,40,42,44,45,46,47,48,51,56,58,59,60,62,63,67,72,81,82,83,88,91,92,93,96,98,99,100,102,131,135,144,158,160,161,162,167,170,171,173,174,177,180,206,207,209,210,212,213,217,223,224,225,226,232,234,239,241,242,247,252,256,257,268,270,273,279,280,283,286,291],create_arduino_blinki:12,create_mbuf_pool:90,create_path:160,creation:[48,135,236,263,275],creator:[207,208,209,210,212,276,277,279,281],credenti:270,criteria:21,critic:3,cross:[5,6,7,9,97],crt0:49,crti:49,crtn:49,crw:8,crypto:[7,14,255,258,260,262,267,284,285,287],crypto_mbedtl:223,cryptograph:[23,129],cryptographi:23,crystal:26,csrk:28,css:243,cssv6:30,csw:[78,274,284,287],ctlr_name:67,ctlr_path:67,ctrl:[12,245,274,277,288],ctxt:[250,251,273,275],cur_ind:251,cur_notifi:251,curi:[249,251],curiou:[3,243],curl:[11,59],curn:[249,251],curr:267,currantlab:[82,83],current:[11,14,25,28,32,40,41,42,45,46,47,51,52,58,59,60,61,72,82,83,84,86,87,90,91,92,93,94,98,99,100,101,129,130,131,135,136,137,138,140,141,152,153,158,159,160,161,171,173,180,187,188,191,193,196,207,215,224,225,227,230,234,236,237,240,242,253,255,256,259,261,263,264,268,269,271,277,281],custom:[14,24,72,91,163,181,183,206,226],cvs:[255,261,281,288,289],cwd:12,cycl:[20,22,32,180],cylind:275,daemon:[2,246],dai:[101,215],dap:[2,255,258,262],darwin10:[255,281,288,289],darwin:6,data:[9,14,15,21,22,28,29,31,32,44,49,65,70,81,82,83,85,87,90,91,93,94,97,100,129,130,131,133,134,142,143,144,145,146,147,151,154,158,160,161,163,164,169,170,171,172,173,176,179,189,191,194,205,208,210,213,214,218,220,223,226,242,250,251,253,254,273,274,275,283,289,291],data_len:274,data_mod:191,data_ord:191,databas:29,databit:194,databuf:[90,281],datagram:218,datalen:28,datasheet:94,date:[11,69,152,263,266,274],datetim:[7,65,79,81,82,83,131,132,134,237,266],datetime_pars:266,daunt:248,daylight:101,dbm:[22,28,30],ddress:26,deactiv:223,deal:[90,93,94,135],deb:[58,61,81,84],debian:[4,6],debug:[1,2,4,5,6,7,14,40,44,48,51,56,58,59,60,63,95,209,210,225,236,240,245,246,255,257,258,259,260,261,262,267,274,275,276,277,278,281,284,285,287,288,289],debug_arduino_blinki:12,debug_arduinoblinki:12,debugg:[5,14,39,40,56,58,59,60,62,192,255,258,259,261,262,263,287,288,289],dec:[49,223],decemb:23,decid:[56,86,97,242,274],decim:[23,188],decis:188,declar:[12,92,100,130,184,193,208,220,229,231,239,266,268,279,281],decod:[215,218],decompress:253,dedic:[88,94,97,215,223,237,239,250,288,289],deep:183,deeper:[90,236,263,275],def:[7,208,225,226,275,281],defaultdevic:83,defin:[1,6,14,20,21,22,25,28,29,30,32,35,43,44,48,51,54,62,85,87,88,90,91,93,98,100,129,130,132,134,135,177,178,183,184,186,187,191,206,207,208,210,211,212,213,214,215,221,223,225,226,227,228,230,232,236,239,242,244,246,248,250,256,263,266,268,269,273,274,275,276,277,280,281,284,286,287,288],defininig:32,defininit:199,definit:[1,12,30,36,38,43,51,62,85,90,91,94,129,215,224,232,246,250,252,268,273,274,275],defint:[90,225],del:28,delai:[27,87,101,193,241,242,263],deleg:223,delet:[1,6,10,12,28,36,40,46,50,51,56,58,59,60,62,63,154,170,174,180,241,264,273,279,281],delimit:51,deliv:[85,152],delta:[56,82,236],demo:273,demonstr:[21,27,90,160,167,172,263,277,281],denot:90,dep:[1,51,56,62,63,94,131,136,137,152,153,181,182,206,208,215,224,226,237,239,245,257,266,274,275,276,281],depend:[1,4,6,8,14,21,23,25,28,40,42,50,51,53,56,58,59,60,63,67,85,90,96,102,129,131,152,153,161,180,187,188,191,201,206,208,215,224,226,227,230,232,234,242,245,255,266,267,268,271,274,275,277,284,286,287],depict:182,deploi:[44,223,257],deploy:32,deprec:226,depth:[4,96],dequeu:[88,239],deriv:[21,180],desc:[177,178,251],descend:[129,170],describ:[1,2,7,10,11,12,25,29,34,64,91,93,94,95,97,100,129,133,141,147,152,174,180,187,189,191,200,205,207,208,209,215,223,225,226,232,236,237,243,245,247,252,253,259,262,263,268,274,275,276,277,279,283],descript:[1,7,10,14,20,28,29,31,56,62,90,94,95,96,130,137,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,167,168,169,170,171,172,173,177,178,198,199,201,202,203,204,205,206,207,208,211,212,216,217,218,219,220,221,222,224,225,226,227,228,229,230,231,236,263,264,266,268,269,274,275,289],descriptor:[17,18,28,29,62,161,162,175,177,178,180,250],design:[22,23,24,56,97,98,101,129,174,180,215,223,234,242,252,266],desir:[87,90,99,193,208,266,271],desktop:10,destin:[4,14,32,90,157,164,167,172,180,188,199,206],detail:[1,10,12,14,22,23,30,56,93,100,129,130,153,174,188,191,207,208,209,211,212,223,236,237,245,248,250,252,253,254,255,263,268,281,288,289],detect:[21,56,91,141,153,174,177,178,192,218,225,226,246],determin:[21,88,90,91,100,129,141,180,193,215,223,226,235,248,251,268,279],determinist:14,dev:[1,2,3,4,7,8,10,11,12,14,49,62,67,83,131,135,136,208,209,226,235,236,240,241,245,246,249,255,257,258,259,260,261,262,263,267,268,269,270,274,275,276,277,279,281,284,285,287,291],dev_found:246,develop:[3,5,6,7,8,9,13,14,21,56,60,62,83,90,91,93,95,96,97,100,133,135,210,213,215,226,235,240,242,246,247,250,253,255,256,258,261,262,268,269,273,274,275,280,283,287,288,289,291],devic:[3,4,8,9,15,20,21,22,23,26,29,30,32,33,44,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,97,129,131,133,134,135,136,137,153,175,182,184,187,188,191,210,211,212,213,223,224,225,226,237,244,245,247,248,249,250,252,253,254,255,257,258,259,260,261,262,263,267,273,275,280,281,284,285,286,287,288,289,291],device_id:184,deviceaddr:24,deviceaddrtyp:24,dflt:200,dhcp:267,dhkei:21,diag:194,diagram:[133,242,259,261],dialog:[12,60,289],dictat:[11,63],did:[14,223],diff:274,differ:[4,6,7,8,11,12,21,25,28,31,46,56,58,81,85,90,92,93,94,95,96,97,100,135,174,182,187,194,208,223,224,225,226,229,237,239,240,242,245,246,257,258,259,261,264,266,267,268,269,271,273,277,279,281,287,289],differenti:[90,268],difficult:[22,96,129,225],dig:[7,247],digit:[23,135,187,275],dioxid:273,dir:[28,137,153,155,156,157,162,163,165],direct:[10,21,28,188,215,224,269],direct_addr:[253,254],directli:[7,11,15,19,37,153,193,194,206,223,226,253,255,264,266,267,276,279],directori:[1,4,6,7,8,10,11,12,35,36,38,42,44,46,51,56,58,60,61,81,83,84,89,94,95,96,130,135,137,155,156,157,160,161,162,165,166,167,168,170,172,173,190,192,232,236,241,245,246,255,256,258,259,260,261,262,266,267,268,269,274,275,276,277,281,283,284,286,287,289,291],dirent:[137,155,156,157,162,163,165],dirnam:[155,156,157,162,165],dirti:236,disabl:[6,14,21,23,25,31,87,131,152,180,187,191,194,206,208,209,215,223,225,226,237,251,264,267,276,277,278,281,288],disable_auto_eras:136,disallow:[21,174],disbl:215,disc_mod:251,discard:[180,267],disciplin:246,disclaim:[7,11,56,245],disconnec:28,disconnect:[28,251],discontigu:129,discov:[14,23,28,29,246],discover:[14,28,30,134,213,248,280],discoverable_mod:248,discoveri:[14,29,133,135,137,246,251,256],discret:[174,175],discuss:[10,90,95,208,223,248,277],disjoint:21,disk:[7,129,141,153,154,168,170,174,175],disk_nam:153,disk_op:137,disk_regist:[137,153],dispatch:[93,226,239],displai:[1,6,14,23,28,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,62,63,65,67,70,72,73,74,77,78,81,82,83,135,182,226,246,261,263,274,276,278,283,284,287],displayonli:28,displayyesno:28,dist:[58,81],distanc:[22,224],distinct:23,distinguish:14,distribut:[1,4,6,21,22,28,56,102,129,268,274,275],distro:6,div0:68,dive:90,divid:[19,21,68,130,132,174,175,223],dle:28,dll:[258,260,263,275],dm00063382:236,dma:135,dndebug:51,dnrf52:94,do_task:224,doc:[4,6,7,10,24,34,64,243,255,256,259],docker:[3,7,255,291],dockertest:2,document:[1,4,8,12,15,19,21,24,26,60,63,65,94,98,102,138,152,153,163,181,182,184,223,232,236,240,242,247,250,252,253,254,255,258,260,266,267,268,277,281,284,285,288,289],doe:[7,14,21,23,36,51,62,67,72,88,90,91,93,94,95,100,101,129,131,133,135,141,158,162,170,171,174,175,177,180,188,191,196,206,208,209,211,221,224,225,226,237,239,240,242,245,248,255,258,259,260,262,263,264,270,281,286],doesn:[8,14,21,33,98,129,137,158,170,171,223,227,241,242,245,246,248],doing:[14,89,101,135,242,250,257,274],domain:2,don:[1,10,14,32,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,88,90,130,138,141,164,172,236,250,252,253,254,268,274,275],done:[6,7,8,14,24,26,56,82,92,93,94,101,129,131,141,142,161,162,176,195,196,212,228,229,231,236,237,240,242,246,252,253,254,255,258,259,260,263,267,275,281,288,289],dont:288,doorbel:56,dop:153,doubl:[2,200,261],doubli:180,doubt:[14,252],down:[1,12,62,81,83,187,223,237,259,261,287],downgrad:[6,7],download:[1,2,4,7,10,12,14,30,40,42,43,56,59,60,61,71,72,82,83,84,153,196,243,245,246,255,258,259,260,261,262,266,267,270,274,281,283,284,285,287,288,289],doxygen:[4,7,89,130,255,259],doxygengroup:[89,130],dpidr:262,dpkg:[58,61,81,84],drag:21,drain:25,draw:25,drive:[9,14,62,101,135,188],driver:[7,56,136,137,153,182,186,187,189,191,193,194,208,210,212,224,245,255,258,259,260,261,262,267,277,281,287,288],drop:[12,14,27,180,194,259,261,287],dsc:250,dsimmon:274,dsize:90,dst:[14,46,51,71,90,172,185,199],dsym:[56,62],dtest:51,due:[14,21,91,129,136,141,152,192,255,259,261],dummi:180,dump:[14,130,288],dumpreg:277,duplex:22,duplic:[28,90],durat:[14,20,28,31,101,250,277],duration_m:[253,254],dure:[14,21,23,72,86,94,98,100,129,131,162,180,197,208,223,226,232,242,245,250,257,276,279],duti:[22,32],dwarf:62,dylib:4,dynam:[89,91],e407:[261,287],e407_:261,e407_devboard:[54,261,287],e407_devboard_download:261,e407_sch:287,e761d2af:[273,275],e_gatt:252,eabi:[4,7,12,94,102,255,281,288,289],each:[1,2,10,11,12,14,20,21,22,23,24,29,33,44,49,50,51,62,63,65,67,74,78,88,90,91,93,94,99,101,129,131,135,155,156,157,162,163,165,167,174,175,176,180,182,187,206,207,209,210,211,212,213,215,219,220,223,224,226,237,239,242,250,251,252,253,254,255,266,268,277,279,280,281,291],ead:153,eager:3,earlier:[10,31,58,59,60,81,82,83,170,250,253,254,273,274,275,288],eas:136,easi:[1,2,3,8,9,135,182,188,224,225,227,243,258,275,276],easier:[14,25,94,274],easiest:274,easili:[9,172,210,226,281],east:101,eavesdropp:20,ecdsa256:129,ecdsa:129,echo:[12,14,61,65,79,81,82,83,84,131,132,134,237,267,274,284,285,287],echocommand:12,eclips:12,ectabl:[253,254],edbg:[2,255],eddyston:[28,256],eddystone_url:[28,30],edg:187,edit:[7,95,152,236,241,263,264,268,279],editign:243,editor:[60,62,236,241,259],ediv:28,edr:[21,30,246],edu:[258,288],ee02:263,eeirili:273,eeprom:136,effect:[99,101,130,153,174,175],effici:[14,22,32,90,91,180,255],eid:253,eight:[133,169],einval:87,eir:30,eir_len:246,either:[1,4,6,11,14,22,28,30,31,58,60,62,81,85,86,88,90,91,100,130,131,132,138,141,167,187,188,191,192,223,226,227,230,231,237,253,254,263,274,275,283],elaps:[21,87,101],electron:291,element:[40,54,56,58,59,60,90,91,100,129,130,140,141,142,143,146,148,149,180,200,215,242],elev:92,elf:[7,12,35,39,49,56,62,72,223,236,237,245,246,249,255,257,258,259,260,261,262,263,266,267,274,275,277,281,284,285,287,288,289],elfifi:72,elicit:223,els:[24,86,98,129,155,156,157,162,165,180,209,223,273,274,275,288],elsewher:[247,250,268],emac:274,email:[3,235,291],emb:136,embed:[1,3,4,12,14,40,56,58,59,60,102,129,174,191,235,236,255,261,281,288,289],emit:[56,62],emploi:22,empti:[51,90,100,141,168,180,226,230,244,252,266],emptiv:9,emul:[263,267,279],enabl:[1,8,9,14,25,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,63,74,77,78,79,88,94,130,131,132,133,135,136,152,182,187,191,195,206,208,209,210,212,213,214,220,225,226,236,239,240,245,248,251,256,265,272,273,274,275,279,283,286,288,289,291],enc:[199,201,202,204],enc_chang:251,encapsul:22,encod:[7,52,131,133,134,201,202,203,204,213,215,219,263,266,276,280,281],encoding_cborattr:223,encoding_tinycbor:223,encompass:[15,21],encount:[7,14,21,58,90,151,180,242],encourag:135,encrypt:[21,23,28,31,174,249,251],encrypt_connect:21,end:[9,21,29,31,56,90,129,141,159,169,171,180,188,205,226,234,244,245,263,274],endian:[24,62,90,129,191,263],endif:[220,224,226,233,234,257,266,274,275,281],energi:[9,22,23,90,256,291],english:129,enjoi:275,enough:[56,90,97,129,157,196,199,274],enqueu:[90,193],ensur:[11,12,22,60,90,94,98,101,102,157,182,188,223,224,225,226,237,239,240,242,246,250,256,267,268,269,277,280,283,286],entail:223,enter:[12,23,48,94,215,221,222,224,242,255,257,259,277,281],entir:[2,14,90,91,94,129,174,175,180,242,252,274],entireti:172,entiti:[44,247],entri:[14,21,23,73,130,141,142,143,146,149,151,155,156,157,162,165,172,174,175,180,205,209,215,220,223,252,278],enumer:[129,184,192,207],environ:[3,4,9,12,14,56,59,60,62,83,97,102,135,191,234,246,285],eof:[58,81],ephemer:253,epoch:101,equal:[14,30,73,90,180,206,225,226,227],equat:30,equival:[47,62,136,161,182,275,291],eras:[14,72,129,136,137,141,150,174,175,178,180,185,255,259,260,261,263,275],erase_sector:261,err:[98,160,205,209,218,219,224,273,275],error:[1,2,4,6,7,21,22,27,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,81,83,87,90,92,93,94,98,99,136,137,154,155,156,157,158,160,161,162,164,165,167,168,169,170,171,172,173,174,177,178,179,183,187,188,191,193,194,209,223,226,248,250,251,252,255,258,259,261,262,263,266,267,269,273,274,275,276,279,281,287],error_rsp_rx:[77,237],error_rsp_tx:[77,237],error_stat:224,escap:[267,281,288],especi:[14,101],essenti:[44,62,226,242],establish:[21,28,79,237,239,248,249,251,258,260,263,275],estim:90,etc:[1,14,22,25,27,37,44,58,81,90,91,93,96,97,129,133,135,182,183,194,198,242,244,251,274,275],ethernet:[135,182],etyp:275,eui:263,eul:277,euler:277,ev_arg:[85,88,98,131],ev_cb:[85,88,90,131,239],ev_queu:88,eval:[260,275],evalu:[12,87,101,225,226,260,263,268,275],evalut:101,even:[4,10,14,87,90,97,129,152,180,194,200,212,223,273,275,279],event:[14,21,25,26,28,85,90,93,98,100,131,135,206,212,215,217,224,226,237,242,246,248,249,253,254,273,274,275,279,281,291],event_q:275,event_queu:131,eventq:[90,273,274],eventq_exampl:239,eventu:[4,100,101,180],ever:[90,91,129,141],everi:[1,33,62,98,99,100,135,151,180,191,251,253,255,257,269,274,281],everyon:[10,242],everyth:[1,94,98,223,242,266,267,274],evq:[85,88,90,217],evq_own:88,evq_task:88,exact:[97,129,187,193,224],exactli:[90,94,99,158,171,226],examin:[193,248,250,285],exampl:[1,2,3,6,7,9,12,14,23,24,25,26,31,32,56,58,59,60,61,62,63,65,81,83,84,90,91,92,94,95,97,98,99,100,101,102,129,131,134,153,174,175,181,184,187,188,189,206,208,209,210,211,215,220,223,224,235,236,237,242,244,246,247,251,255,257,259,263,266,267,268,269,270,274,276,277,278,279,280,281,284,285,287,288,289,291],example1:90,example2:90,exce:[180,216,220,288],exceed:21,except:[7,52,88,129,224,248,253,254,274,275],excerpt:[131,207,208,209,220,225,226,250,252,279],exchang:[15,22,23,28,29],excit:[7,236,245],exclud:[52,129,223,277],exclus:[23,92,99,207],exe:[12,60,61,83,84],exec:14,exec_write_req_rx:[77,237],exec_write_req_tx:[77,237],exec_write_rsp_rx:[77,237],exec_write_rsp_tx:[77,237],execut:[1,2,7,11,12,14,31,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,68,81,83,86,88,91,93,94,97,100,102,134,137,138,140,191,196,217,226,230,232,233,237,242,248,250,251,252,253,254,257,266,274],exhaust:[21,98,141,180],exisit:28,exist:[2,14,21,25,30,42,47,50,51,72,95,141,147,152,158,160,161,162,167,168,170,171,173,174,177,178,180,187,207,209,214,226,229,241,249,255,258,259,260,261,262,267,269,274,275,276,278,279,280,281,283,284,286,287,288,289,291],exit:[8,81,258,260,263,274,275,288],expect:[6,14,21,44,62,85,93,98,130,131,135,223,227,228,229,230,231,242,246,253,254,263,266],experi:[14,23,264,277],experienc:14,experiment:100,expertis:268,expir:[85,87,88,193,195,239],expire_msec:195,expire_sec:195,expiri:[85,193],explain:[4,12,14,99,237,244,245,246,253,254,256,267,269,283,286,291],explan:[35,36,38,39,40,44,45,46,47,48,49,51,52,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,153,248],explanatori:[31,95,253,254],explic:277,explicit:266,explicitli:248,explor:[129,223,250,283],expos:[1,14,15,22,93,134,174,175,176,210,215,226,247,252],express:[24,169,226,227,252,274,275],ext:[12,14,259],ext_bynam:212,ext_bytyp:212,extend:[14,21,30,31,90,91,275,278,280],extended_dur:28,extended_period:28,extens:[14,22,31,138,263],extent:[255,281,288,289],extern:[12,30,41,94,98,135,136,176,182,187,206,224,232,268,269,275,288,289],extra:[14,39,43,48,90,135,153,191,240,243,248,281,288],extra_gdb_cmd:62,extract:[4,11,59,60,61,83,84,191,236,258],extrajtagcmd:[39,43,48],extrem:9,eyes:227,f401re:54,f411a55d7a5f54eb8880d380bf47521d8c41ed77fd0a7bd5373b0ae87ddabd42:284,f4discoveri:259,f_activ:141,f_active_id:141,f_align:141,f_close:[163,181],f_closedir:[163,181],f_dirent_is_dir:[163,181],f_dirent_nam:[163,181],f_filelen:[163,181],f_getpo:[163,181],f_magic:141,f_mkdir:[163,181],f_mtx:141,f_name:[163,181],f_oldest:141,f_open:[163,181],f_opendir:[163,181],f_read:[163,181],f_readdir:[163,181],f_renam:[163,181],f_scratch:141,f_scratch_cnt:141,f_sector:141,f_sector_cnt:141,f_seek:[163,181],f_unlink:[163,181],f_version:141,f_write:[163,181],face:223,facil:[20,102,232,239],fact:[14,136,268],factor:9,factori:262,fail:[14,21,43,58,81,90,98,141,144,161,162,174,180,227,228,229,231,245,251,258,259,262,263,266,268,275,288],fail_msg:227,failov:223,failur:[21,85,90,98,100,101,129,137,142,143,144,146,147,149,150,151,153,154,155,157,158,160,161,164,167,168,169,170,171,172,173,177,178,179,183,187,188,191,193,194,195,216,218,219,220,227,233,234,250,251,252,266],fair:90,fairli:[25,56,62,90,99],fall:[97,102,187,291],fallback:28,fals:[91,223,225,227],famili:[4,102,136,152,246],familiar:[3,12,226,236,237,244,245,247,274,275,281,288,291],fanci:100,faq:[11,13],far:[245,281],fashion:[93,141,180,236],fast:[14,274],fat2n:[7,62],fatf:[7,137,152,153],fault:131,favorit:[236,241],fcb:[7,130,142,143,144,145,146,147,148,149,150,151,206],fcb_append:[141,143,144],fcb_append_finish:[141,142],fcb_append_to_scratch:142,fcb_entri:[141,142,143,146,151],fcb_err_nospac:142,fcb_err_novar:146,fcb_getnext:141,fcb_init:141,fcb_log:206,fcb_rotat:[141,142],fcb_walk:141,fcb_walk_cb:151,fda_id:180,fe80:288,fe_area:[141,146,151],fe_data_:141,fe_data_len:[141,146,151],fe_data_off:[141,146,151],fe_elem_:141,fe_elem_off:141,feat:275,feather:14,featur:[1,3,11,14,20,21,31,91,97,100,141,153,174,215,223,226,235,248,263,277,283],feedback:[236,241,256,275],feel:3,femal:287,fetch:[1,12,14,41,58,81,237,239,240,246,256,268,269,274,283,286],few:[1,6,14,15,26,32,56,62,91,94,95,224,245,250,253,263,266,275,291],ffconf:152,ffffffff:261,ffs2nativ:[7,62],fhss:22,ficr:24,fictiti:[268,269],fie_child_list:180,field:[14,21,28,85,86,90,94,129,131,176,188,201,203,207,208,209,215,220,223,224,226,248,250,252,253,254,268,269,277,279],fifo:141,figur:[90,129,130,141],file:[1,2,4,6,7,10,11,12,35,37,38,42,44,47,49,51,56,58,59,60,61,62,65,71,72,81,82,83,84,95,96,97,102,129,130,131,135,174,184,187,189,196,206,207,208,211,212,215,223,225,226,230,232,236,237,239,241,243,245,246,252,255,257,258,259,261,262,263,264,266,267,268,270,274,275,277,285,289],file_nam:62,filenam:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,71,72,94,152,157,161,163,167,170,174,180,223,246,274],filesystem:[56,130,152,196],fill:[10,49,96,100,141,142,144,146,147,183,199,200,245,250,253,254,266,274,275],filter:[2,14,23,28,31,73,255],filter_dupl:14,filter_polici:14,find:[1,2,3,14,21,29,35,56,62,89,90,95,97,130,147,182,212,224,225,229,235,236,245,246,255,258,259,262,267,281,284,287,288,289,291],find_info_req_rx:[77,237],find_info_req_tx:[77,237],find_info_rsp_rx:[77,237],find_info_rsp_tx:[77,237],find_type_value_req_rx:[77,237],find_type_value_req_tx:77,find_type_value_rsp_rx:77,find_type_value_rsp_tx:77,fine:[9,14,253,254],finish:[4,99,100,142,180,194,263,274],fip:22,fire:[85,193,195,242,249,281],firmwar:[129,153,237,258,260,263,267,274,275,288,289],first:[2,3,6,8,12,14,22,23,30,34,58,59,60,61,64,83,84,85,88,90,91,92,94,100,101,102,129,130,141,169,174,175,180,181,184,191,198,200,212,215,223,226,236,237,242,244,247,248,249,250,252,253,254,256,257,263,267,273,274,275,277,281,283,286,291],fit:[4,90,101,172,180,248,249,264],five:[21,22,23,158,171,237],fix:[6,11,14,91,101,129,270],fl_area:142,fl_data_off:142,flag:[1,6,12,14,28,30,56,58,59,60,62,63,65,81,82,83,90,95,100,129,161,223,240,246,250,252,273,274,277,284,287],flash0:153,flash:[1,9,14,40,44,49,56,58,59,60,62,96,97,130,135,142,143,147,153,175,177,178,181,182,186,187,189,196,206,223,226,237,255,259,260,261,263,264,275],flash_area:[141,151],flash_area_bootload:[94,129,177,178,225,226],flash_area_image_0:[94,129,177,178],flash_area_image_1:[94,129,177,178,226],flash_area_image_scratch:[94,129,177,178,225],flash_area_nff:[177,178,225,226],flash_area_noexist:225,flash_area_read:[141,146,151],flash_area_reboot_log:[225,226],flash_area_to_nffs_desc:[177,178],flash_area_writ:[141,142],flash_area_x:141,flash_id:[136,183,185],flash_map:[7,130,177,178,183,225,226],flash_map_init:226,flash_own:[225,226],flash_spi_chip_select:187,flash_test:[7,131],flat:[90,200,206],flavor:255,flexibl:[90,97,235,248,268,269],flg:274,flicker:14,flight:90,float_us:276,flood:32,flow:[22,131,194,246,253,254],flow_ctl:194,fly:191,fmt:131,focu:242,folder:[4,10,12,34,56,60,64,241,258],follow:[1,2,3,4,6,7,8,11,12,14,20,21,22,24,25,27,28,30,31,32,33,38,39,44,51,52,56,58,59,60,61,62,65,67,68,72,73,74,78,79,81,82,83,84,90,92,94,95,97,99,100,101,102,129,131,132,134,135,136,137,141,153,161,168,169,170,174,175,176,180,181,182,188,190,191,201,203,206,207,208,209,210,212,213,223,224,225,226,227,228,229,230,231,232,236,237,239,240,241,242,245,246,247,248,250,252,253,254,255,256,257,258,259,260,261,262,263,266,267,268,269,270,273,274,275,276,277,278,279,280,281,283,284,286,287],foo:130,foo_callout:130,foo_conf_export:130,foo_conf_set:130,foo_val:130,footer:[129,257],footprint:[9,133,135],fop:166,fopen:161,forc:[42,50,53,90,223],forev:[88,92,99,100,161,162,234],forgeri:23,forget:[81,161,162,236,273,274,275],forgot:274,fork:10,form:[1,20,23,24,27,67,90,100,180,226,250,251,253,263,266,268],formal:[7,21],format:[8,30,51,67,69,72,73,90,131,133,152,153,174,177,178,198,199,200,207,224,226,227,230,246,253,257,267,268,269,277,284,287],former:180,formula:[3,61,84],forth:[130,200],fortun:56,forver:28,forward:[14,101,248],found:[1,14,21,34,56,64,91,94,149,174,180,200,246,251,252,253,255,259,261,287],foundat:[4,22,32,133,255,261,268,274,275,281,288,289],four:[20,23,48,129,169,173],fraction:[101,266],frame:[215,218,219,242,263],framerwork:132,framework:[22,29,98,133,207,213,214,232,233,246,276,277,278,281,282,283],frdm:54,free:[2,4,74,89,90,91,141,180,216,220,223,249,251,255,261,281,285,288,289],freebsd:102,freed:[90,91,180],freedom:[251,253,254],freq_hz:193,frequenc:[14,22,25,87,94,98,101,135,182,190,193,195,224,242,263],frequent:[10,14,20,22,23,98,253,254,281],freshli:90,friend:32,friendli:[14,135],from:[1,4,6,7,8,9,10,11,12,14,20,21,23,24,27,28,31,32,33,36,37,39,40,42,44,45,46,47,48,50,51,52,56,57,61,62,63,65,66,67,69,70,71,72,73,74,77,78,80,84,85,86,87,88,89,90,91,93,94,95,96,97,100,101,102,129,130,132,133,134,136,137,138,140,141,147,153,154,155,156,157,161,162,163,164,165,167,169,170,172,177,178,180,181,183,187,188,191,193,194,196,199,200,206,207,208,209,210,211,212,213,214,215,217,218,223,224,225,226,227,228,229,231,232,234,236,237,239,240,242,244,245,246,247,250,251,252,253,254,255,256,257,258,259,260,261,262,263,266,267,268,269,274,275,277,281,283,284,285,287,288,289],front:[90,180],fs_access_append:161,fs_access_read:[154,161,164,169],fs_access_trunc:[158,161,167,170,171],fs_access_writ:[158,161,167,170,171],fs_cli:7,fs_cli_init:216,fs_close:[158,161,164,167,169,170,171,172,173],fs_closedir:[137,162],fs_dir:[153,155,156,157,162,163,165],fs_dirent:[7,153,155,156,157,162,163,165],fs_dirent_is_dir:[155,157,162,165],fs_dirent_nam:[137,155,156,162,165],fs_eaccess:168,fs_ealreadi:173,fs_ecorrupt:[168,177,178],fs_eempti:168,fs_eexist:[166,168],fs_eful:168,fs_ehw:168,fs_einval:168,fs_enoent:[137,155,156,157,162,165,167,168],fs_enomem:168,fs_eo:168,fs_eoffset:168,fs_eok:168,fs_eunexp:168,fs_euninit:168,fs_fcb:223,fs_file:[7,153,154,158,159,161,163,164,167,169,170,171],fs_filelen:171,fs_if:[163,181],fs_ls_cmd:216,fs_ls_struct:216,fs_mkdir:[7,173],fs_mount:7,fs_name:153,fs_nmgr:7,fs_op:[166,181],fs_open:[154,158,164,167,169,170,171,172,173],fs_opendir:[137,155,156,157,165],fs_read:[154,161,169,172],fs_readdir:[137,155,156,157,162],fs_regist:181,fs_unlink:160,fs_write:[158,167,173],fssl:[11,59],fsutil:[7,153],fsutil_r:153,fsutil_w:153,ftdichip:246,fulfil:250,full:[1,7,8,14,21,22,29,31,49,56,94,129,130,136,142,157,161,167,168,180,183,196,206,215,223,225,226,237,241,245,248,251,252,257,274,275,277,281,291],fuller:180,fulli:[9,22,129,174,175,180,223,245,254,268,269,275],fun:[236,274],func:[90,98,100,130,188,193,195],fundament:[1,291],funtion:200,further:[6,94,98,188],furthermor:[93,129,174,175,180,223,242,253,254],fuse:56,futur:[85,90,180,188,207,215,226,263,268,269,270],g_bno055_sensor_driv:209,g_bno055stat:209,g_led_pin:[241,242,257],g_mbuf_buff:90,g_mbuf_mempool:90,g_mbuf_pool:90,g_mystat:224,g_nmgr_shell_transport:218,g_os_run_list:86,g_os_sleep_list:86,g_stats_map_my_stat_sect:224,g_task1_loop:257,gain:[92,99,181,245,275],gap:[19,20,21,22,31,180,247,250,252,274,275,276],garbag:141,gatewai:263,gatt:[14,15,19,22,28,31,32,33,247,250,252,274,275,276],gatt_acc:250,gatt_adc_v:275,gatt_co2_v:273,gatt_co2_val_len:273,gatt_srv:275,gatt_srv_sns_access:275,gatt_svr:[252,273,275,277],gatt_svr_chr_access_gap:[250,252],gatt_svr_chr_access_sec_test:[252,273],gatt_svr_chr_sec_test_rand_uuid:[252,273],gatt_svr_chr_sec_test_static_uuid:[252,273],gatt_svr_chr_writ:[273,275],gatt_svr_register_cb:252,gatt_svr_sns_access:[273,275],gatt_svr_svc:[250,252,273],gatt_svr_svc_adc_uuid:275,gatt_svr_svc_co2_uuid:273,gatt_svr_svc_sec_test_uuid:[252,273],gaussian:22,gavin:59,gc_on_oom_test:266,gc_test:266,gcc:[4,7,58,102],gcc_startup_:94,gcc_startup_myboard:94,gcc_startup_myboard_split:94,gcc_startup_nrf52:[94,258,260,281],gcc_startup_nrf52_split:[258,260,262,263,281],gdb:[4,7,12,39,48,62,63,94,242,245,255,257,258,259,261,262,275,281,288,289],gdb_arduino_blinki:12,gdbmacro:7,gdbpath:12,gdbserver:6,gear:102,gen:[28,31],gen_task:239,gen_task_ev:239,gen_task_prio:239,gen_task_stack:239,gen_task_stack_sz:239,gen_task_str:239,gener:[1,11,14,16,17,18,19,20,21,22,24,28,29,30,32,35,36,44,56,62,63,88,90,91,92,94,100,129,137,174,175,187,200,223,225,228,229,231,236,237,240,241,242,243,245,246,248,249,252,253,254,255,256,257,258,259,260,261,262,263,266,267,268,273,274,277,281,284,287,288,289],get:[2,4,6,7,8,9,10,11,14,24,56,57,59,60,61,62,65,77,80,82,83,84,86,88,90,91,92,93,94,96,97,98,99,100,101,129,130,134,135,141,151,158,161,164,167,172,180,183,187,191,193,200,207,211,213,223,226,227,236,239,241,242,244,246,248,250,252,253,254,255,256,258,259,261,262,263,266,267,273,274,275,280,281,287,291],gettng:264,gfsk:22,ggdb:6,ghz:[22,267],gist:[135,187],gister_li:211,git:[11,56,59,81,82,83,102,255,267,268,269,270],github:[1,7,10,11,34,56,58,59,60,64,81,82,83,102,184,236,255,267,268,269,270,274,275,283],githublogin:270,githubpassword:270,githubusercont:[11,58,59,60,81,82,83],give:[14,56,187,223,236,242,245,253,254,263,268,269,275],given:[12,14,21,43,85,87,88,90,91,97,100,101,129,137,140,146,147,153,183,187,191,193,194,200,207,211,212,242,269],glanc:248,glibc:58,global:[1,30,63,90,91,92,176,206,207,209,224,232,250,274],gmt:101,gnd:[8,263,275,277,287],gnu:[3,4,12,14,39,48,255,259,261,262,281,288,289],goal:[56,102,286],gobjcopi:6,gobjdump:6,gobl:82,goe:[14,62,232,266,274],going:[14,97,223,253,257,274,275],golang:[11,60,83],gone:249,good:[7,9,14,23,56,92,94,98,129,152,223,245,248,254,263,274],googl:[253,283],gopath:[11,58,59,60,61,81,82,83,84],got:[14,273,274,275],govern:[274,275],gpg:[58,81],gpio:[8,14,97,135,189,191,194,239],gpio_ev:239,gpio_l:239,gpl:[4,255,259,261,262,281,288,289],gplv3:[255,261,281,288,289],gpo:182,gpregret:14,grab:89,gracefulli:234,graduat:275,grain:9,grant:92,granular:101,graph:[1,51,63,275],graviti:277,great:[8,22,129,225,241,274,275],greater:[22,30,90,180,225],greatest:[129,180],green:[2,10,12,255,259,260,267,277,284],grid:56,ground:[275,277],group:[2,21,77,132,135,215,224,226,237,263],grow:[54,242],guarante:[14,90,91],guard:93,guid:[7,11,12,19,60,63,65,83,209,210,226,237,239,242,247,252,254,264,266,268,284,287],guinea:243,gyro:277,gyro_rev:277,gyroscop:[207,277],h_mynewt_syscfg_:226,hack:[7,9,12,14,236,241,275],had:[90,93,129,223],hal:[1,7,9,14,49,56,62,87,96,135,136,177,178,181,182,188,191,193,194,209,239,245,255,259,261,275,277,281,291],hal_bsp:[7,14,94,135,186,208,255,258,259,261,274,279],hal_bsp_core_dump:183,hal_bsp_flash_dev:[94,136,183,186],hal_bsp_get_nvic_prior:183,hal_bsp_hw_id:183,hal_bsp_init:[183,208],hal_bsp_max_id_len:183,hal_bsp_mem_dump:183,hal_bsp_power_deep_sleep:183,hal_bsp_power_off:183,hal_bsp_power_on:183,hal_bsp_power_perus:183,hal_bsp_power_sleep:183,hal_bsp_power_st:183,hal_bsp_power_wfi:183,hal_common:[7,245,259,261],hal_debugger_connect:192,hal_flash:[7,94,136,153,183,186,255,259,261],hal_flash_align:185,hal_flash_eras:185,hal_flash_erase_sector:185,hal_flash_init:185,hal_flash_ioctl:185,hal_flash_read:185,hal_flash_writ:185,hal_gpio:[7,137,184,187,239],hal_gpio_init_in:187,hal_gpio_init_out:[100,187,239,241,242,257],hal_gpio_irq_dis:187,hal_gpio_irq_en:[187,239],hal_gpio_irq_handler_t:187,hal_gpio_irq_init:[187,239],hal_gpio_irq_releas:187,hal_gpio_irq_trig_t:187,hal_gpio_irq_trigg:187,hal_gpio_mode_:187,hal_gpio_mode_in:187,hal_gpio_mode_nc:187,hal_gpio_mode_out:187,hal_gpio_mode_t:187,hal_gpio_pul:187,hal_gpio_pull_down:187,hal_gpio_pull_non:187,hal_gpio_pull_t:187,hal_gpio_pull_up:[187,239],hal_gpio_read:187,hal_gpio_toggl:[100,187,239,241,257],hal_gpio_trig_both:187,hal_gpio_trig_fal:187,hal_gpio_trig_high:187,hal_gpio_trig_low:187,hal_gpio_trig_non:187,hal_gpio_trig_ris:[187,239],hal_gpio_writ:[14,184,187,242],hal_i2c_begin:188,hal_i2c_end:188,hal_i2c_init:188,hal_i2c_master_data:188,hal_i2c_master_prob:188,hal_i2c_master_read:188,hal_i2c_master_writ:188,hal_i2c_prob:188,hal_i2c_read:188,hal_i2c_writ:188,hal_os_tick:[190,258,281],hal_reset_brownout:192,hal_reset_caus:[192,279],hal_reset_pin:192,hal_reset_por:192,hal_reset_reason:192,hal_reset_request:192,hal_reset_soft:192,hal_reset_watchdog:192,hal_rtc:152,hal_spi:[137,191],hal_spi_abort:191,hal_spi_config:191,hal_spi_data_mode_breakout:191,hal_spi_dis:191,hal_spi_en:191,hal_spi_init:[137,191],hal_spi_lsb_first:191,hal_spi_mod:191,hal_spi_mode0:191,hal_spi_mode1:191,hal_spi_mode2:191,hal_spi_mode3:191,hal_spi_moden:191,hal_spi_msb_first:191,hal_spi_set:[136,191],hal_spi_set_txrx_cb:191,hal_spi_slave_set_def_tx_v:191,hal_spi_tx_v:191,hal_spi_txrx:191,hal_spi_txrx_cb:191,hal_spi_txrx_noblock:191,hal_spi_type_mast:191,hal_spi_type_slav:191,hal_spi_word_size_8bit:191,hal_spi_word_size_9bit:191,hal_system:192,hal_system_clock_start:192,hal_system_reset:192,hal_system_restart:192,hal_system_start:192,hal_tim:[87,193],hal_timer_cb:[87,193],hal_timer_config:193,hal_timer_deinit:193,hal_timer_delai:193,hal_timer_get_resolut:193,hal_timer_init:[14,193],hal_timer_read:193,hal_timer_set_cb:193,hal_timer_start:193,hal_timer_start_at:193,hal_timer_stop:193,hal_uart:274,hal_uart_blocking_tx:194,hal_uart_clos:194,hal_uart_config:[194,274],hal_uart_flow_ctl:194,hal_uart_flow_ctl_non:[194,274],hal_uart_flow_ctl_rts_ct:194,hal_uart_init:194,hal_uart_init_cb:[194,274],hal_uart_par:194,hal_uart_parity_even:194,hal_uart_parity_non:[194,274],hal_uart_parity_odd:194,hal_uart_rx_char:194,hal_uart_start_rx:194,hal_uart_start_tx:[194,274],hal_uart_tx_char:194,hal_uart_tx_don:194,hal_watchdog_en:195,hal_watchdog_init:195,hal_watchdog_tickl:195,hal_xxxx:182,half:[17,18,94,101],halfwai:129,halgpio:187,halsystem:192,halt:[93,190,191,255,259,261],haluart:194,hand:[223,236,242,266],handbook:[258,262],handi:[14,94,275],handl:[14,18,21,28,29,31,62,90,102,135,136,137,153,154,155,156,157,161,162,165,170,171,172,173,180,206,210,211,215,237,239,249,250,251,273,274,275,281],handler:[14,88,93,94,132,187,211,213,216,218,220,221,239,242,273,274,275,276],happen:[9,14,21,27,130,141,180,249,252,253,254,255,267,269],happi:[7,9],har:287,hard:[98,131],hardcod:[26,28],hardwar:[2,3,5,6,7,9,14,21,22,25,26,32,35,87,94,96,97,129,135,174,175,180,183,184,185,186,187,188,190,192,193,194,195,209,223,226,239,242,245,246,253,254,255,257,258,259,260,264,267,268,274,281,291],harm:129,has:[2,3,4,7,10,11,12,14,21,23,25,27,31,35,37,44,51,56,58,59,60,62,63,78,81,82,83,85,86,87,88,89,90,91,93,94,97,98,99,100,129,130,131,133,135,139,141,153,154,166,170,174,180,187,188,191,193,194,196,209,211,223,224,226,232,234,237,240,242,243,250,251,252,255,257,258,259,263,266,267,268,269,273,274,280,281,288,289,291],hash:[35,38,44,47,72,129,180,223,240,284,287],have:[1,2,3,6,7,8,9,10,11,12,14,20,21,23,25,31,33,44,51,53,55,56,58,59,60,61,62,63,65,81,82,83,84,85,88,90,91,93,94,96,97,98,99,100,102,129,131,133,135,136,138,141,144,174,175,180,182,186,187,193,194,215,221,223,224,225,226,235,236,237,239,240,241,243,244,245,246,249,250,252,253,254,255,256,257,258,259,260,261,262,263,266,267,268,269,271,273,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,291],haven:[3,14,137,235,269,274,275,291],hci1:246,hci:[14,22,244],hci_adv_param:248,hci_common:237,hdr:[129,227],hdr_ver:198,head:[11,59,81,82,83,88,90,211,243],header:[1,14,38,40,47,56,58,59,60,62,94,129,133,141,142,180,184,187,206,208,226,232,237,257,274,275],heading1:243,heading2:243,heading5:243,headless:2,health:253,heap:[91,93,94],heart:242,held:268,hello:[12,14,70,158,171,194,237,256,267,284,285,287,291],help:[1,8,12,14,32,35,36,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,68,69,70,71,72,73,74,75,76,77,78,81,82,83,93,95,96,101,135,200,220,223,225,242,243,244,245,248,255,257,258,260,263,264,266,267,270,274,275,277,281,288,289],helper:[1,62,90,95,136,253,254],henc:[129,235],her:93,here:[1,3,8,10,11,14,30,33,56,74,77,78,85,88,90,91,94,95,98,100,130,131,141,157,158,161,164,172,174,187,191,200,206,207,209,215,223,224,225,226,233,235,236,239,243,246,250,252,253,254,255,257,258,259,262,263,266,267,268,269,274,275,285,291],hertz:87,hex:[7,38,44,49,72,188,223,261,263,273,281],hexidecim:67,hfxo:25,hidapi:4,hidraw:4,hierarchi:[153,226,232],high:[9,14,19,22,65,87,99,135,187,239,242,288],high_duti:28,higher:[11,14,15,21,22,56,59,60,73,81,82,83,92,93,99,100,182,206,212,225,226,235,242,246,266,269],highest:[86,92,93,100,225,226,242],highli:235,highlight:[2,6,31,102,236,255,258,260,262,267,275,276,281],hint:56,his:93,histori:225,hit:[37,257],hl_line:[208,209],hmac:14,hog:242,hold:[34,44,64,90,91,157,188,199,209,215,236,242,263,268,275],hole:[180,275],home:[7,11,60,94,223,245,257,266,270,274],homebrew:[4,6,7,11,37,57,61,80,84],homepag:[1,44,62,131,266,274,275],honor:14,hook:[98,261,274,287],hop:[22,135],hope:14,host:[7,9,14,22,23,24,27,30,31,67,71,72,85,88,90,129,213,243,245,246,250,251,252,255,266,267,274,275,276,280,281,288,289],hotkei:288,hour:101,how:[2,3,4,5,6,7,8,11,12,14,21,22,24,31,56,58,59,60,61,67,81,82,83,84,90,92,94,97,101,129,130,131,141,147,149,167,174,188,191,201,206,208,209,220,223,224,227,230,232,235,236,237,240,241,242,243,244,245,246,249,250,251,253,254,255,256,257,258,259,260,261,262,263,265,266,267,273,274,275,277,278,280,281,283,284,285,286,287,291],how_to_edit_doc:243,howev:[3,14,58,81,90,97,100,102,129,131,174,180,187,224,240,258,268],htm:246,html:[4,34,64,153,255,259,261,281,288,289],http:[1,4,10,11,12,14,34,40,56,58,59,60,62,64,81,82,83,102,131,138,184,236,246,253,255,258,259,261,262,266,268,270,274,275,281,287,288,289],httperror404:[58,81],hub:267,human:[246,268],hw_bsp_nativ:62,hw_drivers_nimble_nrf51:223,hw_hal:56,hw_mcu_nordic_nrf51xxx:223,hypothet:21,i2c:[8,135,136,182,277,278,281],i2c_0:[276,277,278,281],i2c_0_itf_bno:208,i2c_0_itf_li:208,i2c_num:188,i2s:255,i2s_callback:255,i386:[4,6],iOS:[249,273,275,276,278,280,283],ibeacon:[24,245,256,291],icloud:14,icon:[10,12,14],id16:252,id3:[34,64],id_init:226,idcod:255,idea:[14,62,90,92,98,248],ideal:22,ident:[14,19,21,23,24,28,31,67,90,102,134,223,224,232],identifi:[1,8,14,20,21,28,30,35,72,94,100,129,130,180,183,188,253,254,258,260,263,267,275,284,287],idl:[28,78,98,242,245,274,284,287],idx:[28,136,180],ietf:200,if_rw:134,ifdef:[223,226,233,257,281],ifndef:[226,274,275],ignor:[6,14,28,83,91,153,167,174,226,288],ih_flag:129,ih_hdr_siz:129,ih_img_s:129,ih_key_id:129,ih_mag:129,ih_tlv_siz:129,ih_ver:129,iii:129,illustr:[12,90,92,93,129,242,275,281],imag:[2,6,7,12,32,35,39,40,43,44,48,56,58,59,60,62,65,79,81,82,83,94,95,97,102,131,132,197,198,199,201,202,204,224,225,235,245,249,255,256,257,264,273,274,285,286,288,289,291],image_ec256:[255,258,259,260,261,262,263,267,277,284,285,287],image_ec:[7,255,258,259,260,261,262,263,267,277,284,285,287],image_f_ecdsa224_sha256:129,image_f_non_boot:129,image_f_p:129,image_f_pkcs15_rsa2048_sha256:129,image_f_sha256:129,image_head:129,image_header_s:129,image_mag:129,image_magic_non:129,image_ok:129,image_rsa:[7,255,258,259,260,261,262,263,267,277,284,285,287],image_tlv:129,image_tlv_:129,image_tlv_ecdsa224:129,image_tlv_rsa2048:129,image_tlv_sha256:129,image_valid:[7,255,259,260,262,267,277,284,285,287],image_vers:[129,198,199],img:[14,38,47,72,236,237,240,241,245,246,249,255,258,259,260,261,262,263,267,274,277,281,284,287,288,289],img_data:205,img_start:192,imgmgr:[7,131,132,153,196,226,237,275],imgmgr_max_ver_str:199,imgmgr_module_init:226,imgr_list:[201,202,204],imgr_upload:205,imgr_ver_jsonstr:199,immedi:[27,88,94,129,170,180,191,193,243,248,253,254],impact:[25,180],impl:62,implemen:67,implement:[9,10,14,22,33,62,67,88,90,91,94,96,97,129,130,131,132,152,153,174,180,182,184,186,187,188,189,190,191,192,196,200,207,208,210,212,214,215,221,226,232,239,247,250,252,253,263,266,275,276,277,281],impli:[14,253,254,266,269,274,275],implicit:266,impos:[129,174,175,180],imposs:[20,176],impract:252,impress:275,improv:257,imuplu:277,inc:[4,255,261,281,288,289],includ:[1,4,7,9,10,14,15,16,17,18,20,21,22,23,27,28,29,32,44,51,60,62,85,88,90,91,92,94,96,97,98,99,100,101,129,131,134,135,136,137,139,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,188,191,193,194,196,206,207,208,211,212,213,215,223,225,226,232,236,237,239,240,242,246,247,248,250,253,254,258,266,268,269,274,275,276,277,279,280,281,286,288],include_tx_pow:28,incom:[21,88,194,196,215,216,218,239],incompat:[58,81,268],incomplet:[30,94,160],incomplete_block_test:266,incorrect:[43,101],incr:183,increas:[22,23,90,180,215,216,220,226,242,288],increasin:141,increment:[90,101,130,180,224],incub:[7,56,184,226,236,275],inde:[93,261],indefini:[253,254],indent:6,independ:[23,97,129,135,182,183,185,187,188,190,192,193,194,195,226,274],indetermin:266,index:[32,73,129,246],indian:101,indic:[7,14,20,21,27,29,30,31,88,91,94,98,129,131,133,153,159,161,168,180,187,188,193,205,212,215,220,223,225,226,240,250,252,255,258,259,262,266,267,281,283],indirect:275,individu:[11,100,129,130,135,187,226,231,237,268],industri:[22,152],ineffici:180,infinit:[88,91,93,226,242,257],info:[14,40,58,59,60,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,91,100,141,142,146,220,240,251,255,259,261,262,267,273,275],inform:[1,6,7,12,14,21,23,24,28,30,35,38,40,41,58,59,60,62,63,65,67,72,81,82,83,88,90,91,94,96,97,100,101,129,133,134,146,180,206,207,209,210,220,223,224,226,235,236,239,240,242,245,248,251,252,253,254,255,257,263,268,269,270,274,275,277,281,284,287,289],infrastructur:245,ing:[135,253,254],inher:[1,24,250],inherit:[1,4,60,92,176,207],ininclud:224,init:[51,56,208,212,226,274,275],init_app_task:93,init_func_nam:226,init_funct:226,init_stag:226,init_task:[239,242],init_tim:[257,281],initi:[14,17,20,22,24,26,27,28,29,62,85,87,88,90,91,92,93,94,98,99,100,130,131,135,139,147,153,168,177,178,179,180,182,183,185,187,188,191,193,194,197,200,204,206,208,211,212,213,215,216,220,232,233,237,239,241,246,247,251,253,254,257,266,273,274,275,276,277,281],initialis:[209,255],inod:[174,176],inoper:[27,253,254],input:[21,23,28,101,135,182,187,191,239,261,266,288],inquiri:[21,30],insert:[100,180],insid:[14,25,90,93,162,183,257,261,266],insight:[135,242],inspect:[14,49,129,130,251],instal:[3,7,9,34,40,55,56,64,79,93,94,95,137,211,237,239,240,241,242,244,245,246,255,256,258,259,260,261,262,266,267,269,271,274,276,277,278,280,281,283,284,285,286,287,288,291],instanc:[2,3,9,14,28,63,90,176,177,178,180,206,224,248,253,254,255],instant:21,instantan:242,instanti:[93,135],instantli:99,instead:[7,11,12,14,25,88,91,99,129,131,223,226,237,239,249,255,257,258,259,260,261,262,266,270,273,274,275,276,279],instruct:[3,4,7,11,56,58,63,81,86,97,237,239,255,258,262,276,277,278,279,281,285,288,289],insuffici:[21,90,168],insur:[91,100],int16_t:101,int32_max:28,int32_t:[85,101,194,253,254],int64_t:101,int8:130,int_max:90,integ:[14,200,207,224,226],integr:[12,14,23,91,180,188,224],intellig:182,intend:[14,25,30,37,177,178,188,235],inter:[180,188,239],interact:[2,8,131,133,196,249,257,264,288],interchang:200,interconnect:[9,133],interdepend:[130,226],interest:[7,15,19,90,94,182,223,241,245,248,253,291],interfac:[4,19,22,31,32,90,100,129,134,135,136,137,152,153,182,183,185,187,188,190,191,192,194,195,206,209,210,236,244,246,247,255,259,261,274,277,278,281,287],interleav:14,intermedi:[160,161,167],intern:[7,14,21,90,93,94,98,135,136,141,168,177,178,179,186,193,195,196,200,216,220,255,275],internet:[7,12,22,237,239,240,246,256,267,283,286],interoper:[133,134],interpret:[138,140,207,211],interrog:275,interrupt:[14,87,88,94,129,183,187,190,191,193,194,275],interrupt_prior:275,interv:[14,21,28,30,98,100,207,211,212,239,277,281],interval_max:28,interval_min:28,intervent:97,intial:220,intiat:94,introduc:[1,31,180,225,226],introduct:[242,291],introductori:283,intuit:129,invalid:[21,87,129,137,143,153,154,168,172,173,180,191,193,250,266],invers:[92,99],invert:99,invoc:[6,252],invok:[2,266,270,281],involv:[17,18,20,23,94,97,182,188,266],io_cap:28,ioctl:153,iot:22,iotiv:276,ipsp:22,ipv6:22,irk:[20,28],irq:[14,187],irq_num:183,irq_prio:[136,137],isbuildcommand:12,ism:22,ismylaptop:[274,275],isn:[14,94,180,245],isol:[94,223],isr:14,isshellcommand:12,issu:[1,6,10,31,56,67,93,99,129,133,153,174,180,188,237,258,259,260,262,263,271,274,275],ist:101,it_len:129,it_typ:129,ital:243,ite_chr:250,item:[1,88,94,130,181,211,254],iter:[91,100,129,155,156,157,162,165,180,212],itf:209,its:[7,10,11,14,19,20,21,56,62,86,88,90,91,92,93,94,97,98,100,129,131,136,141,159,169,172,174,175,180,187,188,191,206,223,224,225,226,227,232,236,240,241,242,243,244,245,248,250,251,252,253,254,263,268,274,279,285,291],itself:[14,27,62,90,91,100,129,135,139,141,181,196,201,212,226,236,258,266,274,275],itvl:14,iv_build_num:129,iv_major:129,iv_minor:129,iv_revis:129,jan:101,javascript:56,jb_read_next:200,jb_read_prev:200,jb_readn:200,je_arg:200,je_encode_buf:200,je_wr_comma:200,je_writ:200,jira:10,jlink:[62,94,240,258,260,267,277,281,284],jlink_debug:62,jlink_dev:62,jlinkex:[258,260,263,275],jlinkgdbserv:[281,288],job:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,86,93,94,215,250],join:[3,135,235,267,291],json:[7,12,35,38,52,56,62,202,203,204,205,236,237,241,266,274],json_array_t:200,json_attr_t:[200,205],json_buff:[200,205],json_buffer_read_next_byte_t:200,json_buffer_read_prev_byte_t:200,json_buffer_readn_t:200,json_decod:[205,266],json_encod:[199,200,201,202,203,204,266],json_encode_object_entri:[202,203,204],json_encode_object_finish:[201,204],json_encode_object_start:[201,202,203],json_enum_t:200,json_read:200,json_read_object:200,json_simple_decod:266,json_simple_encod:266,json_typ:200,json_valu:[200,201,202,203,204],json_value_int:[200,203],json_value_str:200,json_value_stringn:200,json_write_func_t:200,jtag:[4,39,43,48,255,258,259,261,267,281,287],jul:81,jump0:68,jump:[129,223],jumper:[8,236,261,274,275,287],just:[1,7,8,14,21,23,24,63,85,88,94,95,100,101,129,136,137,152,167,172,223,236,249,250,253,254,255,257,263,270,271,274,275],jv_len:200,jv_pad1:200,jv_type:200,jv_val:200,k30:[273,274],k64f:54,keep:[9,23,25,93,129,131,135,141,180,191,208,215,216,220,223,236,241,242,266,275],keg:[61,84],kei:[8,20,21,22,32,38,47,58,81,94,129,130,180,199,200,201,203,226,250,263,267,274,277],kept:[86,129,141],kernel:[1,7,9,14,52,56,62,94,131,135,182,212,223,226,239,245,246,274,275,276,277,279,281],kernel_o:223,keyboard:[12,23,131],keyboarddisplai:28,keyboardonli:28,keychain:[58,81],keystor:28,keyword:[1,62,95,131,266,268,274,275],khz:[191,255,259],kick:[98,253,254],kilobyt:97,kind:[32,135,274,275,288],kit:[8,48,62,236,240,241,256,258,275,288,289,291],klibc:102,know:[1,8,12,31,62,131,207,211,224,225,242,250,251,253,254,256,257,267,274,275,286,291],known:[22,56,101,161,162,180,242,248],kw41z:14,l13:258,l2cap:22,lab:33,label:[8,94,261,275],lack:[141,152,223],lag:252,languag:[11,12,56,97,138,274,275],laptop:[3,8,236,237,239,241,246,263,274,275],larg:[21,25,32,90,100,101,223,224,242],large_system_test:266,large_unlink_test:266,large_write_test:266,larger:[14,32,90,227],largest:[90,243],las_app_port:263,las_app_tx:263,las_join:263,las_link_chk:263,las_rd_app_eui:263,las_rd_app_kei:263,las_rd_dev_eui:263,las_rd_mib:263,las_wr_app_eui:263,las_wr_app_kei:263,las_wr_dev_eui:263,las_wr_mib:263,last:[14,21,27,73,78,90,91,98,100,129,149,180,194,202,207,215,220,226,248,252,253,254,255,263,267,275,277,279,281],last_checkin:[78,284,287],last_n_off:149,last_op:188,last_read_tim:209,latenc:28,later:[7,8,14,73,85,90,129,232,241,245,251,255,263,266,275,281,288,289],latest:[1,2,4,7,11,14,50,53,56,57,61,80,84,130,236,255,267,268,269,274,275],latex:[174,180],latter:[21,90,133,174],launch:12,launchpad:4,law:[255,274,275,281,288,289],layer:[9,21,22,90,91,96,97,135,153,163,166,174,181,194,209,210,226,239,247,275,291],layout:[97,129,175,287],lc_f:208,lc_pull_up_disc:208,lc_rate:208,lc_s_mask:208,lcheck:274,ld4:259,ldebug:[14,225],ldflag:51,ldr:261,le_elem_off:146,le_scan_interv:14,le_scan_window:14,lead:[90,93,251,275],leadingspac:90,leak:[161,162],learn:[7,27,62,236,241,256,283],least:[23,90,98,129,180,191,193,237,257,263,275,291],leav:[90,136,149,223],led1:[239,260],led2:239,led3:239,led:[1,7,14,62,94,97,100,135,182,187,237,239,242,246,255,256,257,258,259,260,261,262,267,274,275,277,284,287,291],led_blink_pin:[94,100,241,242,257],led_blink_pin_1:241,led_blink_pin_2:241,led_blink_pin_3:241,led_blink_pin_4:241,led_blink_pin_5:241,led_blink_pin_6:241,led_blink_pin_7:241,led_blink_pin_8:241,led_pin:241,left:[87,91,100,146,199,223,261,273,281,291],legaci:[31,152,226,242],len:[90,136,141,142,163,164,171,172,173,188,191,200,205,250,263,274],length:[21,22,28,90,94,129,131,141,157,158,177,180,183,199,250,263],less:[14,93,102,129,180,252,253,254],lesser:180,lesson:[242,291],let:[4,8,56,90,94,206,223,224,236,242,245,247,248,249,250,251,252,253,254,257,261,266,268,269,273,274,275,281],level:[1,2,9,14,15,19,21,24,28,30,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,92,94,132,135,136,153,174,175,182,209,225,226,235,249,250,253,254,255,259,263,266,267,269,273,274,275],level_list:73,leverag:[133,135,244,275],lflag:[1,51,62],lib:[1,4,46,54,56,83,102,131,153,181,225,226,274,275],libc6:6,libc:[7,94,102],libc_baselibc:[223,261],libftdi1:4,libftdi:4,libg:49,libgcc:[49,223],libhidapi:4,librari:[1,4,14,49,51,56,59,82,88,90,94,95,97,102,129,131,135,153,161,181,182,196,223,224,232,245,266,268,269,274,275,276],libusb:4,libusb_error_access:259,libusb_open:259,licens:[4,7,11,56,62,102,135,245,255,259,261,262,267,268,274,275,281,288,289],lieu:67,life:[25,253],light:[9,32,182,207,236,239,241,256,259,260,261,262,276,277,284,287],lightblu:[249,273,275],lightweight:152,like:[2,3,5,8,12,14,32,56,59,60,63,82,83,90,93,94,97,98,99,102,129,131,135,141,182,188,224,236,241,245,255,259,261,266,268,274,275,276,278,279,281,283,287,288,289],likewis:[63,180],limit:[3,14,21,28,30,100,102,136,152,216,220,223,237,248,253,274,275,288],limt:224,line:[2,6,7,12,14,37,39,40,48,63,94,102,131,187,224,230,236,241,246,252,257,259,260,268,270,274,275,276,277,281,288],linear:180,linearacc:277,lines_queu:131,link:[2,3,7,14,21,22,23,28,35,39,43,61,62,82,84,86,90,180,193,215,223,226,232,235,236,245,246,249,254,255,257,258,259,260,261,262,263,267,274,275,277,281,284,285,287,288,289,291],linker:[1,62,95,102,223,245,261],linkerscript:[62,94],linux:[5,7,9,12,57,67,79,80,136,240,246,255,257,258,259,261,262,267,277,284,285,286,287],liquid:275,lis2dh12:[208,281],lis2dh12_0:[208,281],lis2dh12_cfg:208,lis2dh12_config:208,lis2dh12_data_rate_hn_1344hz_l_5376hz:208,lis2dh12_fs_2g:208,lis2dh12_init:208,lis2dh12_onb:281,list:[3,6,7,8,12,14,23,28,30,35,36,49,51,52,54,58,60,62,67,72,73,74,76,77,78,79,81,86,88,90,91,94,95,96,100,129,131,132,135,137,180,181,193,206,215,224,226,227,230,235,236,240,241,245,248,251,252,255,256,257,258,259,260,261,262,263,268,269,274,275,279,284,285,287,291],listen:[2,14,15,31,32,67,90,207,212,223,248],listener_cb:281,lit:[237,241,242,246],littl:[6,21,24,90,129,236,241,245,252,263,269,274],live:[135,236,251,252,255,267,268,269],lma:261,lmp:21,load:[2,4,5,7,12,14,35,40,44,48,56,58,59,60,62,94,129,130,192,223,236,239,240,241,242,249,256,257,263,269,273,274,275,288,289],load_arduino_blinki:12,load_arduino_boot:12,loader:[14,44,51,94,129,131,192,255,258,259,260,262,267,277,284,285,287],loc:[142,146,151],local:[1,4,6,7,10,11,21,28,29,37,41,50,56,59,61,72,82,84,95,100,101,243,248,255,267,279],localhost:[67,281,288],locat:[1,8,11,20,32,62,90,94,129,141,146,180,188,232,242,252,257,261,267,268,274,277,284,285,287],lock:[9,89,93,99,141,207,212,239],log:[1,7,10,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,74,75,76,77,78,79,81,82,83,129,132,133,151,160,167,181,182,215,223,225,226,236,237,245,255,258,259,261,262,264,274,275,279,281,285,288],log_:14,log_cbm_handl:206,log_cbmem_handl:206,log_cli:[215,264],log_console_handl:[206,209],log_debug:206,log_error:209,log_fcb:226,log_fcb_handl:206,log_handl:206,log_info:209,log_init:226,log_level:[51,206,226,240,264],log_level_debug:206,log_level_error:206,log_module_bno055:209,log_module_default:206,log_nam:73,log_newmgr:225,log_newtmgr:[51,225,226,237],log_nmgr_register_group:226,log_regist:[206,209],log_shel:236,log_syslevel:[206,209],logic:[1,22,24,30,129,175,194,263,274],login:270,loglevel:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,274],logxi:82,long_filename_test:266,longer:[3,8,11,14,22,25,91,211,225,246,274,276],longjmp:234,longrange_interv:28,longrange_pass:28,longrange_window:28,look:[8,14,25,56,62,94,96,100,102,129,131,132,188,200,205,223,224,236,241,242,243,248,250,251,252,266,269,271,273,274,275,279,281,291],lookup:[212,221,250,281],loop:[14,85,88,93,100,155,156,157,162,165,226,237,242,245,257,273,274,275],lora:263,lora_app_shel:263,lora_app_shell_telee02:263,lora_app_shell_telee0:263,lora_mac_timer_num:263,lose:27,loss:[27,30,183],lost:[98,180],lost_found_test:266,lot:[7,14,223,225,248,266,275],low:[9,14,21,22,23,32,87,90,94,99,136,153,182,187,191,192,209,242,250,253,254,255,256,259,267,291],lower:[14,21,87,92,93,99,100,225,226,240,242,247,257,261],lowest:[74,86,91,100,180,226,242],lowpow:277,lru:180,lrwxr:[4,82],lsb:188,lst:[35,56,62],ltbase:226,ltd:28,ltk:28,ltk_sc:28,ltrequir:226,lua:[138,139,140],lua_cmd:140,luckili:274,m32:6,m4g:277,mac:[3,5,7,9,12,14,21,56,57,79,80,236,240,241,246,249,255,257,258,259,261,262,263,267,273,275,277,284,285,286,287],machin:[2,3,7,8,95,246,291],maco:[4,14,67],macro:[14,21,90,91,94,98,200,207,209,224,226,232,242,252,266,275],made:[2,10,11,21,56,72,100,129,188,242,243,263,275],mag:277,mag_rev:277,maggyro:277,magic:[62,129,141,180],magnet:[207,277],magnetomet:209,mai:[2,4,6,7,8,12,14,23,28,30,31,32,52,54,58,59,63,81,82,83,86,88,90,91,93,94,97,102,129,131,133,135,162,180,182,187,188,193,206,207,208,209,211,212,223,224,225,226,227,230,232,237,242,245,246,255,257,258,259,260,261,262,263,267,268,274,275,277,281,284,287,288],mail:[3,10,135,235,236,241,245,256,275,291],main:[7,12,27,32,58,62,78,81,88,90,93,96,100,129,131,139,177,178,198,207,212,215,217,222,226,231,233,237,239,241,245,248,253,254,255,258,259,260,261,262,266,273,274,275,277,284,285,287],mainli:223,maintain:[4,50,86,129,135,180,207,212,226,266,268,269],mainten:[133,224],major:[14,56,62,97,198,242,254,268,269],major_num:[268,269],make:[1,2,3,7,8,9,14,20,21,22,25,31,32,34,56,58,64,72,86,90,91,94,129,135,141,142,174,180,182,199,206,223,224,236,240,241,242,244,245,246,248,250,251,253,254,255,257,261,263,266,268,273,274,275,276,281,291],makerbeacon:237,malloc:[89,91,94,102,242,275],man:[6,28,102],manag:[6,8,14,17,18,22,28,32,40,46,58,59,60,62,65,67,69,72,73,74,77,78,81,82,83,88,91,93,94,95,97,100,129,131,135,182,197,200,207,209,210,211,223,226,240,257,258,264,267,269,277,281,284,286,287,291],mandatori:[21,94,227,252,253,254],mani:[14,21,32,56,62,90,96,129,141,149,161,162,182,193,250,255,268],manifest:[35,38,44,56,62,236,237,241,274],manipul:[1,40,46,90],manner:[28,30,90,93,129,182],manual:[22,26,61,84,91,93,100,102,174,223,230,236,255,261,281,287,288,289],manufactur:[20,28,30,40,44,58,59,60,67,223,248,255,267],many_children_test:266,map:[2,3,8,21,28,29,62,97,135,136,161,182,186,187,194,200,223,225,226,250,257,267,268,269,277,284,287,288],mar:[101,258,260,263,275,281],march:69,mark:[28,29,72,94,261],marker:94,market:[32,260],mask:[28,207,209,211,212,279,281],mass:[246,259],mass_eras:[258,259],master:[1,7,11,28,57,58,60,61,80,81,83,84,135,182,184,188,191,243,255,267,268,269],match:[2,7,14,21,94,95,97,129,211,212,223,255,259,267,268,269],materi:14,matter:10,max:[157,199,200],max_cbmem_buf:206,max_conn_event_len:28,max_ev:28,max_len:[157,163,183],max_protohdr:90,maxim:9,maximum:[14,22,28,30,90,129,131,174,176,180,183,199,215,216,220,266,288],mayb:[288,289],mb_crc:274,mb_crc_check:274,mb_crc_tbl:274,mbed:[258,262],mbedtl:[7,255,258,260,262,267,284,285,287],mblehciproj:246,mblen:90,mbuf:[93,200,278],mbuf_buf_s:90,mbuf_memblock_overhead:90,mbuf_memblock_s:90,mbuf_mempool_s:90,mbuf_num_mbuf:90,mbuf_payload_s:90,mbuf_pkthdr_overhead:90,mbuf_pool:90,mbuf_usage_example1:90,mbuf_usage_example2:90,mcu:[7,9,54,95,98,135,136,182,187,190,191,192,193,194,196,236,241,242,255,258,267,281],mcu_dcdc_en:14,mcu_gpio_porta:136,mcu_sim_parse_arg:[257,281],mcuboot:14,mdw:261,mean:[2,12,14,21,90,92,98,99,100,101,129,136,176,191,202,204,226,234,252,259,269,274,275],meaning:[139,194],meant:[1,98,130],measur:[9,242,263],mechan:[1,23,93,223,226,239,268,270,274,275],medic:[22,56],medium:[14,168],meet:[208,240,246,255,256,258,259,260,261,262,277,279,280,281,283,284,285,286,287],mem:[7,226],member:[85,88,90,91,92,98,99,100,101,131,188,191,193,248,250],membuf:91,memcmp:90,memcpi:250,memori:[9,21,49,74,88,89,90,93,94,97,98,102,129,133,135,136,152,168,174,175,179,180,182,183,185,188,216,220,225,237,239,242,250,261,263,264,285,288],mempool:[65,81,82,83,90,91,215,274],memset:[208,248,251,254,275],mention:[12,180,207,275],menu:[12,60,259,261,287],merchant:4,merci:91,merg:243,mesh:33,messag:[2,4,23,32,43,58,59,60,76,131,133,134,167,215,218,219,227,239,255,259,263,267,274],messi:275,messsag:63,met:[21,237,239,267],meta:[8,267,277],metadata:[14,44,129,168],meter:22,method:[26,90,100,134,174,184,187,191,206,215,224,250,268],mfg:[7,14,40,58,59,60,71,226],mfg_data:30,mfg_init:226,mgmt:[7,131,133,191,197,215,225,226,237,274,275],mgmt_evq_set:237,mgmt_group_id_config:132,mgmt_group_id_crash:132,mgmt_group_id_default:132,mgmt_group_id_imag:132,mgmt_group_id_log:132,mgmt_group_id_runtest:132,mgmt_group_id_stat:132,mgmt_imgmgr:223,mgmt_newtmgr_nmgr_o:223,mgutz:82,mhz:[22,25],mib:[56,82,263],mic:21,micro:[14,56,240,242,255,256,258,260,261,263,267,275,277,283,284,286,287,288,289],microcontrol:[9,102,129,261,287],microsecond:[25,87,101],microsoft:12,mid:[15,129,259],middl:[28,129,180,275],might:[1,2,14,19,21,62,94,97,131,135,180,182,188,209,223,225,245,247,248,253,254,255,259,268,269,271,281,288,289],migrat:[180,226],milisecond:28,millisecond:[28,101,263],millivolt:275,min:[73,74,129,267,285],min_conn_event_len:28,mind:[98,245],mingw32:60,mingw64:60,mingw:[4,7,8,12,57,83,257,267,277,284,287],mini:259,minicom:[8,257,267,274,277],minim:[94,135,152,153,174,180,209,245],minimum:[28,30,73,90,91,129,180,245],minor:[198,254,268,269],minor_num:[268,269],minu:90,minut:[82,101,253,266],mip:[7,62],mirror:[1,10,11,268,274,275],misc:277,mislead:6,mismatch:[21,90],miso:191,miso_pin:[136,137],miss:[21,58,94,225,236,241,245,256,275],misspel:225,mitm:28,mk64f12:[135,182],mkdir:[11,44,81,83,94,236,255,258,259,260,261,262,263,267,268,274,275],mkdir_test:266,mkdoc:243,mkr1000:265,mkr1000_boot:267,mkr1000_wifi:267,mlme:263,mman:58,mmc0:[137,153],mmc:152,mmc_addr_error:137,mmc_card_error:137,mmc_crc_error:137,mmc_device_error:137,mmc_erase_error:137,mmc_init:137,mmc_invalid_command:137,mmc_ok:137,mmc_op:[137,153],mmc_param_error:137,mmc_read_error:137,mmc_response_error:137,mmc_timeout:137,mmc_voltage_error:137,mmc_write_error:137,mn_socket:7,mobil:32,mod:[31,249],modbu:274,mode:[9,14,21,23,28,30,135,159,161,168,169,171,182,183,187,191,194,209,223,248,255,259,261,266,277],model:[14,22,23,33,88,196,258],modern:[8,152],modif:[11,236,266,276],modifi:[6,63,90,94,101,134,193,241,242,274,275,280,283],modul:[73,87,91,93,102,133,138,206,216,220,222,257,263,287],module_list:73,module_nam:[220,222],modulo:101,moment:[14,136,188,196,250,269],mon:[255,258,259],monitor:[90,131,133,141,213,224,261,276,283,291],monolith:252,month:266,more:[1,4,7,9,10,12,14,21,22,23,30,31,35,36,40,44,52,54,58,59,60,62,63,65,81,82,83,86,88,90,93,94,99,100,101,102,129,130,135,142,146,153,164,165,180,191,194,200,206,207,208,209,210,215,223,226,227,240,241,242,245,248,252,253,254,255,257,258,263,266,267,269,273,274,275,277,281,284,287,288,291],mosi:191,mosi_pin:[136,137],most:[1,8,14,15,20,22,24,25,26,62,90,94,95,100,102,129,180,184,191,223,225,242,248,266,273,274,275,277,279,281],mostli:[6,9,223,253,254],motor:9,mou:243,mount:[166,275],mous:[135,182],move:[8,46,58,59,60,82,93,101,129,167,183,223,257,261,275,276,278,281],mp_block_siz:91,mp_flag:91,mp_membuf_addr:91,mp_min_fre:91,mp_num_block:91,mp_num_fre:91,mpe:91,mpool:[220,263],mpstat:[65,79,81,82,83,132,134,237,285],mq_ev:90,mqeueue:90,msb:188,msdo:94,msec:[14,28,195],msg:230,msg_data:28,msp:[255,261],msy:60,msys2:57,msys2_path_typ:60,msys64:60,msys_1:[74,285],msys_1_block_count:[276,278],msys_1_block_s:[276,278],mtd:136,mtu:[14,21,28,29,249],mu_level:92,mu_own:92,mu_prio:92,much:[14,90,94,99,102,147,180,274],multi:[1,9,51,63,97,100,188],multilib:[6,7,58],multipl:[4,14,24,28,30,35,36,51,52,56,85,92,93,98,102,130,133,135,182,191,212,226,248,252,253,268],multiplex:[14,22],multiplexor:97,multipli:[91,242],multitask:[93,242],must:[1,2,4,5,7,8,9,11,12,15,23,25,26,34,38,42,47,54,56,58,60,62,64,67,69,72,81,87,88,90,91,93,94,97,98,100,129,130,131,137,141,149,153,160,161,163,167,174,175,176,177,179,180,181,188,191,193,194,198,199,200,206,207,208,209,211,212,213,215,216,217,220,224,225,226,233,236,237,240,242,245,248,250,257,260,261,263,267,268,269,274,275,277,278,279,280,281,284,287,288],mutex:[89,93,99,100],mutual:92,my_at45db_dev:136,my_blinki:51,my_blinky_sim:[7,35,36,44,56,62,245,246,258,259,274],my_blocking_enc_proc:21,my_callout:239,my_conf:130,my_config_nam:226,my_driv:[274,275],my_ev_cb:239,my_eventq:237,my_gpio_irq:239,my_interrupt_ev_cb:239,my_memory_buff:91,my_new_target:51,my_newt_target:51,my_packag:206,my_package_log:206,my_pool:91,my_proj1:245,my_proj:245,my_project:[1,255,267,268,275],my_protocol_head:90,my_protocol_typ:90,my_result_mv:275,my_sensor:281,my_sensor_devic:281,my_sensor_poll_tim:281,my_stack_s:100,my_stat:224,my_stat_sect:224,my_target1:63,my_task:100,my_task_evq:90,my_task_func:100,my_task_handl:90,my_task_pri:100,my_task_prio:100,my_task_rx_data_func:90,my_task_stack:100,my_timer_ev_cb:239,my_timer_interrupt_eventq:239,my_timer_interrupt_task:239,my_timer_interrupt_task_prio:239,my_timer_interrupt_task_stack:239,my_timer_interrupt_task_stack_sz:239,my_timer_interrupt_task_str:239,my_uart:194,myadc:275,myapp1:288,myapp:224,myapp_cmd:221,myapp_cmd_handl:221,myapp_console_buf:131,myapp_console_ev:131,myapp_init:131,myapp_process_input:131,myapp_shell_init:221,mybl:[35,36,47,51,67,74,77,78,237],myble2:[38,39,246],myblehostd:67,mybleprph:[67,240],mybletyp:67,myboard:[46,94],myboard_debug:94,myboard_download:94,mycmd:222,myconn:237,mycor:72,mydata:90,mydata_length:90,mylora:263,mymcu:96,mymfg:71,mymodul:98,mymodule_has_buff:98,mymodule_perform_sanity_check:98,mymodule_register_sanity_check:98,mynewt:[1,3,4,5,6,10,11,13,21,22,26,31,33,38,39,40,44,45,51,52,54,56,57,58,60,61,62,63,72,79,80,81,83,84,85,87,88,89,98,99,100,101,102,129,130,133,134,135,152,153,174,181,182,183,184,187,188,191,194,206,209,215,217,223,224,225,226,232,235,236,237,239,240,242,244,246,247,249,253,254,255,256,257,258,259,260,261,262,263,264,266,267,269,273,274,275,277,280,281,284,285,286,287,288,289,291],mynewt_0_8_0_b2_tag:[268,269],mynewt_0_8_0_tag:268,mynewt_0_9_0_tag:268,mynewt_1_0_0_b1_tag:268,mynewt_1_0_0_b2_tag:268,mynewt_1_0_0_rc1_tag:268,mynewt_1_0_0_tag:268,mynewt_1_3_0_tag:[58,60,81,83],mynewt_arduino_zero:[255,267,268],mynewt_nord:275,mynewt_stm32f3:236,mynewt_v:[131,215,220,224,226,266,275],mynewt_val_:226,mynewt_val_log_level:226,mynewt_val_log_newtmgr:226,mynewt_val_msys_1_block_count:226,mynewt_val_msys_1_block_s:226,mynewt_val_my_config_nam:226,mynewtl:276,mynewtsan:76,myperiph:[240,249],mypool:91,myproj2:223,myproj:[2,7,12,94,236,240,241,255,257,258,259,260,261,262,268,274,276,277,281,289],myriad:9,myself:14,myseri:[74,77,78],myserial01:67,myserial02:67,myserial03:67,mytask:242,mytask_handl:242,mytask_prio:242,mytask_stack:242,mytask_stack_s:242,myudp5683:67,myvar:66,n_sampl:277,nad_flash_id:175,nad_length:175,nad_offset:175,nak:188,name1:51,name2:51,name:[1,2,4,7,8,10,11,12,14,21,22,28,30,35,36,38,39,43,44,45,46,48,49,51,52,54,56,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,91,94,95,96,98,100,101,102,130,131,135,153,155,156,157,160,161,162,165,181,182,187,199,200,201,203,205,206,207,208,209,210,212,216,220,221,222,223,225,228,229,231,236,237,239,242,245,248,250,252,253,254,255,257,258,259,260,261,262,266,267,268,269,270,274,275,276,277,278,281,284,285,287,288],name_is_complet:248,name_len:[155,156,157,162,165,248],namespac:[89,130,215,253],nano2:[44,54,94,262],nano2_debug:[94,262],nano:[256,291],nanosecond:[87,193],nativ:[2,3,7,12,44,51,54,56,60,62,67,191,225,226,236,239,246,258,259,267,274,275,285,291],natur:[94,180],navig:[10,291],nb_data_len:180,nb_hash_entri:180,nb_inode_entri:180,nb_prev:180,nb_seq:180,nbuf:90,nc_num_block:176,nc_num_cache_block:176,nc_num_cache_inod:176,nc_num_fil:176,nc_num_inod:176,ncb_block:180,ncb_file_offset:180,ncb_link:180,ncheck:274,nci_block_list:180,nci_file_s:180,nci_inod:180,nci_link:180,nda_gc_seq:180,nda_id:180,nda_length:180,nda_mag:180,nda_ver:180,ndb_crc16:180,ndb_data_len:180,ndb_id:180,ndb_inode_id:180,ndb_magic:180,ndb_prev_id:180,ndb_seq:180,ndi_crc16:180,ndi_filename_len:180,ndi_id:180,ndi_mag:180,ndi_parent_id:180,ndi_seq:180,nding:252,ndof:277,ndof_fmc_off:277,nearest:258,nearli:14,neatli:248,necessari:[6,25,40,48,58,59,60,90,129,153,180,234,236,245,250,255,263,266,275],need:[4,5,6,7,8,9,10,11,12,14,15,24,25,33,44,51,53,56,58,59,60,61,62,65,67,81,82,84,85,89,90,91,92,93,94,96,97,98,99,100,129,131,136,141,142,143,153,180,192,195,206,207,209,210,211,212,215,221,223,224,225,226,230,237,239,240,242,245,246,248,250,251,252,253,254,255,257,258,259,260,261,262,266,267,269,270,273,276,278,281,284,285,287],neg:[90,101,180,252],neither:90,ness:191,nest:[92,160],net:[4,7,14,25,52,213,226,245,246,250,252,267,274,275,276,278,280],net_nimble_control:223,net_nimble_host:223,network:[1,9,14,24,28,32,33,56,90,93,223,242,263,267],never:[20,93,98,100,167,180,226,242,245,250],nevq:88,new_bletini:46,new_pool:90,new_slinki:46,newer:6,newest:[141,225,242],newli:[1,10,20,44,129,161,246,253,254,268],newlib:102,newlin:131,newt:[1,3,5,6,7,13,33,57,62,63,74,77,78,81,82,83,84,93,94,95,97,135,223,224,225,226,232,236,238,239,240,241,242,244,245,246,249,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,271,274,275,276,277,278,279,281,283,284,285,286,287,288,289,291],newt_1:[58,61],newt_1_1_0_windows_amd64:61,newt_1_3_0_windows_amd64:60,newt_group:2,newt_host:2,newt_us:2,newtgmr:[82,83,84],newtmgr:[1,7,9,13,58,59,60,64,65,79,80,131,132,134,196,206,218,219,223,225,226,239,274,275,286,291],newtmgr_1:[81,84],newtmgr_1_1_0_windows_amd64:84,newtmgr_1_3_0_windows_amd64:83,newtmgr_shel:215,newtron:[153,181,225,226],newtvm:11,next:[7,8,25,31,72,78,83,86,90,91,100,129,131,133,141,146,155,156,157,162,165,180,196,200,207,211,212,223,226,234,240,241,242,243,245,248,252,253,254,255,258,261,269,273,274,275],next_checkin:[78,284,287],nff:[7,102,136,153,175,176,177,178,179,181,189,225,226,232,266],nffs_area_desc:[14,174,177,178,227],nffs_area_mag:180,nffs_area_max:[177,178],nffs_block:180,nffs_block_cache_entri:180,nffs_block_cache_list:180,nffs_block_mag:180,nffs_cache_block:180,nffs_cache_block_list:180,nffs_cache_inod:180,nffs_close:181,nffs_closedir:181,nffs_detect:[178,180],nffs_detect_fail:[153,174],nffs_dirent_is_dir:181,nffs_dirent_nam:181,nffs_disk_area:180,nffs_disk_block:180,nffs_disk_inod:180,nffs_file_len:181,nffs_flash:189,nffs_flash_area:[14,225,226],nffs_format:[177,180,227],nffs_getpo:181,nffs_hash_entri:180,nffs_id_non:180,nffs_init:[176,177,178,181],nffs_inod:180,nffs_inode_entri:180,nffs_inode_list:180,nffs_inode_mag:180,nffs_intern:174,nffs_mkdir:181,nffs_op:181,nffs_open:181,nffs_opendir:181,nffs_pkg_init:14,nffs_read:181,nffs_readdir:181,nffs_renam:181,nffs_seek:181,nffs_short_filename_len:180,nffs_test:266,nffs_test_debug:266,nffs_test_priv:266,nffs_test_system_01:266,nffs_test_unlink:227,nffs_test_util:266,nffs_unlink:181,nffs_write:181,nhe_flash_loc:180,nhe_id:180,nhe_next:180,ni_filenam:180,ni_filename_len:180,ni_inode_entri:180,ni_par:180,ni_seq:180,nice:[224,273],nie_child_list:180,nie_hash_entri:180,nie_last_block_entri:180,nie_refcnt:180,nie_sibling_next:180,nil:68,nim:252,nimbl:[7,24,25,27,30,67,226,237,240,244,247,248,249,250,251,252,274,275,276,278],nimble_max_connect:14,njb:[201,202,203,204,205],njb_buf:205,njb_enc:203,nlip:218,nmgr:134,nmgr_def_taskstat_read:203,nmgr_err_eok:203,nmgr_jbuf:[201,202,203,204,205],nmgr_o:132,nmgr_shell:[131,226,237],nmgr_shell_in:218,nmgr_shell_out:219,nmgr_shell_pkg_init:226,nmgr_task_init:218,nmgr_transport:219,nmgr_uart:237,nmgr_urart_spe:237,nmxact:11,no_of_sampl:277,no_rsp:29,no_wl:[28,31],no_wl_inita:28,node:[14,22,33,56,155,156,157,162,165,180],nodefault:[200,205],nodup:28,nogdb:[39,48],noinputnooutput:28,non:[7,14,19,20,22,25,28,32,33,85,90,91,100,101,145,149,151,180,183,187,188,191,192,193,194,216,218,219,220,223,226,253,254,263,268,281],none:[4,7,8,12,21,28,31,83,88,94,102,129,180,217,221,222,223,227,230,236,255,259,263,275,281,288,289],nonexist:[161,180],nonsens:266,nonzero:[90,142,143,144,146,147,150,151,191,228,229,231,233,234,251,266],nor:23,nordic:[14,24,94,135,182,186,190,192,239,240,258,260,274,275,277,281,286,291],nordicsemi:[258,260,263,275,281],normal:[2,99,180,230,232,273,277],notat:[56,261],note:[1,2,4,6,7,10,11,12,22,23,24,25,30,33,44,48,51,58,59,60,61,62,67,69,72,81,82,83,84,86,87,88,90,91,92,93,94,95,100,129,131,137,174,188,191,193,196,207,208,209,210,212,215,216,220,223,225,226,236,237,240,242,243,245,246,248,250,252,253,254,255,257,258,259,260,261,262,263,264,267,268,269,270,274,276,277,278,279,281,283,284,285,287,288,291],noth:[11,180,227,253,254,274,275],notic:[7,11,56,62,93,94,181,223,242,245,269,273,274,275],notif:[10,14,28,29,88,131,211,247,273],notifi:[10,29,211,251,252],notnul:226,nov:8,novelbit:14,now:[2,8,9,14,60,87,90,91,92,94,99,100,129,152,154,158,161,164,167,169,171,180,187,194,223,236,237,240,241,242,245,247,248,249,251,252,253,254,255,258,263,266,268,273,274,275,277,281,285,288,289],nreset:255,nrf51:[25,54,94,135,182,264],nrf51dk:[54,223],nrf51xxx:190,nrf52840pdk:33,nrf52:[4,25,62,94,135,182,186,192,208,239,240,246,256,257,258,263,274,276,278,281,286,288,289,291],nrf52_adc_dev_init:275,nrf52_bleprph_oic_bno055:276,nrf52_blinki:[257,260,262,288],nrf52_bno055_oic_test:[276,278],nrf52_bno055_test:[277,279],nrf52_boot:[237,246,260,275,276,277,278,284],nrf52_hal:94,nrf52_slinki:284,nrf52_thingi:208,nrf52dk:[38,39,54,62,63,94,226,239,245,246,249,257,260,275,276,277,278,284],nrf52dk_debug:[62,94,257],nrf52dk_download:94,nrf52k_flash_dev:[94,186],nrf52pdk:246,nrf52serial:284,nrf52xxx:[49,94,192,258,281],nrf5x:25,nrf:[26,275],nrf_drv_saadc:275,nrf_drv_saadc_config_t:275,nrf_drv_saadc_default_channel_config_s:275,nrf_drv_saadc_default_config:275,nrf_saadc_channel_config_t:275,nrf_saadc_gain1_6:275,nrf_saadc_input_ain1:275,nrf_saadc_reference_intern:275,nrf_saadc_typ:275,nrpa:[20,253,254],nsampl:277,nsec:87,nth:180,ntoh:90,ntohl:90,ntrst:255,nucleo:54,nul:180,num_block:91,num_byt:185,number:[1,8,9,10,14,23,28,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,84,85,87,88,90,91,92,93,94,99,100,101,102,129,130,140,141,142,152,158,164,169,171,172,173,174,175,176,180,183,187,188,190,191,193,194,196,198,199,200,207,215,216,220,224,225,226,230,237,239,240,242,246,252,253,254,255,257,261,263,267,268,269,273,274,275,277,278,284,287,288],numer:[14,21,23,86,94,129],nvm:255,nxp:[14,135,182],objcopi:[6,14],objdump:6,object:[4,11,49,56,62,82,87,93,94,97,100,133,167,200,202,203,204,209,211,212,251,266,277,280],objsiz:[6,49,223],observ:[15,28,213,246,280],obtain:[14,28,90,92,99,100,180,193,268,274,275],obvious:54,oc_add_devic:276,oc_add_resourc:276,oc_app_resourc:[276,278],oc_get:276,oc_if_rw:276,oc_init_platform:276,oc_main_init:[213,276],oc_new_resourc:276,oc_put:276,oc_resource_bind_resource_interfac:276,oc_resource_bind_resource_typ:276,oc_resource_set_default_interfac:276,oc_resource_set_discover:276,oc_resource_set_periodic_observ:276,oc_resource_set_request_handl:276,oc_serv:[213,237,276,278,280],oc_transport_gatt:237,oc_transport_ip:237,oc_transport_seri:237,occasion:90,occur:[27,28,90,92,101,187,188,191,225,250,251,253,254],occurr:226,ocf:133,ocf_sampl:[7,62],ocimgr:132,ock:212,oct:274,octet:[28,30,32,129],od_init:135,od_nam:209,odd:194,odditi:14,off:[2,14,21,22,32,33,85,88,90,97,98,100,131,135,141,182,183,188,205,207,209,210,214,237,239,240,241,245,246,253,254,257,261,276,278,279,280,281,283,291],off_attr:205,offer:[1,22,133,135,152,185,275],offset1:90,offset2:90,offset:[21,29,72,90,94,101,129,141,149,153,159,163,168,169,171,172,173,175,180,200,223,225,226,277],often:[9,56,94,180,188,191],ohm:275,oic:[7,52,67,133,210,211,281,291],oic_bhd:67,oic_bl:67,oic_seri:67,oic_udp:67,oic_udpconnstr:67,oicmgr:[7,67,132,133,134],okai:14,old:[46,141],older:[14,60,83,259],oldest:[141,146,150,225],olimex:[256,274,286,291],olimex_blinki:261,olimex_stm32:[54,261,287],om1:90,om2:90,om_data:90,om_databuf:90,om_flag:90,om_len:90,om_omp:90,om_pkthdr_len:90,ome:91,omgr:134,omi_block_s:91,omi_min_fre:91,omi_nam:91,omi_num_block:91,omi_num_fre:91,omit:[14,48,225],omp:90,omp_databuf_len:90,omp_flag:90,omp_len:90,omp_next:90,omp_pool:90,on_reset:27,on_sync:27,onboard:[209,210,279,283,288,289,291],onc:[20,30,56,58,62,81,85,87,90,91,92,93,100,129,144,182,191,193,234,236,237,240,241,248,253,256,257,263,268,274,275],one:[1,4,7,8,10,11,12,14,20,21,22,23,24,28,30,31,32,35,36,40,44,46,51,52,54,58,59,60,62,68,86,88,90,92,93,94,97,99,100,129,130,131,137,138,141,153,166,167,174,175,177,178,180,183,188,191,196,206,207,211,212,221,223,224,225,226,241,242,243,245,246,252,253,254,255,256,257,258,259,260,261,262,263,266,267,268,269,270,273,274,275,277,283,284,287,291],ones:[15,90,99,135,182,206,246,291],ongo:28,onli:[1,2,7,8,10,11,12,14,15,20,21,25,28,30,32,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,62,63,67,73,81,84,87,88,90,91,93,94,97,98,99,129,130,131,132,135,136,137,139,151,153,155,156,157,159,162,165,166,168,169,174,175,180,188,191,196,206,207,209,210,212,215,220,223,224,225,226,229,230,232,233,235,237,240,241,242,243,248,250,253,255,257,263,264,266,267,268,269,270,274,275,276,277,280,281,285],onlin:[255,281,288,289],onto:[1,21,43,44,48,85,88,90,94,256,258,259,260,261,262,273,274,277,284,287],oob:[14,21,28,30],opaqu:[153,193,206,207,209,211,281],open:[4,8,9,10,12,14,21,22,39,40,48,56,58,59,60,62,97,133,135,153,154,158,159,161,162,164,165,168,169,170,171,172,173,176,180,208,253,255,258,259,261,262,266,274,279,285],open_test:266,openocd:[12,94,255,258,259,261,262,287],openocd_debug:[258,274],oper:[1,9,12,16,19,21,22,27,32,40,58,59,60,85,90,97,98,99,100,101,131,133,135,153,161,162,163,168,170,174,175,179,180,181,182,183,185,187,194,207,212,224,226,235,245,246,250,251,252,253,254,255,263,266,267,269,270,273,274,277,281],oppos:[32,90,270],opt:4,optim:[1,25,33,38,39,44,51,62,90,94,95,102,135,223,236,242,245,246,249,255,258,259,260,261,262,263,267,274,275,277,281,284,287],optimis:32,option:[2,3,4,6,7,8,12,14,23,24,28,37,38,47,52,56,63,67,73,85,88,91,94,129,133,135,151,152,198,207,209,210,215,223,225,226,227,232,243,245,246,252,255,259,261,263,267,268,269,274,275,277,287],orang:[258,262],order:[1,8,9,14,23,34,56,62,64,86,88,90,91,92,98,100,102,129,130,133,180,191,207,225,226,237,241,242,263,266,269,271,274,275,281,288,289],org:[1,4,10,11,14,40,58,59,60,62,81,83,102,131,138,253,255,258,259,261,262,266,274,275,281,288,289],organ:[11,135,224,266,268],origin:[11,47,94,129,261,274],os_align:[90,91],os_arch:[62,91,101],os_bad_mutex:92,os_bsp_adc0:275,os_bsp_adc0_config:275,os_callout:[62,85,98,130,239,257,281],os_callout_f_queu:85,os_callout_func:[85,90],os_callout_func_init:85,os_callout_init:[85,98,239,257,281],os_callout_queu:85,os_callout_remaining_tick:85,os_callout_reset:[85,98,239,257,281],os_callout_stop:85,os_cfg:62,os_cli:226,os_cputim:[14,62],os_cputime_delay_nsec:87,os_cputime_delay_tick:87,os_cputime_delay_usec:87,os_cputime_freq:25,os_cputime_freq_pwr2:87,os_cputime_get32:87,os_cputime_init:87,os_cputime_nsecs_to_tick:87,os_cputime_ticks_to_nsec:87,os_cputime_ticks_to_usec:87,os_cputime_timer_init:87,os_cputime_timer_num:[25,87],os_cputime_timer_rel:87,os_cputime_timer_start:87,os_cputime_timer_stop:87,os_cputime_usecs_to_tick:87,os_dev:[62,135,207,208,209,275,279],os_dev_clos:[208,279],os_dev_cr:[135,207,208,209,212,275],os_dev_init_func_t:[135,209],os_dev_init_kernel:275,os_dev_init_primari:208,os_dev_init_prio_default:275,os_dev_open:[208,275,279],os_einv:[90,101,205],os_eno:130,os_error_t:[91,92,99],os_ev:[85,88,90,98,130,131,239,257,281],os_event_fn:[85,88,90],os_event_queu:88,os_event_t_mqueue_data:90,os_event_t_tim:85,os_eventq:[62,85,88,90,98,131,217,239,273,274,275],os_eventq_dflt_get:[27,88,93,100,131,226,239,253,254,257,279,281],os_eventq_dflt_set:274,os_eventq_get:[88,98],os_eventq_get_no_wait:88,os_eventq_init:[88,90,98,131,239,273,274],os_eventq_pol:88,os_eventq_put:[88,131,239],os_eventq_remov:88,os_eventq_run:[27,88,90,93,100,226,239,253,254,257,274,279,281],os_fault:62,os_get_uptime_usec:101,os_gettimeofdai:101,os_heap:62,os_init:[87,100],os_invalid_parm:[92,99],os_main_task_prio:[226,242],os_main_task_stack_s:226,os_malloc:[62,89],os_mbuf:[62,90,218,219],os_mbuf_adj:90,os_mbuf_append:[90,273,275],os_mbuf_appendfrom:90,os_mbuf_cmpf:90,os_mbuf_cmpm:90,os_mbuf_concat:90,os_mbuf_copydata:90,os_mbuf_copyinto:90,os_mbuf_count:90,os_mbuf_data:90,os_mbuf_dup:90,os_mbuf_extend:90,os_mbuf_f_:90,os_mbuf_f_mask:90,os_mbuf_fre:90,os_mbuf_free_chain:90,os_mbuf_get:90,os_mbuf_get_pkthdr:90,os_mbuf_is_pkthdr:90,os_mbuf_leadingspac:90,os_mbuf_off:90,os_mbuf_pkthdr:90,os_mbuf_pkthdr_to_mbuf:90,os_mbuf_pktlen:90,os_mbuf_pool:90,os_mbuf_pool_init:90,os_mbuf_prepend:90,os_mbuf_prepend_pullup:90,os_mbuf_pullup:90,os_mbuf_trailingspac:90,os_mbuf_trim_front:90,os_mbuf_usrhdr:90,os_mbuf_usrhdr_len:90,os_memblock:91,os_memblock_from:91,os_memblock_get:91,os_memblock_put:91,os_memblock_put_from_cb:91,os_membuf_t:[90,91],os_mempool:[62,90,91],os_mempool_byt:91,os_mempool_ext:91,os_mempool_ext_init:91,os_mempool_f_:91,os_mempool_f_ext:91,os_mempool_info:91,os_mempool_info_get_next:91,os_mempool_info_name_len:91,os_mempool_init:[90,91],os_mempool_is_san:91,os_mempool_put_fn:91,os_mempool_s:[90,91],os_mqueu:90,os_mqueue_get:90,os_mqueue_init:90,os_mqueue_put:90,os_msys_count:90,os_msys_get:90,os_msys_get_pkthdr:90,os_msys_num_fre:90,os_msys_regist:90,os_msys_reset:90,os_mutex:[62,92,141,207],os_mutex_init:92,os_mutex_pend:92,os_mutex_releas:92,os_ok:[92,99],os_pkg_init:226,os_san:[62,98],os_sanity_check:[98,100],os_sanity_check_func_t:98,os_sanity_check_init:98,os_sanity_check_regist:98,os_sanity_check_reset:98,os_sanity_check_setfunc:98,os_sanity_task_checkin:98,os_sch:62,os_sched_get_current_t:242,os_sched_get_current_task:[86,98,242],os_sem:[62,93,99,274],os_sem_get_count:99,os_sem_init:[14,93,99,274],os_sem_pend:[14,93,99,274],os_sem_releas:[14,93,99,274],os_sem_test_bas:231,os_sem_test_case_1:231,os_sem_test_case_2:231,os_sem_test_case_3:231,os_sem_test_case_4:231,os_sem_test_suit:231,os_settimeofdai:101,os_stack_align:[242,273,274,275],os_stack_t:[98,100,218,239,242,273,274,275],os_start:100,os_stime_t:101,os_sysview:289,os_task:[62,86,88,92,93,98,100,239,242,273,274,275],os_task_count:100,os_task_flag_evq_wait:100,os_task_flag_mutex_wait:100,os_task_flag_no_timeout:100,os_task_flag_sem_wait:100,os_task_func_t:[98,100],os_task_info:100,os_task_info_get_next:100,os_task_init:[93,98,100,239,242,273,274],os_task_max_name_len:100,os_task_pri_highest:100,os_task_pri_lowest:100,os_task_readi:100,os_task_remov:100,os_task_sleep:100,os_task_st:100,os_task_stack_defin:100,os_task_state_t:100,os_test:62,os_test_restart:234,os_tick_idl:[190,255,258,281],os_tick_init:190,os_tick_per_sec:14,os_ticks_per_sec:[14,85,98,101,130,190,209,239,242,257,273,274,275,281],os_tim:[62,101,266],os_time_adv:101,os_time_delai:[14,100,101,209,239,241,242,273,275],os_time_get:101,os_time_max:101,os_time_ms_to_tick:101,os_time_t:[85,88,98,100,101,190,207,209],os_time_tick_geq:101,os_time_tick_gt:101,os_time_tick_lt:101,os_timeout:[92,99,274],os_timeout_nev:[93,101,208,279,281],os_timeradd:101,os_timersub:101,os_timev:[101,266],os_timezon:[101,266],os_wait_forev:[88,93,100,239,242,273,274],osmalloc:89,ostask:100,ostick:101,osx:[236,241],ota:237,otg1:261,otg2:[261,287],other:[1,6,10,11,14,21,23,25,30,32,51,56,62,87,88,90,91,93,94,95,98,99,100,101,129,130,131,135,153,154,162,165,170,174,175,177,180,185,188,206,209,211,215,223,224,226,236,239,242,245,246,247,248,250,251,255,256,257,258,264,266,268,273,275,276,277,278,281,283,288,289],otherwis:[14,90,91,93,100,143,145,148,187,191,268,269],oti:100,oti_cswcnt:100,oti_last_checkin:100,oti_nam:100,oti_next_checkin:100,oti_prio:100,oti_runtim:100,oti_st:100,oti_stks:100,oti_stkusag:100,oti_taskid:100,oui:[20,263],our:[14,21,56,90,94,223,224,236,237,241,242,245,248,253,254,256,257,266,269,273,274,275,284,287],our_id_addr:[31,249],our_id_addr_typ:249,our_key_dist:28,our_ota_addr:[31,249],our_ota_addr_typ:[31,249],out:[8,9,11,21,22,23,24,27,28,62,81,82,83,85,90,96,100,129,131,137,141,142,145,147,161,162,174,181,182,183,199,201,202,203,204,223,227,234,245,247,249,253,254,256,261,267,274,286],out_cpha:191,out_cpol:191,out_data:[163,164],out_dir:[162,163,165],out_fil:[161,163],out_id_addr_typ:31,out_len:[158,163,164,172],out_nam:[137,157,163],out_name_l:157,out_name_len:[157,163],out_off:90,out_tick:101,outdat:59,outfil:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,274],outgo:219,outlin:5,output:[1,7,12,14,22,23,28,31,35,36,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,55,58,59,60,63,70,74,76,77,78,82,89,94,100,101,129,130,182,187,194,206,223,225,227,236,239,255,257,258,259,261,262,263,266,267,274,277,281,285,288],outsid:[21,22,90],outweigh:90,over:[14,21,22,23,24,28,30,32,66,67,68,69,70,71,72,73,74,75,76,77,78,90,129,134,135,137,141,143,151,188,194,206,223,237,242,250,256,257,259,263,267,273,274,276,277,278,280,283,286,288,291],overal:[10,14,25,90,100,174],overhead:90,overlap:[21,180],overrid:[51,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,94,206,223,224,237,246],overridden:[24,226,246],oversampl:275,overview:[129,277,278,281],overwrit:[6,50,51,60,61,83,84,94,131,180,255,264,267],overwrite_many_test:266,overwrite_one_test:266,overwrite_three_test:266,overwrite_two_test:266,overwritten:[129,173,180],own:[2,11,14,20,21,40,58,59,60,62,88,92,93,97,99,100,136,180,191,206,223,224,243,244,245,274,275],own_addr_t:[253,254],own_addr_typ:[28,67,253,254],owner:[88,92,270],ownership:[92,180,274,275],pacakg:245,pacif:101,pack:[4,56,82,90,240,258,260,267,277,281,284],packag:[6,9,11,14,24,25,27,35,40,41,42,44,46,51,52,53,54,56,57,59,60,61,80,84,88,93,95,100,129,130,132,133,135,138,139,153,163,174,182,183,196,197,200,208,209,212,213,214,215,223,224,231,232,233,236,239,246,256,257,258,263,265,268,269,275,278,279,280,291],package1:206,package1_log:206,package2:206,package2_log:206,packet:[21,22,28,30,188,215,219,253,263],packet_data:90,pacman:[7,60],pad:[90,129],page:[1,4,5,6,7,8,10,21,23,58,59,61,81,82,84,94,102,136,181,188,189,207,208,209,210,236,241,243,245,247,251,253,254,256,275],page_s:136,pair:[21,22,23,28,67,129,130,180,200,205,226,249,251],pakcag:215,panel:12,paradigm:90,param:[28,215,220,251],param_nam:215,paramet:[1,14,21,27,28,29,31,62,67,73,85,87,88,90,91,92,98,99,100,101,137,141,151,183,187,188,190,191,193,194,195,206,208,209,215,226,237,248,250,251,252,253,254,266],parameter_nam:226,parameter_valu:226,parent:[91,155,156,157,162,165,167,173,180],parenthes:90,pariti:194,parlanc:11,parmaet:28,parmet:[28,29],pars:[56,198,215,227,230,253,266],part:[14,23,30,90,96,129,141,169,174,175,180,181,223,248,249,252,274,275,280],parti:[253,255,267],partial:[65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,129,174,175],particular:[4,14,21,48,62,90,93,94,97,98,129,131,135,153,182,191,193,200,234,251,253,254],particularli:264,partit:[21,94,129,174,180,223],partner:14,pass:[1,7,12,14,21,28,62,85,87,88,90,91,92,98,99,100,131,135,136,140,141,151,161,164,172,180,187,188,191,193,194,200,207,208,209,211,215,218,228,229,230,231,248,252,253,254,266,275,281],passiv:[14,28],passkei:[14,21,23,28],password:[11,59,81,246,270],past:[21,90,275],patch:[258,259,262],path:[2,4,6,11,12,14,30,51,58,59,60,61,62,67,81,82,83,84,94,95,153,160,161,162,163,167,170,172,173,226,268,274,275],pathloss:30,pattern:[28,94,242],payload:[90,133,134,188],pc6:287,pc7:287,pca100040:246,pca:[240,260,275],pcb:274,pci:[135,182],pcmcia:[135,182],pdata:188,pdf:[236,287],pdt:[101,266],pdu:[21,28],peek:242,peer:[10,23,29,67,191,240,250,252,253,254],peer_addr:[28,31,67,248],peer_addr_typ:[28,31,67,248],peer_id:67,peer_id_addr:249,peer_id_addr_typ:249,peer_nam:[14,67,240],peer_ota_addr:249,peer_ota_addr_typ:249,pem:[38,47],pencil:10,pend:[21,85,88,92,99,129,188,240],per:[11,14,20,90,92,129,130,174,183,187,191,194,224,242,266,269,274],perfom:129,perform:[3,4,5,9,11,12,14,21,23,26,28,37,58,59,60,65,81,82,83,90,91,93,94,98,100,102,129,131,136,152,153,167,180,188,193,212,223,226,236,240,250,255,257,258,263,269,273,274,275,276,277,278,281],perhap:268,period:[9,14,20,23,28,85,98,190,195,239,242],peripher:[9,14,21,22,25,27,30,31,94,97,135,182,183,188,191,224,240,244,245,248,251,252,253,273,274,275],perman:[72,129,180,223,240,248,251],permiss:[274,275],permit:[21,252,255,281,288,289],persist:[14,129,152],perspect:223,pertain:251,petteriaimonen:102,phdr:90,phone:[14,23,32],php:56,phy:[22,28],phy_opt:28,physic:[22,28,30,67,131,184,187,194],pick:[86,93,206,253,254],pictur:[236,258],pid:259,piec:[22,94,274],pig:243,pin:[7,8,21,94,97,100,135,182,184,187,188,191,192,194,207,236,239,257,258,261,263,267,274,275,277,281,287],ping:93,pinout:96,pipe:14,piqu:291,pitfal:90,pkcs15:129,pkg1:225,pkg2:225,pkg:[1,7,11,40,44,51,54,56,58,59,60,62,95,96,102,131,135,136,137,152,153,181,182,206,208,215,224,225,226,237,239,245,257,266,274,275,276,281],pkg_init_func1_nam:226,pkg_init_func1_stag:226,pkg_init_func2_nam:226,pkg_init_func2_stag:226,pkg_init_func:226,pkg_init_funcn_nam:226,pkg_init_funcn_stag:226,pkg_test:233,pkga_syscfg_nam:226,pkga_syscfg_name1:226,pkga_syscfg_name2:226,pkgn_syscfg_name1:226,pkt:274,pkthdr_len:90,pkts_rxd:90,place:[3,56,62,88,101,102,129,141,169,188,191,223,226,232,237,241,242,245,246,252,253,254,261,269,274,283],plai:[12,14,22,283],plain:[223,259,269],plan:[2,14,135,215],platform:[2,7,9,11,12,24,25,58,59,60,67,81,82,83,85,93,94,95,97,135,183,188,191,193,232,240,242,245,255,257,258,259,261,262,267,274,275,277,284,285,286,287],pleas:[14,40,58,59,60,95,96,207,211,212,224,236,241,255,256,268,275,281,288,289],plenti:[242,274],plist:62,plu:[90,157,180,188],plug:[8,181,236,261,262,274,275],plumb:273,pmode:277,point:[2,4,6,14,32,86,90,92,94,96,100,102,129,131,135,142,143,144,145,146,148,149,150,151,162,163,165,180,191,207,245,250,251,253,254,274,275,276],pointer:[68,85,86,87,88,90,91,92,94,99,100,101,131,135,141,142,143,151,154,156,157,158,159,161,163,164,169,171,172,173,180,181,183,188,191,193,198,199,200,206,207,208,209,212,215,216,217,220,221,227,242,250,251],poke:275,polici:[28,268],poll:[14,88,93,211,277,281],poll_du:277,poll_dur:277,poll_interv:277,poll_itvl:277,poller:[207,211,212,281],pong:93,pool:[74,81,93,263,278,285],popul:[1,7,12,51,63,101,176,180,232,256,267,283,286,291],port:[2,12,67,93,131,135,187,194,206,224,237,246,255,257,258,259,260,261,262,267,274,277,281,284,285,286,287,291],portabl:[135,182],portingto:95,portion:[129,147,188,273,275],posit:[90,101,129,159,169,172,195,261],posix:60,possibilti:[288,289],possibl:[14,22,23,25,28,29,31,33,37,54,90,92,101,129,135,153,174,175,180,182,183,206,223,224,252,268,277,288],post:[50,85,90,135,239,245],potenti:[97,223,269],pour:[59,82],power:[2,9,14,21,22,23,28,30,32,56,94,97,131,135,182,183,191,192,209,237,240,246,255,260,261,263,267,276,277,278,279,281,284,287],ppa:4,pre:[4,9,206,224,268,269],precaut:250,prece:90,preced:24,precis:[6,21],predict:242,preempt:[92,93,99,100],preemptiv:[93,100,242],prefer:[3,28,30,139,240,250,274],preference0x01:28,prefix:[62,180,210,226,275],preload:191,prepar:[21,258,260,263,275],prepend:90,preprocessor:[215,224],prerequisit:12,presenc:[94,180,248,253,254,268],present:[1,14,90,94,129,131,180,196,208,223,246,261,266,275],preserv:90,press:[8,12,14,99,239,242,245,267,274,277,289],presum:[90,263],pretti:[14,275],prev:[100,180],prev_ind:251,prev_notifi:251,prevent:[92,93,129,170,250],previ:[249,251],preview:[243,246],previou:[22,57,58,59,60,79,80,81,82,83,100,129,180,200,225,226,245,246,257,268,273],previous:[6,12,58,59,60,61,81,82,83,84,191,237,249,271,275,277],prevn:[249,251],pri:[78,183,274,284,287],primari:[28,94,129,133,167,240,252,254,273],primarili:102,primary_phi:28,primo:[256,273,274],primo_boot:258,primo_debug:258,primoblinki:258,print:[49,58,59,60,63,130,131,137,155,156,157,162,165,172,194,215,225,227],print_statu:172,print_usag:198,printabl:199,printf:[102,137,227,230],prio:[98,100,190,218],prior:[23,25,50,90,93,129,167,176,180,191,193,263],prioriti:[14,78,86,88,92,93,99,100,135,174,183,190,226,239,246,275,291],priv:28,privaci:[20,22,28],privat:[20,23,33,38,47,58,67,81,129,253,254],privileg:2,prng:14,pro:[14,242,255,258],probabl:[7,14,94,247,270,274],probe:[188,258,267,281],problem:[7,99,129,162,223,225],proce:[3,6,11,129,234,255,258,259,260,261,262,266,267,274,284,287],procedur:[6,11,17,20,21,23,28,29,65,76,81,82,83,129,180,181,223,277,280],proceed:[7,247,253,254],process:[3,6,9,10,14,21,23,27,28,32,62,85,86,88,90,94,100,129,131,132,180,212,213,217,223,224,226,236,237,239,242,253,254,276,279,280,281,288,289],process_data:170,process_rx_data_queu:90,processor:[4,9,90,100,135,182,183,187,242,255,261,281,288,289],produc:[99,129,224,230,259],product:[14,56,97,175,187,210,246,274,287],profil:[15,16,17,18,22,28,29,32,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,245,255,284,286,287],profile01:[66,68,69,70,71,72,73,74,75,76,77,78],profile0:78,program:[4,6,8,12,24,86,129,131,189,192,236,242,255,257,258,260,263,267,275],programat:131,programm:[259,288,289],programmat:[138,281],progress:[7,14,21,129,135,136,180,191,244],prohibit:168,project:[3,6,8,11,34,35,40,41,42,45,50,51,53,56,58,59,60,62,64,89,100,102,129,130,131,136,137,139,152,177,178,182,196,206,224,231,232,239,241,242,243,249,266,270,271,276,277,281,282,283,288,291],prompt:[7,8,11,12,48,59,60,94,245,255,257,258,259,260,261,262,274,277,281],prone:252,proper:[135,275],properli:[25,62,93,98,242,246,250,273,274,275],properti:[12,20,32,60,94,129,134,174,175,180,206,236,247,258],proport:180,propos:10,propper:274,prot_length:90,prot_tif:90,prot_typ:90,protcol:90,protect:[23,89,129,141],protocol:[14,15,21,22,29,62,67,90,129,133,134,188,278,280,283,286],prototyp:[97,194,226,253,254],provid:[1,2,7,9,11,12,14,20,21,22,23,28,31,32,38,40,46,51,58,59,60,67,71,72,73,76,81,85,87,89,90,91,92,93,94,96,97,98,100,101,129,131,135,136,137,141,152,153,174,182,187,188,191,193,198,207,210,212,213,215,224,232,235,237,247,253,254,255,263,266,267,268,269,274,275,280],provis:[14,22,33],provision:[14,32],proxi:[22,32],pseln:275,pselp:275,pset:191,psm:[14,28],psp:[255,259],pst:[69,101,266],pth:261,ptr:194,public_id:28,public_id_addr:31,public_target_address:30,publish:[14,23],pull:[11,14,50,81,83,88,90,135,187,239,257,261],pulldown:187,pullup:[90,187],purpos:[4,14,23,51,56,94,98,129,182,187,206,209,211,223,224,242,250,263,275,281],push:[10,14,243],put:[1,2,7,44,62,81,83,88,90,91,92,94,99,100,101,134,183,242,248,253,254,266,275],putti:[8,257,267,277],pwd:[2,11],pwm:[9,14],pwr:[259,261],px4:4,python:[34,64],qualifi:250,qualiti:282,quat:277,queri:[9,20,51,56,58,59,60,62,63,90,134,156,157,158,159,172,180,207,209,224,248,277,285],question:245,queu:[21,85,88,194,239],queue:[27,62,85,87,90,93,98,99,100,131,180,193,212,215,217,219,226,237,253,254,273,279,281,283,291],quick:[2,3],quickli:[101,182,242,275,277,280,281,283],quickstart:[2,242],quiet:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,274],quit:[20,94,245,248,253,254,255,258,259,261,262,288],quot:67,r_find_n:212,r_lock:212,r_match_:212,r_regist:212,r_unlock:212,radio:[22,25,246],raff:82,rais:92,ram:[49,94,96,174,183,223,245,255,274,275,276],ram_siz:94,ran:98,rand:[14,28],random:[20,21,26,28,31,67,246,252,253,254,273],random_id:28,random_id_addr:31,randomli:20,rang:[9,21,22,30,90,102,180,198,263],rare:90,rate:[14,67,85,131,212,213,246,263,277,280,281],rather:[14,15,21,94,101,102,129,153,167,223,275],raw:[11,58,59,60,81,82,83,131,174,180,226,227,275],rb_bletini:51,rb_blinki:[44,51],rb_blinky_rsa:44,rb_boot:44,rbnano2_blinki:262,rbnano2_boot:262,reach:[98,193],read:[4,6,7,11,12,15,19,20,21,24,28,29,56,62,65,66,69,74,77,78,81,82,83,88,90,100,129,130,131,135,136,137,141,143,146,147,151,153,154,155,156,157,159,161,162,164,165,169,170,172,180,185,187,188,193,200,205,206,211,212,213,214,226,227,236,237,239,240,242,249,251,252,253,254,255,256,259,262,263,266,267,268,273,274,275,276,277,278,280,283,286,288,289],read_acceleromet:281,read_cb:281,read_chr:250,read_config:[154,161,164],read_part1_middl:169,read_rsp_rx:77,read_rsp_tx:77,read_sensor_interv:281,read_test:266,read_type_req_rx:77,read_type_req_tx:[77,237],read_type_rsp_rx:[77,237],read_type_rsp_tx:[77,237],readabl:[246,270],readdesc:7,readdir_test:266,reader:[266,273,275],readi:[10,86,88,100,131,194,200,242,255,274,288],readili:135,readm:[7,11,56,62,94,245,266],readnow:62,real:[1,7,9,14,88,93,101,131,180,200,235,239,245,252,281,288],realist:266,realli:[14,90,275],rearm:85,rearrang:90,reason:[14,21,27,28,90,91,129,192,242,249,251,263,266,268],reassembl:22,rebas:11,reboot:[7,14,72,129,192,223,225,240,276,278],reboot_log:73,reboot_log_flash_area:[225,226],reboot_start:279,rebuild:[14,33,62,83,279],rec0:129,rec1:129,rec2:129,recal:[250,268],receiv:[10,14,15,21,28,30,32,56,82,90,131,132,137,188,191,194,207,212,215,218,221,237,248,251,252,259,263,281,284,287],recent:[180,258],recip:6,recipi:30,reclaim:180,recogn:[56,180,275],recommend:[3,4,7,12,14,58,59,81,82,90,131,189,208,209,215,225,226,237,239,248,252,258,262,264,277,283,288],reconfigur:[191,194,279],reconnect:250,record:[129,180,209,224,232,289],recov:129,recover:129,recreat:269,recur:195,recurs:[56,62,91,170],red:[28,29,236,259,261,287],redbear:[256,291],redefin:225,redistribut:[56,255,268,281,288,289],redo:14,reduc:[9,23,25,32,88,102,133,206,237,239,265],redund:223,reenter:264,ref0:68,refer:[7,8,10,14,19,23,24,30,56,68,94,167,170,180,191,210,216,220,223,243,248,253,254,255,257,261,267,274,275,277,287],referenc:[1,180,187],reflect:249,reformat:180,refrain:27,refresh:[2,50,243,255],refus:[281,288],regard:[174,175,266,274,275],regardless:42,region:[14,90,94,129,168,174,175,180],regist:[14,24,76,86,90,95,130,132,135,139,153,163,166,182,183,188,197,206,207,211,213,216,218,220,221,222,226,242,250,252,274,275,281],register_:211,registr:[18,181,224,250,281],registri:[90,209],regress:[228,229,231,232,233],regular:[90,156,266],reject:[21,266],rel:[14,90,93,149],relai:[22,32],relat:[10,28,32,44,136,223,248,251,255,263,281,288,289],relationship:[28,99],releas:[3,4,7,32,50,57,79,80,90,91,92,93,99,135,187,188,215,226,255,267,268,269],release_not:[7,11],relev:[96,129,135,187],reli:[1,7,56,226],reliabl:[14,22,129,152,174,253,254,269],reload:14,remain:[94,164,170,180,223,227,230,242,250],remaind:[94,180,230,248,266,268],rememb:[2,42,81,83,92,255,273],remind:255,remot:[1,7,9,12,21,28,29,50,56,67,79,81,82,83,133,188,236,237,239,240,246,255,256,257,267,274,275,281,283,285,286,291],remov:[2,4,6,28,36,46,61,84,87,88,90,91,99,100,131,137,180,223,250,255,281],renam:[14,167],rename_test:266,repeat:[2,11,21,188,241,250],repeatedli:[30,129],replac:[4,6,94,96,102,196,223,226,227,230,241,255,257,273,284,287],repli:28,repo814721459:56,repo:[1,6,7,10,11,14,42,56,58,62,81,94,135,153,223,236,243,245,255,257,258,259,260,261,262,263,266,267,270,274,275,276,277,281,284,285,287,288,289],repop:7,report:[1,4,6,10,14,21,94,183,194,224,227,230,255,259,266,274,281,288,289],reposistori:7,reposit:169,repositori:[1,4,11,12,41,42,45,50,52,53,58,62,81,135,236,243,244,245,247,255,256,263,267,271,274,283,286,291],repres:[1,12,14,62,88,90,99,101,129,131,160,180,207,209,211,212,215,242,252],represent:[129,133],reproduc:[1,62,129,181,253,254],req_api:[62,131,206],req_len:90,request:[12,14,21,28,67,68,75,79,90,92,94,99,129,133,134,137,141,164,180,192,210,211,213,215,223,237,249,250,255,259,261,263,268,269,273,275,276,280,281,284,287],requir:[1,2,4,6,9,11,21,25,31,32,54,60,62,67,81,83,88,90,91,93,95,96,97,99,129,131,133,136,153,163,174,175,180,193,206,208,215,223,224,225,226,229,236,237,239,242,245,248,250,255,258,262,263,266,268,269,273,274,275,277,279,280,281,291],res:276,reserv:[21,90,94,97,142,144,180,207,242,263],reserved16:180,reserved8:180,reset:[26,65,79,81,82,83,85,98,132,133,192,223,234,237,245,246,249,258,259,260,262,275,277,281,288,289],reset_cb:27,reset_config:255,reset_handl:[94,261],resid:[97,129,175,180,241,252,274],resign:[58,59,60],resist:275,resistor:[239,275],resolut:[23,87,193,224,275],resolv:[1,20,21,23,28,33,56,67,82,225,236,253,254,268],resourc:[9,21,30,62,89,92,99,134,210,211,213,215,236,239,255,276,278,280,281,287,288,289],respect:101,respond:[18,26,223,248,250,252,273,274],respons:[14,16,21,29,30,70,86,91,93,131,133,137,213,223,242,248,250,267,274,280,284,285,287],rest:[1,14,47,62,90,180,198,200,227],restart:[2,129,130,141,180,192,255],restor:[14,130,174,177,178,180,258,260,263,275],restrict:[129,141,174,175,180,215,226,250,251],restructuredtext:10,result:[12,14,21,59,63,90,101,161,162,175,180,199,207,224,226,230,232,252,259,266,273,274,275],resum:[22,100,129,180,248,251],resynchron:50,retain:[129,180,226,251],retent:183,retransmit:32,retreiv:134,retri:[262,263],retriev:[58,81,88,90,101,133,153,155,156,157,158,159,162,164,165,172,175,207,209,245,283],reus:[56,82,129,226],reusabl:56,rev:277,revdep:[1,51,63],revers:[1,24,51,63,129,180,250,261],revert:[129,240],review:[10,223,248,266],revis:[4,198,277],revision_num:[268,269],revisit:[245,251],rewrit:180,rewritten:180,rfc:[69,200,266],ribbon:[261,287],rigado:[49,260,275],right:[2,3,10,14,56,62,130,243,248,261,275],rimari:252,ring:99,rise:187,ristic:252,rite_fil:153,robust:152,role:[14,21,22,31,32,99,250],room:[90,180,242],root:[2,4,8,32,81,137,166,180,236,268],rotat:167,rotate_log:167,routin:[102,130,141,142,144,163,181,200,231,274],rpa:[20,28],rpa_pub:[28,67],rpa_rnd:[28,67],rsa2048:129,rsa:129,rsp:28,rssi:[28,30,246],rtc:9,rto:[56,93,242],rtt:[14,131,290,291],rtt_buffer_size_down:288,rubi:[11,56,59],rule:[226,259,266],run:[2,3,4,5,6,8,9,11,24,25,31,35,40,42,44,51,53,56,58,59,60,61,62,65,67,68,78,79,81,82,83,84,85,86,87,88,90,92,93,94,97,98,99,100,129,130,132,133,136,137,153,161,162,180,193,213,215,221,223,225,233,234,235,236,237,240,241,242,245,246,253,254,256,258,259,260,261,262,263,266,267,274,275,276,277,278,279,281,284,286,287,291],runner:12,runtest:[7,132,237],runtest_newtmgr:237,runtim:[26,78,100,255,267,274,284,287],runtimeco:[58,59,60,81,82,83,236,255,267,268,275],rwx:94,rwxr:[81,83],rx_cb:131,rx_data:274,rx_func:194,rx_off:274,rx_phys_mask:28,rx_power:28,rxbuf:191,rxpkt:90,rxpkt_q:90,s_cnt:224,s_dev:207,s_func:207,s_hdr:224,s_itf:207,s_listener_list:207,s_lock:207,s_map:224,s_map_cnt:224,s_mask:207,s_name:224,s_next:[207,224],s_next_run:207,s_pad1:224,s_poll_rat:207,s_size:224,s_st:[207,281],s_type:207,saadc_config_irq_prior:275,saadc_config_oversampl:275,saadc_config_resolut:275,sad:281,sad_i:281,sad_x:281,sad_x_is_valid:281,sad_y_is_valid:281,sad_z:281,sad_z_is_valid:281,safe:[91,153],safeguard:93,safeti:250,sai:[14,62,90,100,255,267,268,269,274],said:[187,275],sam0:255,sam3u128:[258,260,263,275,281],samd21:[255,267],samd21g18a:255,samd21xx:255,samd:255,same:[6,10,12,14,23,30,35,38,48,52,60,62,79,90,92,94,95,99,129,131,152,174,180,188,212,223,224,225,226,227,236,239,241,242,248,250,251,256,258,260,263,268,269,270,275,276],sampl:[1,12,22,31,62,90,95,135,213,223,226,275,276,278,280,281,286],sample_buffer1:275,sample_buffer2:275,sample_cmd:222,sample_cmd_handl:222,sample_command:220,sample_modul:[220,222],sample_module_command:220,sample_module_init:220,sample_mpool:220,sample_mpool_help:220,sample_mpool_param:220,sample_target:54,sample_tasks_help:220,sample_tasks_param:220,sane:100,saniti:[78,93,100,245],sanity_interv:98,sanity_itvl:[98,100],sanity_task:98,sanity_task_interv:98,satisfactori:268,satisfi:[180,269],sattempt_stat:224,save:[12,32,50,51,72,101,130,131,188,209,242,250],saw:251,sbrk:[94,258,259,260,261,262],sc_arg:98,sc_checkin_itvl:98,sc_checkin_last:98,sc_cmd:[215,216,220,221,222,274],sc_cmd_f:215,sc_cmd_func:[215,216,220,221,222,274],sc_cmd_func_t:215,sc_func:98,sc_next:153,sc_valtyp:207,scalabl:[152,180],scale:32,scan:[14,16,22,25,27,28,30,180,246,248,276,278],scan_interv:28,scan_req:28,scan_req_notif:28,scan_result:267,scan_rsp:28,scan_window:28,scannabl:[28,31],scenario:[23,99,196],scene:32,schedul:[9,14,25,85,88,93,97,100,101,242],schemat:[94,287],scheme:[14,20,30,94],scientif:22,sck_pin:[136,137],scl:[188,277],sco:21,scope:[12,90,242],scratch:[94,129,141,142,144,223],screen:[8,263],script:[7,43,62,138,140,261],scroll:[12,237,249],sd_get_config:[207,209],sd_read:[207,209],sda:[188,277],sdcard:137,sdk:[46,54,226],search:[12,88,95,135,177,180,212,245,255,261,268,276,281,288,289],searchabl:135,sec000:129,sec125:129,sec126:129,sec127:129,sec:[277,281],second:[14,23,27,28,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,85,90,91,94,98,100,101,129,141,195,215,223,236,241,242,248,253,254,257,261,266,273,274,275,277,281],secondar:252,secondari:[28,72,94,129,240,252,274],secondary_phi:28,secret:[23,28],section:[1,5,6,7,11,12,14,15,25,26,30,31,62,90,93,94,100,129,180,209,223,225,226,237,240,242,244,248,251,252,255,256,267,268,269,275,283,285,286],sector:[129,141,142,147,149,150,151,180,185,261],sector_address:[136,185],secur:[14,22,129,223,252,270,273],see:[2,4,5,6,7,8,10,11,12,14,22,23,24,25,34,37,44,56,58,59,60,62,64,65,67,81,82,83,88,90,92,93,94,97,100,129,138,148,161,182,188,191,200,206,207,208,209,210,211,212,213,214,215,224,225,226,236,237,240,241,242,243,245,246,248,249,250,252,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,273,274,275,276,277,278,280,281,283,284,286,287,288,289],seek:[90,169,180],seem:[14,248,275],seen:[91,186,189,268,291],segger:[131,240,258,260,263,267,275,277,281,284,290,291],segger_rtt:14,segger_rtt_conf:288,segment:[22,90,276],sel:287,select:[4,12,14,20,22,56,60,180,187,191,207,215,255,257,258,259,261,276,278,287,289],selector:207,self:[3,31,95,253,254,266],selftest:266,sem:99,sem_token:99,sema:274,semant:251,semaphor:[14,93,100,274],semi:274,send:[3,14,15,21,28,29,32,39,43,48,65,67,68,70,75,79,81,82,83,90,131,133,134,188,191,194,213,235,236,241,248,256,273,275,280,285,291],send_pkt:90,sender:248,sens:[21,129,223,275],senseair:[273,274],senseair_cmd:274,senseair_co2:[273,274],senseair_init:274,senseair_read:[273,274],senseair_read_typ:[273,274],senseair_rx_char:274,senseair_shell_func:274,senseair_tx:274,senseair_tx_char:274,sensi:276,sensibl:226,sensor:[9,32,135,224,291],sensor_accel_data:281,sensor_callout:281,sensor_cfg:[207,209],sensor_cli:[214,277,278,281],sensor_cr:[208,277,279],sensor_data_func_t:[209,211],sensor_data_funct_t:209,sensor_dev_cr:208,sensor_devic:207,sensor_driv:[207,209],sensor_ftostr:281,sensor_g:207,sensor_get_config_func_t:[207,209],sensor_get_itf:209,sensor_in:207,sensor_init:[207,209],sensor_itf:[207,208,209],sensor_itf_i2c:[207,208],sensor_itf_spi:207,sensor_itf_uart:207,sensor_listen:[207,211,281],sensor_lo:207,sensor_mg:212,sensor_mgr_find_next_bydevnam:[212,281],sensor_mgr_find_next_bytyp:212,sensor_mgr_l:212,sensor_mgr_lock:212,sensor_mgr_match_bytyp:212,sensor_mgr_regist:[207,209,212],sensor_mgr_unlock:212,sensor_mgr_wakeup_r:[212,281],sensor_nam:277,sensor_o:[213,276,277,278,280,281],sensor_offset:277,sensor_oic_init:[213,276],sensor_oic_obs_r:[213,280],sensor_r:[207,211],sensor_read:[207,211],sensor_read_func_t:[207,209],sensor_register_listen:[211,281],sensor_s:207,sensor_set_driv:[207,209],sensor_set_interfac:[207,209],sensor_set_poll_rate_m:[207,212,281],sensor_set_type_mask:[207,209],sensor_shel:277,sensor_timestamp:207,sensor_type_acceleromet:[207,208,209,279,281],sensor_type_al:207,sensor_type_eul:[209,279],sensor_type_grav:[209,279],sensor_type_gyroscop:[207,209,279],sensor_type_light:207,sensor_type_linear_accel:[209,279],sensor_type_magnetic_field:[207,209,279],sensor_type_non:207,sensor_type_rotation_vector:[209,279],sensor_type_t:[207,209,211,212,281],sensor_type_temperatur:[207,209],sensor_type_user_defined_6:207,sensor_un:[207,211],sensor_unregister_listen:[211,281],sensor_value_type_float:[207,209],sensor_value_type_float_triplet:[207,209],sensor_value_type_int32:207,sensor_value_type_int32_triplet:207,sensor_value_type_opaqu:207,sensor_value_type_temperatur:209,sensornam:[207,208,209,210,277,279,281],sensorname_cli:209,sensorname_ofb:277,sensors_o:278,sensors_test:[276,277,279,280],sensors_test_config_bno055:279,sent:[21,30,131,180,188,191,194,215,250,252,263],sentenc:[63,243],sep:[4,82,83],separ:[21,27,35,36,51,52,67,129,135,177,180,198,206,223,224,250,253,254,255,258,259,261,262,263],seper:288,sequenc:[93,129,131,174,180,227,230],sequenti:[174,175,180],seri:[129,160,192,252,291],serial:[67,88,129,130,131,133,134,135,141,183,188,191,224,237,239,240,258,262,263,274,276,277,278,285,286],serror_stat:224,serv:[19,56,94,141,210,223,276],server:[12,14,15,19,21,22,28,32,134,210,211,213,223,243,252,263,273,276,278,280,281],servic:[14,17,18,22,28,29,30,32,93,97,135,182,235,248,249,250,251,267,269,274,276],service_data_uuid128:[28,30],service_data_uuid16:30,service_data_uuid32:[28,30],sesnor:281,session:[12,39,40,48,56,58,59,60,62,94,255,258,259,261,262,288],set:[1,2,7,8,9,10,12,20,21,24,25,28,29,30,32,33,35,37,38,40,51,54,56,57,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,82,83,85,87,90,97,98,99,100,101,129,130,131,135,136,146,153,154,158,161,163,164,168,171,174,176,177,178,180,182,187,188,190,191,193,194,195,200,208,210,212,213,214,215,216,220,221,222,223,224,232,236,239,240,242,246,249,250,253,254,255,256,258,259,260,261,262,263,264,266,267,268,269,270,273,275,277,278,280,281,283,284,286,287,288],setting1:225,setting2:225,settl:26,setup:[11,58,60,61,72,81,83,84,209,223,237,240,245,246,256,257,273,274,275,277,281,283,284,285,286,287],sever:[3,14,21,22,24,28,62,94,95,97,101,129,180,223,226,234,235,252,253,254,260,261,268],sha256:129,sha:129,shall:[14,25,28,30],share:[4,23,89,90,92,93,99,223,239,268],sheet:209,shell:[1,7,8,14,22,31,56,60,81,97,130,131,138,139,206,210,216,217,218,219,220,221,222,224,225,226,236,237,242,256,263,264,273,274,276,277,278,283,288],shell_cmd:[215,216,220,221,222,274],shell_cmd_argc_max:[215,263],shell_cmd_func_t:215,shell_cmd_h:215,shell_cmd_help:[215,220,264],shell_cmd_regist:[215,221,274],shell_compat:215,shell_complet:215,shell_evq:274,shell_init:226,shell_max_compat_command:[215,216],shell_max_input_len:139,shell_max_modul:[215,220],shell_modul:215,shell_newtmgr:[215,237],shell_nlip_input_func_t:218,shell_nlip_input_regist:215,shell_os_modul:[215,264],shell_param:[215,220],shell_prompt_modul:[215,257],shell_regist:[215,222],shell_sample_mpool_display_cmd:220,shell_sample_tasks_display_cmd:220,shell_stack:[139,274],shell_stack_s:274,shell_task:[215,225,226,237,257,264,274,277,281],shell_task_handl:274,shell_task_init:139,shell_task_prio:[139,274],shell_task_prior:225,shell_task_stack_s:139,shield:93,shift:[12,22],ship:[6,14],shortcut:[12,274],shorten:248,shorter:[180,241],shorthand:[90,268],shortli:275,shot:263,should:[4,8,10,12,14,20,27,31,33,56,58,60,62,82,85,86,87,88,90,91,94,97,98,99,100,129,131,135,138,139,141,147,151,153,157,158,161,171,174,180,182,183,188,191,193,194,195,198,200,209,212,215,224,226,230,232,236,241,242,246,248,249,250,251,253,254,255,257,258,259,260,261,262,263,266,267,268,271,274,275,276,277,279,281,284,287,288,289],show:[1,4,5,6,7,8,11,12,14,28,29,32,37,40,41,44,51,54,58,59,60,61,62,63,73,81,82,83,84,90,100,130,131,194,206,220,223,225,226,232,235,236,237,239,240,242,243,246,252,255,256,257,258,259,260,261,262,263,267,273,274,275,276,277,278,279,280,281,283,284,285,287,288,289,291],shown:[6,7,12,44,56,62,90,93,129,136,193,209,224,236,250,255,258,263,266,268,270,273,275,277,279,281,285],si_addr:[207,208],si_cs_pin:207,si_num:[207,208],si_typ:[207,208],sibl:[11,269],sid:28,side:[12,14,22,31,130,274],sierra:[59,82],sig:[21,30,32],sign:[6,10,38,47,48,58,59,60,81,207,241,246,256],signal:[21,22,27,30,100,191,251],signatuar:12,signatur:[28,47,129],signed_imag:129,signifi:188,signific:[20,90,191,223,263],significantli:[14,32],signigic:90,silent:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,226,274],silicon:33,sim1:[284,285,287],sim:[6,7,62,95,274,284,286,287],sim_slinki:[225,285],similar:[1,8,12,14,93,94,208,246,263,266,273],similarli:[90,206],simpl:[12,21,22,62,86,90,93,94,99,100,102,130,133,135,152,182,224,236,242,247,248,253,254,257,275,281,283],simplehttpserv:[34,64],simpler:[94,252],simplest:[90,284,287],simpli:[6,10,88,90,91,99,100,131,182,223,236,242,244,249,255,273],simplic:[129,253,254],simplifi:[14,21,88,91,188],simul:[2,3,5,6,51,234,242,281,285],simultaen:90,simultan:[14,28,30,31],simultaneosli:153,sinc:[3,14,21,25,33,62,90,93,94,99,101,129,191,215,224,240,241,242,245,246,253,254,255,257,267,268,273,274,275,276],singl:[2,3,7,14,23,40,48,56,58,59,60,88,90,99,100,129,135,153,172,174,175,180,209,224,226,247,248,252,253,266,268],singli:180,sissu:192,sit:[15,19,135,182,223],site:[247,258,262],situat:[93,223],six:[23,24],size:[9,21,28,30,40,56,58,59,60,62,74,78,88,90,91,94,100,101,102,129,131,133,136,157,174,175,176,180,191,205,206,223,224,225,226,227,235,237,242,255,259,261,263,265,278],size_t:[157,163,200],sizeof:[90,130,137,154,155,156,157,161,162,164,165,172,205,208,227,242,248,250,251,254,273,274,275],skelet:246,skeleton:[7,45,51,236,245,246,255,258,259,260,261,262,263,267,275,284,285,287],skip:[6,11,48,60,129,141,143,255,258,259,260,261,262,267,284,287],sl_arg:[211,281],sl_func:[211,281],sl_next:211,sl_sensor_typ:[211,281],slash:180,slave:[28,30,188,191],slave_interval_rang:30,sleep:[9,86,88,90,92,99,100,101,183,239,242,257],slightli:[97,223],slink:[284,285,287],slinki:[7,46,62,131,153,177,178,223,225,226],slinky_o:[7,62],slinky_sim:225,slinky_task_prior:225,slist_entri:[153,180,207,211],slist_head:[92,207],slot0:129,slot1:129,slot:[7,14,21,62,72,196,223,240,246,249,255,257,258,259,260,261,262,263,264,267,274,277,281,284,287,288,289],slower:[3,97,98],small:[21,25,90,131,135,172,223,224,252,259,266,274,275],smaller:[14,90,133,195,223,243,255],smallest:[90,180],smart:[22,32,56,62,274,280],smarter:269,smp:[21,22],snapshot:[44,258,262,269],snip:[1,37,44,56,62,237,245,246,275],snippet:250,soc:[14,97],socket:2,soft:[65,81,82,83,192],softwar:[1,3,4,6,22,39,43,48,51,97,98,129,182,235,240,255,258,260,261,267,268,274,275,277,281,284,288],solder:274,solut:[56,182,253,254],solv:[129,223],some:[1,8,12,14,31,65,77,90,91,93,94,97,99,100,102,129,131,137,141,152,153,154,161,164,174,175,183,191,194,206,220,225,232,236,237,242,247,248,249,250,251,253,254,257,258,259,262,263,264,266,267,268,274,275,281,284,287,288,289,291],somebodi:[130,274],somehow:62,someon:[10,86,275],someth:[14,21,236,245,246,267,270,288],sometim:[130,255,267,288],somewhat:[93,129,180],somewher:[14,129,180,223,275],soon:[22,269,275],sooner:195,sophist:242,sort:[180,249],sound:14,sourc:[1,4,9,22,25,51,57,59,61,62,80,82,84,90,97,129,130,135,167,180,209,210,226,232,239,247,255,258,259,261,267,268,269,275,281,283,287],space:[12,22,35,36,51,52,67,90,97,141,142,157,174,175,188,196,199,215,223,224,245,253,256,267,283,286,291],spare:14,spec:[14,21],specfi:277,special:[8,90,97,136,223,227,230,252,253,254,266,267,268,269,274,277],specif:[11,14,21,22,23,24,30,32,58,59,60,62,63,86,88,90,91,93,94,96,97,101,129,133,135,151,153,174,175,182,187,188,190,191,192,193,194,196,206,207,209,223,226,227,231,232,237,242,246,248,250,251,253,254,255,261,263,266,267,268,274,275,284,287],specifi:[1,4,6,7,11,12,14,21,28,31,35,36,38,40,42,44,46,47,51,52,54,56,58,59,60,62,66,67,68,69,70,71,72,73,74,75,76,77,78,85,87,88,90,91,94,97,98,100,101,102,131,133,134,151,153,154,155,156,157,158,159,160,161,162,164,165,167,168,169,170,171,172,173,175,177,178,180,183,187,188,206,207,208,209,210,211,212,213,214,215,216,217,220,225,227,230,232,237,240,245,248,250,251,252,253,254,255,260,261,264,267,268,269,270,275,277,280,281,284,287,288],spectrum:22,speed:[9,22,180,194,255,258,259,260,263,275,288],spew:267,sphinx:[34,64],spi:[8,14,22,97,135,136,137,187],spi_cfg:[136,137],spi_miso_pin:[136,137],spi_mosi_pin:[136,137],spi_num:[136,137,191],spi_sck_pin:[136,137],spi_ss_pin:[136,137],spi_typ:191,spilt:14,spitest:[7,62],split:[7,14,72,94,180,192,225,240,275,284,285,287],split_app:7,split_app_init:226,split_config:[284,285],split_elf_nam:62,split_file_test:266,split_load:226,splitti:[7,62,223,225],spot:94,spread:22,spuriou:266,squar:188,sram:261,src:[6,7,11,14,46,51,56,62,71,81,83,90,94,96,135,177,178,181,182,185,189,190,192,198,226,232,241,242,245,255,258,259,260,261,262,263,266,267,273,274,275,277,279,281,284,285,287],src_off:90,ss_op_wr:250,ss_pin:[136,137],ssec:28,sstatic:273,st_cputim:281,st_ostv:281,stabil:[268,269],stabl:[1,7,58,59,81,82,268,269],stack:[1,9,14,19,22,25,27,28,31,56,78,86,88,90,93,100,223,226,244,245,246,247,248,250,251,252,263,274],stack_bottom:100,stack_len:218,stack_ptr:218,stack_siz:[98,100],staff:[81,82],stage:[98,129,135,208,223,226],stai:[14,161,162],stailq_entri:224,stale:[2,255],stand:[14,90,233],standalon:[14,223],standard:[7,22,32,101,133,134,135,136,152,153,161,182,248,253,254,263,273,274],standbi:[22,196],start:[2,4,8,9,10,12,14,27,28,29,31,39,48,60,63,72,83,87,89,90,91,92,93,94,96,100,129,135,138,141,142,144,147,153,160,161,169,172,175,180,188,189,191,192,193,194,195,204,212,223,226,234,236,242,243,244,245,248,255,256,257,258,259,261,262,263,266,268,273,274,275,276,277,278,279,281,285,289,291],starter:241,startup:[20,22,27,31,129,223,226,242,253,254],startup_stm32f40x:[259,261],stash:50,stat:[1,7,65,79,81,82,83,132,133,226,237,245,263,264,274,275,281,288],state:[6,14,22,27,32,53,56,86,88,94,98,100,101,134,141,177,178,182,183,187,200,239,240,242,255,261,269,271],statement:[11,226,237],statist:[1,49,65,74,77,78,81,82,83,263,284,285,287,288],stats_cli:[1,264,274],stats_hdr:[209,224],stats_inc:224,stats_incn:224,stats_init:[209,224],stats_init_and_reg:224,stats_module_init:226,stats_my_stat_sect:224,stats_nam:[1,38,39,77,209,224],stats_name_end:[209,224],stats_name_init_parm:[209,224],stats_name_map:224,stats_name_start:[209,224],stats_newtmgr:[1,225,226,237],stats_regist:[209,224],stats_sect_decl:[209,224],stats_sect_end:[209,224],stats_sect_entri:[209,224],stats_sect_start:[209,224],stats_size_16:224,stats_size_32:[209,224],stats_size_64:224,stats_size_init_parm:[209,224],statu:[10,11,21,137,172,223,240,249,251,253,255,263,274,284,285,287],stdarg:[227,230],stderr:198,stdio:275,stener:211,step:[2,4,6,7,12,48,56,58,60,81,83,93,94,95,129,131,188,208,223,224,243,245,246,253,254,255,258,259,260,261,262,263,267,268,274,275,284,285,287],sterli:269,sterlinghugh:269,stic:[250,252],still:[5,60,67,87,97,98,249,283,288],stitch:1,stksz:[78,274,284,287],stkuse:[78,274,284,287],stlink:259,stm32:[259,261,287],stm32_boot:287,stm32_slinki:287,stm32f2x:259,stm32f303vc:[236,241],stm32f3discoveri:236,stm32f4:[135,136,137,256],stm32f4_adc_dev_init:135,stm32f4_hal_spi_cfg:[136,137],stm32f4disc_blinki:259,stm32f4disc_boot:259,stm32f4discoveri:[54,259],stm32f4discovery_debug:259,stm32f4x:259,stm32f4xx:187,stm32f4xxi:187,stm32l072czy6tr_boot:14,stm32serial:287,stm32x:259,stm34f4xx:187,stm:287,stmf303:236,stmf32f4xx:187,stmf3:236,stmf3_blinki:[236,241],stmf3_boot:[236,241],stop:[2,28,85,87,141,151,188,189,193,194,248,267,277],stopbit:194,storag:[14,21,130,141,168,246,268],store:[1,11,14,23,28,32,35,36,38,51,56,58,60,62,81,86,88,90,101,130,131,141,148,180,191,196,199,200,218,224,245,248,250,251,268,274,275,276,281,283],stori:90,str:[131,194,200],straight:[248,274],straightforward:[245,275],strategi:242,strcmp:[130,274],stream:[22,200,205,206,218],strength:30,strict:[250,255],strictli:[174,175,180,275],string:[1,14,28,30,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,102,130,131,134,140,161,172,198,199,200,205,215,216,220,224,226,227,230,253,254,266,268,269,273,274,275,285],strip:[47,90],strlen:[248,250],strongli:153,struct:[85,86,87,88,90,91,92,93,94,98,99,100,101,129,130,131,135,136,137,141,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,161,162,164,165,166,167,169,170,171,174,177,178,180,181,183,186,188,191,193,198,199,200,201,202,203,204,205,206,207,208,209,211,212,215,216,217,218,219,220,221,222,224,227,232,233,239,242,248,250,251,252,253,254,257,266,273,274,275,279,281],structur:[7,11,12,19,29,56,62,79,85,88,90,91,92,93,94,99,100,129,131,135,137,147,163,176,179,188,193,198,199,206,208,209,210,216,220,221,224,250,256,266,267,274,275,279,283,286,291],struggl:14,strutur:90,stub:[62,102,206,239,253,254,257,266,274,275],studio:[5,13],stuff:268,style:[131,243],sub:[29,44,46,51,71,72,73,76,77,135,156,254,271],subcmd1:221,subcmd2:221,subcommand:[46,51,63,65,67,71,72,73,76,77,221],subcompon:22,subdirectori:[2,232,266],subfold:258,subject:180,submit:11,subrang:21,subscrib:[14,29,249,251,275],subsequ:[14,22,23,129,161,162,223,248,251,266],subset:[23,177,207,209,212,277],substitut:[6,243,245,246],subsystem:[31,60,88,130,131,136,137,215],subtract:[99,101],subtre:130,succe:[177,266],succesfulli:[240,241,245,246,249,255,257,258,259,260,261,262,263,267,274,277,281,284,287,288,289],success:[3,21,56,85,87,90,93,98,100,101,137,142,143,144,145,146,147,149,150,151,153,154,155,157,158,160,161,162,164,165,166,167,168,169,170,171,172,173,177,178,179,180,183,187,188,191,193,194,195,198,201,202,203,204,205,216,218,219,220,230,233,234,236,241,250,252,261,263,266,275],successfuli:[94,266,281],successfulli:[7,14,21,56,91,94,98,223,236,237,240,241,245,246,249,251,253,254,255,258,259,260,261,262,263,267,274,275,276,277,278,281,284,285,287],sudo:[4,6,7,11,58,59,61,81,84,246],suffici:[14,90,91,180],suffix:266,suggest:[3,6,14,212,235,264,291],suit:[6,56,229,231,232,245,265],suitabl:[14,21,94,174],summar:[94,223],summari:[6,11,20,37,215,220,254],supersed:180,supervision_timeout:[31,249],supplement:[30,248],supplementari:94,suppli:[153,171,173,177,192,266],support:[1,3,4,6,7,12,15,20,21,22,23,30,31,33,54,59,67,82,87,93,94,96,102,129,131,133,134,135,136,137,152,180,183,187,191,200,206,207,208,209,212,215,216,220,221,223,224,226,239,240,245,246,247,248,252,253,255,256,258,267,268,269,274,278,283,285,286,291],suppos:[14,44,92,99,187,224],suppress:285,suppresstasknam:12,sure:[2,7,8,14,58,90,199,245,246,248,250,255,257,263,266,268,273,274,275],suspend:277,svc:252,sw_rev:277,swap:[2,86,94,174,181,223,255,288],swclk:255,swd:[255,258,259,260,261,262,263,267,275,281],swdio:255,sweep:180,swim:259,swo:[258,267,281],symbol:[4,7,12,62,223,255,259,281,288,289],symlink:[61,84],sync:[21,26,40,58,59,60],sync_cb:[27,253,254],synchron:[21,40,50,58,59,60,97,99,135,191],syntax:[226,243,263,264,277],synthes:25,sys:[1,7,14,56,58,62,130,131,132,181,206,215,224,225,226,233,237,239,245,257,266,267,274,275,277,281,289],sys_config:[130,223],sys_config_test:7,sys_console_ful:223,sys_einv:[209,281],sys_enodev:209,sys_flash_map:[259,261],sys_log:223,sys_mfg:[7,255,258,259,260,261,277,284,287],sys_shel:223,sys_stat:223,sys_sysinit:[7,255,258,259,260,261,262,277,284,287],syscfg:[14,24,25,33,38,39,51,62,94,98,130,131,153,174,208,209,210,212,213,214,215,216,220,224,225,237,240,246,255,257,258,263,264,266,267,274,275,277,278,280,281,288,289],sysclock:14,sysconfig:237,sysflash:[255,261],sysinit:[7,26,27,93,100,131,197,208,226,239,253,254,255,257,263,266,267,274,275,281],sysinit_assert_act:226,sysinit_panic_assert:[208,209,226],sysresetreq:255,system:[1,3,6,8,9,26,40,51,58,59,60,62,63,87,90,91,94,97,98,100,101,102,129,130,131,132,141,155,156,157,161,162,163,165,166,168,174,176,177,178,180,183,187,191,194,196,197,206,220,223,224,234,235,242,245,246,255,257,258,261,263,264,267,268,269,274,281,289],system_l:187,system_stm32f4xx:[259,261],systemview:291,sysview:[289,290],sysview_mynewt:289,sytem:189,syuu:60,t_arg:100,t_ctx_sw_cnt:100,t_dev:207,t_driver:207,t_flag:100,t_func:[100,242],t_interfa:207,t_itf:207,t_name:100,t_next_wakeup:100,t_obj:100,t_poll_r:207,t_prio:[86,100],t_run_tim:100,t_sanity_check:100,t_stackptr:100,t_stacksiz:100,t_stacktop:100,t_string:205,t_taskid:100,t_type_m:207,t_uinteg:205,tab:[31,37],tabl:[14,20,21,94,129,132,152,161,180,226,250,252,263,277],tag:269,tail:[90,180],tailq_entri:[180,193],tailq_head:180,take:[6,7,14,24,46,51,56,63,90,93,130,142,199,212,223,224,242,248,250,251,252,253,254,266,273,275],taken:[7,14,62,88,93,250,268,269,273],talk:[14,246,248,285],tap:[4,57,80],tar:[4,58,59,60,61,82,83,84],tarbal:4,target:[3,4,5,7,12,14,26,30,33,35,36,37,38,39,40,43,44,47,48,49,54,56,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,97,130,196,223,224,225,226,232,240,242,244,253,254,256,264,266,274,276,278,280,286],target_nam:35,targetin:[253,254],task1:[93,98,284,287],task1_evq:98,task1_handl:93,task1_init:93,task1_prio:93,task1_sanity_checkin_itvl:98,task1_sem:93,task1_stack:93,task1_stack_s:93,task2:[93,284,287],task2_handl:93,task2_init:93,task2_prio:93,task2_sem:93,task2_stack:93,task2_stack_s:93,task:[9,11,56,65,78,81,82,83,85,86,88,90,91,92,93,94,96,97,99,101,131,135,140,170,203,212,215,217,220,226,234,237,250,257,263,273,274,276,279,281,284,285,287,291],task_l:239,task_prior:[225,226],tasknam:12,taskstat:[65,79,81,82,83,132,134,237,284,287],tbd:[252,275],tc_case_fail_arg:232,tc_case_fail_cb:232,tc_case_init_arg:232,tc_case_init_cb:232,tc_case_pass_arg:232,tc_case_pass_cb:232,tc_print_result:[232,233],tc_restart_arg:232,tc_restart_cb:232,tc_suite_init_arg:232,tc_suite_init_cb:232,tc_system_assert:232,tck:255,tcp:[255,259],tdi:255,tdo:255,teach:242,team:[4,182,243],technic:[10,236],technolog:[22,136],tee:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,274],telee02:263,telee02_boot:263,telemetri:253,telenor:263,teli:[253,254],tell:[14,31,56,141,156,194,196,200,223,224,226,236,248,250,253,254,261,269,273,275],telnet:[267,281,288],tem:277,temperatur:[160,207,277],templat:[7,46,245,266,274,281],temporari:[21,98,129,180],temporarili:[92,98],ten:191,term:[3,129,135,153,187,190,268],termin:[2,4,7,8,10,12,14,21,22,28,60,83,131,155,156,157,161,162,165,172,174,175,177,180,246,248,251,252,255,257,258,259,260,261,262,263,267,279,281,288],terminato:157,termintor:157,terribl:[7,245],test:[4,6,12,14,40,51,58,59,60,62,65,68,72,76,81,82,83,129,131,132,182,209,210,223,226,227,228,229,230,231,232,233,234,237,240,246,252,253,254,255,257,258,260,265,268,273,275,285,288,291],test_assert:[228,229,231,266],test_assert_fat:[227,266],test_cas:[227,266],test_case_1:229,test_case_2:229,test_case_3:229,test_case_nam:[228,229],test_datetime_parse_simpl:266,test_datetime_suit:266,test_json:266,test_json_util:266,test_project:45,test_suit:[228,229,266],test_suite_nam:231,testbench:[7,62],testcas:[7,266],testnam:76,testutil:[7,181,266],text:[40,49,70,90,131,172,215,223,230,259,284,287],textual:1,tgt:130,tgz:4,than:[3,7,14,15,21,30,73,90,92,93,94,97,99,100,101,102,129,133,153,164,167,180,191,195,212,215,223,225,227,229,242,246,252,253,254,258,275,281,288],thank:31,thee:97,thei:[1,6,14,21,30,31,62,85,88,90,91,93,94,99,100,129,130,135,170,180,193,223,224,226,232,235,241,248,249,250,252,253,254,263,264,266,268,269,271,273,277],their_key_dist:28,them:[2,9,14,56,90,94,99,100,161,178,180,196,223,224,226,242,246,248,253,254,255,266,267,268,275,276,291],themselv:[90,93,252],theori:[14,56,226],therebi:[99,141],therefor:[21,91,129,149,153,161,242,270],thi:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,19,21,22,23,24,25,26,27,28,30,31,32,33,34,35,42,44,53,54,56,58,59,60,61,62,64,65,67,72,73,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,129,130,131,133,135,136,137,138,139,141,142,143,144,147,153,155,156,157,159,160,161,162,163,165,167,169,170,172,173,174,175,176,177,179,180,181,182,183,184,186,187,188,189,191,193,194,195,196,197,200,201,202,203,204,205,206,207,208,209,210,211,212,213,215,216,217,218,220,222,223,224,225,226,228,229,230,231,232,233,234,235,236,237,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,273,274,275,276,277,278,279,280,281,283,284,285,286,287,288,289,291],thing:[1,14,22,25,27,56,62,91,94,97,98,135,188,207,223,253,254,266,269,273,274,275,279,281],thingi:[208,288,289],thingy_boot:281,thingy_debug:[281,288,289],thingy_my_sensor:281,think:[10,14,129,275],third:[6,20,101,246,248,255,267,275],thorough:269,those:[1,14,32,33,40,56,58,59,60,62,94,97,129,138,142,223,235,269,273,274,275],though:[14,90,129,180,188,212,223],thought:[14,275],thread:[9,245,255,259,261],three:[2,11,20,60,62,90,129,131,167,206,223,224,226,239,242,245,247,248,254,255,261,263],through:[14,22,24,62,63,90,100,129,134,141,147,152,155,156,157,162,165,174,175,182,191,200,212,237,247,249,251,254,255,257,261,266,267,273,274,275,278,280,283],throughout:[1,94,266],throughput:[14,22],thrown:6,thu:[90,94,99,129,135,174,175,187,188,191,242],tick:[14,85,87,92,97,98,99,101,131,188,193,215,242,257,258,274,281],ticker:85,ticket:10,tickl:[98,195],tid:[78,274,284,287],tie:223,tied:[14,153],ties:[90,245],time:[1,7,9,11,12,20,21,22,23,26,28,32,35,44,58,59,60,61,62,78,83,84,85,88,90,93,94,97,98,99,100,129,131,137,141,152,161,162,180,182,195,207,215,223,224,235,239,241,242,245,248,250,252,253,254,258,260,263,266,267,273,274,275,277,281,283,288],time_datetim:[223,281],time_datetime_test:266,time_in_flight:90,timelin:14,timeout:[21,28,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,92,99,188,240,274],timer:[14,25,85,87,88,94,98,182,190,195,212,281],timer_0:25,timer_4:263,timer_5:25,timer_ev_cb:[257,281],timer_interrupt_task:239,timer_num:193,timestamp:[73,207],timev:101,timezon:[101,266],timo:88,timo_func:85,timtest:[7,62],ting:[253,254],tini:[261,287],tinycbor:[7,276],tinycrypt:[7,14],tinyprintf:102,tip:98,titl:[8,286],tlm:253,tlv:[28,129],tmp:[58,60,81,83,170,223],tmpstr:281,tmr:193,todo:[62,180,253,254],togeth:[1,44,56,62,90,138,180,223,249,261,275],togetherth:14,toggl:[7,100,187,239,242,257],token:[76,93,99,215,270],told:196,too:[21,90,93,101,135,161,162,180,183,225,274],took:259,tool:[1,2,3,5,6,7,9,12,13,14,40,55,58,59,62,63,64,67,79,80,81,82,93,94,95,97,134,135,224,225,226,232,236,237,239,240,244,245,246,255,256,261,263,264,266,267,268,269,270,275,276,281,283,285,286,288,289,291],toolbox:2,toolchain:[2,3,5,7,12,14,34,60,64,237,240,246,256,267,283,286,291],toolkit:3,tools_1:[58,59,60,82,83],top:[1,10,12,36,62,90,100,135,174,188,225,246,253,254,266,275],topic:1,total:[9,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,100,102,129,180,258,260,263,275],tour:247,track:[20,22,23,101,129,180],tradeoff:223,trail:[90,129],trailer:129,transact:[21,188,191],transfer:[23,191,274],transform:180,transit:129,translat:[187,253],transmiss:[21,28,191,194,219,263],transmit:[14,30,32,131,188,191,263],transmitt:194,transport:[21,22,28,81,131,134,226,240,245,246,255,259,274,275,276,278,280,283],travers:[90,155,156,157,162,165],traverse_dir:[155,156,157,162,165],treat:[141,201],tree:[1,6,7,14,51,56,62,94,160,245],tri:[3,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,130,137,225,263],trial:94,tricki:100,trig:187,trigger:[6,10,88,187],trim:90,trip:98,triplet:207,troubleshoot:[224,225],truncat:[158,170,171,173],truncate_test:266,trust:[23,28,274],tt_chr_f:252,tt_svc_type_p:252,ttl:[246,287],tty:[8,257,267,274,277,284,287],ttys002:67,ttys003:67,ttys005:285,ttys012:[284,287],ttys10:8,ttys2:[8,257,267,277,284,287],ttys5:8,ttyusb0:[14,67,246],ttyusb2:[8,267,284,287],ttyusb:[8,257,267,277,284,287],tu_any_fail:[233,266],tu_case_init_fn_t:232,tu_case_report_fn_t:232,tu_config:[232,233],tu_init:232,tu_restart_fn_t:232,tu_suite_init_fn_t:232,tupl:101,turn:[14,25,135,182,183,187,223,237,245,246,256,257,260,268,269,277,284],tutiori:[74,77],tutori:[2,3,6,7,8,12,14,22,24,60,78,208,209,213,214,215,232,236,237,239,240,242,244,245,246,247,248,249,250,251,252,253,254,255,257,258,259,260,261,262,263,266,267,273,274,275,276,277,278,279,280,281,284,285,287],tv_sec:[101,266,281],tv_usec:[101,266,281],tvp:101,tweak:152,two:[2,3,12,14,19,20,22,23,24,28,32,44,46,51,56,62,67,90,91,92,93,94,96,100,101,129,131,133,174,180,188,206,207,215,221,223,224,225,226,236,237,239,242,245,246,248,250,253,254,255,257,258,259,260,261,262,263,266,267,268,269,270,271,274,275,276,277,280,281,284,287],tx_data:274,tx_done:194,tx_func:194,tx_len:274,tx_off:274,tx_phys_mask:28,tx_power_level:[28,30],tx_time_on_air:263,txbuf:191,txd:263,txpower:263,txrx:191,txrx_cb:191,txt:[14,71,154,158,161,164,171,172,173,289],type:[1,7,8,10,12,14,20,21,24,28,30,31,32,40,44,46,47,54,56,58,59,60,62,67,85,90,91,94,97,100,129,131,134,161,162,177,178,180,187,191,194,200,201,205,206,208,211,213,215,218,225,226,227,228,229,230,231,236,239,240,242,245,246,248,249,250,251,252,253,255,258,259,260,261,263,266,267,268,269,270,273,274,275,279,280,281,284,285,287,288,289],typedef:[27,88,91,98,100,101,131,151,187,191,193,194,200,207,215],typic:[3,9,22,27,32,56,62,90,93,94,95,98,129,131,135,174,175,182,184,187,188,191,206,207,223,224,226,232,248,253,254,266],tz_dsttime:[101,266],tz_minuteswest:[101,266],u8_len:137,uart0:[131,274,285],uart1:274,uart:[7,8,14,22,56,97,131,135,189,218,237,245,246,258,259,260,261,262,263,274,281,288],uart_0_pin_rx:274,uart_0_pin_tx:274,uart_bitbang:[189,258],uart_flow_control_non:131,uart_hal:[7,259,260,261],uart_rx_char:194,uartno:274,ubuntu:[4,6,7,58,81],uci:24,udev:259,udp:67,uext:287,uicr:24,uid:253,uint16:[28,29],uint16_max:28,uint16_t:[21,90,91,92,98,99,100,129,136,141,142,180,188,191,200,207,218,224,250,273,274,275],uint32:[28,72],uint32_max:28,uint32_t:[85,87,90,91,92,99,100,101,129,136,141,149,153,154,158,159,161,163,164,169,172,173,175,176,180,183,185,188,190,191,193,195,206,207,209,224],uint64:28,uint64_t:200,uint8:28,uint8_max:28,uint8_t:[24,33,88,90,91,92,94,98,100,129,131,135,136,141,149,153,154,155,156,157,161,162,163,164,165,169,172,175,180,183,185,186,188,191,194,200,206,207,209,218,224,248,250,253,254,274,275],uint_max:205,uinteg:[200,205],ultim:250,umbrella:223,unabl:[2,180,255,258,259,262],unaccept:21,unadorn:21,unam:2,unc_t:215,unchang:[94,180],unconfirm:263,und:[28,31],undefin:[83,183,226],under:[4,7,10,11,12,14,21,27,35,56,62,72,102,130,135,215,252,255,259,260,262,274,275],underli:[97,135,141,153,161,162,181,182,191,207],underlin:243,understand:[7,14,101,207,223,235,236,240,263,268,275],understood:[161,227],underwai:129,undesir:93,undirect:[28,248],unexpect:[21,155,156,157,162,165,168],unexpectedli:[21,266],unfortun:14,unicast:32,unicod:152,unidirect:28,unifi:135,uniform:[30,60],uniformli:63,uninstal:7,unint32:72,uninterpret:226,union:[180,200,250],uniqu:[9,20,33,94,180,183,206,224,225,226,253,263],unit:[1,7,14,21,28,40,52,58,59,60,85,100,129,226,266,291],unittest:[7,46,56,62,226,245,266,274],univers:[14,194],unix:[2,60,153,236],unknown:[21,225],unlabel:274,unless:[28,100,129,174,188,196,226,274,275],unlicens:22,unlik:[21,91,266],unlink:[59,61,82,84,154,162,167,170],unlink_test:266,unlock:[207,212],unmet:94,unpack:[58,60],unplug:262,unpredict:162,unprovis:32,unrecogn:14,unregist:211,unresolv:[182,266],unrespons:21,unset:[51,129],unsign:[100,200,224,262,281],unspecifi:[21,43],unstabl:[58,59,81,82],unsuccess:188,unsupport:[21,252],unsur:180,unsync:27,untar:4,until:[14,21,27,62,87,88,90,93,99,131,141,180,188,191,194,248,253,254,263,268],unuesd:251,unus:[72,273,274,275],unwritten:129,updat:[2,4,14,16,21,28,31,37,38,50,53,58,59,60,61,81,82,84,90,129,143,180,226,249,251,257,258,264,266,273,275,276,281],upgrad:[2,40,57,60,80,94,129,131,236,237,246,255,267,288,291],uplink:263,uplink_cntr:263,uplink_freq:263,upload:[14,44,71,72,153,196,223,240,258],upon:[1,3,10,27,56,90,129,180,224,251],upper:[24,180,194,226],uppercas:210,upstream:133,uri:[28,30,134],url:[28,253,266,268],url_bodi:253,url_body_len:253,url_schem:253,url_suffix:253,usabl:[1,91,94,245,253],usag:[1,9,58,59,60,63,81,82,83,90,100,135,136,153,174,180,188,207,215,220,224,226,242,263,274,285],usart6_rx:287,usart6_tx:287,usb:[2,3,8,14,22,43,67,237,239,240,242,246,255,256,258,259,260,261,262,263,267,275,277,283,284,286,287],usbmodem14211:67,usbmodem14221:67,usbmodem401322:8,usbseri:[8,257,267,274,277,284,287],usbttlseri:246,use:[1,4,5,6,7,8,11,12,14,15,20,21,22,23,25,28,31,33,42,46,51,52,56,57,59,60,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,82,83,85,87,88,94,95,97,99,100,129,130,131,132,135,137,141,142,152,153,166,167,170,174,177,178,180,181,188,191,193,200,201,202,203,204,205,206,207,208,209,210,211,212,215,216,217,220,221,223,224,225,226,232,236,237,238,239,240,241,242,244,245,246,248,249,250,251,253,254,255,256,257,258,261,263,264,266,267,269,270,273,274,275,276,277,280,281,283,284,285,286,287,288,289],use_wl:28,use_wl_inita:28,usec:[87,277,281],used:[6,7,11,12,14,20,21,23,24,25,28,30,31,32,35,47,50,62,67,73,85,87,90,91,92,94,99,100,101,102,129,130,131,136,137,141,144,152,153,157,180,185,188,189,191,193,195,200,207,208,209,215,223,224,225,226,227,228,229,230,231,234,235,236,241,242,246,248,250,251,252,253,254,255,263,266,267,268,269,275,276,277],useful:[3,14,21,93,172,209,245,268],user:[1,2,4,6,7,8,9,19,21,23,25,49,56,59,60,62,79,81,82,83,85,88,90,91,94,95,98,129,131,132,135,136,141,147,153,174,183,191,192,193,194,214,223,224,225,226,233,236,239,252,255,261,263,267,268,269,270,274,275,281,287],user_defined_head:90,user_hdr:90,user_hdr_len:90,user_id:[225,226],user_manu:236,user_pkthdr_len:90,usernam:[10,49,60,268],uses:[2,4,6,7,8,12,15,21,22,23,24,25,31,33,56,66,67,68,69,70,71,72,73,74,75,76,77,78,79,87,88,94,98,101,102,129,131,132,133,134,135,137,141,152,153,180,182,187,188,206,207,208,209,211,212,215,217,221,225,226,232,234,237,239,240,250,251,252,255,257,260,267,268,270,274,276,277,278,281,284,287],using:[1,2,4,6,7,8,10,11,12,20,21,22,25,27,28,29,30,32,34,37,38,44,45,58,59,60,61,62,64,67,77,81,82,83,84,85,87,88,90,92,93,95,96,97,98,99,100,101,102,129,130,135,141,144,146,151,152,153,161,180,182,187,188,190,191,193,195,200,209,210,212,215,223,224,226,228,229,231,232,236,237,239,240,242,243,245,246,252,254,255,256,257,258,259,260,261,262,263,266,267,273,274,275,276,278,281,285,286,288,289],usr:[4,6,11,37,58,59,60,61,81,82,83,84],usu:96,usual:[14,25,90,91,102,135,204,206],utc:[69,101,266],utctim:101,utf:30,util:[7,11,21,22,32,93,102,131,152,153,189,191,206,226,237,266],util_cbmem:281,util_cbmem_test:7,util_crc:[281,285,287],util_mem:[7,255,257,258,259,260,261,262,263,267,277,281,284,285,287],util_pars:[263,277,281],uuid128:[28,30,250,252,254],uuid128_is_complet:[28,30],uuid16:[28,29,30,250,273,275],uuid16_is_complet:[28,30],uuid32:[28,30],uuid32_is_complet:[28,30],uuid:[28,29,30,31,33,67,250,252,254,273,275,276],uvp:101,v10:281,v14:259,v25:259,va_arg:209,va_list:[227,230],val:[24,25,40,51,58,59,60,62,94,130,184,187,191,201,206,224,225,226,237,253,254,257,263,274,276],valid:[21,40,51,54,58,59,60,62,67,73,90,129,136,141,151,153,170,177,178,180,188,191,207,250,266,274,275],valu:[1,4,7,12,21,24,25,28,29,30,31,38,40,43,47,51,54,58,59,60,62,63,65,66,67,69,72,73,76,81,82,83,86,90,91,94,99,100,101,129,130,135,175,176,180,183,187,188,191,192,193,194,195,200,206,208,210,212,215,223,224,237,239,240,246,249,250,251,252,253,254,264,268,269,273,274,275,277,278,280,281,283,288],valuabl:268,value1:[51,226],value2:[51,226],valuen:226,vanilla:152,vari:[9,90,97,129],variabl:[1,4,11,14,25,35,38,51,60,62,63,66,90,91,100,130,131,174,200,206,207,208,209,212,220,223,227,230,236,242,248,250,263,268,269,276,277,278,281],variant:[23,96,187],variat:12,varieti:[4,251],variou:[24,25,62,90,129,133,135,182,251,256,263],vdd:[14,275],vector:277,vendor:268,ver:[1,7,56,198,199,236,246,255,267,268,269,270,274,275],ver_len:199,ver_str:199,verb:63,verbos:[1,7,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,255,267,274],veri:[1,9,32,56,90,100,102,129,180,208,243,244,252,257,258,268,275,276,288],verif:23,verifi:[23,58,60,81,83,129,180,182,209,223,240,242,258,259,260,262,263,266,275,276],versa:[8,223],version:[1,2,4,6,7,11,12,14,22,23,35,38,40,42,44,48,56,57,61,80,84,85,131,141,180,196,198,199,206,223,226,236,237,240,246,254,255,257,258,259,260,261,262,263,267,271,274,275,277,281,284,287,288,289],via:[8,14,21,27,43,56,90,91,129,131,135,153,155,156,157,162,165,174,175,177,180,181,182,188,212,215,223,224,226,240,246,247,248,250,258,260,263,268,274,275,277,278,280,283],vice:[8,223],vid:259,view:[1,7,10,12,31,51,63,67,210,214,215,223,224,226,268,275,280,289],vim:60,vin:277,violat:21,viper:11,virtual:[14,67,184,187],virtualbox:255,visibl:[2,29],visit:[14,40,58,59,60],visual:[5,13,289],visualstudio:12,vol:23,volatil:259,voltag:[135,137,182,192,259,275],volum:[30,152],vscode:12,vtref:[258,260,263,275],vvp:101,wai:[2,3,9,14,22,31,32,60,62,85,88,93,100,101,131,153,187,188,189,206,223,225,243,268,269,270,274,275],wait:[14,85,86,87,88,90,92,93,99,100,137,183,188,191,226,239,242,261,263,273,274,275,283],waitin:92,wake:[14,86,90,93,99,100,183,212,242],wakeup:[100,212],walk:[90,100,147,151,180,206,275],wall:6,wallclock:[85,101],wanda:82,want:[1,3,11,14,19,51,58,59,60,61,62,81,84,85,86,90,91,92,93,98,99,100,129,130,131,151,153,170,187,206,207,208,211,224,235,237,241,245,247,248,250,252,253,254,255,256,258,259,260,261,263,264,266,268,274,275,278,288,291],warn:[1,6,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,225,250,258,274],warranti:[4,255,274,275,281,288,289],wasn:14,watch:245,watchdog:[93,98,192],watchpoint:[255,259],wdog:68,wear:245,wear_level_test:266,wearabl:9,web:[236,243],webfreak:12,websit:243,weird:14,welcom:[8,135,244,267,274,277],well:[8,14,23,41,56,90,91,97,99,129,130,135,196,227,235,249,263,274,275],were:[30,74,90,129,182,223,269,273,274],werror:[6,51],wes:263,west:101,wfi:259,wget:[58,60,81,83],what:[7,8,14,21,42,56,97,99,136,141,174,175,180,208,209,223,226,238,242,248,251,252,253,254,266,269,273,274,275],whatev:[24,99,267],wheel:[8,236],when:[1,2,6,7,8,10,12,14,15,21,23,24,25,27,30,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,67,73,82,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,129,130,131,132,135,141,142,143,146,152,153,155,156,157,161,162,163,165,170,172,174,175,180,187,188,191,193,194,196,200,203,207,208,209,211,212,213,215,218,221,223,224,225,226,230,232,234,237,239,240,242,243,245,246,247,248,251,252,253,254,255,258,259,261,262,266,268,269,270,274,275,276,277,278,279,280,281,285,288],whenev:[22,27,91,135,180,200,211,250,252,281],where:[8,9,10,11,14,23,30,32,36,38,51,56,60,61,62,84,90,91,94,96,97,100,129,130,131,141,142,143,146,149,151,180,187,190,191,194,199,200,206,223,225,226,237,242,252,253,254,257,258,263,267,274,275,277,284,287],wherea:[90,269],whether:[10,12,14,23,85,88,91,101,129,141,156,188,191,192,208,209,210,212,213,214,215,224,226,234,248,250,252,266,277,279,280,281],which:[1,2,4,8,11,14,15,20,21,22,31,33,35,40,56,58,59,60,62,63,67,81,82,83,85,86,87,90,91,93,94,97,98,99,100,101,102,129,130,135,136,138,141,151,152,153,180,183,184,187,188,191,193,196,200,207,209,223,224,225,227,230,233,234,236,240,242,248,249,250,251,252,253,254,255,263,266,267,268,269,274,275,285,288],white:[23,28],whitelist:28,who:10,whole:[14,136],whose:[62,63,180,212],why:[10,14,242],wide:[22,223],wifi:[7,267],wifi_connect:267,wifi_init:267,wifi_request_scan:267,wikipedia:[188,191],winc1500_wifi:267,window:[5,6,7,9,12,14,28,57,67,79,80,94,131,240,246,255,257,258,259,260,261,262,263,267,277,284,287,288],winusb:[259,261,287],wipe:145,wire:[8,188,191,263,274,275,287],wireless:22,wish:[6,10,174,175,188,242,268,286],withdraw:10,within:[1,12,21,32,42,56,90,94,95,97,129,135,141,146,149,151,174,175,180,182,187,198,200,206,209,210,211,215,224,232,242,251,261,266,268,274],without:[6,10,14,23,25,29,31,91,129,153,162,174,175,180,181,206,215,222,223,224,226,240,255,266,274,275,279],wno:6,won:[8,223,275],wonder:275,word:[6,56,90,93,99,129,180,191,250,255,268,281,288,289],word_siz:191,work:[2,4,8,10,11,14,23,25,56,62,63,86,90,92,93,94,96,97,99,100,129,131,135,136,161,182,224,236,237,241,242,245,246,249,255,257,263,266,271,273,274,275,278,280,283],work_stack:242,work_stack_s:242,work_task:242,work_task_handl:242,work_task_prio:242,workaround:14,workspac:[1,2,11,40,58,59,60,61,81,83,84],workspaceroot:12,world:[12,22,194,248,253,254,256,270,291],worri:93,worth:[1,95,274],would:[5,12,14,59,60,82,83,85,90,93,99,129,131,138,141,182,187,188,191,203,221,223,224,232,242,245,261,263,266,268,269,274,275,283,287],wrap:[101,224,257],wrapper:88,write:[1,9,14,15,21,29,62,65,66,81,82,83,95,129,130,131,135,136,137,141,142,143,147,152,153,158,159,169,171,173,174,175,182,185,187,188,194,196,198,201,202,203,204,206,219,224,230,239,242,244,249,251,252,263,265,274,275,276,283],write_cmd_rx:[77,237],write_cmd_tx:[77,237],write_config:[158,171],write_id:173,write_req_rx:[77,237],write_req_tx:[77,237],write_rsp_rx:[77,237],write_rsp_tx:[77,237],written:[11,14,21,24,60,83,93,129,141,142,143,146,151,157,158,161,164,170,171,172,174,175,180,188,191,250,252,257,269],wrong:[14,43,275],wsl:[12,60],www:[14,102,236,246,255,274,275,281,287,288,289],x86:[4,12],x86_64:[255,281,288,289],xml:[7,89,130],xpf:4,xpsr:[255,259,261],xtal_32768:94,xtal_32768_synth:25,xxx:[6,94,100,136],xxx_branch_0_8_0:[268,269],xxx_branch_1_0_0:[268,269],xxx_branch_1_0_2:[268,269],xxx_branch_1_1_0:[268,269],xxx_branch_1_1_2:[268,269],xxx_branch_1_2_0:[268,269],xxx_branch_1_2_1:[268,269],xxxx:182,xzf:[58,60,61,83,84],yai:274,yaml:11,year:32,yes:[23,263],yesno:28,yet:[7,14,93,97,240,245,268,269,275],yield:93,yml:[1,6,7,42,44,51,53,54,56,62,95,96,102,130,131,136,137,153,174,181,206,208,215,223,224,225,226,236,237,239,245,246,255,257,263,264,266,267,268,270,271,274,275,276,277,281],you:[1,3,4,5,6,7,8,9,10,11,12,14,19,20,31,34,35,36,40,42,44,46,47,48,51,52,53,54,55,56,58,59,60,61,62,64,65,67,69,77,81,82,83,84,85,93,94,95,96,97,102,129,130,131,132,133,135,138,139,141,142,143,147,156,161,162,164,170,172,174,175,181,182,184,187,188,190,200,203,206,207,208,210,211,212,215,216,217,220,221,222,223,224,225,226,232,235,237,239,240,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,273,275,276,277,278,279,280,281,283,284,285,286,287,288,289,291],your:[1,3,4,6,8,10,14,20,31,40,51,53,56,57,59,60,61,62,71,72,80,82,83,84,85,93,94,95,96,97,98,100,132,133,134,135,136,137,139,141,152,174,182,206,208,215,221,223,225,226,232,239,240,241,243,244,245,246,247,248,249,251,252,253,254,256,257,263,264,269,273,274,275,276,278,279,283,284,286,287,288,289,291],yourself:[2,10,14,31,93,94,247,274,291],ype:[253,254],yym:6,zadig:[259,261,287],zero:[12,25,85,90,91,94,100,101,145,149,151,158,170,171,176,183,187,188,191,192,193,194,200,216,218,219,220,226,242,252,253,254,256,263,266,267,268,281,291],zillion:14,zip:[4,258,275],zone:101},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","FAQ - Administrative","Contributing to Newt or Newtmgr Tools","Developing Mynewt Applications with Visual Studio Code","Appendix","Mynewt OS related FAQ","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","BLE User Guide","NimBLE Security","Configure device ddress","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","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","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","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","fs_close","fs_closedir","fs_dirent_is_dir","fs_dirent_name","fs_filelen","fs_getpos","fs_mkdir","fs_open","fs_opendir","struct fs_ops","fs_read","fs_readdir","fs_register","fs_rename","fs/fs Return Codes","fs_seek","fs_unlink","fs_write","fsutil_read_file","fsutil_write_file","Newtron Flash Filesystem (nffs)","struct nffs_area_desc","struct nffs_config","nffs_detect","nffs_format","nffs_init","Internals of 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","json_encode_object_entry","json_encode_object_finish","json_encode_object_key","json_encode_object_start","json_read_object","Logging","Sensor API","Creating and Configuring a Sensor Device","Sensor Device Driver","Mynewt Sensor Framework Overview","Sensor Listener API","Sensor Manager API","OIC Sensor Support","Sensor Shell Command","Shell","shell_cmd_register","shell_evq_set","shell_nlip_input_register","shell_nlip_output","shell_register","shell_register_app_cmd_handler","shell_register_default_module","Split Images","Statistics Module","Validation and Error Messages","System Configuration and Initialization","TEST_ASSERT","TEST_CASE","TEST_CASE_DECL","TEST_PASS","TEST_SUITE","testutil","tu_init","tu_restart","OS User Guide","Blinky, your \u201cHello World!\u201d, on STM32F303 Discovery","Enabling Newt Manager in Your Application","How to Define a Target","How to Use Event Queues to Manage Multiple Events","Over-the-Air Image Upgrade","Pin Wheel Modifications to \u201cBlinky\u201d on STM32F3 Discovery","Tasks and Priority Management","Try Markdown","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","LoRaWAN App","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","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":[153,182],"default":[242,257,279],"function":[14,94,101,102,138,141,196,200,207,209,211,212,226,232,242,250,252,276,279],"import":236,"new":[7,45,95,96,180,184,249,279,281,284,285,287],"public":24,"return":[21,137,139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,177,178,179,197,198,199,201,202,203,204,205,216,217,218,219,220,221,222,227,228,229,230,231,233,234],"switch":[102,242],"try":[243,266],Adding:[59,82,224,268,275,276,279,281],For:4,One:14,The:[152,257],Use:[2,237,239,246,257,274,281,284,287],Used:207,Uses:206,Using:[8,58,81,90,131,134,189,277,281,287],acceleromet:279,access:[246,250,270],adafruit:14,adc:275,add:[67,94,253,254,273,274,275,276,281],addit:[268,275],address:[20,24,31,253,254],administr:10,advertis:[14,28,30,31,248,253,254],air:[240,272,273,274],all:[14,239],altern:14,ambigu:225,analog:275,apach:[9,32,93],api:[28,29,31,85,86,87,88,89,90,91,92,98,99,100,101,130,131,152,153,174,181,183,184,185,187,188,190,191,192,193,194,195,206,207,211,212,281],app:[9,31,62,223,246,249,263,281,283,289],app_get_light:276,app_set_light:276,appendix:[13,94],applic:[7,12,33,93,206,207,208,223,236,237,239,242,245,246,253,254,255,257,258,259,260,261,262,263,264,267,275,276,277,278,279,281,284,287],apt:[58,81],architectur:95,arduino:[8,255,258,267],area:[174,180,225],argument:[139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,169,170,171,172,173,177,178,197,198,199,201,202,203,204,205,216,217,218,219,220,222,227,228,229,230,231,233,234],arm:[4,14],artifact:62,assert:266,assign:225,associ:12,att:[15,21],attach:246,attribut:[31,252],autocomplet:37,avail:[28,29,40,44,51,256,268,283,286],bare:245,baselibc:102,bash:37,basic:93,beacon:[253,254],bearer:32,begin:[31,248],being:250,belong:31,between:[14,267],binari:[58,60,81,83],bit:6,bitbang:14,ble:[14,22,245,247,249,253,254,275,276],ble_gap_disc_param:14,blehci:246,blemesh:14,bleprph_gap_ev:251,bleprph_oic:276,blink:236,blink_rigado:49,blinki:[7,236,241,255,256,257,258,259,260,261,262],block:[14,180],bluetooth:[14,22,32,244,246,273],bluez:246,bno055:277,bno055_log:209,bno055_stat:209,board:[97,208,255,258,259,260,261,262,263,267,275,276,277,278,284,287],bone:245,boot:[14,129,223],bootload:[14,129,246,255,258,259,260,261,262,263,267,277,281,284,287],branch:[59,82],brew:6,bsp:[54,94,97,183,225],btmgmt:246,btmon:246,btshell:[28,29,31],buffer:141,bug:10,build:[7,9,12,14,35,56,62,236,237,241,242,245,246,255,257,258,259,260,261,262,263,267,275,276,277,278,279,281,284,285,287],cach:180,call:[14,279],callback:251,callout:[85,239],can:10,cannot:279,categori:291,chang:[34,64,279],channel:28,characterist:[31,247,250],check:[58,59,60,81,82,83,94,98,129,212],choos:266,circular:141,clean:36,clear:262,cli:[130,274],client:[15,17],clock:25,close:263,cmsis_nvic:14,code:[12,14,21,94,95,168,224,264,266],collect:180,command:[12,14,28,29,40,44,51,63,65,67,133,209,214,215,237,246,274,285],committ:10,commun:[8,237,257],compil:[14,95],complet:[37,215],compon:[22,268],comput:[58,81,267,277,281],concept:[1,223],conclus:[245,253,254,275],condit:226,config:[66,130],configur:[1,12,24,25,28,29,31,130,152,206,207,208,209,212,225,226,236,237,253,254,257,279],conflict:226,congratul:266,conn:67,connect:[14,28,31,237,240,246,255,257,258,259,260,261,262,263,267,275,276,277,278,281,284,285,287,288],consider:242,consol:[131,215,224,257,267,277,281,288],contain:2,content:[34,64],context:242,contribut:11,control:[25,246,253,254,276,277,278,283],copi:[94,276],core:[14,21,93,97],correct:14,cpu:[87,95,97],crash:68,creat:[7,38,90,94,95,184,208,236,237,240,245,246,249,253,254,255,258,259,260,261,262,263,266,267,269,274,275,276,277,278,281,284,285,287],creation:93,cross:4,crystal:25,current:223,custom:[98,132,237],data:[30,101,138,141,153,174,180,188,196,200,207,209,211,212,215,232,248,263,276,277,278,279,280,281],datetim:69,ddress:24,debian:[58,81],debug:[12,39,62,94],debugg:[4,12],declar:224,decod:200,defin:[12,94,209,224,238],definit:[186,225,226],delai:14,delet:[67,276],depend:[7,62,94,97,136,137,181,182,236,237,257,269,276,281],descript:[35,36,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,66,67,68,69,70,71,72,73,74,75,76,77,78,85,86,87,88,89,91,92,97,98,99,100,101,102,131,135,138,141,152,153,174,182,183,185,186,187,188,190,191,192,193,194,195,196,200,215,223,232,277],descriptor:[31,247,252,268],design:[135,182],detail:224,detect:180,determin:250,develop:[12,260,281],devic:[2,14,24,28,31,130,207,208,209,240,246,276,277,278,279,283],differ:14,direct:31,directori:[62,180],disabl:28,discov:31,discoveri:[28,236,241,259],disk:180,disk_op:153,displai:31,docker:2,document:[10,14,34,64],doe:268,download:[11,58,62,81,94,236,241,263,275],driver:[14,135,207,209,274,275,279],duplic:225,eabi:14,earli:14,echo:70,eddyston:253,edit:10,editor:10,elf:14,elua:138,empti:[253,254],emul:277,enabl:[2,28,37,215,223,224,237,257,267,276,277,278,280,281],encod:200,end:14,endif:[208,209],energi:244,enhanc:174,enter:245,environ:11,equip:242,eras:258,error:[14,225],establish:[31,246,267],etap:275,event:[27,88,239,251,257],everyth:[2,263,275],exactli:14,exampl:[8,21,22,27,35,36,38,39,40,44,45,46,47,48,49,51,52,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,88,93,130,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,160,161,162,164,165,167,169,170,171,172,173,177,178,182,186,194,198,199,201,202,203,204,205,216,218,219,221,222,225,226,227,228,229,231,232,233,234,239],execut:[6,236,241,258,259,260,262,263,275,285,288,289],exist:[237,257,268,277],explor:7,express:225,extend:[28,281],extens:[2,12],extern:[236,255,267],faq:[10,14],fat:152,fcb:141,fcb_append:142,fcb_append_finish:143,fcb_append_to_scratch:144,fcb_clear:145,fcb_getnext:146,fcb_init:147,fcb_is_empti:148,fcb_offset_last_n:149,fcb_rotat:150,fcb_walk:151,featur:[7,10,22,23,29,32,93],fetch:[7,255,267],field:30,file:[14,94,136,137,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,180,181,224,229,269,276,279,281],filesystem:[153,174],fill:94,find:268,firmwar:14,first:[7,9],flag:[35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78],flash:[94,129,136,141,174,180,185,225,258,262],forget:14,format:[14,129,180],framework:[134,209,210,237,280],from:[58,59,60,81,82,83,131,276,278,279],fs_close:154,fs_closedir:155,fs_dirent_is_dir:156,fs_dirent_nam:157,fs_filelen:158,fs_getpo:159,fs_mkdir:160,fs_op:163,fs_open:161,fs_opendir:162,fs_read:164,fs_readdir:165,fs_regist:166,fs_renam:167,fs_seek:169,fs_unlink:170,fs_write:171,fsutil_read_fil:172,fsutil_write_fil:173,ft232h:8,full:131,futur:174,gap:[16,28,251],garbag:180,gatt:[17,18,29,273],gcc:[6,14],gdb:6,gener:[23,31,135,182,226,239],get:[3,58,81,209],git:[10,60],global:[35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78],gpio:187,grei:14,group:14,guarante:251,guid:[22,56,79,235],hal:[97,184,189,274],hal_flash_int:186,hal_i2c:188,handler:[130,206,215],hardcod:24,hardwar:[24,182,236,263,275,277,288,289],hci:[21,246],header:[15,16,17,18,20,21,90,136,137,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,181,224,276,279],heading3:243,heading4:243,heap:89,hello:[236,255,258,259,260,261,262],help:[40,215],high:129,hold:224,homebrew:[59,82],host:[15,16,17,18,19,20,21,253,254],how:[10,102,226,238,239,264,268,276,279],i2c:188,iOS:14,ibeacon:254,ident:20,identifi:268,ignor:225,imag:[14,38,47,72,129,196,223,236,237,240,241,246,258,259,260,261,262,263,267,275,276,277,278,279,281,284,287],imgmgr_module_init:197,imgr_ver_pars:198,imgr_ver_str:199,immedi:14,implement:[95,135,206,209,224],includ:[31,209,224,252],indefinit:[253,254],info:41,inform:215,initi:[31,136,137,174,207,209,224,226,242,279],inod:180,input:[131,215],instal:[2,4,5,6,11,12,14,37,42,57,58,59,60,61,80,81,82,83,84,236,263,275],instead:281,integr:129,interfac:[181,184,207],intern:[174,180],interrupt:239,introduct:[9,15,16,17,18,19,20,21,32,56,94,239,247,266],invalid:225,invert:14,invok:133,issu:14,join:263,json:200,json_encode_object_entri:201,json_encode_object_finish:202,json_encode_object_kei:203,json_encode_object_start:204,json_read_object:205,kei:[14,23,28],kernel:93,kit:260,l2cap:[14,21,28],laptop:10,latest:[58,59,60,81,82,83],launch:289,layer:182,lead:14,led:[236,241],legaci:28,level:[129,206,240],libc:6,librari:[189,236],like:10,limit:129,line:215,link:4,linker:94,linux:[2,4,6,8,11,58,61,81,84],lis2dh12_onb:208,list:[10,65,102,138,141,196,200,207,211,212,223,232,243,253,254,277,281],listen:[211,281],load:[43,237,246,255,258,259,260,261,262,267,276,277,278,279,281,284,287],loader:223,log:[73,206,209,240],look:212,lorawan:263,low:244,lua_init:139,lua_main:140,mac:[2,4,6,8,11,59,61,82,84],macro:101,main:[242,257,276,279,281],make:10,manag:[9,21,56,64,79,132,133,196,212,237,239,242],manual:[58,81],map:[94,129],markdown:243,master:[59,82],mbuf:90,mcu:[14,94,96,97],measur:174,memori:[91,262],merg:10,mesh:[14,22,32],messag:[14,225],method:[24,58,81],mfg:44,mfghash:14,mgmt:132,mingw:60,minim:131,miscellan:[14,174],mkr1000:267,mmc:137,model:32,modif:241,modifi:[237,257,276,281],modul:[14,215,224],monitor:[246,278,280],more:[56,236],move:180,mpstat:74,mqueue:90,msy:90,msys2:60,multicast:14,multipl:[12,153,224,225,239],mutex:92,my_sensor_app:281,mynewt:[2,7,8,9,12,14,24,32,34,59,64,82,93,94,95,96,97,131,210,245,268,276,278,283],mynewt_v:[208,209],name:[31,215,224,226],nano:262,nativ:[5,6],need:[2,236,241,263,268,274,275,277,288,289],newt:[2,9,11,12,14,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,64,79,132,133,237],newtmgr:[11,14,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,84,133,215,224,237,240,284,285,287],newtron:174,next:[6,277],nfc:14,nff:[14,174,180],nffs_area_desc:175,nffs_config:176,nffs_detect:177,nffs_format:178,nffs_init:179,nimbl:[14,15,16,17,18,19,20,21,22,23,26,245,246,253,254],nmp:14,node:32,none:14,nordic:[8,284],normal:90,note:[56,101,138,139,140,142,143,144,145,146,147,148,149,150,151,154,157,159,160,161,162,166,167,169,171,172,175,176,197,198,199,217,224,227,230,275],notnul:225,nrf52840:14,nrf52:[14,260,275,277,284],nrf52_adc:275,nrf52dk:[8,14],nrf:24,object:[180,207,236,241,256,263,275,288,289],off:[208,277],oic:[134,213,276,278,280,283],oicmgr:237,olimex:[261,287],omgr_app_init:276,onboard:[208,281],onto:[255,267],open:[246,263],openocd:4,oper:[14,56,62,93,129,188,191,223],option:[237,258],orient:28,ota:263,other:[7,12,181,237,265,269],out:[14,266,268,269],output:[49,54,131],over:[215,240],overrid:[225,226],overview:[65,210,247,248,249,251,256,276,279,280,283,286],own:10,pack:2,packag:[1,7,58,62,81,94,97,131,181,206,207,210,225,226,237,245,255,266,267,274,276,277,281],packet:90,passiv:31,patch:10,peer:[21,31],perform:31,peripher:[247,249],persist:130,pin:[14,241],pkg:[14,46,94],platform:[8,182],poll:[207,212],pool:[90,91],port:[8,14,94,95,96,97,263],precis:14,preempt:242,prerequisit:[7,237,239,240,242,246,249,255,256,257,258,259,260,261,262,267,276,277,278,279,280,281,283,284,285,286,287,291],preview:[34,64],previou:[61,84],primo:258,principl:[135,182],printf:14,prioriti:[225,242],privaci:23,privat:270,pro:8,process:[215,257],produc:[6,62],profil:[14,237,240,285],project:[1,7,10,12,14,22,236,237,245,246,247,255,256,257,258,259,260,261,262,263,267,268,269,272,273,274,275,284,285,286,287],prompt:215,protect:262,protocol:[215,237,253,254],provis:32,pull:[2,10],put:239,qualiti:[272,273,274],queri:[284,287],question:[10,14],queue:[88,239,257],radio:14,ram:180,random:[14,24],rate:207,rational:56,read:[31,207,209,250,279,281],reboot:279,rebuild:[11,281],reconfigur:208,recoveri:129,redbear:262,reduc:[14,240,264],refer:[15,16,17,18,20,21,226],referenc:226,regist:[98,181,209,212,215,224,277],registr:252,relat:14,releas:[58,59,60,61,81,82,83,84],renam:180,repo:[268,269,271],repositori:[7,10,56,268,269,270,275],represent:180,request:10,requir:94,reset:[27,75,129],resign:47,resolut:269,resolv:[62,226,269],respond:27,restart:14,restrict:225,retriev:[223,224],review:[242,250],round:241,rtt:[281,288],run:[7,12,14,48,76,255,257,285,288,289],runtim:[24,130],safeti:153,sampl:[33,277,279],saniti:98,satisfi:94,scale:266,scan:31,schedul:86,scratch:180,script:[2,94],section:224,secur:[21,23,28],segger:[4,288,289],select:2,semant:14,semaphor:99,semiconductor:8,send:[31,246,263],sensor:[207,208,209,210,211,212,213,214,272,273,274,275,276,277,278,279,280,281,282,283],sensor_read:281,sensors_test:278,sequenc:223,serial:[8,14,215,246,257,267,284,287],server:18,servic:[31,247,252,273,275],set:[6,11,14,31,58,81,94,206,207,209,225,226,237,245,248,252,257,274,276,279,285],settl:25,setup:[3,8,14,26,267,288,289],shell:[209,214,215,257,281],shell_cmd_regist:216,shell_evq_set:217,shell_nlip_input_regist:218,shell_nlip_output:219,shell_regist:220,shell_register_app_cmd_handl:221,shell_register_default_modul:222,should:269,show:[31,67],sign:[129,236,258,259,260,261,262,263,267,275,284,287],signatur:250,sim:285,simul:7,singl:223,size:[14,49,264],skeleton:281,slinki:[284,285,286,287],slot:129,smart:[276,278,283],softwar:289,some:10,sourc:[7,11,56,58,60,81,83,237,253,254,274,276],space:180,special:101,specif:[95,269],specifi:[181,226],spi:191,split:223,stack:[242,253,254],start:[3,246,267],startup:94,stat:[77,209,224],state:[129,130,223],statist:224,statu:129,step:[11,240,256,276,277,278,279,281,286],stm32f303:236,stm32f3:[236,241],stm32f4:259,storag:28,struct:[153,163,175,176],structur:[63,101,138,141,153,174,180,196,200,207,211,212,215,232],stub:131,studio:12,stuff:274,sub:67,submit:10,suit:266,summari:21,support:[2,14,32,62,97,153,182,210,213,236,237,276,277,280,281],swap:129,sync:[14,27,50,253,254],syntax:14,syscfg:[206,223,226,276],sysinit_app:226,system:[14,25,56,93,152,153,181,192,225,226],systemview:289,tabl:224,talk:267,tap:[59,82],target:[1,24,51,62,94,236,237,238,241,245,246,249,255,257,258,259,260,261,262,263,267,275,277,281,284,285,287,288,289],task:[12,14,98,100,225,239,242,275],taskstat:78,tcp:267,templat:94,termin:277,test:[7,52,94,266,274],test_assert:227,test_cas:[228,229],test_case_decl:229,test_pass:230,test_suit:231,testutil:232,theori:[62,188,191,223],thingi:281,thread:153,through:224,tick:190,time:[14,25,87,101],timer:[193,239,257],togeth:239,tool:[4,11,34,56,60,83,290],toolchain:[4,6],topolog:32,transceiv:14,transport:[215,237],tree:274,trigger:14,tu_init:233,tu_restart:234,tutori:[223,256,283,286,291],type:[207,209,212,277],uart:194,undefin:225,under:266,undirect:31,unifi:223,unlink:180,updat:11,upgrad:[14,53,58,59,81,82,223,240,271],upload:257,usag:[35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,132,141],usb2:2,use:[10,58,81,90,93,268],user:[22,235],using:[14,56,284,287],val:54,valid:225,valu:[14,137,139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,169,170,171,172,173,177,178,179,197,198,199,201,202,203,204,205,207,209,216,217,218,219,220,221,222,225,226,227,228,229,230,231,233,234,276,279],variabl:224,vector:129,verif:[129,279],verifi:279,version:[55,58,59,60,81,82,83,268,269],via:[267,273,281],view:[276,277,278,281],violat:225,virtualbox:2,visual:12,wait:[253,254],want:[10,236],watch:[236,241],watchdog:195,water:275,welcom:9,what:[10,236,241,268],wheel:241,where:269,why:[90,93,268],window:[2,4,8,11,60,61,83,84],work:12,workspac:12,world:[236,255,258,259,260,261,262],would:10,wrapper:2,write:[31,34,64,180,250,262,266],yml:[14,94,269],you:[2,236,241,274],your:[2,7,9,11,12,58,81,181,189,224,236,237,242,255,258,259,260,261,262,266,267,268,277,281,285],zero:[14,255]}})
\ 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/faq","misc/go_env","misc/ide","misc/index","mynewt_faq","network/ble/ble_hs/ble_att","network/ble/ble_hs/ble_gap","network/ble/ble_hs/ble_gattc","network/ble/ble_hs/ble_gatts","network/ble/ble_hs/ble_hs","network/ble/ble_hs/ble_hs_id","network/ble/ble_hs/ble_hs_return_codes","network/ble/ble_intro","network/ble/ble_sec","network/ble/ble_setup/ble_addr","network/ble/ble_setup/ble_lp_clock","network/ble/ble_setup/ble_setup_intro","network/ble/ble_setup/ble_sync_cb","network/ble/btshell/btshell_GAP","network/ble/btshell/btshell_GATT","network/ble/btshell/btshell_advdata","network/ble/btshell/btshell_api","network/ble/mesh/index","network/ble/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/boot_build_status","os/modules/bootloader/boot_build_status_one","os/modules/bootloader/boot_clear_status","os/modules/bootloader/boot_copy_area","os/modules/bootloader/boot_copy_image","os/modules/bootloader/boot_erase_area","os/modules/bootloader/boot_fill_slot","os/modules/bootloader/boot_find_image_area_idx","os/modules/bootloader/boot_find_image_part","os/modules/bootloader/boot_find_image_slot","os/modules/bootloader/boot_go","os/modules/bootloader/boot_init_flash","os/modules/bootloader/boot_move_area","os/modules/bootloader/boot_read_image_header","os/modules/bootloader/boot_read_image_headers","os/modules/bootloader/boot_read_status","os/modules/bootloader/boot_select_image_slot","os/modules/bootloader/boot_slot_addr","os/modules/bootloader/boot_slot_to_area_idx","os/modules/bootloader/boot_swap_areas","os/modules/bootloader/boot_vect_delete_main","os/modules/bootloader/boot_vect_delete_test","os/modules/bootloader/boot_vect_read_main","os/modules/bootloader/boot_vect_read_one","os/modules/bootloader/boot_vect_read_test","os/modules/bootloader/boot_write_status","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/fs","os/modules/fs/fs/fs_close","os/modules/fs/fs/fs_closedir","os/modules/fs/fs/fs_dirent_is_dir","os/modules/fs/fs/fs_dirent_name","os/modules/fs/fs/fs_filelen","os/modules/fs/fs/fs_getpos","os/modules/fs/fs/fs_mkdir","os/modules/fs/fs/fs_open","os/modules/fs/fs/fs_opendir","os/modules/fs/fs/fs_ops","os/modules/fs/fs/fs_read","os/modules/fs/fs/fs_readdir","os/modules/fs/fs/fs_register","os/modules/fs/fs/fs_rename","os/modules/fs/fs/fs_return_codes","os/modules/fs/fs/fs_seek","os/modules/fs/fs/fs_unlink","os/modules/fs/fs/fs_write","os/modules/fs/fs/fsutil_read_file","os/modules/fs/fs/fsutil_write_file","os/modules/fs/nffs/nffs","os/modules/fs/nffs/nffs_area_desc","os/modules/fs/nffs/nffs_config","os/modules/fs/nffs/nffs_detect","os/modules/fs/nffs/nffs_format","os/modules/fs/nffs/nffs_init","os/modules/fs/nffs/nffs_internals","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/json/json_encode_object_entry","os/modules/json/json_encode_object_finish","os/modules/json/json_encode_object_key","os/modules/json/json_encode_object_start","os/modules/json/json_read_object","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_overview","os/modules/sensor_framework/sensor_listener_api","os/modules/sensor_framework/sensor_mgr_api","os/modules/sensor_framework/sensor_oic","os/modules/sensor_framework/sensor_shell","os/modules/shell/shell","os/modules/shell/shell_cmd_register","os/modules/shell/shell_evq_set","os/modules/shell/shell_nlip_input_register","os/modules/shell/shell_nlip_output","os/modules/shell/shell_register","os/modules/shell/shell_register_app_cmd_handler","os/modules/shell/shell_register_default_module","os/modules/split/split","os/modules/stats/stats","os/modules/sysinitconfig/sysconfig_error","os/modules/sysinitconfig/sysinitconfig","os/modules/system_modules","os/modules/testutil/test_assert","os/modules/testutil/test_case","os/modules/testutil/test_decl","os/modules/testutil/test_pass","os/modules/testutil/test_suite","os/modules/testutil/testutil","os/modules/testutil/tu_init","os/modules/testutil/tu_restart","os/os_user_guide","os/tutorials/STM32F303","os/tutorials/add_newtmgr","os/tutorials/define_target","os/tutorials/event_queue","os/tutorials/ota_upgrade_nrf52","os/tutorials/pin-wheel-mods","os/tutorials/tasks_lesson","os/tutorials/try_markdown","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/lora/lorawanapp","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_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/faq.rst","misc/go_env.rst","misc/ide.rst","misc/index.rst","mynewt_faq.rst","network/ble/ble_hs/ble_att.rst","network/ble/ble_hs/ble_gap.rst","network/ble/ble_hs/ble_gattc.rst","network/ble/ble_hs/ble_gatts.rst","network/ble/ble_hs/ble_hs.rst","network/ble/ble_hs/ble_hs_id.rst","network/ble/ble_hs/ble_hs_return_codes.rst","network/ble/ble_intro.rst","network/ble/ble_sec.rst","network/ble/ble_setup/ble_addr.rst","network/ble/ble_setup/ble_lp_clock.rst","network/ble/ble_setup/ble_setup_intro.rst","network/ble/ble_setup/ble_sync_cb.rst","network/ble/btshell/btshell_GAP.rst","network/ble/btshell/btshell_GATT.rst","network/ble/btshell/btshell_advdata.rst","network/ble/btshell/btshell_api.rst","network/ble/mesh/index.rst","network/ble/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/boot_build_status.rst","os/modules/bootloader/boot_build_status_one.rst","os/modules/bootloader/boot_clear_status.rst","os/modules/bootloader/boot_copy_area.rst","os/modules/bootloader/boot_copy_image.rst","os/modules/bootloader/boot_erase_area.rst","os/modules/bootloader/boot_fill_slot.rst","os/modules/bootloader/boot_find_image_area_idx.rst","os/modules/bootloader/boot_find_image_part.rst","os/modules/bootloader/boot_find_image_slot.rst","os/modules/bootloader/boot_go.rst","os/modules/bootloader/boot_init_flash.rst","os/modules/bootloader/boot_move_area.rst","os/modules/bootloader/boot_read_image_header.rst","os/modules/bootloader/boot_read_image_headers.rst","os/modules/bootloader/boot_read_status.rst","os/modules/bootloader/boot_select_image_slot.rst","os/modules/bootloader/boot_slot_addr.rst","os/modules/bootloader/boot_slot_to_area_idx.rst","os/modules/bootloader/boot_swap_areas.rst","os/modules/bootloader/boot_vect_delete_main.rst","os/modules/bootloader/boot_vect_delete_test.rst","os/modules/bootloader/boot_vect_read_main.rst","os/modules/bootloader/boot_vect_read_one.rst","os/modules/bootloader/boot_vect_read_test.rst","os/modules/bootloader/boot_write_status.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/fs.rst","os/modules/fs/fs/fs_close.rst","os/modules/fs/fs/fs_closedir.rst","os/modules/fs/fs/fs_dirent_is_dir.rst","os/modules/fs/fs/fs_dirent_name.rst","os/modules/fs/fs/fs_filelen.rst","os/modules/fs/fs/fs_getpos.rst","os/modules/fs/fs/fs_mkdir.rst","os/modules/fs/fs/fs_open.rst","os/modules/fs/fs/fs_opendir.rst","os/modules/fs/fs/fs_ops.rst","os/modules/fs/fs/fs_read.rst","os/modules/fs/fs/fs_readdir.rst","os/modules/fs/fs/fs_register.rst","os/modules/fs/fs/fs_rename.rst","os/modules/fs/fs/fs_return_codes.rst","os/modules/fs/fs/fs_seek.rst","os/modules/fs/fs/fs_unlink.rst","os/modules/fs/fs/fs_write.rst","os/modules/fs/fs/fsutil_read_file.rst","os/modules/fs/fs/fsutil_write_file.rst","os/modules/fs/nffs/nffs.rst","os/modules/fs/nffs/nffs_area_desc.rst","os/modules/fs/nffs/nffs_config.rst","os/modules/fs/nffs/nffs_detect.rst","os/modules/fs/nffs/nffs_format.rst","os/modules/fs/nffs/nffs_init.rst","os/modules/fs/nffs/nffs_internals.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/json/json_encode_object_entry.rst","os/modules/json/json_encode_object_finish.rst","os/modules/json/json_encode_object_key.rst","os/modules/json/json_encode_object_start.rst","os/modules/json/json_read_object.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_overview.rst","os/modules/sensor_framework/sensor_listener_api.rst","os/modules/sensor_framework/sensor_mgr_api.rst","os/modules/sensor_framework/sensor_oic.rst","os/modules/sensor_framework/sensor_shell.rst","os/modules/shell/shell.rst","os/modules/shell/shell_cmd_register.rst","os/modules/shell/shell_evq_set.rst","os/modules/shell/shell_nlip_input_register.rst","os/modules/shell/shell_nlip_output.rst","os/modules/shell/shell_register.rst","os/modules/shell/shell_register_app_cmd_handler.rst","os/modules/shell/shell_register_default_module.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/test_assert.rst","os/modules/testutil/test_case.rst","os/modules/testutil/test_decl.rst","os/modules/testutil/test_pass.rst","os/modules/testutil/test_suite.rst","os/modules/testutil/testutil.rst","os/modules/testutil/tu_init.rst","os/modules/testutil/tu_restart.rst","os/os_user_guide.rst","os/tutorials/STM32F303.rst","os/tutorials/add_newtmgr.rst","os/tutorials/define_target.rst","os/tutorials/event_queue.rst","os/tutorials/ota_upgrade_nrf52.rst","os/tutorials/pin-wheel-mods.rst","os/tutorials/tasks_lesson.rst","os/tutorials/try_markdown.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/lora/lorawanapp.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_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:{"":{"HALGpio::HAL_GPIO_MODE_IN":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_IN"],"HALGpio::HAL_GPIO_MODE_NC":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_NC"],"HALGpio::HAL_GPIO_MODE_OUT":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_OUT"],"HALGpio::HAL_GPIO_PULL_DOWN":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_DOWN"],"HALGpio::HAL_GPIO_PULL_NONE":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_NONE"],"HALGpio::HAL_GPIO_PULL_UP":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_UP"],"HALGpio::HAL_GPIO_TRIG_BOTH":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_BOTH"],"HALGpio::HAL_GPIO_TRIG_FALLING":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_FALLING"],"HALGpio::HAL_GPIO_TRIG_HIGH":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_HIGH"],"HALGpio::HAL_GPIO_TRIG_LOW":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_LOW"],"HALGpio::HAL_GPIO_TRIG_NONE":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_NONE"],"HALGpio::HAL_GPIO_TRIG_RISING":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_RISING"],"HALGpio::hal_gpio_irq_trigger":[187,2,1,"c.HALGpio::hal_gpio_irq_trigger"],"HALGpio::hal_gpio_mode_e":[187,2,1,"c.HALGpio::hal_gpio_mode_e"],"HALGpio::hal_gpio_pull":[187,2,1,"c.HALGpio::hal_gpio_pull"],"HALSystem::HAL_RESET_BROWNOUT":[192,1,1,"c.HALSystem::HAL_RESET_BROWNOUT"],"HALSystem::HAL_RESET_PIN":[192,1,1,"c.HALSystem::HAL_RESET_PIN"],"HALSystem::HAL_RESET_POR":[192,1,1,"c.HALSystem::HAL_RESET_POR"],"HALSystem::HAL_RESET_REQUESTED":[192,1,1,"c.HALSystem::HAL_RESET_REQUESTED"],"HALSystem::HAL_RESET_SOFT":[192,1,1,"c.HALSystem::HAL_RESET_SOFT"],"HALSystem::HAL_RESET_WATCHDOG":[192,1,1,"c.HALSystem::HAL_RESET_WATCHDOG"],"HALSystem::hal_reset_reason":[192,2,1,"c.HALSystem::hal_reset_reason"],"HALUart::HAL_UART_FLOW_CTL_NONE":[194,1,1,"c.HALUart::HAL_UART_FLOW_CTL_NONE"],"HALUart::HAL_UART_FLOW_CTL_RTS_CTS":[194,1,1,"c.HALUart::HAL_UART_FLOW_CTL_RTS_CTS"],"HALUart::HAL_UART_PARITY_EVEN":[194,1,1,"c.HALUart::HAL_UART_PARITY_EVEN"],"HALUart::HAL_UART_PARITY_NONE":[194,1,1,"c.HALUart::HAL_UART_PARITY_NONE"],"HALUart::HAL_UART_PARITY_ODD":[194,1,1,"c.HALUart::HAL_UART_PARITY_ODD"],"HALUart::hal_uart_flow_ctl":[194,2,1,"c.HALUart::hal_uart_flow_ctl"],"HALUart::hal_uart_parity":[194,2,1,"c.HALUart::hal_uart_parity"],"OSTask::OS_TASK_READY":[100,1,1,"c.OSTask::OS_TASK_READY"],"OSTask::OS_TASK_SLEEP":[100,1,1,"c.OSTask::OS_TASK_SLEEP"],"OSTask::os_task_state":[100,2,1,"c.OSTask::os_task_state"],"SysConfig::CONF_EXPORT_PERSIST":[130,1,1,"c.SysConfig::CONF_EXPORT_PERSIST"],"SysConfig::CONF_EXPORT_SHOW":[130,1,1,"c.SysConfig::CONF_EXPORT_SHOW"],"SysConfig::conf_export_tgt":[130,2,1,"c.SysConfig::conf_export_tgt"],"SysConfig::conf_type":[130,2,1,"c.SysConfig::conf_type"],"conf_handler::ch_commit":[130,5,1,"c.conf_handler::ch_commit"],"conf_handler::ch_export":[130,5,1,"c.conf_handler::ch_export"],"conf_handler::ch_get":[130,5,1,"c.conf_handler::ch_get"],"conf_handler::ch_name":[130,5,1,"c.conf_handler::ch_name"],"conf_handler::ch_set":[130,5,1,"c.conf_handler::ch_set"],"console_input::line":[131,5,1,"c.console_input::line"],"hal_i2c_master_data::address":[188,5,1,"c.hal_i2c_master_data::address"],"hal_i2c_master_data::buffer":[188,5,1,"c.hal_i2c_master_data::buffer"],"hal_spi_settings::baudrate":[191,5,1,"c.hal_spi_settings::baudrate"],"hal_spi_settings::data_mode":[191,5,1,"c.hal_spi_settings::data_mode"],"hal_spi_settings::data_order":[191,5,1,"c.hal_spi_settings::data_order"],"hal_spi_settings::word_size":[191,5,1,"c.hal_spi_settings::word_size"],"hal_timer::bsp_timer":[193,5,1,"c.hal_timer::bsp_timer"],"hal_timer::cb_arg":[193,5,1,"c.hal_timer::cb_arg"],"hal_timer::cb_func":[193,5,1,"c.hal_timer::cb_func"],"hal_timer::expiry":[193,5,1,"c.hal_timer::expiry"],"os_callout::c_ev":[85,5,1,"c.os_callout::c_ev"],"os_callout::c_evq":[85,5,1,"c.os_callout::c_evq"],"os_callout::c_ticks":[85,5,1,"c.os_callout::c_ticks"],"os_event::ev_arg":[88,5,1,"c.os_event::ev_arg"],"os_event::ev_cb":[88,5,1,"c.os_event::ev_cb"],"os_event::ev_queued":[88,5,1,"c.os_event::ev_queued"],"os_eventq::evq_owner":[88,5,1,"c.os_eventq::evq_owner"],"os_eventq::evq_task":[88,5,1,"c.os_eventq::evq_task"],"os_mbuf::om_data":[90,5,1,"c.os_mbuf::om_data"],"os_mbuf::om_flags":[90,5,1,"c.os_mbuf::om_flags"],"os_mbuf::om_len":[90,5,1,"c.os_mbuf::om_len"],"os_mbuf::om_omp":[90,5,1,"c.os_mbuf::om_omp"],"os_mbuf::om_pkthdr_len":[90,5,1,"c.os_mbuf::om_pkthdr_len"],"os_mbuf_pkthdr::omp_flags":[90,5,1,"c.os_mbuf_pkthdr::omp_flags"],"os_mbuf_pkthdr::omp_len":[90,5,1,"c.os_mbuf_pkthdr::omp_len"],"os_mbuf_pool::omp_databuf_len":[90,5,1,"c.os_mbuf_pool::omp_databuf_len"],"os_mbuf_pool::omp_pool":[90,5,1,"c.os_mbuf_pool::omp_pool"],"os_mempool::mp_block_size":[91,5,1,"c.os_mempool::mp_block_size"],"os_mempool::mp_flags":[91,5,1,"c.os_mempool::mp_flags"],"os_mempool::mp_membuf_addr":[91,5,1,"c.os_mempool::mp_membuf_addr"],"os_mempool::mp_min_free":[91,5,1,"c.os_mempool::mp_min_free"],"os_mempool::mp_num_blocks":[91,5,1,"c.os_mempool::mp_num_blocks"],"os_mempool::mp_num_free":[91,5,1,"c.os_mempool::mp_num_free"],"os_mempool::name":[91,5,1,"c.os_mempool::name"],"os_mempool_info::omi_block_size":[91,5,1,"c.os_mempool_info::omi_block_size"],"os_mempool_info::omi_min_free":[91,5,1,"c.os_mempool_info::omi_min_free"],"os_mempool_info::omi_num_blocks":[91,5,1,"c.os_mempool_info::omi_num_blocks"],"os_mempool_info::omi_num_free":[91,5,1,"c.os_mempool_info::omi_num_free"],"os_mqueue::mq_ev":[90,5,1,"c.os_mqueue::mq_ev"],"os_mutex::SLIST_HEAD":[92,3,1,"c.os_mutex::SLIST_HEAD"],"os_mutex::_pad":[92,5,1,"c.os_mutex::_pad"],"os_mutex::mu_level":[92,5,1,"c.os_mutex::mu_level"],"os_mutex::mu_owner":[92,5,1,"c.os_mutex::mu_owner"],"os_mutex::mu_prio":[92,5,1,"c.os_mutex::mu_prio"],"os_sanity_check::sc_arg":[98,5,1,"c.os_sanity_check::sc_arg"],"os_sanity_check::sc_checkin_itvl":[98,5,1,"c.os_sanity_check::sc_checkin_itvl"],"os_sanity_check::sc_checkin_last":[98,5,1,"c.os_sanity_check::sc_checkin_last"],"os_sanity_check::sc_func":[98,5,1,"c.os_sanity_check::sc_func"],"os_sem::sem_tokens":[99,5,1,"c.os_sem::sem_tokens"],"os_task::t_arg":[100,5,1,"c.os_task::t_arg"],"os_task::t_ctx_sw_cnt":[100,5,1,"c.os_task::t_ctx_sw_cnt"],"os_task::t_flags":[100,5,1,"c.os_task::t_flags"],"os_task::t_func":[100,5,1,"c.os_task::t_func"],"os_task::t_name":[100,5,1,"c.os_task::t_name"],"os_task::t_next_wakeup":[100,5,1,"c.os_task::t_next_wakeup"],"os_task::t_obj":[100,5,1,"c.os_task::t_obj"],"os_task::t_prio":[100,5,1,"c.os_task::t_prio"],"os_task::t_run_time":[100,5,1,"c.os_task::t_run_time"],"os_task::t_sanity_check":[100,5,1,"c.os_task::t_sanity_check"],"os_task::t_stackptr":[100,5,1,"c.os_task::t_stackptr"],"os_task::t_stacksize":[100,5,1,"c.os_task::t_stacksize"],"os_task::t_stacktop":[100,5,1,"c.os_task::t_stacktop"],"os_task::t_taskid":[100,5,1,"c.os_task::t_taskid"],"os_task_info::oti_cswcnt":[100,5,1,"c.os_task_info::oti_cswcnt"],"os_task_info::oti_last_checkin":[100,5,1,"c.os_task_info::oti_last_checkin"],"os_task_info::oti_next_checkin":[100,5,1,"c.os_task_info::oti_next_checkin"],"os_task_info::oti_prio":[100,5,1,"c.os_task_info::oti_prio"],"os_task_info::oti_runtime":[100,5,1,"c.os_task_info::oti_runtime"],"os_task_info::oti_state":[100,5,1,"c.os_task_info::oti_state"],"os_task_info::oti_stksize":[100,5,1,"c.os_task_info::oti_stksize"],"os_task_info::oti_stkusage":[100,5,1,"c.os_task_info::oti_stkusage"],"os_task_info::oti_taskid":[100,5,1,"c.os_task_info::oti_taskid"],"os_timezone::tz_dsttime":[101,5,1,"c.os_timezone::tz_dsttime"],"os_timezone::tz_minuteswest":[101,5,1,"c.os_timezone::tz_minuteswest"],CONF_STR_FROM_BYTES_LEN:[130,0,1,"c.CONF_STR_FROM_BYTES_LEN"],CONF_VALUE_SET:[130,0,1,"c.CONF_VALUE_SET"],CPUTIME_GEQ:[87,0,1,"c.CPUTIME_GEQ"],CPUTIME_GT:[87,0,1,"c.CPUTIME_GT"],CPUTIME_LEQ:[87,0,1,"c.CPUTIME_LEQ"],CPUTIME_LT:[87,0,1,"c.CPUTIME_LT"],HAL_BSP_MAX_ID_LEN:[183,0,1,"c.HAL_BSP_MAX_ID_LEN"],HAL_BSP_POWER_DEEP_SLEEP:[183,0,1,"c.HAL_BSP_POWER_DEEP_SLEEP"],HAL_BSP_POWER_OFF:[183,0,1,"c.HAL_BSP_POWER_OFF"],HAL_BSP_POWER_ON:[183,0,1,"c.HAL_BSP_POWER_ON"],HAL_BSP_POWER_PERUSER:[183,0,1,"c.HAL_BSP_POWER_PERUSER"],HAL_BSP_POWER_SLEEP:[183,0,1,"c.HAL_BSP_POWER_SLEEP"],HAL_BSP_POWER_WFI:[183,0,1,"c.HAL_BSP_POWER_WFI"],HAL_SPI_LSB_FIRST:[191,0,1,"c.HAL_SPI_LSB_FIRST"],HAL_SPI_MODE0:[191,0,1,"c.HAL_SPI_MODE0"],HAL_SPI_MODE1:[191,0,1,"c.HAL_SPI_MODE1"],HAL_SPI_MODE2:[191,0,1,"c.HAL_SPI_MODE2"],HAL_SPI_MODE3:[191,0,1,"c.HAL_SPI_MODE3"],HAL_SPI_MSB_FIRST:[191,0,1,"c.HAL_SPI_MSB_FIRST"],HAL_SPI_TYPE_MASTER:[191,0,1,"c.HAL_SPI_TYPE_MASTER"],HAL_SPI_TYPE_SLAVE:[191,0,1,"c.HAL_SPI_TYPE_SLAVE"],HAL_SPI_WORD_SIZE_8BIT:[191,0,1,"c.HAL_SPI_WORD_SIZE_8BIT"],HAL_SPI_WORD_SIZE_9BIT:[191,0,1,"c.HAL_SPI_WORD_SIZE_9BIT"],OS_CALLOUT_F_QUEUED:[85,0,1,"c.OS_CALLOUT_F_QUEUED"],OS_EVENT_QUEUED:[88,0,1,"c.OS_EVENT_QUEUED"],OS_MBUF_DATA:[90,0,1,"c.OS_MBUF_DATA"],OS_MBUF_F_MASK:[90,0,1,"c.OS_MBUF_F_MASK"],OS_MBUF_IS_PKTHDR:[90,0,1,"c.OS_MBUF_IS_PKTHDR"],OS_MBUF_LEADINGSPACE:[90,0,1,"c.OS_MBUF_LEADINGSPACE"],OS_MBUF_PKTHDR:[90,0,1,"c.OS_MBUF_PKTHDR"],OS_MBUF_PKTHDR_TO_MBUF:[90,0,1,"c.OS_MBUF_PKTHDR_TO_MBUF"],OS_MBUF_PKTLEN:[90,0,1,"c.OS_MBUF_PKTLEN"],OS_MBUF_TRAILINGSPACE:[90,0,1,"c.OS_MBUF_TRAILINGSPACE"],OS_MBUF_USRHDR:[90,0,1,"c.OS_MBUF_USRHDR"],OS_MBUF_USRHDR_LEN:[90,0,1,"c.OS_MBUF_USRHDR_LEN"],OS_MEMPOOL_BYTES:[91,0,1,"c.OS_MEMPOOL_BYTES"],OS_MEMPOOL_F_EXT:[91,0,1,"c.OS_MEMPOOL_F_EXT"],OS_MEMPOOL_INFO_NAME_LEN:[91,0,1,"c.OS_MEMPOOL_INFO_NAME_LEN"],OS_MEMPOOL_SIZE:[91,0,1,"c.OS_MEMPOOL_SIZE"],OS_SANITY_CHECK_SETFUNC:[98,0,1,"c.OS_SANITY_CHECK_SETFUNC"],OS_TASK_FLAG_EVQ_WAIT:[100,0,1,"c.OS_TASK_FLAG_EVQ_WAIT"],OS_TASK_FLAG_MUTEX_WAIT:[100,0,1,"c.OS_TASK_FLAG_MUTEX_WAIT"],OS_TASK_FLAG_NO_TIMEOUT:[100,0,1,"c.OS_TASK_FLAG_NO_TIMEOUT"],OS_TASK_FLAG_SEM_WAIT:[100,0,1,"c.OS_TASK_FLAG_SEM_WAIT"],OS_TASK_MAX_NAME_LEN:[100,0,1,"c.OS_TASK_MAX_NAME_LEN"],OS_TASK_PRI_HIGHEST:[100,0,1,"c.OS_TASK_PRI_HIGHEST"],OS_TASK_PRI_LOWEST:[100,0,1,"c.OS_TASK_PRI_LOWEST"],OS_TASK_STACK_DEFINE:[100,0,1,"c.OS_TASK_STACK_DEFINE"],OS_TIMEOUT_NEVER:[101,0,1,"c.OS_TIMEOUT_NEVER"],OS_TIME_MAX:[101,0,1,"c.OS_TIME_MAX"],OS_TIME_TICK_GEQ:[101,0,1,"c.OS_TIME_TICK_GEQ"],OS_TIME_TICK_GT:[101,0,1,"c.OS_TIME_TICK_GT"],OS_TIME_TICK_LT:[101,0,1,"c.OS_TIME_TICK_LT"],_sbrk:[183,3,1,"c._sbrk"],completion_cb:[131,4,1,"c.completion_cb"],conf_bytes_from_str:[130,3,1,"c.conf_bytes_from_str"],conf_commit:[130,3,1,"c.conf_commit"],conf_commit_handler_t:[130,4,1,"c.conf_commit_handler_t"],conf_export_func_t:[130,4,1,"c.conf_export_func_t"],conf_export_handler_t:[130,4,1,"c.conf_export_handler_t"],conf_export_tgt_t:[130,4,1,"c.conf_export_tgt_t"],conf_get_handler_t:[130,4,1,"c.conf_get_handler_t"],conf_get_value:[130,3,1,"c.conf_get_value"],conf_handler:[130,7,1,"_CPPv312conf_handler"],conf_init:[130,3,1,"c.conf_init"],conf_load:[130,3,1,"c.conf_load"],conf_register:[130,3,1,"c.conf_register"],conf_save:[130,3,1,"c.conf_save"],conf_save_one:[130,3,1,"c.conf_save_one"],conf_save_tree:[130,3,1,"c.conf_save_tree"],conf_set_handler_t:[130,4,1,"c.conf_set_handler_t"],conf_set_value:[130,3,1,"c.conf_set_value"],conf_store_init:[130,3,1,"c.conf_store_init"],conf_str_from_bytes:[130,3,1,"c.conf_str_from_bytes"],conf_str_from_value:[130,3,1,"c.conf_str_from_value"],conf_value_from_str:[130,3,1,"c.conf_value_from_str"],console_append_char_cb:[131,4,1,"c.console_append_char_cb"],console_blocking_mode:[131,3,1,"c.console_blocking_mode"],console_echo:[131,3,1,"c.console_echo"],console_handle_char:[131,3,1,"c.console_handle_char"],console_init:[131,3,1,"c.console_init"],console_input:[131,6,1,"c.console_input"],console_is_init:[131,3,1,"c.console_is_init"],console_is_midline:[131,5,1,"c.console_is_midline"],console_non_blocking_mode:[131,3,1,"c.console_non_blocking_mode"],console_out:[131,3,1,"c.console_out"],console_printf:[131,3,1,"c.console_printf"],console_read:[131,3,1,"c.console_read"],console_rx_cb:[131,4,1,"c.console_rx_cb"],console_set_completion_cb:[131,3,1,"c.console_set_completion_cb"],console_set_queues:[131,3,1,"c.console_set_queues"],console_write:[131,3,1,"c.console_write"],hal_bsp_core_dump:[183,3,1,"c.hal_bsp_core_dump"],hal_bsp_flash_dev:[183,3,1,"c.hal_bsp_flash_dev"],hal_bsp_get_nvic_priority:[183,3,1,"c.hal_bsp_get_nvic_priority"],hal_bsp_hw_id:[183,3,1,"c.hal_bsp_hw_id"],hal_bsp_init:[183,3,1,"c.hal_bsp_init"],hal_bsp_power_state:[183,3,1,"c.hal_bsp_power_state"],hal_debugger_connected:[192,3,1,"c.hal_debugger_connected"],hal_flash_align:[185,3,1,"c.hal_flash_align"],hal_flash_erase:[185,3,1,"c.hal_flash_erase"],hal_flash_erase_sector:[185,3,1,"c.hal_flash_erase_sector"],hal_flash_init:[185,3,1,"c.hal_flash_init"],hal_flash_ioctl:[185,3,1,"c.hal_flash_ioctl"],hal_flash_read:[185,3,1,"c.hal_flash_read"],hal_flash_write:[185,3,1,"c.hal_flash_write"],hal_gpio_init_in:[187,3,1,"c.hal_gpio_init_in"],hal_gpio_init_out:[187,3,1,"c.hal_gpio_init_out"],hal_gpio_irq_disable:[187,3,1,"c.hal_gpio_irq_disable"],hal_gpio_irq_enable:[187,3,1,"c.hal_gpio_irq_enable"],hal_gpio_irq_handler_t:[187,4,1,"c.hal_gpio_irq_handler_t"],hal_gpio_irq_init:[187,3,1,"c.hal_gpio_irq_init"],hal_gpio_irq_release:[187,3,1,"c.hal_gpio_irq_release"],hal_gpio_irq_trig_t:[187,4,1,"c.hal_gpio_irq_trig_t"],hal_gpio_mode_t:[187,4,1,"c.hal_gpio_mode_t"],hal_gpio_pull_t:[187,4,1,"c.hal_gpio_pull_t"],hal_gpio_read:[187,3,1,"c.hal_gpio_read"],hal_gpio_toggle:[187,3,1,"c.hal_gpio_toggle"],hal_gpio_write:[187,3,1,"c.hal_gpio_write"],hal_i2c_init:[188,3,1,"c.hal_i2c_init"],hal_i2c_master_data:[188,7,1,"_CPPv319hal_i2c_master_data"],hal_i2c_master_probe:[188,3,1,"c.hal_i2c_master_probe"],hal_i2c_master_read:[188,3,1,"c.hal_i2c_master_read"],hal_i2c_master_write:[188,3,1,"c.hal_i2c_master_write"],hal_reset_cause:[192,3,1,"c.hal_reset_cause"],hal_spi_abort:[191,3,1,"c.hal_spi_abort"],hal_spi_config:[191,3,1,"c.hal_spi_config"],hal_spi_data_mode_breakout:[191,3,1,"c.hal_spi_data_mode_breakout"],hal_spi_disable:[191,3,1,"c.hal_spi_disable"],hal_spi_enable:[191,3,1,"c.hal_spi_enable"],hal_spi_init:[191,3,1,"c.hal_spi_init"],hal_spi_set_txrx_cb:[191,3,1,"c.hal_spi_set_txrx_cb"],hal_spi_settings:[191,7,1,"_CPPv316hal_spi_settings"],hal_spi_slave_set_def_tx_val:[191,3,1,"c.hal_spi_slave_set_def_tx_val"],hal_spi_tx_val:[191,3,1,"c.hal_spi_tx_val"],hal_spi_txrx:[191,3,1,"c.hal_spi_txrx"],hal_spi_txrx_cb:[191,4,1,"c.hal_spi_txrx_cb"],hal_spi_txrx_noblock:[191,3,1,"c.hal_spi_txrx_noblock"],hal_system_clock_start:[192,3,1,"c.hal_system_clock_start"],hal_system_reset:[192,3,1,"c.hal_system_reset"],hal_system_restart:[192,3,1,"c.hal_system_restart"],hal_system_start:[192,3,1,"c.hal_system_start"],hal_timer:[193,7,1,"_CPPv39hal_timer"],hal_timer_cb:[193,4,1,"c.hal_timer_cb"],hal_timer_config:[193,3,1,"c.hal_timer_config"],hal_timer_deinit:[193,3,1,"c.hal_timer_deinit"],hal_timer_delay:[193,3,1,"c.hal_timer_delay"],hal_timer_get_resolution:[193,3,1,"c.hal_timer_get_resolution"],hal_timer_init:[193,3,1,"c.hal_timer_init"],hal_timer_read:[193,3,1,"c.hal_timer_read"],hal_timer_set_cb:[193,3,1,"c.hal_timer_set_cb"],hal_timer_start:[193,3,1,"c.hal_timer_start"],hal_timer_start_at:[193,3,1,"c.hal_timer_start_at"],hal_timer_stop:[193,3,1,"c.hal_timer_stop"],hal_uart_blocking_tx:[194,3,1,"c.hal_uart_blocking_tx"],hal_uart_close:[194,3,1,"c.hal_uart_close"],hal_uart_config:[194,3,1,"c.hal_uart_config"],hal_uart_init:[194,3,1,"c.hal_uart_init"],hal_uart_init_cbs:[194,3,1,"c.hal_uart_init_cbs"],hal_uart_rx_char:[194,4,1,"c.hal_uart_rx_char"],hal_uart_start_rx:[194,3,1,"c.hal_uart_start_rx"],hal_uart_start_tx:[194,3,1,"c.hal_uart_start_tx"],hal_uart_tx_char:[194,4,1,"c.hal_uart_tx_char"],hal_uart_tx_done:[194,4,1,"c.hal_uart_tx_done"],hal_watchdog_enable:[195,3,1,"c.hal_watchdog_enable"],hal_watchdog_init:[195,3,1,"c.hal_watchdog_init"],hal_watchdog_tickle:[195,3,1,"c.hal_watchdog_tickle"],os_callout:[85,7,1,"_CPPv310os_callout"],os_callout_init:[85,3,1,"c.os_callout_init"],os_callout_queued:[85,3,1,"c.os_callout_queued"],os_callout_remaining_ticks:[85,3,1,"c.os_callout_remaining_ticks"],os_callout_reset:[85,3,1,"c.os_callout_reset"],os_callout_stop:[85,3,1,"c.os_callout_stop"],os_cputime_delay_nsecs:[87,3,1,"c.os_cputime_delay_nsecs"],os_cputime_delay_ticks:[87,3,1,"c.os_cputime_delay_ticks"],os_cputime_delay_usecs:[87,3,1,"c.os_cputime_delay_usecs"],os_cputime_get32:[87,3,1,"c.os_cputime_get32"],os_cputime_init:[87,3,1,"c.os_cputime_init"],os_cputime_nsecs_to_ticks:[87,3,1,"c.os_cputime_nsecs_to_ticks"],os_cputime_ticks_to_nsecs:[87,3,1,"c.os_cputime_ticks_to_nsecs"],os_cputime_ticks_to_usecs:[87,3,1,"c.os_cputime_ticks_to_usecs"],os_cputime_timer_init:[87,3,1,"c.os_cputime_timer_init"],os_cputime_timer_relative:[87,3,1,"c.os_cputime_timer_relative"],os_cputime_timer_start:[87,3,1,"c.os_cputime_timer_start"],os_cputime_timer_stop:[87,3,1,"c.os_cputime_timer_stop"],os_cputime_usecs_to_ticks:[87,3,1,"c.os_cputime_usecs_to_ticks"],os_event:[88,7,1,"_CPPv38os_event"],os_event_fn:[88,4,1,"c.os_event_fn"],os_eventq:[88,7,1,"_CPPv39os_eventq"],os_eventq_dflt_get:[88,3,1,"c.os_eventq_dflt_get"],os_eventq_get:[88,3,1,"c.os_eventq_get"],os_eventq_get_no_wait:[88,3,1,"c.os_eventq_get_no_wait"],os_eventq_init:[88,3,1,"c.os_eventq_init"],os_eventq_inited:[88,3,1,"c.os_eventq_inited"],os_eventq_poll:[88,3,1,"c.os_eventq_poll"],os_eventq_put:[88,3,1,"c.os_eventq_put"],os_eventq_remove:[88,3,1,"c.os_eventq_remove"],os_eventq_run:[88,3,1,"c.os_eventq_run"],os_get_uptime:[101,3,1,"c.os_get_uptime"],os_get_uptime_usec:[101,3,1,"c.os_get_uptime_usec"],os_gettimeofday:[101,3,1,"c.os_gettimeofday"],os_mbuf:[90,7,1,"_CPPv37os_mbuf"],os_mbuf_adj:[90,3,1,"c.os_mbuf_adj"],os_mbuf_append:[90,3,1,"c.os_mbuf_append"],os_mbuf_appendfrom:[90,3,1,"c.os_mbuf_appendfrom"],os_mbuf_cmpf:[90,3,1,"c.os_mbuf_cmpf"],os_mbuf_cmpm:[90,3,1,"c.os_mbuf_cmpm"],os_mbuf_concat:[90,3,1,"c.os_mbuf_concat"],os_mbuf_copydata:[90,3,1,"c.os_mbuf_copydata"],os_mbuf_copyinto:[90,3,1,"c.os_mbuf_copyinto"],os_mbuf_dup:[90,3,1,"c.os_mbuf_dup"],os_mbuf_extend:[90,3,1,"c.os_mbuf_extend"],os_mbuf_free:[90,3,1,"c.os_mbuf_free"],os_mbuf_free_chain:[90,3,1,"c.os_mbuf_free_chain"],os_mbuf_get:[90,3,1,"c.os_mbuf_get"],os_mbuf_get_pkthdr:[90,3,1,"c.os_mbuf_get_pkthdr"],os_mbuf_off:[90,3,1,"c.os_mbuf_off"],os_mbuf_pkthdr:[90,7,1,"_CPPv314os_mbuf_pkthdr"],os_mbuf_pool:[90,7,1,"_CPPv312os_mbuf_pool"],os_mbuf_pool_init:[90,3,1,"c.os_mbuf_pool_init"],os_mbuf_prepend:[90,3,1,"c.os_mbuf_prepend"],os_mbuf_prepend_pullup:[90,3,1,"c.os_mbuf_prepend_pullup"],os_mbuf_pullup:[90,3,1,"c.os_mbuf_pullup"],os_mbuf_trim_front:[90,3,1,"c.os_mbuf_trim_front"],os_memblock:[91,7,1,"_CPPv311os_memblock"],os_memblock_from:[91,3,1,"c.os_memblock_from"],os_memblock_get:[91,3,1,"c.os_memblock_get"],os_memblock_put:[91,3,1,"c.os_memblock_put"],os_memblock_put_from_cb:[91,3,1,"c.os_memblock_put_from_cb"],os_membuf_t:[91,4,1,"c.os_membuf_t"],os_mempool:[91,7,1,"_CPPv310os_mempool"],os_mempool_clear:[91,3,1,"c.os_mempool_clear"],os_mempool_ext_init:[91,3,1,"c.os_mempool_ext_init"],os_mempool_info:[91,7,1,"_CPPv315os_mempool_info"],os_mempool_info_get_next:[91,3,1,"c.os_mempool_info_get_next"],os_mempool_init:[91,3,1,"c.os_mempool_init"],os_mempool_is_sane:[91,3,1,"c.os_mempool_is_sane"],os_mempool_put_fn:[91,4,1,"c.os_mempool_put_fn"],os_mqueue:[90,7,1,"_CPPv39os_mqueue"],os_mqueue_get:[90,3,1,"c.os_mqueue_get"],os_mqueue_init:[90,3,1,"c.os_mqueue_init"],os_mqueue_put:[90,3,1,"c.os_mqueue_put"],os_msys_count:[90,3,1,"c.os_msys_count"],os_msys_get:[90,3,1,"c.os_msys_get"],os_msys_get_pkthdr:[90,3,1,"c.os_msys_get_pkthdr"],os_msys_num_free:[90,3,1,"c.os_msys_num_free"],os_msys_register:[90,3,1,"c.os_msys_register"],os_msys_reset:[90,3,1,"c.os_msys_reset"],os_mutex:[92,7,1,"_CPPv38os_mutex"],os_mutex_init:[92,3,1,"c.os_mutex_init"],os_mutex_pend:[92,3,1,"c.os_mutex_pend"],os_mutex_release:[92,3,1,"c.os_mutex_release"],os_sanity_check:[98,7,1,"_CPPv315os_sanity_check"],os_sanity_check_func_t:[98,4,1,"c.os_sanity_check_func_t"],os_sanity_check_init:[98,3,1,"c.os_sanity_check_init"],os_sanity_check_register:[98,3,1,"c.os_sanity_check_register"],os_sanity_check_reset:[98,3,1,"c.os_sanity_check_reset"],os_sanity_task_checkin:[98,3,1,"c.os_sanity_task_checkin"],os_sched_get_current_task:[86,3,1,"c.os_sched_get_current_task"],os_sem:[99,7,1,"_CPPv36os_sem"],os_sem_get_count:[99,3,1,"c.os_sem_get_count"],os_sem_init:[99,3,1,"c.os_sem_init"],os_sem_pend:[99,3,1,"c.os_sem_pend"],os_sem_release:[99,3,1,"c.os_sem_release"],os_settimeofday:[101,3,1,"c.os_settimeofday"],os_stime_t:[101,4,1,"c.os_stime_t"],os_task:[100,7,1,"_CPPv37os_task"],os_task_count:[100,3,1,"c.os_task_count"],os_task_func_t:[100,4,1,"c.os_task_func_t"],os_task_info:[100,7,1,"_CPPv312os_task_info"],os_task_info_get_next:[100,3,1,"c.os_task_info_get_next"],os_task_init:[100,3,1,"c.os_task_init"],os_task_remove:[100,3,1,"c.os_task_remove"],os_task_state_t:[100,4,1,"c.os_task_state_t"],os_tick_idle:[190,3,1,"c.os_tick_idle"],os_tick_init:[190,3,1,"c.os_tick_init"],os_time_advance:[101,3,1,"c.os_time_advance"],os_time_delay:[101,3,1,"c.os_time_delay"],os_time_get:[101,3,1,"c.os_time_get"],os_time_ms_to_ticks:[101,3,1,"c.os_time_ms_to_ticks"],os_time_t:[101,4,1,"c.os_time_t"],os_time_ticks_to_ms:[101,3,1,"c.os_time_ticks_to_ms"],os_timeradd:[101,0,1,"c.os_timeradd"],os_timersub:[101,0,1,"c.os_timersub"],os_timeval:[101,7,1,"_CPPv310os_timeval"],os_timezone:[101,7,1,"_CPPv311os_timezone"]}},objnames:{"0":["c","define","define"],"1":["c","enumvalue","enumvalue"],"2":["c","enum","enum"],"3":["c","function","C function"],"4":["c","typedef","typedef"],"5":["c","variable","variable"],"6":["c","struct","struct"],"7":["cpp","class","C++ class"]},objtypes:{"0":"c:define","1":"c:enumvalue","2":"c:enum","3":"c:function","4":"c:typedef","5":"c:variable","6":"c:struct","7":"cpp:class"},terms:{"000s":[259,261,264,276],"008s":[259,261,264,276],"00z":267,"01t22":69,"02d":14,"02t22":267,"04x":21,"05t02":267,"093s":[259,261,264,276],"0b1000110":188,"0mb":11,"0ubuntu5":6,"0x0":[256,263,276],"0x00":[21,263,264,275],"0x0000":[247,275],"0x00000000":[180,223,225,226],"0x00000001":129,"0x00000002":[129,263],"0x00000004":129,"0x00000008":129,"0x00000010":129,"0x000000b8":256,"0x000000d8":[289,290],"0x000000dc":[246,282,289,290],"0x00004000":[223,225,226],"0x00008000":[94,223,225,226],"0x00009ef4":263,"0x0000fca6":256,"0x00023800":223,"0x0003f000":223,"0x0003f800":223,"0x0006":30,"0x0007d000":[14,226],"0x000e0000":225,"0x0010":28,"0x01":[21,28,31,129,264],"0x0100":28,"0x01000000":262,"0x0101":21,"0x0102":21,"0x0103":21,"0x0104":21,"0x0105":21,"0x0106":21,"0x0107":21,"0x0108":21,"0x0109":21,"0x010a":21,"0x010b":21,"0x010c":21,"0x010d":21,"0x010e":21,"0x010f":21,"0x0110":21,"0x0111":21,"0x02":[21,28,31,129,264,275],"0x0201":21,"0x0202":21,"0x0203":21,"0x0204":21,"0x0205":21,"0x0206":21,"0x0207":21,"0x0208":21,"0x0209":21,"0x020a":21,"0x020b":21,"0x020c":21,"0x020d":21,"0x020e":21,"0x020f":21,"0x0210":21,"0x0211":21,"0x0212":21,"0x0213":21,"0x0214":21,"0x0215":21,"0x0216":21,"0x0217":21,"0x0218":21,"0x0219":21,"0x021a":21,"0x021b":21,"0x021c":21,"0x021d":21,"0x021e":21,"0x021f":21,"0x0220":21,"0x0221":21,"0x0222":21,"0x0223":21,"0x0224":21,"0x0225":21,"0x0226":21,"0x0227":21,"0x0228":21,"0x0229":21,"0x022a":21,"0x022c":21,"0x022d":21,"0x022e":21,"0x022f":21,"0x0230":21,"0x0232":21,"0x0234":21,"0x0235":21,"0x0236":21,"0x0237":21,"0x0238":21,"0x0239":21,"0x023a":21,"0x023b":21,"0x023c":21,"0x023d":21,"0x023e":21,"0x023f":21,"0x0240":21,"0x03":[21,31,129],"0x0300":[21,28],"0x0301":21,"0x0302":21,"0x04":[21,28],"0x0401":21,"0x0402":21,"0x0403":21,"0x0404":21,"0x0405":21,"0x0406":21,"0x0407":21,"0x0408":21,"0x0409":21,"0x040a":21,"0x040b":21,"0x040c":21,"0x040d":21,"0x040e":21,"0x0483":260,"0x05":21,"0x0501":21,"0x0502":21,"0x0503":21,"0x0504":21,"0x0505":21,"0x0506":21,"0x0507":21,"0x0508":21,"0x0509":21,"0x050a":21,"0x050b":21,"0x050c":21,"0x050d":21,"0x050e":21,"0x06":[21,247],"0x07":21,"0x08":[21,28,275],"0x08000000":262,"0x08000020":262,"0x08000250":262,"0x08021e90":260,"0x09":21,"0x0a":21,"0x0b":21,"0x0bc11477":256,"0x0c":21,"0x0c80":30,"0x0d":21,"0x0e":21,"0x0f":[21,278],"0x0f505235":129,"0x0fffffff":180,"0x1":[276,278,280,282],"0x10":[21,256,263,264,278],"0x100":21,"0x1000":[90,278,280],"0x10000":94,"0x10000000":180,"0x10010000":262,"0x10036413":262,"0x10076413":260,"0x1010":90,"0x103":21,"0x11":[21,24,255,264],"0x12":21,"0x13":21,"0x14":21,"0x1400":275,"0x15":[21,274,276,278],"0x16":21,"0x17":21,"0x18":21,"0x1800":31,"0x1808":31,"0x180a":31,"0x19":[21,208],"0x1a":21,"0x1b":21,"0x1c":[21,274,276],"0x1d":21,"0x1e":21,"0x1f":21,"0x2":[278,280],"0x20":[21,33,94,256,263,274,276],"0x200":[21,278,280],"0x2000":[278,280],"0x20000":276,"0x20000000":94,"0x20002290":260,"0x20002408":256,"0x20008000":256,"0x21":[21,33],"0x21000000":256,"0x22":[21,24,33,264],"0x23":[21,33],"0x24":21,"0x25":[21,275],"0x26":21,"0x27":21,"0x28":21,"0x2800":275,"0x29":21,"0x2a":21,"0x2ba01477":263,"0x2c":21,"0x2d":21,"0x2e":21,"0x2f":21,"0x30":[21,256,263],"0x300":21,"0x311":278,"0x32":[21,278],"0x33":24,"0x34":21,"0x35":21,"0x36":21,"0x37":21,"0x374b":260,"0x38":21,"0x39":21,"0x3a":21,"0x3a000":94,"0x3b":21,"0x3c":21,"0x3c00":275,"0x3d":21,"0x3e":21,"0x3f":21,"0x4":[278,280],"0x40":[21,256,263,274,276],"0x400":21,"0x4000":[278,280],"0x40007000":276,"0x4001e504":263,"0x4001e50c":263,"0x40number":188,"0x41000000":260,"0x42000":62,"0x44":[24,275],"0x4400":275,"0x46":188,"0x4f":[274,276],"0x50":[256,263],"0x500":21,"0x5000":275,"0x55":24,"0x60":[256,263],"0x61":[274,276],"0x66":24,"0x6c00":275,"0x70":[256,263],"0x72":[274,276],"0x7800":275,"0x7fefd260":129,"0x7fff8000":276,"0x7fffffff":180,"0x80":[274,276],"0x8000":62,"0x8000000":262,"0x80000000":180,"0x8079b62c":129,"0x81":188,"0x8801":275,"0x8c":188,"0x8d":188,"0x90":[274,276],"0x96f3b83c":129,"0x9c01":275,"0x9f":275,"0xa0":278,"0xa001":275,"0xa7":[274,276],"0xaf":[274,276],"0xb3":[274,276],"0xb401":275,"0xb5":[274,276],"0xbead":[274,276],"0xcc01":275,"0xd2":[274,276],"0xd801":275,"0xdead":[274,276],"0xe401":275,"0xe7":[274,276],"0xf":275,"0xf001":275,"0xf395c277":129,"0xfb":278,"0xfe":275,"0xff":[129,180],"0xffff":[30,191,275],"0xfffffffe":180,"0xffffffff":[92,99,129,180,207,256],"0xffffffff0xffffffff0xffffffff0xffffffff":263,"100kb":102,"1024kbyte":[260,262],"103kb":223,"10m":28,"110kb":223,"128hz":14,"128kb":[9,225],"12c":[259,261,264,276],"12kb":[14,226],"12mhz":9,"132425ssb":31,"132428ssb":31,"132433ssb":31,"132437ssb":31,"132441ssb":31,"14e":289,"14h":[282,289],"1503a0":268,"16kb":[9,225,226],"16kbram":54,"16mb":9,"190a192":275,"1_amd64":[58,61,81,84],"1c15":[274,276],"1d11":285,"1d13":[268,288],"1d560":223,"1eec4":223,"1kb":223,"1mhz":14,"1ms":14,"1st":[14,69],"1ubuntu1":6,"1wx":263,"200mhz":9,"2015q2":[4,12],"2022609336ssb":250,"2022687456ssb":250,"2022789012ssb":250,"2022851508ssb":250,"2042859320ssb":250,"2042937440ssb":250,"248m":6,"250m":240,"256kb":256,"262s":[259,261,264,276],"28a29":275,"28t22":267,"291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682":241,"296712s":262,"2a24":49,"2d5217f":82,"2m_interval_max":28,"2m_interval_min":28,"2m_latenc":28,"2m_max_conn_event_len":28,"2m_min_conn_event_len":28,"2m_scan_interv":28,"2m_scan_window":28,"2m_timeout":28,"2msym":22,"300v":[259,261,264,276],"32kb":[226,256],"32mb":9,"32wx":[256,263],"363s":[259,261,264,276],"3_1":37,"3mb":82,"4_9":4,"4fa7":[274,276],"500m":240,"512kb":94,"575c":223,"5kb":102,"5ms":14,"6lowpan":22,"73d77f":72,"78e4d263eeb5af5635705b7cae026cc184f14aa6c6c59c6e80616035cd2efc8f":223,"7b3w9m4n2mg3sqmgw2q1b9p80000gn":56,"7kb":223,"8ab6433f8971b05c2a9c3341533e8ddb754e404":271,"948f118966f7989628f8f3be28840fd23a200fc219bb72acdfe9096f06c4b39b":223,"9cf8af22b1b573909a8290a90c066d4e190407e97680b7a32243960ec2bf3a7f":288,"9mb":59,"abstract":[9,21,96,97,135,152,163,166,174,181,207,209,210,240,275,292],"boolean":[200,226],"break":[21,90,137,235,251,275],"byte":[14,20,24,28,47,67,72,74,90,91,100,129,130,131,133,141,142,154,158,159,161,164,169,170,171,172,173,174,175,180,183,188,191,194,200,223,228,241,243,254,255,264],"case":[2,6,7,14,21,22,31,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,93,94,98,99,100,129,135,174,180,184,223,224,226,228,229,230,231,232,233,235,237,243,247,251,252,254,255,256,267,268,274,275,276,290],"catch":21,"char":[91,93,98,100,130,131,135,139,140,153,155,156,157,160,161,162,163,165,167,170,172,173,177,178,180,194,198,199,200,201,203,206,215,216,220,221,222,224,226,234,240,243,251,254,255,258,267,275,280,282],"class":[135,264],"const":[88,90,91,94,100,129,130,131,136,153,155,156,157,158,159,160,161,162,163,165,166,167,170,171,172,173,177,178,181,183,185,186,200,205,206,209,215,220,222,224,251,253,254,255,267,274,275,276],"default":[1,2,4,6,7,12,14,21,25,27,28,29,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,92,93,94,95,97,98,100,131,132,134,135,136,152,176,191,200,206,207,208,209,210,212,213,214,215,217,222,223,224,225,226,237,238,240,241,247,249,251,254,255,256,257,264,269,274,275,276,278,279,281,282,284,289],"enum":[100,130,187,192,194,200,207,274,275],"export":[1,11,24,61,62,81,83,84,88,130,131,135,137,206,207,208,209,210,238,277,278,280],"final":[8,56,90,92,94,129,143,180,182,202,223,242,243,246,249,274,276],"float":[65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,102,200,207,277],"function":[1,7,9,15,21,24,32,62,85,87,88,89,90,91,93,95,96,97,98,100,129,130,131,135,136,137,139,147,151,152,153,154,155,156,157,159,161,162,163,165,167,168,169,170,172,174,175,177,180,181,182,184,187,188,189,190,191,192,193,194,197,199,201,202,203,204,205,206,208,210,213,215,216,217,218,220,221,223,227,228,229,230,231,232,234,235,237,238,240,241,246,249,250,252,254,255,257,258,264,267,269,274,275,276,278,282,287,289,290,292],"goto":[98,160,205,209,218,219,274,275,276],"i\u00b2c":188,"import":[11,56,58,81,90,94,101,102,188,243,246,249,252,276],"int":[1,14,21,27,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,85,87,88,90,91,93,98,100,101,130,131,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,160,161,162,163,164,165,166,167,169,170,171,172,173,177,178,179,181,183,184,185,187,188,190,191,192,193,194,195,198,199,200,201,202,203,204,205,208,209,215,216,218,219,220,221,222,224,226,228,229,230,232,233,234,240,242,243,249,251,252,253,254,255,258,267,274,275,276,280,282],"long":[3,14,22,25,29,90,93,99,102,152,170,180,188,223,263,282],"new":[2,3,4,6,10,11,14,22,24,25,28,31,32,35,40,42,46,47,51,54,58,59,60,62,86,90,94,97,100,129,131,141,142,143,152,153,162,167,174,177,178,182,188,196,215,223,224,226,237,241,243,245,246,247,252,253,254,255,256,259,260,261,262,263,264,267,268,269,275,276,277,279,292],"null":[85,87,88,90,91,92,93,94,98,99,100,130,131,136,153,157,161,164,172,174,180,186,191,205,206,208,209,215,220,222,225,226,240,243,249,252,253,254,255,258,274,275,276,277,280,282],"public":[20,26,28,30,31,33,58,67,81,85,88,90,91,92,98,99,100,101,129,130,131,188,191,193,254,255],"return":[19,27,85,86,87,88,90,91,92,93,94,98,99,100,101,130,131,136,141,153,183,186,187,188,191,192,193,194,195,200,208,209,212,226,240,243,249,251,252,253,256,258,264,267,274,275,276,278,280,282,286],"short":[90,92,215,243],"static":[20,27,67,85,88,91,93,94,98,99,130,131,136,140,181,199,201,202,204,205,206,208,209,216,218,219,220,221,222,228,237,240,247,249,251,252,253,254,255,258,274,275,276,277,280,282],"switch":[10,12,21,59,72,78,82,86,93,94,100,129,182,196,215,238,246,247,251,252,274,275,276,282,289],"transient":252,"true":[8,12,14,87,91,98,101,205,223,228,241,267,276,285,288],"try":[2,14,21,22,24,90,153,180,188,237,242,246,247,250,256,257,258,259,260,261,263,268,270,276,278,282,284,289],"var":[51,56,66,67,98,130,167],"void":[21,27,85,86,87,88,90,91,93,98,100,101,130,131,135,136,137,139,151,153,154,158,160,161,163,164,167,169,170,171,172,173,179,181,183,184,185,187,188,190,191,192,193,194,195,197,199,200,206,208,209,211,216,217,218,220,221,222,226,228,229,230,232,233,234,235,240,243,249,251,252,253,254,255,258,274,275,276,277,280,282],"while":[4,6,7,8,22,24,27,50,56,62,90,91,93,94,98,100,102,131,137,139,153,155,156,157,162,165,180,194,200,205,209,223,226,228,233,238,240,243,254,255,258,265,267,274,275,276,280,282,289,290],AES:23,ANS:248,Adding:[57,80,292],And:[62,129,141,223,225,242,243,245,250,274,275,276],Are:14,But:276,CTS:[194,247],FOR:4,For:[2,3,5,6,7,8,11,12,14,21,23,24,25,30,31,35,38,40,51,54,56,58,59,60,61,62,63,67,84,85,90,93,94,97,101,102,129,135,136,153,171,174,175,180,181,184,187,188,191,200,206,207,208,209,210,211,221,223,224,225,226,233,235,237,240,241,246,251,252,253,254,255,256,258,260,261,262,264,267,268,269,270,275,276,278,280,282,285,288,289,290,292],IDE:[5,12],IDs:129,Its:[95,101,102,237,270],NOT:[157,188,193,276],Not:[7,21,30,87,90,180,182,187,191,223,276],One:[6,21,93,102,180,223,237,249,268,275],PCs:8,QoS:[21,22],RTS:[194,247],Such:[180,254,255,270],TMS:256,That:[2,14,21,62,141,180,226,254,255,256,264,268,269,275,276],The:[1,2,3,4,5,6,7,8,10,11,12,14,15,16,17,18,19,20,21,22,23,24,25,27,28,30,31,32,34,35,38,44,46,47,48,51,56,58,59,60,62,64,65,67,71,72,73,74,76,77,78,79,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,129,130,131,132,133,134,135,136,137,141,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,173,174,175,176,177,178,180,181,182,183,184,185,186,187,188,190,191,192,193,194,195,196,198,199,200,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,223,224,225,226,228,231,233,235,236,237,238,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,260,261,262,263,264,265,267,268,269,270,274,275,276,277,278,279,280,281,282,284,285,286,287,288,289,290,292],Then:[10,14,34,64,129,141,180,223,237,247,267,275,276,289],There:[4,8,14,23,24,29,58,62,81,85,90,92,94,95,99,100,101,102,130,131,135,161,180,182,187,206,207,212,215,223,224,251,256,264,267,271,276,282,289,290],These:[5,21,28,51,62,90,94,95,97,99,129,130,135,180,188,207,210,211,212,215,225,238,245,249,253,254,255,256,257,262,269,270,277,278],Use:[1,7,8,11,28,29,51,58,59,60,63,72,81,82,83,94,133,141,143,223,237,251,254,255,256,259,264,268,269,276,277,279,287],Used:[94,191,194,229,230,232],Uses:[32,43,134,225],Using:[21,50,92,258,287,292],Was:264,Will:21,With:[9,14,21,22,31,90,93,97,129,223,225,242,243,246,275,289,290,292],Yes:[10,14,20,90,129,134,244],__arg:98,__asm:260,__builtin_offsetof:224,__etext:262,__ev:88,__f:98,__hdr:90,__itvl:98,__n:90,__name:100,__om:90,__omp:90,__sc:98,__size:100,__t1:[87,101],__t2:[87,101],__type:90,__wfi:260,_access:251,_adc:276,_addr:254,_addr_:[254,255],_app:254,_build:[34,64],_cfg:[208,209],_cli:[209,210,278],_cnt:141,_config:[207,208,209,280],_file:153,_gatt_ac:251,_imghdr_siz:94,_init:[207,208,209],_log:209,_name:226,_nrf52_adc_h_:276,_object:200,_ofb:[208,210,278],_onb:[208,210,282],_pad1:129,_pad2:129,_pad3:129,_pad:[92,129],_param:215,_rea:200,_reserv:207,_resource_t:277,_sbrk:183,_senseair_h_:275,_sensor:208,_set:254,_shell_init:[209,278],_stage:226,_stat:209,a600anj1:223,abbrevi:249,abc:267,abil:[6,23,32,56,90,243],abl:[2,14,90,94,135,136,238,244,250,254,255,256,269,275,276],abort:[50,191,216,220,225,226,228,267,280],about:[1,3,10,14,24,30,41,58,59,60,63,65,81,82,83,91,93,94,98,100,101,141,142,146,180,200,211,223,224,236,237,240,243,249,252,253,254,255,259,263,264,270,275,276],abov:[9,14,15,20,90,93,98,101,129,153,161,180,188,191,215,223,224,225,226,238,246,249,251,254,255,258,264,267,269,274,276],absent:[129,180],absolut:[90,193],abstrat:141,acc:278,accel:[278,282],accel_rev:278,acceleromet:[207,209,277,278,279,282],accept:[21,28,137,161,180,188,194,196,237,256,260,262,264,269],access:[16,21,22,28,60,62,65,71,81,82,83,87,89,90,92,93,94,99,135,136,137,141,153,161,168,170,174,181,182,188,196,206,207,209,210,223,226,233,240,246,253,256,267,275],access_:253,access_cb:[251,253,274],access_fla:161,access_flag:[161,163],accgyro:278,accommod:[25,90,97,129,180,254],accompani:14,accomplish:[9,14,56,174,180,251],accord:[14,94,129,233,234],accordingli:[25,94,100],account:[10,62,90,129],accur:262,achiev:[27,180,254,255],ack_rxd:264,acknowledg:264,acl:21,acquir:[27,92,99,180,188],acquisit:188,across:[31,32,56,62,63,135,180,182],act:[23,31,196,223],action:[9,14,28,63,237,243,249,253,264,276],activ:[12,17,18,22,48,72,94,100,130,191,196,223,237,241,249,264,285,288,289,290],actual:[2,7,14,35,78,90,94,100,129,157,164,172,180,184,195,223,225,228,236,243,246,254,255,256,269,270,271,275,276],ad_fil:153,adafruit:[8,276,278],adapt:[22,97,256,259,260,268,282],adapter_nsrst_delai:[256,260],adaptor:262,adc0:276,adc:[9,14,54,135],adc_0:276,adc_0_interrupt_prior:276,adc_0_oversampl:276,adc_0_resolut:276,adc_buf_read:276,adc_buf_releas:276,adc_buf_s:276,adc_buf_set:276,adc_chan_config:276,adc_config:276,adc_dev:276,adc_event_handler_set:276,adc_evq:276,adc_hw_impl:54,adc_init:276,adc_nrf52:276,adc_number_channel:276,adc_number_sampl:276,adc_read:276,adc_read_ev:276,adc_result:276,adc_result_mv:276,adc_sampl:276,adc_sns_str:276,adc_sns_typ:276,adc_sns_val:276,adc_stack:276,adc_stack_s:276,adc_stm32f4:135,adc_task:276,adc_task_handl:276,adc_task_prio:276,add:[1,2,4,6,7,11,12,14,28,38,40,51,56,58,59,60,62,63,81,88,90,93,97,99,101,102,131,132,141,153,182,188,208,209,216,224,226,237,238,240,241,242,243,246,247,250,256,257,258,265,267,268,269,278,279,280,281,283,285,286,287,288,292],added:[10,12,33,54,56,82,90,94,99,100,129,131,136,138,153,188,215,240,241,256,258,268,270,274,275,285,286,288,292],adding:[2,14,32,38,56,90,94,95,101,141,224,246,258,267,269,270,274,275,276],addit:[1,12,14,22,30,44,56,62,63,90,94,95,97,129,135,153,180,188,206,223,226,228,231,237,238,243,246,249,256,257,259,260,262,263,264,275,286],addition:63,addr:[28,31,136,200,205,247,254,255,278],addr_typ:[28,31],address:[14,21,22,23,26,28,30,32,33,56,67,90,91,93,129,135,136,137,152,180,185,188,191,200,207,209,223,241,247,251,264,268,282,289],aditihilbert:4,adjust:[14,21,90,94,240,242],admin:[4,247],administr:[11,13],adress:28,adsertis:28,adv:[14,22,28,31,32],adv_data:28,adv_field:[249,254],adv_param:[249,252,254,255],advanc:[60,169,180,289,290],advantag:252,advantang:249,adverb:63,adverti:[254,255],advertis:[16,21,22,25,27,32,33,67,241,248,250,252,274,276,277],advertise_128bit_uuid:277,advertise_16bit_uuid:277,advertising_interv:[28,30],advic:[95,96],advinterv:30,aes:[256,259,261,263,268,285,286,288],aesni:[285,286],af80:[274,276],affect:[129,169,174,175,181,206,223,246,265],aflag:[1,51,62],after:[4,8,11,14,23,27,31,42,51,56,58,59,62,81,82,87,90,91,95,100,101,129,130,135,139,143,147,153,174,180,188,191,194,209,223,225,231,237,238,241,243,244,247,249,251,252,253,256,257,268,269,278,282],again:[8,14,21,27,58,60,81,94,100,129,141,223,224,243,249,256,259,260,261,262,263,264,274,276,288],against:[14,23,90,93,101],agnost:153,agre:[275,276],agreement:[275,276],ah02mie2:275,ahead:101,aid:[62,209],aim:[21,136,153,248,292],ain0:276,ain1:276,air:[21,90,223,238,264,283,292],air_q:275,air_qual:[274,275,276],albeit:245,alert:248,algorithm:[22,86],align:[90,91,141,243],all201612161220:76,all:[1,2,3,6,7,8,9,10,12,15,16,17,18,19,21,22,23,25,27,28,29,30,31,32,36,41,42,44,50,51,52,53,54,56,62,67,73,76,90,92,93,94,95,97,98,100,101,129,130,131,135,141,145,151,153,160,161,164,166,167,170,172,174,176,178,180,181,182,184,191,200,206,207,208,209,210,211,212,213,215,220,223,224,225,226,231,233,236,237,238,242,244,246,247,248,249,250,251,252,253,254,255,258,260,262,264,265,267,269,270,271,272,274,275,276,278,280,282,285,288],alloc:[74,78,88,89,90,91,152,180,220,249,251],allow:[2,3,4,6,8,9,12,14,21,22,28,32,40,51,56,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,92,93,97,99,129,131,135,153,174,180,183,188,191,192,206,210,211,212,214,215,223,224,226,230,234,237,238,240,243,247,249,252,254,258,259,264,268,276,278,282,284],almost:[8,243],alon:234,along:[14,62,90,91,100,218,275],alongsid:[243,254],alphabet:[180,226],alreadi:[6,7,8,11,14,21,25,32,44,59,60,82,83,87,96,97,129,136,147,154,160,161,166,167,168,173,180,187,193,237,242,245,246,256,258,259,260,261,262,263,264,268,274,275,276,277,285,288,289,290],also:[1,3,5,6,7,8,11,12,14,22,24,25,28,35,38,41,56,58,59,60,61,62,67,81,84,90,91,93,94,97,99,100,101,129,130,131,132,135,136,141,153,174,180,191,194,196,206,207,208,209,211,213,215,223,224,225,226,237,238,240,243,246,249,252,253,257,258,264,265,267,268,269,270,274,275,276,278,279,280,281,282,285,286,288],alt:288,altern:[6,129,141,223,251],although:269,altogeth:[85,274],alwai:[8,14,62,94,101,129,157,159,161,162,169,171,180,184,245,251,254,255,262,267,269,270,275,292],ambigu:21,ambiti:246,amd64:[58,81],amend:[1,33,51,63,241,265,289,290],amg:278,among:[86,94,129,177,223],amongst:90,amount:[25,90,91,96,153,172,206,223,243,249],analog:[135,283],analyz:[12,290],android:[277,279,281,284],ani:[1,4,8,10,14,15,22,23,28,34,50,51,60,62,64,65,67,74,77,78,81,82,83,85,87,88,90,91,92,93,94,96,98,99,100,101,129,131,136,137,153,160,170,174,175,176,177,179,180,191,194,206,209,210,215,223,224,226,234,237,238,241,247,249,258,259,264,270,274,275,276,282,287,292],announc:[249,254,255],annoy:[251,271],anonym:28,anoth:[10,14,22,27,28,31,62,90,92,93,94,95,96,99,100,101,131,187,196,223,225,237,243,249,251,264,275,276,286,289,290],ans:[275,276],answer:93,anymor:[90,243],anyon:14,anyth:[1,8,24,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,223,237,242,246,254,255,257,270,275,276],apach:[1,2,6,7,10,11,12,14,22,33,34,38,39,40,44,45,51,52,54,56,58,59,60,62,63,64,81,82,83,85,94,129,131,134,135,153,184,223,224,226,227,237,244,246,247,248,250,254,256,257,258,259,260,261,262,263,264,267,268,269,270,275,276,277,278,279,282,284,285,286,287,288,289,290,292],apart:101,api:[1,14,17,18,19,20,21,22,54,56,62,93,97,135,136,163,182,186,209,210,215,224,255,260,277,281],app:[1,7,8,12,14,22,27,30,33,35,38,39,43,44,46,47,48,49,51,54,56,63,74,77,78,94,129,131,135,153,182,192,224,225,226,237,238,240,241,242,243,246,248,249,252,253,254,255,256,258,259,260,261,262,263,267,268,274,275,276,277,278,279,280,281,285,286,287,288,289,292],app_error:276,app_log_init:206,app_util_platform:276,appear:[14,28,30,97,188,243,251,253],append:[90,141,159,169,171,180,267],append_loc:[142,143],append_test:267,appl:[256,282,284,289,290],appli:[12,14,25,101,129,130,131,174,175,180,194,206,223,226,264,267],applic:[1,2,4,5,6,8,9,11,13,14,15,19,21,22,24,25,26,27,29,31,35,40,43,48,51,56,58,59,60,61,62,74,77,78,79,83,84,88,90,94,98,100,129,131,132,133,134,135,153,174,180,185,191,209,210,211,212,213,214,215,221,224,225,226,236,241,245,248,251,252,257,266,267,274,275,281,284,286,287,290,292],applicaton:1,applict:12,approach:[32,94,226],appropri:[63,90,94,97,100,133,135,180,188,191,226,237,242,246,249,252,254,255,257,275,276,281],approv:10,apps_air_qu:275,apps_bleprph:223,apps_blinki:[56,62],apps_my_sensor_app:282,apr:[259,261,264,276],apropo:[256,282,289,290],apt:[4,6,7,57,61,80,84,247],arbitrari:[129,237,247,256,259,260,261,262,263,264,268,276,278,285,286,288],arbitrarili:[129,180,255],arc4:256,arch:[62,94,97,233,259,260,261,262,263,264,282],arch_sim:[258,282],architectur:[58,81,86,91,94,96,97,101,129,135,152,182,187,243],archiv:[4,7,58,60,62,167,237,238,246,256,258,259,260,261,262,263,264,268,275,276,278,282,285,286,288],arduino:[12,243,257,266,269,274,275,292],arduino_101:54,arduino_blinki:[12,243,256],arduino_boot:[12,256],arduino_mkr1000:268,arduino_primo_nrf52:[54,259,275],arduino_zero:256,arduino_zero_debug:256,arduinowifi:268,area:[14,90,94,129,130,141,151,175,177,178,183,226],area_cnt:183,area_desc:[177,178],aren:[14,102],arg:[12,87,90,91,93,98,100,135,151,185,187,191,193,194,206,209,218,228,240,243,251,252,274,275,276,282],argc:[93,100,130,139,140,177,178,198,215,216,220,221,222,226,234,240,243,254,255,258,267,275,280,282],argument:[11,12,14,21,46,51,56,63,85,88,90,91,98,100,101,131,168,184,187,188,191,193,200,206,209,211,215,221,243,249,252,253,254,255,259,261,269,270,282],argv:[100,130,139,140,177,178,198,215,216,220,221,222,226,234,240,243,254,255,258,267,275,280,282],arm:[5,6,7,12,85,94,102,256,262,282,288,289,290],around:[31,90,129,276,277,279],arrai:[24,88,130,140,141,151,174,175,177,178,191,200,201,202,204,205,215,220,226,242,243,249,253],arrang:[94,223],arriv:90,articl:271,artifact:[36,40,51,56,58,59,60,269],ascii:180,asf:[1,269,275,276],ask:[10,14,93,130,194,207,243,262,269,270,275],aspect:[28,90,129,243],assembl:[1,62,94,97,259,260,261,262,263,264,282],assert:[14,68,90,98,131,158,171,177,178,191,208,224,228,240,243,251,252,253,254,255,258,274,275,276,280,282],assign:[10,14,20,22,24,30,38,51,54,67,91,93,94,100,141,180,181,226,237,251,256,259,260,261,262,263,264,268,276,278,285,288],associ:[23,25,88,90,98,100,129,193,226,228,249,252],assum:[7,12,14,31,44,60,61,83,84,88,90,94,100,129,136,191,196,226,237,238,240,242,245,246,258,264,274,275,276,277,279,281,282,289,290],assumpt:14,asynchron:194,at45db:[14,136],at45db_default_config:136,at45db_dev:136,at45db_erase_sector:136,at45db_init:136,at45db_read:136,at45db_sector_info:136,at45db_writ:136,at45dbxxx:136,at91samd21g18:256,at91samd:256,ate_m:207,atmel:[2,256,268],atop:[135,182],att:[19,22,29,251],attach:[8,12,90,94,187,192,246,259,264,276,282,289,290],attempt:[21,24,28,90,91,92,100,129,164,172,177,178,179,180,188,226,251,252,253,264],attempt_stat:224,attent:3,attr:[29,31,205],attr_handl:[250,251,252,274,276],attribit:200,attribut:[15,17,18,21,22,29,51,54,63,67,91,95,97,200,205,226,248,251],auth:[14,28,271],authent:[21,23,31,129,250],author:[1,21,44,62,131,267,275,276],auto:[30,136],autocomplet:56,autoconf:56,autom:32,automat:[1,10,22,25,26,43,56,62,95,197,215,224,226,231,238,246,248,249,256,259,260,262,263,267,269,275,276,277,292],autoselect:256,avaial:264,avail:[1,2,3,4,7,9,14,21,22,24,25,30,31,32,33,48,58,59,60,63,65,74,81,82,83,88,90,91,92,98,99,102,129,131,133,135,141,153,164,174,194,196,207,215,223,226,233,236,238,254,258,264,270,276,281,289,290],avail_queu:131,avoid:[62,90,92,93,98,243,277],awai:[21,94,130,251,276],await:3,awar:[249,254,255],b0_0:262,b0_1:262,b1_0:262,b1_1:262,b5729002b340:[274,276],b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2:241,bab:206,back:[8,59,65,70,81,82,83,90,91,101,102,129,130,131,188,213,238,253,262,263,275,281,285,286,288],backend:130,backward:[22,129,131,180,215],bad:[129,223,270],badli:93,bake:14,band:[22,23,28],bang:275,bank:262,bar:[12,130,292],bare:[85,248,254,255,292],base64:[7,130,131,264,282],base:[1,2,4,6,7,12,14,21,22,25,32,35,40,56,58,59,60,62,90,102,133,135,137,169,182,183,188,225,243,247,253,256,259,260,262,263,268,275,277,278,282],baselibc:[7,14,49,94],baselin:134,bash:[2,12,56,60,94],bash_complet:37,bash_profil:[11,59,61,82,84],bashrc:56,basi:[9,20,23,100,270,275,276],basic:[1,14,15,22,30,31,32,62,90,94,100,102,135,153,183,185,187,194,223,238,241,246,247,264,269,271,273,274,284,286,287],batch:94,batteri:[9,25,32,97,254],baud:[67,131,247,275],baudrat:[136,191,194],bbno055_cli:278,bc_acc_bw:[209,280],bc_acc_rang:[209,280],bc_mask:[209,280],bc_opr_mod:[209,280],bc_placement:209,bc_pwr_mode:[209,280],bc_unit:[209,280],bc_use_ext_xt:280,bcfg:280,bd_addr:21,be9699809a049:72,beacon:[15,245,246,257],bearer:[14,22,33],becaus:[8,12,14,21,23,27,31,51,88,129,170,180,181,188,191,207,209,212,216,223,225,243,267,269,271,275,277,278,279,282],becom:[23,32,129,249,252],been:[4,10,14,21,27,37,44,56,59,60,62,78,82,83,85,89,90,91,100,129,130,139,141,153,154,166,174,180,191,194,223,226,244,247,252,256,259,264,268,274,275],befor:[2,4,7,8,12,14,21,42,51,58,62,81,85,87,89,90,92,93,94,98,100,101,102,129,130,131,141,147,174,175,179,191,193,194,195,200,211,212,215,217,223,224,226,233,234,238,240,243,246,247,248,249,251,254,255,257,258,260,264,267,268,276,281,284,287],begin:[14,27,90,100,130,141,149,194,247,250,252,254,255,267,269],beginn:292,behav:[21,31,93,254,255,267],behavior:[60,93,97,162,163,174,243,251,253,267,268,290],behaviour:90,behind:[90,101],being:[14,21,90,91,93,98,100,101,129,130,136,153,180,187,188,189,198,199,223,228,243,250,252,267,275,292],bell:99,belong:[15,91,129,180,253],below:[1,2,4,6,12,14,19,21,23,24,25,31,44,63,90,93,94,95,99,100,129,131,133,136,154,161,164,180,181,193,209,223,237,243,246,251,253,256,259,260,262,263,264,265,267,269,270,271,274,276,277,278,280,284,292],benefit:[10,93,180,226,236,240],best:[14,90,94,161,200,270],beta:[135,276],better:[14,129,224],between:[7,12,22,27,28,32,38,47,56,99,101,131,180,187,188,198,200,210,223,225,226,238,240,247,259,264,270,276,278,282],beyond:[90,180],bhd:67,big:[24,62,90,264,270],bigger:223,bin:[2,4,7,11,12,14,35,36,38,39,44,47,49,51,56,58,59,60,61,62,81,82,83,84,94,169,170,223,226,237,238,241,242,246,247,250,256,258,259,260,261,262,263,264,267,268,275,276,278,282,285,286,288,289,290],bin_basenam:62,binari:[4,7,11,14,35,38,40,56,59,61,62,80,82,84,102,133,188,258,275],binutil:4,bit:[7,15,24,26,28,30,58,59,60,67,82,83,87,90,91,100,101,102,129,180,188,189,191,194,207,209,211,212,223,224,243,246,251,252,253,254,255,268,270,275,276,277,282,289,290],bitbang:189,bitmap:91,bitmask:100,bits0x00:28,bl_rev:278,bla:206,blank:14,ble:[15,19,20,24,27,31,32,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,129,133,134,223,226,238,241,245,247,249,251,252,253,257,273,274,275,279,281,284,292],ble_:251,ble_addr_t:[254,255],ble_addr_type_publ:252,ble_app:[246,254,255],ble_app_advertis:[254,255],ble_app_on_sync:[254,255],ble_app_set_addr:[254,255],ble_att:[77,238,251],ble_att_err_attr_not_found:21,ble_att_err_attr_not_long:21,ble_att_err_insufficient_authen:21,ble_att_err_insufficient_author:21,ble_att_err_insufficient_enc:21,ble_att_err_insufficient_key_sz:21,ble_att_err_insufficient_r:[21,274,276],ble_att_err_invalid_attr_value_len:[21,251],ble_att_err_invalid_handl:21,ble_att_err_invalid_offset:21,ble_att_err_invalid_pdu:21,ble_att_err_prepare_queue_ful:21,ble_att_err_read_not_permit:21,ble_att_err_req_not_support:21,ble_att_err_unlik:[21,274,276],ble_att_err_unsupported_group:21,ble_att_err_write_not_permit:21,ble_att_svr_entry_pool:74,ble_att_svr_prep_entry_pool:74,ble_eddystone_set_adv_data_uid:254,ble_eddystone_set_adv_data_url:254,ble_eddystone_url_scheme_http:254,ble_eddystone_url_suffix_org:254,ble_err_acl_conn_exist:21,ble_err_auth_fail:21,ble_err_chan_class:21,ble_err_cmd_disallow:21,ble_err_coarse_clk_adj:21,ble_err_conn_accept_tmo:21,ble_err_conn_establish:21,ble_err_conn_limit:21,ble_err_conn_parm:21,ble_err_conn_rej_bd_addr:21,ble_err_conn_rej_channel:21,ble_err_conn_rej_resourc:21,ble_err_conn_rej_secur:21,ble_err_conn_spvn_tmo:21,ble_err_conn_term_loc:21,ble_err_conn_term_m:21,ble_err_ctlr_busi:21,ble_err_diff_trans_col:21,ble_err_dir_adv_tmo:21,ble_err_encryption_mod:21,ble_err_host_busy_pair:21,ble_err_hw_fail:21,ble_err_inq_rsp_too_big:21,ble_err_instant_pass:21,ble_err_insufficient_sec:21,ble_err_inv_hci_cmd_parm:21,ble_err_inv_lmp_ll_parm:21,ble_err_link_key_chang:21,ble_err_lmp_collis:21,ble_err_lmp_ll_rsp_tmo:21,ble_err_lmp_pdu:21,ble_err_mac_conn_fail:21,ble_err_mem_capac:21,ble_err_no_pair:21,ble_err_no_role_chang:21,ble_err_page_tmo:21,ble_err_parm_out_of_rang:21,ble_err_pending_role_sw:21,ble_err_pinkey_miss:21,ble_err_qos_parm:21,ble_err_qos_reject:21,ble_err_rd_conn_term_pwroff:21,ble_err_rd_conn_term_resrc:21,ble_err_rem_user_conn_term:21,ble_err_repeated_attempt:21,ble_err_reserved_slot:21,ble_err_role_sw_fail:21,ble_err_sco_air_mod:21,ble_err_sco_itvl:21,ble_err_sco_offset:21,ble_err_sec_simple_pair:21,ble_err_synch_conn_limit:21,ble_err_unit_key_pair:21,ble_err_unk_conn_id:21,ble_err_unk_lmp:21,ble_err_unknown_hci_cmd:21,ble_err_unspecifi:21,ble_err_unsupp_lmp_ll_parm:21,ble_err_unsupp_qo:21,ble_err_unsupp_rem_featur:21,ble_err_unsupport:21,ble_ga:253,ble_gap:[14,77],ble_gap_adv_param:[254,255],ble_gap_adv_set_field:249,ble_gap_adv_start:[249,252,254,255],ble_gap_chr_uuid16_appear:[251,253],ble_gap_chr_uuid16_device_nam:[251,253],ble_gap_chr_uuid16_periph_pref_conn_param:251,ble_gap_chr_uuid16_periph_priv_flag:251,ble_gap_chr_uuid16_reconnect_addr:251,ble_gap_conn_desc:252,ble_gap_conn_find:252,ble_gap_conn_fn:249,ble_gap_conn_mode_und:[249,252],ble_gap_disc_mode_gen:[249,252],ble_gap_ev:252,ble_gap_event_conn_upd:252,ble_gap_event_connect:252,ble_gap_event_disconnect:252,ble_gap_event_enc_chang:252,ble_gap_event_fn:[254,255],ble_gap_event_subscrib:252,ble_gap_svc_uuid16:[251,253],ble_gap_upd:74,ble_gap_update_param:14,ble_gatt:77,ble_gatt_access_ctxt:[251,274,276],ble_gatt_access_op_read_chr:[251,274,276],ble_gatt_access_op_write_chr:[251,274,276],ble_gatt_chr_def:[251,253,274],ble_gatt_chr_f_notifi:274,ble_gatt_chr_f_read:[251,253,274],ble_gatt_chr_f_read_enc:274,ble_gatt_chr_f_writ:274,ble_gatt_chr_f_write_enc:274,ble_gatt_register_fn:253,ble_gatt_svc_def:[251,253,274],ble_gatt_svc_type_primari:[251,253,274],ble_gattc:77,ble_gattc_proc_pool:74,ble_gatts_chr_upd:[274,276],ble_gatts_clt_cfg_pool:74,ble_gatts_find_chr:[274,276],ble_gatts_register_svc:253,ble_h:[14,15,16,17,18,20,21,24,27,77,254,255,276],ble_hci_ram_evt_hi_pool:74,ble_hci_ram_evt_lo_pool:74,ble_hci_uart_baud:247,ble_hs_:253,ble_hs_adv_field:[249,254],ble_hs_att_err:21,ble_hs_cfg:[27,254,255],ble_hs_conn_pool:74,ble_hs_eagain:21,ble_hs_ealreadi:21,ble_hs_eapp:21,ble_hs_eauthen:21,ble_hs_eauthor:21,ble_hs_ebaddata:21,ble_hs_ebusi:21,ble_hs_econtrol:21,ble_hs_edon:21,ble_hs_eencrypt:21,ble_hs_eencrypt_key_sz:21,ble_hs_einv:[14,21],ble_hs_emsgs:21,ble_hs_eno:21,ble_hs_enoaddr:21,ble_hs_enomem:21,ble_hs_enomem_evt:21,ble_hs_enotconn:21,ble_hs_enotsup:21,ble_hs_enotsync:21,ble_hs_eo:21,ble_hs_ereject:21,ble_hs_erol:21,ble_hs_err_sm_peer_bas:21,ble_hs_err_sm_us_bas:21,ble_hs_estore_cap:21,ble_hs_estore_fail:21,ble_hs_etimeout:21,ble_hs_etimeout_hci:21,ble_hs_eunknown:21,ble_hs_ev_tx_notif:88,ble_hs_event_tx_notifi:88,ble_hs_forev:[252,254,255],ble_hs_hci_err:21,ble_hs_hci_ev_pool:74,ble_hs_id:24,ble_hs_id_gen_rnd:[24,254,255],ble_hs_id_set_rnd:[20,24,254,255],ble_hs_l2c_err:21,ble_hs_reset_fn:27,ble_hs_sm_peer_err:21,ble_hs_sm_us_err:21,ble_hs_sync_fn:27,ble_ibeacon_set_adv_data:255,ble_l2cap:77,ble_l2cap_chan_pool:74,ble_l2cap_sig_err_cmd_not_understood:21,ble_l2cap_sig_err_invalid_cid:21,ble_l2cap_sig_err_mtu_exceed:21,ble_l2cap_sig_proc_pool:74,ble_ll:[77,78,275],ble_ll_cfg_feat_le_encrypt:223,ble_ll_conn:77,ble_ll_prio:226,ble_lp_clock:25,ble_max_connect:[277,279],ble_mesh_dev_uuid:33,ble_mesh_pb_gatt:33,ble_own:[254,255],ble_own_addr_random:[254,255],ble_phi:77,ble_prph:275,ble_public_dev_addr:24,ble_rigado:48,ble_role_broadcast:279,ble_role_peripher:279,ble_sm_err_alreadi:21,ble_sm_err_authreq:21,ble_sm_err_cmd_not_supp:21,ble_sm_err_confirm_mismatch:21,ble_sm_err_cross_tran:21,ble_sm_err_dhkei:21,ble_sm_err_enc_key_sz:21,ble_sm_err_inv:21,ble_sm_err_numcmp:21,ble_sm_err_oob:21,ble_sm_err_pair_not_supp:21,ble_sm_err_passkei:21,ble_sm_err_rep:21,ble_sm_err_unspecifi:21,ble_sm_legaci:223,ble_store_config:14,ble_tgt:[246,254,255],ble_uu:253,ble_uuid128_init:[274,276],ble_uuid128_t:[274,276],ble_uuid16:[251,253],ble_uuid16_declar:[274,276],ble_uuid:276,ble_uuid_128_to_16:251,ble_uuid_u16:[274,276],ble_xtal_settle_tim:25,bleadc:276,blecent:[7,62],blehci:[7,62],blehciproj:247,blehostd:67,blemesh:[22,33],blenano:54,bleprph:[7,14,22,62,67,223,241,248,249,250,251,252,253,274,275,276,277,290],bleprph_advertis:[249,252],bleprph_appear:251,bleprph_device_nam:[249,251],bleprph_log:[249,252,274,276],bleprph_oic:[7,62,281],bleprph_oic_sensor:277,bleprph_on_connect:249,bleprph_pref_conn_param:251,bleprph_print_conn_desc:252,bleprph_privacy_flag:251,bleprph_reconnect_addr:251,blesplit:[7,62],bletest:[7,62],bletini:[7,22,38,39,46,47,51,62,72,238,247,250],bletiny_chr_pool:74,bletiny_dsc_pool:74,bletiny_svc_pool:74,bletoh:90,bleuart:[7,62],bleuartx000:14,blink:[1,7,62,94,100,240,242,243,256,257,259,260,261,262,263,275,276,292],blink_nord:290,blink_nrf:275,blink_primo:275,blink_rigado:48,blinki:[1,12,14,35,44,45,49,56,62,94,243,246,247,264,268,275,276,284,285,286,288,289,290,292],blinky_callout:258,blinky_primo:275,blinky_sim:62,blksize:91,blksz:[74,286],blob:[21,184],block:[21,30,74,87,88,90,91,99,135,141,144,174,175,176,177,178,188,191,193,194,240,275,286],block_addr:91,block_siz:91,blocks_siz:91,blue:263,bluetooth:[1,9,21,23,24,25,28,30,33,90,223,241,248,249,254,255,257,275,276,292],bmd300eval:[49,54,261,276],bmd:[261,276],bno055:[208,209,277,279,280],bno055_0:[208,278,280],bno055_acc_cfg_bw_125hz:280,bno055_acc_cfg_rng_16g:280,bno055_acc_unit_ms2:280,bno055_angrate_unit_dp:280,bno055_cfg:[209,280],bno055_cli:[278,279],bno055_config:[209,280],bno055_default_cfg:209,bno055_do_format_android:280,bno055_err:209,bno055_euler_unit_deg:280,bno055_get_chip_id:209,bno055_id:209,bno055_info:209,bno055_init:[208,209],bno055_ofb:[208,277,278,279],bno055_opr_mode_ndof:280,bno055_pwr_mode_norm:280,bno055_sensor_get_config:209,bno055_sensor_read:209,bno055_shel:278,bno055_shell_init:278,bno055_stat_sect:209,bno055_temp_unit_degc:280,board:[1,2,4,5,7,8,12,14,24,25,31,40,43,48,54,56,58,59,60,62,93,94,135,182,183,188,209,210,214,223,225,226,237,238,240,241,242,243,247,250,254,255,257,258,274,275,280,281,282,284,287,289,290,292],bodi:[129,280],bold:[237,244],bond:[23,28,30,31,250],bondabl:28,bone:[85,248,254,255,292],bookkeep:141,bool:[91,200],boot:[7,44,62,94,101,102,131,196,237,238,241,247,256,259,260,261,262,263,264,268,275,276,278,282,285,286,288],boot_boot_serial_test:7,boot_bootutil:223,boot_build_statu:129,boot_build_status_on:129,boot_clear_statu:129,boot_copy_area:129,boot_copy_imag:129,boot_erase_area:129,boot_fill_slot:129,boot_find_image_area_idx:129,boot_find_image_part:129,boot_find_image_slot:129,boot_go:129,boot_img_mag:129,boot_init_flash:129,boot_load:94,boot_mag:129,boot_move_area:129,boot_nrf:275,boot_olimex:262,boot_primo:275,boot_read_image_head:129,boot_read_statu:129,boot_select_image_slot:129,boot_seri:[7,14,131],boot_serial_setup:7,boot_slot_addr:129,boot_slot_to_area_idx:129,boot_swap_area:129,boot_test:7,boot_vect_delete_main:129,boot_vect_delete_test:129,boot_vect_read_main:129,boot_vect_read_on:129,boot_vect_read_test:129,boot_write_statu:129,bootabl:[223,241,285,288],bootload:[1,12,44,48,94,97,102,131,192,196,237,241,243,257,258,275,276,277,279,287],bootutil:[7,14,102,129,131,256,259,260,261,262,263,264,268,278,285,286,288],bootutil_misc:[7,256,259,260,261,263,278,285,286,288],both:[6,9,11,15,21,23,28,30,40,56,58,59,60,63,90,92,94,99,129,130,132,135,174,180,188,191,200,206,223,225,226,236,256,258,264,267,268,271,276],bottl:[59,82],bottom:[12,94,98,100,250],bound:[90,94,153],boundari:[90,91,94],box:[12,290],bps:194,branch:[1,4,7,10,11,14,56,57,58,60,61,80,81,83,84,129,244,256,268,269,270],branchnam:10,brand:263,bread:276,breadboard:276,breakdown:223,breakout:8,breakpoint:[256,260],breviti:[223,237,286],brew:[3,4,7,11,37,56,59,61,82,84],brick:129,bridg:180,brief:[14,20,187,254,255,264],briefli:94,bring:[12,94,182,278,281,284],broad:292,broadca:[254,255],broadcast:[14,15,28,32,249,254,255],brows:[250,259,269],browser:244,bsd:102,bsp:[1,7,14,25,33,35,38,39,43,44,46,48,51,56,62,63,93,130,135,174,175,177,178,182,186,187,193,194,207,208,209,210,212,223,226,237,240,246,247,250,256,258,259,260,261,262,263,264,268,275,276,277,278,279,280,282,285,286,288,289,290,292],bsp_arduino_zero:256,bsp_arduino_zero_pro:[256,268],bsp_flash_dev:175,bsp_timer:193,bsppackag:94,bss:[14,49,94,223],bssnz_t:[274,275,276],bt_mesh_provis:14,btattach:247,btmesh_shel:14,btshell:[14,30],buad:67,buf:[130,136,154,155,156,157,161,162,164,165,169,172,200],buf_len:[90,130],buffer:[14,21,90,91,93,97,98,130,131,135,157,164,170,172,180,188,191,200,206,225,255,276],buffer_len:276,buffer_size_down:289,bug:[4,7,11,161,162,256,260,282,289,290],bui:276,build:[1,2,3,4,5,6,11,32,33,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,81,83,93,94,95,97,129,135,182,188,199,206,210,223,224,225,226,233,240,241,248,249,250,257,267,274,275,284,287,292],build_arduino_blinki:12,build_arduino_boot:12,build_numb:198,build_profil:[1,33,38,39,44,51,54,62,94,223,237,246,247,250,256,259,260,261,262,263,264,268,275,276,277,278,279,282,285,286,288],buildabl:7,builder:244,built:[1,4,7,8,9,14,22,34,35,39,40,43,44,56,58,59,60,61,62,64,82,83,84,90,129,191,206,223,233,237,238,244,246,247,250,254,255,256,257,258,259,260,261,262,263,264,267,268,274,275,276,277,278,282,285,286,288],bunch:275,bundl:[14,56,102,153],burn:[14,254,255],bus:[2,188],buse:[135,182],busi:[21,91,92,243,275],button1_pin:240,button:[2,4,10,12,14,99,240,256,259],bytes_read:[154,161,164,169,172],bytyp:212,c_ev:85,c_evq:85,c_tick:85,cabl:[238,240,241,243,247,256,257,259,260,261,262,264,268,276,282,284,285,287,288],cach:[59,82,135,174,176,182],cache_large_file_test:267,calcul:[21,30,49,91,101,129,141],calendar:9,call:[6,7,9,11,20,22,24,27,37,62,85,86,87,88,89,90,91,92,93,94,98,99,100,101,102,129,130,131,132,133,135,136,139,141,142,143,144,146,147,151,159,162,166,169,172,173,176,177,179,180,181,184,187,188,190,191,192,193,194,195,197,200,206,207,208,209,211,212,213,215,217,218,221,224,226,229,230,231,232,233,234,235,238,240,243,245,246,249,250,251,252,253,254,255,256,258,264,267,269,275,276,277,278,282,287],callback:[21,27,87,88,90,91,131,141,146,151,187,191,193,194,207,208,209,211,213,226,240,249,251,253,254,255,258,275,282],caller:[90,91,131,141,193,199,200,216,220],callout:[88,93,98,212,258,282],callout_l:240,callout_reset:130,came:247,can:[1,2,3,4,5,6,7,8,9,11,12,14,20,21,22,23,24,25,28,31,32,34,35,36,43,46,51,56,58,59,60,61,62,63,64,65,67,73,77,81,82,83,84,85,86,87,88,90,91,92,93,94,95,97,98,99,100,102,129,130,131,132,135,136,137,138,141,142,144,146,147,151,152,153,162,166,167,170,172,174,175,177,180,181,182,187,189,190,191,193,194,195,196,200,206,207,208,209,210,211,212,215,216,220,221,222,223,224,225,226,229,230,232,233,236,237,238,240,241,242,243,244,246,247,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,268,269,270,274,275,276,277,278,279,280,282,284,285,286,288,289,290,292],cancel:[21,28,85],candid:269,cannot:[4,20,21,72,87,89,92,93,99,129,152,170,180,183,191,193,226,238,256,268,269,270,271],cap:14,capabl:[14,21,23,28,30,96,131,135,206,223,243,258,289],capac:21,captian:82,captur:180,carbon:274,card:[137,152],care:[14,90,93,100,164,172,254,255,269,270,274],carri:90,cascad:[1,62],cast:[90,91,251],cat:[81,275,276],catastroph:27,categor:94,categori:[14,97],caus:[91,93,99,154,161,162,167,170,180,188,192,225,228,241,243,276,289],caveat:[14,129],cb_arg:[151,193,249,253,254,255],cb_func:193,cbmem:[7,206,228],cbmem_buf:206,cbmem_entry_hdr:228,cbmem_init:206,cbmem_read:228,cbmem_test_case_1_walk:228,cbor:[133,134],cborattr:7,cccd:28,ccm:23,cdc:259,cell:23,cellar:[4,6,11,37,59,61,82,84],central:[14,21,31,248,249,250,252],certain:[1,22,90,91,93,94,135,247,270],certainli:[14,276],cess_op_:251,cfg:[71,172,173,188,191,193,194,208,209,260],cflag:[1,51,62,94],cgi:102,ch_commit:130,ch_export:130,ch_get:130,ch_get_handler_t:130,ch_name:130,ch_set:130,chain:[90,91,200],challeng:265,chanc:[93,100],chang:[1,4,6,7,10,11,14,20,21,22,23,25,29,31,47,50,51,53,58,62,63,81,90,94,95,129,130,180,187,191,207,208,215,223,225,226,237,238,240,242,243,244,247,250,252,254,255,256,260,274,275,276,277,278,279,282,284,289,290],channel:[14,21,22,30,135,276],channel_map:28,chapter:[2,22,97,133],charact:[131,140,157,160,174,180,194,198,199,200,201,202,203,204,215,220,226,253,268,282,289],character:25,characteri:[251,253],characterist:[9,17,18,22,28,29,129,250,253,274,276],check:[4,6,8,11,14,21,23,56,57,80,85,88,91,100,130,180,200,209,223,225,226,237,241,246,247,248,259,262,264,267,270,275,278,280,287],checkbox:60,checkin:[78,98,100],checkout:[10,81,83,257],checksum:[141,143],child:[91,155,156,157,162,165,180],children:180,chip:[4,97,135,136,182,187,191,192,207,209,256,257,259,260,263,268,269,275,278],chip_id:278,chipset:[135,182,256,268],choic:[2,10,174,247,278],choos:[6,7,10,14,90,100,102,223,224,238,243,246,249,258,259,261,274,276],chose:224,chosen:[90,94,129,152,180,276],chr:[251,274,276],chr_access:251,chr_val_handl:[274,276],chunk:[14,90],ci40:54,cid:250,circuit:188,circular:[14,206,225,226],circularli:270,clang:6,clarif:10,clarifi:135,clariti:137,classif:21,clean:[1,11,34,40,51,58,59,60,64,82,160,178,243,264],cleanli:226,clear:[73,85,90,91,100,129,180],clearli:[8,21],cli:131,click:[2,4,10,12,244,250,254,255,256,259,260,262,288],client:[12,14,18,19,21,22,28,32,153,181,210,254,274],clk:191,clobber:167,clock:[21,26,87,192,256,260,278],clock_freq:87,clone:[10,11,46,51,56,59,82],close:[2,60,135,153,154,155,156,157,158,161,162,164,165,169,170,171,172,173,194,208,256,259,260,262,263,280],closest:193,clue:14,cmake:1,cmd:[56,62,94,185,275,278],cmd_len:275,cmd_queue:131,cmd_read_co2:275,cmp:275,cmsi:[2,7,14,49,256,259,260,261,262,263,282],cmsis_nvic:[259,260,261,262,263,282],cn4:237,cnt:[74,131,177,178,191,286],co2:[274,275],co2_evq:274,co2_read_ev:274,co2_sns_str:274,co2_sns_typ:274,co2_sns_val:274,co2_stack:274,co2_stack_s:274,co2_task:274,co2_task_handl:274,co2_task_prio:274,coap:[134,210,213,277,281],coars:21,coc:28,code:[1,5,7,9,10,11,13,19,22,25,27,28,30,56,86,90,91,93,96,97,98,101,102,129,130,131,133,135,137,140,153,154,155,156,157,158,160,161,162,164,165,167,169,170,171,172,173,177,178,179,180,181,182,183,187,188,191,193,194,196,206,208,209,210,223,226,228,229,230,232,233,234,238,240,243,248,249,251,252,253,256,257,258,264,266,268,269,275,276,277,280,281,282,284,286,287,292],codebas:[256,268],coded_interval_max:28,coded_interval_min:28,coded_lat:28,coded_max_conn_event_len:28,coded_min_conn_event_len:28,coded_scan_interv:28,coded_scan_window:28,coded_timeout:28,codepag:152,coding_standard:7,coexist:129,collect:[1,7,44,56,62,90,91,133,141,181,200,223,237,269],collis:21,colon:67,color:242,column:20,com11:8,com1:67,com3:[8,258,268,278,285,288],com6:8,com:[8,10,11,12,34,56,58,59,60,64,81,82,83,102,184,237,247,258,268,269,271,278,285,286,288],combin:[1,21,23,27,44,62,93,94,188,246,254,255,269,270],combo:223,come:[3,22,31,56,62,94,102,131,135,206,256,262,263,268,275,276,288],comm:[237,257],comma:[52,67],comman:221,command:[1,2,4,7,8,11,21,31,35,36,37,38,39,41,42,43,45,46,47,48,49,50,52,53,54,55,58,59,60,61,62,68,69,71,72,73,76,77,79,81,82,83,84,94,97,129,132,134,137,139,188,196,197,206,210,216,220,221,222,223,224,225,226,233,237,239,241,242,243,246,254,255,256,258,259,260,261,262,263,264,265,267,268,269,271,272,276,277,278,279,280,282,285,288,289,290],comment:[3,10,14,94,236,292],commerci:275,commit:[10,11,130],common:[56,62,88,90,97,99,100,135,136,182,187,209,210,223,253,260],commonli:[99,191,254],commun:[9,14,22,27,28,32,67,79,131,133,137,188,191,207,208,209,237,240,241,242,243,247,249,252,257,264,268,269,275,276,278,282,285,286,287,288,292],compani:30,compar:[10,21,90,161,243,259,260,261,264,272,276],comparison:[21,23,90,101],compat:[4,14,22,56,129,131,136,215,216,223,256,264,268,278,280,282,289],compens:101,compil:[1,4,5,6,7,8,11,21,35,48,54,56,59,62,82,90,93,94,97,102,135,215,224,233,236,237,238,240,246,256,259,260,261,262,263,264,268,275,276,277,278,282,285,286,288],complaint:22,complementari:32,complet:[9,12,21,23,28,30,31,34,56,60,64,94,96,97,100,129,131,141,155,156,157,162,165,180,182,188,191,194,206,223,231,235,236,240,243,247,249,254,255,260,269,276,277,280,281,282,285,286,288],completion_cb:131,complex:[9,32,93,94,135,182,243,245],compli:22,complianc:[275,276],compliant:22,complic:[56,93,223],compon:[1,7,12,19,40,49,56,58,59,60,62,86,94,97,130,135,182,188,191,223,224,238,240,241,247,254,255,257,268,275,284,287],compos:[40,58,59,60,236],composit:200,comprehens:236,compress:[56,82,174,254],compris:[7,129,174,175],comput:[3,4,6,8,12,14,32,57,59,60,80,82,131,143,152,241,243,246,247,256,257,259,260,261,262,263,277,279,284,285,287,288],concept:[12,23,90,93,161,215,226,241,243,245,246,248,256,257,268,284,287],conceptu:14,concern:[3,90,180],concis:133,conclud:[254,255,276],concurr:[1,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,85,89,248,249],condit:[4,21,129,180,188,208,215,225,228,267,275,276],condition:[56,208,225,226,278],conduct:[129,133],conf:264,conf_bytes_from_str:130,conf_commit:130,conf_commit_handler_t:130,conf_export_func_t:130,conf_export_handler_t:130,conf_export_persist:130,conf_export_show:130,conf_export_tgt:130,conf_export_tgt_t:130,conf_fcb_dst:130,conf_fcb_src:130,conf_file_dst:130,conf_file_src:130,conf_get_handler_t:130,conf_get_valu:130,conf_handl:130,conf_init:[130,234],conf_int8:130,conf_load:130,conf_regist:[130,228],conf_sav:130,conf_save_on:130,conf_save_tre:130,conf_set_handler_t:130,conf_set_valu:130,conf_store_init:130,conf_str_from_byt:130,conf_str_from_bytes_len:130,conf_str_from_valu:130,conf_typ:130,conf_value_from_str:130,conf_value_set:130,confidenti:23,config:[1,7,14,33,51,62,63,65,79,81,82,83,132,136,152,154,158,161,164,171,193,225,226,234,238,246,275,276,278],config_:208,config__sensor:208,config_bno055_sensor:[208,280],config_cli:130,config_fcb:[130,225],config_fcb_flash_area:[225,226],config_lis2dh12_sensor:208,config_newtmgr:[51,238],config_nff:[130,153,225],config_pkg_init:226,config_test_al:234,config_test_handl:228,config_test_insert:[228,229],configur:[6,7,9,14,20,21,26,27,32,33,51,56,58,59,60,62,63,87,91,93,94,95,97,129,131,133,135,153,174,176,180,182,183,187,188,191,193,194,195,210,211,213,223,227,240,243,246,249,253,256,259,262,263,264,265,271,276,278,281,282,284,286,289,290],configuraton:152,confirm:[8,14,21,28,72,129,223,241,264,285,288],confirmbe9699809a049:72,conflict:[62,225,270],confluenc:10,confus:[269,276],congratul:[7,237,250,274,275,276],conifgur:130,conjunct:[32,211],conn:[14,28,29,31,65,66,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,241,252,254,255,285,286,288],conn_handl:[21,250,251,252,274,276],conn_interval_max:30,conn_interval_min:30,conn_itvl:[31,250],conn_lat:[31,250],conn_mod:252,conn_profil:[66,67,68,69,70,71,72,73,74,75,76,77,78],conn_upd:252,connect:[4,7,8,9,12,16,21,22,23,25,27,29,30,32,39,43,44,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,97,131,133,134,135,182,187,188,191,192,223,237,240,248,249,250,251,252,254,255,257,274,275,284,287],connect_don:268,connectable_mod:249,connection_profil:72,connectionless:28,connector:[4,238,247,259,262,264,288],connextra:14,connintervalmax:30,connintervalmin:30,connstr:[14,67,241,285,286,288],conntyp:14,consecut:98,consequ:[21,129,223],conserv:[9,90,97],consid:[22,63,90,93,99,143,188,228,253,269],consider:228,consist:[1,22,32,62,99,100,129,130,133,135,163,180,191,223,225,226,233,253],consol:[1,7,8,12,14,27,56,62,97,102,130,138,155,156,157,162,165,172,194,206,219,226,240,246,247,250,254,255,257,267,275,276,286],console_append_char_cb:131,console_blocking_mod:131,console_compat:131,console_echo:131,console_handle_char:131,console_init:131,console_input:131,console_is_init:131,console_is_midlin:131,console_max_input_len:131,console_non_blocking_mod:131,console_out:131,console_pkg_init:226,console_printf:[14,21,27,131,154,155,156,157,161,162,164,165,169,172,228,274,275,276,282],console_prompt:275,console_read:131,console_rtt:[131,282,289],console_rx_cb:131,console_set_completion_cb:131,console_set_queu:131,console_tick:[131,275],console_uart:[131,282,289],console_uart_baud:131,console_uart_dev:131,console_uart_flow_control:131,console_uart_tx_buf_s:131,console_writ:[131,228],consolid:180,consortium:133,constant:[14,191],constantli:[249,268,276,292],constitu:[44,180],constrain:[9,56,134,265],constraint:256,construct:[11,14,90,99],consult:[153,182],consum:[88,99,194],consumpt:23,contact:[95,96,237],contain:[1,3,7,11,14,30,32,35,51,56,62,85,90,91,94,96,97,99,100,101,129,130,131,133,135,138,141,154,157,158,161,164,167,168,169,171,177,180,183,187,194,196,198,199,200,211,219,223,224,226,228,231,233,236,246,247,249,251,253,254,255,264,267,269,270,278,292],content:[12,14,50,62,81,90,94,129,141,142,143,155,156,157,162,165,172,180,193,200,223,234,237,243,249,253,254,255,262,264,267,270,271,278,280],context:[14,56,78,86,87,88,93,100,131,135,140,191,193,215,217,226,238,240,252,258],contigu:[90,129,141,180],continu:[6,14,94,99,130,180,215,223,238,240,242,243,244,247,256,257,262,268,276,279,280,281,282,284,286,287,289],contrast:226,contribut:[13,23,58,59,60,81,82,83,245,267,284],contributor:[182,275,276],control:[8,9,14,19,20,21,22,23,24,26,27,30,32,56,67,97,131,135,141,161,174,182,184,191,194,206,209,215,226,246,260,262,269,270,275,276,281],contruct:250,convei:90,conveni:[12,21,90,130,172,180,199,228],convent:[264,267,278,282],convers:[102,135,251],convert:[1,8,21,72,85,87,90,101,130,135,175,177,178,180,191,200,226,251,253,275,276],cooper:14,coordin:[277,279],copi:[1,4,46,50,51,63,81,83,90,95,96,129,130,141,180,200,208,223,224,241,249,252,256,275,276,280,282,289,290],copy_don:129,copyright:[4,256,262,275,276,282,289,290],core:[1,6,7,12,22,30,33,38,39,44,49,51,52,54,56,62,63,72,89,94,96,98,133,135,153,182,184,223,224,227,237,243,246,247,248,249,250,256,257,258,259,260,261,262,263,264,267,268,269,270,275,276,277,278,279,282,284,285,286,287,288,289,290,292],core_cminstr:260,core_cmx:14,core_o:[14,131],core_path:62,coreconvert:72,coredownload:72,coredump:[7,183],coredump_flash_area:226,coreeras:72,corelist:72,corner:262,corp:[2,256],correct:[1,2,4,42,91,94,101,129,174,223,226,243,247,260,261,262,264,267,276,278],correctli:[2,14,90,242,247,256,260,267,276,277],correspo:253,correspond:[12,21,87,90,91,94,129,163,176,180,181,206,207,249,251,254,255,270,276],corrupt:[91,168,180],corrupt_block_test:267,corrupt_scratch_test:267,cortex:[4,102,259,261,264,268,276,282],cortex_m0:62,cortex_m4:[62,94,259,260,261,262,263,264,282],cortex_m:256,cost:9,could:[14,21,90,99,180,198,251,275],couldn:[228,249,275],count:[14,56,82,90,99,100,129,130,180,227],counter:[86,90,224,264],countri:22,coupl:[1,14,262,275,276],cours:[14,274],cover:[8,62,135,180,226,227,236,243,253],cpha:191,cpol:191,cpptool:12,cpu:[14,86,94,96,135,182,183,190,243,256,260],cputim:[14,25,87,278,282],cputime_geq:87,cputime_gt:87,cputime_leq:87,cputime_lt:87,crank:276,crash:[65,79,81,82,83,98,129,132,192,194,238],crash_test:[7,132,238],crash_test_newtmgr:238,crc16:180,crc:[7,131,137,275],creat:[1,2,3,4,5,6,8,10,11,12,14,23,28,33,35,40,42,44,45,46,47,48,51,56,58,59,60,62,63,67,72,81,82,83,88,91,92,93,96,98,99,100,102,131,135,144,158,160,161,162,167,170,171,173,174,177,180,206,207,209,210,212,213,217,223,224,225,226,233,235,240,242,243,248,253,257,258,269,271,274,280,281,284,287,292],create_arduino_blinki:12,create_mbuf_pool:90,create_path:160,creation:[48,135,237,264,276],creator:[207,208,209,210,212,277,278,280,282],credenti:271,criteria:21,critic:3,cross:[5,6,7,9,97],crt0:49,crti:49,crtn:49,crw:8,crypto:[7,14,256,259,261,263,268,285,286,288],crypto_mbedtl:223,cryptograph:[23,129],cryptographi:23,crystal:26,csrk:28,css:244,cssv6:30,csw:[78,275,285,288],ctlr_name:67,ctlr_path:67,ctrl:[12,246,275,278,289],ctxt:[251,252,274,276],cur_ind:252,cur_notifi:252,curi:[250,252],curiou:[3,244],curl:[11,59],curn:[250,252],curr:268,currantlab:[82,83],current:[11,14,25,28,32,40,41,42,45,46,47,51,52,58,59,60,61,72,82,83,84,86,87,90,91,92,93,94,98,99,100,101,129,130,131,135,136,137,138,140,141,152,153,158,159,160,161,171,173,180,187,188,191,193,196,207,215,224,225,228,231,235,237,238,241,243,254,256,257,260,262,264,265,269,270,272,278,282],custom:[14,24,72,91,163,181,183,206,226],cvs:[256,262,282,289,290],cwd:12,cycl:[20,22,32,180],cylind:276,daemon:[2,247],dai:[101,215],dap:[2,256,259,263],darwin10:[256,282,289,290],darwin:6,data:[9,14,15,21,22,28,29,31,32,44,49,65,70,81,82,83,85,87,90,91,93,94,97,100,129,130,131,133,134,142,143,144,145,146,147,151,154,158,160,161,163,164,169,170,171,172,173,176,179,189,191,194,205,208,210,213,214,218,220,223,226,227,243,251,252,254,255,274,275,276,284,290,292],data_len:275,data_mod:191,data_ord:191,databas:29,databit:194,databuf:[90,282],datagram:218,datalen:28,datasheet:94,date:[11,69,152,264,267,275],datetim:[7,65,79,81,82,83,131,132,134,238,267],datetime_pars:267,daunt:249,daylight:101,dbm:[22,28,30],deactiv:223,deal:[90,93,94,135],deb:[58,61,81,84],debian:[4,6],debug:[1,2,4,5,6,7,14,40,44,48,51,56,58,59,60,63,95,209,210,225,237,241,246,247,256,258,259,260,261,262,263,268,275,276,277,278,279,282,285,286,288,289,290],debug_arduino_blinki:12,debug_arduinoblinki:12,debugg:[5,14,39,40,56,58,59,60,62,192,256,259,260,262,263,264,288,289,290],dec:[49,223],decemb:23,decid:[56,86,97,243,275],decim:[23,188],decis:188,declar:[12,92,100,130,184,193,208,220,230,232,240,267,269,280,282],decod:[130,215,218],decompress:254,dedic:[88,94,97,215,223,238,240,251,289,290],deep:183,deeper:[90,237,264,276],def:[7,208,225,226,276,282],defaultdevic:83,defin:[1,6,14,20,21,22,25,28,29,30,32,35,43,44,48,51,54,62,85,87,88,90,91,93,98,100,129,130,132,134,135,177,178,183,184,186,187,191,206,207,208,210,211,212,213,214,215,221,223,225,226,228,229,231,233,237,240,243,245,247,249,251,257,264,267,269,270,274,275,276,277,278,281,282,285,287,288,289],defininig:32,defininit:199,definit:[1,12,30,36,38,43,51,62,85,90,91,94,129,215,224,233,247,251,253,269,274,275,276],defint:[90,225],del:28,delai:[27,87,101,193,242,243,264],deleg:223,delet:[1,6,10,12,28,36,40,46,50,51,56,58,59,60,62,63,154,170,174,180,242,265,274,280,282],delimit:[51,130],deliv:[85,152],delta:[56,82,237],demo:274,demonstr:[21,27,90,160,167,172,264,278,282],denot:90,dep:[1,51,56,62,63,94,131,136,137,152,153,181,182,206,208,215,224,226,238,240,246,258,267,275,276,277,282],depend:[1,4,6,8,14,21,23,25,28,40,42,50,51,53,56,58,59,60,63,67,85,90,96,102,129,131,152,153,161,180,187,188,191,201,206,208,215,224,226,228,231,233,235,243,246,256,267,268,269,272,275,276,278,285,287,288],depict:182,deploi:[44,223,258],deploy:32,deprec:226,depth:[4,96],dequeu:[88,240],deriv:[21,180],desc:[177,178,252],descend:[129,170],describ:[1,2,7,10,11,12,25,29,34,64,91,93,94,95,97,100,129,130,133,141,147,152,174,180,187,189,191,200,205,207,208,209,215,223,225,226,233,237,238,244,246,248,253,254,260,263,264,269,275,276,277,278,280,284],descript:[1,7,10,14,20,28,29,31,56,62,90,94,95,96,130,137,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,167,168,169,170,171,172,173,177,178,198,199,201,202,203,204,205,206,207,208,211,212,216,217,218,219,220,221,222,224,225,226,228,229,230,231,232,237,264,265,267,269,270,275,276,290],descriptor:[17,18,28,29,62,161,162,175,177,178,180,251],design:[22,23,24,56,97,98,101,129,174,180,215,223,235,243,253,267],desir:[87,90,99,193,208,267,272],desktop:10,destin:[4,14,32,90,157,164,167,172,180,188,199,206],detail:[1,10,12,14,22,23,30,56,93,100,129,130,153,174,188,191,207,208,209,211,212,223,237,238,246,249,251,253,254,255,256,264,269,282,289,290],detect:[21,56,91,141,153,174,177,178,192,218,225,226,247],determin:[21,88,90,91,100,129,141,180,193,215,223,226,236,249,252,269,280],determinist:14,dev:[1,2,3,4,7,8,10,11,12,14,49,62,67,83,131,135,136,208,209,226,236,237,241,242,246,247,250,256,258,259,260,261,262,263,264,268,269,270,271,275,276,277,278,280,282,285,286,288,292],dev_found:247,develop:[3,5,6,7,8,9,13,14,21,56,60,62,83,90,91,93,95,96,97,100,133,135,210,213,215,226,236,241,243,247,248,251,254,256,257,259,262,263,269,270,274,275,276,281,284,288,289,290,292],devic:[3,4,8,9,15,20,21,22,23,26,29,30,32,33,44,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,97,129,131,133,134,135,136,137,153,175,182,184,187,188,191,210,211,212,213,223,224,225,226,227,238,245,246,248,249,250,251,253,254,255,256,258,259,260,261,262,263,264,268,274,276,281,282,285,286,287,288,289,290,292],device_id:184,deviceaddr:24,deviceaddrtyp:24,dflt:200,dhcp:268,dhkei:21,diag:194,diagram:[133,243,260,262],dialog:[12,60,290],dictat:[11,63],did:[14,223],diff:275,differ:[4,6,7,8,11,12,21,25,28,31,46,56,58,81,85,90,92,93,94,95,96,97,100,130,135,174,182,187,194,208,223,224,225,226,230,238,240,241,243,246,247,258,259,260,262,265,267,268,269,270,272,274,278,280,282,288,290],differenti:[90,269],difficult:[22,96,129,225],dig:[7,248],digit:[23,135,187,276],dioxid:274,dir:[28,137,153,155,156,157,162,163,165],direct:[10,21,28,188,215,224,270],direct_addr:[254,255],directli:[7,11,15,19,37,153,193,194,206,223,226,254,256,265,267,268,277,280],directori:[1,4,6,7,8,10,11,12,35,36,38,42,44,46,51,56,58,60,61,81,83,84,89,94,95,96,135,137,155,156,157,160,161,162,165,166,167,168,170,172,173,190,192,233,237,242,246,247,256,257,259,260,261,262,263,267,268,269,270,275,276,277,278,282,284,285,287,288,290,292],dirent:[137,155,156,157,162,163,165],dirnam:[155,156,157,162,165],dirti:237,disabl:[6,14,21,23,25,31,87,131,152,180,187,191,194,206,208,209,215,223,225,226,238,252,265,268,277,278,279,282,289],disable_auto_eras:136,disallow:[21,174],disbl:215,disc_mod:252,discard:[180,268],disciplin:247,disclaim:[7,11,56,246],disconnec:28,disconnect:[28,252],discontigu:129,discov:[14,23,28,29,247],discover:[14,28,30,134,213,249,281],discoverable_mod:249,discoveri:[14,29,133,135,137,247,252,257],discret:[174,175],discuss:[10,90,95,208,223,249,278],disjoint:21,disk:[7,129,141,153,154,168,170,174,175],disk_nam:153,disk_op:137,disk_regist:[137,153],dispatch:[93,226,240],displai:[1,6,14,23,28,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,62,63,65,67,70,72,73,74,77,78,81,82,83,130,135,182,226,247,262,264,275,277,279,284,285,288],displayonli:28,displayyesno:28,dist:[58,81],distanc:[22,224],distinct:23,distinguish:14,distribut:[1,4,6,21,22,28,56,102,129,269,275,276],distro:6,div0:68,dive:90,divid:[19,21,68,130,132,174,175,223],dle:28,dll:[259,261,264,276],dm00063382:237,dma:135,dndebug:51,dnrf52:94,do_task:224,doc:[4,6,7,10,24,34,64,244,256,257,260],docker:[3,7,256,292],dockertest:2,document:[1,4,8,12,15,19,21,24,26,60,63,65,94,98,102,138,152,153,163,181,182,184,223,233,237,241,243,248,251,253,254,255,256,259,261,267,268,269,278,282,285,286,289,290],doe:[7,14,21,23,36,51,62,67,72,88,90,91,93,94,95,100,101,129,130,131,133,135,141,158,162,170,171,174,175,177,180,188,191,196,206,208,209,211,221,224,225,226,238,240,241,243,246,249,256,259,260,261,263,264,265,271,282,287],doesn:[8,14,21,33,98,129,137,158,170,171,223,228,242,243,246,247,249],doing:[14,89,101,135,243,251,258,275],domain:2,don:[1,10,14,32,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,88,90,130,138,141,164,172,237,251,253,254,255,269,275,276],done:[6,7,8,14,24,26,56,82,92,93,94,101,129,131,141,142,161,162,176,195,196,212,229,230,232,237,238,241,243,247,253,254,255,256,259,260,261,264,268,276,282,289,290],dont:289,doorbel:56,dop:153,doubl:[2,200,262],doubli:180,doubt:[14,253],down:[1,12,62,81,83,187,223,238,260,262,288],downgrad:[6,7],download:[1,2,4,7,10,12,14,30,40,42,43,56,59,60,61,71,72,82,83,84,153,196,244,246,247,256,259,260,261,262,263,267,268,271,275,282,284,285,286,288,289,290],doxygen:[4,7,89,256,260],doxygengroup:89,dpidr:263,dpkg:[58,61,81,84],drag:21,drain:25,draw:25,drive:[9,14,62,101,135,188],driver:[7,56,136,137,153,182,186,187,189,191,193,194,208,210,212,224,246,256,259,260,261,262,263,268,278,282,288,289],drop:[12,14,27,180,194,260,262,288],dsc:251,dsimmon:275,dsize:90,dst:[14,46,51,71,90,172,185,199],dsym:[56,62],dtest:51,due:[14,21,91,129,136,141,152,192,256,260,262],dummi:180,dump:[14,130,289],dumpreg:278,duplex:22,duplic:[28,90],durat:[14,20,28,31,101,251,278],duration_m:[254,255],dure:[14,21,23,72,86,94,98,100,129,131,162,180,197,208,223,226,233,243,246,251,258,277,280],duti:[22,32],dwarf:62,dylib:4,dynam:[89,91],e407:[262,288],e407_:262,e407_devboard:[54,262,288],e407_devboard_download:262,e407_sch:288,e761d2af:[274,276],e_gatt:253,eabi:[4,7,12,94,102,256,282,289,290],each:[1,2,10,11,12,14,20,21,22,23,24,29,33,44,49,50,51,62,63,65,67,74,78,88,90,91,93,94,99,101,129,131,135,155,156,157,162,163,165,167,174,175,176,180,182,187,206,207,209,210,211,212,213,215,219,220,223,224,226,238,240,243,251,252,253,254,255,256,267,269,278,280,281,282,292],ead:153,eager:3,earlier:[10,31,58,59,60,81,82,83,130,170,251,254,255,274,275,276,289],eas:136,easi:[1,2,3,8,9,135,182,188,224,225,228,244,259,276,277],easier:[14,25,94,275],easiest:275,easili:[9,172,210,226,282],east:101,eavesdropp:20,ecdsa256:129,ecdsa:129,echo:[12,14,61,65,79,81,82,83,84,131,132,134,238,268,275,285,286,288],echocommand:12,eclips:12,ectabl:[254,255],edbg:[2,256],eddyston:[28,257],eddystone_url:[28,30],edg:187,edit:[7,95,152,237,242,264,265,269,280],editign:244,editor:[60,62,237,242,260],ediv:28,edr:[21,30,247],edu:[259,289],ee02:264,eeirili:274,eeprom:136,effect:[99,101,130,153,174,175],effici:[14,22,32,90,91,180,256],eid:254,eight:[133,169],einval:87,eir:30,eir_len:247,either:[1,4,6,11,14,22,28,30,31,58,60,62,81,85,86,88,90,91,100,130,131,132,138,141,167,187,188,191,192,223,226,228,231,232,238,254,255,264,275,276,284],elaps:[21,87,101],electron:292,element:[40,54,56,58,59,60,90,91,100,129,130,140,141,142,143,146,148,149,180,200,215,243],elev:92,elf:[7,12,35,39,49,56,62,72,223,237,238,246,247,250,256,258,259,260,261,262,263,264,267,268,275,276,278,282,285,286,288,289,290],elfifi:72,elicit:223,els:[24,86,98,129,155,156,157,162,165,180,209,223,274,275,276,289],elsewher:[248,251,269],emac:275,email:[3,236,292],emb:136,embed:[1,3,4,12,14,40,56,58,59,60,102,129,174,191,236,237,256,262,282,289,290],emit:[56,62],emploi:22,empti:[51,90,100,141,168,180,226,231,245,253,267],emptiv:9,emul:[264,268,280],enabl:[1,8,9,14,25,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,63,74,77,78,79,88,94,130,131,132,133,135,136,152,182,187,191,195,206,208,209,210,212,213,214,220,225,226,237,240,241,246,249,252,257,266,273,274,275,276,280,284,287,289,290,292],enc:[199,201,202,204],enc_chang:252,encapsul:22,encod:[7,52,130,131,133,134,201,202,203,204,213,215,219,264,267,277,281,282],encoding_cborattr:223,encoding_tinycbor:223,encompass:[15,21],encount:[7,14,21,58,90,130,151,180,243],encourag:135,encrypt:[21,23,28,31,174,250,252],encrypt_connect:21,end:[9,21,29,31,56,90,129,141,159,169,171,180,188,205,226,235,245,246,264,275],endian:[24,62,90,129,191,264],endif:[220,224,226,234,235,258,267,275,276,282],energi:[9,22,23,90,257,292],english:129,enjoi:276,enough:[56,90,97,129,157,196,199,275],enqueu:[90,193],ensur:[11,12,22,60,90,94,98,101,102,157,182,188,223,224,225,226,238,240,241,243,247,251,257,268,269,270,278,281,284,287],entail:223,enter:[12,23,48,94,215,221,222,224,243,256,258,260,278,282],entir:[2,14,90,91,94,129,174,175,180,243,253,275],entireti:172,entiti:[44,248],entri:[14,21,23,73,130,141,142,143,146,149,151,155,156,157,162,165,172,174,175,180,205,209,215,220,223,253,279],enumer:[129,184,192,207],environ:[3,4,9,12,14,56,59,60,62,83,97,102,135,191,235,247,286],eof:[58,81],ephemer:254,epoch:101,equal:[14,30,73,90,180,206,225,226,228],equat:30,equival:[47,62,136,161,182,276,292],eras:[14,72,129,136,137,141,150,174,175,178,180,185,256,260,261,262,264,276],erase_sector:262,err:[98,160,205,209,218,219,224,274,276],error:[1,2,4,6,7,21,22,27,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,81,83,87,90,92,93,94,98,99,130,136,137,154,155,156,157,158,160,161,162,164,165,167,168,169,170,171,172,173,174,177,178,179,183,187,188,191,193,194,209,223,226,249,251,252,253,256,259,260,262,263,264,267,268,270,274,275,276,277,280,282,288],error_rsp_rx:[77,238],error_rsp_tx:[77,238],error_stat:224,escap:[268,282,289],especi:[14,101],essenti:[44,62,226,243],establish:[21,28,79,238,240,249,250,252,259,261,264,276],estim:90,etc:[1,14,22,25,27,37,44,58,81,90,91,93,96,97,129,133,135,182,183,194,198,243,245,252,275,276],ethernet:[135,182],etyp:276,eui:264,eul:278,euler:278,ev_arg:[85,88,98,131],ev_cb:[85,88,90,131,240],ev_queu:88,eval:[261,276],evalu:[12,87,101,225,226,261,264,269,276],evalut:101,even:[4,10,14,87,90,97,129,152,180,194,200,212,223,274,276,280],event:[14,21,25,26,28,85,90,93,98,100,131,135,206,212,215,217,224,226,238,243,247,249,250,254,255,274,275,276,280,282,292],event_q:276,event_queu:131,eventq:[90,274,275],eventq_exampl:240,eventu:[4,100,101,180],ever:[90,91,129,141],everi:[1,33,62,98,99,100,135,151,180,191,252,254,256,258,270,275,282],everyon:[10,243],everyth:[1,94,98,130,223,243,267,268,275],evq:[85,88,90,217],evq_own:88,evq_task:88,exact:[97,129,187,193,224],exactli:[90,94,99,158,171,226],examin:[193,249,251,286],exampl:[1,2,3,6,7,9,12,14,23,24,25,26,31,32,56,58,59,60,61,62,63,65,81,83,84,90,91,92,94,95,97,98,99,100,101,102,129,131,134,153,174,175,181,184,187,188,189,206,208,209,210,211,215,220,223,224,236,237,238,243,245,247,248,252,256,258,260,264,267,268,269,270,271,275,277,278,279,280,281,282,285,286,288,289,290,292],example1:90,example2:90,exce:[180,216,220,289],exceed:21,except:[7,52,88,129,224,249,254,255,275,276],excerpt:[131,207,208,209,220,225,226,251,253,280],exchang:[15,22,23,28,29],excit:[7,237,246],exclud:[52,129,223,278],exclus:[23,92,99,207],exe:[12,60,61,83,84],exec:14,exec_write_req_rx:[77,238],exec_write_req_tx:[77,238],exec_write_rsp_rx:[77,238],exec_write_rsp_tx:[77,238],execut:[1,2,7,11,12,14,31,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,68,81,83,86,88,91,93,94,97,100,102,134,137,138,140,191,196,217,226,231,233,234,238,243,249,251,252,253,254,255,258,267,275],exhaust:[21,98,141,180],exisit:28,exist:[2,14,21,25,30,42,47,50,51,72,95,141,147,152,158,160,161,162,167,168,170,171,173,174,177,178,180,187,207,209,214,226,230,242,250,256,259,260,261,262,263,268,270,275,276,277,279,280,281,282,284,285,287,288,289,290,292],exit:[8,81,259,261,264,275,276,289],expect:[6,14,21,44,62,85,93,98,130,131,135,223,228,229,230,231,232,243,247,254,255,264,267],experi:[14,23,265,278],experienc:14,experiment:100,expertis:269,expir:[85,87,88,193,195,240],expire_msec:195,expire_sec:195,expiri:[85,193],explain:[4,12,14,99,238,245,246,247,254,255,257,268,270,284,287,292],explan:[35,36,38,39,40,44,45,46,47,48,49,51,52,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,153,249],explanatori:[31,95,254,255],explic:278,explicit:267,explicitli:249,explor:[129,223,251,284],export_func:130,expos:[1,14,15,22,93,134,174,175,176,210,215,226,248,253],express:[24,169,226,228,253,275,276],ext:[12,14,260],ext_bynam:212,ext_bytyp:212,extend:[14,21,30,31,90,91,276,279,281],extended_dur:28,extended_period:28,extens:[14,22,31,138,264],extent:[256,282,289,290],extern:[12,30,41,94,98,135,136,176,182,187,206,224,233,269,270,276,289,290],extra:[14,39,43,48,90,135,153,191,241,244,249,282,289],extra_gdb_cmd:62,extract:[4,11,59,60,61,83,84,191,237,259],extrajtagcmd:[39,43,48],extrem:9,eyes:228,f401re:54,f411a55d7a5f54eb8880d380bf47521d8c41ed77fd0a7bd5373b0ae87ddabd42:285,f4discoveri:260,f_activ:141,f_active_id:141,f_align:141,f_close:[163,181],f_closedir:[163,181],f_dirent_is_dir:[163,181],f_dirent_nam:[163,181],f_filelen:[163,181],f_getpo:[163,181],f_magic:141,f_mkdir:[163,181],f_mtx:141,f_name:[163,181],f_oldest:141,f_open:[163,181],f_opendir:[163,181],f_read:[163,181],f_readdir:[163,181],f_renam:[163,181],f_scratch:141,f_scratch_cnt:141,f_sector:141,f_sector_cnt:141,f_seek:[163,181],f_unlink:[163,181],f_version:141,f_write:[163,181],face:223,facil:[20,102,233,240],fact:[14,136,269],factor:9,factori:263,fail:[14,21,43,58,81,90,98,141,144,161,162,174,180,228,229,230,232,246,252,259,260,263,264,267,269,276,289],fail_msg:228,failov:223,failur:[21,85,90,98,100,101,129,130,137,142,143,144,146,147,149,150,151,153,154,155,157,158,160,161,164,167,168,169,170,171,172,173,177,178,179,183,187,188,191,193,194,195,216,218,219,220,228,234,235,251,252,253,267],fair:90,fairli:[25,56,62,90,99],fall:[97,102,187,292],fallback:28,fals:[91,223,225,228],famili:[4,102,136,152,247],familiar:[3,12,226,237,238,245,246,248,275,276,282,289,292],fanci:100,faq:[11,13],far:[246,282],fashion:[93,141,180,237],fast:[14,275],fat2n:[7,62],fatf:[7,137,152,153],fault:131,favorit:[237,242],fcb:[7,130,142,143,144,145,146,147,148,149,150,151,206],fcb_append:[141,143,144],fcb_append_finish:[141,142],fcb_append_to_scratch:142,fcb_entri:[141,142,143,146,151],fcb_err_nospac:142,fcb_err_novar:146,fcb_getnext:141,fcb_init:141,fcb_log:206,fcb_rotat:[141,142],fcb_walk:141,fcb_walk_cb:151,fda_id:180,fe80:289,fe_area:[141,146,151],fe_data_:141,fe_data_len:[141,146,151],fe_data_off:[141,146,151],fe_elem_:141,fe_elem_off:141,feat:276,feather:14,featur:[1,3,11,14,20,21,31,91,97,100,141,153,174,215,223,226,236,249,264,278,284],feedback:[237,242,257,276],feel:3,femal:288,fetch:[1,12,14,41,58,81,238,240,241,247,257,269,270,275,284,287],few:[1,6,14,15,26,32,56,62,91,94,95,224,246,251,254,264,267,276,292],ffconf:152,ffffffff:262,ffs2nativ:[7,62],fhss:22,ficr:24,fictiti:[269,270],fie_child_list:180,field:[14,21,28,85,86,90,94,129,131,176,188,201,203,207,208,209,215,220,223,224,226,249,251,253,254,255,269,270,278,280],fifo:141,figur:[90,129,130,141],file:[1,2,4,6,7,10,11,12,35,37,38,42,44,47,49,51,56,58,59,60,61,62,65,71,72,81,82,83,84,95,96,97,102,129,130,131,135,174,184,187,189,196,206,207,208,211,212,215,223,225,226,231,233,237,238,240,242,244,246,247,253,256,258,259,260,262,263,264,265,267,268,269,271,275,276,278,286,290],file_nam:62,filenam:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,71,72,94,152,157,161,163,167,170,174,180,223,247,275],filesystem:[56,130,152,196],fill:[10,49,96,100,130,141,142,144,146,147,183,199,200,246,251,254,255,267,275,276],filter:[2,14,23,28,31,73,256],filter_dupl:14,filter_polici:14,find:[1,2,3,14,21,29,35,56,62,89,90,95,97,130,147,182,212,224,225,230,236,237,246,247,256,259,260,263,268,282,285,288,289,290,292],find_info_req_rx:[77,238],find_info_req_tx:[77,238],find_info_rsp_rx:[77,238],find_info_rsp_tx:[77,238],find_type_value_req_rx:[77,238],find_type_value_req_tx:77,find_type_value_rsp_rx:77,find_type_value_rsp_tx:77,fine:[9,14,254,255],finish:[4,99,100,142,180,194,264,275],fip:22,fire:[85,193,195,243,250,282],firmwar:[129,153,238,259,261,264,268,275,276,289,290],first:[2,3,6,8,12,14,22,23,30,34,58,59,60,61,64,83,84,85,88,90,91,92,94,100,101,102,129,130,141,169,174,175,180,181,184,191,198,200,212,215,223,226,237,238,243,245,248,249,250,251,253,254,255,257,258,264,268,274,275,276,278,282,284,287,292],fit:[4,90,101,172,180,249,250,265],five:[21,22,23,158,171,238],fix:[6,11,14,91,101,129,271],fl_area:142,fl_data_off:142,flag:[1,6,12,14,28,30,56,58,59,60,62,63,65,81,82,83,90,95,100,129,161,223,241,247,251,253,274,275,278,285,288],flash0:153,flash:[1,9,14,40,44,49,56,58,59,60,62,96,97,130,135,142,143,147,153,175,177,178,181,182,186,187,189,196,206,223,226,238,256,260,261,262,264,265,276],flash_area:[141,151],flash_area_bootload:[94,129,177,178,225,226],flash_area_image_0:[94,129,177,178],flash_area_image_1:[94,129,177,178,226],flash_area_image_scratch:[94,129,177,178,225],flash_area_nff:[177,178,225,226],flash_area_noexist:225,flash_area_read:[141,146,151],flash_area_reboot_log:[225,226],flash_area_to_nffs_desc:[177,178],flash_area_writ:[141,142],flash_area_x:141,flash_id:[136,183,185],flash_map:[7,130,177,178,183,225,226],flash_map_init:226,flash_own:[225,226],flash_spi_chip_select:187,flash_test:[7,131],flat:[90,200,206],flavor:256,flexibl:[90,97,236,249,269,270],flg:275,flicker:14,flight:90,float_us:277,flood:32,flow:[22,131,194,247,254,255],flow_ctl:194,fly:191,fmt:131,focu:243,folder:[4,10,12,34,56,60,64,242,259],follow:[1,2,3,4,6,7,8,11,12,14,20,21,22,24,25,27,28,30,31,32,33,38,39,44,51,52,56,58,59,60,61,62,65,67,68,72,73,74,78,79,81,82,83,84,90,92,94,95,97,99,100,101,102,129,131,132,134,135,136,137,141,153,161,168,169,170,174,175,176,180,181,182,188,190,191,201,203,206,207,208,209,210,212,213,223,224,225,226,228,229,230,231,232,233,237,238,240,241,242,243,246,247,248,249,251,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,271,274,275,276,277,278,279,280,281,282,284,285,287,288],foo:130,foo_callout:130,foo_conf_export:130,foo_conf_set:130,foo_val:130,footer:[129,258],footprint:[9,133,135],fop:166,fopen:161,forc:[42,50,53,90,223],forev:[88,92,99,100,161,162,235],forgeri:23,forget:[81,161,162,237,274,275,276],forgot:275,fork:10,form:[1,20,23,24,27,67,90,100,180,226,251,252,254,264,267,269],formal:[7,21],format:[8,30,51,67,69,72,73,90,130,131,133,152,153,174,177,178,198,199,200,207,224,226,228,231,247,254,258,268,269,270,278,285,288],former:180,formula:[3,61,84],forth:[130,200],fortun:56,forver:28,forward:[14,101,249],found:[1,14,21,34,56,64,91,94,149,174,180,200,247,252,253,254,256,260,262,288],foundat:[4,22,32,133,256,262,269,275,276,282,289,290],four:[20,23,48,129,169,173],fraction:[101,267],frame:[215,218,219,243,264],framerwork:132,framework:[22,29,98,133,207,213,214,233,234,247,277,278,279,282,283,284],frdm:54,free:[2,4,74,89,90,91,141,180,216,220,223,250,252,256,262,282,286,289,290],freebsd:102,freed:[90,91,180],freedom:[252,254,255],freq_hz:193,frequenc:[14,22,25,87,94,98,101,135,182,190,193,195,224,243,264],frequent:[10,14,20,22,23,98,254,255,282],freshli:90,friend:32,friendli:[14,135],from:[1,4,6,7,8,9,10,11,12,14,20,21,23,24,27,28,31,32,33,36,37,39,40,42,44,45,46,47,48,50,51,52,56,57,61,62,63,65,66,67,69,70,71,72,73,74,77,78,80,84,85,86,87,88,89,90,91,93,94,95,96,97,100,101,102,129,130,132,133,134,136,137,138,140,141,147,153,154,155,156,157,161,162,163,164,165,167,169,170,172,177,178,180,181,183,187,188,191,193,194,196,199,200,206,207,208,209,210,211,212,213,214,215,217,218,223,224,225,226,228,229,230,232,233,235,237,238,240,241,243,245,246,247,248,251,252,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,275,276,278,282,284,285,286,288,289,290],front:[90,180],fs_access_append:161,fs_access_read:[154,161,164,169],fs_access_trunc:[158,161,167,170,171],fs_access_writ:[158,161,167,170,171],fs_cli:7,fs_cli_init:216,fs_close:[158,161,164,167,169,170,171,172,173],fs_closedir:[137,162],fs_dir:[153,155,156,157,162,163,165],fs_dirent:[7,153,155,156,157,162,163,165],fs_dirent_is_dir:[155,157,162,165],fs_dirent_nam:[137,155,156,162,165],fs_eaccess:168,fs_ecorrupt:[168,177,178],fs_eempti:168,fs_eexist:[166,168,173],fs_eful:168,fs_ehw:168,fs_einval:168,fs_enoent:[137,155,156,157,162,165,167,168],fs_enomem:168,fs_eo:168,fs_eoffset:168,fs_eok:168,fs_eunexp:168,fs_euninit:168,fs_fcb:223,fs_file:[7,153,154,158,159,161,163,164,167,169,170,171],fs_filelen:171,fs_if:[163,181],fs_ls_cmd:216,fs_ls_struct:216,fs_mkdir:[7,173],fs_mount:7,fs_name:153,fs_nmgr:7,fs_op:[166,181],fs_open:[154,158,164,167,169,170,171,172,173],fs_opendir:[137,155,156,157,165],fs_read:[154,161,169,172],fs_readdir:[137,155,156,157,162],fs_regist:181,fs_unlink:160,fs_write:[158,167,173],fssl:[11,59],fsutil:[7,153],fsutil_r:153,fsutil_w:153,ftdichip:247,fulfil:251,full:[1,7,8,14,21,22,29,31,49,56,94,129,130,136,142,157,161,167,168,180,183,196,206,215,223,225,226,238,242,246,249,252,253,258,275,276,278,282,292],fuller:180,fulli:[9,22,129,174,175,180,223,246,255,269,270,276],fun:[237,275],func:[90,98,100,130,188,193,195],fundament:[1,292],funtion:200,further:[6,94,98,188],furthermor:[93,129,174,175,180,223,243,254,255],fuse:56,futur:[85,90,180,188,207,215,226,264,269,270,271],g_bno055_sensor_driv:209,g_bno055stat:209,g_led_pin:[242,243,258],g_mbuf_buff:90,g_mbuf_mempool:90,g_mbuf_pool:90,g_mystat:224,g_nmgr_shell_transport:218,g_os_run_list:86,g_os_sleep_list:86,g_stats_map_my_stat_sect:224,g_task1_loop:258,gain:[92,99,181,246,276],gap:[19,20,21,22,31,180,248,251,253,275,276,277],garbag:141,gatewai:264,gatt:[14,15,19,22,28,31,32,33,248,251,253,275,276,277],gatt_acc:251,gatt_adc_v:276,gatt_co2_v:274,gatt_co2_val_len:274,gatt_srv:276,gatt_srv_sns_access:276,gatt_svr:[253,274,276,278],gatt_svr_chr_access_gap:[251,253],gatt_svr_chr_access_sec_test:[253,274],gatt_svr_chr_sec_test_rand_uuid:[253,274],gatt_svr_chr_sec_test_static_uuid:[253,274],gatt_svr_chr_writ:[274,276],gatt_svr_register_cb:253,gatt_svr_sns_access:[274,276],gatt_svr_svc:[251,253,274],gatt_svr_svc_adc_uuid:276,gatt_svr_svc_co2_uuid:274,gatt_svr_svc_sec_test_uuid:[253,274],gaussian:22,gavin:59,gc_on_oom_test:267,gc_test:267,gcc:[4,7,58,102],gcc_startup_:94,gcc_startup_myboard:94,gcc_startup_myboard_split:94,gcc_startup_nrf52:[94,259,261,282],gcc_startup_nrf52_split:[259,261,263,264,282],gdb:[4,7,12,39,48,62,63,94,243,246,256,258,259,260,262,263,276,282,289,290],gdb_arduino_blinki:12,gdbmacro:7,gdbpath:12,gdbserver:6,gear:102,gen:[28,31],gen_task:240,gen_task_ev:240,gen_task_prio:240,gen_task_stack:240,gen_task_stack_sz:240,gen_task_str:240,gener:[1,11,14,16,17,18,19,20,21,22,24,28,29,30,32,35,36,44,56,62,63,88,90,91,92,94,100,129,137,174,175,187,200,223,225,229,230,232,237,238,241,242,243,244,246,247,249,250,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,274,275,278,282,285,288,289,290],get:[2,4,6,7,8,9,10,11,14,24,56,57,59,60,61,62,65,77,80,82,83,84,86,88,90,91,92,93,94,96,97,98,99,100,101,129,130,134,135,141,151,158,161,164,167,172,180,183,187,191,193,200,207,211,213,223,226,228,237,240,242,243,245,247,249,251,253,254,255,256,257,259,260,262,263,264,267,268,274,275,276,281,282,288,292],gettng:265,gfsk:22,ggdb:6,ghz:[22,268],gist:[135,187],gister_li:211,git:[11,56,59,81,82,83,102,256,268,269,270,271],github:[1,7,10,11,34,56,58,59,60,64,81,82,83,102,184,237,256,268,269,270,271,275,276,284],githublogin:271,githubpassword:271,githubusercont:[11,58,59,60,81,82,83],give:[14,56,187,223,237,243,246,254,255,264,269,270,276],given:[12,14,21,43,85,87,88,90,91,97,100,101,129,137,140,146,147,153,183,187,191,193,194,200,207,211,212,243,270],glanc:249,glibc:58,global:[1,30,63,90,91,92,176,206,207,209,224,233,251,275],gmt:101,gnd:[8,264,276,278,288],gnu:[3,4,12,14,39,48,256,260,262,263,282,289,290],goal:[56,102,287],gobjcopi:6,gobjdump:6,gobl:82,goe:[14,62,233,267,275],going:[14,97,130,223,254,258,275,276],golang:[11,60,83],gone:250,good:[7,9,14,23,56,92,94,98,129,152,223,246,249,255,264,275],googl:[254,284],gopath:[11,58,59,60,61,81,82,83,84],got:[14,274,275,276],govern:[275,276],gpg:[58,81],gpio:[8,14,97,135,189,191,194,240],gpio_ev:240,gpio_l:240,gpl:[4,256,260,262,263,282,289,290],gplv3:[256,262,282,289,290],gpo:182,gpregret:14,grab:89,gracefulli:235,graduat:276,grain:9,grant:92,granular:101,graph:[1,51,63,276],graviti:278,great:[8,22,129,225,242,275,276],greater:[22,30,90,180,225],greatest:[129,180],green:[2,10,12,256,260,261,268,278,285],grid:56,ground:[276,278],group:[2,21,77,132,135,215,224,226,238,264],grow:[54,243],guarante:[14,90,91],guard:93,guid:[7,11,12,19,60,63,65,83,209,210,226,238,240,243,248,253,255,265,267,269,285,288],guinea:244,gyro:278,gyro_rev:278,gyroscop:[207,278],h_mynewt_syscfg_:226,hack:[7,9,12,14,237,242,276],had:[90,93,129,223],hal:[1,7,9,14,49,56,62,87,96,135,136,177,178,181,182,188,191,193,194,209,240,246,256,260,262,276,278,282,292],hal_bsp:[7,14,94,135,186,208,256,259,260,262,275,280],hal_bsp_core_dump:183,hal_bsp_flash_dev:[94,136,183,186],hal_bsp_get_nvic_prior:183,hal_bsp_hw_id:183,hal_bsp_init:[183,208],hal_bsp_max_id_len:183,hal_bsp_mem_dump:183,hal_bsp_power_deep_sleep:183,hal_bsp_power_off:183,hal_bsp_power_on:183,hal_bsp_power_perus:183,hal_bsp_power_sleep:183,hal_bsp_power_st:183,hal_bsp_power_wfi:183,hal_common:[7,246,260,262],hal_debugger_connect:192,hal_flash:[7,94,136,153,183,186,256,260,262],hal_flash_align:185,hal_flash_eras:185,hal_flash_erase_sector:185,hal_flash_init:185,hal_flash_ioctl:185,hal_flash_read:185,hal_flash_writ:185,hal_gpio:[7,137,184,187,240],hal_gpio_init_in:187,hal_gpio_init_out:[100,187,240,242,243,258],hal_gpio_irq_dis:187,hal_gpio_irq_en:[187,240],hal_gpio_irq_handler_t:187,hal_gpio_irq_init:[187,240],hal_gpio_irq_releas:187,hal_gpio_irq_trig_t:187,hal_gpio_irq_trigg:187,hal_gpio_mode_:187,hal_gpio_mode_in:187,hal_gpio_mode_nc:187,hal_gpio_mode_out:187,hal_gpio_mode_t:187,hal_gpio_pul:187,hal_gpio_pull_down:187,hal_gpio_pull_non:187,hal_gpio_pull_t:187,hal_gpio_pull_up:[187,240],hal_gpio_read:187,hal_gpio_toggl:[100,187,240,242,258],hal_gpio_trig_both:187,hal_gpio_trig_fal:187,hal_gpio_trig_high:187,hal_gpio_trig_low:187,hal_gpio_trig_non:187,hal_gpio_trig_ris:[187,240],hal_gpio_writ:[14,184,187,243],hal_i2c_begin:188,hal_i2c_end:188,hal_i2c_init:188,hal_i2c_master_data:188,hal_i2c_master_prob:188,hal_i2c_master_read:188,hal_i2c_master_writ:188,hal_i2c_prob:188,hal_i2c_read:188,hal_i2c_writ:188,hal_os_tick:[190,259,282],hal_reset_brownout:192,hal_reset_caus:[192,280],hal_reset_pin:192,hal_reset_por:192,hal_reset_reason:192,hal_reset_request:192,hal_reset_soft:192,hal_reset_watchdog:192,hal_rtc:152,hal_spi:[137,191],hal_spi_abort:191,hal_spi_config:191,hal_spi_data_mode_breakout:191,hal_spi_dis:191,hal_spi_en:191,hal_spi_init:[137,191],hal_spi_lsb_first:191,hal_spi_mod:191,hal_spi_mode0:191,hal_spi_mode1:191,hal_spi_mode2:191,hal_spi_mode3:191,hal_spi_moden:191,hal_spi_msb_first:191,hal_spi_set:[136,191],hal_spi_set_txrx_cb:191,hal_spi_slave_set_def_tx_v:191,hal_spi_tx_v:191,hal_spi_txrx:191,hal_spi_txrx_cb:191,hal_spi_txrx_noblock:191,hal_spi_type_mast:191,hal_spi_type_slav:191,hal_spi_word_size_8bit:191,hal_spi_word_size_9bit:191,hal_system:192,hal_system_clock_start:192,hal_system_reset:192,hal_system_restart:192,hal_system_start:192,hal_tim:[87,193],hal_timer_cb:[87,193],hal_timer_config:193,hal_timer_deinit:193,hal_timer_delai:193,hal_timer_get_resolut:193,hal_timer_init:[14,193],hal_timer_read:193,hal_timer_set_cb:193,hal_timer_start:193,hal_timer_start_at:193,hal_timer_stop:193,hal_uart:275,hal_uart_blocking_tx:194,hal_uart_clos:194,hal_uart_config:[194,275],hal_uart_flow_ctl:194,hal_uart_flow_ctl_non:[194,275],hal_uart_flow_ctl_rts_ct:194,hal_uart_init:194,hal_uart_init_cb:[194,275],hal_uart_par:194,hal_uart_parity_even:194,hal_uart_parity_non:[194,275],hal_uart_parity_odd:194,hal_uart_rx_char:194,hal_uart_start_rx:194,hal_uart_start_tx:[194,275],hal_uart_tx_char:194,hal_uart_tx_don:194,hal_watchdog_en:195,hal_watchdog_init:195,hal_watchdog_tickl:195,hal_xxxx:182,half:[17,18,94,101],halfwai:129,halgpio:187,halsystem:192,halt:[93,190,191,256,260,262],haluart:194,hand:[223,237,243,267],handbook:[259,263],handi:[14,94,276],handl:[14,18,21,28,29,31,62,90,102,135,136,137,153,154,155,156,157,161,162,165,170,171,172,173,180,206,210,211,215,238,240,250,251,252,274,275,276,282],handler:[14,88,93,94,132,187,211,213,216,218,220,221,240,243,274,275,276,277],happen:[9,14,21,27,130,141,180,250,253,254,255,256,268,270],happi:[7,9],har:288,hard:[98,131],hardcod:[26,28],hardwar:[2,3,5,6,7,9,14,21,22,25,26,32,35,87,94,96,97,129,135,174,175,180,183,184,185,186,187,188,190,192,193,194,195,209,223,226,240,243,246,247,254,255,256,258,259,260,261,265,268,269,275,282,292],harm:129,has:[2,3,4,7,10,11,12,14,21,23,25,27,31,35,37,44,51,56,58,59,60,62,63,78,81,82,83,85,86,87,88,89,90,91,93,94,97,98,99,100,129,130,131,133,135,139,141,153,154,166,170,174,180,187,188,191,193,194,196,209,211,223,224,226,233,235,238,241,243,244,251,252,253,256,258,259,260,264,267,268,269,270,274,275,281,282,289,290,292],hash:[35,38,44,47,72,129,180,223,241,285,288],have:[1,2,3,6,7,8,9,10,11,12,14,20,21,23,25,31,33,44,51,53,55,56,58,59,60,61,62,63,65,81,82,83,84,85,88,90,91,93,94,96,97,98,99,100,102,129,131,133,135,136,138,141,144,174,175,180,182,186,187,193,194,215,221,223,224,225,226,236,237,238,240,241,242,244,245,246,247,250,251,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,272,274,275,276,277,278,279,280,281,282,284,285,286,287,288,289,290,292],haven:[3,14,137,236,270,275,276,292],hci1:247,hci:[14,22,245],hci_adv_param:249,hci_common:238,hdr:[129,228],hdr_ver:198,head:[11,59,81,82,83,88,90,211,244],header:[1,14,38,40,47,56,58,59,60,62,94,129,133,141,142,180,184,187,206,208,226,233,238,258,275,276],heading1:244,heading2:244,heading5:244,headless:2,health:254,heap:[91,93,94],heart:243,held:269,hello:[12,14,70,158,171,194,238,257,268,285,286,288,292],help:[1,8,12,14,32,35,36,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,68,69,70,71,72,73,74,75,76,77,78,81,82,83,93,95,96,101,135,200,220,223,225,243,244,245,246,249,256,258,259,261,264,265,267,268,271,275,276,278,282,289,290],helper:[1,62,90,95,136,254,255],henc:[129,236],her:93,here:[1,3,8,10,11,14,30,33,56,74,77,78,85,88,90,91,94,95,98,100,130,131,141,157,158,161,164,172,174,187,191,200,206,207,209,215,223,224,225,226,234,236,237,240,244,247,251,253,254,255,256,258,259,260,263,264,267,268,269,270,275,276,286,292],hertz:87,hex:[7,38,44,49,72,188,223,262,264,274,282],hexidecim:67,hfxo:25,hidapi:4,hidraw:4,hierarchi:[153,226,233],high:[9,14,19,22,65,87,99,135,187,240,243,289],high_duti:28,higher:[11,14,15,21,22,56,59,60,73,81,82,83,92,93,99,100,182,206,212,225,226,236,243,247,267,270],highest:[86,92,93,100,225,226,243],highli:236,highlight:[2,6,31,102,237,256,259,261,263,268,276,277,282],hint:56,his:93,histori:225,hit:[37,258],hl_line:[208,209],hmac:14,hog:243,hold:[34,44,64,90,91,157,188,199,209,215,237,243,264,269,276],hole:[180,276],home:[7,11,60,94,223,246,258,267,271,275],homebrew:[4,6,7,11,37,57,61,80,84],homepag:[1,44,62,131,267,275,276],honor:14,hook:[98,262,275,288],hop:[22,135],hope:14,host:[7,9,14,22,23,24,27,30,31,67,71,72,85,88,90,129,213,244,246,247,251,252,253,256,267,268,275,276,277,281,282,289,290],hotkei:289,hour:101,how:[2,3,4,5,6,7,8,11,12,14,21,22,24,31,56,58,59,60,61,67,81,82,83,84,90,92,94,97,101,129,130,131,141,147,149,167,174,188,191,201,206,208,209,220,223,224,227,228,231,233,236,237,238,241,242,243,244,245,246,247,250,251,252,254,255,256,257,258,259,260,261,262,263,264,266,267,268,274,275,276,278,279,281,282,284,285,286,287,288,292],how_to_edit_doc:244,howev:[3,14,58,81,90,97,100,102,129,131,174,180,187,224,241,259,269],htm:247,html:[4,34,64,153,256,260,262,282,289,290],http:[1,4,10,11,12,14,34,40,56,58,59,60,62,64,81,82,83,102,131,138,184,237,247,254,256,259,260,262,263,267,269,271,275,276,282,288,289,290],httperror404:[58,81],hub:268,human:[247,269],hw_bsp_nativ:62,hw_drivers_nimble_nrf51:223,hw_hal:56,hw_mcu_nordic_nrf51xxx:223,hypothet:21,i2c:[8,135,136,182,278,279,282],i2c_0:[277,278,279,282],i2c_0_itf_bno:208,i2c_0_itf_li:208,i2c_num:188,i2s:256,i2s_callback:256,i386:[4,6],iOS:[250,274,276,277,279,281,284],ibeacon:[24,246,257,292],icloud:14,icon:[10,12,14],id16:253,id3:[34,64],id_init:226,idcod:256,idea:[14,62,90,92,98,249],ideal:22,ident:[14,19,21,23,24,28,31,67,90,102,134,223,224,233],identifi:[1,8,14,20,21,28,30,35,72,94,100,129,130,180,183,188,254,255,259,261,264,268,276,285,288],idl:[28,78,98,243,246,275,285,288],idx:[28,136,180],ietf:200,if_rw:134,ifdef:[223,226,234,258,282],ifndef:[226,275,276],ignor:[6,14,28,83,91,153,167,174,226,289],ih_flag:129,ih_hdr_siz:129,ih_img_s:129,ih_key_id:129,ih_mag:129,ih_tlv_siz:129,ih_ver:129,iii:129,illustr:[12,90,92,93,129,243,276,282],imag:[2,6,7,12,32,35,39,40,43,44,48,56,58,59,60,62,65,79,81,82,83,94,95,97,102,131,132,197,198,199,201,202,204,224,225,236,246,250,256,257,258,265,274,275,286,287,289,290,292],image_ec256:[256,259,260,261,262,263,264,268,278,285,286,288],image_ec:[7,256,259,260,261,262,263,264,268,278,285,286,288],image_f_ecdsa224_sha256:129,image_f_non_boot:129,image_f_p:129,image_f_pkcs15_rsa2048_sha256:129,image_f_sha256:129,image_head:129,image_header_s:129,image_mag:129,image_magic_non:129,image_ok:129,image_rsa:[7,256,259,260,261,262,263,264,268,278,285,286,288],image_tlv:129,image_tlv_:129,image_tlv_ecdsa224:129,image_tlv_rsa2048:129,image_tlv_sha256:129,image_valid:[7,256,260,261,263,268,278,285,286,288],image_vers:[129,198,199],img:[14,38,47,72,237,238,241,242,246,247,250,256,259,260,261,262,263,264,268,275,278,282,285,288,289,290],img_data:205,img_start:192,imgmgr:[7,131,132,153,196,226,238,276],imgmgr_max_ver_str:199,imgmgr_module_init:226,imgr_list:[201,202,204],imgr_upload:205,imgr_ver_jsonstr:199,immedi:[27,88,94,129,170,180,191,193,244,249,254,255],impact:[25,180],impl:62,implemen:67,implement:[9,10,14,22,33,62,67,88,90,91,94,96,97,129,130,131,132,152,153,174,180,182,184,186,187,188,189,190,191,192,196,200,207,208,210,212,214,215,221,226,233,240,248,251,253,254,264,267,276,277,278,282],impli:[14,254,255,267,270,275,276],implicit:267,impos:[129,174,175,180],imposs:[20,176],impract:253,impress:276,improv:258,imuplu:278,inc:[4,256,262,282,289,290],includ:[1,4,7,9,10,14,15,16,17,18,20,21,22,23,27,28,29,32,44,51,60,62,85,88,90,91,92,94,96,97,98,99,100,101,129,130,131,134,135,136,137,139,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,188,191,193,194,196,206,207,208,211,212,213,215,223,225,226,227,233,237,238,240,241,243,247,248,249,251,254,255,259,267,269,270,275,276,277,278,280,281,282,287,289],include_tx_pow:28,incom:[21,88,194,196,215,216,218,240],incompat:[58,81,269],incomplet:[30,94,160],incomplete_block_test:267,incorrect:[43,101],incr:183,increas:[22,23,90,180,215,216,220,226,243,289],increasin:141,increment:[90,101,130,180,224],incub:[7,56,184,226,237,276],inde:[93,262],indefini:[254,255],indent:6,independ:[23,97,129,135,182,183,185,187,188,190,192,193,194,195,226,275],indetermin:267,index:[32,73,129,247],indian:101,indic:[7,14,20,21,27,29,30,31,88,91,94,98,129,131,133,153,159,161,168,180,187,188,193,205,212,215,220,223,225,226,241,251,253,256,259,260,263,267,268,282,284],indirect:276,individu:[11,100,129,130,135,187,226,232,238,269],industri:[22,152],ineffici:180,infinit:[88,91,93,226,243,258],info:[14,40,58,59,60,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,91,100,130,141,142,146,220,241,252,256,260,262,263,268,274,276],inform:[1,6,7,12,14,21,23,24,28,30,35,38,40,41,58,59,60,62,63,65,67,72,81,82,83,88,90,91,94,96,97,100,101,129,133,134,146,180,206,207,209,210,220,223,224,226,236,237,240,241,243,246,249,252,253,254,255,256,258,264,269,270,271,275,276,278,282,285,288,290],infrastructur:246,ing:[135,254,255],inher:[1,24,251],inherit:[1,4,60,92,176,207],ininclud:224,init:[51,56,208,212,226,275,276],init_app_task:93,init_func_nam:226,init_funct:226,init_stag:226,init_task:[240,243],init_tim:[258,282],initi:[14,17,20,22,24,26,27,28,29,62,85,87,88,90,91,92,93,94,98,99,100,130,131,135,139,147,153,168,177,178,179,180,182,183,185,187,188,191,193,194,197,200,204,206,208,211,212,213,215,216,220,233,234,238,240,242,247,248,252,254,255,258,267,274,275,276,277,278,282],initialis:[209,256],inod:[174,176],inoper:[27,254,255],input:[21,23,28,101,135,182,187,191,240,262,267,289],inquiri:[21,30],insert:[100,180],insid:[14,25,90,93,162,183,258,262,267],insight:[135,243],inspect:[14,49,129,130,252],instal:[3,7,9,34,40,55,56,64,79,93,94,95,137,211,238,240,241,242,243,245,246,247,256,257,259,260,261,262,263,267,268,270,272,275,277,278,279,281,282,284,285,286,287,288,289,292],instanc:[2,3,9,14,28,63,90,176,177,178,180,206,224,249,254,255,256],instant:21,instantan:243,instanti:[93,135],instantli:99,instead:[7,11,12,14,25,88,91,99,129,131,223,226,238,240,250,256,258,259,260,261,262,263,267,271,274,275,276,277,280],instruct:[3,4,7,11,56,58,63,81,86,97,238,240,256,259,263,277,278,279,280,282,286,289,290],insuffici:[21,90,168],insur:[91,100],int16_t:101,int32_max:28,int32_t:[85,101,194,254,255],int64_t:101,int8:130,int_max:90,integ:[14,200,207,224,226],integr:[12,14,23,91,180,188,224],intellig:182,intend:[14,25,30,37,177,178,188,236],inter:[180,188,240],interact:[2,8,131,133,196,250,258,265,289],interchang:200,interconnect:[9,133],interdepend:[130,226],interest:[7,15,19,90,94,182,223,242,246,249,254,292],interfac:[4,19,22,31,32,90,100,129,134,135,136,137,152,153,182,183,185,187,188,190,191,192,194,195,206,209,210,237,245,247,248,256,260,262,275,278,279,282,288],interleav:14,intermedi:[160,161,167],intern:[7,14,21,90,93,94,98,135,136,141,168,177,178,179,186,193,195,196,200,216,220,256,276],internet:[7,12,22,238,240,241,247,257,268,284,287],interoper:[133,134],interpret:[138,140,207,211],interrog:276,interrupt:[14,87,88,94,129,183,187,190,191,193,194,276],interrupt_prior:276,interv:[14,21,28,30,98,100,207,211,212,240,278,282],interval_max:28,interval_min:28,intervent:97,intial:220,intiat:94,introduc:[1,31,180,225,226],introduct:[243,292],introductori:284,intuit:129,invalid:[21,87,129,137,143,153,154,168,172,173,180,191,193,251,267],invers:[92,99],invert:99,invoc:[6,253],invok:[2,267,271,282],involv:[17,18,20,23,94,97,182,188,267],io_cap:28,ioctl:153,iot:22,iotiv:277,ipsp:22,ipv6:22,irk:[20,28],irq:[14,187],irq_num:183,irq_prio:[136,137],isbuildcommand:12,ism:22,ismylaptop:[275,276],isn:[14,94,180,246],isol:[94,223],isr:14,isshellcommand:12,issu:[1,6,10,31,56,67,93,99,129,133,153,174,180,188,238,259,260,261,263,264,272,275,276],ist:101,it_len:129,it_typ:129,ital:244,ite_chr:251,item:[1,88,94,130,181,211,255],iter:[91,100,129,155,156,157,162,165,180,212],itf:209,its:[7,10,11,14,19,20,21,56,62,86,88,90,91,92,93,94,97,98,100,129,131,136,141,159,169,172,174,175,180,187,188,191,206,223,224,225,226,228,233,237,241,242,243,244,245,246,249,251,252,253,254,255,264,269,275,280,286,292],itself:[14,27,62,90,91,100,129,135,139,141,181,196,201,212,226,227,237,259,267,275,276],itvl:14,iv_build_num:129,iv_major:129,iv_minor:129,iv_revis:129,jan:101,javascript:56,jb_read_next:200,jb_read_prev:200,jb_readn:200,je_arg:200,je_encode_buf:200,je_wr_comma:200,je_writ:200,jira:10,jlink:[62,94,241,259,261,268,278,282,285],jlink_debug:62,jlink_dev:62,jlinkex:[259,261,264,276],jlinkgdbserv:[282,289],job:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,86,93,94,215,251],join:[3,135,236,268,292],json:[7,12,35,38,52,56,62,202,203,204,205,237,238,242,267,275],json_array_t:200,json_attr_t:[200,205],json_buff:[200,205],json_buffer_read_next_byte_t:200,json_buffer_read_prev_byte_t:200,json_buffer_readn_t:200,json_decod:[205,267],json_encod:[199,200,201,202,203,204,267],json_encode_object_entri:[202,203,204],json_encode_object_finish:[201,204],json_encode_object_start:[201,202,203],json_enum_t:200,json_read:200,json_read_object:200,json_simple_decod:267,json_simple_encod:267,json_typ:200,json_valu:[200,201,202,203,204],json_value_int:[200,203],json_value_str:200,json_value_stringn:200,json_write_func_t:200,jtag:[4,39,43,48,256,259,260,262,268,282,288],jul:81,jump0:68,jump:[129,223],jumper:[8,237,262,275,276,288],just:[1,7,8,14,21,23,24,63,85,88,94,95,100,101,129,136,137,152,167,172,223,237,250,251,254,255,256,258,264,271,272,275,276],jv_len:200,jv_pad1:200,jv_type:200,jv_val:200,k30:[274,275],k64f:54,keep:[9,23,25,93,129,131,135,141,180,191,208,215,216,220,223,237,242,243,267,276],keg:[61,84],kei:[8,20,21,22,32,38,47,58,81,94,129,130,180,199,200,201,203,226,251,264,268,275,278],kept:[86,129,141],kernel:[1,7,9,14,52,56,62,94,131,135,182,212,223,226,227,240,246,247,275,276,277,278,280,282],kernel_o:223,keyboard:[12,23,131],keyboarddisplai:28,keyboardonli:28,keychain:[58,81],keystor:28,keyword:[1,62,95,131,267,269,275,276],khz:[191,256,260],kick:[98,254,255],kilobyt:97,kind:[32,135,275,276,289],kit:[8,48,62,237,241,242,257,259,276,289,290,292],klibc:102,know:[1,8,12,31,62,131,207,211,224,225,243,251,252,254,255,257,258,268,275,276,287,292],known:[22,56,101,161,162,180,243,249],kw41z:14,l13:259,l2cap:22,lab:33,label:[8,94,262,276],lack:[141,152,223],lag:253,languag:[11,12,56,97,138,275,276],laptop:[3,8,237,238,240,242,247,264,275,276],larg:[21,25,32,90,100,101,223,224,243],large_system_test:267,large_unlink_test:267,large_write_test:267,larger:[14,32,90,228],largest:[90,244],las_app_port:264,las_app_tx:264,las_join:264,las_link_chk:264,las_rd_app_eui:264,las_rd_app_kei:264,las_rd_dev_eui:264,las_rd_mib:264,las_wr_app_eui:264,las_wr_app_kei:264,las_wr_dev_eui:264,las_wr_mib:264,last:[14,21,27,73,78,90,91,98,100,129,149,180,194,202,207,215,220,226,249,253,254,255,256,264,268,276,278,280,282],last_checkin:[78,285,288],last_n_off:149,last_op:188,last_read_tim:209,latenc:28,later:[7,8,14,73,85,90,129,233,242,246,252,256,264,267,276,282,289,290],latest:[1,2,4,7,11,14,50,53,56,57,61,80,84,130,237,256,268,269,270,275,276],latex:[174,180],latter:[21,90,133,174],launch:12,launchpad:4,law:[256,275,276,282,289,290],layer:[9,21,22,90,91,96,97,135,153,163,166,174,181,194,209,210,226,240,248,276,292],layout:[97,129,175,288],lc_f:208,lc_pull_up_disc:208,lc_rate:208,lc_s_mask:208,lcheck:275,ld4:260,ldebug:[14,225],ldflag:51,ldr:262,le_elem_off:146,le_scan_interv:14,le_scan_window:14,lead:[90,93,252,276],leadingspac:90,leak:[161,162],learn:[7,27,62,237,242,257,284],least:[23,90,98,129,180,191,193,238,258,264,276,292],leav:[90,136,149,223],led1:[240,261],led2:240,led3:240,led:[1,7,14,62,94,97,100,135,182,187,238,240,243,247,256,257,258,259,260,261,262,263,268,275,276,278,285,288,292],led_blink_pin:[94,100,242,243,258],led_blink_pin_1:242,led_blink_pin_2:242,led_blink_pin_3:242,led_blink_pin_4:242,led_blink_pin_5:242,led_blink_pin_6:242,led_blink_pin_7:242,led_blink_pin_8:242,led_pin:242,left:[87,91,100,146,199,223,262,274,282,292],legaci:[31,152,226,243],len:[90,130,136,141,142,163,164,171,172,173,188,191,200,205,251,264,275],length:[21,22,28,90,94,129,130,131,141,157,158,177,180,183,199,251,264],less:[14,93,102,129,180,253,254,255],lesser:180,lesson:[243,292],let:[4,8,56,90,94,206,223,224,237,243,246,248,249,250,251,252,253,254,255,258,262,267,269,270,274,275,276,282],level:[1,2,9,14,15,19,21,24,28,30,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,92,94,132,135,136,153,174,175,182,209,225,226,236,250,251,254,255,256,260,264,267,268,270,274,275,276],level_list:73,leverag:[133,135,245,276],lflag:[1,51,62],lib:[1,4,46,54,56,83,102,131,153,181,225,226,275,276],libc6:6,libc:[7,94,102],libc_baselibc:[223,262],libftdi1:4,libftdi:4,libg:49,libgcc:[49,223],libhidapi:4,librari:[1,4,14,49,51,56,59,82,88,90,94,95,97,102,129,131,135,153,161,181,182,196,223,224,233,246,267,269,270,275,276,277],libusb:4,libusb_error_access:260,libusb_open:260,licens:[4,7,11,56,62,102,135,246,256,260,262,263,268,269,275,276,282,289,290],lieu:67,life:[25,254],light:[9,32,182,207,237,240,242,257,260,261,262,263,277,278,285,288],lightblu:[250,274,276],lightweight:152,like:[2,3,5,8,12,14,32,56,59,60,63,82,83,90,93,94,97,98,99,102,129,131,135,141,182,188,224,237,242,246,256,260,262,267,269,275,276,277,279,280,282,284,288,289,290],likewis:[63,180],limit:[3,14,21,28,30,100,102,130,136,152,216,220,223,238,249,254,275,276,289],limt:224,line:[2,6,7,12,14,37,39,40,48,63,94,102,131,187,224,231,237,242,247,253,258,260,261,269,271,275,276,277,278,282,289],linear:180,linearacc:278,lines_queu:131,link:[2,3,7,14,21,22,23,28,35,39,43,61,62,82,84,86,90,180,193,215,223,226,233,236,237,246,247,250,255,256,258,259,260,261,262,263,264,268,275,276,278,282,285,286,288,289,290,292],linker:[1,62,95,102,223,246,262],linkerscript:[62,94],linux:[5,7,9,12,57,67,79,80,136,241,247,256,258,259,260,262,263,268,278,285,286,287,288],liquid:276,lis2dh12:[208,282],lis2dh12_0:[208,282],lis2dh12_cfg:208,lis2dh12_config:208,lis2dh12_data_rate_hn_1344hz_l_5376hz:208,lis2dh12_fs_2g:208,lis2dh12_init:208,lis2dh12_onb:282,list:[3,6,7,8,12,14,23,28,30,35,36,49,51,52,54,58,60,62,67,72,73,74,76,77,78,79,81,86,88,90,91,94,95,96,100,129,131,132,135,137,180,181,193,206,215,224,226,228,231,236,237,241,242,246,249,252,253,256,257,258,259,260,261,262,263,264,269,270,275,276,280,285,286,288,292],listen:[2,14,15,31,32,67,90,207,212,223,249],listener_cb:282,lit:[238,242,243,247],littl:[6,21,24,90,129,237,242,246,253,264,270,275],live:[135,237,252,253,256,268,269,270],lma:262,lmp:21,load:[2,4,5,7,12,14,35,40,44,48,56,58,59,60,62,94,129,130,192,223,237,240,241,242,243,250,257,258,264,270,274,275,276,289,290],load_arduino_blinki:12,load_arduino_boot:12,loader:[14,44,51,94,129,131,192,256,259,260,261,263,268,278,285,286,288],loc:[142,146,151],local:[1,4,6,7,10,11,21,28,29,37,41,50,56,59,61,72,82,84,95,100,101,244,249,256,268,280],localhost:[67,282,289],locat:[1,8,11,20,32,62,90,94,129,141,146,180,188,233,243,253,258,262,268,269,275,278,285,286,288],lock:[9,89,93,99,141,207,212,240],log:[1,7,10,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,74,75,76,77,78,79,81,82,83,129,132,133,151,160,167,181,182,215,223,225,226,227,237,238,246,256,259,260,262,263,265,275,276,280,282,286,289],log_:14,log_cbm_handl:206,log_cbmem_handl:206,log_cli:[215,265],log_console_handl:[206,209],log_debug:206,log_error:209,log_fcb:226,log_fcb_handl:206,log_handl:206,log_info:209,log_init:226,log_level:[51,206,226,241,265],log_level_debug:206,log_level_error:206,log_module_bno055:209,log_module_default:206,log_nam:73,log_newmgr:225,log_newtmgr:[51,225,226,238],log_nmgr_register_group:226,log_regist:[206,209],log_shel:237,log_syslevel:[206,209],logic:[1,22,24,30,129,175,194,264,275],login:271,loglevel:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,275],logxi:82,long_filename_test:267,longer:[3,8,11,14,22,25,91,211,225,247,275,277],longjmp:235,longrange_interv:28,longrange_pass:28,longrange_window:28,look:[8,14,25,56,62,94,96,100,102,129,131,132,188,200,205,223,224,237,242,243,244,249,251,252,253,267,270,272,274,275,276,280,282,292],lookup:[212,221,251,282],loop:[14,85,88,93,100,155,156,157,162,165,226,238,243,246,258,274,275,276],lora:264,lora_app_shel:264,lora_app_shell_telee02:264,lora_app_shell_telee0:264,lora_mac_timer_num:264,lose:27,loss:[27,30,183],lost:[98,180],lost_found_test:267,lot:[7,14,223,225,249,267,276],low:[9,14,21,22,23,32,87,90,94,99,136,153,182,187,191,192,209,243,251,254,255,256,257,260,268,292],lower:[14,21,87,92,93,99,100,225,226,241,243,248,258,262],lowest:[74,86,91,100,180,226,243],lowpow:278,lru:180,lrwxr:[4,82],lsb:188,lst:[35,56,62],ltbase:226,ltd:28,ltk:28,ltk_sc:28,ltrequir:226,lua:[138,139,140],lua_cmd:140,luckili:275,m32:6,m4g:278,mac:[3,5,7,9,12,14,21,56,57,79,80,237,241,242,247,250,256,258,259,260,262,263,264,268,274,276,278,285,286,287,288],machin:[2,3,7,8,95,247,292],maco:[4,14,67],macro:[14,21,90,91,94,98,200,207,209,224,226,233,243,253,267,276],made:[2,10,11,21,56,72,100,129,188,243,244,264,276],mag:278,mag_rev:278,maggyro:278,magic:[62,129,141,180],magnet:[207,278],magnetomet:209,mai:[2,4,6,7,8,12,14,23,28,30,31,32,52,54,58,59,63,81,82,83,86,88,90,91,93,94,97,102,129,131,133,135,162,180,182,187,188,193,206,207,208,209,211,212,223,224,225,226,228,231,233,238,243,246,247,256,258,259,260,261,262,263,264,268,269,275,276,278,282,285,288,289],mail:[3,10,135,236,237,242,246,257,276,292],main:[7,12,27,32,58,62,78,81,88,90,93,96,100,129,131,139,177,178,198,207,212,215,217,222,226,232,234,238,240,242,246,249,254,255,256,259,260,261,262,263,267,274,275,276,278,285,286,288],mainli:223,maintain:[4,50,86,129,135,180,207,212,226,267,269,270],mainten:[133,224],major:[14,56,62,97,198,243,255,269,270],major_num:[269,270],make:[1,2,3,7,8,9,14,20,21,22,25,31,32,34,56,58,64,72,86,90,91,94,129,135,141,142,174,180,182,199,206,223,224,237,241,242,243,245,246,247,249,251,252,254,255,256,258,262,264,267,269,274,275,276,277,282,292],makerbeacon:238,malloc:[89,91,94,102,243,276],man:[6,28,102],manag:[6,8,14,17,18,22,28,32,40,46,58,59,60,62,65,67,69,72,73,74,77,78,81,82,83,88,91,93,94,95,97,100,129,131,135,182,197,200,207,209,210,211,223,226,227,241,258,259,265,268,270,278,282,285,287,288,292],mandatori:[21,94,228,253,254,255],mani:[14,21,32,56,62,90,96,129,141,149,161,162,182,193,251,256,269],manifest:[35,38,44,56,62,237,238,242,275],manipul:[1,40,46,90],manner:[28,30,90,93,129,182],manual:[22,26,61,84,91,93,100,102,174,223,231,237,256,262,282,288,289,290],manufactur:[20,28,30,40,44,58,59,60,67,223,249,256,268],many_children_test:267,map:[2,3,8,21,28,29,62,97,135,136,161,182,186,187,194,200,223,225,226,251,258,268,269,270,278,285,288,289],mar:[101,259,261,264,276,282],march:69,mark:[28,29,72,94,262],marker:94,market:[32,261],mask:[28,207,209,211,212,280,282],mass:[247,260],mass_eras:[259,260],master:[1,7,11,28,57,58,60,61,80,81,83,84,135,182,184,188,191,244,256,268,269,270],match:[2,7,14,21,94,95,97,129,211,212,223,256,260,268,269,270],materi:14,matter:10,max:[157,199,200],max_cbmem_buf:206,max_conn_event_len:28,max_ev:28,max_len:[157,163,183],max_protohdr:90,maxim:9,maximum:[14,22,28,30,90,129,130,131,174,176,180,183,199,215,216,220,267,289],maxlen:130,mayb:[289,290],mb_crc:275,mb_crc_check:275,mb_crc_tbl:275,mbed:[259,263],mbedtl:[7,256,259,261,263,268,285,286,288],mblehciproj:247,mblen:90,mbuf:[93,200,279],mbuf_buf_s:90,mbuf_memblock_overhead:90,mbuf_memblock_s:90,mbuf_mempool_s:90,mbuf_num_mbuf:90,mbuf_payload_s:90,mbuf_pkthdr_overhead:90,mbuf_pool:90,mbuf_usage_example1:90,mbuf_usage_example2:90,mcu:[7,9,54,95,98,135,136,182,187,190,191,192,193,194,196,237,242,243,256,259,268,282],mcu_dcdc_en:14,mcu_gpio_porta:136,mcu_sim_parse_arg:[258,282],mcuboot:14,mdw:262,mean:[2,12,14,21,90,92,98,99,100,101,129,136,176,191,202,204,226,235,253,260,270,275,276],meaning:[139,194],meant:[1,98,130],measur:[9,243,264],mechan:[1,23,93,223,226,240,269,271,275,276],medic:[22,56],medium:[14,168],meet:[208,241,247,256,257,259,260,261,262,263,278,280,281,282,284,285,286,287,288],mem:[7,226],member:[85,88,90,91,92,98,99,100,101,130,131,188,191,193,249,251],membuf:91,memcmp:90,memcpi:251,memori:[9,21,49,74,88,89,90,93,94,97,98,102,129,133,135,136,152,168,174,175,179,180,182,183,185,188,216,220,225,238,240,243,251,262,264,265,286,289],mempool:[65,81,82,83,90,91,215,275],memset:[208,249,252,255,276],mention:[12,180,207,276],menu:[12,60,260,262,288],merchant:4,merci:91,merg:244,mesh:33,messag:[2,4,23,32,43,58,59,60,76,131,133,134,167,215,218,219,228,240,256,260,264,268,275],messi:276,messsag:63,met:[21,238,240,268],meta:[8,268,278],metadata:[14,44,129,168],meter:22,method:[26,90,100,134,174,184,187,191,206,215,224,251,269],mfg:[7,14,40,58,59,60,71,226],mfg_data:30,mfg_init:226,mgmt:[7,131,133,191,197,215,225,226,238,275,276],mgmt_evq_set:238,mgmt_group_id_config:132,mgmt_group_id_crash:132,mgmt_group_id_default:132,mgmt_group_id_imag:132,mgmt_group_id_log:132,mgmt_group_id_runtest:132,mgmt_group_id_stat:132,mgmt_imgmgr:223,mgmt_newtmgr_nmgr_o:223,mgutz:82,mhz:[22,25],mib:[56,82,264],mic:21,micro:[14,56,241,243,256,257,259,261,262,264,268,276,278,284,285,287,288,289,290],microcontrol:[9,102,129,262,288],microsecond:[25,87,101],microsoft:12,mid:[15,129,260],middl:[28,129,180,276],might:[1,2,14,19,21,62,94,97,130,131,135,180,182,188,209,223,225,246,248,249,254,255,256,260,269,270,272,282,289,290],migrat:[180,226],milisecond:28,millisecond:[28,101,264],millivolt:276,min:[73,74,129,268,286],min_conn_event_len:28,mind:[98,246],mingw32:60,mingw64:60,mingw:[4,7,8,12,57,83,258,268,278,285,288],mini:260,minicom:[8,258,268,275,278],minim:[94,135,152,153,174,180,209,246],minimum:[28,30,73,90,91,129,180,246],minor:[198,255,269,270],minor_num:[269,270],minu:90,minut:[82,101,254,267],mip:[7,62],mirror:[1,10,11,269,275,276],misc:278,mislead:6,mismatch:[21,90],miso:191,miso_pin:[136,137],miss:[21,58,94,225,237,242,246,257,276],misspel:225,mitm:28,mk64f12:[135,182],mkdir:[11,44,81,83,94,237,256,259,260,261,262,263,264,268,269,275,276],mkdir_test:267,mkdoc:244,mkr1000:266,mkr1000_boot:268,mkr1000_wifi:268,mlme:264,mman:58,mmc0:[137,153],mmc:152,mmc_addr_error:137,mmc_card_error:137,mmc_crc_error:137,mmc_device_error:137,mmc_erase_error:137,mmc_init:137,mmc_invalid_command:137,mmc_ok:137,mmc_op:[137,153],mmc_param_error:137,mmc_read_error:137,mmc_response_error:137,mmc_timeout:137,mmc_voltage_error:137,mmc_write_error:137,mn_socket:7,mobil:32,mod:[31,250],modbu:275,mode:[9,14,21,23,28,30,135,159,161,168,169,171,182,183,187,191,194,209,223,249,256,260,262,267,278],model:[14,22,23,33,88,196,259],modern:[8,152],modif:[11,237,267,277],modifi:[6,63,90,94,101,134,193,242,243,275,276,281,284],modul:[73,87,91,93,102,133,138,206,216,220,222,258,264,288],module_list:73,module_nam:[220,222],modulo:101,moment:[14,136,188,196,251,270],mon:[256,259,260],monitor:[90,131,133,141,213,224,262,277,284,292],monolith:253,month:267,more:[1,4,7,9,10,12,14,21,22,23,30,31,35,36,40,44,52,54,58,59,60,62,63,65,81,82,83,86,88,90,93,94,99,100,101,102,129,130,135,142,146,153,164,165,180,191,194,200,206,207,208,209,210,215,223,226,228,241,242,243,246,249,253,254,255,256,258,259,264,267,268,270,274,275,276,278,282,285,288,289,292],mosi:191,mosi_pin:[136,137],most:[1,8,14,15,20,22,24,25,26,62,90,94,95,100,102,129,180,184,191,223,225,243,249,267,274,275,276,278,280,282],mostli:[6,9,223,254,255],motor:9,mou:244,mount:[166,276],mous:[135,182],move:[8,46,58,59,60,82,93,101,129,167,183,223,258,262,276,277,279,282],mp_block_siz:91,mp_flag:91,mp_membuf_addr:91,mp_min_fre:91,mp_num_block:91,mp_num_fre:91,mpe:91,mpool:[220,264],mpstat:[65,79,81,82,83,132,134,238,286],mq_ev:90,mqeueue:90,msb:188,msdo:94,msec:[14,28,195],msg:231,msg_data:28,msp:[256,262],msy:60,msys2:57,msys2_path_typ:60,msys64:60,msys_1:[74,286],msys_1_block_count:[277,279],msys_1_block_s:[277,279],mtd:136,mtu:[14,21,28,29,250],mu_level:92,mu_own:92,mu_prio:92,much:[14,90,94,99,102,147,180,275],multi:[1,9,51,63,97,100,188],multilib:[6,7,58],multipl:[4,14,24,28,30,35,36,51,52,56,85,92,93,98,102,130,133,135,182,191,212,226,249,253,254,269],multiplex:[14,22],multiplexor:97,multipli:[91,243],multitask:[93,243],must:[1,2,4,5,7,8,9,11,12,15,23,25,26,34,38,42,47,54,56,58,60,62,64,67,69,72,81,87,88,90,91,93,94,97,98,100,129,130,131,137,141,149,153,160,161,163,167,174,175,176,177,179,180,181,188,191,193,194,198,199,200,206,207,208,209,211,212,213,215,216,217,220,224,225,226,234,237,238,241,243,246,249,251,258,261,262,264,268,269,270,275,276,278,279,280,281,282,285,288,289],mutex:[89,93,99,100],mutual:92,my_at45db_dev:136,my_blinki:51,my_blinky_sim:[7,35,36,44,56,62,246,247,259,260,275],my_blocking_enc_proc:21,my_callout:240,my_conf:130,my_config_nam:226,my_driv:[275,276],my_ev_cb:240,my_eventq:238,my_gpio_irq:240,my_interrupt_ev_cb:240,my_memory_buff:91,my_new_target:51,my_newt_target:51,my_packag:206,my_package_log:206,my_pool:91,my_proj1:246,my_proj:246,my_project:[1,256,268,269,276],my_protocol_head:90,my_protocol_typ:90,my_result_mv:276,my_sensor:282,my_sensor_devic:282,my_sensor_poll_tim:282,my_stack_s:100,my_stat:224,my_stat_sect:224,my_target1:63,my_task:100,my_task_evq:90,my_task_func:100,my_task_handl:90,my_task_pri:100,my_task_prio:100,my_task_rx_data_func:90,my_task_stack:100,my_timer_ev_cb:240,my_timer_interrupt_eventq:240,my_timer_interrupt_task:240,my_timer_interrupt_task_prio:240,my_timer_interrupt_task_stack:240,my_timer_interrupt_task_stack_sz:240,my_timer_interrupt_task_str:240,my_uart:194,myadc:276,myapp1:289,myapp:224,myapp_cmd:221,myapp_cmd_handl:221,myapp_console_buf:131,myapp_console_ev:131,myapp_init:131,myapp_process_input:131,myapp_shell_init:221,mybl:[35,36,47,51,67,74,77,78,238],myble2:[38,39,247],myblehostd:67,mybleprph:[67,241],mybletyp:67,myboard:[46,94],myboard_debug:94,myboard_download:94,mycmd:222,myconn:238,mycor:72,mydata:90,mydata_length:90,mylora:264,mymcu:96,mymfg:71,mymodul:98,mymodule_has_buff:98,mymodule_perform_sanity_check:98,mymodule_register_sanity_check:98,mynewt:[1,3,4,5,6,10,11,13,21,22,26,31,33,38,39,40,44,45,51,52,54,56,57,58,60,61,62,63,72,79,80,81,83,84,85,87,88,89,98,99,100,101,102,129,133,134,135,152,153,174,181,182,183,184,187,188,191,194,206,209,215,217,223,224,225,226,227,233,236,237,238,240,241,243,245,247,248,250,254,255,256,257,258,259,260,261,262,263,264,265,267,268,270,274,275,276,278,281,282,285,286,287,288,289,290,292],mynewt_0_8_0_b2_tag:[269,270],mynewt_0_8_0_tag:269,mynewt_0_9_0_tag:269,mynewt_1_0_0_b1_tag:269,mynewt_1_0_0_b2_tag:269,mynewt_1_0_0_rc1_tag:269,mynewt_1_0_0_tag:269,mynewt_1_3_0_tag:[58,60,81,83],mynewt_arduino_zero:[256,268,269],mynewt_nord:276,mynewt_stm32f3:237,mynewt_v:[215,220,224,226,267,276],mynewt_val_:226,mynewt_val_log_level:226,mynewt_val_log_newtmgr:226,mynewt_val_msys_1_block_count:226,mynewt_val_msys_1_block_s:226,mynewt_val_my_config_nam:226,mynewtl:277,mynewtsan:76,myperiph:[241,250],mypool:91,myproj2:223,myproj:[2,7,12,94,237,241,242,256,258,259,260,261,262,263,269,275,277,278,282,290],myriad:9,myself:14,myseri:[74,77,78],myserial01:67,myserial02:67,myserial03:67,mytask:243,mytask_handl:243,mytask_prio:243,mytask_stack:243,mytask_stack_s:243,myudp5683:67,myvar:66,n_sampl:278,nad_flash_id:175,nad_length:175,nad_offset:175,nak:188,name1:51,name2:51,name:[1,2,4,7,8,10,11,12,14,21,22,28,30,35,36,38,39,43,44,45,46,48,49,51,52,54,56,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,91,94,95,96,98,100,101,102,130,131,135,153,155,156,157,160,161,162,165,181,182,187,199,200,201,203,205,206,207,208,209,210,212,216,220,221,222,223,225,229,230,232,237,238,240,243,246,249,251,253,254,255,256,258,259,260,261,262,263,267,268,269,270,271,275,276,277,278,279,282,285,286,288,289],name_is_complet:249,name_len:[155,156,157,162,165,249],namespac:[89,215,254],nano2:[44,54,94,263],nano2_debug:[94,263],nano:[257,292],nanosecond:[87,193],nativ:[2,3,7,12,44,51,54,56,60,62,67,130,191,225,226,237,240,247,259,260,268,275,276,286,292],natur:[94,180],navig:[10,292],nb_data_len:180,nb_hash_entri:180,nb_inode_entri:180,nb_prev:180,nb_seq:180,nbuf:90,nc_num_block:176,nc_num_cache_block:176,nc_num_cache_inod:176,nc_num_fil:176,nc_num_inod:176,ncb_block:180,ncb_file_offset:180,ncb_link:180,ncheck:275,nci_block_list:180,nci_file_s:180,nci_inod:180,nci_link:180,nda_gc_seq:180,nda_id:180,nda_length:180,nda_mag:180,nda_ver:180,ndb_crc16:180,ndb_data_len:180,ndb_id:180,ndb_inode_id:180,ndb_magic:180,ndb_prev_id:180,ndb_seq:180,ndi_crc16:180,ndi_filename_len:180,ndi_id:180,ndi_mag:180,ndi_parent_id:180,ndi_seq:180,nding:253,ndof:278,ndof_fmc_off:278,nearest:259,nearli:14,neatli:249,necessari:[6,25,40,48,58,59,60,90,129,153,180,235,237,246,251,256,264,267,276],need:[4,5,6,7,8,9,10,11,12,14,15,24,25,33,44,51,53,56,58,59,60,61,62,65,67,81,82,84,85,89,90,91,92,93,94,96,97,98,99,100,129,131,136,141,142,143,153,180,192,195,206,207,209,210,211,212,215,221,223,224,225,226,231,238,240,241,243,246,247,249,251,252,253,254,255,256,258,259,260,261,262,263,267,268,270,271,274,277,279,282,285,286,288],neg:[90,101,180,253],neither:90,ness:191,nest:[92,160],net:[4,7,14,25,52,213,226,246,247,251,253,268,275,276,277,279,281],net_nimble_control:223,net_nimble_host:223,network:[1,9,14,24,28,32,33,56,90,93,223,243,264,268],never:[20,93,98,100,167,180,226,243,246,251],nevq:88,new_bletini:46,new_pool:90,new_slinki:46,newer:6,newest:[141,225,243],newli:[1,10,20,44,129,161,247,254,255,269],newlib:102,newlin:131,newt:[1,3,5,6,7,13,33,57,62,63,74,77,78,81,82,83,84,93,94,95,97,135,223,224,225,226,233,237,239,240,241,242,243,245,246,247,250,254,255,256,257,258,259,260,261,262,263,264,265,267,268,269,270,271,272,275,276,277,278,279,280,282,284,285,286,287,288,289,290,292],newt_1:[58,61],newt_1_1_0_windows_amd64:61,newt_1_3_0_windows_amd64:60,newt_group:2,newt_host:2,newt_us:2,newtgmr:[82,83,84],newtmgr:[1,7,9,13,58,59,60,64,65,79,80,131,132,134,196,206,218,219,223,225,226,240,275,276,287,292],newtmgr_1:[81,84],newtmgr_1_1_0_windows_amd64:84,newtmgr_1_3_0_windows_amd64:83,newtmgr_shel:215,newtron:[153,181,225,226],newtvm:11,next:[7,8,25,31,72,78,83,86,90,91,100,129,131,133,141,146,155,156,157,162,165,180,196,200,207,211,212,223,226,235,241,242,243,244,246,249,253,254,255,256,259,262,270,274,275,276],next_checkin:[78,285,288],nff:[7,102,136,153,175,176,177,178,179,181,189,225,226,233,267],nffs_area_desc:[14,174,177,178,228],nffs_area_mag:180,nffs_area_max:[177,178],nffs_block:180,nffs_block_cache_entri:180,nffs_block_cache_list:180,nffs_block_mag:180,nffs_cache_block:180,nffs_cache_block_list:180,nffs_cache_inod:180,nffs_close:181,nffs_closedir:181,nffs_detect:[178,180],nffs_detect_fail:[153,174],nffs_dirent_is_dir:181,nffs_dirent_nam:181,nffs_disk_area:180,nffs_disk_block:180,nffs_disk_inod:180,nffs_file_len:181,nffs_flash:189,nffs_flash_area:[14,225,226],nffs_format:[177,180,228],nffs_getpo:181,nffs_hash_entri:180,nffs_id_non:180,nffs_init:[176,177,178,181],nffs_inod:180,nffs_inode_entri:180,nffs_inode_list:180,nffs_inode_mag:180,nffs_intern:174,nffs_mkdir:181,nffs_op:181,nffs_open:181,nffs_opendir:181,nffs_pkg_init:14,nffs_read:181,nffs_readdir:181,nffs_renam:181,nffs_seek:181,nffs_short_filename_len:180,nffs_test:267,nffs_test_debug:267,nffs_test_priv:267,nffs_test_system_01:267,nffs_test_unlink:228,nffs_test_util:267,nffs_unlink:181,nffs_write:181,nhe_flash_loc:180,nhe_id:180,nhe_next:180,ni_filenam:180,ni_filename_len:180,ni_inode_entri:180,ni_par:180,ni_seq:180,nice:[224,274],nie_child_list:180,nie_hash_entri:180,nie_last_block_entri:180,nie_refcnt:180,nie_sibling_next:180,nil:68,nim:253,nimbl:[7,24,25,27,30,67,226,238,241,245,248,249,250,251,252,253,275,276,277,279],nimble_max_connect:14,njb:[201,202,203,204,205],njb_buf:205,njb_enc:203,nlip:218,nmgr:134,nmgr_def_taskstat_read:203,nmgr_err_eok:203,nmgr_jbuf:[201,202,203,204,205],nmgr_o:132,nmgr_shell:[131,226,238],nmgr_shell_in:218,nmgr_shell_out:219,nmgr_shell_pkg_init:226,nmgr_task_init:218,nmgr_transport:219,nmgr_uart:238,nmgr_urart_spe:238,nmxact:11,no_of_sampl:278,no_rsp:29,no_wl:[28,31],no_wl_inita:28,node:[14,22,33,56,155,156,157,162,165,180],nodefault:[200,205],nodup:28,nogdb:[39,48],noinputnooutput:28,non:[7,14,19,20,22,25,28,32,33,85,90,91,100,101,130,145,149,151,180,183,187,188,191,192,193,194,216,218,219,220,223,226,254,255,264,269,282],none:[4,7,8,12,21,28,31,83,88,94,102,129,180,217,221,222,223,228,231,237,256,260,264,276,282,289,290],nonexist:[161,180],nonsens:267,nonzero:[90,142,143,144,146,147,150,151,191,229,230,232,234,235,252,267],nor:23,nordic:[14,24,94,135,182,186,190,192,240,241,259,261,275,276,278,282,287,292],nordicsemi:[259,261,264,276,282],normal:[2,99,180,231,233,274,278],notat:[56,262],note:[1,2,4,6,7,10,11,12,22,23,24,25,30,33,44,48,51,58,59,60,61,62,67,69,72,81,82,83,84,86,87,88,90,91,92,93,94,95,100,129,130,131,137,174,188,191,193,196,207,208,209,210,212,215,216,220,223,225,226,237,238,241,243,244,246,247,249,251,253,254,255,256,258,259,260,261,262,263,264,265,268,269,270,271,275,277,278,279,280,282,284,285,286,288,289,292],noth:[11,180,228,254,255,275,276],notic:[7,11,56,62,93,94,181,223,243,246,270,274,275,276],notif:[10,14,28,29,88,131,211,248,274],notifi:[10,29,211,252,253],notnul:226,nov:8,novelbit:14,now:[2,8,9,14,60,87,90,91,92,94,99,100,129,152,154,158,161,164,167,169,171,180,187,194,223,237,238,241,242,243,246,248,249,250,252,253,254,255,256,259,264,267,269,274,275,276,278,282,286,289,290],nreset:256,nrf51:[25,54,94,135,182,265],nrf51dk:[54,223],nrf51xxx:190,nrf52840pdk:33,nrf52:[4,25,62,94,135,182,186,192,208,240,241,247,257,258,259,264,275,277,279,282,287,289,290,292],nrf52_adc_dev_init:276,nrf52_bleprph_oic_bno055:277,nrf52_blinki:[258,261,263,289],nrf52_bno055_oic_test:[277,279],nrf52_bno055_test:[278,280],nrf52_boot:[238,247,261,276,277,278,279,285],nrf52_hal:94,nrf52_slinki:285,nrf52_thingi:208,nrf52dk:[38,39,54,62,63,94,226,240,246,247,250,258,261,276,277,278,279,285],nrf52dk_debug:[62,94,258],nrf52dk_download:94,nrf52k_flash_dev:[94,186],nrf52pdk:247,nrf52serial:285,nrf52xxx:[49,94,192,259,282],nrf5x:25,nrf:[26,276],nrf_drv_saadc:276,nrf_drv_saadc_config_t:276,nrf_drv_saadc_default_channel_config_s:276,nrf_drv_saadc_default_config:276,nrf_saadc_channel_config_t:276,nrf_saadc_gain1_6:276,nrf_saadc_input_ain1:276,nrf_saadc_reference_intern:276,nrf_saadc_typ:276,nrpa:[20,254,255],nsampl:278,nsec:87,nth:180,ntoh:90,ntohl:90,ntrst:256,nucleo:54,nul:180,num_block:91,num_byt:185,number:[1,8,9,10,14,23,28,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,84,85,87,88,90,91,92,93,94,99,100,101,102,129,130,140,141,142,152,158,164,169,171,172,173,174,175,176,180,183,187,188,190,191,193,194,196,198,199,200,207,215,216,220,224,225,226,231,238,240,241,243,247,253,254,255,256,258,262,264,268,269,270,274,275,276,278,279,285,288,289],numer:[14,21,23,86,94,129],nvm:256,nxp:[14,135,182],objcopi:[6,14],objdump:6,object:[4,11,49,56,62,82,87,93,94,97,100,133,167,200,202,203,204,209,211,212,252,267,278,281],objsiz:[6,49,223],observ:[15,28,213,247,281],obtain:[14,28,90,92,99,100,180,193,269,275,276],obvious:54,oc_add_devic:277,oc_add_resourc:277,oc_app_resourc:[277,279],oc_get:277,oc_if_rw:277,oc_init_platform:277,oc_main_init:[213,277],oc_new_resourc:277,oc_put:277,oc_resource_bind_resource_interfac:277,oc_resource_bind_resource_typ:277,oc_resource_set_default_interfac:277,oc_resource_set_discover:277,oc_resource_set_periodic_observ:277,oc_resource_set_request_handl:277,oc_serv:[213,238,277,279,281],oc_transport_gatt:238,oc_transport_ip:238,oc_transport_seri:238,occasion:90,occur:[27,28,90,92,101,187,188,191,225,251,252,254,255],occurr:226,ocf:133,ocf_sampl:[7,62],ocimgr:132,ock:212,oct:275,octet:[28,30,32,129],od_init:135,od_nam:209,odd:194,odditi:14,off:[2,14,21,22,32,33,85,88,90,97,98,100,131,135,141,182,183,188,205,207,209,210,214,238,240,241,242,246,247,254,255,258,262,277,279,280,281,282,284,292],off_attr:205,offer:[1,22,133,135,152,185,276],offset1:90,offset2:90,offset:[21,29,72,90,94,101,129,141,149,153,159,163,168,169,171,172,173,175,180,200,223,225,226,278],often:[9,56,94,180,188,191],ohm:276,oic:[7,52,67,133,210,211,282,292],oic_bhd:67,oic_bl:67,oic_seri:67,oic_udp:67,oic_udpconnstr:67,oicmgr:[7,67,132,133,134],okai:14,old:[46,141],older:[14,60,83,260],oldest:[141,146,150,225],olimex:[257,275,287,292],olimex_blinki:262,olimex_stm32:[54,262,288],om1:90,om2:90,om_data:90,om_databuf:90,om_flag:90,om_len:90,om_omp:90,om_pkthdr_len:90,ome:91,omgr:134,omi_block_s:91,omi_min_fre:91,omi_nam:91,omi_num_block:91,omi_num_fre:91,omit:[14,48,225],omp:90,omp_databuf_len:90,omp_flag:90,omp_len:90,omp_next:90,omp_pool:90,on_reset:27,on_sync:27,onboard:[209,210,280,284,289,290,292],onc:[20,30,56,58,62,81,85,87,90,91,92,93,100,129,144,182,191,193,235,237,238,241,242,249,254,257,258,264,269,275,276],one:[1,4,7,8,10,11,12,14,20,21,22,23,24,28,30,31,32,35,36,40,44,46,51,52,54,58,59,60,62,68,86,88,90,92,93,94,97,99,100,129,130,131,137,138,141,153,166,167,174,175,177,178,180,183,188,191,196,206,207,211,212,221,223,224,225,226,242,243,244,246,247,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,271,274,275,276,278,284,285,288,292],ones:[15,90,99,135,182,206,247,292],ongo:28,onli:[1,2,7,8,10,11,12,14,15,20,21,25,28,30,32,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,62,63,67,73,81,84,87,88,90,91,93,94,97,98,99,129,130,131,132,135,136,137,139,151,153,155,156,157,159,162,165,166,168,169,174,175,180,188,191,196,206,207,209,210,212,215,220,223,224,225,226,230,231,233,234,236,238,241,242,243,244,249,251,254,256,258,264,265,267,268,269,270,271,275,276,277,278,281,282,286],onlin:[256,282,289,290],onto:[1,21,43,44,48,85,88,90,94,257,259,260,261,262,263,274,275,278,285,288],oob:[14,21,28,30],opaqu:[153,193,206,207,209,211,282],open:[4,8,9,10,12,14,21,22,39,40,48,56,58,59,60,62,97,133,135,153,154,158,159,161,162,164,165,168,169,170,171,172,173,176,180,208,254,256,259,260,262,263,267,275,280,286],open_test:267,openocd:[12,94,256,259,260,262,263,288],openocd_debug:[259,275],oper:[1,9,12,16,19,21,22,27,32,40,58,59,60,85,90,97,98,99,100,101,131,133,135,153,161,162,163,168,170,174,175,179,180,181,182,183,185,187,194,207,212,224,226,227,236,246,247,251,252,253,254,255,256,264,267,268,270,271,274,275,278,282],oppos:[32,90,271],opt:4,optim:[1,25,33,38,39,44,51,62,90,94,95,102,135,223,237,243,246,247,250,256,259,260,261,262,263,264,268,275,276,278,282,285,288],optimis:32,option:[2,3,4,6,7,8,12,14,23,24,28,37,38,47,52,56,63,67,73,85,88,91,94,129,133,135,151,152,198,207,209,210,215,223,225,226,228,233,244,246,247,253,256,260,262,264,268,269,270,275,276,278,288],orang:[259,263],order:[1,8,9,14,23,34,56,62,64,86,88,90,91,92,98,100,102,129,130,133,180,191,207,225,226,238,242,243,264,267,270,272,275,276,282,289,290],org:[1,4,10,11,14,40,58,59,60,62,81,83,102,131,138,254,256,259,260,262,263,267,275,276,282,289,290],organ:[11,135,224,267,269],origin:[11,47,94,129,262,275],os_align:[90,91],os_arch:[62,91,101],os_bad_mutex:92,os_bsp_adc0:276,os_bsp_adc0_config:276,os_callout:[62,85,98,130,240,258,282],os_callout_f_queu:85,os_callout_func:[85,90],os_callout_func_init:85,os_callout_init:[85,98,240,258,282],os_callout_queu:85,os_callout_remaining_tick:85,os_callout_reset:[85,98,240,258,282],os_callout_stop:85,os_cfg:62,os_cli:226,os_cputim:[14,62],os_cputime_delay_nsec:87,os_cputime_delay_tick:87,os_cputime_delay_usec:87,os_cputime_freq:25,os_cputime_freq_pwr2:87,os_cputime_get32:87,os_cputime_init:87,os_cputime_nsecs_to_tick:87,os_cputime_ticks_to_nsec:87,os_cputime_ticks_to_usec:87,os_cputime_timer_init:87,os_cputime_timer_num:[25,87],os_cputime_timer_rel:87,os_cputime_timer_start:87,os_cputime_timer_stop:87,os_cputime_usecs_to_tick:87,os_dev:[62,135,207,208,209,276,280],os_dev_clos:[208,280],os_dev_cr:[135,207,208,209,212,276],os_dev_init_func_t:[135,209],os_dev_init_kernel:276,os_dev_init_primari:208,os_dev_init_prio_default:276,os_dev_open:[208,276,280],os_einv:[90,101,205],os_eno:130,os_error_t:[91,92,99],os_ev:[85,88,90,98,130,131,240,258,282],os_event_fn:[85,88,90],os_event_queu:88,os_event_t_mqueue_data:90,os_event_t_tim:85,os_eventq:[62,85,88,90,98,131,217,240,274,275,276],os_eventq_dflt_get:[27,88,93,100,131,226,240,254,255,258,280,282],os_eventq_dflt_set:275,os_eventq_get:[88,98],os_eventq_get_no_wait:88,os_eventq_init:[88,90,98,131,240,274,275],os_eventq_pol:88,os_eventq_put:[88,131,240],os_eventq_remov:88,os_eventq_run:[27,88,90,93,100,226,240,254,255,258,275,280,282],os_fault:62,os_get_uptim:101,os_get_uptime_usec:101,os_gettimeofdai:101,os_heap:62,os_init:[87,100],os_invalid_parm:[92,99],os_main_task_prio:[226,243],os_main_task_stack_s:226,os_malloc:[62,89],os_mbuf:[62,90,218,219],os_mbuf_adj:90,os_mbuf_append:[90,274,276],os_mbuf_appendfrom:90,os_mbuf_cmpf:90,os_mbuf_cmpm:90,os_mbuf_concat:90,os_mbuf_copydata:90,os_mbuf_copyinto:90,os_mbuf_count:90,os_mbuf_data:90,os_mbuf_dup:90,os_mbuf_extend:90,os_mbuf_f_:90,os_mbuf_f_mask:90,os_mbuf_fre:90,os_mbuf_free_chain:90,os_mbuf_get:90,os_mbuf_get_pkthdr:90,os_mbuf_is_pkthdr:90,os_mbuf_leadingspac:90,os_mbuf_off:90,os_mbuf_pkthdr:90,os_mbuf_pkthdr_to_mbuf:90,os_mbuf_pktlen:90,os_mbuf_pool:90,os_mbuf_pool_init:90,os_mbuf_prepend:90,os_mbuf_prepend_pullup:90,os_mbuf_pullup:90,os_mbuf_trailingspac:90,os_mbuf_trim_front:90,os_mbuf_usrhdr:90,os_mbuf_usrhdr_len:90,os_memblock:91,os_memblock_from:91,os_memblock_get:91,os_memblock_put:91,os_memblock_put_from_cb:91,os_membuf_t:[90,91],os_mempool:[62,90,91],os_mempool_byt:91,os_mempool_clear:91,os_mempool_ext:91,os_mempool_ext_init:91,os_mempool_f_:91,os_mempool_f_ext:91,os_mempool_info:91,os_mempool_info_get_next:91,os_mempool_info_name_len:91,os_mempool_init:[90,91],os_mempool_is_san:91,os_mempool_put_fn:91,os_mempool_s:[90,91],os_mqueu:90,os_mqueue_get:90,os_mqueue_init:90,os_mqueue_put:90,os_msys_count:90,os_msys_get:90,os_msys_get_pkthdr:90,os_msys_num_fre:90,os_msys_regist:90,os_msys_reset:90,os_mutex:[62,92,141,207],os_mutex_init:92,os_mutex_pend:92,os_mutex_releas:92,os_ok:[92,99],os_pkg_init:226,os_san:[62,98],os_sanity_check:[98,100],os_sanity_check_func_t:98,os_sanity_check_init:98,os_sanity_check_regist:98,os_sanity_check_reset:98,os_sanity_check_setfunc:98,os_sanity_task_checkin:98,os_sch:62,os_sched_get_current_t:243,os_sched_get_current_task:[86,98,243],os_sem:[62,93,99,275],os_sem_get_count:99,os_sem_init:[14,93,99,275],os_sem_pend:[14,93,99,275],os_sem_releas:[14,93,99,275],os_sem_test_bas:232,os_sem_test_case_1:232,os_sem_test_case_2:232,os_sem_test_case_3:232,os_sem_test_case_4:232,os_sem_test_suit:232,os_settimeofdai:101,os_stack_align:[243,274,275,276],os_stack_t:[98,100,218,240,243,274,275,276],os_start:100,os_stime_t:101,os_sysview:290,os_task:[62,86,88,92,93,98,100,240,243,274,275,276],os_task_count:100,os_task_flag_evq_wait:100,os_task_flag_mutex_wait:100,os_task_flag_no_timeout:100,os_task_flag_sem_wait:100,os_task_func_t:[98,100],os_task_info:100,os_task_info_get_next:100,os_task_init:[93,98,100,240,243,274,275],os_task_max_name_len:100,os_task_pri_highest:100,os_task_pri_lowest:100,os_task_readi:100,os_task_remov:100,os_task_sleep:100,os_task_st:100,os_task_stack_defin:100,os_task_state_t:100,os_test:62,os_test_restart:235,os_tick_idl:[190,256,259,282],os_tick_init:190,os_tick_per_sec:14,os_ticks_per_sec:[14,85,98,101,130,190,209,240,243,258,274,275,276,282],os_tim:[62,101,267],os_time_adv:101,os_time_delai:[14,100,101,209,240,242,243,274,276],os_time_get:101,os_time_max:101,os_time_ms_to_tick:101,os_time_t:[85,88,98,100,101,190,207,209],os_time_tick_geq:101,os_time_tick_gt:101,os_time_tick_lt:101,os_time_ticks_to_m:101,os_timeout:[92,99,275],os_timeout_nev:[93,101,208,280,282],os_timeradd:101,os_timersub:101,os_timev:[101,267],os_timezon:[101,267],os_wait_forev:[88,93,100,240,243,274,275],osmalloc:89,ostask:100,ostick:101,osx:[237,242],ota:238,otg1:262,otg2:[262,288],other:[1,6,10,11,14,21,23,25,30,32,51,56,62,87,88,90,91,93,94,95,98,99,100,101,129,130,131,135,153,154,162,165,170,174,175,177,180,185,188,206,209,211,215,223,224,226,237,240,243,246,247,248,249,251,252,256,257,258,259,265,267,269,274,276,277,278,279,282,284,289,290],otherwis:[14,90,91,93,100,143,145,148,187,191,269,270],oti:100,oti_cswcnt:100,oti_last_checkin:100,oti_nam:100,oti_next_checkin:100,oti_prio:100,oti_runtim:100,oti_st:100,oti_stks:100,oti_stkusag:100,oti_taskid:100,oui:[20,264],our:[14,21,56,90,94,223,224,237,238,242,243,246,249,254,255,257,258,267,270,274,275,276,285,288],our_id_addr:[31,250],our_id_addr_typ:250,our_key_dist:28,our_ota_addr:[31,250],our_ota_addr_typ:[31,250],out:[8,9,11,21,22,23,24,27,28,62,81,82,83,85,90,96,100,129,131,137,141,142,145,147,161,162,174,181,182,183,199,201,202,203,204,223,228,235,246,248,250,254,255,257,262,268,275,287],out_cpha:191,out_cpol:191,out_data:[163,164],out_dir:[162,163,165],out_fil:[161,163],out_id_addr_typ:31,out_len:[158,163,164,172],out_m:101,out_nam:[137,157,163],out_name_l:157,out_name_len:[157,163],out_off:90,out_tick:101,outdat:59,outfil:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,275],outgo:219,outlin:5,output:[1,7,12,14,22,23,28,31,35,36,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,55,58,59,60,63,70,74,76,77,78,82,89,94,100,101,129,182,187,194,206,223,225,228,237,240,256,258,259,260,262,263,264,267,268,275,278,282,286,289],outsid:[21,22,90,227],outweigh:90,over:[14,21,22,23,24,28,30,32,66,67,68,69,70,71,72,73,74,75,76,77,78,90,129,134,135,137,141,143,151,188,194,206,223,238,243,251,257,258,260,264,268,274,275,277,278,279,281,284,287,289,292],overal:[10,14,25,90,100,174],overhead:90,overlap:[21,180],overrid:[51,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,94,206,223,224,238,247],overridden:[24,226,247],oversampl:276,overview:[129,278,279,282],overwrit:[6,50,51,60,61,83,84,94,131,180,256,265,268],overwrite_many_test:267,overwrite_one_test:267,overwrite_three_test:267,overwrite_two_test:267,overwritten:[129,173,180],own:[2,11,14,20,21,40,58,59,60,62,88,92,93,97,99,100,136,180,191,206,223,224,244,245,246,275,276],own_addr_t:[254,255],own_addr_typ:[28,67,254,255],owner:[88,92,271],ownership:[92,180,275,276],pacakg:246,pacif:101,pack:[4,56,82,90,241,259,261,268,278,282,285],packag:[6,9,11,14,24,25,27,35,40,41,42,44,46,51,52,53,54,56,57,59,60,61,80,84,88,93,95,100,129,130,132,133,135,138,139,153,163,174,182,183,196,197,200,208,209,212,213,214,215,223,224,232,233,234,237,240,247,257,258,259,264,266,269,270,276,279,280,281,292],package1:206,package1_log:206,package2:206,package2_log:206,packet:[21,22,28,30,188,215,219,254,264],packet_data:90,pacman:[7,60],pad:[90,129],page:[1,4,5,6,7,8,10,21,23,58,59,61,81,82,84,94,102,136,181,188,189,207,208,209,210,237,242,244,246,248,252,254,255,257,276],page_s:136,pair:[21,22,23,28,67,129,130,180,200,205,226,250,252],pakcag:215,panel:12,paradigm:90,param:[28,215,220,252],param_nam:215,paramet:[1,14,21,27,28,29,31,62,67,73,85,87,88,90,91,92,98,99,100,101,130,137,141,151,183,187,188,190,191,193,194,195,206,208,209,215,226,238,249,251,252,253,254,255,267],parameter_nam:226,parameter_valu:226,parent:[91,155,156,157,162,165,167,173,180],parenthes:90,pariti:194,parlanc:11,parmaet:28,parmet:[28,29],pars:[56,198,215,228,231,254,267],part:[14,23,30,90,96,129,141,169,174,175,180,181,223,249,250,253,275,276,281],parti:[254,256,268],partial:[65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,129,174,175],particular:[4,14,21,48,62,90,93,94,97,98,129,131,135,153,182,191,193,200,235,252,254,255],particularli:265,partit:[21,94,129,174,180,223],partner:14,pass:[1,7,12,14,21,28,62,85,87,88,90,91,92,98,99,100,130,131,135,136,140,141,151,161,164,172,180,187,188,191,193,194,200,207,208,209,211,215,218,229,230,231,232,249,253,254,255,267,276,282],passiv:[14,28],passkei:[14,21,23,28],password:[11,59,81,247,271],past:[21,90,276],patch:[259,260,263],path:[2,4,6,11,12,14,30,51,58,59,60,61,62,67,81,82,83,84,94,95,153,160,161,162,163,167,170,172,173,226,269,275,276],pathloss:30,pattern:[28,94,243],payload:[90,133,134,188],pc6:288,pc7:288,pca100040:247,pca:[241,261,276],pcb:275,pci:[135,182],pcmcia:[135,182],pdata:188,pdf:[237,288],pdt:[101,267],pdu:[21,28],peek:243,peer:[10,23,29,67,191,241,251,253,254,255],peer_addr:[28,31,67,249],peer_addr_typ:[28,31,67,249],peer_id:67,peer_id_addr:250,peer_id_addr_typ:250,peer_nam:[14,67,241],peer_ota_addr:250,peer_ota_addr_typ:250,pem:[38,47],pencil:10,pend:[21,85,88,92,99,129,188,241],per:[11,14,20,90,92,129,130,174,183,187,191,194,224,243,267,270,275],perfom:129,perform:[3,4,5,9,11,12,14,21,23,26,28,37,58,59,60,65,81,82,83,90,91,93,94,98,100,102,129,131,136,152,153,167,180,188,193,212,223,226,237,241,251,256,258,259,264,270,274,275,276,277,278,279,282],perhap:269,period:[9,14,20,23,28,85,98,190,195,240,243],peripher:[9,14,21,22,25,27,30,31,94,97,135,182,183,188,191,224,241,245,246,249,252,253,254,274,275,276],perman:[72,129,180,223,241,249,252],permiss:[275,276],permit:[21,253,256,282,289,290],persist:[14,129,152],perspect:223,pertain:252,petteriaimonen:102,phdr:90,phone:[14,23,32],php:56,phy:[22,28],phy_opt:28,physic:[22,28,30,67,131,184,187,194],pick:[86,93,206,254,255],pictur:[237,259],pid:260,piec:[22,94,275],pig:244,pin:[7,8,21,94,97,100,135,182,184,187,188,191,192,194,207,237,240,258,259,262,264,268,275,276,278,282,288],ping:93,pinout:96,pipe:14,piqu:292,pitfal:90,pkcs15:129,pkg1:225,pkg2:225,pkg:[1,7,11,40,44,51,54,56,58,59,60,62,95,96,102,131,135,136,137,152,153,181,182,206,208,215,224,225,226,238,240,246,258,267,275,276,277,282],pkg_init_func1_nam:226,pkg_init_func1_stag:226,pkg_init_func2_nam:226,pkg_init_func2_stag:226,pkg_init_func:226,pkg_init_funcn_nam:226,pkg_init_funcn_stag:226,pkg_test:234,pkga_syscfg_nam:226,pkga_syscfg_name1:226,pkga_syscfg_name2:226,pkgn_syscfg_name1:226,pkt:275,pkthdr_len:90,pkts_rxd:90,place:[3,56,62,88,101,102,129,141,169,188,191,223,226,233,238,242,243,246,247,253,254,255,262,270,275,284],plai:[12,14,22,284],plain:[223,260,270],plan:[2,14,135,215],platform:[2,7,9,11,12,24,25,58,59,60,67,81,82,83,85,93,94,95,97,135,183,188,191,193,227,233,241,243,246,256,258,259,260,262,263,268,275,276,278,285,286,287,288],pleas:[14,40,58,59,60,95,96,207,211,212,224,237,242,256,257,269,276,282,289,290],plenti:[243,275],plist:62,plu:[90,157,180,188],plug:[8,181,237,262,263,275,276],plumb:274,pmode:278,point:[2,4,6,14,32,86,90,92,94,96,100,102,129,130,131,135,142,143,144,145,146,148,149,150,151,162,163,165,180,191,207,246,251,252,254,255,275,276,277],pointer:[68,85,86,87,88,90,91,92,94,99,100,101,130,131,135,141,142,143,151,154,156,157,158,159,161,163,164,169,171,172,173,180,181,183,188,191,193,198,199,200,206,207,208,209,212,215,216,217,220,221,228,243,251,252],poke:276,polici:[28,269],poll:[14,88,93,211,278,282],poll_du:278,poll_dur:278,poll_interv:278,poll_itvl:278,poller:[207,211,212,282],pong:93,pool:[74,81,93,264,279,286],popul:[1,7,12,51,63,101,176,180,233,257,268,284,287,292],port:[2,12,67,93,131,135,187,194,206,224,238,247,256,258,259,260,261,262,263,268,275,278,282,285,286,287,288,292],portabl:[135,182],portingto:95,portion:[129,147,188,274,276],posit:[90,101,129,159,169,172,195,262],posix:60,possibilti:[289,290],possibl:[14,22,23,25,28,29,31,33,37,54,90,92,101,129,135,153,174,175,180,182,183,206,223,224,253,269,278,289],post:[50,85,90,135,240,246],potenti:[97,223,270],pour:[59,82],power:[2,9,14,21,22,23,28,30,32,56,94,97,131,135,182,183,191,192,209,238,241,247,256,261,262,264,268,277,278,279,280,282,285,288],ppa:4,pre:[4,9,206,224,269,270],precaut:251,prece:90,preced:24,precis:[6,21],predict:243,preempt:[92,93,99,100],preemptiv:[93,100,243],prefer:[3,28,30,139,241,251,275],preference0x01:28,prefix:[62,180,210,226,276],preload:191,prepar:[21,259,261,264,276],prepend:90,preprocessor:[215,224],prerequisit:12,presenc:[94,180,249,254,255,269],present:[1,14,90,94,129,131,180,196,208,223,247,262,267,276],preserv:90,press:[8,12,14,99,240,243,246,268,275,278,290],presum:[90,264],pretti:[14,276],prev:[100,180],prev_ind:252,prev_notifi:252,prevent:[92,93,129,170,251],previ:[250,252],preview:[244,247],previou:[22,57,58,59,60,79,80,81,82,83,100,129,180,200,225,226,246,247,258,269,274],previous:[6,12,58,59,60,61,81,82,83,84,191,238,250,272,276,278],prevn:[250,252],pri:[78,183,275,285,288],primari:[28,94,129,133,167,241,253,255,274],primarili:102,primary_phi:28,primo:[257,274,275],primo_boot:259,primo_debug:259,primoblinki:259,print:[49,58,59,60,63,130,131,137,155,156,157,162,165,172,194,215,225,228],print_statu:172,print_usag:198,printabl:199,printf:[102,137,228,231],prio:[98,100,190,218],prior:[23,25,50,90,93,129,167,176,180,191,193,264],prioriti:[14,78,86,88,92,93,99,100,135,174,183,190,226,240,247,276,292],priv:28,privaci:[20,22,28],privat:[20,23,33,38,47,58,67,81,129,254,255],privileg:2,prng:14,pro:[14,243,256,259],probabl:[7,14,94,248,271,275],probe:[188,259,268,282],problem:[7,99,129,162,223,225],proce:[3,6,11,129,235,256,259,260,261,262,263,267,268,275,285,288],procedur:[6,11,17,20,21,23,28,29,65,76,81,82,83,129,180,181,223,278,281],proceed:[7,248,254,255],process:[3,6,9,10,14,21,23,27,28,32,62,85,86,88,90,94,100,129,131,132,180,212,213,217,223,224,226,237,238,240,243,254,255,277,280,281,282,289,290],process_data:170,process_rx_data_queu:90,processor:[4,9,90,100,135,182,183,187,243,256,262,282,289,290],produc:[99,129,224,231,260],product:[14,56,97,175,187,210,247,275,288],profil:[15,16,17,18,22,28,29,32,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,246,256,285,287,288],profile01:[66,68,69,70,71,72,73,74,75,76,77,78],profile0:78,program:[4,6,8,12,24,86,129,131,189,192,237,243,256,258,259,261,264,268,276],programat:131,programm:[260,289,290],programmat:[138,282],progress:[7,14,21,129,135,136,180,191,245],prohibit:168,project:[3,6,8,11,34,35,40,41,42,45,50,51,53,56,58,59,60,62,64,89,100,102,129,131,136,137,139,152,177,178,182,196,206,224,232,233,240,242,243,244,250,267,271,272,277,278,282,283,284,289,292],prompt:[7,8,11,12,48,59,60,94,246,256,258,259,260,261,262,263,275,278,282],prone:253,proper:[135,276],properli:[25,62,93,98,243,247,251,274,275,276],properti:[12,20,32,60,94,129,134,174,175,180,206,237,248,259],proport:180,propos:10,propper:275,prot_length:90,prot_tif:90,prot_typ:90,protcol:90,protect:[23,89,129,141],protocol:[14,15,21,22,29,62,67,90,129,133,134,188,279,281,284,287],prototyp:[97,194,226,254,255],provid:[1,2,7,9,11,12,14,20,21,22,23,28,31,32,38,40,46,51,58,59,60,67,71,72,73,76,81,85,87,89,90,91,92,93,94,96,97,98,100,101,129,131,135,136,137,141,152,153,174,182,187,188,191,193,198,207,210,212,213,215,224,233,236,238,248,254,255,256,264,267,268,269,270,275,276,281],provis:[14,22,33],provision:[14,32],proxi:[22,32],pseln:276,pselp:276,pset:191,psm:[14,28],psp:[256,260],pst:[69,101,267],pth:262,ptr:194,public_id:28,public_id_addr:31,public_target_address:30,publish:[14,23],pull:[11,14,50,81,83,88,90,135,187,240,258,262],pulldown:187,pullup:[90,187],purpos:[4,14,23,51,56,94,98,129,182,187,206,209,211,223,224,243,251,264,276,282],push:[10,14,244],put:[1,2,7,44,62,81,83,88,90,91,92,94,99,100,101,134,183,243,249,254,255,267,276],putti:[8,258,268,278],pwd:[2,11],pwm:[9,14],pwr:[260,262],px4:4,python:[34,64],qualifi:251,qualiti:283,quat:278,queri:[9,20,51,56,58,59,60,62,63,90,134,156,157,158,159,172,180,207,209,224,249,278,286],question:246,queu:[21,85,88,194,240],queue:[27,62,85,87,90,93,98,99,100,131,180,193,212,215,217,219,226,238,254,255,274,280,282,284,292],quick:[2,3],quickli:[101,182,243,276,278,281,282,284],quickstart:[2,243],quiet:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,275],quit:[20,94,246,249,254,255,256,259,260,262,263,289],quot:67,r_find_n:212,r_lock:212,r_match_:212,r_regist:212,r_unlock:212,radio:[22,25,247],raff:82,rais:92,ram:[49,94,96,174,183,223,246,256,275,276,277],ram_siz:94,ran:98,rand:[14,28],random:[20,21,26,28,31,67,247,253,254,255,274],random_id:28,random_id_addr:31,randomli:20,rang:[9,21,22,30,90,102,180,198,264],rare:90,rate:[14,67,85,131,212,213,247,264,278,281,282],rather:[14,15,21,94,101,102,129,153,167,223,276],raw:[11,58,59,60,81,82,83,131,174,180,226,228,276],rb_bletini:51,rb_blinki:[44,51],rb_blinky_rsa:44,rb_boot:44,rbnano2_blinki:263,rbnano2_boot:263,reach:[98,193],read:[4,6,7,11,12,15,19,20,21,24,28,29,56,62,65,66,69,74,77,78,81,82,83,88,90,100,129,130,131,135,136,137,141,143,146,147,151,153,154,155,156,157,159,161,162,164,165,169,170,172,180,185,187,188,193,200,205,206,211,212,213,214,226,228,237,238,240,241,243,250,252,253,254,255,256,257,260,263,264,267,268,269,274,275,276,277,278,279,281,284,287,289,290],read_acceleromet:282,read_cb:282,read_chr:251,read_config:[154,161,164],read_part1_middl:169,read_rsp_rx:77,read_rsp_tx:77,read_sensor_interv:282,read_test:267,read_type_req_rx:77,read_type_req_tx:[77,238],read_type_rsp_rx:[77,238],read_type_rsp_tx:[77,238],readabl:[247,271],readdesc:7,readdir_test:267,reader:[267,274,276],readi:[10,86,88,100,131,194,200,243,256,275,289],readili:135,readm:[7,11,56,62,94,246,267],readnow:62,real:[1,7,9,14,88,93,101,131,180,200,236,240,246,253,282,289],realist:267,realli:[14,90,276],rearm:85,rearrang:90,reason:[14,21,27,28,90,91,129,192,243,250,252,264,267,269],reassembl:22,rebas:11,reboot:[7,14,72,129,192,223,225,241,277,279],reboot_log:73,reboot_log_flash_area:[225,226],reboot_start:280,rebuild:[14,33,62,83,280],rec0:129,rec1:129,rec2:129,recal:[251,269],receiv:[10,14,15,21,28,30,32,56,82,90,131,132,137,188,191,194,207,212,215,218,221,238,249,252,253,260,264,282,285,288],recent:[180,259],recip:6,recipi:30,reclaim:180,recogn:[56,180,276],recommend:[3,4,7,12,14,58,59,81,82,90,131,189,208,209,215,225,226,238,240,249,253,259,263,265,278,284,289],reconfigur:[191,194,280],reconnect:251,record:[129,180,209,224,233,290],recov:129,recover:129,recreat:270,recur:195,recurs:[56,62,91,170],red:[28,29,237,260,262,288],redbear:[257,292],redefin:225,redistribut:[56,256,269,282,289,290],redo:14,reduc:[9,23,25,32,88,102,133,206,238,240,266],redund:223,reenter:265,ref0:68,refer:[7,8,10,14,19,23,24,30,56,68,94,167,170,180,191,210,216,220,223,244,249,254,255,256,258,262,268,275,276,278,288],referenc:[1,180,187],reflect:250,reformat:180,refrain:27,refresh:[2,50,244,256],refus:[282,289],regard:[174,175,267,275,276],regardless:42,region:[14,90,94,129,168,174,175,180],regist:[14,24,76,86,90,95,130,132,135,139,153,163,166,182,183,188,197,206,207,211,213,216,218,220,221,222,226,243,251,253,275,276,282],register_:211,registr:[18,130,181,224,251,282],registri:[90,209],regress:[229,230,232,233,234],regular:[90,156,267],reject:[21,267],rel:[14,90,93,149],relai:[22,32],relat:[10,28,32,44,136,223,249,252,256,264,282,289,290],relationship:[28,99],releas:[3,4,7,32,50,57,79,80,90,91,92,93,99,135,187,188,215,226,256,268,269,270],release_not:[7,11],relev:[96,129,135,187],reli:[1,7,56,226],reliabl:[14,22,129,152,174,254,255,270],reload:14,remain:[94,164,170,180,223,228,231,243,251],remaind:[94,180,231,249,267,269],rememb:[2,42,81,83,92,256,274],remind:256,remot:[1,7,9,12,21,28,29,50,56,67,79,81,82,83,133,188,237,238,240,241,247,256,257,258,268,275,276,282,284,286,287,292],remov:[2,4,6,28,36,46,61,84,87,88,90,91,99,100,131,137,180,223,251,256,282],renam:[14,167],rename_test:267,repeat:[2,11,21,188,242,251],repeatedli:[30,129],replac:[4,6,94,96,102,196,223,226,228,231,242,256,258,274,285,288],repli:28,repo814721459:56,repo:[1,6,7,10,11,14,42,56,58,62,81,94,135,153,223,237,244,246,256,258,259,260,261,262,263,264,267,268,271,275,276,277,278,282,285,286,288,289,290],repop:7,report:[1,4,6,10,14,21,94,183,194,224,228,231,256,260,267,275,282,289,290],reposistori:7,reposit:169,repositori:[1,4,11,12,41,42,45,50,52,53,58,62,81,135,237,244,245,246,248,256,257,264,268,272,275,284,287,292],repres:[1,12,14,62,88,90,99,101,129,131,160,180,207,209,211,212,215,243,253],represent:[129,133],reproduc:[1,62,129,181,254,255],req_api:[62,131,206],req_len:90,request:[12,14,21,28,67,68,75,79,90,92,94,99,129,133,134,137,141,164,180,192,210,211,213,215,223,238,250,251,256,260,262,264,269,270,274,276,277,281,282,285,288],requir:[1,2,4,6,9,11,21,25,31,32,54,60,62,67,81,83,88,90,91,93,95,96,97,99,129,131,133,136,153,163,174,175,180,193,206,208,215,223,224,225,226,230,237,238,240,243,246,249,251,256,259,263,264,267,269,270,274,275,276,278,280,281,282,292],res:277,reserv:[21,90,94,97,142,144,180,207,243,264],reserved16:180,reserved8:180,reset:[26,65,79,81,82,83,85,98,132,133,192,223,235,238,246,247,250,259,260,261,263,276,278,282,289,290],reset_cb:27,reset_config:256,reset_handl:[94,262],resid:[97,129,175,180,242,253,275],resign:[58,59,60],resist:276,resistor:[240,276],resolut:[23,87,193,224,276],resolv:[1,20,21,23,28,33,56,67,82,225,237,254,255,269],resourc:[9,21,30,62,89,92,99,134,210,211,213,215,237,240,256,277,279,281,282,288,289,290],respect:101,respond:[18,26,223,249,251,253,274,275],respons:[14,16,21,29,30,70,86,91,93,131,133,137,213,223,243,249,251,268,275,281,285,286,288],rest:[1,14,47,62,90,180,198,200,228],restart:[2,129,130,141,180,192,256],restor:[14,130,174,177,178,180,259,261,264,276],restrict:[129,141,174,175,180,215,226,251,252],restructuredtext:10,result:[12,14,21,59,63,90,101,161,162,175,180,199,207,224,226,231,233,253,260,267,274,275,276],resum:[22,100,129,180,249,252],resynchron:50,retain:[129,180,226,252],retent:183,retransmit:32,retreiv:134,retri:[263,264],retriev:[58,81,88,90,101,133,153,155,156,157,158,159,162,164,165,172,175,207,209,246,284],reus:[56,82,129,226],reusabl:56,rev:278,revdep:[1,51,63],revers:[1,24,51,63,129,180,251,262],revert:[129,241],review:[10,223,249,267],revis:[4,198,278],revision_num:[269,270],revisit:[246,252],rewrit:180,rewritten:180,rfc:[69,200,267],ribbon:[262,288],rigado:[49,261,276],right:[2,3,10,14,56,62,130,244,249,262,276],rimari:253,ring:99,rise:187,ristic:253,rite_fil:153,robust:152,role:[14,21,22,31,32,99,251],room:[90,180,243],root:[2,4,8,32,81,137,166,180,237,269],rotat:167,rotate_log:167,routin:[102,130,141,142,144,163,181,200,232,275],rpa:[20,28],rpa_pub:[28,67],rpa_rnd:[28,67],rsa2048:129,rsa:129,rsp:28,rssi:[28,30,247],rtc:9,rto:[56,93,243],rtt:[14,131,291,292],rtt_buffer_size_down:289,rubi:[11,56,59],rule:[226,260,267],run:[2,3,4,5,6,8,9,11,24,25,31,35,40,42,44,51,53,56,58,59,60,61,62,65,67,68,78,79,81,82,83,84,85,86,87,88,90,92,93,94,97,98,99,100,129,130,132,133,136,137,153,161,162,180,193,213,215,221,223,225,234,235,236,237,238,241,242,243,246,247,254,255,257,259,260,261,262,263,264,267,268,275,276,277,278,279,280,282,285,287,288,292],runner:12,runtest:[7,132,238],runtest_newtmgr:238,runtim:[26,78,100,256,268,275,285,288],runtimeco:[58,59,60,81,82,83,237,256,268,269,276],rwx:94,rwxr:[81,83],rx_cb:131,rx_data:275,rx_func:194,rx_off:275,rx_phys_mask:28,rx_power:28,rxbuf:191,rxpkt:90,rxpkt_q:90,s_cnt:224,s_dev:207,s_func:207,s_hdr:224,s_itf:207,s_listener_list:207,s_lock:207,s_map:224,s_map_cnt:224,s_mask:207,s_name:224,s_next:[207,224],s_next_run:207,s_pad1:224,s_poll_rat:207,s_size:224,s_st:[207,282],s_type:207,saadc_config_irq_prior:276,saadc_config_oversampl:276,saadc_config_resolut:276,sad:282,sad_i:282,sad_x:282,sad_x_is_valid:282,sad_y_is_valid:282,sad_z:282,sad_z_is_valid:282,safe:[91,153],safeguard:93,safeti:251,sai:[14,62,90,100,256,268,269,270,275],said:[187,276],sam0:256,sam3u128:[259,261,264,276,282],samd21:[256,268],samd21g18a:256,samd21xx:256,samd:256,same:[6,10,12,14,23,30,35,38,48,52,60,62,79,90,92,94,95,99,129,130,131,152,174,180,188,212,223,224,225,226,228,237,240,242,243,249,251,252,257,259,261,264,269,270,271,276,277],sampl:[1,12,22,31,62,90,95,135,213,223,226,276,277,279,281,282,287],sample_buffer1:276,sample_buffer2:276,sample_cmd:222,sample_cmd_handl:222,sample_command:220,sample_modul:[220,222],sample_module_command:220,sample_module_init:220,sample_mpool:220,sample_mpool_help:220,sample_mpool_param:220,sample_target:54,sample_tasks_help:220,sample_tasks_param:220,sane:100,saniti:[78,93,100,246],sanity_interv:98,sanity_itvl:[98,100],sanity_task:98,sanity_task_interv:98,satisfactori:269,satisfi:[180,270],sattempt_stat:224,save:[12,32,50,51,72,101,130,131,188,209,243,251],saw:252,sbrk:[94,259,260,261,262,263],sc_arg:98,sc_checkin_itvl:98,sc_checkin_last:98,sc_cmd:[215,216,220,221,222,275],sc_cmd_f:215,sc_cmd_func:[215,216,220,221,222,275],sc_cmd_func_t:215,sc_func:98,sc_next:153,sc_valtyp:207,scalabl:[152,180],scale:32,scan:[14,16,22,25,27,28,30,180,247,249,277,279],scan_interv:28,scan_req:28,scan_req_notif:28,scan_result:268,scan_rsp:28,scan_window:28,scannabl:[28,31],scenario:[23,99,196],scene:32,schedul:[9,14,25,85,88,93,97,100,101,243],schemat:[94,288],scheme:[14,20,30,94],scientif:22,sck_pin:[136,137],scl:[188,278],sco:21,scope:[12,90,243],scratch:[94,129,141,142,144,223],screen:[8,264],script:[7,43,62,138,140,262],scroll:[12,238,250],sd_get_config:[207,209],sd_read:[207,209],sda:[188,278],sdcard:137,sdk:[46,54,226],search:[12,88,95,135,177,180,212,246,256,262,269,277,282,289,290],searchabl:135,sec000:129,sec125:129,sec126:129,sec127:129,sec:[278,282],second:[14,23,27,28,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,85,90,91,94,98,100,101,129,141,195,215,223,237,242,243,249,254,255,258,262,267,274,275,276,278,282],secondar:253,secondari:[28,72,94,129,241,253,275],secondary_phi:28,secret:[23,28],section:[1,5,6,7,11,12,14,15,25,26,30,31,62,90,93,94,100,129,130,180,209,223,225,226,227,238,241,243,245,249,252,253,256,257,268,269,270,276,284,286,287],sector:[129,141,142,147,149,150,151,180,185,262],sector_address:[136,185],secur:[14,22,129,223,253,271,274],see:[2,4,5,6,7,8,10,11,12,14,22,23,24,25,34,37,44,56,58,59,60,62,64,65,67,81,82,83,88,90,92,93,94,97,100,129,130,138,148,161,182,188,191,200,206,207,208,209,210,211,212,213,214,215,224,225,226,237,238,241,242,243,244,246,247,249,250,251,253,254,255,256,257,258,259,260,261,262,263,264,265,268,269,270,271,274,275,276,277,278,279,281,282,284,285,287,288,289,290],seek:[90,169,180],seem:[14,249,276],seen:[91,186,189,269,292],segger:[131,241,259,261,264,268,276,278,282,285,291,292],segger_rtt:14,segger_rtt_conf:289,segment:[22,90,277],sel:288,select:[4,12,14,20,22,56,60,180,187,191,207,215,256,258,259,260,262,277,279,288,290],selector:207,self:[3,31,95,254,255,267],selftest:267,sem:99,sem_token:99,sema:275,semant:252,semaphor:[14,93,100,275],semi:275,send:[3,14,15,21,28,29,32,39,43,48,65,67,68,70,75,79,81,82,83,90,131,133,134,188,191,194,213,236,237,242,249,257,274,276,281,286,292],send_pkt:90,sender:249,sens:[21,129,223,276],senseair:[274,275],senseair_cmd:275,senseair_co2:[274,275],senseair_init:275,senseair_read:[274,275],senseair_read_typ:[274,275],senseair_rx_char:275,senseair_shell_func:275,senseair_tx:275,senseair_tx_char:275,sensi:277,sensibl:226,sensor:[9,32,135,224,292],sensor_accel_data:282,sensor_callout:282,sensor_cfg:[207,209],sensor_cli:[214,278,279,282],sensor_cr:[208,278,280],sensor_data_func_t:[209,211],sensor_data_funct_t:209,sensor_dev_cr:208,sensor_devic:207,sensor_driv:[207,209],sensor_ftostr:282,sensor_g:207,sensor_get_config_func_t:[207,209],sensor_get_itf:209,sensor_in:207,sensor_init:[207,209],sensor_itf:[207,208,209],sensor_itf_i2c:[207,208],sensor_itf_spi:207,sensor_itf_uart:207,sensor_listen:[207,211,282],sensor_lo:207,sensor_mg:212,sensor_mgr_find_next_bydevnam:[212,282],sensor_mgr_find_next_bytyp:212,sensor_mgr_l:212,sensor_mgr_lock:212,sensor_mgr_match_bytyp:212,sensor_mgr_regist:[207,209,212],sensor_mgr_unlock:212,sensor_mgr_wakeup_r:[212,282],sensor_nam:278,sensor_o:[213,277,278,279,281,282],sensor_offset:278,sensor_oic_init:[213,277],sensor_oic_obs_r:[213,281],sensor_r:[207,211],sensor_read:[207,211],sensor_read_func_t:[207,209],sensor_register_listen:[211,282],sensor_s:207,sensor_set_driv:[207,209],sensor_set_interfac:[207,209],sensor_set_poll_rate_m:[207,212,282],sensor_set_type_mask:[207,209],sensor_shel:278,sensor_timestamp:207,sensor_type_acceleromet:[207,208,209,280,282],sensor_type_al:207,sensor_type_eul:[209,280],sensor_type_grav:[209,280],sensor_type_gyroscop:[207,209,280],sensor_type_light:207,sensor_type_linear_accel:[209,280],sensor_type_magnetic_field:[207,209,280],sensor_type_non:207,sensor_type_rotation_vector:[209,280],sensor_type_t:[207,209,211,212,282],sensor_type_temperatur:[207,209],sensor_type_user_defined_6:207,sensor_un:[207,211],sensor_unregister_listen:[211,282],sensor_value_type_float:[207,209],sensor_value_type_float_triplet:[207,209],sensor_value_type_int32:207,sensor_value_type_int32_triplet:207,sensor_value_type_opaqu:207,sensor_value_type_temperatur:209,sensornam:[207,208,209,210,278,280,282],sensorname_cli:209,sensorname_ofb:278,sensors_o:279,sensors_test:[277,278,280,281],sensors_test_config_bno055:280,sent:[21,30,131,180,188,191,194,215,251,253,264],sentenc:[63,244],sep:[4,82,83],separ:[21,27,35,36,51,52,67,129,135,177,180,198,206,223,224,251,254,255,256,259,260,262,263,264],seper:289,sequenc:[93,129,131,174,180,228,231],sequenti:[174,175,180],seri:[129,160,192,253,292],serial:[67,88,129,130,131,133,134,135,141,183,188,191,224,238,240,241,259,263,264,275,277,278,279,286,287],serror_stat:224,serv:[19,56,94,141,210,223,277],server:[12,14,15,19,21,22,28,32,134,210,211,213,223,244,253,264,274,277,279,281,282],servic:[14,17,18,22,28,29,30,32,93,97,135,182,236,249,250,251,252,268,270,275,277],service_data_uuid128:[28,30],service_data_uuid16:30,service_data_uuid32:[28,30],sesnor:282,session:[12,39,40,48,56,58,59,60,62,94,256,259,260,262,263,289],set:[1,2,7,8,9,10,12,20,21,24,25,28,29,30,32,33,35,37,38,40,51,54,56,57,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,82,83,85,87,90,97,98,99,100,101,129,130,131,135,136,146,153,154,158,161,163,164,168,171,174,176,177,178,180,182,187,188,190,191,193,194,195,200,208,210,212,213,214,215,216,220,221,222,223,224,233,237,240,241,243,247,250,251,254,255,256,257,259,260,261,262,263,264,265,267,268,269,270,271,274,276,278,279,281,282,284,285,287,288,289],setting1:225,setting2:225,settl:26,setup:[11,58,60,61,72,81,83,84,209,223,238,241,246,247,257,258,274,275,276,278,282,284,285,286,287,288],sever:[3,14,21,22,24,28,62,94,95,97,101,129,180,223,226,235,236,253,254,255,261,262,269],sha256:129,sha:129,shadow:130,shall:[14,25,28,30],share:[4,23,89,90,92,93,99,223,240,269],sheet:209,shell:[1,7,8,14,22,31,56,60,81,97,130,131,138,139,206,210,216,217,218,219,220,221,222,224,225,226,237,238,243,257,264,265,274,275,277,278,279,284,289],shell_cmd:[215,216,220,221,222,275],shell_cmd_argc_max:[215,264],shell_cmd_func_t:215,shell_cmd_h:215,shell_cmd_help:[215,220,265],shell_cmd_regist:[215,221,275],shell_compat:215,shell_complet:215,shell_evq:275,shell_init:226,shell_max_compat_command:[215,216],shell_max_input_len:139,shell_max_modul:[215,220],shell_modul:215,shell_newtmgr:[215,238],shell_nlip_input_func_t:218,shell_nlip_input_regist:215,shell_os_modul:[215,265],shell_param:[215,220],shell_prompt_modul:[215,258],shell_regist:[215,222],shell_sample_mpool_display_cmd:220,shell_sample_tasks_display_cmd:220,shell_stack:[139,275],shell_stack_s:275,shell_task:[215,225,226,238,258,265,275,278,282],shell_task_handl:275,shell_task_init:139,shell_task_prio:[139,275],shell_task_prior:225,shell_task_stack_s:139,shield:93,shift:[12,22],ship:[6,14],shortcut:[12,275],shorten:249,shorter:[180,242],shorthand:[90,269],shortli:276,shot:264,should:[4,8,10,12,14,20,27,31,33,56,58,60,62,82,85,86,87,88,90,91,94,97,98,99,100,129,130,131,135,138,139,141,147,151,153,157,158,161,171,174,180,182,183,188,191,193,194,195,198,200,209,212,215,224,226,231,233,237,242,243,247,249,250,251,252,254,255,256,258,259,260,261,262,263,264,267,268,269,272,275,276,277,278,280,282,285,288,289,290],show:[1,4,5,6,7,8,11,12,14,28,29,32,37,40,41,44,51,54,58,59,60,61,62,63,73,81,82,83,84,90,100,130,131,194,206,220,223,225,226,233,236,237,238,240,241,243,244,247,253,256,257,258,259,260,261,262,263,264,268,274,275,276,277,278,279,280,281,282,284,285,286,288,289,290,292],shown:[6,7,12,44,56,62,90,93,129,136,193,209,224,237,251,256,259,264,267,269,271,274,276,278,280,282,286],si_addr:[207,208],si_cs_pin:207,si_num:[207,208],si_typ:[207,208],sibl:[11,270],sid:28,side:[12,14,22,31,130,275],sierra:[59,82],sig:[21,30,32],sign:[6,10,38,47,48,58,59,60,81,207,242,247,257],signal:[21,22,27,30,100,191,252],signatuar:12,signatur:[28,47,129],signed_imag:129,signifi:188,signific:[20,90,191,223,264],significantli:[14,32],signigic:90,silent:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,226,275],silicon:33,sim1:[285,286,288],sim:[6,7,62,95,275,285,287,288],sim_slinki:[225,286],similar:[1,8,12,14,93,94,208,247,264,267,274],similarli:[90,206],simpl:[12,21,22,62,86,90,93,94,99,100,102,130,133,135,152,182,224,237,243,248,249,254,255,258,276,282,284],simplehttpserv:[34,64],simpler:[94,253],simplest:[90,285,288],simpli:[6,10,88,90,91,99,100,131,182,223,237,243,245,250,256,274],simplic:[129,254,255],simplifi:[14,21,88,91,188],simul:[2,3,5,6,51,235,243,282,286],simultaen:90,simultan:[14,28,30,31],simultaneosli:153,sinc:[3,14,21,25,33,62,90,93,94,99,101,129,191,215,224,241,242,243,246,247,254,255,256,258,268,269,274,275,276,277],singl:[2,3,7,14,23,40,48,56,58,59,60,88,90,99,100,129,130,135,153,172,174,175,180,209,224,226,248,249,253,254,267,269],singli:180,sissu:192,sit:[15,19,135,182,223],site:[248,259,263],situat:[93,223],six:[23,24],size:[9,21,28,30,40,56,58,59,60,62,74,78,88,90,91,94,100,101,102,129,130,131,133,136,157,174,175,176,180,191,205,206,223,224,225,226,228,236,238,243,256,260,262,264,266,279],size_t:[157,163,200],sizeof:[90,130,137,154,155,156,157,161,162,164,165,172,205,208,228,243,249,251,252,255,274,275,276],skelet:247,skeleton:[7,45,51,237,246,247,256,259,260,261,262,263,264,268,276,285,286,288],skip:[6,11,48,60,129,141,143,256,259,260,261,262,263,268,285,288],sl_arg:[211,282],sl_func:[211,282],sl_next:211,sl_sensor_typ:[211,282],slash:180,slave:[28,30,188,191],slave_interval_rang:30,sleep:[9,86,88,90,92,99,100,101,183,240,243,258],slightli:[97,223],slink:[285,286,288],slinki:[7,46,62,131,153,177,178,223,225,226],slinky_o:[7,62],slinky_sim:225,slinky_task_prior:225,slist_entri:[153,180,207,211],slist_head:[92,207],slot0:129,slot1:129,slot:[7,14,21,62,72,196,223,241,247,250,256,258,259,260,261,262,263,264,265,268,275,278,282,285,288,289,290],slower:[3,97,98],small:[21,25,90,131,135,172,223,224,253,260,267,275,276],smaller:[14,90,133,195,223,244,256],smallest:[90,180],smart:[22,32,56,62,275,281],smarter:270,smp:[21,22],snapshot:[44,259,263,270],snip:[1,37,44,56,62,238,246,247,276],snippet:251,soc:[14,97],socket:2,soft:[65,81,82,83,192],softwar:[1,3,4,6,22,39,43,48,51,97,98,129,182,236,241,256,259,261,262,268,269,275,276,278,282,285,289],solder:275,solut:[56,182,254,255],solv:[129,223],some:[1,8,12,14,31,65,77,90,91,93,94,97,99,100,102,129,131,137,141,152,153,154,161,164,174,175,183,191,194,206,220,225,233,237,238,243,248,249,250,251,252,254,255,258,259,260,263,264,265,267,268,269,275,276,282,285,288,289,290,292],somebodi:[130,275],somehow:62,someon:[10,86,276],someth:[14,21,237,246,247,268,271,289],sometim:[130,256,268,289],somewhat:[93,129,180],somewher:[14,129,180,223,276],soon:[22,270,276],sooner:195,sophist:243,sort:[180,250],sound:14,sourc:[1,4,9,22,25,51,57,59,61,62,80,82,84,90,97,129,130,135,167,180,209,210,226,233,240,248,256,259,260,262,268,269,270,276,282,284,288],space:[12,22,35,36,51,52,67,90,97,141,142,157,174,175,188,196,199,215,223,224,246,254,257,268,284,287,292],spare:14,spec:[14,21],specfi:278,special:[8,90,97,136,223,228,231,253,254,255,267,268,269,270,275,278],specif:[11,14,21,22,23,24,30,32,58,59,60,62,63,86,88,90,91,93,94,96,97,101,129,133,135,151,153,174,175,182,187,188,190,191,192,193,194,196,206,207,209,223,226,228,232,233,238,243,247,249,251,252,254,255,256,262,264,267,268,269,275,276,285,288],specifi:[1,4,6,7,11,12,14,21,28,31,35,36,38,40,42,44,46,47,51,52,54,56,58,59,60,62,66,67,68,69,70,71,72,73,74,75,76,77,78,85,87,88,90,91,94,97,98,100,101,102,131,133,134,151,153,154,155,156,157,158,159,160,161,162,164,165,167,168,169,170,171,172,173,175,177,178,180,183,187,188,206,207,208,209,210,211,212,213,214,215,216,217,220,225,228,231,233,238,241,246,249,251,252,253,254,255,256,261,262,265,268,269,270,271,276,278,281,282,285,288,289],spectrum:22,speed:[9,22,180,194,256,259,260,261,264,276,289],spew:268,sphinx:[34,64],spi:[8,14,22,97,135,136,137,187],spi_cfg:[136,137],spi_miso_pin:[136,137],spi_mosi_pin:[136,137],spi_num:[136,137,191],spi_sck_pin:[136,137],spi_ss_pin:[136,137],spi_typ:191,spilt:14,spitest:[7,62],split:[7,14,72,94,180,192,225,241,276,285,286,288],split_app:7,split_app_init:226,split_config:[285,286],split_elf_nam:62,split_file_test:267,split_load:226,splitti:[7,62,223,225],spot:94,spread:22,spuriou:267,squar:188,sram:262,src:[6,7,11,14,46,51,56,62,71,81,83,90,94,96,135,177,178,181,182,185,189,190,192,198,226,233,242,243,246,256,259,260,261,262,263,264,267,268,274,275,276,278,280,282,285,286,288],src_off:90,ss_op_wr:251,ss_pin:[136,137],ssec:28,sstatic:274,st_cputim:282,st_ostv:282,stabil:[269,270],stabl:[1,7,58,59,81,82,269,270],stack:[1,9,14,19,22,25,27,28,31,56,78,86,88,90,93,100,223,226,245,246,247,248,249,251,252,253,264,275],stack_bottom:100,stack_len:218,stack_ptr:218,stack_siz:[98,100],staff:[81,82],stage:[98,129,135,208,223,226],stai:[14,161,162],stailq_entri:224,stale:[2,256],stand:[14,90,234],standalon:[14,223],standard:[7,22,32,101,133,134,135,136,152,153,161,182,249,254,255,264,274,275],standbi:[22,196],start:[2,4,8,9,10,12,14,27,28,29,31,39,48,60,63,72,83,87,89,90,91,92,93,94,96,100,129,135,138,141,142,144,147,153,160,161,169,172,175,180,188,189,191,192,193,194,195,204,212,223,226,235,237,243,244,245,246,249,256,257,258,259,260,262,263,264,267,269,274,275,276,277,278,279,280,282,286,290,292],starter:242,startup:[20,22,27,31,129,223,226,243,254,255],startup_stm32f40x:[260,262],stash:50,stat:[1,7,65,79,81,82,83,132,133,226,238,246,264,265,275,276,282,289],state:[6,14,22,27,32,53,56,86,88,94,98,100,101,134,141,177,178,182,183,187,200,240,241,243,256,262,270,272],statement:[11,226,238],statist:[1,49,65,74,77,78,81,82,83,227,264,285,286,288,289],stats_cli:[1,265,275],stats_hdr:[209,224],stats_inc:224,stats_incn:224,stats_init:[209,224],stats_init_and_reg:224,stats_module_init:226,stats_my_stat_sect:224,stats_nam:[1,38,39,77,209,224],stats_name_end:[209,224],stats_name_init_parm:[209,224],stats_name_map:224,stats_name_start:[209,224],stats_newtmgr:[1,225,226,238],stats_regist:[209,224],stats_sect_decl:[209,224],stats_sect_end:[209,224],stats_sect_entri:[209,224],stats_sect_start:[209,224],stats_size_16:224,stats_size_32:[209,224],stats_size_64:224,stats_size_init_parm:[209,224],statu:[10,11,21,137,172,223,241,250,252,254,256,264,275,285,286,288],stdarg:[228,231],stderr:198,stdio:276,stener:211,step:[2,4,6,7,12,48,56,58,60,81,83,93,94,95,129,131,188,208,223,224,244,246,247,254,255,256,259,260,261,262,263,264,268,269,275,276,285,286,288],sterli:270,sterlinghugh:270,stic:[251,253],still:[5,60,67,87,97,98,250,284,289],stitch:1,stksz:[78,275,285,288],stkuse:[78,275,285,288],stlink:260,stm32:[260,262,288],stm32_boot:288,stm32_slinki:288,stm32f2x:260,stm32f303vc:[237,242],stm32f3discoveri:237,stm32f4:[135,136,137,257],stm32f4_adc_dev_init:135,stm32f4_hal_spi_cfg:[136,137],stm32f4disc_blinki:260,stm32f4disc_boot:260,stm32f4discoveri:[54,260],stm32f4discovery_debug:260,stm32f4x:260,stm32f4xx:187,stm32f4xxi:187,stm32l072czy6tr_boot:14,stm32serial:288,stm32x:260,stm34f4xx:187,stm:288,stmf303:237,stmf32f4xx:187,stmf3:237,stmf3_blinki:[237,242],stmf3_boot:[237,242],stop:[2,28,85,87,141,151,188,189,193,194,249,268,278],stopbit:194,storag:[14,21,130,141,168,247,269],store:[1,11,14,23,28,32,35,36,38,51,56,58,60,62,81,86,88,90,101,130,131,141,148,180,191,196,199,200,218,224,246,249,251,252,269,275,276,277,282,284],stori:90,str:[130,131,194,200],straight:[249,275],straightforward:[246,276],strategi:243,strcmp:[130,275],stream:[22,200,205,206,218],strength:30,strict:[251,256],strictli:[174,175,180,276],string:[1,14,28,30,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,102,130,131,134,140,161,172,198,199,200,205,215,216,220,224,226,228,231,254,255,267,269,270,274,275,276,286],strip:[47,90],strlen:[249,251],strongli:153,struct:[85,86,87,88,90,91,92,93,94,98,99,100,101,129,130,131,135,136,137,141,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,161,162,164,165,166,167,169,170,171,174,177,178,180,181,183,186,188,191,193,198,199,200,201,202,203,204,205,206,207,208,209,211,212,215,216,217,218,219,220,221,222,224,228,233,234,240,243,249,251,252,253,254,255,258,267,274,275,276,280,282],structur:[7,11,12,19,29,56,62,79,85,88,90,91,92,93,94,99,100,129,130,131,135,137,147,163,176,179,188,193,198,199,206,208,209,210,216,220,221,224,251,257,267,268,275,276,280,284,287,292],struggl:14,strutur:90,stub:[62,102,206,240,254,255,258,267,275,276],studio:[5,13],stuff:269,style:[131,244],sub:[29,44,46,51,71,72,73,76,77,135,156,255,272],subcmd1:221,subcmd2:221,subcommand:[46,51,63,65,67,71,72,73,76,77,221],subcompon:22,subdirectori:[2,233,267],subfold:259,subject:180,submit:11,subrang:21,subscrib:[14,29,250,252,276],subsequ:[14,22,23,129,161,162,223,249,252,267],subset:[23,177,207,209,212,278],substitut:[6,244,246,247],subsystem:[31,60,88,130,131,136,137,215],subtract:[99,101],subtre:130,succe:[177,267],succesfulli:[241,242,246,247,250,256,258,259,260,261,262,263,264,268,275,278,282,285,288,289,290],success:[3,21,56,85,87,90,93,98,100,101,130,137,142,143,144,145,146,147,149,150,151,153,154,155,157,158,160,161,162,164,165,166,167,168,169,170,171,172,173,177,178,179,180,183,187,188,191,193,194,195,198,201,202,203,204,205,216,218,219,220,231,234,235,237,242,251,253,262,264,267,276],successfuli:[94,267,282],successfulli:[7,14,21,56,91,94,98,223,237,238,241,242,246,247,250,252,254,255,256,259,260,261,262,263,264,268,275,276,277,278,279,282,285,286,288],sudo:[4,6,7,11,58,59,61,81,84,247],suffici:[14,90,91,180],suffix:267,suggest:[3,6,14,212,236,265,292],suit:[6,56,230,232,233,246,266],suitabl:[14,21,94,174],summar:[94,223],summari:[6,11,20,37,215,220,255],supersed:180,supervision_timeout:[31,250],supplement:[30,249],supplementari:94,suppli:[153,171,173,177,192,267],support:[1,3,4,6,7,12,15,20,21,22,23,30,31,33,54,59,67,82,87,93,94,96,102,129,131,133,134,135,136,137,152,180,183,187,191,200,206,207,208,209,212,215,216,220,221,223,224,226,240,241,246,247,248,249,253,254,256,257,259,268,269,270,275,279,284,286,287,292],suppos:[14,44,92,99,187,224],suppress:286,suppresstasknam:12,sure:[2,7,8,14,58,90,199,246,247,249,251,256,258,264,267,269,274,275,276],suspend:278,svc:253,sw_rev:278,swap:[2,86,94,174,181,223,256,289],swclk:256,swd:[256,259,260,261,262,263,264,268,276,282],swdio:256,sweep:180,swim:260,swo:[259,268,282],symbol:[4,7,12,62,223,256,260,282,289,290],symlink:[61,84],sync:[21,26,40,58,59,60],sync_cb:[27,254,255],synchron:[21,40,50,58,59,60,97,99,135,191],syntax:[226,244,264,265,278],synthes:25,sys:[1,7,14,56,58,62,130,131,132,181,206,215,224,225,226,234,238,240,246,258,267,268,275,276,278,282,290],sys_config:223,sys_config_test:7,sys_console_ful:223,sys_einv:[209,282],sys_enodev:209,sys_flash_map:[260,262],sys_log:223,sys_mfg:[7,256,259,260,261,262,278,285,288],sys_shel:223,sys_stat:223,sys_sysinit:[7,256,259,260,261,262,263,278,285,288],syscfg:[14,24,25,33,38,39,51,62,94,98,130,131,153,174,208,209,210,212,213,214,215,216,220,224,225,238,241,247,256,258,259,264,265,267,268,275,276,278,279,281,282,289,290],sysclock:14,sysconfig:[130,238],sysflash:[256,262],sysinit:[7,26,27,93,100,131,197,208,226,240,254,255,256,258,264,267,268,275,276,282],sysinit_assert_act:226,sysinit_panic_assert:[208,209,226],sysresetreq:256,system:[1,3,6,8,9,26,40,51,58,59,60,62,63,87,90,91,94,97,98,100,101,102,129,130,131,132,141,155,156,157,161,162,163,165,166,168,174,176,177,178,180,183,187,191,194,196,197,206,220,223,224,235,236,243,246,247,256,258,259,262,264,265,268,269,270,275,282,290],system_l:187,system_stm32f4xx:[260,262],systemview:292,sysview:[290,291],sysview_mynewt:290,sytem:189,syuu:60,t_arg:100,t_ctx_sw_cnt:100,t_dev:207,t_driver:207,t_flag:100,t_func:[100,243],t_interfa:207,t_itf:207,t_name:100,t_next_wakeup:100,t_obj:100,t_poll_r:207,t_prio:[86,100],t_run_tim:100,t_sanity_check:100,t_stackptr:100,t_stacksiz:100,t_stacktop:100,t_string:205,t_taskid:100,t_type_m:207,t_uinteg:205,tab:[31,37],tabl:[14,20,21,94,129,132,152,161,180,226,251,253,264,278],tag:270,tail:[90,180],tailq_entri:[180,193],tailq_head:180,take:[6,7,14,24,46,51,56,63,90,93,130,142,199,212,223,224,243,249,251,252,253,254,255,267,274,276],taken:[7,14,62,88,93,251,269,270,274],talk:[14,247,249,286],tap:[4,57,80],tar:[4,58,59,60,61,82,83,84],tarbal:4,target:[3,4,5,7,12,14,26,30,33,35,36,37,38,39,40,43,44,47,48,49,54,56,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,97,130,196,223,224,225,226,233,241,243,245,254,255,257,265,267,275,277,279,281,287],target_nam:35,targetin:[254,255],task1:[93,98,285,288],task1_evq:98,task1_handl:93,task1_init:93,task1_prio:93,task1_sanity_checkin_itvl:98,task1_sem:93,task1_stack:93,task1_stack_s:93,task2:[93,285,288],task2_handl:93,task2_init:93,task2_prio:93,task2_sem:93,task2_stack:93,task2_stack_s:93,task:[9,11,56,65,78,81,82,83,85,86,88,90,91,92,93,94,96,97,99,101,131,135,140,170,203,212,215,217,220,226,235,238,251,258,264,274,275,277,280,282,285,286,288,292],task_l:240,task_prior:[225,226],tasknam:12,taskstat:[65,79,81,82,83,132,134,238,285,288],tbd:[253,276],tc_case_fail_arg:233,tc_case_fail_cb:233,tc_case_init_arg:233,tc_case_init_cb:233,tc_case_pass_arg:233,tc_case_pass_cb:233,tc_print_result:[233,234],tc_restart_arg:233,tc_restart_cb:233,tc_suite_init_arg:233,tc_suite_init_cb:233,tc_system_assert:233,tck:256,tcp:[256,260],tdi:256,tdo:256,teach:243,team:[4,182,244],technic:[10,237],technolog:[22,136],tee:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,275],telee02:264,telee02_boot:264,telemetri:254,telenor:264,teli:[254,255],tell:[14,31,56,141,156,194,196,200,223,224,226,237,249,251,254,255,262,270,274,276],telnet:[268,282,289],tem:278,temperatur:[160,207,278],templat:[7,46,246,267,275,282],temporari:[21,98,129,180],temporarili:[92,98],ten:191,term:[3,129,135,153,187,190,269],termin:[2,4,7,8,10,12,14,21,22,28,60,83,130,131,155,156,157,161,162,165,172,174,175,177,180,247,249,252,253,256,258,259,260,261,262,263,264,268,280,282,289],terminato:157,termintor:157,terribl:[7,246],test:[4,6,12,14,40,51,58,59,60,62,65,68,72,76,81,82,83,129,131,132,182,209,210,223,226,228,229,230,231,232,233,234,235,238,241,247,253,254,255,256,258,259,261,266,269,274,276,286,289,292],test_assert:[229,230,232,267],test_assert_fat:[228,267],test_cas:[228,267],test_case_1:230,test_case_2:230,test_case_3:230,test_case_nam:[229,230],test_datetime_parse_simpl:267,test_datetime_suit:267,test_json:267,test_json_util:267,test_project:45,test_suit:[229,230,267],test_suite_nam:232,testbench:[7,62],testcas:[7,267],testnam:76,testutil:[7,181,267],text:[40,49,70,90,131,172,215,223,231,260,285,288],textual:1,tgt:130,tgz:4,than:[3,7,14,15,21,30,73,90,92,93,94,97,99,100,101,102,129,133,153,164,167,180,191,195,212,215,223,225,228,230,243,247,253,254,255,259,276,282,289],thank:31,thee:97,thei:[1,6,14,21,30,31,62,85,88,90,91,93,94,99,100,129,130,135,170,180,193,223,224,226,233,236,242,249,250,251,253,254,255,264,265,267,269,270,272,274,278],their_key_dist:28,them:[2,9,14,56,90,94,99,100,161,178,180,196,223,224,226,243,247,249,254,255,256,267,268,269,276,277,292],themselv:[90,93,253],theori:[14,56,226],therebi:[99,141],therefor:[21,91,129,149,153,161,243,271],thi:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,19,21,22,23,24,25,26,27,28,30,31,32,33,34,35,42,44,53,54,56,58,59,60,61,62,64,65,67,72,73,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,129,130,131,133,135,136,137,138,139,141,142,143,144,147,153,155,156,157,159,160,161,162,163,165,167,169,170,172,173,174,175,176,177,179,180,181,182,183,184,186,187,188,189,191,193,194,195,196,197,200,201,202,203,204,205,206,207,208,209,210,211,212,213,215,216,217,218,220,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,268,269,270,271,274,275,276,277,278,279,280,281,282,284,285,286,287,288,289,290,292],thing:[1,14,22,25,27,56,62,91,94,97,98,135,188,207,223,254,255,267,270,274,275,276,280,282],thingi:[208,289,290],thingy_boot:282,thingy_debug:[282,289,290],thingy_my_sensor:282,think:[10,14,129,276],third:[6,20,101,247,249,256,268,276],thorough:270,those:[1,14,32,33,40,56,58,59,60,62,94,97,129,138,142,223,236,270,274,275,276],though:[14,90,129,180,188,212,223],thought:[14,276],thread:[9,246,256,260,262],three:[2,11,20,60,62,90,129,131,167,206,223,224,226,240,243,246,248,249,255,256,262,264],through:[14,22,24,62,63,90,100,129,134,141,147,152,155,156,157,162,165,174,175,182,191,200,212,238,248,250,252,255,256,258,262,267,268,274,275,276,279,281,284],throughout:[1,94,267],throughput:[14,22],thrown:6,thu:[90,94,99,129,135,174,175,187,188,191,243],tick:[14,85,87,92,97,98,99,101,131,188,193,215,243,258,259,275,282],ticker:85,ticket:10,tickl:[98,195],tid:[78,275,285,288],tie:223,tied:[14,153],ties:[90,246],time:[1,7,9,11,12,20,21,22,23,26,28,32,35,44,58,59,60,61,62,78,83,84,85,88,90,93,94,97,98,99,100,129,131,137,141,152,161,162,180,182,195,207,215,223,224,236,240,242,243,246,249,251,253,254,255,259,261,264,267,268,274,275,276,278,282,284,289],time_datetim:[223,282],time_datetime_test:267,time_in_flight:90,timelin:14,timeout:[21,28,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,92,99,188,241,275],timer:[14,25,85,87,88,94,98,182,190,195,212,282],timer_0:25,timer_4:264,timer_5:25,timer_ev_cb:[258,282],timer_interrupt_task:240,timer_num:193,timestamp:[73,207],timev:101,timezon:[101,267],timo:88,timo_func:85,timtest:[7,62],ting:[254,255],tini:[262,288],tinycbor:[7,277],tinycrypt:[7,14],tinyprintf:102,tip:98,titl:[8,287],tlm:254,tlv:[28,129],tmp:[58,60,81,83,170,223],tmpstr:282,tmr:193,todo:[62,180,254,255],togeth:[1,44,56,62,90,138,180,223,250,262,276],togetherth:14,toggl:[7,100,187,240,243,258],token:[76,93,99,215,271],told:196,too:[21,90,93,101,135,161,162,180,183,225,275],took:260,tool:[1,2,3,5,6,7,9,12,13,14,40,55,58,59,62,63,64,67,79,80,81,82,93,94,95,97,134,135,224,225,226,233,237,238,240,241,245,246,247,256,257,262,264,265,267,268,269,270,271,276,277,282,284,286,287,289,290,292],toolbox:2,toolchain:[2,3,5,7,12,14,34,60,64,238,241,247,257,268,284,287,292],toolkit:3,tools_1:[58,59,60,82,83],top:[1,10,12,36,62,90,100,135,174,188,225,247,254,255,267,276],topic:1,total:[9,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,100,102,129,180,259,261,264,276],tour:248,track:[20,22,23,101,129,180],tradeoff:223,trail:[90,129],trailer:129,transact:[21,188,191],transfer:[23,191,275],transform:180,transit:129,translat:[187,254],transmiss:[21,28,191,194,219,264],transmit:[14,30,32,131,188,191,264],transmitt:194,transport:[21,22,28,81,131,134,226,241,246,247,256,260,275,276,277,279,281,284],travers:[90,155,156,157,162,165],traverse_dir:[155,156,157,162,165],treat:[141,201],tree:[1,6,7,14,51,56,62,94,160,246],tri:[3,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,130,137,225,264],trial:94,tricki:100,trig:187,trigger:[6,10,88,187],trim:90,trip:98,triplet:207,troubleshoot:[224,225],truncat:[158,170,171,173],truncate_test:267,trust:[23,28,275],tt_chr_f:253,tt_svc_type_p:253,ttl:[247,288],tty:[8,258,268,275,278,285,288],ttys002:67,ttys003:67,ttys005:286,ttys012:[285,288],ttys10:8,ttys2:[8,258,268,278,285,288],ttys5:8,ttyusb0:[14,67,247],ttyusb2:[8,268,285,288],ttyusb:[8,258,268,278,285,288],tu_any_fail:[234,267],tu_case_init_fn_t:233,tu_case_report_fn_t:233,tu_config:[233,234],tu_init:233,tu_restart_fn_t:233,tu_suite_init_fn_t:233,tupl:101,turn:[14,25,135,182,183,187,223,238,246,247,257,258,261,269,270,278,285],tutiori:[74,77],tutori:[2,3,6,7,8,12,14,22,24,60,78,208,209,213,214,215,233,237,238,240,241,243,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,267,268,274,275,276,277,278,279,280,281,282,285,286,288],tv_sec:[101,267,282],tv_usec:[101,267,282],tvp:101,tweak:152,two:[2,3,12,14,19,20,22,23,24,28,32,44,46,51,56,62,67,90,91,92,93,94,96,100,101,129,131,133,174,180,188,206,207,215,221,223,224,225,226,237,238,240,243,246,247,249,251,254,255,256,258,259,260,261,262,263,264,267,268,269,270,271,272,275,276,277,278,281,282,285,288],tx_data:275,tx_done:194,tx_func:194,tx_len:275,tx_off:275,tx_phys_mask:28,tx_power_level:[28,30],tx_time_on_air:264,txbuf:191,txd:264,txpower:264,txrx:191,txrx_cb:191,txt:[14,71,154,158,161,164,171,172,173,290],type:[1,7,8,10,12,14,20,21,24,28,30,31,32,40,44,46,47,54,56,58,59,60,62,67,85,90,91,94,97,100,129,130,131,134,161,162,177,178,180,187,191,194,200,201,205,206,208,211,213,215,218,225,226,228,229,230,231,232,237,240,241,243,246,247,249,250,251,252,253,254,256,259,260,261,262,264,267,268,269,270,271,274,275,276,280,281,282,285,286,288,289,290],typedef:[27,88,91,98,100,101,130,131,151,187,191,193,194,200,207,215],typic:[3,9,22,27,32,56,62,90,93,94,95,98,129,131,135,174,175,182,184,187,188,191,206,207,223,224,226,233,249,254,255,267],tz_dsttime:[101,267],tz_minuteswest:[101,267],u8_len:137,uart0:[131,275,286],uart1:275,uart:[7,8,14,22,56,97,131,135,189,218,238,246,247,259,260,261,262,263,264,275,282,289],uart_0_pin_rx:275,uart_0_pin_tx:275,uart_bitbang:[189,259],uart_flow_control_non:131,uart_hal:[7,260,261,262],uart_rx_char:194,uartno:275,ubuntu:[4,6,7,58,81],uci:24,udev:260,udp:67,uext:288,uicr:24,uid:254,uint16:[28,29],uint16_max:28,uint16_t:[21,90,91,92,98,99,100,129,136,141,142,180,188,191,200,207,218,224,251,274,275,276],uint32:[28,72],uint32_max:28,uint32_t:[85,87,90,91,92,99,100,101,129,136,141,149,153,154,158,159,161,163,164,169,172,173,175,176,180,183,185,188,190,191,193,195,206,207,209,224],uint64:28,uint64_t:200,uint8:28,uint8_max:28,uint8_t:[24,33,88,90,91,92,94,98,100,129,131,135,136,141,149,153,154,155,156,157,161,162,163,164,165,169,172,175,180,183,185,186,188,191,194,200,206,207,209,218,224,249,251,254,255,275,276],uint_max:205,uinteg:[200,205],ultim:251,umbrella:223,unabl:[2,180,256,259,260,263],unaccept:21,unadorn:21,unam:2,unc_t:215,unchang:[94,180],unconfirm:264,und:[28,31],undefin:[83,183,226],under:[4,7,10,11,12,14,21,27,35,56,62,72,102,130,135,215,253,256,260,261,263,275,276],underli:[97,135,141,153,161,162,181,182,191,207],underlin:244,understand:[7,14,101,207,223,236,237,241,264,269,276],understood:[161,228],underwai:129,undesir:93,undirect:[28,249],unexpect:[21,155,156,157,162,165,168],unexpectedli:[21,267],unfortun:14,unicast:32,unicod:152,unidirect:28,unifi:135,uniform:[30,60],uniformli:63,uninstal:7,unint32:72,uninterpret:226,union:[180,200,251],uniqu:[9,20,33,94,180,183,206,224,225,226,254,264],unit:[1,7,14,21,28,40,52,58,59,60,85,100,129,226,267,292],unittest:[7,46,56,62,226,246,267,275],univers:[14,194],unix:[2,60,153,237],unknown:[21,225],unlabel:275,unless:[28,100,129,174,188,196,226,275,276],unlicens:22,unlik:[21,91,267],unlink:[59,61,82,84,154,162,167,170],unlink_test:267,unlock:[207,212],unmet:94,unpack:[58,60],unplug:263,unpredict:162,unprovis:32,unrecogn:14,unregist:211,unresolv:[182,267],unrespons:21,unset:[51,129],unsign:[100,200,224,263,282],unspecifi:[21,43],unstabl:[58,59,81,82],unsuccess:188,unsupport:[21,253],unsur:180,unsync:27,untar:4,until:[14,21,27,62,87,88,90,93,99,131,141,180,188,191,194,249,254,255,264,269],unuesd:252,unus:[72,274,275,276],unwritten:129,updat:[2,4,14,16,21,28,31,37,38,50,53,58,59,60,61,81,82,84,90,129,143,180,226,250,252,258,259,265,267,274,276,277,282],upgrad:[2,40,57,60,80,94,129,131,237,238,247,256,268,289,292],uplink:264,uplink_cntr:264,uplink_freq:264,upload:[14,44,71,72,153,196,223,241,259],upon:[1,3,10,27,56,90,129,180,224,252],upper:[24,180,194,226],uppercas:210,upstream:133,uri:[28,30,134],url:[28,254,267,269],url_bodi:254,url_body_len:254,url_schem:254,url_suffix:254,usabl:[1,91,94,246,254],usag:[1,9,58,59,60,63,81,82,83,90,100,135,136,153,174,180,188,207,215,220,224,226,243,264,275,286],usart6_rx:288,usart6_tx:288,usb:[2,3,8,14,22,43,67,238,240,241,243,247,256,257,259,260,261,262,263,264,268,276,278,284,285,287,288],usbmodem14211:67,usbmodem14221:67,usbmodem401322:8,usbseri:[8,258,268,275,278,285,288],usbttlseri:247,use:[1,4,5,6,7,8,11,12,14,15,20,21,22,23,25,28,31,33,42,46,51,52,56,57,59,60,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,82,83,85,87,88,94,95,97,99,100,129,130,131,132,135,137,141,142,152,153,166,167,170,174,177,178,180,181,188,191,193,200,201,202,203,204,205,206,207,208,209,210,211,212,215,216,217,220,221,223,224,225,226,233,237,238,239,240,241,242,243,245,246,247,249,250,251,252,254,255,256,257,258,259,262,264,265,267,268,270,271,274,275,276,277,278,281,282,284,285,286,287,288,289,290],use_wl:28,use_wl_inita:28,usec:[87,278,282],used:[6,7,11,12,14,20,21,23,24,25,28,30,31,32,35,47,50,62,67,73,85,87,90,91,92,94,99,100,101,102,129,130,131,136,137,141,144,152,153,157,180,185,188,189,191,193,195,200,207,208,209,215,223,224,225,226,228,229,230,231,232,235,236,237,242,243,247,249,251,252,253,254,255,256,264,267,268,269,270,276,277,278],useful:[3,14,21,93,172,209,246,269],user:[1,2,4,6,7,8,9,19,21,23,25,49,56,59,60,62,79,81,82,83,85,88,90,91,94,95,98,129,131,132,135,136,141,147,153,174,183,191,192,193,194,214,223,224,225,226,234,237,240,253,256,262,264,268,269,270,271,275,276,282,288],user_defined_head:90,user_hdr:90,user_hdr_len:90,user_id:[225,226],user_manu:237,user_pkthdr_len:90,usernam:[10,49,60,269],uses:[2,4,6,7,8,12,15,21,22,23,24,25,31,33,56,66,67,68,69,70,71,72,73,74,75,76,77,78,79,87,88,94,98,101,102,129,131,132,133,134,135,137,141,152,153,180,182,187,188,206,207,208,209,211,212,215,217,221,225,226,233,235,238,240,241,251,252,253,256,258,261,268,269,271,275,277,278,279,282,285,288],using:[1,2,4,6,7,8,10,11,12,20,21,22,25,27,28,29,30,32,34,37,38,44,45,58,59,60,61,62,64,67,77,81,82,83,84,85,87,88,90,92,93,95,96,97,98,99,100,101,102,129,130,135,141,144,146,151,152,153,161,180,182,187,188,190,191,193,195,200,209,210,212,215,223,224,226,229,230,232,233,237,238,240,241,243,244,246,247,253,255,256,257,258,259,260,261,262,263,264,267,268,274,275,276,277,279,282,286,287,289,290],usr:[4,6,11,37,58,59,60,61,81,82,83,84],usu:96,usual:[14,25,90,91,102,135,204,206],utc:[69,101,267],utctim:101,utf:30,util:[7,11,21,22,32,93,102,131,152,153,189,191,206,226,238,267],util_cbmem:282,util_cbmem_test:7,util_crc:[282,286,288],util_mem:[7,256,258,259,260,261,262,263,264,268,278,282,285,286,288],util_pars:[264,278,282],uuid128:[28,30,251,253,255],uuid128_is_complet:[28,30],uuid16:[28,29,30,251,274,276],uuid16_is_complet:[28,30],uuid32:[28,30],uuid32_is_complet:[28,30],uuid:[28,29,30,31,33,67,251,253,255,274,276,277],uvp:101,v10:282,v14:260,v25:260,va_arg:209,va_list:[228,231],val:[24,25,40,51,58,59,60,62,94,130,184,187,191,201,206,224,225,226,238,254,255,258,264,275,277],val_len_max:130,val_str:130,valid:[21,40,51,54,58,59,60,62,67,73,90,129,136,141,151,153,170,177,178,180,188,191,207,251,267,275,276],valu:[1,4,7,12,21,24,25,28,29,30,31,38,40,43,47,51,54,58,59,60,62,63,65,66,67,69,72,73,76,81,82,83,86,90,91,94,99,100,101,129,130,135,175,176,180,183,187,188,191,192,193,194,195,200,206,208,210,212,215,223,224,238,240,241,247,250,251,252,253,254,255,265,269,270,274,275,276,278,279,281,282,284,289],valuabl:269,value1:[51,226],value2:[51,226],valuen:226,vanilla:152,vari:[9,90,97,129],variabl:[1,4,11,14,25,35,38,51,60,62,63,66,90,91,100,130,131,174,200,206,207,208,209,212,220,223,228,231,237,243,249,251,264,269,270,277,278,279,282],variant:[23,96,187],variat:12,varieti:[4,252],variou:[24,25,62,90,129,133,135,182,252,257,264],vdd:[14,276],vector:278,vendor:269,ver:[1,7,56,198,199,237,247,256,268,269,270,271,275,276],ver_len:199,ver_str:199,verb:63,verbos:[1,7,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,256,268,275],veri:[1,9,32,56,90,100,102,129,180,208,244,245,253,258,259,269,276,277,289],verif:23,verifi:[23,58,60,81,83,129,180,182,209,223,241,243,259,260,261,263,264,267,276,277],versa:[8,223],version:[1,2,4,6,7,11,12,14,22,23,35,38,40,42,44,48,56,57,61,80,84,85,131,141,180,196,198,199,206,223,226,237,238,241,247,255,256,258,259,260,261,262,263,264,268,272,275,276,278,282,285,288,289,290],via:[8,14,21,27,43,56,90,91,129,131,135,153,155,156,157,162,165,174,175,177,180,181,182,188,212,215,223,224,226,241,247,248,249,251,259,261,264,269,275,276,278,279,281,284],vice:[8,223],vid:260,view:[1,7,10,12,31,51,63,67,210,214,215,223,224,226,269,276,281,290],vim:60,vin:278,violat:21,viper:11,virtual:[14,67,184,187],virtualbox:256,visibl:[2,29],visit:[14,40,58,59,60],visual:[5,13,290],visualstudio:12,vol:23,volatil:260,voltag:[135,137,182,192,260,276],volum:[30,152],vp_len:130,vscode:12,vtref:[259,261,264,276],vvp:101,wai:[2,3,9,14,22,31,32,60,62,85,88,93,100,101,131,153,187,188,189,206,223,225,244,269,270,271,275,276],wait:[14,85,86,87,88,90,92,93,99,100,137,183,188,191,226,240,243,262,264,274,275,276,284],waitin:92,wake:[14,86,90,93,99,100,183,212,243],wakeup:[100,212],walk:[90,100,147,151,180,206,276],wall:6,wallclock:[85,101],wanda:82,want:[1,3,11,14,19,51,58,59,60,61,62,81,84,85,86,90,91,92,93,98,99,100,129,130,131,151,153,170,187,206,207,208,211,224,236,238,242,246,248,249,251,253,254,255,256,257,259,260,261,262,264,265,267,269,275,276,279,289,292],warn:[1,6,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,225,251,259,275],warranti:[4,256,275,276,282,289,290],wasn:14,watch:246,watchdog:[93,98,192],watchpoint:[256,260],wdog:68,wear:246,wear_level_test:267,wearabl:9,web:[237,244],webfreak:12,websit:244,weird:14,welcom:[8,135,245,268,275,278],well:[8,14,23,41,56,90,91,97,99,129,130,135,196,228,236,250,264,275,276],were:[30,74,90,129,182,223,270,274,275],werror:[6,51],wes:264,west:101,wfi:260,wget:[58,60,81,83],what:[7,8,14,21,42,56,97,99,136,141,174,175,180,208,209,223,226,239,243,249,252,253,254,255,267,270,274,275,276],whatev:[24,99,268],wheel:[8,237],when:[1,2,6,7,8,10,12,14,15,21,23,24,25,27,30,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,67,73,82,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,129,130,131,132,135,141,142,143,146,152,153,155,156,157,161,162,163,165,170,172,174,175,180,187,188,191,193,194,196,200,203,207,208,209,211,212,213,215,218,221,223,224,225,226,231,233,235,238,240,241,243,244,246,247,248,249,252,253,254,255,256,259,260,262,263,267,269,270,271,275,276,277,278,279,280,281,282,286,289],whenev:[22,27,91,135,180,200,211,251,253,282],where:[8,9,10,11,14,23,30,32,36,38,51,56,60,61,62,84,90,91,94,96,97,100,129,130,131,141,142,143,146,149,151,180,187,190,191,194,199,200,206,223,225,226,238,243,253,254,255,258,259,264,268,275,276,278,285,288],wherea:[90,270],whether:[10,12,14,23,85,88,91,101,129,141,156,188,191,192,208,209,210,212,213,214,215,224,226,235,249,251,253,267,278,280,281,282],which:[1,2,4,8,11,14,15,20,21,22,31,33,35,40,56,58,59,60,62,63,67,81,82,83,85,86,87,90,91,93,94,97,98,99,100,101,102,129,130,135,136,138,141,151,152,153,180,183,184,187,188,191,193,196,200,207,209,223,224,225,228,231,234,235,237,241,243,249,250,251,252,253,254,255,256,264,267,268,269,270,275,276,286,289],white:[23,28],whitelist:28,who:10,whole:[14,136],whose:[62,63,180,212],why:[10,14,243],wide:[22,223],wifi:[7,268],wifi_connect:268,wifi_init:268,wifi_request_scan:268,wikipedia:[188,191],winc1500_wifi:268,window:[5,6,7,9,12,14,28,57,67,79,80,94,131,241,247,256,258,259,260,261,262,263,264,268,278,285,288,289],winusb:[260,262,288],wipe:145,wire:[8,188,191,264,275,276,288],wireless:22,wish:[6,10,174,175,188,243,269,287],withdraw:10,within:[1,12,21,32,42,56,90,94,95,97,129,135,141,146,149,151,174,175,180,182,187,198,200,206,209,210,211,215,224,233,243,252,262,267,269,275],without:[6,10,14,23,25,29,31,91,129,153,162,174,175,180,181,206,215,222,223,224,226,241,256,267,275,276,280],wno:6,won:[8,223,276],wonder:276,word:[6,56,90,93,99,129,180,191,251,256,269,282,289,290],word_siz:191,work:[2,4,8,10,11,14,23,25,56,62,63,86,90,92,93,94,96,97,99,100,129,131,135,136,161,182,224,237,238,242,243,246,247,250,256,258,264,267,272,274,275,276,279,281,284],work_stack:243,work_stack_s:243,work_task:243,work_task_handl:243,work_task_prio:243,workaround:14,workspac:[1,2,11,40,58,59,60,61,81,83,84],workspaceroot:12,world:[12,22,194,249,254,255,257,271,292],worri:93,worth:[1,95,275],would:[5,12,14,59,60,82,83,85,90,93,99,129,130,131,138,141,182,187,188,191,203,221,223,224,233,243,246,262,264,267,269,270,275,276,284,288],wrap:[101,224,258],wrapper:88,write:[1,9,14,15,21,29,62,65,66,81,82,83,95,129,130,131,135,136,137,141,142,143,147,152,153,158,159,169,171,173,174,175,182,185,187,188,194,196,198,201,202,203,204,206,219,224,231,240,243,245,250,252,253,264,266,275,276,277,284],write_cmd_rx:[77,238],write_cmd_tx:[77,238],write_config:[158,171],write_id:173,write_req_rx:[77,238],write_req_tx:[77,238],write_rsp_rx:[77,238],write_rsp_tx:[77,238],written:[11,14,21,24,60,83,93,129,141,142,143,146,151,157,158,161,164,170,171,172,174,175,180,188,191,251,253,258,270],wrong:[14,43,276],wsl:[12,60],www:[14,102,237,247,256,275,276,282,288,289,290],x86:[4,12],x86_64:[256,282,289,290],xml:[7,89],xpf:4,xpsr:[256,260,262],xtal_32768:94,xtal_32768_synth:25,xxx:[6,94,100,136],xxx_branch_0_8_0:[269,270],xxx_branch_1_0_0:[269,270],xxx_branch_1_0_2:[269,270],xxx_branch_1_1_0:[269,270],xxx_branch_1_1_2:[269,270],xxx_branch_1_2_0:[269,270],xxx_branch_1_2_1:[269,270],xxxx:182,xzf:[58,60,61,83,84],yai:275,yaml:11,year:32,yes:[23,264],yesno:28,yet:[7,14,93,97,130,241,246,269,270,276],yield:93,yml:[1,6,7,42,44,51,53,54,56,62,95,96,102,130,131,136,137,153,174,181,206,208,215,223,224,225,226,237,238,240,246,247,256,258,264,265,267,268,269,271,272,275,276,277,278,282],you:[1,3,4,5,6,7,8,9,10,11,12,14,19,20,31,34,35,36,40,42,44,46,47,48,51,52,53,54,55,56,58,59,60,61,62,64,65,67,69,77,81,82,83,84,85,93,94,95,96,97,102,129,130,131,132,133,135,138,139,141,142,143,147,156,161,162,164,170,172,174,175,181,182,184,187,188,190,200,203,206,207,208,210,211,212,215,216,217,220,221,222,223,224,225,226,227,233,236,238,240,241,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,268,269,270,271,274,276,277,278,279,280,281,282,284,285,286,287,288,289,290,292],your:[1,3,4,6,8,10,14,20,31,40,51,53,56,57,59,60,61,62,71,72,80,82,83,84,85,93,94,95,96,97,98,100,132,133,134,135,136,137,139,141,152,174,182,206,208,215,221,223,225,226,233,240,241,242,244,245,246,247,248,249,250,252,253,254,255,257,258,264,265,270,274,275,276,277,279,280,284,285,287,288,289,290,292],yourself:[2,10,14,31,93,94,248,275,292],ype:[254,255],yym:6,zadig:[260,262,288],zero:[12,25,85,90,91,94,100,101,130,145,149,151,158,170,171,176,183,187,188,191,192,193,194,200,216,218,219,220,226,243,253,254,255,257,264,267,268,269,282,292],zillion:14,zip:[4,259,276],zone:101},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","FAQ - Administrative","Contributing to Newt or Newtmgr Tools","Developing Mynewt Applications with Visual Studio Code","Appendix","Mynewt OS related FAQ","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","BLE User Guide","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","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","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","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","fs_close","fs_closedir","fs_dirent_is_dir","fs_dirent_name","fs_filelen","fs_getpos","fs_mkdir","fs_open","fs_opendir","struct fs_ops","fs_read","fs_readdir","fs_register","fs_rename","fs/fs Return Codes","fs_seek","fs_unlink","fs_write","fsutil_read_file","fsutil_write_file","Newtron Flash Filesystem (nffs)","struct nffs_area_desc","struct nffs_config","nffs_detect","nffs_format","nffs_init","Internals of 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","json_encode_object_entry","json_encode_object_finish","json_encode_object_key","json_encode_object_start","json_read_object","Logging","Sensor API","Creating and Configuring a Sensor Device","Sensor Device Driver","Mynewt Sensor Framework Overview","Sensor Listener API","Sensor Manager API","OIC Sensor Support","Sensor Shell Command","Shell","shell_cmd_register","shell_evq_set","shell_nlip_input_register","shell_nlip_output","shell_register","shell_register_app_cmd_handler","shell_register_default_module","Split Images","Statistics Module","Validation and Error Messages","Compile-Time Configuration and Initialization","System Modules","TEST_ASSERT","TEST_CASE","TEST_CASE_DECL","TEST_PASS","TEST_SUITE","testutil","tu_init","tu_restart","OS User Guide","Blinky, your \u201cHello World!\u201d, on STM32F303 Discovery","Enabling Newt Manager in Your Application","How to Define a Target","How to Use Event Queues to Manage Multiple Events","Over-the-Air Image Upgrade","Pin Wheel Modifications to \u201cBlinky\u201d on STM32F3 Discovery","Tasks and Priority Management","Try Markdown","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","LoRaWAN App","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","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":[153,182],"default":[243,258,280],"function":[14,94,101,102,138,141,196,200,207,209,211,212,226,233,243,251,253,277,280],"import":237,"new":[7,45,95,96,180,184,250,280,282,285,286,288],"public":24,"return":[21,137,139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,177,178,179,197,198,199,201,202,203,204,205,216,217,218,219,220,221,222,228,229,230,231,232,234,235],"switch":[102,243],"try":[244,267],Adding:[59,82,224,269,276,277,280,282],For:4,One:14,The:[152,258],Use:[2,238,240,247,258,275,282,285,288],Used:207,Uses:206,Using:[8,58,81,90,131,134,189,278,282,288],acceleromet:280,access:[247,251,271],adafruit:14,adc:276,add:[67,94,254,255,274,275,276,277,282],addit:[269,276],address:[20,24,31,254,255],administr:10,advertis:[14,28,30,31,249,254,255],air:[241,273,274,275],all:[14,240],altern:14,ambigu:225,analog:276,apach:[9,32,93],api:[28,29,31,85,86,87,88,89,90,91,92,98,99,100,101,130,131,152,153,174,181,183,184,185,187,188,190,191,192,193,194,195,206,207,211,212,282],app:[9,31,62,223,247,250,264,282,284,290],app_get_light:277,app_set_light:277,appendix:[13,94],applic:[7,12,33,93,206,207,208,223,237,238,240,243,246,247,254,255,256,258,259,260,261,262,263,264,265,268,276,277,278,279,280,282,285,288],apt:[58,81],architectur:95,arduino:[8,256,259,268],area:[174,180,225],argument:[139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,169,170,171,172,173,177,178,197,198,199,201,202,203,204,205,216,217,218,219,220,222,228,229,230,231,232,234,235],arm:[4,14],artifact:62,assert:267,assign:225,associ:12,att:[15,21],attach:247,attribut:[31,253],autocomplet:37,avail:[28,29,40,44,51,257,269,284,287],bare:246,baselibc:102,bash:37,basic:93,beacon:[254,255],bearer:32,begin:[31,249],being:251,belong:31,between:[14,268],binari:[58,60,81,83],bit:6,bitbang:14,ble:[14,22,246,248,250,254,255,276,277],ble_gap_disc_param:14,blehci:247,blemesh:14,bleprph_gap_ev:252,bleprph_oic:277,blink:237,blink_rigado:49,blinki:[7,237,242,256,257,258,259,260,261,262,263],block:[14,180],bluetooth:[14,22,32,245,247,274],bluez:247,bno055:278,bno055_log:209,bno055_stat:209,board:[97,208,256,259,260,261,262,263,264,268,276,277,278,279,285,288],bone:246,boot:[14,129,223],bootload:[14,129,247,256,259,260,261,262,263,264,268,278,282,285,288],branch:[59,82],brew:6,bsp:[54,94,97,183,225],btmgmt:247,btmon:247,btshell:[28,29,31],buffer:141,bug:10,build:[7,9,12,14,35,56,62,237,238,242,243,246,247,256,258,259,260,261,262,263,264,268,276,277,278,279,280,282,285,286,288],cach:180,call:[14,280],callback:252,callout:[85,240],can:10,cannot:280,categori:292,chang:[34,64,280],channel:28,characterist:[31,248,251],check:[58,59,60,81,82,83,94,98,129,212],choos:267,circular:141,clean:36,clear:263,cli:[130,275],client:[15,17],clock:25,close:264,cmsis_nvic:14,code:[12,14,21,94,95,168,224,265,267],collect:180,command:[12,14,28,29,40,44,51,63,65,67,133,209,214,215,238,247,275,286],committ:10,commun:[8,238,258],compil:[14,95,226],complet:[37,215],compon:[22,269],comput:[58,81,268,278,282],concept:[1,223],conclus:[246,254,255,276],condit:226,config:[66,130],configur:[1,12,24,25,28,29,31,130,152,206,207,208,209,212,225,226,237,238,254,255,258,280],conflict:226,congratul:267,conn:67,connect:[14,28,31,238,241,247,256,258,259,260,261,262,263,264,268,276,277,278,279,282,285,286,288,289],consider:243,consol:[131,215,224,258,268,278,282,289],contain:2,content:[34,64],context:243,contribut:11,control:[25,247,254,255,277,278,279,284],copi:[94,277],core:[14,21,93,97],correct:14,cpu:[87,95,97],crash:68,creat:[7,38,90,94,95,184,208,237,238,241,246,247,250,254,255,256,259,260,261,262,263,264,267,268,270,275,276,277,278,279,282,285,286,288],creation:93,cross:4,crystal:25,current:223,custom:[98,132,238],data:[30,101,138,141,153,174,180,188,196,200,207,209,211,212,215,233,249,264,277,278,279,280,281,282],datetim:69,debian:[58,81],debug:[12,39,62,94],debugg:[4,12],declar:224,decod:200,defin:[12,94,209,224,239],definit:[186,225,226],delai:14,delet:[67,277],depend:[7,62,94,97,136,137,181,182,237,238,258,270,277,282],descript:[35,36,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,66,67,68,69,70,71,72,73,74,75,76,77,78,85,86,87,88,89,91,92,97,98,99,100,101,102,131,135,138,141,152,153,174,182,183,185,186,187,188,190,191,192,193,194,195,196,200,215,223,233,278],descriptor:[31,248,253,269],design:[135,182],detail:224,detect:180,determin:251,develop:[12,261,282],devic:[2,14,24,28,31,130,207,208,209,241,247,277,278,279,280,284],differ:14,direct:31,directori:[62,180],disabl:28,discov:31,discoveri:[28,237,242,260],disk:180,disk_op:153,displai:31,docker:2,document:[10,14,34,64],doe:269,download:[11,58,62,81,94,237,242,264,276],driver:[14,135,207,209,275,276,280],duplic:225,eabi:14,earli:14,echo:70,eddyston:254,edit:10,editor:10,elf:14,elua:138,empti:[254,255],emul:278,enabl:[2,28,37,215,223,224,238,258,268,277,278,279,281,282],encod:200,end:14,endif:[208,209],energi:245,enhanc:174,enter:246,environ:11,equip:243,eras:259,error:[14,225],establish:[31,247,268],etap:276,event:[27,88,240,252,258],everyth:[2,264,276],exactli:14,exampl:[8,21,22,27,35,36,38,39,40,44,45,46,47,48,49,51,52,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,88,93,130,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,160,161,162,164,165,167,169,170,171,172,173,177,178,182,186,194,198,199,201,202,203,204,205,216,218,219,221,222,225,226,228,229,230,232,233,234,235,240],execut:[6,237,242,259,260,261,263,264,276,286,289,290],exist:[238,258,269,278],explor:7,express:225,extend:[28,282],extens:[2,12],extern:[237,256,268],faq:[10,14],fat:152,fcb:141,fcb_append:142,fcb_append_finish:143,fcb_append_to_scratch:144,fcb_clear:145,fcb_getnext:146,fcb_init:147,fcb_is_empti:148,fcb_offset_last_n:149,fcb_rotat:150,fcb_walk:151,featur:[7,10,22,23,29,32,93],fetch:[7,256,268],field:30,file:[14,94,136,137,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,180,181,224,230,270,277,280,282],filesystem:[153,174],fill:94,find:269,firmwar:14,first:[7,9],flag:[35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78],flash:[94,129,136,141,174,180,185,225,259,263],forget:14,format:[14,129,180],framework:[134,209,210,238,281],from:[58,59,60,81,82,83,131,277,279,280],fs_close:154,fs_closedir:155,fs_dirent_is_dir:156,fs_dirent_nam:157,fs_filelen:158,fs_getpo:159,fs_mkdir:160,fs_op:163,fs_open:161,fs_opendir:162,fs_read:164,fs_readdir:165,fs_regist:166,fs_renam:167,fs_seek:169,fs_unlink:170,fs_write:171,fsutil_read_fil:172,fsutil_write_fil:173,ft232h:8,full:131,futur:174,gap:[16,28,252],garbag:180,gatt:[17,18,29,274],gcc:[6,14],gdb:6,gener:[23,31,135,182,226,240],get:[3,58,81,209],git:[10,60],global:[35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78],gpio:187,grei:14,group:14,guarante:252,guid:[22,56,79,236],hal:[97,184,189,275],hal_flash_int:186,hal_i2c:188,handler:[130,206,215],hardcod:24,hardwar:[24,182,237,264,276,278,289,290],hci:[21,247],header:[15,16,17,18,20,21,90,136,137,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,181,224,277,280],heading3:244,heading4:244,heap:89,hello:[237,256,259,260,261,262,263],help:[40,215],high:129,hold:224,homebrew:[59,82],host:[15,16,17,18,19,20,21,254,255],how:[10,102,226,239,240,265,269,277,280],i2c:188,iOS:14,ibeacon:255,ident:20,identifi:269,ignor:225,imag:[14,38,47,72,129,196,223,237,238,241,242,247,259,260,261,262,263,264,268,276,277,278,279,280,282,285,288],imgmgr_module_init:197,imgr_ver_pars:198,imgr_ver_str:199,immedi:14,implement:[95,135,206,209,224],includ:[31,209,224,253],indefinit:[254,255],info:41,inform:215,initi:[31,136,137,174,207,209,224,226,243,280],inod:180,input:[131,215],instal:[2,4,5,6,11,12,14,37,42,57,58,59,60,61,80,81,82,83,84,237,264,276],instead:282,integr:129,interfac:[181,184,207],intern:[174,180],interrupt:240,introduct:[9,15,16,17,18,19,20,21,32,56,94,240,248,267],invalid:225,invert:14,invok:133,issu:14,join:264,json:200,json_encode_object_entri:201,json_encode_object_finish:202,json_encode_object_kei:203,json_encode_object_start:204,json_read_object:205,kei:[14,23,28],kernel:93,kit:261,l2cap:[14,21,28],laptop:10,latest:[58,59,60,81,82,83],launch:290,layer:182,lead:14,led:[237,242],legaci:28,level:[129,206,241],libc:6,librari:[189,237],like:10,limit:129,line:215,link:4,linker:94,linux:[2,4,6,8,11,58,61,81,84],lis2dh12_onb:208,list:[10,65,102,138,141,196,200,207,211,212,223,233,244,254,255,278,282],listen:[211,282],load:[43,238,247,256,259,260,261,262,263,268,277,278,279,280,282,285,288],loader:223,log:[73,206,209,241],look:212,lorawan:264,low:245,lua_init:139,lua_main:140,mac:[2,4,6,8,11,59,61,82,84],macro:101,main:[243,258,277,280,282],make:10,manag:[9,21,56,64,79,132,133,196,212,238,240,243],manual:[58,81],map:[94,129],markdown:244,master:[59,82],mbuf:90,mcu:[14,94,96,97],measur:174,memori:[91,263],merg:10,mesh:[14,22,32],messag:[14,225],method:[24,58,81],mfg:44,mfghash:14,mgmt:132,mingw:60,minim:131,miscellan:[14,174],mkr1000:268,mmc:137,model:32,modif:242,modifi:[238,258,277,282],modul:[14,215,224,227],monitor:[247,279,281],more:[56,237],move:180,mpstat:74,mqueue:90,msy:90,msys2:60,multicast:14,multipl:[12,153,224,225,240],mutex:92,my_sensor_app:282,mynewt:[2,7,8,9,12,14,24,32,34,59,64,82,93,94,95,96,97,131,210,246,269,277,279,284],mynewt_v:[208,209],name:[31,215,224,226],nano:263,nativ:[5,6],need:[2,237,242,264,269,275,276,278,289,290],newt:[2,9,11,12,14,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,64,79,132,133,238],newtmgr:[11,14,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,84,133,215,224,238,241,285,286,288],newtron:174,next:[6,278],nfc:14,nff:[14,174,180],nffs_area_desc:175,nffs_config:176,nffs_detect:177,nffs_format:178,nffs_init:179,nimbl:[14,15,16,17,18,19,20,21,22,23,26,246,247,254,255],nmp:14,node:32,none:14,nordic:[8,285],normal:90,note:[56,101,138,139,140,142,143,144,145,146,147,148,149,150,151,154,157,159,160,161,162,166,167,169,171,172,175,176,197,198,199,217,224,228,231,276],notnul:225,nrf52840:14,nrf52:[14,261,276,278,285],nrf52_adc:276,nrf52dk:[8,14],nrf:24,object:[180,207,237,242,257,264,276,289,290],off:[208,278],oic:[134,213,277,279,281,284],oicmgr:238,olimex:[262,288],omgr_app_init:277,onboard:[208,282],onto:[256,268],open:[247,264],openocd:4,oper:[14,56,62,93,129,188,191,223],option:[238,259],orient:28,ota:264,other:[7,12,181,238,266,270],out:[14,267,269,270],output:[49,54,131],over:[215,241],overrid:[225,226],overview:[65,210,248,249,250,252,257,277,280,281,284,287],own:10,pack:2,packag:[1,7,58,62,81,94,97,131,181,206,207,210,225,226,238,246,256,267,268,275,277,278,282],packet:90,passiv:31,patch:10,peer:[21,31],perform:31,peripher:[248,250],persist:130,pin:[14,242],pkg:[14,46,94],platform:[8,182],poll:[207,212],pool:[90,91],port:[8,14,94,95,96,97,264],precis:14,preempt:243,prerequisit:[7,238,240,241,243,247,250,256,257,258,259,260,261,262,263,268,277,278,279,280,281,282,284,285,286,287,288,292],preview:[34,64],previou:[61,84],primo:259,principl:[135,182],printf:14,prioriti:[225,243],privaci:23,privat:271,pro:8,process:[215,258],produc:[6,62],profil:[14,238,241,286],project:[1,7,10,12,14,22,237,238,246,247,248,256,257,258,259,260,261,262,263,264,268,269,270,273,274,275,276,285,286,287,288],prompt:215,protect:263,protocol:[215,238,254,255],provis:32,pull:[2,10],put:240,qualiti:[273,274,275],queri:[285,288],question:[10,14],queue:[88,240,258],radio:14,ram:180,random:[14,24],rate:207,rational:56,read:[31,207,209,251,280,282],reboot:280,rebuild:[11,282],reconfigur:208,recoveri:129,redbear:263,reduc:[14,241,265],refer:[15,16,17,18,20,21,226],referenc:226,regist:[98,181,209,212,215,224,278],registr:253,relat:14,releas:[58,59,60,61,81,82,83,84],renam:180,repo:[269,270,272],repositori:[7,10,56,269,270,271,276],represent:180,request:10,requir:94,reset:[27,75,129],resign:47,resolut:270,resolv:[62,226,270],respond:27,restart:14,restrict:225,retriev:[223,224],review:[243,251],round:242,rtt:[282,289],run:[7,12,14,48,76,256,258,286,289,290],runtim:[24,130],safeti:153,sampl:[33,278,280],saniti:98,satisfi:94,scale:267,scan:31,schedul:86,scratch:180,script:[2,94],section:224,secur:[21,23,28],segger:[4,289,290],select:2,semant:14,semaphor:99,semiconductor:8,send:[31,247,264],sensor:[207,208,209,210,211,212,213,214,273,274,275,276,277,278,279,280,281,282,283,284],sensor_read:282,sensors_test:279,sequenc:223,serial:[8,14,215,247,258,268,285,288],server:18,servic:[31,248,253,274,276],set:[6,11,14,31,58,81,94,206,207,209,225,226,238,246,249,253,258,275,277,280,286],settl:25,setup:[3,8,14,26,268,289,290],shell:[209,214,215,258,282],shell_cmd_regist:216,shell_evq_set:217,shell_nlip_input_regist:218,shell_nlip_output:219,shell_regist:220,shell_register_app_cmd_handl:221,shell_register_default_modul:222,should:270,show:[31,67],sign:[129,237,259,260,261,262,263,264,268,276,285,288],signatur:251,sim:286,simul:7,singl:223,size:[14,49,265],skeleton:282,slinki:[285,286,287,288],slot:129,smart:[277,279,284],softwar:290,some:10,sourc:[7,11,56,58,60,81,83,238,254,255,275,277],space:180,special:101,specif:[95,270],specifi:[181,226],spi:191,split:223,stack:[243,254,255],start:[3,247,268],startup:94,stat:[77,209,224],state:[129,130,223],statist:224,statu:129,step:[11,241,257,277,278,279,280,282,287],stm32f303:237,stm32f3:[237,242],stm32f4:260,storag:28,struct:[153,163,175,176],structur:[63,101,138,141,153,174,180,196,200,207,211,212,215,233],stub:131,studio:12,stuff:275,sub:67,submit:10,suit:267,summari:21,support:[2,14,32,62,97,153,182,210,213,237,238,277,278,281,282],swap:129,sync:[14,27,50,254,255],syntax:14,syscfg:[206,223,226,277],sysinit_app:226,system:[14,25,56,93,152,153,181,192,225,226,227],systemview:290,tabl:224,talk:268,tap:[59,82],target:[1,24,51,62,94,237,238,239,242,246,247,250,256,258,259,260,261,262,263,264,268,276,278,282,285,286,288,289,290],task:[12,14,98,100,225,240,243,276],taskstat:78,tcp:268,templat:94,termin:278,test:[7,52,94,267,275],test_assert:228,test_cas:[229,230],test_case_decl:230,test_pass:231,test_suit:232,testutil:233,theori:[62,188,191,223],thingi:282,thread:153,through:224,tick:190,time:[14,25,87,101,226],timer:[193,240,258],togeth:240,tool:[4,11,34,56,60,83,291],toolchain:[4,6],topolog:32,transceiv:14,transport:[215,238],tree:275,trigger:14,tu_init:234,tu_restart:235,tutori:[223,257,284,287,292],type:[207,209,212,278],uart:194,undefin:225,under:267,undirect:31,unifi:223,unlink:180,updat:11,upgrad:[14,53,58,59,81,82,223,241,272],upload:258,usag:[35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,132,141],usb2:2,use:[10,58,81,90,93,269],user:[22,236],using:[14,56,285,288],val:54,valid:225,valu:[14,137,139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,169,170,171,172,173,177,178,179,197,198,199,201,202,203,204,205,207,209,216,217,218,219,220,221,222,225,226,228,229,230,231,232,234,235,277,280],variabl:224,vector:129,verif:[129,280],verifi:280,version:[55,58,59,60,81,82,83,269,270],via:[268,274,282],view:[277,278,279,282],violat:225,virtualbox:2,visual:12,wait:[254,255],want:[10,237],watch:[237,242],watchdog:195,water:276,welcom:9,what:[10,237,242,269],wheel:242,where:270,why:[90,93,269],window:[2,4,8,11,60,61,83,84],work:12,workspac:12,world:[237,256,259,260,261,262,263],would:10,wrapper:2,write:[31,34,64,180,251,263,267],yml:[14,94,270],you:[2,237,242,275],your:[2,7,9,11,12,58,81,181,189,224,237,238,243,256,259,260,261,262,263,267,268,269,278,282,286],zero:[14,256]}})
\ No newline at end of file
diff --git a/master/mkdocs/search_index.json b/master/mkdocs/search_index.json
index cbea9e9e0..d723bb66d 100644
--- a/master/mkdocs/search_index.json
+++ b/master/mkdocs/search_index.json
@@ -5462,7 +5462,7 @@
         }, 
         {
             "location": "/os/core_os/mqueue/mqueue/", 
-            "text": "Mqueue\n\n\nThe mqueue construct allows a task to wake up when it receives data.  Typically, this data is in the form of packets received over a network.  A common networking stack operation is to put a packet on a queue and post an event to the task monitoring that queue. When the task handles the event, it processes each packet on the packet queue.\n\n\n\n\nUsing Mqueue\n\n\nThe following code sample demonstrates how to use an mqueue.  In this example:\n\n\n\n\npackets are put on a receive queue\n\n\na task processes each packet on the queue (increments a receive counter)\n\n\n\n\nNot shown in the code example is a call \nmy_task_rx_data_func\n. Presumably, some other code will call this API. \n\n\n\n\nuint32_t\n \npkts_rxd\n;\n\nstruct\n \nos_mqueue\n \nrxpkt_q\n;\n\nstruct\n \nos_eventq\n \nmy_task_evq\n;\n\n\n/**\n\n\n * Removes each packet from the receive queue and processes it.\n\n\n */\n\n\nvoid\n\n\nprocess_rx_data_queue\n(\nvoid\n)\n{\n    \nstruct\n \nos_mbuf\n \n*om\n;\n\n    \nwhile\n ((\nom\n \n=\n \nos_mqueue_get\n(\nrxpkt_q\n)) \n!=\n \nNULL\n) {\n        \n++pkts_rxd\n;\n        \nos_mbuf_free_chain\n(\nom\n);\n    }\n}\n\n\n/**\n\n\n * Called when a packet is received.\n\n\n */\n\n\nint\n\n\nmy_task_rx_data_func\n(\nstruct\n \nos_mbuf\n \n*om\n)\n{\n    \nint\n \nrc\n;\n\n    \n/* Enqueue the received packet and wake up the listening task. */\n\n    \nrc\n \n=\n \nos_mqueue_put\n(\nrxpkt_q\n, \nmy_task_evq\n, \nom\n);\n    \nif\n (\nrc\n \n!=\n \n0\n) {\n        \nreturn\n \n-\n1\n;\n    }\n\n    \nreturn\n \n0\n;\n}\n\n\nvoid\n\n\nmy_task_handler\n(\nvoid\n \n*arg\n)\n{\n    \nstruct\n \nos_event\n \n*ev\n;\n    \nstruct\n \nos_callout_func\n \n*cf\n;\n    \nint\n \nrc\n;\n\n    \n/* Initialize eventq */\n\n    \nos_eventq_init\n(\nmy_task_evq\n);\n\n    \n/* Initialize mqueue */\n\n    \nos_mqueue_init\n(\nrxpkt_q\n, \nNULL\n);\n\n    \n/* Process each event posted to our eventq.  When there are no events to\n\n\n     * process, sleep until one arrives.\n\n\n     */\n\n    \nwhile\n (\n1\n) {\n        \nos_eventq_run\n(\nmy_task_evq\n);\n    }\n}\n\n\n\n\n\nData Structures\n\n\nstruct\n \nos_mqueue\n {\n    \nSTAILQ_HEAD\n(, \nos_mbuf_pkthdr\n) \nmq_head\n;\n    \nstruct\n \nos_event\n \nmq_ev\n;\n};\n\n\n\n\n\n\n\nList of Functions\n\n\nThe functions available in Mqueue are:\n\n\n\n\n\n\n\n\nFunction\n\n\nDescription\n\n\n\n\n\n\n\n\n\n\nos_mqueue_init\n\n\nInitializes an mqueue.\n\n\n\n\n\n\nos_mqueue_get\n\n\nRetrieves a packet off an Mqueue.\n\n\n\n\n\n\nos_mqueue_put\n\n\nAdds a packet (i.e. packet header mbuf) to an mqueue.", 
+            "text": "Mqueue\n\n\nThe mqueue construct allows a task to wake up when it receives data.  Typically, this data is in the form of packets received over a network.  A common networking stack operation is to put a packet on a queue and post an event to the task monitoring that queue. When the task handles the event, it processes each packet on the packet queue.\n\n\n\n\nUsing Mqueue\n\n\nThe following code sample demonstrates how to use an mqueue.  In this example:\n\n\n\n\npackets are put on a receive queue\n\n\na task processes each packet on the queue (increments a receive counter)\n\n\n\n\nNot shown in the code example is a call \nmy_task_rx_data_func\n. Presumably, some other code will call this API. \n\n\n\n\nuint32_t\n \npkts_rxd\n;\n\nstruct\n \nos_mqueue\n \nrxpkt_q\n;\n\nstruct\n \nos_eventq\n \nmy_task_evq\n;\n\n\n/**\n\n\n * Removes each packet from the receive queue and processes it.\n\n\n */\n\n\nvoid\n\n\nprocess_rx_data_queue\n(\nvoid\n)\n{\n    \nstruct\n \nos_mbuf\n \n*om\n;\n\n    \nwhile\n ((\nom\n \n=\n \nos_mqueue_get\n(\nrxpkt_q\n)) \n!=\n \nNULL\n) {\n        \n++pkts_rxd\n;\n        \nos_mbuf_free_chain\n(\nom\n);\n    }\n}\n\n\n/**\n\n\n * Called when a packet is received.\n\n\n */\n\n\nint\n\n\nmy_task_rx_data_func\n(\nstruct\n \nos_mbuf\n \n*om\n)\n{\n    \nint\n \nrc\n;\n\n    \n/* Enqueue the received packet and wake up the listening task. */\n\n    \nrc\n \n=\n \nos_mqueue_put\n(\nrxpkt_q\n, \nmy_task_evq\n, \nom\n);\n    \nif\n (\nrc\n \n!=\n \n0\n) {\n        \nreturn\n \n-\n1\n;\n    }\n\n    \nreturn\n \n0\n;\n}\n\n\nvoid\n\n\nmy_task_handler\n(\nvoid\n \n*arg\n)\n{\n    \nstruct\n \nos_event\n \n*ev\n;\n    \nstruct\n \nos_callout_func\n \n*cf\n;\n    \nint\n \nrc\n;\n\n    \n/* Initialize eventq */\n\n    \nos_eventq_init\n(\nmy_task_evq\n);\n\n    \n/* Initialize mqueue */\n\n    \nos_mqueue_init\n(\nrxpkt_q\n, \nprocess_rx_data_queue\n, \nNULL\n);\n\n    \n/* Process each event posted to our eventq.  When there are no events to\n\n\n     * process, sleep until one arrives.\n\n\n     */\n\n    \nwhile\n (\n1\n) {\n        \nos_eventq_run\n(\nmy_task_evq\n);\n    }\n}\n\n\n\n\n\nData Structures\n\n\nstruct\n \nos_mqueue\n {\n    \nSTAILQ_HEAD\n(, \nos_mbuf_pkthdr\n) \nmq_head\n;\n    \nstruct\n \nos_event\n \nmq_ev\n;\n};\n\n\n\n\n\n\n\nList of Functions\n\n\nThe functions available in Mqueue are:\n\n\n\n\n\n\n\n\nFunction\n\n\nDescription\n\n\n\n\n\n\n\n\n\n\nos_mqueue_init\n\n\nInitializes an mqueue.\n\n\n\n\n\n\nos_mqueue_get\n\n\nRetrieves a packet off an Mqueue.\n\n\n\n\n\n\nos_mqueue_put\n\n\nAdds a packet (i.e. packet header mbuf) to an mqueue.", 
             "title": "toc"
         }, 
         {
@@ -5472,7 +5472,7 @@
         }, 
         {
             "location": "/os/core_os/mqueue/mqueue/#using-mqueue", 
-            "text": "The following code sample demonstrates how to use an mqueue.  In this example:   packets are put on a receive queue  a task processes each packet on the queue (increments a receive counter)   Not shown in the code example is a call  my_task_rx_data_func . Presumably, some other code will call this API.    uint32_t   pkts_rxd ; struct   os_mqueue   rxpkt_q ; struct   os_eventq   my_task_evq ; /**   * Removes each packet from the receive queue and processes it.   */  void  process_rx_data_queue ( void )\n{\n     struct   os_mbuf   *om ;\n\n     while  (( om   =   os_mqueue_get ( rxpkt_q ))  !=   NULL ) {\n         ++pkts_rxd ;\n         os_mbuf_free_chain ( om );\n    }\n} /**   * Called when a packet is received.   */  int  my_task_rx_data_func ( struct   os_mbuf   *om )\n{\n     int   rc ;\n\n     /* Enqueue the received packet and wake up the listening task. */ \n     rc   =   os_mqueue_put ( rxpkt_q ,  my_task_evq ,  om );\n     if  ( rc   !=   0 ) {\n         return   - 1 ;\n    }\n\n     return   0 ;\n} void  my_task_handler ( void   *arg )\n{\n     struct   os_event   *ev ;\n     struct   os_callout_func   *cf ;\n     int   rc ;\n\n     /* Initialize eventq */ \n     os_eventq_init ( my_task_evq );\n\n     /* Initialize mqueue */ \n     os_mqueue_init ( rxpkt_q ,  NULL );\n\n     /* Process each event posted to our eventq.  When there are no events to       * process, sleep until one arrives.       */ \n     while  ( 1 ) {\n         os_eventq_run ( my_task_evq );\n    }\n}", 
+            "text": "The following code sample demonstrates how to use an mqueue.  In this example:   packets are put on a receive queue  a task processes each packet on the queue (increments a receive counter)   Not shown in the code example is a call  my_task_rx_data_func . Presumably, some other code will call this API.    uint32_t   pkts_rxd ; struct   os_mqueue   rxpkt_q ; struct   os_eventq   my_task_evq ; /**   * Removes each packet from the receive queue and processes it.   */  void  process_rx_data_queue ( void )\n{\n     struct   os_mbuf   *om ;\n\n     while  (( om   =   os_mqueue_get ( rxpkt_q ))  !=   NULL ) {\n         ++pkts_rxd ;\n         os_mbuf_free_chain ( om );\n    }\n} /**   * Called when a packet is received.   */  int  my_task_rx_data_func ( struct   os_mbuf   *om )\n{\n     int   rc ;\n\n     /* Enqueue the received packet and wake up the listening task. */ \n     rc   =   os_mqueue_put ( rxpkt_q ,  my_task_evq ,  om );\n     if  ( rc   !=   0 ) {\n         return   - 1 ;\n    }\n\n     return   0 ;\n} void  my_task_handler ( void   *arg )\n{\n     struct   os_event   *ev ;\n     struct   os_callout_func   *cf ;\n     int   rc ;\n\n     /* Initialize eventq */ \n     os_eventq_init ( my_task_evq );\n\n     /* Initialize mqueue */ \n     os_mqueue_init ( rxpkt_q ,  process_rx_data_queue ,  NULL );\n\n     /* Process each event posted to our eventq.  When there are no events to       * process, sleep until one arrives.       */ \n     while  ( 1 ) {\n         os_eventq_run ( my_task_evq );\n    }\n}", 
             "title": "Using Mqueue"
         }, 
         {
diff --git a/master/os/core_os/mqueue/mqueue/index.html b/master/os/core_os/mqueue/mqueue/index.html
index adc6b1928..b6dc6be10 100644
--- a/master/os/core_os/mqueue/mqueue/index.html
+++ b/master/os/core_os/mqueue/mqueue/index.html
@@ -859,7 +859,7 @@ <h3 id="using-mqueue">Using Mqueue</h3>
     <span style="color: #000000">os_eventq_init</span>(<span style="color: #000000">&amp;my_task_evq</span>);
 
     <span style="color: #177500">/* Initialize mqueue */</span>
-    <span style="color: #000000">os_mqueue_init</span>(<span style="color: #000000">&amp;rxpkt_q</span>, <span style="color: #A90D91">NULL</span>);
+    <span style="color: #000000">os_mqueue_init</span>(<span style="color: #000000">&amp;rxpkt_q</span>, <span style="color: #000000">process_rx_data_queue</span>, <span style="color: #A90D91">NULL</span>);
 
     <span style="color: #177500">/* Process each event posted to our eventq.  When there are no events to</span>
 <span style="color: #177500">     * process, sleep until one arrives.</span>
diff --git a/master/sitemap.xml b/master/sitemap.xml
index 6dd92a172..f8a458552 100644
--- a/master/sitemap.xml
+++ b/master/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -76,7 +76,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -85,7 +85,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -97,7 +97,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -133,7 +133,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -143,37 +143,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/mkdocs/search_index.json b/mkdocs/search_index.json
index cbea9e9e0..d723bb66d 100644
--- a/mkdocs/search_index.json
+++ b/mkdocs/search_index.json
@@ -5462,7 +5462,7 @@
         }, 
         {
             "location": "/os/core_os/mqueue/mqueue/", 
-            "text": "Mqueue\n\n\nThe mqueue construct allows a task to wake up when it receives data.  Typically, this data is in the form of packets received over a network.  A common networking stack operation is to put a packet on a queue and post an event to the task monitoring that queue. When the task handles the event, it processes each packet on the packet queue.\n\n\n\n\nUsing Mqueue\n\n\nThe following code sample demonstrates how to use an mqueue.  In this example:\n\n\n\n\npackets are put on a receive queue\n\n\na task processes each packet on the queue (increments a receive counter)\n\n\n\n\nNot shown in the code example is a call \nmy_task_rx_data_func\n. Presumably, some other code will call this API. \n\n\n\n\nuint32_t\n \npkts_rxd\n;\n\nstruct\n \nos_mqueue\n \nrxpkt_q\n;\n\nstruct\n \nos_eventq\n \nmy_task_evq\n;\n\n\n/**\n\n\n * Removes each packet from the receive queue and processes it.\n\n\n */\n\n\nvoid\n\n\nprocess_rx_data_queue\n(\nvoid\n)\n{\n    \nstruct\n \nos_mbuf\n \n*om\n;\n\n    \nwhile\n ((\nom\n \n=\n \nos_mqueue_get\n(\nrxpkt_q\n)) \n!=\n \nNULL\n) {\n        \n++pkts_rxd\n;\n        \nos_mbuf_free_chain\n(\nom\n);\n    }\n}\n\n\n/**\n\n\n * Called when a packet is received.\n\n\n */\n\n\nint\n\n\nmy_task_rx_data_func\n(\nstruct\n \nos_mbuf\n \n*om\n)\n{\n    \nint\n \nrc\n;\n\n    \n/* Enqueue the received packet and wake up the listening task. */\n\n    \nrc\n \n=\n \nos_mqueue_put\n(\nrxpkt_q\n, \nmy_task_evq\n, \nom\n);\n    \nif\n (\nrc\n \n!=\n \n0\n) {\n        \nreturn\n \n-\n1\n;\n    }\n\n    \nreturn\n \n0\n;\n}\n\n\nvoid\n\n\nmy_task_handler\n(\nvoid\n \n*arg\n)\n{\n    \nstruct\n \nos_event\n \n*ev\n;\n    \nstruct\n \nos_callout_func\n \n*cf\n;\n    \nint\n \nrc\n;\n\n    \n/* Initialize eventq */\n\n    \nos_eventq_init\n(\nmy_task_evq\n);\n\n    \n/* Initialize mqueue */\n\n    \nos_mqueue_init\n(\nrxpkt_q\n, \nNULL\n);\n\n    \n/* Process each event posted to our eventq.  When there are no events to\n\n\n     * process, sleep until one arrives.\n\n\n     */\n\n    \nwhile\n (\n1\n) {\n        \nos_eventq_run\n(\nmy_task_evq\n);\n    }\n}\n\n\n\n\n\nData Structures\n\n\nstruct\n \nos_mqueue\n {\n    \nSTAILQ_HEAD\n(, \nos_mbuf_pkthdr\n) \nmq_head\n;\n    \nstruct\n \nos_event\n \nmq_ev\n;\n};\n\n\n\n\n\n\n\nList of Functions\n\n\nThe functions available in Mqueue are:\n\n\n\n\n\n\n\n\nFunction\n\n\nDescription\n\n\n\n\n\n\n\n\n\n\nos_mqueue_init\n\n\nInitializes an mqueue.\n\n\n\n\n\n\nos_mqueue_get\n\n\nRetrieves a packet off an Mqueue.\n\n\n\n\n\n\nos_mqueue_put\n\n\nAdds a packet (i.e. packet header mbuf) to an mqueue.", 
+            "text": "Mqueue\n\n\nThe mqueue construct allows a task to wake up when it receives data.  Typically, this data is in the form of packets received over a network.  A common networking stack operation is to put a packet on a queue and post an event to the task monitoring that queue. When the task handles the event, it processes each packet on the packet queue.\n\n\n\n\nUsing Mqueue\n\n\nThe following code sample demonstrates how to use an mqueue.  In this example:\n\n\n\n\npackets are put on a receive queue\n\n\na task processes each packet on the queue (increments a receive counter)\n\n\n\n\nNot shown in the code example is a call \nmy_task_rx_data_func\n. Presumably, some other code will call this API. \n\n\n\n\nuint32_t\n \npkts_rxd\n;\n\nstruct\n \nos_mqueue\n \nrxpkt_q\n;\n\nstruct\n \nos_eventq\n \nmy_task_evq\n;\n\n\n/**\n\n\n * Removes each packet from the receive queue and processes it.\n\n\n */\n\n\nvoid\n\n\nprocess_rx_data_queue\n(\nvoid\n)\n{\n    \nstruct\n \nos_mbuf\n \n*om\n;\n\n    \nwhile\n ((\nom\n \n=\n \nos_mqueue_get\n(\nrxpkt_q\n)) \n!=\n \nNULL\n) {\n        \n++pkts_rxd\n;\n        \nos_mbuf_free_chain\n(\nom\n);\n    }\n}\n\n\n/**\n\n\n * Called when a packet is received.\n\n\n */\n\n\nint\n\n\nmy_task_rx_data_func\n(\nstruct\n \nos_mbuf\n \n*om\n)\n{\n    \nint\n \nrc\n;\n\n    \n/* Enqueue the received packet and wake up the listening task. */\n\n    \nrc\n \n=\n \nos_mqueue_put\n(\nrxpkt_q\n, \nmy_task_evq\n, \nom\n);\n    \nif\n (\nrc\n \n!=\n \n0\n) {\n        \nreturn\n \n-\n1\n;\n    }\n\n    \nreturn\n \n0\n;\n}\n\n\nvoid\n\n\nmy_task_handler\n(\nvoid\n \n*arg\n)\n{\n    \nstruct\n \nos_event\n \n*ev\n;\n    \nstruct\n \nos_callout_func\n \n*cf\n;\n    \nint\n \nrc\n;\n\n    \n/* Initialize eventq */\n\n    \nos_eventq_init\n(\nmy_task_evq\n);\n\n    \n/* Initialize mqueue */\n\n    \nos_mqueue_init\n(\nrxpkt_q\n, \nprocess_rx_data_queue\n, \nNULL\n);\n\n    \n/* Process each event posted to our eventq.  When there are no events to\n\n\n     * process, sleep until one arrives.\n\n\n     */\n\n    \nwhile\n (\n1\n) {\n        \nos_eventq_run\n(\nmy_task_evq\n);\n    }\n}\n\n\n\n\n\nData Structures\n\n\nstruct\n \nos_mqueue\n {\n    \nSTAILQ_HEAD\n(, \nos_mbuf_pkthdr\n) \nmq_head\n;\n    \nstruct\n \nos_event\n \nmq_ev\n;\n};\n\n\n\n\n\n\n\nList of Functions\n\n\nThe functions available in Mqueue are:\n\n\n\n\n\n\n\n\nFunction\n\n\nDescription\n\n\n\n\n\n\n\n\n\n\nos_mqueue_init\n\n\nInitializes an mqueue.\n\n\n\n\n\n\nos_mqueue_get\n\n\nRetrieves a packet off an Mqueue.\n\n\n\n\n\n\nos_mqueue_put\n\n\nAdds a packet (i.e. packet header mbuf) to an mqueue.", 
             "title": "toc"
         }, 
         {
@@ -5472,7 +5472,7 @@
         }, 
         {
             "location": "/os/core_os/mqueue/mqueue/#using-mqueue", 
-            "text": "The following code sample demonstrates how to use an mqueue.  In this example:   packets are put on a receive queue  a task processes each packet on the queue (increments a receive counter)   Not shown in the code example is a call  my_task_rx_data_func . Presumably, some other code will call this API.    uint32_t   pkts_rxd ; struct   os_mqueue   rxpkt_q ; struct   os_eventq   my_task_evq ; /**   * Removes each packet from the receive queue and processes it.   */  void  process_rx_data_queue ( void )\n{\n     struct   os_mbuf   *om ;\n\n     while  (( om   =   os_mqueue_get ( rxpkt_q ))  !=   NULL ) {\n         ++pkts_rxd ;\n         os_mbuf_free_chain ( om );\n    }\n} /**   * Called when a packet is received.   */  int  my_task_rx_data_func ( struct   os_mbuf   *om )\n{\n     int   rc ;\n\n     /* Enqueue the received packet and wake up the listening task. */ \n     rc   =   os_mqueue_put ( rxpkt_q ,  my_task_evq ,  om );\n     if  ( rc   !=   0 ) {\n         return   - 1 ;\n    }\n\n     return   0 ;\n} void  my_task_handler ( void   *arg )\n{\n     struct   os_event   *ev ;\n     struct   os_callout_func   *cf ;\n     int   rc ;\n\n     /* Initialize eventq */ \n     os_eventq_init ( my_task_evq );\n\n     /* Initialize mqueue */ \n     os_mqueue_init ( rxpkt_q ,  NULL );\n\n     /* Process each event posted to our eventq.  When there are no events to       * process, sleep until one arrives.       */ \n     while  ( 1 ) {\n         os_eventq_run ( my_task_evq );\n    }\n}", 
+            "text": "The following code sample demonstrates how to use an mqueue.  In this example:   packets are put on a receive queue  a task processes each packet on the queue (increments a receive counter)   Not shown in the code example is a call  my_task_rx_data_func . Presumably, some other code will call this API.    uint32_t   pkts_rxd ; struct   os_mqueue   rxpkt_q ; struct   os_eventq   my_task_evq ; /**   * Removes each packet from the receive queue and processes it.   */  void  process_rx_data_queue ( void )\n{\n     struct   os_mbuf   *om ;\n\n     while  (( om   =   os_mqueue_get ( rxpkt_q ))  !=   NULL ) {\n         ++pkts_rxd ;\n         os_mbuf_free_chain ( om );\n    }\n} /**   * Called when a packet is received.   */  int  my_task_rx_data_func ( struct   os_mbuf   *om )\n{\n     int   rc ;\n\n     /* Enqueue the received packet and wake up the listening task. */ \n     rc   =   os_mqueue_put ( rxpkt_q ,  my_task_evq ,  om );\n     if  ( rc   !=   0 ) {\n         return   - 1 ;\n    }\n\n     return   0 ;\n} void  my_task_handler ( void   *arg )\n{\n     struct   os_event   *ev ;\n     struct   os_callout_func   *cf ;\n     int   rc ;\n\n     /* Initialize eventq */ \n     os_eventq_init ( my_task_evq );\n\n     /* Initialize mqueue */ \n     os_mqueue_init ( rxpkt_q ,  process_rx_data_queue ,  NULL );\n\n     /* Process each event posted to our eventq.  When there are no events to       * process, sleep until one arrives.       */ \n     while  ( 1 ) {\n         os_eventq_run ( my_task_evq );\n    }\n}", 
             "title": "Using Mqueue"
         }, 
         {
diff --git a/os/core_os/mqueue/mqueue/index.html b/os/core_os/mqueue/mqueue/index.html
index adc6b1928..b6dc6be10 100644
--- a/os/core_os/mqueue/mqueue/index.html
+++ b/os/core_os/mqueue/mqueue/index.html
@@ -859,7 +859,7 @@ <h3 id="using-mqueue">Using Mqueue</h3>
     <span style="color: #000000">os_eventq_init</span>(<span style="color: #000000">&amp;my_task_evq</span>);
 
     <span style="color: #177500">/* Initialize mqueue */</span>
-    <span style="color: #000000">os_mqueue_init</span>(<span style="color: #000000">&amp;rxpkt_q</span>, <span style="color: #A90D91">NULL</span>);
+    <span style="color: #000000">os_mqueue_init</span>(<span style="color: #000000">&amp;rxpkt_q</span>, <span style="color: #000000">process_rx_data_queue</span>, <span style="color: #A90D91">NULL</span>);
 
     <span style="color: #177500">/* Process each event posted to our eventq.  When there are no events to</span>
 <span style="color: #177500">     * process, sleep until one arrives.</span>
diff --git a/sitemap.xml b/sitemap.xml
index 6dd92a172..f8a458552 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -76,7 +76,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -85,7 +85,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -97,7 +97,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -133,7 +133,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -143,37 +143,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v0_9_0/sitemap.xml b/v0_9_0/sitemap.xml
index 05965457d..259106182 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-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -12,7 +12,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -20,7 +20,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -53,7 +53,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -65,7 +65,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -101,7 +101,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -111,13 +111,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_0_0/sitemap.xml b/v1_0_0/sitemap.xml
index 7e93406d8..6d6ac4e30 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-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,7 +13,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -22,7 +22,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -30,7 +30,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -38,7 +38,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -46,7 +46,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -54,7 +54,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -62,7 +62,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -71,7 +71,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -83,7 +83,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -119,7 +119,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -129,25 +129,25 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_1_0/sitemap.xml b/v1_1_0/sitemap.xml
index 0dd646e3a..c153ae222 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-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -125,7 +125,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -135,25 +135,25 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_2_0/sitemap.xml b/v1_2_0/sitemap.xml
index ccffd2017..127755cb3 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-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -125,7 +125,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -135,37 +135,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-04-02</lastmod>
+     <lastmod>2018-04-24</lastmod>
      <changefreq>daily</changefreq>
     </url>
         


 

----------------------------------------------------------------
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