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/03/06 01:58:59 UTC

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

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

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/os/tutorials/segger_rtt.rst.txt b/develop/_sources/os/tutorials/segger_rtt.rst.txt
deleted file mode 100644
index 53840dcf3..000000000
--- a/develop/_sources/os/tutorials/segger_rtt.rst.txt
+++ /dev/null
@@ -1,109 +0,0 @@
-SEGGER RTT Console
-------------------
-
-Objective
-~~~~~~~~~
-
-Sometimes you dont have UART on your board, or you want to use it for
-something else while still having newt logs/shell capability. With
-`SEGGER's RTT <https://www.segger.com/jlink-rtt.html>`__ capability you
-can swap UART for RTT, which is a very high-speed memory-mapped I/O.
-
-Hardware needed
-~~~~~~~~~~~~~~~
-
-You'll need a SEGGER J-Link programmer in order to use this advanced
-functionality. You might have an external J-Link programmer you're
-already using, or maybe your board has a dedicated J-Link onboard as
-some development kits do. Another possibilty is J-Link OB firmware
-available for some devices like the micro:bit.
-
-Setup the target
-~~~~~~~~~~~~~~~~
-
-We'll assume you have an existing project with some kind of
-console/shell like `Blinky with console and shell <blinky_console.html>`__
-that we're switching over to RTT from UART.
-
-**Note:** We have tested RTT with J-Link version V6.14h. We recommend
-that you upgrade your J-Link if you have an earlier version of J-Link
-installed. Earlier versions of J-Link use the BUFFER\_SIZE\_DOWN value
-defined in hw/drivers/rtt/include/rtt/SEGGER\_RTT\_Conf.h for the
-maximum number of input characters. If an input line exceeds the
-BUFFER\_SIZE\_DOWN number of characters, RTT ignores the extra
-characters. The default value is 16 characters. For example, this limit
-causes shell commands with more than 16 characters of input to fail. You
-may set the Mynewt ``RTT_BUFFER_SIZE_DOWN`` syscfg setting in your
-target to increase this value if you do not upgrade your J-Link version.
-
-We can disable uart and enable rtt with the newt target command:
-
-::
-
-    newt target amend nrf52_blinky syscfg=CONSOLE_UART=0
-    newt target amend nrf52_blinky syscfg=CONSOLE_RTT=1
-
-Run the target executables
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Now 'run' the newt target as you'll need an active debugger process to
-attach to:
-
-::
-
-    $ newt run nrf52_blinky 0
-    App image succesfully generated: ~/Downloads/myapp1/bin/targets/nrf52_blinky/app/apps/blinky/blinky.img
-    Loading app image into slot 1
-    [~Downloads/myapp1/repos/apache-mynewt-core/hw/bsp/nrf52-thingy/nrf52-thingy_debug.sh ~/Downloads/myapp1/repos/apache-mynewt-core/hw/bsp/nrf52-thingy ~/Downloads/myapp1/bin/targets/nrf52_blinky/app/apps/blinky/blinky]
-    Debugging ~/Downloads/myapp1/bin/targets/nrf52_blinky/app/apps/blinky/blinky.elf
-    GNU gdb (GNU Tools for ARM Embedded Processors) 7.8.0.20150604-cvs
-    Copyright (C) 2014 Free Software Foundation, Inc.
-    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
-    This is free software: you are free to change and redistribute it.
-    There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
-    and "show warranty" for details.
-    This GDB was configured as "--host=x86_64-apple-darwin10 --target=arm-none-eabi".
-    Type "show configuration" for configuration details.
-    For bug reporting instructions, please see:
-    <http://www.gnu.org/software/gdb/bugs/>.
-    Find the GDB manual and other documentation resources online at:
-    <http://www.gnu.org/software/gdb/documentation/>.
-    For help, type "help".
-    Type "apropos word" to search for commands related to "word"...
-    Reading symbols from ~/Downloads/myapp1/bin/targets/nrf52_blinky/app/apps/blinky/blinky.elf...done.
-    0x000000d8 in ?? ()
-    Resetting target
-    0x000000dc in ?? ()
-    (gdb) 
-
-Connect to console
-~~~~~~~~~~~~~~~~~~
-
-In a seperate terminal window ``telnet localhost 19021`` and when you
-continue your gdb session you should see your output. If you're not
-familiar with telnet, when you're ready to exit you may by using the
-hotkey ctrl+] then typing quit
-
-::
-
-    $ telnet localhost 19021
-    Trying ::1...
-    telnet: connect to address ::1: Connection refused
-    Trying fe80::1...
-    telnet: connect to address fe80::1: Connection refused
-    Trying 127.0.0.1...
-    Connected to localhost.
-    Escape character is '^]'.
-    SEGGER J-Link V6.14e - Real time terminal output
-    SEGGER J-Link EDU V8.0, SN=268006294
-    Process: JLinkGDBServer
-
-Then you can interact with the device:
-
-::
-
-    stat
-    stat
-    000262 Must specify a statistic name to dump, possible names are:
-    000262  stat
-    000262 compat> 
diff --git a/develop/_sources/os/tutorials/segger_sysview.rst.txt b/develop/_sources/os/tutorials/segger_sysview.rst.txt
deleted file mode 100644
index d95802f40..000000000
--- a/develop/_sources/os/tutorials/segger_sysview.rst.txt
+++ /dev/null
@@ -1,96 +0,0 @@
-SEGGER SystemView
------------------
-
-Objective
-~~~~~~~~~~~~~~~
-
-
-With `SEGGER's SystemView <https://www.segger.com/systemview.html>`__
-you can "record data from the target system while it is running. The
-recorded data is analyzed and the system behavior is visualized in
-different views."
-
-Hardware needed
-~~~~~~~~~~~~~~~
-
-You'll need a SEGGER J-Link programmer in order to use this advanced
-functionality. You might have an external J-Link programmer you're
-already using, or maybe your board has a dedicated J-Link onboard as
-some development kits do. Another possibilty is J-Link OB firmware
-available for some devices like the micro:bit.
-
-Software needed
-~~~~~~~~~~~~~~~
-
--  Download `SEGGER's SystemView
-   app <https://www.segger.com/downloads/free-utilities/>`__.
--  Copy the description file from sys/sysview/SYSVIEW\_Mynewt.txt to the
-   /Description/ directory of SystemView
-
-Setup the target
-~~~~~~~~~~~~~~~~
-
-We'll assume you have an existing example we're enabling SystemView on,
-in this case `blinky on nrf52 <nRF52.html>`__. We can do so with the newt
-target amend command:
-
-::
-
-    newt target amend blink_nordic syscfg=OS_SYSVIEW=1
-
-Run the target executables
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Now 'run' the newt target as you'll need an active debugger process to
-attach to:
-
-::
-
-    $ newt run blink_nordic 0
-    App image succesfully generated: ~/Downloads/myproj/bin/targets/blink_nordic/app/apps/bleprph/bleprph.img
-    Loading app image into slot 1
-    [~/Downloads/myproj/repos/apache-mynewt-core/hw/bsp/nrf52-thingy/nrf52-thingy_debug.sh ~/Downloads/myproj/repos/apache-mynewt-core/hw/bsp/nrf52-thingy ~/Downloads/myproj/bin/targets/blink_nordic/app/apps/bleprph/bleprph]
-    Debugging ~/Downloads/myproj/bin/targets/blink_nordic/app/apps/bleprph/bleprph.elf
-    GNU gdb (GNU Tools for ARM Embedded Processors) 7.8.0.20150604-cvs
-    Copyright (C) 2014 Free Software Foundation, Inc.
-    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
-    This is free software: you are free to change and redistribute it.
-    There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
-    and "show warranty" for details.
-    This GDB was configured as "--host=x86_64-apple-darwin10 --target=arm-none-eabi".
-    Type "show configuration" for configuration details.
-    For bug reporting instructions, please see:
-    <http://www.gnu.org/software/gdb/bugs/>.
-    Find the GDB manual and other documentation resources online at:
-    <http://www.gnu.org/software/gdb/documentation/>.
-    For help, type "help".
-    Type "apropos word" to search for commands related to "word"...
-    Reading symbols from ~/Downloads/myproj/bin/targets/blink_nordic/app/apps/bleprph/bleprph.elf...done.
-    0x000000d8 in ?? ()
-    Resetting target
-    0x000000dc in ?? ()
-
-Launch the app
-~~~~~~~~~~~~~~
-
-Launch the app and press **OK** in the System Information dialog box.
-
-.. figure:: pics/segger_sysview1.png
-   :alt: SEGGER SystemView
-
-   SEGGER SystemView
-
-Select \*\* Target > Start Recording \*\* and press **OK** in the
-Configuration dialog box.
-
-.. figure:: pics/segger_sysview_start_record.png
-   :alt: SEGGER SystemView Start Recording
-
-   SEGGER SystemView Start Recording
-
-You should see the recording for your Mynewt application.
-
-.. figure:: pics/segger_sysview_recording.png
-   :alt: SEGGER SystemView Recording
-
-   SEGGER SystemView Recording
diff --git a/develop/objects.inv b/develop/objects.inv
index 57dda76c9..b9516ed22 100644
Binary files a/develop/objects.inv and b/develop/objects.inv differ
diff --git a/develop/os/tutorials/segger_rtt.html b/develop/os/tutorials/segger_rtt.html
deleted file mode 100644
index f9602b8da..000000000
--- a/develop/os/tutorials/segger_rtt.html
+++ /dev/null
@@ -1,410 +0,0 @@
-
-
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-
-    
-
-    
-    <title>SEGGER RTT Console &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"/> 
-
-    
-    <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> /
-    
-    SEGGER RTT Console
-    
-  <div class="sourcelink">
-    <a href="https://github.com/apache/mynewt-core/edit/master/docs/os/tutorials/segger_rtt.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>
-<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"><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="../../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="segger-rtt-console">
-<h1>SEGGER RTT Console<a class="headerlink" href="#segger-rtt-console" title="Permalink to this headline">?</a></h1>
-<div class="section" id="objective">
-<h2>Objective<a class="headerlink" href="#objective" title="Permalink to this headline">?</a></h2>
-<p>Sometimes you dont have UART on your board, or you want to use it for
-something else while still having newt logs/shell capability. With
-<a class="reference external" href="https://www.segger.com/jlink-rtt.html">SEGGER?s RTT</a> capability you
-can swap UART for RTT, which is a very high-speed memory-mapped I/O.</p>
-</div>
-<div class="section" id="hardware-needed">
-<h2>Hardware needed<a class="headerlink" href="#hardware-needed" title="Permalink to this headline">?</a></h2>
-<p>You?ll need a SEGGER J-Link programmer in order to use this advanced
-functionality. You might have an external J-Link programmer you?re
-already using, or maybe your board has a dedicated J-Link onboard as
-some development kits do. Another possibilty is J-Link OB firmware
-available for some devices like the micro:bit.</p>
-</div>
-<div class="section" id="setup-the-target">
-<h2>Setup the target<a class="headerlink" href="#setup-the-target" title="Permalink to this headline">?</a></h2>
-<p>We?ll assume you have an existing project with some kind of
-console/shell like <a class="reference external" href="blinky_console.html">Blinky with console and shell</a>
-that we?re switching over to RTT from UART.</p>
-<p><strong>Note:</strong> We have tested RTT with J-Link version V6.14h. We recommend
-that you upgrade your J-Link if you have an earlier version of J-Link
-installed. Earlier versions of J-Link use the BUFFER_SIZE_DOWN value
-defined in hw/drivers/rtt/include/rtt/SEGGER_RTT_Conf.h for the
-maximum number of input characters. If an input line exceeds the
-BUFFER_SIZE_DOWN number of characters, RTT ignores the extra
-characters. The default value is 16 characters. For example, this limit
-causes shell commands with more than 16 characters of input to fail. You
-may set the Mynewt <code class="docutils literal notranslate"><span class="pre">RTT_BUFFER_SIZE_DOWN</span></code> syscfg setting in your
-target to increase this value if you do not upgrade your J-Link version.</p>
-<p>We can disable uart and enable rtt with the newt target command:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>newt target amend nrf52_blinky syscfg=CONSOLE_UART=0
-newt target amend nrf52_blinky syscfg=CONSOLE_RTT=1
-</pre></div>
-</div>
-</div>
-<div class="section" id="run-the-target-executables">
-<h2>Run the target executables<a class="headerlink" href="#run-the-target-executables" title="Permalink to this headline">?</a></h2>
-<p>Now ?run? the newt target as you?ll need an active debugger process to
-attach to:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ newt run nrf52_blinky 0
-App image succesfully generated: ~/Downloads/myapp1/bin/targets/nrf52_blinky/app/apps/blinky/blinky.img
-Loading app image into slot 1
-[~Downloads/myapp1/repos/apache-mynewt-core/hw/bsp/nrf52-thingy/nrf52-thingy_debug.sh ~/Downloads/myapp1/repos/apache-mynewt-core/hw/bsp/nrf52-thingy ~/Downloads/myapp1/bin/targets/nrf52_blinky/app/apps/blinky/blinky]
-Debugging ~/Downloads/myapp1/bin/targets/nrf52_blinky/app/apps/blinky/blinky.elf
-GNU gdb (GNU Tools for ARM Embedded Processors) 7.8.0.20150604-cvs
-Copyright (C) 2014 Free Software Foundation, Inc.
-License GPLv3+: GNU GPL version 3 or later &lt;http://gnu.org/licenses/gpl.html&gt;
-This is free software: you are free to change and redistribute it.
-There is NO WARRANTY, to the extent permitted by law.  Type &quot;show copying&quot;
-and &quot;show warranty&quot; for details.
-This GDB was configured as &quot;--host=x86_64-apple-darwin10 --target=arm-none-eabi&quot;.
-Type &quot;show configuration&quot; for configuration details.
-For bug reporting instructions, please see:
-&lt;http://www.gnu.org/software/gdb/bugs/&gt;.
-Find the GDB manual and other documentation resources online at:
-&lt;http://www.gnu.org/software/gdb/documentation/&gt;.
-For help, type &quot;help&quot;.
-Type &quot;apropos word&quot; to search for commands related to &quot;word&quot;...
-Reading symbols from ~/Downloads/myapp1/bin/targets/nrf52_blinky/app/apps/blinky/blinky.elf...done.
-0x000000d8 in ?? ()
-Resetting target
-0x000000dc in ?? ()
-(gdb)
-</pre></div>
-</div>
-</div>
-<div class="section" id="connect-to-console">
-<h2>Connect to console<a class="headerlink" href="#connect-to-console" title="Permalink to this headline">?</a></h2>
-<p>In a seperate terminal window <code class="docutils literal notranslate"><span class="pre">telnet</span> <span class="pre">localhost</span> <span class="pre">19021</span></code> and when you
-continue your gdb session you should see your output. If you?re not
-familiar with telnet, when you?re ready to exit you may by using the
-hotkey ctrl+] then typing quit</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ telnet localhost 19021
-Trying ::1...
-telnet: connect to address ::1: Connection refused
-Trying fe80::1...
-telnet: connect to address fe80::1: Connection refused
-Trying 127.0.0.1...
-Connected to localhost.
-Escape character is &#39;^]&#39;.
-SEGGER J-Link V6.14e - Real time terminal output
-SEGGER J-Link EDU V8.0, SN=268006294
-Process: JLinkGDBServer
-</pre></div>
-</div>
-<p>Then you can interact with the device:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>stat
-stat
-000262 Must specify a statistic name to dump, possible names are:
-000262  stat
-000262 compat&gt;
-</pre></div>
-</div>
-</div>
-</div>
-
-
-                   </div>
-                  </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/tutorials/segger_sysview.html b/develop/os/tutorials/segger_sysview.html
deleted file mode 100644
index 9c65786c4..000000000
--- a/develop/os/tutorials/segger_sysview.html
+++ /dev/null
@@ -1,397 +0,0 @@
-
-
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-
-    
-
-    
-    <title>SEGGER SystemView &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"/> 
-
-    
-    <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> /
-    
-    SEGGER SystemView
-    
-  <div class="sourcelink">
-    <a href="https://github.com/apache/mynewt-core/edit/master/docs/os/tutorials/segger_sysview.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>
-<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"><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="../../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="segger-systemview">
-<h1>SEGGER SystemView<a class="headerlink" href="#segger-systemview" title="Permalink to this headline">?</a></h1>
-<div class="section" id="objective">
-<h2>Objective<a class="headerlink" href="#objective" title="Permalink to this headline">?</a></h2>
-<p>With <a class="reference external" href="https://www.segger.com/systemview.html">SEGGER?s SystemView</a>
-you can ?record data from the target system while it is running. The
-recorded data is analyzed and the system behavior is visualized in
-different views.?</p>
-</div>
-<div class="section" id="hardware-needed">
-<h2>Hardware needed<a class="headerlink" href="#hardware-needed" title="Permalink to this headline">?</a></h2>
-<p>You?ll need a SEGGER J-Link programmer in order to use this advanced
-functionality. You might have an external J-Link programmer you?re
-already using, or maybe your board has a dedicated J-Link onboard as
-some development kits do. Another possibilty is J-Link OB firmware
-available for some devices like the micro:bit.</p>
-</div>
-<div class="section" id="software-needed">
-<h2>Software needed<a class="headerlink" href="#software-needed" title="Permalink to this headline">?</a></h2>
-<ul class="simple">
-<li>Download <a class="reference external" href="https://www.segger.com/downloads/free-utilities/">SEGGER?s SystemView
-app</a>.</li>
-<li>Copy the description file from sys/sysview/SYSVIEW_Mynewt.txt to the
-/Description/ directory of SystemView</li>
-</ul>
-</div>
-<div class="section" id="setup-the-target">
-<h2>Setup the target<a class="headerlink" href="#setup-the-target" title="Permalink to this headline">?</a></h2>
-<p>We?ll assume you have an existing example we?re enabling SystemView on,
-in this case <a class="reference external" href="nRF52.html">blinky on nrf52</a>. We can do so with the newt
-target amend command:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>newt target amend blink_nordic syscfg=OS_SYSVIEW=1
-</pre></div>
-</div>
-</div>
-<div class="section" id="run-the-target-executables">
-<h2>Run the target executables<a class="headerlink" href="#run-the-target-executables" title="Permalink to this headline">?</a></h2>
-<p>Now ?run? the newt target as you?ll need an active debugger process to
-attach to:</p>
-<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ newt run blink_nordic 0
-App image succesfully generated: ~/Downloads/myproj/bin/targets/blink_nordic/app/apps/bleprph/bleprph.img
-Loading app image into slot 1
-[~/Downloads/myproj/repos/apache-mynewt-core/hw/bsp/nrf52-thingy/nrf52-thingy_debug.sh ~/Downloads/myproj/repos/apache-mynewt-core/hw/bsp/nrf52-thingy ~/Downloads/myproj/bin/targets/blink_nordic/app/apps/bleprph/bleprph]
-Debugging ~/Downloads/myproj/bin/targets/blink_nordic/app/apps/bleprph/bleprph.elf
-GNU gdb (GNU Tools for ARM Embedded Processors) 7.8.0.20150604-cvs
-Copyright (C) 2014 Free Software Foundation, Inc.
-License GPLv3+: GNU GPL version 3 or later &lt;http://gnu.org/licenses/gpl.html&gt;
-This is free software: you are free to change and redistribute it.
-There is NO WARRANTY, to the extent permitted by law.  Type &quot;show copying&quot;
-and &quot;show warranty&quot; for details.
-This GDB was configured as &quot;--host=x86_64-apple-darwin10 --target=arm-none-eabi&quot;.
-Type &quot;show configuration&quot; for configuration details.
-For bug reporting instructions, please see:
-&lt;http://www.gnu.org/software/gdb/bugs/&gt;.
-Find the GDB manual and other documentation resources online at:
-&lt;http://www.gnu.org/software/gdb/documentation/&gt;.
-For help, type &quot;help&quot;.
-Type &quot;apropos word&quot; to search for commands related to &quot;word&quot;...
-Reading symbols from ~/Downloads/myproj/bin/targets/blink_nordic/app/apps/bleprph/bleprph.elf...done.
-0x000000d8 in ?? ()
-Resetting target
-0x000000dc in ?? ()
-</pre></div>
-</div>
-</div>
-<div class="section" id="launch-the-app">
-<h2>Launch the app<a class="headerlink" href="#launch-the-app" title="Permalink to this headline">?</a></h2>
-<p>Launch the app and press <strong>OK</strong> in the System Information dialog box.</p>
-<div class="figure" id="id1">
-<img alt="SEGGER SystemView" src="os/tutorials/pics/segger_sysview1.png" />
-<p class="caption"><span class="caption-text">SEGGER SystemView</span></p>
-</div>
-<p>Select ** Target &gt; Start Recording ** and press <strong>OK</strong> in the
-Configuration dialog box.</p>
-<div class="figure" id="id2">
-<img alt="SEGGER SystemView Start Recording" src="os/tutorials/pics/segger_sysview_start_record.png" />
-<p class="caption"><span class="caption-text">SEGGER SystemView Start Recording</span></p>
-</div>
-<p>You should see the recording for your Mynewt application.</p>
-<div class="figure" id="id3">
-<img alt="SEGGER SystemView Recording" src="os/tutorials/pics/segger_sysview_recording.png" />
-<p class="caption"><span class="caption-text">SEGGER SystemView Recording</span></p>
-</div>
-</div>
-</div>
-
-
-                   </div>
-                  </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/searchindex.js b/develop/searchindex.js
index b10faba57..30c7e1949 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","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/segger_rtt","os/tutorials/segger_sysview","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","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/segger_rtt.rst","os/tutorials/segger_sysview.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":[186,1,1,"c.HALGpio::HAL_GPIO_MODE_IN"],"HALGpio::HAL_GPIO_MODE_NC":[186,1,1,"c.HALGpio::HAL_GPIO_MODE_NC"],"HALGpio::HAL_GPIO_MODE_OUT":[186,1,1,"c.HALGpio::HAL_GPIO_MODE_OUT"],"HALGpio::HAL_GPIO_PULL_DOWN":[186,1,1,"c.HALGpio::HAL_GPIO_PULL_DOWN"],"HALGpio::HAL_GPIO_PULL_NONE":[186,1,1,"c.HALGpio::HAL_GPIO_PULL_NONE"],"HALGpio::HAL_GPIO_PULL_UP":[186,1,1,"c.HALGpio::HAL_GPIO_PULL_UP"],"HALGpio::HAL_GPIO_TRIG_BOTH":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_BOTH"],"HALGpio::HAL_GPIO_TRIG_FALLING":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_FALLING"],"HALGpio::HAL_GPIO_TRIG_HIGH":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_HIGH"],"HALGpio::HAL_GPIO_TRIG_LOW":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_LOW"],"HALGpio::HAL_GPIO_TRIG_NONE":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_NONE"],"HALGpio::HAL_GPIO_TRIG_RISING":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_RISING"],"HALGpio::hal_gpio_irq_trigger":[186,2,1,"c.HALGpio::hal_gpio_irq_trigger"],"HALGpio::hal_gpio_mode_e":[186,2,1,"c.HALGpio::hal_gpio_mode_e"],"HALGpio::hal_gpio_pull":[186,2,1,"c.HALGpio::hal_gpio_pull"],"HALSystem::HAL_RESET_BROWNOUT":[191,1,1,"c.HALSystem::HAL_RESET_BROWNOUT"],"HALSystem::HAL_RESET_PIN":[191,1,1,"c.HALSystem::HAL_RESET_PIN"],"HALSystem::HAL_RESET_POR":[191,1,1,"c.HALSystem::HAL_RESET_POR"],"HALSystem::HAL_RESET_REQUESTED":[191,1,1,"c.HALSystem::HAL_RESET_REQUESTED"],"HALSystem::HAL_RESET_SOFT":[191,1,1,"c.HALSystem::HAL_RESET_SOFT"],"HALSystem::HAL_RESET_WATCHDOG":[191,1,1,"c.HALSystem::HAL_RESET_WATCHDOG"],"HALSystem::hal_reset_reason":[191,2,1,"c.HALSystem::hal_reset_reason"],"HALUart::HAL_UART_FLOW_CTL_NONE":[193,1,1,"c.HALUart::HAL_UART_FLOW_CTL_NONE"],"HALUart::HAL_UART_FLOW_CTL_RTS_CTS":[193,1,1,"c.HALUart::HAL_UART_FLOW_CTL_RTS_CTS"],"HALUart::HAL_UART_PARITY_EVEN":[193,1,1,"c.HALUart::HAL_UART_PARITY_EVEN"],"HALUart::HAL_UART_PARITY_NONE":[193,1,1,"c.HALUart::HAL_UART_PARITY_NONE"],"HALUart::HAL_UART_PARITY_ODD":[193,1,1,"c.HALUart::HAL_UART_PARITY_ODD"],"HALUart::hal_uart_flow_ctl":[193,2,1,"c.HALUart::hal_uart_flow_ctl"],"HALUart::hal_uart_parity":[193,2,1,"c.HALUart::hal_uart_parity"],"OSTask::OS_TASK_READY":[99,1,1,"c.OSTask::OS_TASK_READY"],"OSTask::OS_TASK_SLEEP":[99,1,1,"c.OSTask::OS_TASK_SLEEP"],"OSTask::os_task_state":[99,2,1,"c.OSTask::os_task_state"],"hal_i2c_master_data::address":[187,6,1,"c.hal_i2c_master_data::address"],"hal_i2c_master_data::buffer":[187,6,1,"c.hal_i2c_master_data::buffer"],"hal_spi_settings::baudrate":[190,6,1,"c.hal_spi_settings::baudrate"],"hal_spi_settings::data_mode":[190,6,1,"c.hal_spi_settings::data_mode"],"hal_spi_settings::data_order":[190,6,1,"c.hal_spi_settings::data_order"],"hal_spi_settings::word_size":[190,6,1,"c.hal_spi_settings::word_size"],"hal_timer::bsp_timer":[192,6,1,"c.hal_timer::bsp_timer"],"hal_timer::cb_arg":[192,6,1,"c.hal_timer::cb_arg"],"hal_timer::cb_func":[192,6,1,"c.hal_timer::cb_func"],"hal_timer::expiry":[192,6,1,"c.hal_timer::expiry"],"os_callout::c_ev":[84,6,1,"c.os_callout::c_ev"],"os_callout::c_evq":[84,6,1,"c.os_callout::c_evq"],"os_callout::c_ticks":[84,6,1,"c.os_callout::c_ticks"],"os_event::ev_arg":[87,6,1,"c.os_event::ev_arg"],"os_event::ev_cb":[87,6,1,"c.os_event::ev_cb"],"os_event::ev_queued":[87,6,1,"c.os_event::ev_queued"],"os_eventq::evq_owner":[87,6,1,"c.os_eventq::evq_owner"],"os_eventq::evq_task":[87,6,1,"c.os_eventq::evq_task"],"os_mbuf::om_data":[89,6,1,"c.os_mbuf::om_data"],"os_mbuf::om_flags":[89,6,1,"c.os_mbuf::om_flags"],"os_mbuf::om_len":[89,6,1,"c.os_mbuf::om_len"],"os_mbuf::om_omp":[89,6,1,"c.os_mbuf::om_omp"],"os_mbuf::om_pkthdr_len":[89,6,1,"c.os_mbuf::om_pkthdr_len"],"os_mbuf_pkthdr::omp_flags":[89,6,1,"c.os_mbuf_pkthdr::omp_flags"],"os_mbuf_pkthdr::omp_len":[89,6,1,"c.os_mbuf_pkthdr::omp_len"],"os_mbuf_pool::omp_databuf_len":[89,6,1,"c.os_mbuf_pool::omp_databuf_len"],"os_mbuf_pool::omp_pool":[89,6,1,"c.os_mbuf_pool::omp_pool"],"os_mempool::mp_block_size":[90,6,1,"c.os_mempool::mp_block_size"],"os_mempool::mp_flags":[90,6,1,"c.os_mempool::mp_flags"],"os_mempool::mp_membuf_addr":[90,6,1,"c.os_mempool::mp_membuf_addr"],"os_mempool::mp_min_free":[90,6,1,"c.os_mempool::mp_min_free"],"os_mempool::mp_num_blocks":[90,6,1,"c.os_mempool::mp_num_blocks"],"os_mempool::mp_num_free":[90,6,1,"c.os_mempool::mp_num_free"],"os_mempool::name":[90,6,1,"c.os_mempool::name"],"os_mempool_info::omi_block_size":[90,6,1,"c.os_mempool_info::omi_block_size"],"os_mempool_info::omi_min_free":[90,6,1,"c.os_mempool_info::omi_min_free"],"os_mempool_info::omi_num_blocks":[90,6,1,"c.os_mempool_info::omi_num_blocks"],"os_mempool_info::omi_num_free":[90,6,1,"c.os_mempool_info::omi_num_free"],"os_mqueue::mq_ev":[89,6,1,"c.os_mqueue::mq_ev"],"os_mutex::SLIST_HEAD":[91,3,1,"c.os_mutex::SLIST_HEAD"],"os_mutex::_pad":[91,6,1,"c.os_mutex::_pad"],"os_mutex::mu_level":[91,6,1,"c.os_mutex::mu_level"],"os_mutex::mu_owner":[91,6,1,"c.os_mutex::mu_owner"],"os_mutex::mu_prio":[91,6,1,"c.os_mutex::mu_prio"],"os_sanity_check::sc_arg":[97,6,1,"c.os_sanity_check::sc_arg"],"os_sanity_check::sc_checkin_itvl":[97,6,1,"c.os_sanity_check::sc_checkin_itvl"],"os_sanity_check::sc_checkin_last":[97,6,1,"c.os_sanity_check::sc_checkin_last"],"os_sanity_check::sc_func":[97,6,1,"c.os_sanity_check::sc_func"],"os_sem::sem_tokens":[98,6,1,"c.os_sem::sem_tokens"],"os_task::t_arg":[99,6,1,"c.os_task::t_arg"],"os_task::t_ctx_sw_cnt":[99,6,1,"c.os_task::t_ctx_sw_cnt"],"os_task::t_flags":[99,6,1,"c.os_task::t_flags"],"os_task::t_func":[99,6,1,"c.os_task::t_func"],"os_task::t_name":[99,6,1,"c.os_task::t_name"],"os_task::t_next_wakeup":[99,6,1,"c.os_task::t_next_wakeup"],"os_task::t_obj":[99,6,1,"c.os_task::t_obj"],"os_task::t_prio":[99,6,1,"c.os_task::t_prio"],"os_task::t_run_time":[99,6,1,"c.os_task::t_run_time"],"os_task::t_sanity_check":[99,6,1,"c.os_task::t_sanity_check"],"os_task::t_stackptr":[99,6,1,"c.os_task::t_stackptr"],"os_task::t_stacksize":[99,6,1,"c.os_task::t_stacksize"],"os_task::t_stacktop":[99,6,1,"c.os_task::t_stacktop"],"os_task::t_taskid":[99,6,1,"c.os_task::t_taskid"],"os_task_info::oti_cswcnt":[99,6,1,"c.os_task_info::oti_cswcnt"],"os_task_info::oti_last_checkin":[99,6,1,"c.os_task_info::oti_last_checkin"],"os_task_info::oti_next_checkin":[99,6,1,"c.os_task_info::oti_next_checkin"],"os_task_info::oti_prio":[99,6,1,"c.os_task_info::oti_prio"],"os_task_info::oti_runtime":[99,6,1,"c.os_task_info::oti_runtime"],"os_task_info::oti_state":[99,6,1,"c.os_task_info::oti_state"],"os_task_info::oti_stksize":[99,6,1,"c.os_task_info::oti_stksize"],"os_task_info::oti_stkusage":[99,6,1,"c.os_task_info::oti_stkusage"],"os_task_info::oti_taskid":[99,6,1,"c.os_task_info::oti_taskid"],"os_timezone::tz_dsttime":[100,6,1,"c.os_timezone::tz_dsttime"],"os_timezone::tz_minuteswest":[100,6,1,"c.os_timezone::tz_minuteswest"],CPUTIME_GEQ:[86,0,1,"c.CPUTIME_GEQ"],CPUTIME_GT:[86,0,1,"c.CPUTIME_GT"],CPUTIME_LEQ:[86,0,1,"c.CPUTIME_LEQ"],CPUTIME_LT:[86,0,1,"c.CPUTIME_LT"],HAL_BSP_MAX_ID_LEN:[182,0,1,"c.HAL_BSP_MAX_ID_LEN"],HAL_BSP_POWER_DEEP_SLEEP:[182,0,1,"c.HAL_BSP_POWER_DEEP_SLEEP"],HAL_BSP_POWER_OFF:[182,0,1,"c.HAL_BSP_POWER_OFF"],HAL_BSP_POWER_ON:[182,0,1,"c.HAL_BSP_POWER_ON"],HAL_BSP_POWER_PERUSER:[182,0,1,"c.HAL_BSP_POWER_PERUSER"],HAL_BSP_POWER_SLEEP:[182,0,1,"c.HAL_BSP_POWER_SLEEP"],HAL_BSP_POWER_WFI:[182,0,1,"c.HAL_BSP_POWER_WFI"],HAL_SPI_LSB_FIRST:[190,0,1,"c.HAL_SPI_LSB_FIRST"],HAL_SPI_MODE0:[190,0,1,"c.HAL_SPI_MODE0"],HAL_SPI_MODE1:[190,0,1,"c.HAL_SPI_MODE1"],HAL_SPI_MODE2:[190,0,1,"c.HAL_SPI_MODE2"],HAL_SPI_MODE3:[190,0,1,"c.HAL_SPI_MODE3"],HAL_SPI_MSB_FIRST:[190,0,1,"c.HAL_SPI_MSB_FIRST"],HAL_SPI_TYPE_MASTER:[190,0,1,"c.HAL_SPI_TYPE_MASTER"],HAL_SPI_TYPE_SLAVE:[190,0,1,"c.HAL_SPI_TYPE_SLAVE"],HAL_SPI_WORD_SIZE_8BIT:[190,0,1,"c.HAL_SPI_WORD_SIZE_8BIT"],HAL_SPI_WORD_SIZE_9BIT:[190,0,1,"c.HAL_SPI_WORD_SIZE_9BIT"],OS_CALLOUT_F_QUEUED:[84,0,1,"c.OS_CALLOUT_F_QUEUED"],OS_EVENT_QUEUED:[87,0,1,"c.OS_EVENT_QUEUED"],OS_MBUF_DATA:[89,0,1,"c.OS_MBUF_DATA"],OS_MBUF_F_MASK:[89,0,1,"c.OS_MBUF_F_MASK"],OS_MBUF_IS_PKTHDR:[89,0,1,"c.OS_MBUF_IS_PKTHDR"],OS_MBUF_LEADINGSPACE:[89,0,1,"c.OS_MBUF_LEADINGSPACE"],OS_MBUF_PKTHDR:[89,0,1,"c.OS_MBUF_PKTHDR"],OS_MBUF_PKTHDR_TO_MBUF:[89,0,1,"c.OS_MBUF_PKTHDR_TO_MBUF"],OS_MBUF_PKTLEN:[89,0,1,"c.OS_MBUF_PKTLEN"],OS_MBUF_TRAILINGSPACE:[89,0,1,"c.OS_MBUF_TRAILINGSPACE"],OS_MBUF_USRHDR:[89,0,1,"c.OS_MBUF_USRHDR"],OS_MBUF_USRHDR_LEN:[89,0,1,"c.OS_MBUF_USRHDR_LEN"],OS_MEMPOOL_BYTES:[90,0,1,"c.OS_MEMPOOL_BYTES"],OS_MEMPOOL_F_EXT:[90,0,1,"c.OS_MEMPOOL_F_EXT"],OS_MEMPOOL_INFO_NAME_LEN:[90,0,1,"c.OS_MEMPOOL_INFO_NAME_LEN"],OS_MEMPOOL_SIZE:[90,0,1,"c.OS_MEMPOOL_SIZE"],OS_SANITY_CHECK_SETFUNC:[97,0,1,"c.OS_SANITY_CHECK_SETFUNC"],OS_TASK_FLAG_EVQ_WAIT:[99,0,1,"c.OS_TASK_FLAG_EVQ_WAIT"],OS_TASK_FLAG_MUTEX_WAIT:[99,0,1,"c.OS_TASK_FLAG_MUTEX_WAIT"],OS_TASK_FLAG_NO_TIMEOUT:[99,0,1,"c.OS_TASK_FLAG_NO_TIMEOUT"],OS_TASK_FLAG_SEM_WAIT:[99,0,1,"c.OS_TASK_FLAG_SEM_WAIT"],OS_TASK_MAX_NAME_LEN:[99,0,1,"c.OS_TASK_MAX_NAME_LEN"],OS_TASK_PRI_HIGHEST:[99,0,1,"c.OS_TASK_PRI_HIGHEST"],OS_TASK_PRI_LOWEST:[99,0,1,"c.OS_TASK_PRI_LOWEST"],OS_TIMEOUT_NEVER:[100,0,1,"c.OS_TIMEOUT_NEVER"],OS_TIME_MAX:[100,0,1,"c.OS_TIME_MAX"],OS_TIME_TICK_GEQ:[100,0,1,"c.OS_TIME_TICK_GEQ"],OS_TIME_TICK_GT:[100,0,1,"c.OS_TIME_TICK_GT"],OS_TIME_TICK_LT:[100,0,1,"c.OS_TIME_TICK_LT"],_sbrk:[182,3,1,"c._sbrk"],completion_cb:[130,4,1,"c.completion_cb"],console_append_char_cb:[130,4,1,"c.console_append_char_cb"],console_blocking_mode:[130,3,1,"c.console_blocking_mode"],console_echo:[130,3,1,"c.console_echo"],console_handle_char:[130,3,1,"c.console_handle_char"],console_init:[130,3,1,"c.console_init"],console_input:[130,5,1,"c.console_input"],console_is_init:[130,3,1,"c.console_is_init"],console_is_midline:[130,6,1,"c.console_is_midline"],console_non_blocking_mode:[130,3,1,"c.console_non_blocking_mode"],console_out:[130,3,1,"c.console_out"],console_printf:[130,3,1,"c.console_printf"],console_read:[130,3,1,"c.console_read"],console_rx_cb:[130,4,1,"c.console_rx_cb"],console_set_completion_cb:[130,3,1,"c.console_set_completion_cb"],console_set_queues:[130,3,1,"c.console_set_queues"],console_write:[130,3,1,"c.console_write"],hal_bsp_core_dump:[182,3,1,"c.hal_bsp_core_dump"],hal_bsp_flash_dev:[182,3,1,"c.hal_bsp_flash_dev"],hal_bsp_get_nvic_priority:[182,3,1,"c.hal_bsp_get_nvic_priority"],hal_bsp_hw_id:[182,3,1,"c.hal_bsp_hw_id"],hal_bsp_init:[182,3,1,"c.hal_bsp_init"],hal_bsp_power_state:[182,3,1,"c.hal_bsp_power_state"],hal_debugger_connected:[191,3,1,"c.hal_debugger_connected"],hal_flash_align:[184,3,1,"c.hal_flash_align"],hal_flash_erase:[184,3,1,"c.hal_flash_erase"],hal_flash_erase_sector:[184,3,1,"c.hal_flash_erase_sector"],hal_flash_init:[184,3,1,"c.hal_flash_init"],hal_flash_ioctl:[184,3,1,"c.hal_flash_ioctl"],hal_flash_read:[184,3,1,"c.hal_flash_read"],hal_flash_write:[184,3,1,"c.hal_flash_write"],hal_gpio_init_in:[186,3,1,"c.hal_gpio_init_in"],hal_gpio_init_out:[186,3,1,"c.hal_gpio_init_out"],hal_gpio_irq_disable:[186,3,1,"c.hal_gpio_irq_disable"],hal_gpio_irq_enable:[186,3,1,"c.hal_gpio_irq_enable"],hal_gpio_irq_handler_t:[186,4,1,"c.hal_gpio_irq_handler_t"],hal_gpio_irq_init:[186,3,1,"c.hal_gpio_irq_init"],hal_gpio_irq_release:[186,3,1,"c.hal_gpio_irq_release"],hal_gpio_irq_trig_t:[186,4,1,"c.hal_gpio_irq_trig_t"],hal_gpio_mode_t:[186,4,1,"c.hal_gpio_mode_t"],hal_gpio_pull_t:[186,4,1,"c.hal_gpio_pull_t"],hal_gpio_read:[186,3,1,"c.hal_gpio_read"],hal_gpio_toggle:[186,3,1,"c.hal_gpio_toggle"],hal_gpio_write:[186,3,1,"c.hal_gpio_write"],hal_i2c_init:[187,3,1,"c.hal_i2c_init"],hal_i2c_master_data:[187,7,1,"_CPPv319hal_i2c_master_data"],hal_i2c_master_probe:[187,3,1,"c.hal_i2c_master_probe"],hal_i2c_master_read:[187,3,1,"c.hal_i2c_master_read"],hal_i2c_master_write:[187,3,1,"c.hal_i2c_master_write"],hal_reset_cause:[191,3,1,"c.hal_reset_cause"],hal_spi_abort:[190,3,1,"c.hal_spi_abort"],hal_spi_config:[190,3,1,"c.hal_spi_config"],hal_spi_data_mode_breakout:[190,3,1,"c.hal_spi_data_mode_breakout"],hal_spi_disable:[190,3,1,"c.hal_spi_disable"],hal_spi_enable:[190,3,1,"c.hal_spi_enable"],hal_spi_init:[190,3,1,"c.hal_spi_init"],hal_spi_set_txrx_cb:[190,3,1,"c.hal_spi_set_txrx_cb"],hal_spi_settings:[190,7,1,"_CPPv316hal_spi_settings"],hal_spi_slave_set_def_tx_val:[190,3,1,"c.hal_spi_slave_set_def_tx_val"],hal_spi_tx_val:[190,3,1,"c.hal_spi_tx_val"],hal_spi_txrx:[190,3,1,"c.hal_spi_txrx"],hal_spi_txrx_cb:[190,4,1,"c.hal_spi_txrx_cb"],hal_spi_txrx_noblock:[190,3,1,"c.hal_spi_txrx_noblock"],hal_system_clock_start:[191,3,1,"c.hal_system_clock_start"],hal_system_reset:[191,3,1,"c.hal_system_reset"],hal_system_restart:[191,3,1,"c.hal_system_restart"],hal_system_start:[191,3,1,"c.hal_system_start"],hal_timer:[192,7,1,"_CPPv39hal_timer"],hal_timer_cb:[192,4,1,"c.hal_timer_cb"],hal_timer_config:[192,3,1,"c.hal_timer_config"],hal_timer_deinit:[192,3,1,"c.hal_timer_deinit"],hal_timer_delay:[192,3,1,"c.hal_timer_delay"],hal_timer_get_resolution:[192,3,1,"c.hal_timer_get_resolution"],hal_timer_init:[192,3,1,"c.hal_timer_init"],hal_timer_read:[192,3,1,"c.hal_timer_read"],hal_timer_set_cb:[192,3,1,"c.hal_timer_set_cb"],hal_timer_start:[192,3,1,"c.hal_timer_start"],hal_timer_start_at:[192,3,1,"c.hal_timer_start_at"],hal_timer_stop:[192,3,1,"c.hal_timer_stop"],hal_uart_blocking_tx:[193,3,1,"c.hal_uart_blocking_tx"],hal_uart_close:[193,3,1,"c.hal_uart_close"],hal_uart_config:[193,3,1,"c.hal_uart_config"],hal_uart_init:[193,3,1,"c.hal_uart_init"],hal_uart_init_cbs:[193,3,1,"c.hal_uart_init_cbs"],hal_uart_rx_char:[193,4,1,"c.hal_uart_rx_char"],hal_uart_start_rx:[193,3,1,"c.hal_uart_start_rx"],hal_uart_start_tx:[193,3,1,"c.hal_uart_start_tx"],hal_uart_tx_char:[193,4,1,"c.hal_uart_tx_char"],hal_uart_tx_done:[193,4,1,"c.hal_uart_tx_done"],hal_watchdog_enable:[194,3,1,"c.hal_watchdog_enable"],hal_watchdog_init:[194,3,1,"c.hal_watchdog_init"],hal_watchdog_tickle:[194,3,1,"c.hal_watchdog_tickle"],os_callout:[84,7,1,"_CPPv310os_callout"],os_callout_init:[84,3,1,"c.os_callout_init"],os_callout_queued:[84,3,1,"c.os_callout_queued"],os_callout_remaining_ticks:[84,3,1,"c.os_callout_remaining_ticks"],os_callout_reset:[84,3,1,"c.os_callout_reset"],os_callout_stop:[84,3,1,"c.os_callout_stop"],os_cputime_delay_nsecs:[86,3,1,"c.os_cputime_delay_nsecs"],os_cputime_delay_ticks:[86,3,1,"c.os_cputime_delay_ticks"],os_cputime_delay_usecs:[86,3,1,"c.os_cputime_delay_usecs"],os_cputime_get32:[86,3,1,"c.os_cputime_get32"],os_cputime_init:[86,3,1,"c.os_cputime_init"],os_cputime_nsecs_to_ticks:[86,3,1,"c.os_cputime_nsecs_to_ticks"],os_cputime_ticks_to_nsecs:[86,3,1,"c.os_cputime_ticks_to_nsecs"],os_cputime_ticks_to_usecs:[86,3,1,"c.os_cputime_ticks_to_usecs"],os_cputime_timer_init:[86,3,1,"c.os_cputime_timer_init"],os_cputime_timer_relative:[86,3,1,"c.os_cputime_timer_relative"],os_cputime_timer_start:[86,3,1,"c.os_cputime_timer_start"],os_cputime_timer_stop:[86,3,1,"c.os_cputime_timer_stop"],os_cputime_usecs_to_ticks:[86,3,1,"c.os_cputime_usecs_to_ticks"],os_event:[87,7,1,"_CPPv38os_event"],os_event_fn:[87,4,1,"c.os_event_fn"],os_eventq:[87,7,1,"_CPPv39os_eventq"],os_eventq_dflt_get:[87,3,1,"c.os_eventq_dflt_get"],os_eventq_get:[87,3,1,"c.os_eventq_get"],os_eventq_get_no_wait:[87,3,1,"c.os_eventq_get_no_wait"],os_eventq_init:[87,3,1,"c.os_eventq_init"],os_eventq_inited:[87,3,1,"c.os_eventq_inited"],os_eventq_poll:[87,3,1,"c.os_eventq_poll"],os_eventq_put:[87,3,1,"c.os_eventq_put"],os_eventq_remove:[87,3,1,"c.os_eventq_remove"],os_eventq_run:[87,3,1,"c.os_eventq_run"],os_get_uptime_usec:[100,3,1,"c.os_get_uptime_usec"],os_gettimeofday:[100,3,1,"c.os_gettimeofday"],os_mbuf:[89,7,1,"_CPPv37os_mbuf"],os_mbuf_adj:[89,3,1,"c.os_mbuf_adj"],os_mbuf_append:[89,3,1,"c.os_mbuf_append"],os_mbuf_appendfrom:[89,3,1,"c.os_mbuf_appendfrom"],os_mbuf_cmpf:[89,3,1,"c.os_mbuf_cmpf"],os_mbuf_cmpm:[89,3,1,"c.os_mbuf_cmpm"],os_mbuf_concat:[89,3,1,"c.os_mbuf_concat"],os_mbuf_copydata:[89,3,1,"c.os_mbuf_copydata"],os_mbuf_copyinto:[89,3,1,"c.os_mbuf_copyinto"],os_mbuf_dup:[89,3,1,"c.os_mbuf_dup"],os_mbuf_extend:[89,3,1,"c.os_mbuf_extend"],os_mbuf_free:[89,3,1,"c.os_mbuf_free"],os_mbuf_free_chain:[89,3,1,"c.os_mbuf_free_chain"],os_mbuf_get:[89,3,1,"c.os_mbuf_get"],os_mbuf_get_pkthdr:[89,3,1,"c.os_mbuf_get_pkthdr"],os_mbuf_off:[89,3,1,"c.os_mbuf_off"],os_mbuf_pkthdr:[89,7,1,"_CPPv314os_mbuf_pkthdr"],os_mbuf_pool:[89,7,1,"_CPPv312os_mbuf_pool"],os_mbuf_pool_init:[89,3,1,"c.os_mbuf_pool_init"],os_mbuf_prepend:[89,3,1,"c.os_mbuf_prepend"],os_mbuf_prepend_pullup:[89,3,1,"c.os_mbuf_prepend_pullup"],os_mbuf_pullup:[89,3,1,"c.os_mbuf_pullup"],os_mbuf_trim_front:[89,3,1,"c.os_mbuf_trim_front"],os_memblock:[90,7,1,"_CPPv311os_memblock"],os_memblock_from:[90,3,1,"c.os_memblock_from"],os_memblock_get:[90,3,1,"c.os_memblock_get"],os_memblock_put:[90,3,1,"c.os_memblock_put"],os_memblock_put_from_cb:[90,3,1,"c.os_memblock_put_from_cb"],os_membuf_t:[90,4,1,"c.os_membuf_t"],os_mempool:[90,7,1,"_CPPv310os_mempool"],os_mempool_ext_init:[90,3,1,"c.os_mempool_ext_init"],os_mempool_info:[90,7,1,"_CPPv315os_mempool_info"],os_mempool_info_get_next:[90,3,1,"c.os_mempool_info_get_next"],os_mempool_init:[90,3,1,"c.os_mempool_init"],os_mempool_is_sane:[90,3,1,"c.os_mempool_is_sane"],os_mempool_put_fn:[90,4,1,"c.os_mempool_put_fn"],os_mqueue:[89,7,1,"_CPPv39os_mqueue"],os_mqueue_get:[89,3,1,"c.os_mqueue_get"],os_mqueue_init:[89,3,1,"c.os_mqueue_init"],os_mqueue_put:[89,3,1,"c.os_mqueue_put"],os_msys_count:[89,3,1,"c.os_msys_count"],os_msys_get:[89,3,1,"c.os_msys_get"],os_msys_get_pkthdr:[89,3,1,"c.os_msys_get_pkthdr"],os_msys_num_free:[89,3,1,"c.os_msys_num_free"],os_msys_register:[89,3,1,"c.os_msys_register"],os_msys_reset:[89,3,1,"c.os_msys_reset"],os_mutex:[91,7,1,"_CPPv38os_mutex"],os_mutex_init:[91,3,1,"c.os_mutex_init"],os_mutex_pend:[91,3,1,"c.os_mutex_pend"],os_mutex_release:[91,3,1,"c.os_mutex_release"],os_sanity_check:[97,7,1,"_CPPv315os_sanity_check"],os_sanity_check_func_t:[97,4,1,"c.os_sanity_check_func_t"],os_sanity_check_init:[97,3,1,"c.os_sanity_check_init"],os_sanity_check_register:[97,3,1,"c.os_sanity_check_register"],os_sanity_check_reset:[97,3,1,"c.os_sanity_check_reset"],os_sanity_task_checkin:[97,3,1,"c.os_sanity_task_checkin"],os_sched_get_current_task:[85,3,1,"c.os_sched_get_current_task"],os_sem:[98,7,1,"_CPPv36os_sem"],os_sem_get_count:[98,3,1,"c.os_sem_get_count"],os_sem_init:[98,3,1,"c.os_sem_init"],os_sem_pend:[98,3,1,"c.os_sem_pend"],os_sem_release:[98,3,1,"c.os_sem_release"],os_settimeofday:[100,3,1,"c.os_settimeofday"],os_stime_t:[100,4,1,"c.os_stime_t"],os_task:[99,7,1,"_CPPv37os_task"],os_task_count:[99,3,1,"c.os_task_count"],os_task_func_t:[99,4,1,"c.os_task_func_t"],os_task_info:[99,7,1,"_CPPv312os_task_info"],os_task_info_get_next:[99,3,1,"c.os_task_info_get_next"],os_task_init:[99,3,1,"c.os_task_init"],os_task_remove:[99,3,1,"c.os_task_remove"],os_task_state_t:[99,4,1,"c.os_task_state_t"],os_tick_idle:[189,3,1,"c.os_tick_idle"],os_tick_init:[189,3,1,"c.os_tick_init"],os_time_advance:[100,3,1,"c.os_time_advance"],os_time_delay:[100,3,1,"c.os_time_delay"],os_time_get:[100,3,1,"c.os_time_get"],os_time_ms_to_ticks:[100,3,1,"c.os_time_ms_to_ticks"],os_time_t:[100,4,1,"c.os_time_t"],os_timeradd:[100,0,1,"c.os_timeradd"],os_timersub:[100,0,1,"c.os_timersub"],os_timeval:[100,7,1,"_CPPv310os_timeval"],os_timezone:[100,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":[259,261,264,276],"008s":[259,261,264,276],"00z":267,"01t22":68,"02t22":267,"04x":20,"05t02":267,"093s":[259,261,264,276],"0b1000110":187,"0mb":11,"0ubuntu5":6,"0x0":[256,263,276],"0x00":[20,263,264,275],"0x0000":[247,275],"0x00000000":[179,222,224,225],"0x00000001":128,"0x00000002":[128,263],"0x00000004":128,"0x00000008":128,"0x00000010":128,"0x000000b8":256,"0x000000d8":[241,242,289,290],"0x000000dc":[241,242,246,282,289,290],"0x00004000":[222,224,225],"0x00008000":[93,222,224,225],"0x00009ef4":263,"0x0000fca6":256,"0x00023800":222,"0x0003f000":222,"0x0003f800":222,"0x0006":29,"0x0007d000":225,"0x000e0000":224,"0x0010":27,"0x01":[20,27,30,128,264],"0x0100":27,"0x01000000":262,"0x0101":20,"0x0102":20,"0x0103":20,"0x0104":20,"0x0105":20,"0x0106":20,"0x0107":20,"0x0108":20,"0x0109":20,"0x010a":20,"0x010b":20,"0x010c":20,"0x010d":20,"0x010e":20,"0x010f":20,"0x0110":20,"0x0111":20,"0x02":[20,27,30,128,264,275],"0x0201":20,"0x0202":20,"0x0203":20,"0x0204":20,"0x0205":20,"0x0206":20,"0x0207":20,"0x0208":20,"0x0209":20,"0x020a":20,"0x020b":20,"0x020c":20,"0x020d":20,"0x020e":20,"0x020f":20,"0x0210":20,"0x0211":20,"0x0212":20,"0x0213":20,"0x0214":20,"0x0215":20,"0x0216":20,"0x0217":20,"0x0218":20,"0x0219":20,"0x021a":20,"0x021b":20,"0x021c":20,"0x021d":20,"0x021e":20,"0x021f":20,"0x0220":20,"0x0221":20,"0x0222":20,"0x0223":20,"0x0224":20,"0x0225":20,"0x0226":20,"0x0227":20,"0x0228":20,"0x0229":20,"0x022a":20,"0x022c":20,"0x022d":20,"0x022e":20,"0x022f":20,"0x0230":20,"0x0232":20,"0x0234":20,"0x0235":20,"0x0236":20,"0x0237":20,"0x0238":20,"0x0239":20,"0x023a":20,"0x023b":20,"0x023c":20,"0x023d":20,"0x023e":20,"0x023f":20,"0x0240":20,"0x03":[20,30,128],"0x0300":[20,27],"0x0301":20,"0x0302":20,"0x04":[20,27],"0x0401":20,"0x0402":20,"0x0403":20,"0x0404":20,"0x0405":20,"0x0406":20,"0x0407":20,"0x0408":20,"0x0409":20,"0x040a":20,"0x040b":20,"0x040c":20,"0x040d":20,"0x040e":20,"0x0483":260,"0x05":20,"0x0501":20,"0x0502":20,"0x0503":20,"0x0504":20,"0x0505":20,"0x0506":20,"0x0507":20,"0x0508":20,"0x0509":20,"0x050a":20,"0x050b":20,"0x050c":20,"0x050d":20,"0x050e":20,"0x06":[20,247],"0x07":20,"0x08":[20,27,275],"0x08000000":262,"0x08000020":262,"0x08000250":262,"0x08021e90":260,"0x09":20,"0x0a":20,"0x0b":20,"0x0bc11477":256,"0x0c":20,"0x0c80":29,"0x0d":20,"0x0e":20,"0x0f":[20,278],"0x0f505235":128,"0x0fffffff":179,"0x1":[276,278,280,282],"0x10":[20,256,263,264,278],"0x100":20,"0x1000":[89,278,280],"0x10000":93,"0x10000000":179,"0x10010000":262,"0x10036413":262,"0x10076413":260,"0x1010":89,"0x103":20,"0x11":[20,23,255,264],"0x12":20,"0x13":20,"0x14":20,"0x1400":275,"0x15":[20,274,276,278],"0x16":20,"0x17":20,"0x18":20,"0x1800":30,"0x1808":30,"0x180a":30,"0x19":[20,207],"0x1a":20,"0x1b":20,"0x1c":[20,274,276],"0x1d":20,"0x1e":20,"0x1f":20,"0x2":[278,280],"0x20":[20,32,93,256,263,274,276],"0x200":[20,278,280],"0x2000":[278,280],"0x20000":276,"0x20000000":93,"0x20002290":260,"0x20002408":256,"0x20008000":256,"0x21":[20,32],"0x21000000":256,"0x22":[20,23,32,264],"0x23":[20,32],"0x24":20,"0x25":[20,275],"0x26":20,"0x27":20,"0x28":20,"0x2800":275,"0x29":20,"0x2a":20,"0x2ba01477":263,"0x2c":20,"0x2d":20,"0x2e":20,"0x2f":20,"0x30":[20,256,263],"0x300":20,"0x311":278,"0x32":[20,278],"0x33":23,"0x34":20,"0x35":20,"0x36":20,"0x37":20,"0x374b":260,"0x38":20,"0x39":20,"0x3a":20,"0x3a000":93,"0x3b":20,"0x3c":20,"0x3c00":275,"0x3d":20,"0x3e":20,"0x3f":20,"0x4":[278,280],"0x40":[20,256,263,274,276],"0x400":20,"0x4000":[278,280],"0x40007000":276,"0x4001e504":263,"0x4001e50c":263,"0x40number":187,"0x41000000":260,"0x42000":61,"0x44":[23,275],"0x4400":275,"0x46":187,"0x4f":[274,276],"0x50":[256,263],"0x500":20,"0x5000":275,"0x55":23,"0x60":[256,263],"0x61":[274,276],"0x66":23,"0x6c00":275,"0x70":[256,263],"0x72":[274,276],"0x7800":275,"0x7fefd260":128,"0x7fff8000":276,"0x7fffffff":179,"0x80":[274,276],"0x8000":61,"0x8000000":262,"0x80000000":179,"0x8079b62c":128,"0x81":187,"0x8801":275,"0x8c":187,"0x8d":187,"0x90":[274,276],"0x96f3b83c":128,"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":128,"0xfb":278,"0xfe":275,"0xff":[128,179],"0xffff":[29,190,275],"0xfffffffe":179,"0xffffffff":[91,98,128,179,206,256],"0xffffffff0xffffffff0xffffffff0xffffffff":263,"100kb":101,"1024kbyte":[260,262],"103kb":222,"10m":27,"110kb":222,"128kb":[9,224],"12c":[259,261,264,276],"12kb":225,"12mhz":9,"132425ssb":30,"132428ssb":30,"132433ssb":30,"132437ssb":30,"132441ssb":30,"14e":[241,289],"14h":[241,282,289],"1503a0":268,"16kb":[9,224,225],"16kbram":53,"16mb":9,"190a192":275,"1_amd64":[57,60,80,83],"1c15":[274,276],"1d11":285,"1d13":[268,288],"1d560":222,"1eec4":222,"1kb":222,"1st":68,"1ubuntu1":6,"1wx":263,"200mhz":9,"2015q2":[4,12],"2022609336ssb":250,"2022687456ssb":250,"2022789012ssb":250,"2022851508ssb":250,"2042859320ssb":250,"2042937440ssb":250,"248m":6,"250m":238,"256kb":256,"262s":[259,261,264,276],"28a29":275,"28t22":267,"291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682":239,"296712s":262,"2a24":48,"2d5217f":81,"2m_interval_max":27,"2m_interval_min":27,"2m_latenc":27,"2m_max_conn_event_len":27,"2m_min_conn_event_len":27,"2m_scan_interv":27,"2m_scan_window":27,"2m_timeout":27,"2msym":21,"300v":[259,261,264,276],"32kb":[225,256],"32mb":9,"32wx":[256,263],"363s":[259,261,264,276],"3_1":36,"3mb":81,"4_9":4,"4fa7":[274,276],"500m":238,"512kb":93,"575c":222,"5kb":101,"6lowpan":21,"73d77f":71,"78e4d263eeb5af5635705b7cae026cc184f14aa6c6c59c6e80616035cd2efc8f":222,"7b3w9m4n2mg3sqmgw2q1b9p80000gn":55,"7kb":222,"8ab6433f8971b05c2a9c3341533e8ddb754e404":271,"948f118966f7989628f8f3be28840fd23a200fc219bb72acdfe9096f06c4b39b":222,"9cf8af22b1b573909a8290a90c066d4e190407e97680b7a32243960ec2bf3a7f":288,"9mb":58,"abstract":[9,20,95,96,134,151,162,165,173,180,206,208,209,238,275,292],"boolean":[199,225],"break":[20,89,136,233,251,275],"byte":[10,19,23,27,46,66,71,73,89,90,99,128,130,132,140,141,153,157,158,160,163,168,169,170,171,172,173,174,179,182,187,190,193,199,222,226,239,243,254,255,264],"case":[2,6,7,20,21,30,55,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,89,92,93,97,98,99,128,134,173,179,183,222,223,225,226,227,228,229,230,231,233,235,242,243,247,251,252,254,255,256,267,268,274,275,276,290],"catch":20,"char":[90,92,97,99,129,130,134,138,139,152,154,155,156,159,160,161,162,164,166,169,171,172,176,177,179,193,197,198,199,200,202,205,214,215,219,220,221,223,225,232,238,243,251,254,255,258,267,275,280,282],"class":[134,264],"const":[87,89,90,93,99,128,130,135,152,154,155,156,157,158,159,160,161,162,164,165,166,169,170,171,172,176,177,180,182,184,185,199,204,205,208,214,219,221,223,251,253,254,255,267,274,275,276],"default":[1,2,4,6,7,10,12,20,24,26,27,28,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,87,89,91,92,93,94,96,97,99,130,131,133,134,135,151,175,190,199,205,206,207,208,209,211,212,213,214,216,221,222,223,224,225,235,236,238,239,241,247,249,251,254,255,256,257,264,269,274,275,276,278,279,281,282,284,289],"enum":[99,129,186,191,193,199,206,274,275],"export":[1,11,23,60,61,80,82,83,87,130,134,136,205,206,207,208,209,236,277,278,280],"final":[8,55,89,91,93,128,142,179,181,201,222,240,243,246,249,274,276],"float":[64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,101,199,206,277],"function":[1,7,9,14,20,23,31,61,84,86,87,88,89,90,92,94,95,96,97,99,128,129,130,134,135,136,138,146,150,151,152,153,154,155,156,158,160,161,162,164,166,167,168,169,171,173,174,176,179,180,181,183,186,187,188,189,190,191,192,193,196,198,200,201,202,203,204,205,207,209,212,214,215,216,217,219,220,222,226,227,228,229,230,232,233,235,236,238,239,241,242,246,249,250,252,254,255,257,258,264,267,269,274,275,276,278,282,287,289,290,292],"goto":[97,159,204,208,217,218,274,275,276],"i\u00b2c":187,"import":[11,55,57,80,89,93,100,101,187,243,246,249,252,276],"int":[1,20,26,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,84,86,87,89,90,92,97,99,100,129,130,134,135,136,138,139,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,159,160,161,162,163,164,165,166,168,169,170,171,172,176,177,178,180,182,183,184,186,187,189,190,191,192,193,194,197,198,199,200,201,202,203,204,207,208,214,215,217,218,219,220,221,223,225,226,227,228,230,231,232,238,240,243,249,251,252,253,254,255,258,267,274,275,276,280,282],"long":[3,21,24,28,89,92,98,101,151,169,179,187,222,263,282],"new":[2,3,4,6,10,11,21,23,24,27,30,31,34,39,41,45,46,50,53,57,58,59,61,85,89,93,96,99,128,130,140,141,142,151,152,161,166,173,176,177,181,187,195,214,222,223,225,235,239,243,245,246,247,252,253,254,255,256,259,260,261,262,263,264,267,268,269,275,276,277,279,292],"null":[84,86,87,89,90,91,92,93,97,98,99,130,135,152,156,160,163,171,173,179,185,190,204,205,207,208,214,219,221,224,225,238,243,249,252,253,254,255,258,274,275,276,277,280,282],"public":[19,25,27,29,30,32,57,66,80,84,87,89,90,91,97,98,99,100,128,130,187,190,192,254,255],"return":[18,26,84,85,86,87,89,90,91,92,93,97,98,99,100,129,130,135,140,152,182,185,186,187,190,191,192,193,194,199,207,208,211,225,238,243,249,251,252,253,256,258,264,267,274,275,276,278,280,282,286],"short":[89,91,214,243],"static":[19,26,66,84,87,90,92,93,97,98,129,130,135,139,180,198,200,201,203,204,205,207,208,215,217,218,219,220,221,226,235,238,247,249,251,252,253,254,255,258,274,275,276,277,280,282],"switch":[10,12,20,58,71,77,81,85,92,93,99,128,181,195,214,236,241,246,247,251,252,274,275,276,282,289],"transient":252,"true":[8,12,86,90,97,100,204,222,226,239,267,276,285,288],"try":[2,20,21,23,89,152,179,187,235,240,241,246,247,250,256,257,258,259,260,261,263,268,270,276,278,282,284,289],"var":[50,55,65,66,97,166],"void":[20,26,84,85,86,87,89,90,92,97,99,100,129,130,134,135,136,138,150,152,153,157,159,160,162,163,166,168,169,170,171,172,178,180,182,183,184,186,187,189,190,191,192,193,194,196,198,199,205,207,208,210,215,216,217,219,220,221,225,226,227,228,230,231,232,233,238,243,249,251,252,253,254,255,258,274,275,276,277,280,282],"while":[4,6,7,8,21,23,26,49,55,61,89,90,92,93,97,99,101,130,136,138,152,154,155,156,161,164,179,193,199,204,208,222,225,226,231,236,238,241,242,243,254,255,258,265,267,274,275,276,280,282,289,290],AES:22,ANS:248,Adding:[56,79,292],And:[61,128,140,222,224,240,243,245,250,274,275,276],But:276,CTS:[193,247],FOR:4,For:[2,3,5,6,7,8,11,12,20,22,23,24,29,30,34,37,39,50,53,55,57,58,59,60,61,62,66,83,84,89,92,93,96,100,101,128,134,135,152,170,173,174,179,180,183,186,187,190,199,205,206,207,208,209,210,220,222,223,224,225,231,233,235,238,239,241,242,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:128,Its:[94,100,101,235,270],NOT:[156,187,192,276],Not:[7,20,29,86,89,179,181,186,190,222,276],One:[6,20,92,101,179,222,235,249,268,275],PCs:8,QoS:[20,21],RTS:[193,247],Such:[179,254,255,270],TMS:256,That:[2,20,61,140,179,225,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,26,27,29,30,31,33,34,37,43,45,46,47,50,55,57,58,59,61,63,64,66,70,71,72,73,75,76,77,78,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,128,129,130,131,132,133,134,135,136,140,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,172,173,174,175,176,177,179,180,181,182,183,184,185,186,187,189,190,191,192,193,194,195,197,198,199,205,206,207,208,209,210,211,212,213,214,215,217,218,219,220,222,223,224,225,226,229,231,233,234,235,236,238,239,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,33,63,128,140,179,222,235,241,247,267,275,276,289],There:[4,8,10,22,23,28,57,61,80,84,89,91,93,94,98,99,100,101,129,130,134,160,179,181,186,205,206,211,214,222,223,241,242,251,256,264,267,271,276,282,289,290],These:[5,20,27,50,61,89,93,94,96,98,128,129,134,179,187,206,209,210,211,214,224,236,245,249,253,254,255,256,257,262,269,270,277,278],Use:[1,7,8,11,27,28,50,57,58,59,62,71,80,81,82,93,132,140,142,222,235,251,254,255,256,259,264,268,269,276,277,279,287],Used:[93,190,193,227,228,230],Uses:[31,42,133,224],Using:[20,49,91,258,287,292],Was:264,Will:20,With:[9,20,21,30,89,92,96,128,222,224,240,241,242,243,246,275,289,290,292],Yes:[10,19,89,128,133,244],__arg:97,__asm:260,__builtin_offsetof:223,__etext:262,__ev:87,__f:97,__hdr:89,__itvl:97,__n:89,__om:89,__omp:89,__sc:97,__t1:[86,100],__t2:[86,100],__type:89,__wfi:260,_access:251,_adc:276,_addr:254,_addr_:[254,255],_app:254,_build:[33,63],_cfg:[207,208],_cli:[208,209,278],_cnt:140,_config:[206,207,208,280],_file:152,_gatt_ac:251,_imghdr_siz:93,_init:[206,207,208],_log:208,_name:225,_nrf52_adc_h_:276,_object:199,_ofb:[207,209,278],_onb:[207,209,282],_pad1:128,_pad2:128,_pad3:128,_pad:[91,128],_param:214,_rea:199,_reserv:206,_resource_t:277,_sbrk:182,_senseair_h_:275,_sensor:207,_set:254,_shell_init:[208,278],_stage:225,_stat:208,a600anj1:222,abbrevi:249,abc:267,abil:[6,22,31,55,89,243],abl:[2,89,93,134,135,236,244,250,254,255,256,269,275,276],abort:[49,190,215,219,224,225,226,267,280],about:[1,3,10,23,29,40,57,58,59,62,64,80,81,82,90,92,93,97,99,100,140,141,145,179,199,210,222,223,234,235,238,243,249,252,253,254,255,259,263,264,270,275,276],abov:[9,10,14,19,89,92,97,100,128,152,160,179,187,190,214,222,223,224,225,236,246,249,251,254,255,258,264,267,269,274,276],absent:[128,179],absolut:[89,192],abstrat:140,acc:278,accel:[278,282],accel_rev:278,acceleromet:[206,208,277,278,279,282],accept:[20,27,136,160,179,187,193,195,235,256,260,262,264,269],access:[15,20,21,27,59,61,64,70,80,81,82,86,88,89,91,92,93,98,134,135,136,140,152,160,167,169,173,180,181,187,195,205,206,208,209,222,225,231,238,246,253,256,267,275],access_:253,access_cb:[251,253,274],access_fla:160,access_flag:[160,162],accgyro:278,accommod:[24,89,96,128,179,254],accomplish:[9,10,55,173,179,251],accord:[93,128,231,232],accordingli:[24,93,99],account:[10,61,89,128],accur:262,achiev:[26,179,254,255],ack_rxd:264,acknowledg:264,acl:20,acquir:[26,91,98,179,187],acquisit:187,across:[30,31,55,61,62,134,179,181],act:[22,30,195,222],action:[9,27,62,235,243,249,253,264,276],activ:[12,16,17,21,47,71,93,99,190,195,222,235,239,241,242,249,264,285,288,289,290],actual:[2,7,34,77,89,93,99,128,156,163,171,179,183,194,222,224,226,234,243,246,254,255,256,269,270,271,275,276],ad_fil:152,adafruit:[8,276,278],adapt:[21,96,256,259,260,268,282],adapter_nsrst_delai:[256,260],adaptor:262,adc0:276,adc:[9,53,134],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:53,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:134,adc_task:276,adc_task_handl:276,adc_task_prio:276,add:[1,2,4,6,7,11,12,27,37,39,50,55,57,58,59,61,62,80,87,89,92,96,98,100,101,130,131,140,152,181,187,207,208,215,223,225,235,236,238,239,240,243,246,247,250,256,257,258,265,267,268,269,278,279,280,281,283,285,286,287,288,292],added:[10,12,32,53,55,81,89,93,98,99,128,130,135,137,152,187,214,238,239,256,258,268,270,274,275,285,286,288,292],adding:[2,10,31,37,55,89,93,94,100,140,223,246,258,267,269,270,274,275,276],addit:[1,12,21,29,43,55,61,62,89,93,94,96,128,134,152,179,187,205,222,225,226,229,235,236,243,246,249,256,257,259,260,262,263,264,275,286],addition:62,addr:[27,30,135,199,204,247,254,255,278],addr_typ:[27,30],address:[20,21,22,25,27,29,31,32,55,66,89,90,92,128,134,135,136,151,179,184,187,190,199,206,208,222,239,241,247,251,264,268,282,289],aditihilbert:4,adjust:[20,89,93,238,240],admin:[4,247],adress:27,adsertis:27,adv:[21,27,30,31],adv_data:27,adv_field:[249,254],adv_param:[249,252,254,255],advanc:[59,168,179,241,242,289,290],advantag:252,advantang:249,adverb:62,adverti:[254,255],advertis:[15,20,21,24,26,31,32,66,239,248,250,252,274,276,277],advertise_128bit_uuid:277,advertise_16bit_uuid:277,advertising_interv:[27,29],advic:[94,95],advinterv:29,aes:[256,259,261,263,268,285,286,288],aesni:[285,286],af80:[274,276],affect:[128,168,173,174,180,205,222,246,265],aflag:[1,50,61],after:[4,8,11,22,26,30,41,50,55,57,58,61,80,81,86,89,90,94,99,100,128,129,134,138,142,146,152,173,179,187,190,193,208,222,224,229,235,236,239,243,244,247,249,251,252,253,256,257,268,269,278,282],again:[8,20,26,57,59,80,93,99,128,140,222,223,243,249,256,259,260,261,262,263,264,274,276,288],against:[22,89,92,100],agnost:152,agre:[275,276],agreement:[275,276],ah02mie2:275,ahead:100,aid:[61,208],aim:[20,135,152,248,292],ain0:276,ain1:276,air:[20,89,222,236,264,283,292],air_q:275,air_qual:[274,275,276],albeit:245,alert:248,algorithm:[21,85],align:[89,90,140,243],all201612161220:75,all:[1,2,3,6,7,8,9,10,12,14,15,16,17,18,20,21,22,24,26,27,28,29,30,31,35,40,41,43,49,50,51,52,53,55,61,66,72,75,89,91,92,93,94,96,97,99,100,128,129,130,134,140,144,150,152,159,160,163,165,166,169,171,173,175,177,179,180,181,183,190,199,205,206,207,208,209,210,211,212,214,219,222,223,224,225,229,231,234,235,236,240,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:[73,77,87,88,89,90,151,179,219,249,251],allow:[2,3,4,6,8,9,12,20,21,27,31,39,50,55,57,58,59,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,87,89,91,92,96,98,128,130,134,152,173,179,182,187,190,191,205,209,210,211,213,214,222,223,225,228,232,235,236,238,243,247,249,252,254,258,259,264,268,276,278,282,284],almost:[8,243],alon:232,along:[10,61,89,90,99,217,275],alongsid:[243,254],alphabet:[179,225],alreadi:[6,7,8,11,20,24,31,43,58,59,81,82,86,95,96,128,135,146,153,159,160,165,166,167,172,179,186,192,235,240,241,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,21,23,24,27,34,37,40,55,57,58,59,60,61,66,80,83,89,90,92,93,96,98,99,100,128,129,130,131,134,135,140,152,173,179,190,193,195,205,206,207,208,210,212,214,222,223,224,225,235,236,238,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,128,140,222,251],although:269,altogeth:[84,274],alwai:[8,61,93,100,128,156,158,160,161,168,170,179,183,245,251,254,255,262,267,269,270,275,292],ambigu:20,ambiti:246,amd64:[57,80],amend:[1,32,50,62,239,241,242,265,289,290],amg:278,among:[85,93,128,176,222],amongst:89,amount:[24,89,90,95,152,171,205,222,243,249],analog:[134,283],analyz:[12,242,290],android:[277,279,281,284],ani:[1,4,8,10,14,21,22,27,33,49,50,59,61,63,64,66,73,76,77,80,81,82,84,86,87,89,90,91,92,93,95,97,98,99,100,128,130,135,136,152,159,169,173,174,175,176,178,179,190,193,205,208,209,214,222,223,225,232,235,236,239,247,249,258,259,264,270,274,275,276,282,287,292],announc:[249,254,255],annoy:[251,271],anonym:27,anoth:[10,21,26,27,30,61,89,91,92,93,94,95,98,99,100,130,186,195,222,224,235,241,242,243,249,251,264,275,276,286,289,290],ans:[275,276],answer:92,anymor:[89,243],anyth:[1,8,23,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,222,235,240,246,254,255,257,270,275,276],apach:[1,2,6,7,10,11,12,21,32,33,37,38,39,43,44,50,51,53,55,57,58,59,61,62,63,80,81,82,84,93,128,130,133,134,152,183,222,223,225,235,241,242,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:100,api:[1,16,17,18,19,20,21,53,55,61,92,96,134,135,162,181,185,208,209,214,223,255,260,277,281],app:[1,7,8,12,21,26,29,32,34,37,38,42,43,45,46,47,48,50,53,55,62,73,76,77,93,128,130,134,152,181,191,223,224,225,235,236,238,239,240,241,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:205,app_util_platform:276,appear:[27,29,96,187,243,251,253],append:[89,140,158,168,170,179,267],append_loc:[141,142],append_test:267,appl:[241,242,256,282,284,289,290],appli:[12,24,100,128,130,173,174,179,193,205,222,225,264,267],applic:[1,2,4,5,6,8,9,10,11,13,14,18,20,21,23,24,25,26,28,30,34,39,42,47,50,55,57,58,59,60,61,73,76,77,78,82,83,87,89,93,97,99,128,130,131,132,133,134,152,173,179,184,190,208,209,210,211,212,213,214,220,223,224,225,234,239,242,245,248,251,252,257,266,267,274,275,281,284,286,287,290,292],applicaton:1,applict:12,approach:[31,93,225],appropri:[62,89,93,96,99,132,134,179,187,190,225,235,240,246,249,252,254,255,257,275,276,281],approv:10,apps_air_qu:275,apps_bleprph:222,apps_blinki:[55,61],apps_my_sensor_app:282,apr:[259,261,264,276],apropo:[241,242,256,282,289,290],apt:[4,6,7,56,60,79,83,247],arbitrari:[128,235,247,256,259,260,261,262,263,264,268,276,278,285,286,288],arbitrarili:[128,179,255],arc4:256,arch:[61,93,96,231,259,260,261,262,263,264,282],arch_sim:[258,282],architectur:[57,80,85,90,93,95,96,100,128,134,151,181,186,243],archiv:[4,7,57,59,61,166,235,236,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:53,arduino_blinki:[12,243,256],arduino_boot:[12,256],arduino_mkr1000:268,arduino_primo_nrf52:[53,259,275],arduino_zero:256,arduino_zero_debug:256,arduinowifi:268,area:[89,93,128,129,140,150,174,176,177,182,225],area_cnt:182,area_desc:[176,177],aren:101,arg:[12,86,89,90,92,97,99,134,150,184,186,190,192,193,205,208,217,226,238,243,251,252,274,275,276,282],argc:[92,99,129,138,139,176,177,197,214,215,219,220,221,225,232,238,243,254,255,258,267,275,280,282],argument:[11,12,20,45,50,55,62,84,87,89,90,97,99,100,130,167,183,186,187,190,192,199,205,208,210,214,220,243,249,252,253,254,255,259,261,269,270,282],argv:[99,129,138,139,176,177,197,214,215,219,220,221,225,232,238,243,254,255,258,267,275,280,282],arm:[5,6,7,12,84,93,101,241,242,256,262,282,288,289,290],around:[30,89,128,276,277,279],arrai:[23,87,139,140,150,173,174,176,177,190,199,200,201,203,204,214,219,225,240,243,249,253],arrang:[93,222],arriv:89,articl:271,artifact:[35,39,50,55,57,58,59,269],ascii:179,asf:[1,269,275,276],ask:[10,92,129,193,206,243,262,269,270,275],aspect:[27,89,128,243],assembl:[1,61,93,96,259,260,261,262,263,264,282],assert:[67,89,97,130,157,170,176,177,190,207,223,226,238,243,251,252,253,254,255,258,274,275,276,280,282],assign:[10,19,21,23,29,37,50,53,66,90,92,93,99,140,179,180,225,235,251,256,259,260,261,262,263,264,268,276,278,285,288],associ:[22,24,87,89,97,99,128,192,225,226,249,252],assum:[7,12,30,43,59,60,82,83,87,89,93,99,128,135,190,195,225,235,236,238,240,241,242,245,246,258,264,274,275,276,277,279,281,282,289,290],asynchron:193,at45db:135,at45db_default_config:135,at45db_dev:135,at45db_erase_sector:135,at45db_init:135,at45db_read:135,at45db_sector_info:135,at45db_writ:135,at45dbxxx:135,at91samd21g18:256,at91samd:256,ate_m:206,atmel:[2,256,268],atop:[134,181],att:[18,21,28,251],attach:[8,12,89,93,186,191,241,242,246,259,264,276,282,289,290],attempt:[20,23,27,89,90,91,99,128,163,171,176,177,178,179,187,225,251,252,253,264],attempt_stat:223,attent:3,attr:[28,30,204],attr_handl:[250,251,252,274,276],attribit:199,attribut:[14,16,17,20,21,28,50,53,62,66,90,94,96,199,204,225,248,251],auth:[27,271],authent:[20,22,30,128,250],author:[1,20,43,61,130,267,275,276],auto:[29,135],autocomplet:55,autoconf:55,autom:31,automat:[1,10,21,24,25,42,55,61,94,196,214,223,225,229,236,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,20,21,23,24,29,30,31,32,47,57,58,59,62,64,73,80,81,82,87,89,90,91,97,98,101,128,130,132,134,140,152,163,173,193,195,206,214,222,225,231,234,236,241,242,254,258,264,270,276,281,289,290],avail_queu:130,avoid:[61,89,91,92,97,243,277],awai:[20,93,129,251,276],await:3,awar:[249,254,255],b0_0:262,b0_1:262,b1_0:262,b1_1:262,b5729002b340:[274,276],b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2:239,bab:205,back:[8,58,64,69,80,81,82,89,90,100,101,128,129,130,187,212,236,253,262,263,275,281,285,286,288],backend:129,backward:[21,128,130,179,214],bad:[128,222,270],badli:92,band:[21,22,27],bang:275,bank:262,bar:[12,129,292],bare:[84,248,254,255,292],base64:[7,130,264,282],base:[1,2,4,6,7,12,20,21,24,31,34,39,55,57,58,59,61,89,101,132,134,136,168,181,182,187,224,243,247,253,256,259,260,262,263,268,275,277,278,282],baselibc:[7,48,93],baselin:133,bash:[2,12,55,59,93],bash_complet:36,bash_profil:[11,58,60,81,83],bashrc:55,basi:[9,19,22,99,270,275,276],basic:[1,14,21,29,30,31,61,89,93,99,101,134,152,182,184,186,193,222,236,239,246,247,264,269,271,273,274,284,286,287],batch:93,batteri:[9,24,31,96,254],baud:[66,130,247,275],baudrat:[135,190,193],bbno055_cli:278,bc_acc_bw:[208,280],bc_acc_rang:[208,280],bc_mask:[208,280],bc_opr_mod:[208,280],bc_placement:208,bc_pwr_mode:[208,280],bc_unit:[208,280],bc_use_ext_xt:280,bcfg:280,bd_addr:20,be9699809a049:71,beacon:[14,245,246,257],bearer:[21,32],becaus:[8,10,12,20,22,26,30,50,87,128,169,179,180,187,190,206,208,211,215,222,224,243,267,269,271,275,277,278,279,282],becom:[22,31,128,249,252],been:[4,10,20,26,36,43,55,58,59,61,77,81,82,84,88,89,90,99,128,129,138,140,152,153,165,173,179,190,193,222,225,244,247,252,256,259,264,268,274,275],befor:[2,4,7,8,12,20,41,50,57,61,80,84,86,88,89,91,92,93,97,99,100,101,128,129,130,140,146,173,174,178,190,192,193,194,199,210,211,214,216,222,223,225,231,232,236,238,243,246,247,248,249,251,254,255,257,258,260,264,267,268,276,281,284,287],begin:[26,89,99,140,148,193,247,250,252,254,255,267,269],beginn:292,behav:[20,30,92,254,255,267],behavior:[59,92,96,161,162,173,242,243,251,253,267,268,290],behaviour:89,behind:[89,100],being:[20,89,90,92,97,99,100,128,129,135,152,179,186,187,188,197,198,222,226,243,250,252,267,275,292],bell:98,belong:[14,90,128,179,253],below:[1,2,4,6,12,18,20,22,23,24,30,43,62,89,92,93,94,98,99,128,130,132,135,153,160,163,179,180,192,208,222,235,243,246,251,253,256,259,260,261,262,263,264,265,267,269,270,271,274,276,277,278,280,284,292],benefit:[10,92,179,225,234,238],best:[89,93,160,199,270],beta:[134,276],better:[128,223],between:[7,12,21,26,27,31,37,46,55,98,100,130,179,186,187,197,199,209,222,224,225,236,238,247,259,264,270,276,278,282],beyond:[89,179],bhd:66,big:[23,61,89,264,270],bigger:222,bin:[2,4,7,11,12,34,35,37,38,43,46,48,50,55,57,58,59,60,61,80,81,82,83,93,168,169,222,225,235,236,239,240,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:61,binari:[4,7,11,34,37,39,55,58,60,61,79,81,83,101,132,187,258,275],binutil:4,bit:[7,14,23,25,27,29,57,58,59,66,81,82,86,89,90,99,100,101,128,179,187,188,190,193,206,208,210,211,222,223,241,242,243,246,251,252,253,254,255,268,270,275,276,277,282,289,290],bitbang:188,bitmap:90,bitmask:99,bits0x00:27,bl_rev:278,bla:205,ble:[14,18,19,23,26,30,31,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,87,89,128,132,133,222,225,236,239,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:[76,236,251],ble_att_err_attr_not_found:20,ble_att_err_attr_not_long:20,ble_att_err_insufficient_authen:20,ble_att_err_insufficient_author:20,ble_att_err_insufficient_enc:20,ble_att_err_insufficient_key_sz:20,ble_att_err_insufficient_r:[20,274,276],ble_att_err_invalid_attr_value_len:[20,251],ble_att_err_invalid_handl:20,ble_att_err_invalid_offset:20,ble_att_err_invalid_pdu:20,ble_att_err_prepare_queue_ful:20,ble_att_err_read_not_permit:20,ble_att_err_req_not_support:20,ble_att_err_unlik:[20,274,276],ble_att_err_unsupported_group:20,ble_att_err_write_not_permit:20,ble_att_svr_entry_pool:73,ble_att_svr_prep_entry_pool:73,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:20,ble_err_auth_fail:20,ble_err_chan_class:20,ble_err_cmd_disallow:20,ble_err_coarse_clk_adj:20,ble_err_conn_accept_tmo:20,ble_err_conn_establish:20,ble_err_conn_limit:20,ble_err_conn_parm:20,ble_err_conn_rej_bd_addr:20,ble_err_conn_rej_channel:20,ble_err_conn_rej_resourc:20,ble_err_conn_rej_secur:20,ble_err_conn_spvn_tmo:20,ble_err_conn_term_loc:20,ble_err_conn_term_m:20,ble_err_ctlr_busi:20,ble_err_diff_trans_col:20,ble_err_dir_adv_tmo:20,ble_err_encryption_mod:20,ble_err_host_busy_pair:20,ble_err_hw_fail:20,ble_err_inq_rsp_too_big:20,ble_err_instant_pass:20,ble_err_insufficient_sec:20,ble_err_inv_hci_cmd_parm:20,ble_err_inv_lmp_ll_parm:20,ble_err_link_key_chang:20,ble_err_lmp_collis:20,ble_err_lmp_ll_rsp_tmo:20,ble_err_lmp_pdu:20,ble_err_mac_conn_fail:20,ble_err_mem_capac:20,ble_err_no_pair:20,ble_err_no_role_chang:20,ble_err_page_tmo:20,ble_err_parm_out_of_rang:20,ble_err_pending_role_sw:20,ble_err_pinkey_miss:20,ble_err_qos_parm:20,ble_err_qos_reject:20,ble_err_rd_conn_term_pwroff:20,ble_err_rd_conn_term_resrc:20,ble_err_rem_user_conn_term:20,ble_err_repeated_attempt:20,ble_err_reserved_slot:20,ble_err_role_sw_fail:20,ble_err_sco_air_mod:20,ble_err_sco_itvl:20,ble_err_sco_offset:20,ble_err_sec_simple_pair:20,ble_err_synch_conn_limit:20,ble_err_unit_key_pair:20,ble_err_unk_conn_id:20,ble_err_unk_lmp:20,ble_err_unknown_hci_cmd:20,ble_err_unspecifi:20,ble_err_unsupp_lmp_ll_parm:20,ble_err_unsupp_qo:20,ble_err_unsupp_rem_featur:20,ble_err_unsupport:20,ble_ga:253,ble_gap:76,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:73,ble_gatt:76,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:76,ble_gattc_proc_pool:73,ble_gatts_chr_upd:[274,276],ble_gatts_clt_cfg_pool:73,ble_gatts_find_chr:[274,276],ble_gatts_register_svc:253,ble_h:[14,15,16,17,19,20,23,26,76,254,255,276],ble_hci_ram_evt_hi_pool:73,ble_hci_ram_evt_lo_pool:73,ble_hci_uart_baud:247,ble_hs_:253,ble_hs_adv_field:[249,254],ble_hs_att_err:20,ble_hs_cfg:[26,254,255],ble_hs_conn_pool:73,ble_hs_eagain:20,ble_hs_ealreadi:20,ble_hs_eapp:20,ble_hs_eauthen:20,ble_hs_eauthor:20,ble_hs_ebaddata:20,ble_hs_ebusi:20,ble_hs_econtrol:20,ble_hs_edon:20,ble_hs_eencrypt:20,ble_hs_eencrypt_key_sz:20,ble_hs_einv:20,ble_hs_emsgs:20,ble_hs_eno:20,ble_hs_enoaddr:20,ble_hs_enomem:20,ble_hs_enomem_evt:20,ble_hs_enotconn:20,ble_hs_enotsup:20,ble_hs_enotsync:20,ble_hs_eo:20,ble_hs_ereject:20,ble_hs_erol:20,ble_hs_err_sm_peer_bas:20,ble_hs_err_sm_us_bas:20,ble_hs_estore_cap:20,ble_hs_estore_fail:20,ble_hs_etimeout:20,ble_hs_etimeout_hci:20,ble_hs_eunknown:20,ble_hs_ev_tx_notif:87,ble_hs_event_tx_notifi:87,ble_hs_forev:[252,254,255],ble_hs_hci_err:20,ble_hs_hci_ev_pool:73,ble_hs_id:23,ble_hs_id_gen_rnd:[23,254,255],ble_hs_id_set_rnd:[19,23,254,255],ble_hs_l2c_err:20,ble_hs_reset_fn:26,ble_hs_sm_peer_err:20,ble_hs_sm_us_err:20,ble_hs_sync_fn:26,ble_ibeacon_set_adv_data:255,ble_l2cap:76,ble_l2cap_chan_pool:73,ble_l2cap_sig_err_cmd_not_understood:20,ble_l2cap_sig_err_invalid_cid:20,ble_l2cap_sig_err_mtu_exceed:20,ble_l2cap_sig_proc_pool:73,ble_ll:[76,77,275],ble_ll_cfg_feat_le_encrypt:222,ble_ll_conn:76,ble_ll_prio:225,ble_lp_clock:24,ble_max_connect:[277,279],ble_mesh_dev_uuid:32,ble_mesh_pb_gatt:32,ble_own:[254,255],ble_own_addr_random:[254,255],ble_phi:76,ble_prph:275,ble_public_dev_addr:23,ble_rigado:47,ble_role_broadcast:279,ble_role_peripher:279,ble_sm_err_alreadi:20,ble_sm_err_authreq:20,ble_sm_err_cmd_not_supp:20,ble_sm_err_confirm_mismatch:20,ble_sm_err_cross_tran:20,ble_sm_err_dhkei:20,ble_sm_err_enc_key_sz:20,ble_sm_err_inv:20,ble_sm_err_numcmp:20,ble_sm_err_oob:20,ble_sm_err_pair_not_supp:20,ble_sm_err_passkei:20,ble_sm_err_rep:20,ble_sm_err_unspecifi:20,ble_sm_legaci:222,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:24,bleadc:276,blecent:[7,61],blehci:[7,61],blehciproj:247,blehostd:66,blemesh:[21,32],blenano:53,bleprph:[7,21,61,66,222,239,242,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,61,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,61],bletest:[7,61],bletini:[7,21,37,38,45,46,50,61,71,236,247,250],bletiny_chr_pool:73,bletiny_dsc_pool:73,bletiny_svc_pool:73,bletoh:89,bleuart:[7,61],blink:[1,7,61,93,99,238,240,243,256,257,259,260,261,262,263,275,276,292],blink_nord:[242,290],blink_nrf:275,blink_primo:275,blink_rigado:47,blinki:[1,12,34,43,44,48,55,61,93,241,242,243,246,247,264,268,275,276,284,285,286,288,289,290,292],blinky_callout:258,blinky_primo:275,blinky_sim:61,blksize:90,blksz:[73,286],blob:[20,183],block:[20,29,73,86,87,89,90,98,134,140,143,173,174,175,176,177,187,190,192,193,238,275,286],block_addr:90,block_siz:90,blocks_siz:90,blue:263,bluetooth:[1,9,20,22,23,24,27,29,32,89,222,239,248,249,254,255,257,275,276,292],bmd300eval:[48,53,261,276],bmd:[261,276],bno055:[207,208,277,279,280],bno055_0:[207,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:[208,280],bno055_cli:[278,279],bno055_config:[208,280],bno055_default_cfg:208,bno055_do_format_android:280,bno055_err:208,bno055_euler_unit_deg:280,bno055_get_chip_id:208,bno055_id:208,bno055_info:208,bno055_init:[207,208],bno055_ofb:[207,277,278,279],bno055_opr_mode_ndof:280,bno055_pwr_mode_norm:280,bno055_sensor_get_config:208,bno055_sensor_read:208,bno055_shel:278,bno055_shell_init:278,bno055_stat_sect:208,bno055_temp_unit_degc:280,board:[1,2,4,5,7,8,10,12,23,24,30,39,42,47,53,55,57,58,59,61,92,93,134,181,182,187,208,209,213,222,224,225,235,236,238,239,240,241,242,243,247,250,254,255,257,258,274,275,280,281,282,284,287,289,290,292],bodi:[128,280],bold:[235,244],bond:[22,27,29,30,250],bondabl:27,bone:[84,248,254,255,292],bookkeep:140,bool:[90,199],boot:[7,10,43,61,93,100,101,130,195,235,236,239,247,256,259,260,261,262,263,264,268,275,276,278,282,285,286,288],boot_boot_serial_test:7,boot_bootutil:222,boot_build_statu:128,boot_build_status_on:128,boot_clear_statu:128,boot_copy_area:128,boot_copy_imag:128,boot_erase_area:128,boot_fill_slot:128,boot_find_image_area_idx:128,boot_find_image_part:128,boot_find_image_slot:128,boot_go:128,boot_img_mag:128,boot_init_flash:128,boot_load:93,boot_mag:128,boot_move_area:128,boot_nrf:275,boot_olimex:262,boot_primo:275,boot_read_image_head:128,boot_read_statu:128,boot_select_image_slot:128,boot_seri:[7,130],boot_serial_setup:7,boot_slot_addr:128,boot_slot_to_area_idx:128,boot_swap_area:128,boot_test:7,boot_vect_delete_main:128,boot_vect_delete_test:128,boot_vect_read_main:128,boot_vect_read_on:128,boot_vect_read_test:128,boot_write_statu:128,bootabl:[222,239,285,288],bootload:[1,12,43,47,93,96,101,130,191,195,235,239,243,257,258,275,276,277,279,287],bootutil:[7,101,128,130,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,14,20,22,27,29,39,55,57,58,59,62,89,91,93,98,128,129,131,134,173,179,187,190,199,205,222,224,225,234,256,258,264,267,268,271,276],bottl:[58,81],bottom:[12,93,97,99,250],bound:[89,93,152],boundari:[89,90,93],box:[12,242,290],bps:193,branch:[1,4,7,10,11,55,56,57,59,60,79,80,82,83,128,244,256,268,269,270],branchnam:10,brand:263,bread:276,breadboard:276,breakdown:222,breakout:8,breakpoint:[256,260],breviti:[222,235,286],brew:[3,4,7,11,36,55,58,60,81,83],brick:128,bridg:179,brief:[19,186,254,255,264],briefli:93,bring:[12,93,181,278,281,284],broad:292,broadca:[254,255],broadcast:[14,27,31,249,254,255],brows:[250,259,269],browser:244,bsd:101,bsp:[1,7,24,32,34,37,38,42,43,45,47,50,55,61,62,92,129,134,173,174,176,177,181,185,186,192,193,206,207,208,209,211,222,225,235,238,241,242,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:174,bsp_timer:192,bsppackag:93,bss:[48,93,222],bssnz_t:[274,275,276],btattach:247,btshell:29,buad:66,buf:[129,135,153,154,155,156,160,161,163,164,168,171,199],buf_len:89,buffer:[10,20,89,90,92,96,97,130,134,156,163,169,171,179,187,190,199,205,224,255,276],buffer_len:276,buffer_size_down:[241,289],bug:[4,7,11,160,161,241,242,256,260,282,289,290],bui:276,build:[1,2,3,4,5,6,11,31,32,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,80,82,92,93,94,96,128,134,181,187,198,205,209,222,223,224,225,231,238,239,248,249,250,257,267,274,275,284,287,292],build_arduino_blinki:12,build_arduino_boot:12,build_numb:197,build_profil:[1,32,37,38,43,50,53,61,93,222,235,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,21,33,34,38,39,42,43,55,57,58,59,60,61,63,81,82,83,89,128,190,205,222,231,235,236,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:[55,101,152],burn:[254,255],bus:[2,187],buse:[134,181],busi:[20,90,91,243,275],button1_pin:238,button:[2,4,10,12,98,238,256,259],bytes_read:[153,160,163,168,171],bytyp:211,c_ev:84,c_evq:84,c_tick:84,cabl:[236,238,239,243,247,256,257,259,260,261,262,264,268,276,282,284,285,287,288],cach:[58,81,134,173,175,181],cache_large_file_test:267,calcul:[20,29,48,90,100,128,140],calendar:9,call:[6,7,9,11,19,21,23,26,36,61,84,85,86,87,88,89,90,91,92,93,97,98,99,100,101,128,129,130,131,132,134,135,138,140,141,142,143,145,146,150,158,161,165,168,171,172,175,176,178,179,180,183,186,187,189,190,191,192,193,194,196,199,205,206,207,208,210,211,212,214,216,217,220,223,225,227,228,229,230,231,232,233,236,238,243,245,246,249,250,251,252,253,254,255,256,258,264,267,269,275,276,277,278,282,287],callback:[20,26,86,87,89,90,130,140,145,150,186,190,192,193,206,207,208,210,212,225,238,249,251,253,254,255,258,275,282],caller:[89,90,130,140,192,198,199,215,219],callout:[87,92,97,211,258,282],callout_l:238,callout_reset:129,came:247,can:[1,2,3,4,5,6,7,8,9,11,12,19,20,21,22,23,24,27,30,31,33,34,35,42,45,50,55,57,58,59,60,61,62,63,64,66,72,76,80,81,82,83,84,85,86,87,89,90,91,92,93,94,96,97,98,99,101,128,129,130,131,134,135,136,137,140,141,143,145,146,150,151,152,161,165,166,169,171,173,174,176,179,180,181,186,188,189,190,192,193,194,195,199,205,206,207,208,209,210,211,214,215,219,220,221,222,223,224,225,227,228,230,231,234,235,236,238,239,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:[20,27,84],candid:269,cannot:[4,19,20,71,86,88,91,92,98,128,129,151,169,179,182,190,192,225,236,256,268,269,270,271],capabl:[20,22,27,29,95,130,134,205,222,241,243,258,289],capac:20,captian:81,captur:179,carbon:274,card:[136,151],care:[89,92,99,163,171,254,255,269,270,274],carri:89,cascad:[1,61],cast:[89,90,251],cat:[80,275,276],catastroph:26,categor:93,categori:[10,96],caus:[90,92,98,153,160,161,166,169,179,187,191,224,226,239,241,243,276,289],caveat:128,cb_arg:[150,192,249,253,254,255],cb_func:192,cbmem:[7,205,226],cbmem_buf:205,cbmem_entry_hdr:226,cbmem_init:205,cbmem_read:226,cbmem_test_case_1_walk:226,cbor:[132,133],cborattr:7,cccd:27,ccm:22,cdc:259,cell:22,cellar:[4,6,11,36,58,60,81,83],central:[20,30,248,249,250,252],certain:[1,21,89,90,92,93,134,247,270],certainli:276,cess_op_:251,cfg:[70,171,172,187,190,192,193,207,208,260],cflag:[1,50,61,93],cgi:101,ch_commit:129,ch_export:129,ch_get:129,ch_name:129,ch_set:129,chain:[89,90,199],challeng:265,chanc:[92,99],chang:[1,4,6,7,10,11,19,20,21,22,24,28,30,46,49,50,52,57,61,62,80,89,93,94,128,179,186,190,206,207,214,222,224,225,235,236,238,240,241,242,243,244,247,250,252,254,255,256,260,274,275,276,277,278,279,282,284,289,290],channel:[20,21,29,134,276],channel_map:27,chapter:[2,21,96,132],charact:[130,139,156,159,173,179,193,197,198,199,200,201,202,203,214,219,225,241,253,268,282,289],character:24,characteri:[251,253],characterist:[9,16,17,21,27,28,128,250,253,274,276],check:[4,6,8,11,20,22,55,56,79,84,87,90,99,129,179,199,208,222,224,225,235,239,246,247,248,259,262,264,267,270,275,278,280,287],checkbox:59,checkin:[77,97,99],checkout:[10,80,82,257],checksum:[140,142],child:[90,154,155,156,161,164,179],children:179,chip:[4,96,134,135,181,186,190,191,206,208,256,257,259,260,263,268,269,275,278],chip_id:278,chipset:[134,181,256,268],choic:[2,10,173,247,278],choos:[6,7,10,89,99,101,222,223,236,243,246,249,258,259,261,274,276],chose:223,chosen:[89,93,128,151,179,276],chr:[251,274,276],chr_access:251,chr_val_handl:[274,276],chunk:[10,89],ci40:53,cid:250,circuit:187,circular:[205,224,225],circularli:270,clang:6,clarif:10,clarifi:134,clariti:136,classif:20,clean:[1,11,33,39,50,57,58,59,63,81,159,177,243,264],cleanli:225,clear:[72,84,89,99,128,179],clearli:[8,20],cli:130,click:[2,4,10,12,244,250,254,255,256,259,260,262,288],client:[12,17,18,20,21,27,31,152,180,209,254,274],clk:190,clobber:166,clock:[20,25,86,191,256,260,278],clock_freq:86,clone:[10,11,45,50,55,58,81],close:[2,59,134,152,153,154,155,156,157,160,161,163,164,168,169,170,171,172,193,207,256,259,260,262,263,280],closest:192,cmake:1,cmd:[55,61,93,184,275,278],cmd_len:275,cmd_queue:130,cmd_read_co2:275,cmp:275,cmsi:[2,7,48,93,256,259,260,261,262,263,282],cmsis_nvic:[93,259,260,261,262,263,282],cn4:235,cnt:[73,130,176,177,190,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:[133,209,212,277,281],coars:20,coc:27,code:[1,5,7,9,11,13,18,21,24,26,27,29,55,85,89,90,92,95,96,97,100,101,128,130,132,134,136,139,152,153,154,155,156,157,159,160,161,163,164,166,168,169,170,171,172,176,177,178,179,180,181,182,186,187,190,192,193,195,205,207,208,209,222,225,226,227,228,230,231,232,236,238,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:27,coded_interval_min:27,coded_lat:27,coded_max_conn_event_len:27,coded_min_conn_event_len:27,coded_scan_interv:27,coded_scan_window:27,coded_timeout:27,codepag:151,coding_standard:7,coexist:128,collect:[1,7,43,55,61,89,90,132,140,180,199,222,235,269],collis:20,colon:66,color:240,column:19,com11:8,com1:66,com3:[8,258,268,278,285,288],com6:8,com:[8,10,11,12,33,55,57,58,59,63,80,81,82,101,183,235,247,258,268,269,271,278,285,286,288],combin:[1,20,22,26,43,61,92,93,187,246,254,255,269,270],combo:222,come:[3,21,30,55,61,93,101,130,134,205,256,262,263,268,275,276,288],comm:[235,257],comma:[51,66],comman:220,command:[1,2,4,7,8,10,11,20,30,34,35,36,37,38,40,41,42,44,45,46,47,48,49,51,52,53,54,57,58,59,60,61,67,68,70,71,72,75,76,78,80,81,82,83,93,96,128,131,133,136,138,187,195,196,205,209,215,219,220,221,222,223,224,225,231,235,237,239,240,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,93,234,292],commerci:275,commit:[10,11],common:[55,61,87,89,96,98,99,134,135,181,186,208,209,222,253,260],commonli:[98,190,254],commun:[9,21,26,27,31,66,78,130,132,136,187,190,206,207,208,235,238,239,240,243,247,249,252,257,264,268,269,275,276,278,282,285,286,287,288,292],compani:29,compar:[10,20,89,160,243,259,260,261,264,272,276],comparison:[20,22,89,100],compat:[4,10,21,55,128,130,135,214,215,222,241,256,264,268,278,280,282,289],compens:100,compil:[1,4,5,6,7,8,11,20,34,47,53,55,58,61,81,89,93,96,101,134,214,223,225,231,234,235,236,238,246,256,259,260,261,262,263,264,268,275,276,277,278,282,285,286,288],complaint:21,complementari:31,complet:[9,12,20,22,27,29,30,33,55,59,63,93,95,96,99,128,130,140,154,155,156,161,164,179,181,187,190,193,205,222,229,233,234,238,243,247,249,254,255,260,269,276,277,280,281,282,285,286,288],completion_cb:130,complex:[9,31,92,93,134,181,243,245],compli:21,complianc:[275,276],compliant:21,complic:[55,92,222],compon:[1,7,12,18,39,48,55,57,58,59,61,85,93,96,129,134,181,187,190,222,223,236,238,239,247,254,255,257,268,275,284,287],compos:[39,57,58,59,234],composit:199,comprehens:234,compress:[55,81,173,254],compris:[7,128,173,174],comput:[3,4,6,8,12,31,56,58,59,79,81,130,142,151,239,243,246,247,256,257,259,260,261,262,263,277,279,284,285,287,288],concept:[12,22,89,92,160,214,225,239,243,245,246,248,256,257,268,284,287],concern:[3,89,179],concis:132,conclud:[254,255,276],concurr:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,84,88,248,249],condit:[4,20,128,179,187,207,214,224,226,267,275,276],condition:[55,207,224,225,278],conduct:[128,132],conf:264,conf_export_tgt:129,conf_fcb_dst:129,conf_fcb_src:129,conf_file_dst:129,conf_file_src:129,conf_get_valu:129,conf_handl:129,conf_init:232,conf_int8:129,conf_load:129,conf_regist:[129,226],conf_sav:129,conf_save_on:129,conf_set_valu:129,conf_str_from_valu:129,conf_value_set:129,confidenti:22,config:[1,7,32,50,61,62,64,78,80,81,82,131,135,151,153,157,160,163,170,192,224,225,232,236,246,275,276,278],config_:207,config__sensor:207,config_bno055_sensor:[207,280],config_cli:129,config_fcb:[129,224],config_fcb_flash_area:[224,225],config_lis2dh12_sensor:207,config_newtmgr:[50,236],config_nff:[129,152,224],config_pkg_init:225,config_test_al:232,config_test_handl:226,config_test_insert:[226,227],configur:[6,7,9,19,20,25,26,31,32,50,55,57,58,59,61,62,86,90,92,93,94,96,128,130,132,134,152,173,175,179,181,182,186,187,190,192,193,194,209,210,212,222,238,241,242,243,246,249,253,256,259,262,263,264,265,271,276,278,281,282,284,286,289,290],configuraton:151,confirm:[8,20,27,71,128,222,239,264,285,288],confirmbe9699809a049:71,conflict:[61,224,270],confluenc:10,confus:[269,276],congratul:[7,235,250,274,275,276],conjunct:[31,210],conn:[27,28,30,64,65,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,239,252,254,255,285,286,288],conn_handl:[20,250,251,252,274,276],conn_interval_max:29,conn_interval_min:29,conn_itvl:[30,250],conn_lat:[30,250],conn_mod:252,conn_profil:[65,66,67,68,69,70,71,72,73,74,75,76,77],conn_upd:252,connect:[4,7,8,9,10,12,15,20,21,22,24,26,28,29,31,38,42,43,55,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,96,130,132,133,134,181,186,187,190,191,222,235,238,248,249,250,251,252,254,255,257,274,275,284,287],connect_don:268,connectable_mod:249,connection_profil:71,connectionless:27,connector:[4,236,247,259,262,264,288],connextra:10,connintervalmax:29,connintervalmin:29,connstr:[66,239,285,286,288],conntyp:10,consecut:97,consequ:[20,128,222],conserv:[9,89,96],consid:[21,62,89,92,98,142,187,226,253,269],consider:226,consist:[1,21,31,61,98,99,128,129,132,134,162,179,190,222,224,225,231,253],consol:[1,7,8,12,26,55,61,96,101,129,137,154,155,156,161,164,171,193,205,218,225,238,246,247,250,254,255,257,267,275,276,286],console_append_char_cb:130,console_blocking_mod:130,console_compat:130,console_echo:130,console_handle_char:130,console_init:130,console_input:130,console_is_init:130,console_is_midlin:130,console_max_input_len:130,console_non_blocking_mod:130,console_out:130,console_pkg_init:225,console_printf:[20,26,130,153,154,155,156,160,161,163,164,168,171,226,274,275,276,282],console_prompt:275,console_read:130,console_rtt:[130,241,282,289],console_rx_cb:130,console_set_completion_cb:130,console_set_queu:130,console_tick:[130,275],console_uart:[130,241,282,289],console_uart_baud:130,console_uart_dev:130,console_uart_flow_control:130,console_uart_tx_buf_s:130,console_writ:[130,226],consolid:179,consortium:132,constant:190,constantli:[249,268,276,292],constitu:[43,179],constrain:[9,55,133,265],constraint:256,construct:[11,89,98],consult:[152,181],consum:[87,98,193],consumpt:22,contact:[94,95,235],contain:[1,3,7,11,29,31,34,50,55,61,84,89,90,93,95,96,98,99,100,128,130,132,134,137,140,153,156,157,160,163,166,167,168,170,176,179,182,186,193,195,197,198,199,210,218,222,223,225,226,229,231,234,246,247,249,251,253,254,255,264,267,269,270,278,292],content:[12,49,61,80,89,93,128,140,141,142,154,155,156,161,164,171,179,192,199,222,232,235,243,249,253,254,255,262,264,267,270,271,278,280],context:[55,77,85,86,87,92,99,130,134,139,190,192,214,216,225,236,238,252,258],contigu:[89,128,140,179],continu:[6,93,98,129,179,214,222,236,238,240,241,243,244,247,256,257,262,268,276,279,280,281,282,284,286,287,289],contrast:225,contribut:[13,22,57,58,59,80,81,82,245,267,284],contributor:[181,275,276],control:[8,9,18,19,20,21,22,23,25,26,29,31,55,66,96,130,134,140,160,173,181,183,190,193,205,208,214,225,246,260,262,269,270,275,276,281],contruct:250,convei:89,conveni:[12,20,89,129,171,179,198,226],convent:[264,267,278,282],convers:[101,134,251],convert:[1,8,20,71,84,86,89,100,129,134,174,176,177,179,190,199,225,251,253,275,276],coordin:[277,279],copi:[1,4,45,49,50,62,80,82,89,94,95,128,140,179,199,207,222,223,239,241,242,249,252,256,275,276,280,282,289,290],copy_don:128,copyright:[4,241,242,256,262,275,276,282,289,290],core:[1,6,7,12,21,29,32,37,38,43,48,50,51,53,55,61,62,71,88,93,95,97,129,132,134,152,181,183,222,223,235,241,242,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_o:130,core_path:61,coreconvert:71,coredownload:71,coredump:[7,182],coredump_flash_area:225,coreeras:71,corelist:71,corner:262,corp:[2,256],correct:[1,2,4,41,90,93,100,128,173,222,225,243,247,260,261,262,264,267,276,278],correctli:[2,89,240,247,256,260,267,276,277],correspo:253,correspond:[12,20,86,89,90,93,128,162,175,179,180,205,206,249,251,254,255,270,276],corrupt:[90,167,179],corrupt_block_test:267,corrupt_scratch_test:267,cortex:[4,101,259,261,264,268,276,282],cortex_m0:61,cortex_m4:[61,93,259,260,261,262,263,264,282],cortex_m:256,cost:9,could:[20,89,98,179,197,251,275],couldn:[226,249,275],count:[55,81,89,98,99,128,129,179],counter:[85,89,223,264],countri:21,coupl:[1,262,275,276],cours:274,cover:[8,61,134,179,225,234,243,253],cpha:190,cpol:190,cpptool:12,cpu:[85,93,95,134,181,182,189,243,256,260],cputim:[24,86,278,282],cputime_geq:86,cputime_gt:86,cputime_leq:86,cputime_lt:86,crank:276,crash:[64,78,80,81,82,97,128,131,191,193,236],crash_test:[7,131,236],crash_test_newtmgr:236,crc16:179,crc:[7,130,136,275],creat:[1,2,3,4,5,6,8,10,11,12,22,27,32,34,39,41,43,44,45,46,47,50,55,57,58,59,61,62,66,71,80,81,82,87,90,91,92,95,97,98,99,101,130,134,143,157,159,160,161,166,169,170,172,173,176,179,205,206,208,209,211,212,216,222,223,224,225,231,233,238,240,243,248,253,257,258,269,271,274,280,281,284,287,292],create_arduino_blinki:12,create_mbuf_pool:89,create_path:159,creation:[47,134,235,264,276],creator:[206,207,208,209,211,277,278,280,282],credenti:271,criteria:20,critic:3,cross:[5,6,7,9,96],crt0:48,crti:48,crtn:48,crw:8,crypto:[7,256,259,261,263,268,285,286,288],crypto_mbedtl:222,cryptograph:[22,128],cryptographi:22,crystal:25,csrk:27,css:244,cssv6:29,csw:[77,275,285,288],ctlr_name:66,ctlr_path:66,ctrl:[12,241,246,275,278,289],ctxt:[251,252,274,276],cur_ind:252,cur_notifi:252,curi:[250,252],curiou:[3,244],curl:[11,58],curn:[250,252],curr:268,currantlab:[81,82],current:[11,24,27,31,39,40,41,44,45,46,50,51,57,58,59,60,71,81,82,83,85,86,89,90,91,92,93,97,98,99,100,128,129,130,134,135,136,137,139,140,151,152,157,158,159,160,170,172,179,186,187,190,192,195,206,214,223,224,226,229,233,235,236,239,243,254,256,257,260,262,264,265,269,270,272,278,282],custom:[23,71,90,162,180,182,205,225],cvs:[241,242,256,262,282,289,290],cwd:12,cycl:[19,21,31,179],cylind:276,daemon:[2,247],dai:[100,214],dap:[2,256,259,263],darwin10:[241,242,256,282,289,290],darwin:6,data:[9,14,20,21,27,28,30,31,43,48,64,69,80,81,82,84,86,89,90,92,93,96,99,128,129,130,132,133,141,142,143,144,145,146,150,153,157,159,160,162,163,168,169,170,171,172,175,178,188,190,193,204,207,209,212,213,217,219,222,225,242,243,251,252,254,255,274,275,276,284,290,292],data_len:275,data_mod:190,data_ord:190,databas:28,databit:193,databuf:[89,282],datagram:217,datalen:27,datasheet:93,date:[11,68,151,264,267,275],datetim:[7,64,78,80,81,82,130,131,133,236,267],datetime_pars:267,daunt:249,daylight:100,dbm:[21,27,29],ddress:25,deactiv:222,deal:[89,92,93,134],deb:[57,60,80,83],debian:[4,6],debug:[1,2,4,5,6,7,39,43,47,50,55,57,58,59,62,94,208,209,224,235,239,241,242,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,38,39,55,57,58,59,61,191,241,242,256,259,260,262,263,264,288,289,290],dec:[48,222],decemb:22,decid:[55,85,96,243,275],decim:[22,187],decis:187,declar:[12,91,99,129,183,192,207,219,228,230,238,267,269,280,282],decod:[214,217],decompress:254,dedic:[87,93,96,214,222,236,238,241,242,251,289,290],deep:182,deeper:[89,235,264,276],def:[7,207,224,225,276,282],defaultdevic:82,defin:[1,6,19,20,21,24,27,28,29,31,34,42,43,47,50,53,61,84,86,87,89,90,92,97,99,128,129,131,133,134,176,177,182,183,185,186,190,205,206,207,209,210,211,212,213,214,220,222,224,225,226,227,229,231,235,238,241,243,245,247,249,251,257,264,267,269,270,274,275,276,277,278,281,282,285,287,288,289],defininig:31,defininit:198,definit:[1,12,29,35,37,42,50,61,84,89,90,93,128,214,223,231,247,251,253,269,274,275,276],defint:[89,224],del:27,delai:[26,86,100,192,240,243,264],deleg:222,delet:[1,6,10,12,27,35,39,45,49,50,55,57,58,59,61,62,153,169,173,179,240,265,274,280,282],delimit:50,deliv:[84,151],delta:[55,81,235],demo:274,demonstr:[20,26,89,159,166,171,264,278,282],denot:89,dep:[1,50,55,61,62,93,130,135,136,151,152,180,181,205,207,214,223,225,236,238,246,258,267,275,276,277,282],depend:[1,4,6,8,20,22,24,27,39,41,49,50,52,55,57,58,59,62,66,84,89,95,101,128,130,151,152,160,179,186,187,190,200,205,207,214,223,225,226,229,231,233,243,246,256,267,268,269,272,275,276,278,285,287,288],depict:181,deploi:[43,222,258],deploy:31,deprec:225,depth:[4,95],dequeu:[87,238],deriv:[20,179],desc:[176,177,252],descend:[128,169],describ:[1,2,7,10,11,12,24,28,33,63,90,92,93,94,96,99,128,132,140,146,151,173,179,186,188,190,199,204,206,207,208,214,222,224,225,231,235,236,244,246,248,253,254,260,263,264,269,275,276,277,278,280,284],descript:[1,7,10,19,27,28,30,55,61,89,93,94,95,129,136,139,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,159,160,161,163,164,166,167,168,169,170,171,172,176,177,197,198,200,201,202,203,204,205,206,207,210,211,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,235,242,264,265,267,269,270,275,276,290],descriptor:[16,17,27,28,61,160,161,174,176,177,179,251],design:[21,22,23,55,96,97,100,128,173,179,214,222,233,243,253,267],desir:[86,89,98,192,207,267,272],desktop:10,destin:[4,31,89,156,163,166,171,179,187,198,205],detail:[1,10,12,21,22,29,55,92,99,128,129,152,173,187,190,206,207,208,210,211,222,235,236,241,242,246,249,251,253,254,255,256,264,269,282,289,290],detect:[20,55,90,140,152,173,176,177,191,217,224,225,247],determin:[20,87,89,90,99,128,140,179,192,214,222,225,234,249,252,269,280],dev:[1,2,3,4,7,8,10,11,12,48,61,66,82,130,134,135,207,208,225,234,235,239,240,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,20,55,59,61,82,89,90,92,94,95,96,99,132,134,209,212,214,225,234,239,241,242,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,14,19,20,21,22,25,28,29,31,32,43,55,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,96,128,130,132,133,134,135,136,152,174,181,183,186,187,190,209,210,211,212,222,223,224,225,236,241,242,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:183,deviceaddr:23,deviceaddrtyp:23,dflt:199,dhcp:268,dhkei:20,diag:193,diagram:[132,243,260,262],dialog:[12,59,242,290],dictat:[11,62],did:[10,222],diff:275,differ:[4,6,7,8,11,12,20,24,27,30,45,55,57,80,84,89,91,92,93,94,95,96,99,134,173,181,186,193,207,222,223,224,225,228,236,238,239,242,243,246,247,258,259,260,262,265,267,268,269,270,272,274,278,280,282,288,290],differenti:[89,269],difficult:[21,95,128,224],dig:[7,248],digit:[22,134,186,276],dioxid:274,dir:[27,136,152,154,155,156,161,162,164],direct:[10,20,27,187,214,223,270],direct_addr:[254,255],directli:[7,11,14,18,36,152,192,193,205,222,225,254,256,265,267,268,277,280],directori:[1,4,6,7,8,10,11,12,34,35,37,41,43,45,50,55,57,59,60,80,82,83,88,93,94,95,129,134,136,154,155,156,159,160,161,164,165,166,167,169,171,172,189,191,231,235,240,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:[136,154,155,156,161,162,164],dirnam:[154,155,156,161,164],dirti:235,disabl:[6,20,22,24,30,86,130,151,179,186,190,193,205,207,208,214,222,224,225,236,241,252,265,268,277,278,279,282,289],disable_auto_eras:135,disallow:[20,173],disbl:214,disc_mod:252,discard:[179,268],disciplin:247,disclaim:[7,11,55,246],disconnec:27,disconnect:[27,252],discontigu:128,discov:[22,27,28,247],discover:[27,29,133,212,249,281],discoverable_mod:249,discoveri:[28,132,134,136,247,252,257],discret:[173,174],discuss:[10,89,94,207,222,249,278],disjoint:20,disk:[7,128,140,152,153,167,169,173,174],disk_nam:152,disk_op:136,disk_regist:[136,152],dispatch:[92,225,238],displai:[1,6,22,27,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,61,62,64,66,69,71,72,73,76,77,80,81,82,134,181,225,247,262,264,275,277,279,284,285,288],displayonli:27,displayyesno:27,dist:[57,80],distanc:[21,223],distinct:22,distribut:[1,4,6,20,21,27,55,101,128,269,275,276],distro:6,div0:67,dive:89,divid:[18,20,67,129,131,173,174,222],dle:27,dll:[259,261,264,276],dm00063382:235,dma:134,dndebug:50,dnrf52:93,do_task:223,doc:[4,6,7,10,23,33,63,244,256,257,260],docker:[3,7,256,292],dockertest:2,document:[1,4,8,12,14,18,20,23,25,59,62,64,93,97,101,137,151,152,162,180,181,183,222,231,235,239,241,242,243,248,251,253,254,255,256,259,261,267,268,269,278,282,285,286,289,290],doe:[7,20,22,35,50,61,66,71,87,89,90,92,93,94,99,100,128,130,132,134,140,157,161,169,170,173,174,176,179,187,190,195,205,207,208,210,220,223,224,225,236,238,239,243,246,249,256,259,260,261,263,264,265,271,282,287],doesn:[8,10,20,32,97,128,136,157,169,170,222,226,240,243,246,247,249],doing:[88,100,134,243,251,258,275],domain:2,don:[1,10,31,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,87,89,129,137,140,163,171,235,251,253,254,255,269,275,276],done:[6,7,8,23,25,55,81,91,92,93,100,128,130,140,141,160,161,175,194,195,211,227,228,230,235,236,239,241,242,243,247,253,254,255,256,259,260,261,264,268,276,282,289,290],dont:[241,289],doorbel:55,dop:152,doubl:[2,199,262],doubli:179,doubt:253,down:[1,12,61,80,82,186,222,236,260,262,288],downgrad:[6,7],download:[1,2,4,7,10,12,29,39,41,42,55,58,59,60,70,71,81,82,83,152,195,241,242,244,246,247,256,259,260,261,262,263,267,268,271,275,282,284,285,286,288,289,290],doxygen:[4,7,88,129,256,260],doxygengroup:[88,129],dpidr:263,dpkg:[57,60,80,83],drag:20,drain:24,draw:24,drive:[9,61,100,134,187],driver:[7,55,135,136,152,181,185,186,188,190,192,193,207,209,211,223,241,246,256,259,260,261,262,263,268,278,282,288,289],drop:[10,12,26,179,193,260,262,288],dsc:251,dsimmon:275,dsize:89,dst:[45,50,70,89,171,184,198],dsym:[55,61],dtest:50,due:[20,90,128,135,140,151,191,256,260,262],dummi:179,dump:[129,241,289],dumpreg:278,duplex:21,duplic:[27,89],durat:[19,27,30,100,251,278],duration_m:[254,255],dure:[20,22,71,85,93,97,99,128,130,161,179,196,207,222,225,231,243,246,251,258,277,280],duti:[21,31],dwarf:61,dylib:4,dynam:[88,90],e407:[262,288],e407_:262,e407_devboard:[53,262,288],e407_devboard_download:262,e407_sch:288,e761d2af:[274,276],e_gatt:253,eabi:[4,7,12,93,101,241,242,256,282,289,290],each:[1,2,10,11,12,19,20,21,22,23,28,32,43,48,49,50,61,62,64,66,73,77,87,89,90,92,93,98,100,128,130,134,154,155,156,161,162,164,166,173,174,175,179,181,186,205,206,208,209,210,211,212,214,218,219,222,223,225,236,238,243,251,252,253,254,255,256,267,269,278,280,281,282,292],ead:152,eager:3,earlier:[10,30,57,58,59,80,81,82,169,241,251,254,255,274,275,276,289],eas:135,easi:[1,2,3,8,9,134,181,187,223,224,226,244,259,276,277],easier:[24,93,275],easiest:275,easili:[9,171,209,225,282],east:100,eavesdropp:19,ecdsa256:128,ecdsa:128,echo:[12,60,64,78,80,81,82,83,130,131,133,236,268,275,285,286,288],echocommand:12,eclips:12,ectabl:[254,255],edbg:[2,256],eddyston:[27,257],eddystone_url:[27,29],edg:186,edit:[7,94,151,235,240,264,265,269,280],editign:244,editor:[59,61,235,240,260],ediv:27,edr:[20,29,247],edu:[241,259,289],ee02:264,eeirili:274,eeprom:135,effect:[98,100,129,152,173,174],effici:[21,31,89,90,179,256],eid:254,eight:[132,168],einval:86,eir:29,eir_len:247,either:[1,4,6,11,21,27,29,30,57,59,61,80,84,85,87,89,90,99,129,130,131,137,140,166,186,187,190,191,222,225,226,229,230,236,254,255,264,275,276,284],elaps:[20,86,100],electron:292,element:[39,53,55,57,58,59,89,90,99,128,129,139,140,141,142,145,147,148,179,199,214,243],elev:91,elf:[7,12,34,38,48,55,61,71,222,235,236,241,242,246,247,250,256,258,259,260,261,262,263,264,267,268,275,276,278,282,285,286,288,289,290],elfifi:71,elicit:222,els:[23,85,97,128,154,155,156,161,164,179,208,222,241,274,275,276,289],elsewher:[248,251,269],emac:275,email:[3,234,292],emb:135,embed:[1,3,4,12,39,55,57,58,59,101,128,173,190,234,235,241,242,256,262,282,289,290],emit:[55,61],emploi:21,empti:[50,89,99,140,167,179,225,229,245,253,267],emptiv:9,emul:[264,268,280],enabl:[1,8,9,24,30,31,32,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,62,73,76,77,78,87,93,129,130,131,132,134,135,151,181,186,190,194,205,207,208,209,211,212,213,219,224,225,235,238,239,241,242,246,249,252,257,266,273,274,275,276,280,284,287,289,290,292],enc:[198,200,201,203],enc_chang:252,encapsul:21,encod:[7,51,130,132,133,200,201,202,203,212,214,218,264,267,277,281,282],encoding_cborattr:222,encoding_tinycbor:222,encompass:[14,20],encount:[7,10,20,57,89,150,179,243],encourag:134,encrypt:[20,22,27,30,173,250,252],encrypt_connect:20,end:[9,20,28,30,55,89,128,140,158,168,170,179,187,204,225,233,245,246,264,275],endian:[23,61,89,128,190,264],endif:[219,223,225,232,233,258,267,275,276,282],energi:[9,21,22,89,257,292],english:128,enjoi:276,enough:[55,89,96,128,156,195,198,275],enqueu:[89,192],ensur:[11,12,21,59,89,93,97,100,101,156,181,187,222,223,224,225,236,238,239,243,247,251,257,268,269,270,278,281,284,287],entail:222,enter:[12,22,47,93,214,220,221,223,243,256,258,260,278,282],entir:[2,89,90,93,128,173,174,179,243,253,275],entireti:171,entiti:[43,248],entri:[20,22,72,129,140,141,142,145,148,150,154,155,156,161,164,171,173,174,179,204,208,214,219,222,253,279],enumer:[128,183,191,206],environ:[3,4,9,12,55,58,59,61,82,96,101,134,190,233,247,286],eof:[57,80],ephemer:254,epoch:100,equal:[29,72,89,179,205,224,225,226],equat:29,equival:[46,61,135,160,181,276,292],eras:[10,71,128,135,136,140,149,173,174,177,179,184,256,260,261,262,264,276],erase_sector:262,err:[97,159,204,208,217,218,223,274,276],error:[1,2,4,6,7,20,21,26,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,80,82,86,89,91,92,93,97,98,135,136,153,154,155,156,157,159,160,161,163,164,166,167,168,169,170,171,172,173,176,177,178,182,186,187,190,192,193,208,222,225,249,251,252,253,256,259,260,262,263,264,267,268,270,274,275,276,277,280,282,288],error_rsp_rx:[76,236],error_rsp_tx:[76,236],error_stat:223,escap:[241,268,282,289],especi:100,essenti:[43,61,225,243],establish:[20,27,78,236,238,249,250,252,259,261,264,276],estim:89,etc:[1,21,24,26,36,43,57,80,89,90,92,95,96,128,132,134,181,182,193,197,243,245,252,275,276],ethernet:[134,181],etyp:276,eui:264,eul:278,euler:278,ev_arg:[84,87,97,130],ev_cb:[84,87,89,130,238],ev_queu:87,eval:[261,276],evalu:[12,86,100,224,225,261,264,269,276],evalut:100,even:[4,10,86,89,96,128,151,179,193,199,211,222,274,276,280],event:[20,24,25,27,84,89,92,97,99,130,134,205,211,214,216,223,225,236,243,247,249,250,254,255,274,275,276,280,282,292],event_q:276,event_queu:130,eventq:[89,274,275],eventq_exampl:238,eventu:[4,99,100,179],ever:[89,90,128,140],everi:[1,32,61,97,98,99,134,150,179,190,252,254,256,258,270,275,282],everyon:[10,243],everyth:[1,93,97,222,243,267,268,275],evq:[84,87,89,216],evq_own:87,evq_task:87,exact:[96,128,186,192,223],exactli:[89,93,98,157,170,225],examin:[192,249,251,286],exampl:[1,2,3,6,7,9,12,22,23,24,25,30,31,55,57,58,59,60,61,62,64,80,82,83,89,90,91,93,94,96,97,98,99,100,101,128,130,133,152,173,174,180,183,186,187,188,205,207,208,209,210,214,219,222,223,234,235,236,241,242,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:89,example2:89,exce:[179,215,219,241,289],exceed:20,except:[7,51,87,128,223,249,254,255,275,276],excerpt:[130,206,207,208,219,224,225,251,253,280],exchang:[14,21,22,27,28],excit:[7,235,246],exclud:[51,128,222,278],exclus:[22,91,98,206],exe:[12,59,60,82,83],exec_write_req_rx:[76,236],exec_write_req_tx:[76,236],exec_write_rsp_rx:[76,236],exec_write_rsp_tx:[76,236],execut:[1,2,7,11,12,30,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,67,80,82,85,87,90,92,93,96,99,101,133,136,137,139,190,195,216,225,229,231,232,236,243,249,251,252,253,254,255,258,267,275],exhaust:[20,97,140,179],exisit:27,exist:[2,10,20,24,29,41,46,49,50,71,94,140,146,151,157,159,160,161,166,167,169,170,172,173,176,177,179,186,206,208,213,225,228,240,241,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,80,241,259,261,264,275,276,289],expect:[6,20,43,61,84,92,93,97,129,130,134,222,226,227,228,229,230,243,247,254,255,264,267],experi:[22,265,278],experiment:99,expertis:269,expir:[84,86,87,192,194,238],expire_msec:194,expire_sec:194,expiri:[84,192],explain:[4,12,98,236,245,246,247,254,255,257,268,270,284,287,292],explan:[34,35,37,38,39,43,44,45,46,47,48,50,51,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77,152,249],explanatori:[30,94,254,255],explic:278,explicit:267,explicitli:249,explor:[128,222,251,284],expos:[1,14,21,92,133,173,174,175,209,214,225,248,253],express:[23,168,225,226,253,275,276],ext:[12,260],ext_bynam:211,ext_bytyp:211,extend:[20,29,30,89,90,276,279,281],extended_dur:27,extended_period:27,extens:[21,30,137,264],extent:[241,242,256,282,289,290],extern:[12,29,40,93,97,134,135,175,181,186,205,223,231,241,242,269,270,276,289,290],extra:[38,42,47,89,134,152,190,239,241,244,249,282,289],extra_gdb_cmd:61,extract:[4,11,58,59,60,82,83,190,235,259],extrajtagcmd:[38,42,47],extrem:9,eyes:226,f401re:53,f411a55d7a5f54eb8880d380bf47521d8c41ed77fd0a7bd5373b0ae87ddabd42:285,f4discoveri:260,f_activ:140,f_active_id:140,f_align:140,f_close:[162,180],f_closedir:[162,180],f_dirent_is_dir:[162,180],f_dirent_nam:[162,180],f_filelen:[162,180],f_getpo:[162,180],f_magic:140,f_mkdir:[162,180],f_mtx:140,f_name:[162,180],f_oldest:140,f_open:[162,180],f_opendir:[162,180],f_read:[162,180],f_readdir:[162,180],f_renam:[162,180],f_scratch:140,f_scratch_cnt:140,f_sector:140,f_sector_cnt:140,f_seek:[162,180],f_unlink:[162,180],f_version:140,f_write:[162,180],face:222,facil:[19,101,231,238],fact:[135,269],factor:9,factori:263,fail:[20,42,57,80,89,97,140,143,160,161,173,179,226,227,228,230,241,246,252,259,260,263,264,267,269,276,289],fail_msg:226,failov:222,failur:[20,84,89,97,99,100,128,136,141,142,143,145,146,148,149,150,152,153,154,156,157,159,160,163,166,167,168,169,170,171,172,176,177,178,182,186,187,190,192,193,194,215,217,218,219,226,232,233,251,252,253,267],fair:89,fairli:[24,55,61,89,98],fall:[96,101,186,292],fallback:27,fals:[90,222,224,226],famili:[4,101,135,151,247],familiar:[3,12,225,235,236,241,245,246,248,275,276,282,289,292],fanci:99,faq:[11,13],far:[246,282],fashion:[92,140,179,235],fast:275,fat2n:[7,61],fatf:[7,136,151,152],fault:130,favorit:[235,240],fcb:[7,129,141,142,143,144,145,146,147,148,149,150,205],fcb_append:[140,142,143],fcb_append_finish:[140,141],fcb_append_to_scratch:141,fcb_entri:[140,141,142,145,150],fcb_err_nospac:141,fcb_err_novar:145,fcb_getnext:140,fcb_init:140,fcb_log:205,fcb_rotat:[140,141],fcb_walk:140,fcb_walk_cb:150,fda_id:179,fe80:[241,289],fe_area:[140,145,150],fe_data_:140,fe_data_len:[140,145,150],fe_data_off:[140,145,150],fe_elem_:140,fe_elem_off:140,feat:276,featur:[1,3,11,19,20,30,90,96,99,140,152,173,214,222,225,234,249,264,278,284],feedback:[235,240,257,276],feel:3,femal:288,fetch:[1,12,40,57,80,236,238,239,247,257,269,270,275,284,287],few:[1,6,14,25,31,55,61,90,93,94,223,246,251,254,264,267,276,292],ffconf:151,ffffffff:262,ffs2nativ:[7,61],fhss:21,ficr:23,fictiti:[269,270],fie_child_list:179,field:[20,27,84,85,89,93,128,130,175,187,200,202,206,207,208,214,219,222,223,225,249,251,253,254,255,269,270,278,280],fifo:140,figur:[89,128,129,140],file:[1,2,4,6,7,10,11,12,34,36,37,41,43,46,48,50,55,57,58,59,60,61,64,70,71,80,81,82,83,94,95,96,101,128,129,130,134,173,183,186,188,195,205,206,207,210,211,214,222,224,225,229,231,235,236,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:61,filenam:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,70,71,93,151,156,160,162,166,169,173,179,222,247,275],filesystem:[55,129,151,195],fill:[10,48,95,99,140,141,143,145,146,182,198,199,246,251,254,255,267,275,276],filter:[2,22,27,30,72,256],find:[1,2,3,20,28,34,55,61,88,89,94,96,129,146,181,211,223,224,228,234,235,241,242,246,247,256,259,260,263,268,282,285,288,289,290,292],find_info_req_rx:[76,236],find_info_req_tx:[76,236],find_info_rsp_rx:[76,236],find_info_rsp_tx:[76,236],find_type_value_req_rx:[76,236],find_type_value_req_tx:76,find_type_value_rsp_rx:76,find_type_value_rsp_tx:76,fine:[9,254,255],finish:[4,98,99,141,179,193,264,275],fip:21,fire:[84,192,194,243,250,282],firmwar:[128,152,236,241,242,259,261,264,268,275,276,289,290],first:[2,3,6,8,12,21,22,29,33,57,58,59,60,63,82,83,84,87,89,90,91,93,99,100,101,128,129,140,168,173,174,179,180,183,190,197,199,211,214,222,225,235,236,243,245,248,249,250,251,253,254,255,257,258,264,268,274,275,276,278,282,284,287,292],fit:[4,89,100,171,179,249,250,265],five:[20,21,22,157,170,236],fix:[6,10,11,90,100,128,271],fl_area:141,fl_data_off:141,flag:[1,6,12,27,29,55,57,58,59,61,62,64,80,81,82,89,94,99,128,160,222,239,247,251,253,274,275,278,285,288],flash0:152,flash:[1,9,39,43,48,55,57,58,59,61,95,96,129,134,141,142,146,152,174,176,177,180,181,185,186,188,195,205,222,225,236,256,260,261,262,264,265,276],flash_area:[140,150],flash_area_bootload:[93,128,176,177,224,225],flash_area_image_0:[93,128,176,177],flash_area_image_1:[93,128,176,177,225],flash_area_image_scratch:[93,128,176,177,224],flash_area_nff:[176,177,224,225],flash_area_noexist:224,flash_area_read:[140,145,150],flash_area_reboot_log:[224,225],flash_area_to_nffs_desc:[176,177],flash_area_writ:[140,141],flash_area_x:140,flash_id:[135,182,184],flash_map:[7,129,176,177,182,224,225],flash_map_init:225,flash_own:[224,225],flash_spi_chip_select:186,flash_test:[7,130],flat:[89,199,205],flavor:256,flexibl:[89,96,234,249,269,270],flg:275,flight:89,float_us:277,flood:31,flow:[21,130,193,247,254,255],flow_ctl:193,fly:190,fmt:130,focu:243,folder:[4,10,12,33,55,59,63,240,259],follow:[1,2,3,4,6,7,8,10,11,12,19,20,21,23,24,26,27,29,30,31,32,37,38,43,50,51,55,57,58,59,60,61,64,66,67,71,72,73,77,78,80,81,82,83,89,91,93,94,96,98,99,100,101,128,130,131,133,134,135,136,140,152,160,167,168,169,173,174,175,179,180,181,187,189,190,200,202,205,206,207,208,209,211,212,222,223,224,225,226,227,228,229,230,231,235,236,238,239,240,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:129,foo_callout:129,foo_conf_export:129,foo_conf_set:129,foo_val:129,footer:[128,258],footprint:[9,132,134],fop:165,fopen:160,forc:[41,49,52,89,222],forev:[87,91,98,99,160,161,233],forgeri:22,forget:[80,160,161,235,274,275,276],forgot:275,fork:10,form:[1,19,22,23,26,66,89,99,179,225,251,252,254,264,267,269],formal:[7,20],format:[8,29,50,66,68,71,72,89,130,132,151,152,173,176,177,197,198,199,206,223,225,226,229,247,254,258,268,269,270,278,285,288],former:179,formula:[3,60,83],forth:[129,199],fortun:55,forver:27,forward:[100,249],found:[1,20,33,55,63,90,93,148,173,179,199,247,252,253,254,256,260,262,288],foundat:[4,21,31,132,241,242,256,262,269,275,276,282,289,290],four:[19,22,47,128,168,172],fraction:[100,267],frame:[214,217,218,243,264],framerwork:131,framework:[21,28,97,132,206,212,213,231,232,247,277,278,279,282,283,284],frdm:53,free:[2,4,73,88,89,90,140,179,215,219,222,241,242,250,252,256,262,282,286,289,290],freebsd:101,freed:[89,90,179],freedom:[252,254,255],freq_hz:192,frequenc:[21,24,86,93,97,100,134,181,189,192,194,223,243,264],frequent:[10,19,21,22,97,254,255,282],freshli:89,friend:31,friendli:134,from:[1,4,6,7,8,9,10,11,12,19,20,22,23,26,27,30,31,32,35,36,38,39,41,43,44,45,46,47,49,50,51,55,56,60,61,62,64,65,66,68,69,70,71,72,73,76,77,79,83,84,85,86,87,88,89,90,92,93,94,95,96,99,100,101,128,129,131,132,133,135,136,137,139,140,146,152,153,154,155,156,160,161,162,163,164,166,168,169,171,176,177,179,180,182,186,187,190,192,193,195,198,199,205,206,207,208,209,210,211,212,213,214,216,217,222,223,224,225,226,227,228,230,231,233,235,236,238,239,241,242,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:[89,179],fs_access_append:160,fs_access_read:[153,160,163,168],fs_access_trunc:[157,160,166,169,170],fs_access_writ:[157,160,166,169,170],fs_cli:7,fs_cli_init:215,fs_close:[157,160,163,166,168,169,170,171,172],fs_closedir:[136,161],fs_dir:[152,154,155,156,161,162,164],fs_dirent:[7,152,154,155,156,161,162,164],fs_dirent_is_dir:[154,156,161,164],fs_dirent_nam:[136,154,155,161,164],fs_eaccess:167,fs_ealreadi:172,fs_ecorrupt:[167,176,177],fs_eempti:167,fs_eexist:[165,167],fs_eful:167,fs_ehw:167,fs_einval:167,fs_enoent:[136,154,155,156,161,164,166,167],fs_enomem:167,fs_eo:167,fs_eoffset:167,fs_eok:167,fs_eunexp:167,fs_euninit:167,fs_fcb:222,fs_file:[7,152,153,157,158,160,162,163,166,168,169,170],fs_filelen:170,fs_if:[162,180],fs_ls_cmd:215,fs_ls_struct:215,fs_mkdir:[7,172],fs_mount:7,fs_name:152,fs_nmgr:7,fs_op:[165,180],fs_open:[153,157,163,166,168,169,170,171,172],fs_opendir:[136,154,155,156,164],fs_read:[153,160,168,171],fs_readdir:[136,154,155,156,161],fs_regist:180,fs_unlink:159,fs_write:[157,166,172],fssl:[11,58],fsutil:[7,152],fsutil_r:152,fsutil_w:152,ftdichip:247,fulfil:251,full:[1,7,8,20,21,28,30,48,55,93,128,129,135,141,156,160,166,167,179,182,195,205,214,222,224,225,236,240,246,249,252,253,258,275,276,278,282,292],fuller:179,fulli:[9,21,128,173,174,179,222,246,255,269,270,276],fun:[235,275],func:[89,97,99,129,187,192,194],fundament:[1,292],funtion:199,further:[6,93,97,187],furthermor:[92,128,173,174,179,222,243,254,255],fuse:55,futur:[84,89,179,187,206,214,225,264,269,270,271],g_bno055_sensor_driv:208,g_bno055stat:208,g_led_pin:[240,243,258],g_mbuf_buff:89,g_mbuf_mempool:89,g_mbuf_pool:89,g_mystat:223,g_nmgr_shell_transport:217,g_os_run_list:85,g_os_sleep_list:85,g_stats_map_my_stat_sect:223,g_task1_loop:258,gain:[91,98,180,246,276],gap:[18,19,20,21,30,179,248,251,253,275,276,277],garbag:140,gatewai:264,gatt:[14,18,21,27,30,31,32,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:21,gavin:58,gc_on_oom_test:267,gc_test:267,gcc:[4,7,57,101],gcc_startup_:93,gcc_startup_myboard:93,gcc_startup_myboard_split:93,gcc_startup_nrf52:[93,259,261,282],gcc_startup_nrf52_split:[259,261,263,264,282],gdb:[4,7,12,38,47,61,62,93,241,242,243,246,256,258,259,260,262,263,276,282,289,290],gdb_arduino_blinki:12,gdbmacro:7,gdbpath:12,gdbserver:6,gear:101,gen:[27,30],gen_task:238,gen_task_ev:238,gen_task_prio:238,gen_task_stack:238,gen_task_stack_sz:238,gen_task_str:238,gener:[1,11,15,16,17,18,19,20,21,23,27,28,29,31,34,35,43,55,61,62,87,89,90,91,93,99,128,136,173,174,186,199,222,224,227,228,230,235,236,239,240,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,23,55,56,58,59,60,61,64,76,79,81,82,83,85,87,89,90,91,92,93,95,96,97,98,99,100,128,129,133,134,140,150,157,160,163,166,171,179,182,186,190,192,199,206,210,212,222,225,226,235,238,240,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:21,ggdb:6,ghz:[21,268],gist:[134,186],gister_li:210,git:[11,55,58,80,81,82,101,256,268,269,270,271],github:[1,7,10,11,33,55,57,58,59,63,80,81,82,101,183,235,256,268,269,270,271,275,276,284],githublogin:271,githubpassword:271,githubusercont:[11,57,58,59,80,81,82],give:[55,186,222,235,243,246,254,255,264,269,270,276],given:[12,20,42,84,86,87,89,90,96,99,100,128,136,139,145,146,152,182,186,190,192,193,199,206,210,211,243,270],glanc:249,glibc:57,global:[1,29,62,89,90,91,175,205,206,208,223,231,251,275],gmt:100,gnd:[8,264,276,278,288],gnu:[3,4,12,38,47,241,242,256,260,262,263,282,289,290],goal:[55,101,287],gobjcopi:6,gobjdump:6,gobl:81,goe:[61,231,267,275],going:[96,222,254,258,275,276],golang:[11,59,82],gone:250,good:[7,9,22,55,91,93,97,128,151,222,246,249,255,264,275],googl:[254,284],gopath:[11,57,58,59,60,80,81,82,83],got:[274,275,276],govern:[275,276],gpg:[57,80],gpio:[8,96,134,188,190,193,238],gpio_ev:238,gpio_l:238,gpl:[4,241,242,256,260,262,263,282,289,290],gplv3:[241,242,256,262,282,289,290],gpo:181,grab:88,gracefulli:233,graduat:276,grain:9,grant:91,granular:100,graph:[1,50,62,276],graviti:278,great:[8,21,128,224,240,275,276],greater:[21,29,89,179,224],greatest:[128,179],green:[2,10,12,256,260,261,268,278,285],grid:55,ground:[276,278],group:[2,10,20,76,131,134,214,223,225,236,264],grow:[53,243],guarante:[89,90],guard:92,guid:[7,11,12,18,59,62,64,82,208,209,225,236,238,243,248,253,255,265,267,269,285,288],guinea:244,gyro:278,gyro_rev:278,gyroscop:[206,278],h_mynewt_syscfg_:225,hack:[7,9,12,235,240,276],had:[89,92,128,222],hal:[1,7,9,48,55,61,86,95,134,135,176,177,180,181,187,190,192,193,208,238,246,256,260,262,276,278,282,292],hal_bsp:[7,93,134,185,207,256,259,260,262,275,280],hal_bsp_core_dump:182,hal_bsp_flash_dev:[93,135,182,185],hal_bsp_get_nvic_prior:182,hal_bsp_hw_id:182,hal_bsp_init:[182,207],hal_bsp_max_id_len:182,hal_bsp_mem_dump:182,hal_bsp_power_deep_sleep:182,hal_bsp_power_off:182,hal_bsp_power_on:182,hal_bsp_power_perus:182,hal_bsp_power_sleep:182,hal_bsp_power_st:182,hal_bsp_power_wfi:182,hal_common:[7,246,260,262],hal_debugger_connect:191,hal_flash:[7,93,135,152,182,185,256,260,262],hal_flash_align:184,hal_flash_eras:184,hal_flash_erase_sector:184,hal_flash_init:184,hal_flash_ioctl:184,hal_flash_read:184,hal_flash_writ:184,hal_gpio:[7,136,183,186,238],hal_gpio_init_in:186,hal_gpio_init_out:[99,186,238,240,243,258],hal_gpio_irq_dis:186,hal_gpio_irq_en:[186,238],hal_gpio_irq_handler_t:186,hal_gpio_irq_init:[186,238],hal_gpio_irq_releas:186,hal_gpio_irq_trig_t:186,hal_gpio_irq_trigg:186,hal_gpio_mode_:186,hal_gpio_mode_in:186,hal_gpio_mode_nc:186,hal_gpio_mode_out:186,hal_gpio_mode_t:186,hal_gpio_pul:186,hal_gpio_pull_down:186,hal_gpio_pull_non:186,hal_gpio_pull_t:186,hal_gpio_pull_up:[186,238],hal_gpio_read:186,hal_gpio_toggl:[99,186,238,240,258],hal_gpio_trig_both:186,hal_gpio_trig_fal:186,hal_gpio_trig_high:186,hal_gpio_trig_low:186,hal_gpio_trig_non:186,hal_gpio_trig_ris:[186,238],hal_gpio_writ:[183,186,243],hal_i2c_begin:187,hal_i2c_end:187,hal_i2c_init:187,hal_i2c_master_data:187,hal_i2c_master_prob:187,hal_i2c_master_read:187,hal_i2c_master_writ:187,hal_i2c_prob:187,hal_i2c_read:187,hal_i2c_writ:187,hal_os_tick:[189,259,282],hal_reset_brownout:191,hal_reset_caus:[191,280],hal_reset_pin:191,hal_reset_por:191,hal_reset_reason:191,hal_reset_request:191,hal_reset_soft:191,hal_reset_watchdog:191,hal_rtc:151,hal_spi:[136,190],hal_spi_abort:190,hal_spi_config:190,hal_spi_data_mode_breakout:190,hal_spi_dis:190,hal_spi_en:190,hal_spi_init:[136,190],hal_spi_lsb_first:190,hal_spi_mod:190,hal_spi_mode0:190,hal_spi_mode1:190,hal_spi_mode2:190,hal_spi_mode3:190,hal_spi_moden:190,hal_spi_msb_first:190,hal_spi_set:[135,190],hal_spi_set_txrx_cb:190,hal_spi_slave_set_def_tx_v:190,hal_spi_tx_v:190,hal_spi_txrx:190,hal_spi_txrx_cb:190,hal_spi_txrx_noblock:190,hal_spi_type_mast:190,hal_spi_type_slav:190,hal_spi_word_size_8bit:190,hal_spi_word_size_9bit:190,hal_system:191,hal_system_clock_start:191,hal_system_reset:191,hal_system_restart:191,hal_system_start:191,hal_tim:[86,192],hal_timer_cb:[86,192],hal_timer_config:192,hal_timer_deinit:192,hal_timer_delai:192,hal_timer_get_resolut:192,hal_timer_init:192,hal_timer_read:192,hal_timer_set_cb:192,hal_timer_start:192,hal_timer_start_at:192,hal_timer_stop:192,hal_uart:275,hal_uart_blocking_tx:193,hal_uart_clos:193,hal_uart_config:[193,275],hal_uart_flow_ctl:193,hal_uart_flow_ctl_non:[193,275],hal_uart_flow_ctl_rts_ct:193,hal_uart_init:193,hal_uart_init_cb:[193,275],hal_uart_par:193,hal_uart_parity_even:193,hal_uart_parity_non:[193,275],hal_uart_parity_odd:193,hal_uart_rx_char:193,hal_uart_start_rx:193,hal_uart_start_tx:[193,275],hal_uart_tx_char:193,hal_uart_tx_don:193,hal_watchdog_en:194,hal_watchdog_init:194,hal_watchdog_tickl:194,hal_xxxx:181,half:[16,17,93,100],halfwai:128,halgpio:186,halsystem:191,halt:[92,189,190,256,260,262],haluart:193,hand:[222,235,243,267],handbook:[259,263],handi:[93,276],handl:[17,20,27,28,30,61,89,101,134,135,136,152,153,154,155,156,160,161,164,169,170,171,172,179,205,209,210,214,236,238,250,251,252,274,275,276,282],handler:[87,92,93,131,186,210,212,215,217,219,220,238,243,274,275,276,277],happen:[9,20,26,129,140,179,250,253,254,255,256,268,270],happi:[7,9],har:288,hard:[97,130],hardcod:[25,27],hardwar:[2,3,5,6,7,9,20,21,24,25,31,34,86,93,95,96,128,134,173,174,179,182,183,184,185,186,187,189,191,192,193,194,208,222,225,238,243,246,247,254,255,256,258,259,260,261,265,268,269,275,282,292],harm:128,has:[2,3,4,7,10,11,12,20,22,24,26,30,34,36,43,50,55,57,58,59,61,62,77,80,81,82,84,85,86,87,88,89,90,92,93,96,97,98,99,128,129,130,132,134,138,140,152,153,165,169,173,179,186,187,190,192,193,195,208,210,222,223,225,231,233,236,239,241,242,243,244,251,252,253,256,258,259,260,264,267,268,269,270,274,275,281,282,289,290,292],hash:[34,37,43,46,71,128,179,222,239,285,288],have:[1,2,3,6,7,8,9,11,12,19,20,22,24,30,32,43,50,52,54,55,57,58,59,60,61,62,64,80,81,82,83,84,87,89,90,92,93,95,96,97,98,99,101,128,130,132,134,135,137,140,143,173,174,179,181,185,186,192,193,214,220,222,223,224,225,234,235,236,238,239,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,136,234,270,275,276,292],hci1:247,hci:[21,245],hci_adv_param:249,hci_common:236,hdr:[128,226],hdr_ver:197,head:[11,58,80,81,82,87,89,210,244],header:[1,37,39,46,55,57,58,59,61,93,128,132,140,141,179,183,186,205,207,225,231,236,258,275,276],heading1:244,heading2:244,heading5:244,headless:2,health:254,heap:[90,92,93],heart:243,held:269,hello:[12,69,157,170,193,236,257,268,285,286,288,292],help:[1,8,12,31,34,35,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,67,68,69,70,71,72,73,74,75,76,77,80,81,82,92,94,95,100,134,199,219,222,224,241,242,243,244,245,246,249,256,258,259,261,264,265,267,268,271,275,276,278,282,289,290],helper:[1,61,89,94,135,254,255],henc:[128,234],her:92,here:[1,3,8,10,11,29,32,55,73,76,77,84,87,89,90,93,94,97,99,129,130,140,156,157,160,163,171,173,186,190,199,205,206,208,214,222,223,224,225,232,234,235,238,244,247,251,253,254,255,256,258,259,260,263,264,267,268,269,270,275,276,286,292],hertz:86,hex:[7,37,43,48,71,187,222,262,264,274,282],hexidecim:66,hfxo:24,hidapi:4,hidraw:4,hierarchi:[152,225,231],high:[9,18,21,64,86,98,134,186,238,241,243,289],high_duti:27,higher:[11,14,20,21,55,58,59,72,80,81,82,91,92,98,99,181,205,211,224,225,234,243,247,267,270],highest:[85,91,92,99,224,225,243],highli:234,highlight:[2,6,30,101,235,256,259,261,263,268,276,277,282],hint:55,his:92,histori:224,hit:[36,258],hl_line:[207,208],hog:243,hold:[33,43,63,89,90,156,187,198,208,214,235,243,264,269,276],hole:[179,276],home:[7,11,59,93,222,246,258,267,271,275],homebrew:[4,6,7,11,36,56,60,79,83],homepag:[1,43,61,130,267,275,276],hook:[97,262,275,288],hop:[21,134],host:[7,9,21,22,23,26,29,30,66,70,71,84,87,89,128,212,241,242,244,246,247,251,252,253,256,267,268,275,276,277,281,282,289,290],hotkei:[241,289],hour:100,how:[2,3,4,5,6,7,8,11,12,20,21,23,30,55,57,58,59,60,66,80,81,82,83,89,91,93,96,100,128,129,130,140,146,148,166,173,187,190,200,205,207,208,219,222,223,226,229,231,234,235,236,239,240,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,57,80,89,96,99,101,128,130,173,179,186,223,239,259,269],htm:247,html:[4,33,63,152,241,242,256,260,262,282,289,290],http:[1,4,10,11,12,33,39,55,57,58,59,61,63,80,81,82,101,130,137,183,235,241,242,247,254,256,259,260,262,263,267,269,271,275,276,282,288,289,290],httperror404:[57,80],hub:268,human:[247,269],hw_bsp_nativ:61,hw_drivers_nimble_nrf51:222,hw_hal:55,hw_mcu_nordic_nrf51xxx:222,hypothet:20,i2c:[8,134,135,181,278,279,282],i2c_0:[277,278,279,282],i2c_0_itf_bno:207,i2c_0_itf_li:207,i2c_num:187,i2s:256,i2s_callback:256,i386:[4,6],iOS:[250,274,276,277,279,281,284],ibeacon:[23,246,257,292],icon:[10,12],id16:253,id3:[33,63],id_init:225,idcod:256,idea:[61,89,91,97,249],ideal:21,ident:[18,20,22,23,27,30,66,89,101,133,222,223,231],identifi:[1,8,19,20,27,29,34,71,93,99,128,129,179,182,187,254,255,259,261,264,268,276,285,288],idl:[27,77,97,243,246,275,285,288],idx:[27,135,179],ietf:199,if_rw:133,ifdef:[222,225,232,258,282],ifndef:[225,275,276],ignor:[6,27,82,90,152,166,173,225,241,289],ih_flag:128,ih_hdr_siz:128,ih_img_s:128,ih_key_id:128,ih_mag:128,ih_tlv_siz:128,ih_ver:128,iii:128,illustr:[12,89,91,92,128,243,276,282],imag:[2,6,7,12,31,34,38,39,42,43,47,55,57,58,59,61,64,78,80,81,82,93,94,96,101,130,131,196,197,198,200,201,203,223,224,234,241,242,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:128,image_f_non_boot:128,image_f_p:128,image_f_pkcs15_rsa2048_sha256:128,image_f_sha256:128,image_head:128,image_header_s:128,image_mag:128,image_magic_non:128,image_ok:128,image_rsa:[7,256,259,260,261,262,263,264,268,278,285,286,288],image_tlv:128,image_tlv_:128,image_tlv_ecdsa224:128,image_tlv_rsa2048:128,image_tlv_sha256:128,image_valid:[7,256,260,261,263,268,278,285,286,288],image_vers:[128,197,198],img:[37,46,71,235,236,239,240,241,242,246,247,250,256,259,260,261,262,263,264,268,275,278,282,285,288,289,290],img_data:204,img_start:191,imgmgr:[7,130,131,152,195,225,236,276],imgmgr_max_ver_str:198,imgmgr_module_init:225,imgr_list:[200,201,203],imgr_upload:204,imgr_ver_jsonstr:198,immedi:[26,87,93,128,169,179,190,192,244,249,254,255],impact:[24,179],impl:61,implemen:66,implement:[9,10,21,32,61,66,87,89,90,93,95,96,128,129,130,131,151,152,173,179,181,183,185,186,187,188,189,190,191,195,199,206,207,209,211,213,214,220,225,231,238,248,251,253,254,264,267,276,277,278,282],impli:[254,255,267,270,275,276],implicit:267,impos:[128,173,174,179],imposs:[19,175],impract:253,impress:276,improv:258,imuplu:278,inc:[4,241,242,256,262,282,289,290],includ:[1,4,7,9,10,14,15,16,17,19,20,21,22,26,27,28,31,43,50,59,61,84,87,89,90,91,93,95,96,97,98,99,100,128,130,133,134,135,136,138,151,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,187,190,192,193,195,205,206,207,210,211,212,214,222,224,225,231,235,236,238,239,241,243,247,248,249,251,254,255,259,267,269,270,275,276,277,278,280,281,282,287,289],include_tx_pow:27,incom:[20,87,193,195,214,215,217,238],incompat:[57,80,269],incomplet:[29,93,159],incomplete_block_test:267,incorrect:[42,100],incr:182,increas:[21,22,89,179,214,215,219,225,241,243,289],increasin:140,increment:[89,100,129,179,223],incub:[7,55,183,225,235,276],inde:[92,262],indefini:[254,255],indent:6,independ:[22,96,128,134,181,182,184,186,187,189,191,192,193,194,225,275],indetermin:267,index:[31,72,128,247],indian:100,indic:[7,10,19,20,26,28,29,30,87,90,93,97,128,130,132,152,158,160,167,179,186,187,192,204,211,214,219,222,224,225,239,251,253,256,259,260,263,267,268,282,284],indirect:276,individu:[11,99,128,129,134,186,225,230,236,269],industri:[21,151],ineffici:179,infinit:[87,90,92,225,243,258],info:[39,57,58,59,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,90,99,140,141,145,219,239,252,256,260,262,263,268,274,276],inform:[1,6,7,12,20,22,23,27,29,34,37,39,40,57,58,59,61,62,64,66,71,80,81,82,87,89,90,93,95,96,99,100,128,132,133,145,179,205,206,208,209,219,222,223,225,234,235,238,239,242,243,246,249,252,253,254,255,256,258,264,269,270,271,275,276,278,282,285,288,290],infrastructur:246,ing:[134,254,255],inher:[1,23,251],inherit:[1,4,59,91,175,206],ininclud:223,init:[50,55,207,211,225,275,276],init_app_task:92,init_func_nam:225,init_funct:225,init_stag:225,init_task:[238,243],init_tim:[258,282],initi:[16,19,21,23,25,26,27,28,61,84,86,87,89,90,91,92,93,97,98,99,129,130,134,138,146,152,167,176,177,178,179,181,182,184,186,187,190,192,193,196,199,203,205,207,210,211,212,214,215,219,231,232,236,238,240,247,248,252,254,255,258,267,274,275,276,277,278,282],initialis:[208,256],inod:[173,175],inoper:[26,254,255],input:[20,22,27,100,134,181,186,190,238,241,262,267,289],inquiri:[20,29],insert:[99,179],insid:[24,89,92,161,182,258,262,267],insight:[134,243],inspect:[48,128,129,252],instal:[3,7,9,33,39,54,55,63,78,92,93,94,136,210,236,238,239,240,241,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,27,62,89,175,176,177,179,205,223,249,254,255,256],instant:20,instantan:243,instanti:[92,134],instantli:98,instead:[7,11,12,24,87,90,98,128,130,222,225,236,238,250,256,258,259,260,261,262,263,267,271,274,275,276,277,280],instruct:[3,4,7,11,55,57,62,80,85,96,236,238,241,242,256,259,263,277,278,279,280,282,286,289,290],insuffici:[20,89,167],insur:[90,99],int16_t:100,int32_max:27,int32_t:[84,100,193,254,255],int64_t:100,int8:129,int_max:89,integ:[199,206,223,225],integr:[12,22,90,179,187,223],intellig:181,intend:[24,29,36,176,177,187,234],inter:[179,187,238],interact:[2,8,130,132,195,241,250,258,265,289],interchang:199,interconnect:[9,132],interdepend:[129,225],interest:[7,14,18,89,93,181,222,240,246,249,254,292],interfac:[4,18,21,30,31,89,99,128,133,134,135,136,151,152,181,182,184,186,187,189,190,191,193,194,205,208,209,235,245,247,248,256,260,262,275,278,279,282,288],intermedi:[159,160,166],intern:[7,20,89,92,93,97,134,135,140,167,176,177,178,185,192,194,195,199,215,219,256,276],internet:[7,12,21,236,238,239,247,257,268,284,287],interoper:[132,133],interpret:[137,139,206,210],interrog:276,interrupt:[86,87,93,128,182,186,189,190,192,193,276],interrupt_prior:276,interv:[20,27,29,97,99,206,210,211,238,278,282],interval_max:27,interval_min:27,intervent:96,intial:219,intiat:93,introduc:[1,30,179,224,225],introduct:[243,292],introductori:284,intuit:128,invalid:[20,86,128,136,142,152,153,167,171,172,179,190,192,251,267],invers:[91,98],invert:98,invoc:[6,253],invok:[2,267,271,282],involv:[16,17,19,22,93,96,181,187,267],io_cap:27,ioctl:152,iot:21,iotiv:277,ipsp:21,ipv6:21,irk:[19,27],irq:186,irq_num:182,irq_prio:[135,136],isbuildcommand:12,ism:21,ismylaptop:[275,276],isn:[93,179,246],isol:[93,222],isshellcommand:12,issu:[1,6,30,55,66,92,98,128,132,152,173,179,187,236,259,260,261,263,264,272,275,276],ist:100,it_len:128,it_typ:128,ital:244,ite_chr:251,item:[1,87,93,129,180,210,255],iter:[90,99,128,154,155,156,161,164,179,211],itf:208,its:[7,10,11,18,19,20,55,61,85,87,89,90,91,92,93,96,97,99,128,130,135,140,158,168,171,173,174,179,186,187,190,205,222,223,224,225,226,231,235,239,240,243,244,245,246,249,251,252,253,254,255,264,269,275,280,286,292],itself:[26,61,89,90,99,128,134,138,140,180,195,200,211,225,235,259,267,275,276],iv_build_num:128,iv_major:128,iv_minor:128,iv_revis:128,jan:100,javascript:55,jb_read_next:199,jb_read_prev:199,jb_readn:199,je_arg:199,je_encode_buf:199,je_wr_comma:199,je_writ:199,jira:10,jlink:[61,93,239,259,261,268,278,282,285],jlink_debug:61,jlink_dev:61,jlinkex:[259,261,264,276],jlinkgdbserv:[241,282,289],job:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,85,92,93,214,251],join:[3,134,234,268,292],json:[7,12,34,37,51,55,61,201,202,203,204,235,236,240,267,275],json_array_t:199,json_attr_t:[199,204],json_buff:[199,204],json_buffer_read_next_byte_t:199,json_buffer_read_prev_byte_t:199,json_buffer_readn_t:199,json_decod:[204,267],json_encod:[198,199,200,201,202,203,267],json_encode_object_entri:[201,202,203],json_encode_object_finish:[200,203],json_encode_object_start:[200,201,202],json_enum_t:199,json_read:199,json_read_object:199,json_simple_decod:267,json_simple_encod:267,json_typ:199,json_valu:[199,200,201,202,203],json_value_int:[199,202],json_value_str:199,json_value_stringn:199,json_write_func_t:199,jtag:[4,38,42,47,256,259,260,262,268,282,288],jul:80,jump0:67,jump:[128,222],jumper:[8,235,262,275,276,288],just:[1,7,8,20,22,23,62,84,87,93,94,99,100,128,135,136,151,166,171,222,235,250,251,254,255,256,258,264,271,272,275,276],jv_len:199,jv_pad1:199,jv_type:199,jv_val:199,k30:[274,275],k64f:53,keep:[9,22,24,92,128,130,134,140,179,190,207,214,215,219,222,235,240,243,267,276],keg:[60,83],kei:[8,19,20,21,31,37,46,57,80,93,128,129,179,198,199,200,202,225,251,264,268,275,278],kept:[85,128,140],kernel:[1,7,9,51,55,61,93,130,134,181,211,222,225,238,246,247,275,276,277,278,280,282],kernel_o:222,keyboard:[12,22,130],keyboarddisplai:27,keyboardonli:27,keychain:[57,80],keystor:27,keyword:[1,61,94,130,267,269,275,276],khz:[190,256,260],kick:[97,254,255],kilobyt:96,kind:[31,134,241,275,276,289],kit:[8,47,61,235,239,240,241,242,257,259,276,289,290,292],klibc:101,know:[1,8,12,30,61,130,206,210,223,224,243,251,252,254,255,257,258,268,275,276,287,292],known:[21,55,100,160,161,179,243,249],l13:259,l2cap:21,lab:32,label:[8,93,262,276],lack:[140,151,222],lag:253,languag:[11,12,55,96,137,275,276],laptop:[3,8,235,236,238,240,247,264,275,276],larg:[20,24,31,89,99,100,222,223,243],large_system_test:267,large_unlink_test:267,large_write_test:267,larger:[10,31,89,226],largest:[89,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:[20,26,72,77,89,90,97,99,128,148,179,193,201,206,214,219,225,249,253,254,255,256,264,268,276,278,280,282],last_checkin:[77,285,288],last_n_off:148,last_op:187,last_read_tim:208,latenc:27,later:[7,8,72,84,89,128,231,240,241,242,246,252,256,264,267,276,282,289,290],latest:[1,2,4,7,10,11,49,52,55,56,60,79,83,129,235,256,268,269,270,275,276],latex:[173,179],latter:[20,89,132,173],launch:12,launchpad:4,law:[241,242,256,275,276,282,289,290],layer:[9,20,21,89,90,95,96,134,152,162,165,173,180,193,208,209,225,238,248,276,292],layout:[96,128,174,288],lc_f:207,lc_pull_up_disc:207,lc_rate:207,lc_s_mask:207,lcheck:275,ld4:260,ldebug:224,ldflag:50,ldr:262,le_elem_off:145,lead:[89,92,252,276],leadingspac:89,leak:[160,161],learn:[7,26,61,235,240,257,284],least:[22,89,97,128,179,190,192,236,258,264,276,292],leav:[89,135,148,222],led1:[238,261],led2:238,led3:238,led:[1,7,61,93,96,99,134,181,186,236,238,243,247,256,257,258,259,260,261,262,263,268,275,276,278,285,288,292],led_blink_pin:[93,99,240,243,258],led_blink_pin_1:240,led_blink_pin_2:240,led_blink_pin_3:240,led_blink_pin_4:240,led_blink_pin_5:240,led_blink_pin_6:240,led_blink_pin_7:240,led_blink_pin_8:240,led_pin:240,left:[86,90,99,145,198,222,262,274,282,292],legaci:[30,151,225,243],len:[89,135,140,141,162,163,170,171,172,187,190,199,204,251,264,275],length:[20,21,27,89,93,128,130,140,156,157,176,179,182,198,251,264],less:[92,101,128,179,253,254,255],lesser:179,lesson:[243,292],let:[4,8,55,89,93,205,222,223,235,243,246,248,249,250,251,252,253,254,255,258,262,267,269,270,274,275,276,282],level:[1,2,9,14,18,20,23,27,29,30,31,32,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,89,91,93,131,134,135,152,173,174,181,208,224,225,234,250,251,254,255,256,260,264,267,268,270,274,275,276],level_list:72,leverag:[132,134,245,276],lflag:[1,50,61],lib:[1,4,45,53,55,82,101,130,152,180,224,225,275,276],libc6:6,libc:[7,93,101],libc_baselibc:[222,262],libftdi1:4,libftdi:4,libg:48,libgcc:[48,222],libhidapi:4,librari:[1,4,48,50,55,58,81,87,89,93,94,96,101,128,130,134,152,160,180,181,195,222,223,231,246,267,269,270,275,276,277],libusb:4,libusb_error_access:260,libusb_open:260,licens:[4,7,11,55,61,101,134,241,242,246,256,260,262,263,268,269,275,276,282,289,290],lieu:66,life:[24,254],light:[9,31,181,206,235,238,240,257,260,261,262,263,277,278,285,288],lightblu:[250,274,276],lightweight:151,like:[2,3,5,8,12,31,55,58,59,62,81,82,89,92,93,96,97,98,101,128,130,134,140,181,187,223,235,240,241,242,246,256,260,262,267,269,275,276,277,279,280,282,284,288,289,290],likewis:[62,179],limit:[3,20,27,29,99,101,135,151,215,219,222,236,241,249,254,275,276,289],limt:223,line:[2,6,7,10,12,36,38,39,47,62,93,101,130,186,223,229,235,240,241,247,253,258,260,261,269,271,275,276,277,278,282,289],linear:179,linearacc:278,lines_queu:130,link:[2,3,7,20,21,22,27,34,38,42,60,61,81,83,85,89,179,192,214,222,225,231,234,235,241,242,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,61,94,101,222,246,262],linkerscript:[61,93],linux:[5,7,9,12,56,66,78,79,135,239,247,256,258,259,260,262,263,268,278,285,286,287,288],liquid:276,lis2dh12:[207,282],lis2dh12_0:[207,282],lis2dh12_cfg:207,lis2dh12_config:207,lis2dh12_data_rate_hn_1344hz_l_5376hz:207,lis2dh12_fs_2g:207,lis2dh12_init:207,lis2dh12_onb:282,list:[3,6,7,8,12,22,27,29,34,35,48,50,51,53,57,59,61,66,71,72,73,75,76,77,78,80,85,87,89,90,93,94,95,99,128,130,131,134,136,179,180,192,205,214,223,225,226,229,234,235,239,240,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,30,31,66,89,206,211,222,249],listener_cb:282,lit:[236,240,243,247],littl:[6,20,23,89,128,235,240,246,253,264,270,275],live:[134,235,252,253,256,268,269,270],lma:262,lmp:20,load:[2,4,5,7,12,34,39,43,47,55,57,58,59,61,93,128,129,191,222,235,238,239,240,241,242,243,250,257,258,264,270,274,275,276,289,290],load_arduino_blinki:12,load_arduino_boot:12,loader:[10,43,50,93,128,130,191,256,259,260,261,263,268,278,285,286,288],loc:[141,145,150],local:[1,4,6,7,10,11,20,27,28,36,40,49,55,58,60,71,81,83,94,99,100,244,249,256,268,280],localhost:[66,241,282,289],locat:[1,8,11,19,31,61,89,93,128,140,145,179,187,231,243,253,258,262,268,269,275,278,285,286,288],lock:[9,88,92,98,140,206,211,238],log:[1,7,10,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,66,67,68,69,70,71,73,74,75,76,77,78,80,81,82,128,131,132,150,159,166,180,181,214,222,224,225,235,236,241,246,256,259,260,262,263,265,275,276,280,282,286,289],log_cbm_handl:205,log_cbmem_handl:205,log_cli:[214,265],log_console_handl:[205,208],log_debug:205,log_error:208,log_fcb:225,log_fcb_handl:205,log_handl:205,log_info:208,log_init:225,log_level:[50,205,225,239,265],log_level_debug:205,log_level_error:205,log_module_bno055:208,log_module_default:205,log_nam:72,log_newmgr:224,log_newtmgr:[50,224,225,236],log_nmgr_register_group:225,log_regist:[205,208],log_shel:235,log_syslevel:[205,208],logic:[1,21,23,29,128,174,193,264,275],login:271,loglevel:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,275],logxi:81,long_filename_test:267,longer:[3,8,11,21,24,90,210,224,247,275,277],longjmp:233,longrange_interv:27,longrange_pass:27,longrange_window:27,look:[8,10,24,55,61,93,95,99,101,128,130,131,187,199,204,222,223,235,240,243,244,249,251,252,253,267,270,272,274,275,276,280,282,292],lookup:[211,220,251,282],loop:[84,87,92,99,154,155,156,161,164,225,236,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:26,loss:[26,29,182],lost:[97,179],lost_found_test:267,lot:[7,222,224,249,267,276],low:[9,20,21,22,31,86,89,93,98,135,152,181,186,190,191,208,243,251,254,255,256,257,260,268,292],lower:[20,86,91,92,98,99,224,225,239,243,248,258,262],lowest:[73,85,90,99,179,225,243],lowpow:278,lru:179,lrwxr:[4,81],lsb:187,lst:[34,55,61],ltbase:225,ltd:27,ltk:27,ltk_sc:27,ltrequir:225,lua:[137,138,139],lua_cmd:139,luckili:275,m32:6,m4g:278,mac:[3,5,7,9,12,20,55,56,78,79,235,239,240,247,250,256,258,259,260,262,263,264,268,274,276,278,285,286,287,288],machin:[2,3,7,8,94,247,292],maco:[4,66],macro:[20,89,90,93,97,199,206,208,223,225,231,243,253,267,276],made:[2,10,11,20,55,71,99,128,187,243,244,264,276],mag:278,mag_rev:278,maggyro:278,magic:[61,128,140,179],magnet:[206,278],magnetomet:208,mai:[2,4,6,7,8,12,22,27,29,30,31,51,53,57,58,62,80,81,82,85,87,89,90,92,93,96,101,128,130,132,134,161,179,181,186,187,192,205,206,207,208,210,211,222,223,224,225,226,229,231,236,241,243,246,247,256,258,259,260,261,262,263,264,268,269,275,276,278,282,285,288,289],mail:[3,10,134,234,235,240,246,257,276,292],main:[7,12,26,31,57,61,77,80,87,89,92,95,99,128,130,138,176,177,197,206,211,214,216,221,225,230,232,236,238,240,246,249,254,255,256,259,260,261,262,263,267,274,275,276,278,285,286,288],mainli:222,maintain:[4,49,85,128,134,179,206,211,225,267,269,270],mainten:[132,223],major:[55,61,96,197,243,255,269,270],major_num:[269,270],make:[1,2,3,7,8,9,19,20,21,24,30,31,33,55,57,63,71,85,89,90,93,128,134,140,141,173,179,181,198,205,222,223,235,239,240,243,245,246,247,249,251,252,254,255,256,258,262,264,267,269,274,275,276,277,282,292],makerbeacon:236,malloc:[88,90,93,101,243,276],man:[6,27,101],manag:[6,8,16,17,21,27,31,39,45,57,58,59,61,64,66,68,71,72,73,76,77,80,81,82,87,90,92,93,94,96,99,128,130,134,181,196,199,206,208,209,210,222,225,239,258,259,265,268,270,278,282,285,287,288,292],mandatori:[20,93,226,253,254,255],mani:[20,31,55,61,89,93,95,128,140,148,160,161,181,192,251,256,269],manifest:[34,37,43,55,61,235,236,240,275],manipul:[1,39,45,89],manner:[27,29,89,92,128,181],manual:[21,25,60,83,90,92,99,101,173,222,229,235,241,242,256,262,282,288,289,290],manufactur:[19,27,29,39,43,57,58,59,66,222,249,256,268],many_children_test:267,map:[2,3,8,20,27,28,61,96,134,135,160,181,185,186,193,199,222,224,225,241,251,258,268,269,270,278,285,288,289],mar:[100,259,261,264,276,282],march:68,mark:[27,28,71,93,262],marker:93,market:[31,261],mask:[27,206,208,210,211,280,282],mass:[247,260],mass_eras:[259,260],master:[1,7,11,27,56,57,59,60,79,80,82,83,134,181,183,187,190,244,256,268,269,270],match:[2,7,20,93,94,96,128,210,211,222,256,260,268,269,270],matter:10,max:[156,198,199],max_cbmem_buf:205,max_conn_event_len:27,max_ev:27,max_len:[156,162,182],max_protohdr:89,maxim:9,maximum:[21,27,29,89,128,130,173,175,179,182,198,214,215,219,241,267,289],mayb:[241,242,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:89,mbuf:[92,199,279],mbuf_buf_s:89,mbuf_memblock_overhead:89,mbuf_memblock_s:89,mbuf_mempool_s:89,mbuf_num_mbuf:89,mbuf_payload_s:89,mbuf_pkthdr_overhead:89,mbuf_pool:89,mbuf_usage_example1:89,mbuf_usage_example2:89,mcu:[7,9,53,94,97,134,135,181,186,189,190,191,192,193,195,235,240,243,256,259,268,282],mcu_gpio_porta:135,mcu_sim_parse_arg:[258,282],mdw:262,mean:[2,12,20,89,91,97,98,99,100,128,135,175,190,201,203,225,233,253,260,270,275,276],meaning:[138,193],meant:[1,97,129],measur:[9,243,264],mechan:[1,22,92,222,225,238,269,271,275,276],medic:[21,55],medium:167,meet:[207,239,247,256,257,259,260,261,262,263,278,280,281,282,284,285,286,287,288],mem:[7,225],member:[84,87,89,90,91,97,98,99,100,130,187,190,192,249,251],membuf:90,memcmp:89,memcpi:251,memori:[9,20,48,73,87,88,89,92,93,96,97,101,128,132,134,135,151,167,173,174,178,179,181,182,184,187,215,219,224,236,238,241,243,251,262,264,265,286,289],mempool:[64,80,81,82,89,90,214,275],memset:[207,249,252,255,276],mention:[12,179,206,276],menu:[12,59,260,262,288],merchant:4,merci:90,merg:244,mesh:32,messag:[2,4,22,31,42,57,58,59,75,130,132,133,166,214,217,218,226,238,256,260,264,268,275],messi:276,messsag:62,met:[20,236,238,268],meta:[8,268,278],metadata:[43,128,167],meter:21,method:[25,89,99,133,173,183,186,190,205,214,223,251,269],mfg:[7,39,57,58,59,70,225],mfg_data:29,mfg_init:225,mgmt:[7,130,132,190,196,214,224,225,236,275,276],mgmt_evq_set:236,mgmt_group_id_config:131,mgmt_group_id_crash:131,mgmt_group_id_default:131,mgmt_group_id_imag:131,mgmt_group_id_log:131,mgmt_group_id_runtest:131,mgmt_group_id_stat:131,mgmt_imgmgr:222,mgmt_newtmgr_nmgr_o:222,mgutz:81,mhz:[21,24],mib:[55,81,264],mic:20,micro:[55,239,241,242,243,256,257,259,261,262,264,268,276,278,284,285,287,288,289,290],microcontrol:[9,101,128,262,288],microsecond:[24,86,100],microsoft:12,mid:[14,128,260],middl:[27,128,179,276],might:[1,2,18,20,61,93,96,130,134,179,181,187,208,222,224,241,242,246,248,249,254,255,256,260,269,270,272,282,289,290],migrat:[179,225],milisecond:27,millisecond:[27,100,264],millivolt:276,min:[72,73,128,268,286],min_conn_event_len:27,mind:[97,246],mingw32:59,mingw64:59,mingw:[4,7,8,12,56,82,258,268,278,285,288],mini:260,minicom:[8,258,268,275,278],minim:[93,134,151,152,173,179,208,246],minimum:[27,29,72,89,90,128,179,246],minor:[197,255,269,270],minor_num:[269,270],minu:89,minut:[81,100,254,267],mip:[7,61],mirror:[1,10,11,269,275,276],misc:278,mislead:6,mismatch:[20,89],miso:190,miso_pin:[135,136],miss:[20,57,93,224,235,240,246,257,276],misspel:224,mitm:27,mk64f12:[134,181],mkdir:[11,43,80,82,93,235,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:57,mmc0:[136,152],mmc:151,mmc_addr_error:136,mmc_card_error:136,mmc_crc_error:136,mmc_device_error:136,mmc_erase_error:136,mmc_init:136,mmc_invalid_command:136,mmc_ok:136,mmc_op:[136,152],mmc_param_error:136,mmc_read_error:136,mmc_response_error:136,mmc_timeout:136,mmc_voltage_error:136,mmc_write_error:136,mn_socket:7,mobil:31,mod:[30,250],modbu:275,mode:[9,20,22,27,29,134,158,160,167,168,170,181,182,186,190,193,208,222,249,256,260,262,267,278],model:[21,22,32,87,195,259],modern:[8,151],modif:[11,235,267,277],modifi:[6,62,89,93,100,133,192,240,243,275,276,281,284],modul:[72,86,90,92,101,132,137,205,215,219,221,258,264,288],module_list:72,module_nam:[219,221],modulo:100,moment:[135,187,195,251,270],mon:[256,259,260],monitor:[89,130,132,140,212,223,262,277,284,292],monolith:253,month:267,more:[1,4,7,9,10,12,20,21,22,29,30,34,35,39,43,51,53,57,58,59,61,62,64,80,81,82,85,87,89,92,93,98,99,100,101,128,129,134,141,145,152,163,164,179,190,193,199,205,206,207,208,209,214,222,225,226,239,240,241,243,246,249,253,254,255,256,258,259,264,267,268,270,274,275,276,278,282,285,288,289,292],mosi:190,mosi_pin:[135,136],most:[1,8,14,19,21,23,24,25,61,89,93,94,99,101,128,179,183,190,222,224,243,249,267,274,275,276,278,280,282],mostli:[6,9,222,254,255],motor:9,mou:244,mount:[165,276],mous:[134,181],move:[8,45,57,58,59,81,92,100,128,166,182,222,258,262,276,277,279,282],mp_block_siz:90,mp_flag:90,mp_membuf_addr:90,mp_min_fre:90,mp_num_block:90,mp_num_fre:90,mpe:90,mpool:[219,264],mpstat:[64,78,80,81,82,131,133,236,286],mq_ev:89,mqeueue:89,msb:187,msdo:93,msec:[27,194],msg:229,msg_data:27,msp:[256,262],msy:59,msys2:56,msys2_path_typ:59,msys64:59,msys_1:[73,286],msys_1_block_count:[277,279],msys_1_block_s:[277,279],mtd:135,mtu:[10,20,27,28,250],mu_level:91,mu_own:91,mu_prio:91,much:[89,93,98,101,146,179,275],multi:[1,9,50,62,96,99,187],multilib:[6,7,57],multipl:[4,23,27,29,34,35,50,51,55,84,91,92,97,101,129,132,134,181,190,211,225,249,253,254,269],multiplex:21,multiplexor:96,multipli:[90,243],multitask:[92,243],must:[1,2,4,5,7,8,9,11,12,14,22,24,25,33,37,41,46,53,55,57,59,61,63,66,68,71,80,86,87,89,90,92,93,96,97,99,128,129,130,136,140,148,152,159,160,162,166,173,174,175,176,178,179,180,187,190,192,193,197,198,199,205,206,207,208,210,211,212,214,215,216,219,223,224,225,232,235,236,239,241,243,246,249,251,258,261,262,264,268,269,270,275,276,278,279,280,281,282,285,288,289],mutex:[88,92,98,99],mutual:91,my_at45db_dev:135,my_blinki:50,my_blinky_sim:[7,34,35,43,55,61,246,247,259,260,275],my_blocking_enc_proc:20,my_callout:238,my_conf:129,my_config_nam:225,my_driv:[275,276],my_ev_cb:238,my_eventq:236,my_gpio_irq:238,my_interrupt_ev_cb:238,my_memory_buff:90,my_new_target:50,my_newt_target:50,my_packag:205,my_package_log:205,my_pool:90,my_proj1:246,my_proj:246,my_project:[1,256,268,269,276],my_protocol_head:89,my_protocol_typ:89,my_result_mv:276,my_sensor:282,my_sensor_devic:282,my_sensor_poll_tim:282,my_stack_s:99,my_stat:223,my_stat_sect:223,my_target1:62,my_task:99,my_task_evq:89,my_task_func:99,my_task_handl:89,my_task_pri:99,my_task_prio:99,my_task_rx_data_func:89,my_task_stack:99,my_timer_ev_cb:238,my_timer_interrupt_eventq:238,my_timer_interrupt_task:238,my_timer_interrupt_task_prio:238,my_timer_interrupt_task_stack:238,my_timer_interrupt_task_stack_sz:238,my_timer_interrupt_task_str:238,my_uart:193,myadc:276,myapp1:[241,289],myapp:223,myapp_cmd:220,myapp_cmd_handl:220,myapp_console_buf:130,myapp_console_ev:130,myapp_init:130,myapp_process_input:130,myapp_shell_init:220,mybl:[34,35,46,50,66,73,76,77,236],myble2:[37,38,247],myblehostd:66,mybleprph:[66,239],mybletyp:66,myboard:[45,93],myboard_debug:93,myboard_download:93,mycmd:221,myconn:236,mycor:71,mydata:89,mydata_length:89,mylora:264,mymcu:95,mymfg:70,mymodul:97,mymodule_has_buff:97,mymodule_perform_sanity_check:97,mymodule_register_sanity_check:97,mynewt:[1,3,4,5,6,11,13,20,21,25,30,32,37,38,39,43,44,50,51,53,55,56,57,59,60,61,62,71,78,79,80,82,83,84,86,87,88,97,98,99,100,101,128,129,132,133,134,151,152,173,180,181,182,183,186,187,190,193,205,208,214,216,222,223,224,225,231,234,235,236,238,239,241,242,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:[57,59,80,82],mynewt_arduino_zero:[256,268,269],mynewt_nord:276,mynewt_stm32f3:235,mynewt_v:[130,214,219,223,225,267,276],mynewt_val_:225,mynewt_val_log_level:225,mynewt_val_log_newtmgr:225,mynewt_val_msys_1_block_count:225,mynewt_val_msys_1_block_s:225,mynewt_val_my_config_nam:225,mynewtl:277,mynewtsan:75,myperiph:[239,250],mypool:90,myproj2:222,myproj:[2,7,12,93,235,239,240,242,256,258,259,260,261,262,263,269,275,277,278,282,290],myriad:9,myseri:[73,76,77],myserial01:66,myserial02:66,myserial03:66,mytask:243,mytask_handl:243,mytask_prio:243,mytask_stack:243,mytask_stack_s:243,myudp5683:66,myvar:65,n_sampl:278,nad_flash_id:174,nad_length:174,nad_offset:174,nak:187,name1:50,name2:50,name:[1,2,4,7,8,10,11,12,20,21,27,29,34,35,37,38,42,43,44,45,47,48,50,51,53,55,57,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,90,93,94,95,97,99,100,101,129,130,134,152,154,155,156,159,160,161,164,180,181,186,198,199,200,202,204,205,206,207,208,209,211,215,219,220,221,222,224,227,228,230,235,236,238,241,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:[154,155,156,161,164,249],namespac:[88,129,214,254],nano2:[43,53,93,263],nano2_debug:[93,263],nano:[257,292],nanosecond:[86,192],nativ:[2,3,7,12,43,50,53,55,59,61,66,190,224,225,235,238,247,259,260,268,275,276,286,292],natur:[93,179],navig:[10,292],nb_data_len:179,nb_hash_entri:179,nb_inode_entri:179,nb_prev:179,nb_seq:179,nbuf:89,nc_num_block:175,nc_num_cache_block:175,nc_num_cache_inod:175,nc_num_fil:175,nc_num_inod:175,ncb_block:179,ncb_file_offset:179,ncb_link:179,ncheck:275,nci_block_list:179,nci_file_s:179,nci_inod:179,nci_link:179,nda_gc_seq:179,nda_id:179,nda_length:179,nda_mag:179,nda_ver:179,ndb_crc16:179,ndb_data_len:179,ndb_id:179,ndb_inode_id:179,ndb_magic:179,ndb_prev_id:179,ndb_seq:179,ndi_crc16:179,ndi_filename_len:179,ndi_id:179,ndi_mag:179,ndi_parent_id:179,ndi_seq:179,nding:253,ndof:278,ndof_fmc_off:278,nearest:259,neatli:249,necessari:[6,24,39,47,57,58,59,89,128,152,179,233,235,246,251,256,264,267,276],need:[4,5,6,7,8,9,10,11,12,14,23,24,32,43,50,52,55,57,58,59,60,61,64,66,80,81,83,84,88,89,90,91,92,93,95,96,97,98,99,128,130,135,140,141,142,152,179,191,194,205,206,208,209,210,211,214,220,222,223,224,225,229,236,238,239,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:[89,100,179,253],neither:89,ness:190,nest:[91,159],net:[4,7,24,51,212,225,246,247,251,253,268,275,276,277,279,281],net_nimble_control:222,net_nimble_host:222,network:[1,9,23,27,31,32,55,89,92,222,243,264,268],never:[19,92,97,99,166,179,225,243,246,251],nevq:87,new_bletini:45,new_pool:89,new_slinki:45,newer:6,newest:[140,224,243],newli:[1,10,19,43,128,160,247,254,255,269],newlib:101,newlin:130,newt:[1,3,5,6,7,13,32,56,61,62,73,76,77,80,81,82,83,92,93,94,96,134,222,223,224,225,231,235,237,238,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:[57,60],newt_1_1_0_windows_amd64:60,newt_1_3_0_windows_amd64:59,newt_group:2,newt_host:2,newt_us:2,newtgmr:[81,82,83],newtmgr:[1,7,9,10,13,57,58,59,63,64,78,79,130,131,133,195,205,217,218,222,224,225,238,275,276,287,292],newtmgr_1:[80,83],newtmgr_1_1_0_windows_amd64:83,newtmgr_1_3_0_windows_amd64:82,newtmgr_shel:214,newtron:[152,180,224,225],newtvm:11,next:[7,8,24,30,71,77,82,85,89,90,99,128,130,132,140,145,154,155,156,161,164,179,195,199,206,210,211,222,225,233,239,240,243,244,246,249,253,254,255,256,259,262,270,274,275,276],next_checkin:[77,285,288],nff:[7,101,135,152,174,175,176,177,178,180,188,224,225,231,267],nffs_area_desc:[173,176,177,226],nffs_area_mag:179,nffs_area_max:[176,177],nffs_block:179,nffs_block_cache_entri:179,nffs_block_cache_list:179,nffs_block_mag:179,nffs_cache_block:179,nffs_cache_block_list:179,nffs_cache_inod:179,nffs_close:180,nffs_closedir:180,nffs_detect:[177,179],nffs_detect_fail:[152,173],nffs_dirent_is_dir:180,nffs_dirent_nam:180,nffs_disk_area:179,nffs_disk_block:179,nffs_disk_inod:179,nffs_file_len:180,nffs_flash:188,nffs_flash_area:[224,225],nffs_format:[176,179,226],nffs_getpo:180,nffs_hash_entri:179,nffs_id_non:179,nffs_init:[175,176,177,180],nffs_inod:179,nffs_inode_entri:179,nffs_inode_list:179,nffs_inode_mag:179,nffs_intern:173,nffs_mkdir:180,nffs_op:180,nffs_open:180,nffs_opendir:180,nffs_read:180,nffs_readdir:180,nffs_renam:180,nffs_seek:180,nffs_short_filename_len:179,nffs_test:267,nffs_test_debug:267,nffs_test_priv:267,nffs_test_system_01:267,nffs_test_unlink:226,nffs_test_util:267,nffs_unlink:180,nffs_write:180,nhe_flash_loc:179,nhe_id:179,nhe_next:179,ni_filenam:179,ni_filename_len:179,ni_inode_entri:179,ni_par:179,ni_seq:179,nice:[223,274],nie_child_list:179,nie_hash_entri:179,nie_last_block_entri:179,nie_refcnt:179,nie_sibling_next:179,nil:67,nim:253,nimbl:[7,23,24,26,29,66,225,236,239,245,248,249,250,251,252,253,275,276,277,279],njb:[200,201,202,203,204],njb_buf:204,njb_enc:202,nlip:217,nmgr:133,nmgr_def_taskstat_read:202,nmgr_err_eok:202,nmgr_jbuf:[200,201,202,203,204],nmgr_o:131,nmgr_shell:[130,225,236],nmgr_shell_in:217,nmgr_shell_out:218,nmgr_shell_pkg_init:225,nmgr_task_init:217,nmgr_transport:218,nmgr_uart:236,nmgr_urart_spe:236,nmxact:11,no_of_sampl:278,no_rsp:28,no_wl:[27,30],no_wl_inita:27,node:[21,32,55,154,155,156,161,164,179],nodefault:[199,204],nodup:27,nogdb:[38,47],noinputnooutput:27,non:[7,18,19,21,24,27,31,32,84,89,90,99,100,144,148,150,179,182,186,187,190,191,192,193,215,217,218,219,222,225,254,255,264,269,282],none:[4,7,8,12,20,27,30,82,87,93,101,128,179,216,220,221,222,226,229,235,241,242,256,260,264,276,282,289,290],nonexist:[160,179],nonsens:267,nonzero:[89,141,142,143,145,146,149,150,190,227,228,230,232,233,252,267],nor:22,nordic:[23,93,134,181,185,189,191,238,239,259,261,275,276,278,282,287,292],nordicsemi:[259,261,264,276,282],normal:[2,98,179,229,231,274,278],notat:[55,262],note:[1,2,4,6,7,10,11,12,21,22,23,24,29,32,43,47,50,57,58,59,60,61,66,68,71,80,81,82,83,85,86,87,89,90,91,92,93,94,99,128,130,136,173,187,190,192,195,206,207,208,209,211,214,215,219,222,224,225,235,236,239,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,179,226,254,255,275,276],notic:[7,11,55,61,92,93,180,222,243,246,270,274,275,276],notif:[10,27,28,87,130,210,248,274],notifi:[10,28,210,252,253],notnul:225,nov:8,now:[2,8,9,59,86,89,90,91,93,98,99,128,151,153,157,160,163,166,168,170,179,186,193,222,235,236,239,240,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:[24,53,93,134,181,265],nrf51dk:[53,222],nrf51xxx:189,nrf52840pdk:32,nrf52:[4,24,61,93,134,181,185,191,207,238,239,241,242,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:[241,258,261,263,289],nrf52_bno055_oic_test:[277,279],nrf52_bno055_test:[278,280],nrf52_boot:[236,247,261,276,277,278,279,285],nrf52_hal:93,nrf52_slinki:285,nrf52_thingi:207,nrf52dk:[37,38,53,61,62,93,225,238,246,247,250,258,261,276,277,278,279,285],nrf52dk_debug:[61,93,258],nrf52dk_download:93,nrf52k_flash_dev:[93,185],nrf52pdk:[247,261],nrf52serial:285,nrf52xxx:[48,93,191,259,282],nrf5x:24,nrf:[25,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:[19,254,255],nsampl:278,nsec:86,nth:179,ntoh:89,ntohl:89,ntrst:256,nucleo:53,nul:179,num_block:90,num_byt:184,number:[1,8,9,10,22,27,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,60,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,83,84,86,87,89,90,91,92,93,98,99,100,101,128,129,139,140,141,151,157,163,168,170,171,172,173,174,175,179,182,186,187,189,190,192,193,195,197,198,199,206,214,215,219,223,224,225,229,236,238,239,241,243,247,253,254,255,256,258,262,264,268,269,270,274,275,276,278,279,285,288,289],numer:[20,22,85,93,128],nvm:256,nxp:[134,181],objcopi:6,objdump:6,object:[4,11,48,55,61,81,86,92,93,96,99,132,166,199,201,202,203,208,210,211,252,267,278,281],objsiz:[6,48,222],observ:[14,27,212,247,281],obtain:[27,89,91,98,99,179,192,269,275,276],obvious:53,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:[212,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:[212,236,277,279,281],oc_transport_gatt:236,oc_transport_ip:236,oc_transport_seri:236,occasion:89,occur:[26,27,89,91,100,186,187,190,224,251,252,254,255],occurr:225,ocf:132,ocf_sampl:[7,61],ocimgr:131,ock:211,oct:275,octet:[27,29,31,128],od_init:134,od_nam:208,odd:193,off:[2,20,21,31,32,84,87,89,96,97,99,130,134,140,181,182,187,204,206,208,209,213,236,238,239,240,246,247,254,255,258,262,277,279,280,281,282,284,292],off_attr:204,offer:[1,21,132,134,151,184,276],offset1:89,offset2:89,offset:[20,28,71,89,93,100,128,140,148,152,158,162,167,168,170,171,172,174,179,199,222,224,225,278],often:[9,55,93,179,187,190],ohm:276,oic:[7,51,66,132,209,210,282,292],oic_bhd:66,oic_bl:66,oic_seri:66,oic_udp:66,oic_udpconnstr:66,oicmgr:[7,66,131,132,133],old:[45,140],older:[10,59,82,260],oldest:[140,145,149,224],olimex:[257,275,287,292],olimex_blinki:262,olimex_stm32:[53,262,288],om1:89,om2:89,om_data:89,om_databuf:89,om_flag:89,om_len:89,om_omp:89,om_pkthdr_len:89,ome:90,omgr:133,omi_block_s:90,omi_min_fre:90,omi_nam:90,omi_num_block:90,omi_num_fre:90,omit:[47,224],omp:89,omp_databuf_len:89,omp_flag:89,omp_len:89,omp_next:89,omp_pool:89,on_reset:26,on_sync:26,onboard:[208,209,241,242,280,284,289,290,292],onc:[19,29,55,57,61,80,84,86,89,90,91,92,99,128,143,181,190,192,233,235,236,239,240,249,254,257,258,264,269,275,276],one:[1,4,7,8,10,11,12,19,20,21,22,23,27,29,30,31,34,35,39,43,45,50,51,53,57,58,59,61,67,85,87,89,91,92,93,96,98,99,128,129,130,136,137,140,152,165,166,173,174,176,177,179,182,187,190,195,205,206,210,211,220,222,223,224,225,240,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:[14,89,98,134,181,205,247,292],ongo:27,onli:[1,2,7,8,10,11,12,14,19,20,24,27,29,31,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,66,72,80,83,86,87,89,90,92,93,96,97,98,128,129,130,131,134,135,136,138,150,152,154,155,156,158,161,164,165,167,168,173,174,179,187,190,195,205,206,208,209,211,214,219,222,223,224,225,228,229,231,232,234,236,239,240,243,244,249,251,254,256,258,264,265,267,268,269,270,271,275,276,277,278,281,282,286],onlin:[241,242,256,282,289,290],onto:[1,20,42,43,47,84,87,89,93,257,259,260,261,262,263,274,275,278,285,288],oob:[20,27,29],opaqu:[152,192,205,206,208,210,282],open:[4,8,9,10,12,20,21,38,39,47,55,57,58,59,61,96,132,134,152,153,157,158,160,161,163,164,167,168,169,170,171,172,175,179,207,254,256,259,260,262,263,267,275,280,286],open_test:267,openocd:[12,93,256,259,260,262,263,288],openocd_debug:[259,275],oper:[1,9,12,15,18,20,21,26,31,39,57,58,59,84,89,96,97,98,99,100,130,132,134,152,160,161,162,167,169,173,174,178,179,180,181,182,184,186,193,206,211,223,225,234,246,247,251,252,253,254,255,256,264,267,268,270,271,274,275,278,282],oppos:[31,89,271],opt:4,optim:[1,24,32,37,38,43,50,61,89,93,94,101,134,222,235,243,246,247,250,256,259,260,261,262,263,264,268,275,276,278,282,285,288],optimis:31,option:[2,3,4,6,7,8,10,12,22,23,27,36,37,46,51,55,62,66,72,84,87,90,93,128,132,134,150,151,197,206,208,209,214,222,224,225,226,231,244,246,247,253,256,260,262,264,268,269,270,275,276,278,288],orang:[259,263],order:[1,8,9,22,33,55,61,63,85,87,89,90,91,97,99,101,128,129,132,179,190,206,224,225,236,240,241,242,243,264,267,270,272,275,276,282,289,290],org:[1,4,10,11,39,57,58,59,61,80,82,101,130,137,241,242,254,256,259,260,262,263,267,275,276,282,289,290],organ:[11,134,223,267,269],origin:[11,46,93,128,262,275],os_align:[89,90],os_arch:[61,90,100],os_bad_mutex:91,os_bsp_adc0:276,os_bsp_adc0_config:276,os_callout:[61,84,97,129,238,258,282],os_callout_f_queu:84,os_callout_func:[84,89],os_callout_func_init:84,os_callout_init:[84,97,238,258,282],os_callout_queu:84,os_callout_remaining_tick:84,os_callout_reset:[84,97,238,258,282],os_callout_stop:84,os_cfg:61,os_cli:225,os_cputim:61,os_cputime_delay_nsec:86,os_cputime_delay_tick:86,os_cputime_delay_usec:86,os_cputime_freq:24,os_cputime_freq_pwr2:86,os_cputime_get32:86,os_cputime_init:86,os_cputime_nsecs_to_tick:86,os_cputime_ticks_to_nsec:86,os_cputime_ticks_to_usec:86,os_cputime_timer_init:86,os_cputime_timer_num:[24,86],os_cputime_timer_rel:86,os_cputime_timer_start:86,os_cputime_timer_stop:86,os_cputime_usecs_to_tick:86,os_dev:[61,134,206,207,208,276,280],os_dev_clos:[207,280],os_dev_cr:[134,206,207,208,211,276],os_dev_init_func_t:[134,208],os_dev_init_kernel:276,os_dev_init_primari:207,os_dev_init_prio_default:276,os_dev_open:[207,276,280],os_einv:[89,100,204],os_eno:129,os_error_t:[90,91,98],os_ev:[84,87,89,97,129,130,238,258,282],os_event_fn:[84,87,89],os_event_queu:87,os_event_t_mqueue_data:89,os_event_t_tim:84,os_eventq:[61,84,87,89,97,130,216,238,274,275,276],os_eventq_dflt_get:[26,87,92,99,130,225,238,254,255,258,280,282],os_eventq_dflt_set:275,os_eventq_get:[87,97],os_eventq_get_no_wait:87,os_eventq_init:[87,89,97,130,238,274,275],os_eventq_pol:87,os_eventq_put:[87,130,238],os_eventq_remov:87,os_eventq_run:[26,87,89,92,99,225,238,254,255,258,275,280,282],os_fault:61,os_get_uptime_usec:100,os_gettimeofdai:100,os_heap:61,os_init:[86,99],os_invalid_parm:[91,98],os_main_task_prio:[225,243],os_main_task_stack_s:225,os_malloc:[61,88],os_mbuf:[61,89,217,218],os_mbuf_adj:89,os_mbuf_append:[89,274,276],os_mbuf_appendfrom:89,os_mbuf_cmpf:89,os_mbuf_cmpm:89,os_mbuf_concat:89,os_mbuf_copydata:89,os_mbuf_copyinto:89,os_mbuf_count:89,os_mbuf_data:89,os_mbuf_dup:89,os_mbuf_extend:89,os_mbuf_f_:89,os_mbuf_f_mask:89,os_mbuf_fre:89,os_mbuf_free_chain:89,os_mbuf_get:89,os_mbuf_get_pkthdr:89,os_mbuf_is_pkthdr:89,os_mbuf_leadingspac:89,os_mbuf_off:89,os_mbuf_pkthdr:89,os_mbuf_pkthdr_to_mbuf:89,os_mbuf_pktlen:89,os_mbuf_pool:89,os_mbuf_pool_init:89,os_mbuf_prepend:89,os_mbuf_prepend_pullup:89,os_mbuf_pullup:89,os_mbuf_trailingspac:89,os_mbuf_trim_front:89,os_mbuf_usrhdr:89,os_mbuf_usrhdr_len:89,os_memblock:90,os_memblock_from:90,os_memblock_get:90,os_memblock_put:90,os_memblock_put_from_cb:90,os_membuf_t:[89,90],os_mempool:[61,89,90],os_mempool_byt:90,os_mempool_ext:90,os_mempool_ext_init:90,os_mempool_f_:90,os_mempool_f_ext:90,os_mempool_info:90,os_mempool_info_get_next:90,os_mempool_info_name_len:90,os_mempool_init:[89,90],os_mempool_is_san:90,os_mempool_put_fn:90,os_mempool_s:[89,90],os_mqueu:89,os_mqueue_get:89,os_mqueue_init:89,os_mqueue_put:89,os_msys_count:89,os_msys_get:89,os_msys_get_pkthdr:89,os_msys_num_fre:89,os_msys_regist:89,os_msys_reset:89,os_mutex:[61,91,140,206],os_mutex_init:91,os_mutex_pend:91,os_mutex_releas:91,os_ok:[91,98],os_pkg_init:225,os_san:[61,97],os_sanity_check:[97,99],os_sanity_check_func_t:97,os_sanity_check_init:97,os_sanity_check_regist:97,os_sanity_check_reset:97,os_sanity_check_setfunc:97,os_sanity_task_checkin:97,os_sch:61,os_sched_get_current_t:243,os_sched_get_current_task:[85,97,243],os_sem:[61,92,98,275],os_sem_get_count:98,os_sem_init:[92,98,275],os_sem_pend:[92,98,275],os_sem_releas:[92,98,275],os_sem_test_bas:230,os_sem_test_case_1:230,os_sem_test_case_2:230,os_sem_test_case_3:230,os_sem_test_case_4:230,os_sem_test_suit:230,os_settimeofdai:100,os_stack_align:[243,274,275,276],os_stack_t:[97,99,217,238,243,274,275,276],os_start:99,os_stime_t:100,os_sysview:[242,290],os_task:[61,85,87,91,92,97,99,238,243,274,275,276],os_task_count:99,os_task_flag_evq_wait:99,os_task_flag_mutex_wait:99,os_task_flag_no_timeout:99,os_task_flag_sem_wait:99,os_task_func_t:[97,99],os_task_info:99,os_task_info_get_next:99,os_task_init:[92,97,99,238,243,274,275],os_task_max_name_len:99,os_task_pri_highest:99,os_task_pri_lowest:99,os_task_readi:99,os_task_remov:99,os_task_sleep:99,os_task_st:99,os_task_state_t:99,os_test:61,os_test_restart:233,os_tick_idl:[189,256,259,282],os_tick_init:189,os_ticks_per_sec:[84,97,100,129,189,208,238,243,258,274,275,276,282],os_tim:[61,100,267],os_time_adv:100,os_time_delai:[99,100,208,238,240,243,274,276],os_time_get:100,os_time_max:100,os_time_ms_to_tick:100,os_time_t:[84,87,97,99,100,189,206,208],os_time_tick_geq:100,os_time_tick_gt:100,os_time_tick_lt:100,os_timeout:[91,98,275],os_timeout_nev:[92,100,207,280,282],os_timeradd:100,os_timersub:100,os_timev:[100,267],os_timezon:[100,267],os_wait_forev:[87,92,99,238,243,274,275],osmalloc:88,ostask:99,ostick:100,osx:[235,240],ota:236,otg1:262,otg2:[262,288],other:[1,6,10,11,20,22,24,29,31,50,55,61,86,87,89,90,92,93,94,97,98,99,100,128,129,130,134,152,153,161,164,169,173,174,176,179,184,187,205,208,210,214,222,223,225,235,238,241,242,243,246,247,248,249,251,252,256,257,258,259,265,267,269,274,276,277,278,279,282,284,289,290],otherwis:[89,90,92,99,142,144,147,186,190,269,270],oti:99,oti_cswcnt:99,oti_last_checkin:99,oti_nam:99,oti_next_checkin:99,oti_prio:99,oti_runtim:99,oti_st:99,oti_stks:99,oti_stkusag:99,oti_taskid:99,oui:[19,264],our:[20,55,89,93,222,223,235,236,240,243,246,249,254,255,257,258,267,270,274,275,276,285,288],our_id_addr:[30,250],our_id_addr_typ:250,our_key_dist:27,our_ota_addr:[30,250],our_ota_addr_typ:[30,250],out:[8,9,10,11,20,21,22,23,26,27,61,80,81,82,84,89,95,99,128,130,136,140,141,144,146,160,161,173,180,181,182,198,200,201,202,203,222,226,233,246,248,250,254,255,257,262,268,275,287],out_cpha:190,out_cpol:190,out_data:[162,163],out_dir:[161,162,164],out_fil:[160,162],out_id_addr_typ:30,out_len:[157,162,163,171],out_nam:[136,156,162],out_name_l:156,out_name_len:[156,162],out_off:89,out_tick:100,outdat:58,outfil:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,275],outgo:218,outlin:5,output:[1,7,12,21,22,27,30,34,35,37,38,39,40,41,42,43,44,45,46,47,49,50,51,52,54,57,58,59,62,69,73,75,76,77,81,88,93,99,100,128,129,181,186,193,205,222,224,226,235,238,241,256,258,259,260,262,263,264,267,268,275,278,282,286,289],outsid:[20,21,89],outweigh:89,over:[20,21,22,23,27,29,31,65,66,67,68,69,70,71,72,73,74,75,76,77,89,128,133,134,136,140,142,150,187,193,205,222,236,241,243,251,257,258,260,264,268,274,275,277,278,279,281,284,287,289,292],overal:[10,24,89,99,173],overhead:89,overlap:[20,179],overrid:[50,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,93,205,222,223,236,247],overridden:[23,225,247],oversampl:276,overview:[128,278,279,282],overwrit:[6,49,50,59,60,82,83,93,130,179,256,265,268],overwrite_many_test:267,overwrite_one_test:267,overwrite_three_test:267,overwrite_two_test:267,overwritten:[128,172,179],own:[2,11,19,20,39,57,58,59,61,87,91,92,96,98,99,135,179,190,205,222,223,244,245,246,275,276],own_addr_t:[254,255],own_addr_typ:[27,66,254,255],owner:[87,91,271],ownership:[91,179,275,276],pacakg:246,pacif:100,pack:[4,55,81,89,239,259,261,268,278,282,285],packag:[6,9,11,23,24,26,34,39,40,41,43,45,50,51,52,53,55,56,58,59,60,79,83,87,92,94,99,128,129,131,132,134,137,138,152,162,173,181,182,195,196,199,207,208,211,212,213,214,222,223,230,231,232,235,238,247,257,258,259,264,266,269,270,276,279,280,281,292],package1:205,package1_log:205,package2:205,package2_log:205,packet:[20,21,27,29,187,214,218,254,264],packet_data:89,pacman:[7,59],pad:[89,128],page:[1,4,5,6,7,8,10,20,22,57,58,60,80,81,83,93,101,135,180,187,188,206,207,208,209,235,240,244,246,248,252,254,255,257,276],page_s:135,pair:[20,21,22,27,66,128,129,179,199,204,225,250,252],pakcag:214,panel:12,paradigm:89,param:[27,214,219,252],param_nam:214,paramet:[1,20,26,27,28,30,61,66,72,84,86,87,89,90,91,97,98,99,100,136,140,150,182,186,187,189,190,192,193,194,205,207,208,214,225,236,249,251,252,253,254,255,267],parameter_nam:225,parameter_valu:225,parent:[90,154,155,156,161,164,166,172,179],parenthes:89,pariti:193,parlanc:11,parmaet:27,parmet:[27,28],pars:[55,197,214,226,229,254,267],part:[22,29,89,95,128,140,168,173,174,179,180,222,249,250,253,275,276,281],parti:[254,256,268],partial:[64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,89,128,173,174],particular:[4,20,47,61,89,92,93,96,97,128,130,134,152,181,190,192,199,233,252,254,255],particularli:265,partit:[20,93,128,173,179,222],pass:[1,7,12,20,27,61,84,86,87,89,90,91,97,98,99,130,134,135,139,140,150,160,163,171,179,186,187,190,192,193,199,206,207,208,210,214,217,227,228,229,230,249,253,254,255,267,276,282],passiv:27,passkei:[20,22,27],password:[11,58,80,247,271],past:[20,89,276],patch:[259,260,263],path:[2,4,6,10,11,12,29,50,57,58,59,60,61,66,80,81,82,83,93,94,152,159,160,161,162,166,169,171,172,225,269,275,276],pathloss:29,pattern:[27,93,243],payload:[89,132,133,187],pc6:288,pc7:288,pca100040:247,pca:[239,261,276],pcb:275,pci:[134,181],pcmcia:[134,181],pdata:187,pdf:[235,288],pdt:[100,267],pdu:[20,27],peek:243,peer:[10,22,28,66,190,239,251,253,254,255],peer_addr:[27,30,66,249],peer_addr_typ:[27,30,66,249],peer_id:66,peer_id_addr:250,peer_id_addr_typ:250,peer_nam:[66,239],peer_ota_addr:250,peer_ota_addr_typ:250,pem:[37,46],pencil:10,pend:[20,84,87,91,98,128,187,239],per:[11,19,89,91,128,129,173,182,186,190,193,223,243,267,270,275],perfom:128,perform:[3,4,5,9,11,12,20,22,25,27,36,57,58,59,64,80,81,82,89,90,92,93,97,99,101,128,130,135,151,152,166,179,187,192,211,222,225,235,239,251,256,258,259,264,270,274,275,276,277,278,279,282],perhap:269,period:[9,19,22,27,84,97,189,194,238,243],peripher:[9,20,21,24,26,29,30,93,96,134,181,182,187,190,223,239,245,246,249,252,253,254,274,275,276],perman:[71,128,179,222,239,249,252],permiss:[275,276],permit:[20,241,242,253,256,282,289,290],persist:[128,151],perspect:222,pertain:252,petteriaimonen:101,phdr:89,phone:[22,31],php:55,phy:[21,27],phy_opt:27,physic:[21,27,29,66,130,183,186,193],pick:[85,92,205,254,255],pictur:[235,259],pid:260,piec:[21,93,275],pig:244,pin:[7,8,20,93,96,99,134,181,183,186,187,190,191,193,206,235,238,258,259,262,264,268,275,276,278,282,288],ping:92,pinout:95,piqu:292,pitfal:89,pkcs15:128,pkg1:224,pkg2:224,pkg:[1,7,11,39,43,50,53,55,57,58,59,61,94,95,101,130,134,135,136,151,152,180,181,205,207,214,223,224,225,236,238,246,258,267,275,276,277,282],pkg_init_func1_nam:225,pkg_init_func1_stag:225,pkg_init_func2_nam:225,pkg_init_func2_stag:225,pkg_init_func:225,pkg_init_funcn_nam:225,pkg_init_funcn_stag:225,pkg_test:232,pkga_syscfg_nam:225,pkga_syscfg_name1:225,pkga_syscfg_name2:225,pkgn_syscfg_name1:225,pkt:275,pkthdr_len:89,pkts_rxd:89,place:[3,55,61,87,100,101,128,140,168,187,190,222,225,231,236,240,243,246,247,253,254,255,262,270,275,284],plai:[12,21,284],plain:[222,260,270],plan:[2,134,214],platform:[2,7,9,11,12,23,24,57,58,59,66,80,81,82,84,92,93,94,96,134,182,187,190,192,231,239,243,246,256,258,259,260,262,263,268,275,276,278,285,286,287,288],pleas:[10,39,57,58,59,94,95,206,210,211,223,235,240,241,242,256,257,269,276,282,289,290],plenti:[243,275],plist:61,plu:[89,156,179,187],plug:[8,180,235,262,263,275,276],plumb:274,pmode:278,point:[2,4,6,31,85,89,91,93,95,99,101,128,130,134,141,142,143,144,145,147,148,149,150,161,162,164,179,190,206,246,251,252,254,255,275,276,277],pointer:[67,84,85,86,87,89,90,91,93,98,99,100,130,134,140,141,142,150,153,155,156,157,158,160,162,163,168,170,171,172,179,180,182,187,190,192,197,198,199,205,206,207,208,211,214,215,216,219,220,226,243,251,252],poke:276,polici:[27,269],poll:[87,92,210,278,282],poll_du:278,poll_dur:278,poll_interv:278,poll_itvl:278,poller:[206,210,211,282],pong:92,pool:[73,80,92,264,279,286],popul:[1,7,12,50,62,100,175,179,231,257,268,284,287,292],port:[2,12,66,92,130,134,186,193,205,223,236,247,256,258,259,260,261,262,263,268,275,278,282,285,286,287,288,292],portabl:[134,181],portingto:94,portion:[128,146,187,274,276],posit:[89,100,128,158,168,171,194,262],posix:59,possibilti:[241,242,289,290],possibl:[21,22,24,27,28,30,32,36,53,89,91,100,128,134,152,173,174,179,181,182,205,222,223,241,253,269,278,289],post:[49,84,89,134,238,246],potenti:[96,222,270],pour:[58,81],power:[2,9,20,21,22,27,29,31,55,93,96,130,134,181,182,190,191,208,236,239,247,256,261,262,264,268,277,278,279,280,282,285,288],ppa:4,pre:[4,9,205,223,269,270],precaut:251,prece:89,preced:23,precis:[6,20],predict:243,preempt:[91,92,98,99],preemptiv:[92,99,243],prefer:[3,27,29,138,239,251,275],preference0x01:27,prefix:[61,179,209,225,276],preload:190,prepar:[20,259,261,264,276],prepend:89,preprocessor:[214,223],prerequisit:12,presenc:[93,179,249,254,255,269],present:[1,89,93,128,130,179,195,207,222,247,262,267,276],preserv:89,press:[8,12,98,238,242,243,246,268,275,278,290],presum:[89,264],pretti:276,prev:[99,179],prev_ind:252,prev_notifi:252,prevent:[91,92,128,169,251],previ:[250,252],preview:[244,247,261],previou:[21,56,57,58,59,78,79,80,81,82,99,128,179,199,224,225,246,247,258,269,274],previous:[6,12,57,58,59,60,80,81,82,83,190,236,250,272,276,278],prevn:[250,252],pri:[77,182,275,285,288],primari:[27,93,128,132,166,239,253,255,274],primarili:101,primary_phi:27,primo:[257,274,275],primo_boot:259,primo_debug:259,primoblinki:259,print:[48,57,58,59,62,129,130,136,154,155,156,161,164,171,193,214,224,226],print_statu:171,print_usag:197,printabl:198,printf:[101,136,226,229],prio:[97,99,189,217],prior:[22,24,49,89,92,128,166,175,179,190,192,264],prioriti:[77,85,87,91,92,98,99,134,173,182,189,225,238,247,276,292],priv:27,privaci:[19,21,27],privat:[19,22,32,37,46,57,66,80,128,254,255],privileg:2,pro:[243,256,259],probabl:[7,10,93,248,271,275],probe:[187,259,268,282],problem:[7,98,128,161,222,224],proce:[3,6,11,128,233,256,259,260,261,262,263,267,268,275,285,288],procedur:[6,11,16,19,20,22,27,28,64,75,80,81,82,128,179,180,222,278,281],proceed:[7,248,254,255],process:[3,6,9,10,20,22,26,27,31,61,84,85,87,89,93,99,128,130,131,179,211,212,216,222,223,225,235,236,238,241,242,243,254,255,277,280,281,282,289,290],process_data:169,process_rx_data_queu:89,processor:[4,9,89,99,134,181,182,186,241,242,243,256,262,282,289,290],produc:[98,128,223,229,260],product:[55,96,174,186,209,247,275,288],profil:[14,15,16,17,21,27,28,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,246,256,285,287,288],profile01:[65,67,68,69,70,71,72,73,74,75,76,77],profile0:77,program:[4,6,8,12,23,85,128,130,188,191,235,243,256,258,259,261,264,268,276],programat:130,programm:[241,242,260,289,290],programmat:[137,282],progress:[7,20,128,134,135,179,190,245],prohibit:167,project:[3,6,8,11,33,34,39,40,41,44,49,50,52,55,57,58,59,61,63,88,99,101,128,129,130,135,136,138,151,176,177,181,195,205,223,230,231,238,240,241,243,244,250,267,271,272,277,278,282,283,284,289,292],prompt:[7,8,11,12,47,58,59,93,246,256,258,259,260,261,262,263,275,278,282],prone:253,proper:[134,276],properli:[24,61,92,97,243,247,251,274,275,276],properti:[12,19,31,59,93,128,133,173,174,179,205,235,248,259],proport:179,propos:10,propper:275,prot_length:89,prot_tif:89,prot_typ:89,protcol:89,protect:[22,88,128,140],protocol:[14,20,21,28,61,66,89,128,132,133,187,279,281,284,287],prototyp:[96,193,225,254,255],provid:[1,2,7,9,11,12,19,20,21,22,27,30,31,37,39,45,50,57,58,59,66,70,71,72,75,80,84,86,88,89,90,91,92,93,95,96,97,99,100,128,130,134,135,136,140,151,152,173,181,186,187,190,192,197,206,209,211,212,214,223,231,234,236,248,254,255,256,264,267,268,269,270,275,276,281],provis:[21,32],provision:31,proxi:[21,31],pseln:276,pselp:276,pset:190,psm:27,psp:[256,260],pst:[68,100,267],pth:262,ptr:193,public_id:27,public_id_addr:30,public_target_address:29,publish:22,pull:[11,49,80,82,87,89,134,186,238,258,262],pulldown:186,pullup:[89,186],purpos:[4,22,50,55,93,97,128,181,186,205,208,210,222,223,243,251,264,276,282],push:[10,244],put:[1,2,7,43,61,80,82,87,89,90,91,93,98,99,100,133,182,243,249,254,255,267,276],putti:[8,258,268,278],pwd:[2,11],pwm:9,pwr:[260,262],px4:4,python:[33,63],qualifi:251,qualiti:283,quat:278,queri:[9,19,50,55,57,58,59,61,62,89,133,155,156,157,158,171,179,206,208,223,249,278,286],question:246,queu:[20,84,87,193,238],queue:[26,61,84,86,89,92,97,98,99,130,179,192,211,214,216,218,225,236,254,255,274,280,282,284,292],quick:[2,3],quickli:[100,181,243,276,278,281,282,284],quickstart:[2,243],quiet:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,275],quit:[19,93,241,246,249,254,255,256,259,260,262,263,289],quot:66,r_find_n:211,r_lock:211,r_match_:211,r_regist:211,r_unlock:211,radio:[21,24,247],raff:81,rais:91,ram:[48,93,95,173,182,222,246,256,275,276,277],ram_siz:93,ran:97,rand:27,random:[19,20,25,27,30,66,247,253,254,255,274],random_id:27,random_id_addr:30,randomli:19,rang:[9,20,21,29,89,101,179,197,264],rare:89,rate:[66,84,130,211,212,247,264,278,281,282],rather:[14,20,93,100,101,128,152,166,222,276],raw:[11,57,58,59,80,81,82,130,173,179,225,226,276],rb_bletini:50,rb_blinki:[43,50],rb_blinky_rsa:43,rb_boot:43,rbnano2_blinki:263,rbnano2_boot:263,reach:[97,192],read:[4,6,7,11,12,14,18,19,20,23,27,28,55,61,64,65,68,73,76,77,80,81,82,87,89,99,128,129,130,134,135,136,140,142,145,146,150,152,153,154,155,156,158,160,161,163,164,168,169,171,179,184,186,187,192,199,204,205,210,211,212,213,225,226,235,236,238,239,241,242,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:[153,160,163],read_part1_middl:168,read_rsp_rx:76,read_rsp_tx:76,read_sensor_interv:282,read_test:267,read_type_req_rx:76,read_type_req_tx:[76,236],read_type_rsp_rx:[76,236],read_type_rsp_tx:[76,236],readabl:[247,271],readdesc:7,readdir_test:267,reader:[267,274,276],readi:[10,85,87,99,130,193,199,241,243,256,275,289],readili:134,readm:[7,11,55,61,93,246,267],readnow:61,real:[1,7,9,87,92,100,130,179,199,234,238,241,246,253,282,289],realist:267,realli:[89,276],rearm:84,rearrang:89,reason:[10,20,26,27,89,90,128,191,243,250,252,264,267,269],reassembl:21,rebas:11,reboot:[7,71,128,191,222,224,239,277,279],reboot_log:72,reboot_log_flash_area:[224,225],reboot_start:280,rebuild:[32,61,82,280],rec0:128,rec1:128,rec2:128,recal:[251,269],receiv:[10,14,20,27,29,31,55,81,89,130,131,136,187,190,193,206,211,214,217,220,236,249,252,253,260,264,282,285,288],recent:[179,259],recip:6,recipi:29,reclaim:179,recogn:[55,179,276],recommend:[3,4,7,12,57,58,80,81,89,130,188,207,208,214,224,225,236,238,241,249,253,259,263,265,278,284,289],reconfigur:[190,193,280],reconnect:251,record:[128,179,208,223,231,242,290],recov:128,recover:128,recreat:270,recur:194,recurs:[55,61,90,169],red:[27,28,235,260,262,288],redbear:[257,292],redefin:224,redistribut:[55,241,242,256,269,282,289,290],reduc:[9,22,24,31,87,101,132,205,236,238,266],redund:222,reenter:265,ref0:67,refer:[7,8,10,18,22,23,29,55,67,93,166,169,179,190,209,215,219,222,244,249,254,255,256,258,262,268,275,276,278,288],referenc:[1,179,186],reflect:250,reformat:179,refrain:26,refresh:[2,49,244,256],refus:[241,282,289],regard:[173,174,267,275,276],regardless:41,region:[89,93,128,167,173,174,179],regist:[23,75,85,89,94,129,131,134,138,152,162,165,181,182,187,196,205,206,210,212,215,217,219,220,221,225,243,251,253,275,276,282],register_:210,registr:[17,180,223,251,282],registri:[89,208],regress:[227,228,230,231,232],regular:[89,155,267],reject:[20,267],rel:[89,92,148],relai:[21,31],relat:[10,27,31,43,135,222,241,242,249,252,256,264,282,289,290],relationship:[27,98],releas:[3,4,7,31,49,56,78,79,89,90,91,92,98,134,186,187,214,225,256,268,269,270],release_not:[7,11],relev:[95,128,134,186],reli:[1,7,55,225],reliabl:[21,128,151,173,254,255,270],remain:[93,163,169,179,222,226,229,243,251],remaind:[93,179,229,249,267,269],rememb:[2,41,80,82,91,256,274],remind:256,remot:[1,7,9,12,20,27,28,49,55,66,78,80,81,82,132,187,235,236,238,239,247,256,257,258,268,275,276,282,284,286,287,292],remov:[2,4,6,27,35,45,60,83,86,87,89,90,98,99,130,136,179,222,251,256,282],renam:166,rename_test:267,repeat:[2,11,20,187,240,251],repeatedli:[29,128],replac:[4,6,93,95,101,195,222,225,226,229,240,256,258,274,285,288],repli:27,repo814721459:55,repo:[1,6,7,10,11,41,55,57,61,80,93,134,152,222,235,241,242,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,20,93,182,193,223,226,229,241,242,256,260,267,275,282,289,290],reposistori:7,reposit:168,repositori:[1,4,11,12,40,41,44,49,51,52,57,61,80,134,235,244,245,246,248,256,257,264,268,272,275,284,287,292],repres:[1,12,61,87,89,98,100,128,130,159,179,206,208,210,211,214,243,253],represent:[128,132],reproduc:[1,61,128,180,254,255],req_api:[61,130,205],req_len:89,request:[12,20,27,66,67,74,78,89,91,93,98,128,132,133,136,140,163,179,191,209,210,212,214,222,236,250,251,256,260,262,264,269,270,274,276,277,281,282,285,288],requir:[1,2,4,6,9,11,20,24,30,31,53,59,61,66,80,82,87,89,90,92,94,95,96,98,128,130,132,135,152,162,173,174,179,192,205,207,214,222,223,224,225,228,235,236,238,243,246,249,251,256,259,263,264,267,269,270,274,275,276,278,280,281,282,292],res:277,reserv:[20,89,93,96,141,143,179,206,243,264],reserved16:179,reserved8:179,reset:[25,64,78,80,81,82,84,97,131,132,191,222,233,236,241,242,246,247,250,259,260,261,263,276,278,282,289,290],reset_cb:26,reset_config:256,reset_handl:[93,262],resid:[96,128,174,179,240,253,275],resign:[57,58,59],resist:276,resistor:[238,276],resolut:[22,86,192,223,276],resolv:[1,19,20,22,27,32,55,66,81,224,235,254,255,269],resourc:[9,20,29,61,88,91,98,133,209,210,212,214,235,238,241,242,256,277,279,281,282,288,289,290],respect:100,respond:[17,25,222,249,251,253,274,275],respons:[10,15,20,28,29,69,85,90,92,130,132,136,212,222,243,249,251,268,275,281,285,286,288],rest:[1,46,61,89,179,197,199,226],restart:[2,128,129,140,179,191,256],restor:[129,173,176,177,179,259,261,264,276],restrict:[128,140,173,174,179,214,225,251,252],restructuredtext:10,result:[10,12,20,58,62,89,100,160,161,174,179,198,206,223,225,229,231,253,260,267,274,275,276],resum:[21,99,128,179,249,252],resynchron:49,retain:[128,179,225,252],retent:182,retransmit:31,retreiv:133,retri:[263,264],retriev:[57,80,87,89,100,132,152,154,155,156,157,158,161,163,164,171,174,206,208,246,284],reus:[55,81,128,225],reusabl:55,rev:278,revdep:[1,50,62],revers:[1,23,50,62,128,179,251,262],revert:[128,239],review:[10,222,249,267],revis:[4,197,278],revision_num:[269,270],revisit:[246,252],rewrit:179,rewritten:179,rfc:[68,199,267],ribbon:[262,288],rigado:[48,261,276],right:[2,3,10,55,61,129,244,249,262,276],rimari:253,ring:98,rise:186,ristic:253,rite_fil:152,robust:151,role:[20,21,30,31,98,251],room:[89,179,243],root:[2,4,8,31,80,136,165,179,235,269],rotat:166,rotate_log:166,routin:[101,129,140,141,143,162,180,199,230,275],rpa:[19,27],rpa_pub:[27,66],rpa_rnd:[27,66],rsa2048:128,rsa:128,rsp:27,rssi:[27,29,247],rtc:9,rto:[55,92,243],rtt:[130,291,292],rtt_buffer_size_down:[241,289],rubi:[11,55,58],rule:[225,260,267],run:[2,3,4,5,6,8,9,11,23,24,30,34,39,41,43,50,52,55,57,58,59,60,61,64,66,67,77,78,80,81,82,83,84,85,86,87,89,91,92,93,96,97,98,99,128,129,131,132,135,136,152,160,161,179,192,212,214,220,222,224,232,233,234,235,236,239,240,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,131,236],runtest_newtmgr:236,runtim:[25,77,99,256,268,275,285,288],runtimeco:[57,58,59,80,81,82,235,256,268,269,276],rwx:93,rwxr:[80,82],rx_cb:130,rx_data:275,rx_func:193,rx_off:275,rx_phys_mask:27,rx_power:27,rxbuf:190,rxpkt:89,rxpkt_q:89,s_cnt:223,s_dev:206,s_func:206,s_hdr:223,s_itf:206,s_listener_list:206,s_lock:206,s_map:223,s_map_cnt:223,s_mask:206,s_name:223,s_next:[206,223],s_next_run:206,s_pad1:223,s_poll_rat:206,s_size:223,s_st:[206,282],s_type:206,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:[90,152],safeguard:92,safeti:251,sai:[61,89,99,256,268,269,270,275],said:[186,276],sam0:256,sam3u128:[259,261,264,276,282],samd21:[256,268],samd21g18a:256,samd21xx:256,samd:256,same:[6,10,12,22,29,34,37,47,51,59,61,78,89,91,93,94,98,128,130,151,173,179,187,211,222,223,224,225,226,235,238,240,243,249,251,252,257,259,261,264,269,270,271,276,277],sampl:[1,12,21,30,61,89,94,134,212,222,225,276,277,279,281,282,287],sample_buffer1:276,sample_buffer2:276,sample_cmd:221,sample_cmd_handl:221,sample_command:219,sample_modul:[219,221],sample_module_command:219,sample_module_init:219,sample_mpool:219,sample_mpool_help:219,sample_mpool_param:219,sample_target:53,sample_tasks_help:219,sample_tasks_param:219,sane:99,saniti:[77,92,99,246],sanity_interv:97,sanity_itvl:[97,99],sanity_task:97,sanity_task_interv:97,satisfactori:269,satisfi:[179,270],sattempt_stat:223,save:[12,31,49,50,71,100,129,130,187,208,243,251],saw:252,sbrk:[93,259,260,261,262,263],sc_arg:97,sc_checkin_itvl:97,sc_checkin_last:97,sc_cmd:[214,215,219,220,221,275],sc_cmd_f:214,sc_cmd_func:[214,215,219,220,221,275],sc_cmd_func_t:214,sc_func:97,sc_next:152,sc_valtyp:206,scalabl:[151,179],scale:31,scan:[15,21,24,26,27,29,179,247,249,277,279],scan_interv:27,scan_req:27,scan_req_notif:27,scan_result:268,scan_rsp:27,scan_window:27,scannabl:[27,30],scenario:[22,98,195],scene:31,schedul:[9,24,84,87,92,96,99,100,243],schemat:[93,288],scheme:[19,29,93],scientif:21,sck_pin:[135,136],scl:[187,278],sco:20,scope:[12,89,243],scratch:[93,128,140,141,143,222],screen:[8,264],script:[7,42,61,137,139,262],scroll:[12,236,250],sd_get_config:[206,208],sd_read:[206,208],sda:[187,278],sdcard:136,sdk:[45,53,225],search:[12,87,94,134,176,179,211,241,242,246,256,262,269,277,282,289,290],searchabl:134,sec000:128,sec125:128,sec126:128,sec127:128,sec:[278,282],second:[22,26,27,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,84,89,90,93,97,99,100,128,140,194,214,222,235,240,243,249,254,255,258,262,267,274,275,276,278,282],secondar:253,secondari:[27,71,93,128,239,253,275],secondary_phi:27,secret:[22,27],section:[1,5,6,7,11,12,14,24,25,29,30,61,89,92,93,99,128,179,208,222,224,225,236,239,243,245,249,252,253,256,257,268,269,270,276,284,286,287],sector:[128,140,141,146,148,149,150,179,184,262],sector_address:[135,184],secur:[21,128,222,253,271,274],see:[2,4,5,6,7,8,10,11,12,21,22,23,24,33,36,43,55,57,58,59,61,63,64,66,80,81,82,87,89,91,92,93,96,99,128,137,147,160,181,187,190,199,205,206,207,208,209,210,211,212,213,214,223,224,225,235,236,239,240,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:[89,168,179],seem:[249,276],seen:[90,185,188,269,292],segger:[130,239,259,261,264,268,276,278,282,285,291,292],segger_rtt_conf:[241,289],segment:[21,89,277],sel:288,select:[4,12,19,21,55,59,179,186,190,206,214,242,256,258,259,260,262,277,279,288,290],selector:206,self:[3,30,94,254,255,267],selftest:267,sem:98,sem_token:98,sema:275,semant:252,semaphor:[92,99,275],semi:275,send:[3,10,14,20,27,28,31,38,42,47,64,66,67,69,74,78,80,81,82,89,130,132,133,187,190,193,212,234,235,240,249,257,274,276,281,286,292],send_pkt:89,sender:249,sens:[20,128,222,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:225,sensor:[9,31,134,223,292],sensor_accel_data:282,sensor_callout:282,sensor_cfg:[206,208],sensor_cli:[213,278,279,282],sensor_cr:[207,278,280],sensor_data_func_t:[208,210],sensor_data_funct_t:208,sensor_dev_cr:207,sensor_devic:206,sensor_driv:[206,208],sensor_ftostr:282,sensor_g:206,sensor_get_config_func_t:[206,208],sensor_get_itf:208,sensor_in:206,sensor_init:[206,208],sensor_itf:[206,207,208],sensor_itf_i2c:[206,207],sensor_itf_spi:206,sensor_itf_uart:206,sensor_listen:[206,210,282],sensor_lo:206,sensor_mg:211,sensor_mgr_find_next_bydevnam:[211,282],sensor_mgr_find_next_bytyp:211,sensor_mgr_l:211,sensor_mgr_lock:211,sensor_mgr_match_bytyp:211,sensor_mgr_regist:[206,208,211],sensor_mgr_unlock:211,sensor_mgr_wakeup_r:[211,282],sensor_nam:278,sensor_o:[212,277,278,279,281,282],sensor_offset:278,sensor_oic_init:[212,277],sensor_oic_obs_r:[212,281],sensor_r:[206,210],sensor_read:[206,210],sensor_read_func_t:[206,208],sensor_register_listen:[210,282],sensor_s:206,sensor_set_driv:[206,208],sensor_set_interfac:[206,208],sensor_set_poll_rate_m:[206,211,282],sensor_set_type_mask:[206,208],sensor_shel:278,sensor_timestamp:206,sensor_type_acceleromet:[206,207,208,280,282],sensor_type_al:206,sensor_type_eul:[208,280],sensor_type_grav:[208,280],sensor_type_gyroscop:[206,208,280],sensor_type_light:206,sensor_type_linear_accel:[208,280],sensor_type_magnetic_field:[206,208,280],sensor_type_non:206,sensor_type_rotation_vector:[208,280],sensor_type_t:[206,208,210,211,282],sensor_type_temperatur:[206,208],sensor_type_user_defined_6:206,sensor_un:[206,210],sensor_unregister_listen:[210,282],sensor_value_type_float:[206,208],sensor_value_type_float_triplet:[206,208],sensor_value_type_int32:206,sensor_value_type_int32_triplet:206,sensor_value_type_opaqu:206,sensor_value_type_temperatur:208,sensornam:[206,207,208,209,278,280,282],sensorname_cli:208,sensorname_ofb:278,sensors_o:279,sensors_test:[277,278,280,281],sensors_test_config_bno055:280,sent:[20,29,130,179,187,190,193,214,251,253,264],sentenc:[62,244],sep:[4,81,82],separ:[20,26,34,35,50,51,66,128,134,176,179,197,205,222,223,251,254,255,256,259,260,262,263,264],seper:[241,289],sequenc:[92,128,130,173,179,226,229],sequenti:[173,174,179],seri:[128,159,191,253,292],serial:[10,66,87,128,129,130,132,133,134,140,182,187,190,223,236,238,239,259,263,264,275,277,278,279,286,287],serror_stat:223,serv:[18,55,93,140,209,222,277],server:[12,14,18,20,21,27,31,133,209,210,212,222,244,253,264,274,277,279,281,282],servic:[16,17,21,27,28,29,31,92,96,134,181,234,249,250,251,252,268,270,275,277],service_data_uuid128:[27,29],service_data_uuid16:29,service_data_uuid32:[27,29],sesnor:282,session:[12,38,39,47,55,57,58,59,61,93,241,256,259,260,262,263,289],set:[1,2,7,8,9,10,12,19,20,23,24,27,28,29,31,32,34,36,37,39,50,53,55,56,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,81,82,84,86,89,96,97,98,99,100,128,129,130,134,135,145,152,153,157,160,162,163,167,170,173,175,176,177,179,181,186,187,189,190,192,193,194,199,207,209,211,212,213,214,215,219,220,221,222,223,231,235,238,239,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:224,setting2:224,settl:25,setup:[11,57,59,60,71,80,82,83,208,222,236,239,246,247,257,258,274,275,276,278,282,284,285,286,287,288],sever:[3,20,21,23,27,61,93,94,96,100,128,179,222,225,233,234,253,254,255,261,262,269],sha256:128,sha:128,shall:[24,27,29],share:[4,22,88,89,91,92,98,222,238,269],sheet:208,shell:[1,7,8,21,30,55,59,80,96,129,130,137,138,205,209,215,216,217,218,219,220,221,223,224,225,235,236,241,243,257,264,265,274,275,277,278,279,284,289],shell_cmd:[214,215,219,220,221,275],shell_cmd_argc_max:[214,264],shell_cmd_func_t:214,shell_cmd_h:214,shell_cmd_help:[214,219,265],shell_cmd_regist:[214,220,275],shell_compat:214,shell_complet:214,shell_evq:275,shell_init:225,shell_max_compat_command:[214,215],shell_max_input_len:138,shell_max_modul:[214,219],shell_modul:214,shell_newtmgr:[214,236],shell_nlip_input_func_t:217,shell_nlip_input_regist:214,shell_os_modul:[214,265],shell_param:[214,219],shell_prompt_modul:[214,258],shell_regist:[214,221],shell_sample_mpool_display_cmd:219,shell_sample_tasks_display_cmd:219,shell_stack:[138,275],shell_stack_s:275,shell_task:[214,224,225,236,258,265,275,278,282],shell_task_handl:275,shell_task_init:138,shell_task_prio:[138,275],shell_task_prior:224,shell_task_stack_s:138,shield:92,shift:[12,21],ship:[6,10],shortcut:[12,275],shorten:249,shorter:[179,240],shorthand:[89,269],shortli:276,shot:264,should:[4,8,10,12,19,26,30,32,55,57,59,61,81,84,85,86,87,89,90,93,96,97,98,99,128,130,134,137,138,140,146,150,152,156,157,160,170,173,179,181,182,187,190,192,193,194,197,199,208,211,214,223,225,229,231,235,240,241,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,27,28,31,36,39,40,43,50,53,57,58,59,60,61,62,72,80,81,82,83,89,99,129,130,193,205,219,222,224,225,231,234,235,236,238,239,241,242,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,43,55,61,89,92,128,135,192,208,223,235,251,256,259,261,264,267,269,271,274,276,278,280,282,286],si_addr:[206,207],si_cs_pin:206,si_num:[206,207],si_typ:[206,207],sibl:[11,270],sid:27,side:[12,21,30,129,275],sierra:[58,81],sig:[20,29,31],sign:[6,10,37,46,47,57,58,59,80,206,240,247,257],signal:[20,21,26,29,99,190,252],signatuar:12,signatur:[27,46,128],signed_imag:128,signifi:187,signific:[19,89,190,222,264],significantli:31,signigic:89,silent:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,225,275],silicon:32,sim1:[285,286,288],sim:[6,7,61,94,275,285,287,288],sim_slinki:[224,286],similar:[1,8,10,12,92,93,207,247,264,267,274],similarli:[89,205],simpl:[12,20,21,61,85,89,92,93,98,99,101,129,132,134,151,181,223,235,243,248,249,254,255,258,276,282,284],simplehttpserv:[33,63],simpler:[93,253],simplest:[89,285,288],simpli:[6,10,87,89,90,98,99,130,181,222,235,243,245,250,256,274],simplic:[128,254,255],simplifi:[20,87,90,187],simul:[2,3,5,6,50,233,243,282,286],simultaen:89,simultan:[27,29,30],simultaneosli:152,sinc:[3,20,24,32,61,89,92,93,98,100,128,190,214,223,239,240,243,246,247,254,255,256,258,268,269,274,275,276,277],singl:[2,3,7,22,39,47,55,57,58,59,87,89,98,99,128,134,152,171,173,174,179,208,223,225,248,249,253,254,267,269],singli:179,sissu:191,sit:[14,18,134,181,222],site:[248,259,263],situat:[92,222],six:[22,23],size:[9,20,27,29,39,55,57,58,59,61,73,77,87,89,90,93,99,100,101,128,130,132,135,156,173,174,175,179,190,204,205,222,223,224,225,226,234,236,243,256,260,262,264,266,279],size_t:[156,162,199],sizeof:[89,129,136,153,154,155,156,160,161,163,164,171,204,207,226,243,249,251,252,255,274,275,276],skelet:247,skeleton:[7,44,50,235,246,247,256,259,260,261,262,263,264,268,276,285,286,288],skip:[6,11,47,59,128,140,142,256,259,260,261,262,263,268,285,288],sl_arg:[210,282],sl_func:[210,282],sl_next:210,sl_sensor_typ:[210,282],slash:179,slave:[27,29,187,190],slave_interval_rang:29,sleep:[9,85,87,89,91,98,99,100,182,238,243,258],slightli:[96,222],slink:[285,286,288],slinki:[7,45,61,130,152,176,177,222,224,225],slinky_o:[7,61],slinky_sim:224,slinky_task_prior:224,slist_entri:[152,179,206,210],slist_head:[91,206],slot0:128,slot1:128,slot:[7,20,61,71,195,222,239,241,242,247,250,256,258,259,260,261,262,263,264,265,268,275,278,282,285,288,289,290],slower:[3,96,97],small:[20,24,89,130,134,171,222,223,253,260,267,275,276],smaller:[10,89,132,194,222,244,256],smallest:[89,179],smart:[21,31,55,61,275,281],smarter:270,smp:[20,21],snapshot:[43,259,263,270],snip:[1,36,43,55,61,236,246,247,276],snippet:251,soc:96,socket:2,soft:[64,80,81,82,191],softwar:[1,3,4,6,21,38,42,47,50,96,97,128,181,234,239,241,256,259,261,262,268,269,275,276,278,282,285,289],solder:275,solut:[55,181,254,255],solv:[128,222],some:[1,8,12,30,64,76,89,90,92,93,96,98,99,101,128,130,136,140,151,152,153,160,163,173,174,182,190,193,205,219,224,231,235,236,241,242,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:[129,275],somehow:61,someon:[10,85,276],someth:[20,235,241,246,247,268,271,289],sometim:[129,241,256,268,289],somewhat:[92,128,179],somewher:[128,179,222,276],soon:[21,270,276],sooner:194,sophist:243,sort:[179,250],sourc:[1,4,9,21,24,50,56,58,60,61,79,81,83,89,96,128,129,134,166,179,208,209,225,231,238,248,256,259,260,262,268,269,270,276,282,284,288],space:[12,21,34,35,50,51,66,89,96,140,141,156,173,174,187,195,198,214,222,223,246,254,257,268,284,287,292],spec:20,specfi:278,special:[8,89,96,135,222,226,229,253,254,255,267,268,269,270,275,278],specif:[11,20,21,22,23,29,31,57,58,59,61,62,85,87,89,90,92,93,95,96,100,128,132,134,150,152,173,174,181,186,187,189,190,191,192,193,195,205,206,208,222,225,226,230,231,236,243,247,249,251,252,254,255,256,262,264,267,268,269,275,276,285,288],specifi:[1,4,6,7,10,11,12,20,27,30,34,35,37,39,41,43,45,46,50,51,53,55,57,58,59,61,65,66,67,68,69,70,71,72,73,74,75,76,77,84,86,87,89,90,93,96,97,99,100,101,130,132,133,150,152,153,154,155,156,157,158,159,160,161,163,164,166,167,168,169,170,171,172,174,176,177,179,182,186,187,205,206,207,208,209,210,211,212,213,214,215,216,219,224,226,229,231,236,239,241,246,249,251,252,253,254,255,256,261,262,265,268,269,270,271,276,278,281,282,285,288,289],spectrum:21,speed:[9,21,179,193,241,256,259,260,261,264,276,289],spew:268,sphinx:[33,63],spi:[8,21,96,134,135,136,186],spi_cfg:[135,136],spi_miso_pin:[135,136],spi_mosi_pin:[135,136],spi_num:[135,136,190],spi_sck_pin:[135,136],spi_ss_pin:[135,136],spi_typ:190,spitest:[7,61],split:[7,71,93,179,191,224,239,276,285,286,288],split_app:7,split_app_init:225,split_config:[285,286],split_elf_nam:61,split_file_test:267,split_load:225,splitti:[7,61,222,224],spot:93,spread:21,spuriou:267,squar:187,sram:262,src:[6,7,11,45,50,55,61,70,80,82,89,93,95,134,176,177,180,181,184,188,189,191,197,225,231,240,243,246,256,259,260,261,262,263,264,267,268,274,275,276,278,280,282,285,286,288],src_off:89,ss_op_wr:251,ss_pin:[135,136],ssec:27,sstatic:274,st_cputim:282,st_ostv:282,stabil:[269,270],stabl:[1,7,57,58,80,81,269,270],stack:[1,9,18,21,24,26,27,30,55,77,85,87,89,92,99,222,225,245,246,247,248,249,251,252,253,264,275],stack_bottom:99,stack_len:217,stack_ptr:217,stack_siz:[97,99],staff:[80,81],stage:[97,128,134,207,222,225],stai:[160,161],stailq_entri:223,stale:[2,256],stand:[89,232],standalon:[10,222],standard:[7,21,31,100,132,133,134,135,151,152,160,181,249,254,255,264,274,275],standbi:[21,195],start:[2,4,8,9,10,12,26,27,28,30,38,47,59,62,71,82,86,88,89,90,91,92,93,95,99,128,134,137,140,141,143,146,152,159,160,168,171,174,179,187,188,190,191,192,193,194,203,211,222,225,233,235,242,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:240,startup:[19,21,26,30,128,222,225,243,254,255],startup_stm32f40x:[260,262],stash:49,stat:[1,7,64,78,80,81,82,131,132,225,236,241,246,264,265,275,276,282,289],state:[6,21,26,31,52,55,85,87,93,97,99,100,133,140,176,177,181,182,186,199,238,239,243,256,262,270,272],statement:[11,225,236],statist:[1,48,64,73,76,77,80,81,82,241,264,285,286,288,289],stats_cli:[1,265,275],stats_hdr:[208,223],stats_inc:223,stats_incn:223,stats_init:[208,223],stats_init_and_reg:223,stats_module_init:225,stats_my_stat_sect:223,stats_nam:[1,37,38,76,208,223],stats_name_end:[208,223],stats_name_init_parm:[208,223],stats_name_map:223,stats_name_start:[208,223],stats_newtmgr:[1,224,225,236],stats_regist:[208,223],stats_sect_decl:[208,223],stats_sect_end:[208,223],stats_sect_entri:[208,223],stats_sect_start:[208,223],stats_size_16:223,stats_size_32:[208,223],stats_size_64:223,stats_size_init_parm:[208,223],statu:[10,11,20,136,171,222,239,250,252,254,256,264,275,285,286,288],stdarg:[226,229],stderr:197,stdio:276,stener:210,step:[2,4,6,7,12,47,55,57,59,80,82,92,93,94,128,130,187,207,222,223,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,59,66,86,96,97,241,250,284,289],stitch:1,stksz:[77,275,285,288],stkuse:[77,275,285,288],stlink:260,stm32:[260,262,288],stm32_boot:288,stm32_slinki:288,stm32f2x:260,stm32f303vc:[235,240],stm32f3discoveri:235,stm32f4:[134,135,136,257],stm32f4_adc_dev_init:134,stm32f4_hal_spi_cfg:[135,136],stm32f4disc_blinki:260,stm32f4disc_boot:260,stm32f4discoveri:[53,260],stm32f4discovery_debug:260,stm32f4x:260,stm32f4xx:186,stm32f4xxi:186,stm32serial:288,stm32x:260,stm34f4xx:186,stm:288,stmf303:235,stmf32f4xx:186,stmf3:235,stmf3_blinki:[235,240],stmf3_boot:[235,240],stop:[2,27,84,86,140,150,187,188,192,193,249,268,278],stopbit:193,storag:[20,129,140,167,247,269],store:[1,11,22,27,31,34,35,37,50,55,57,59,61,80,85,87,89,100,129,130,140,147,179,190,195,198,199,217,223,246,249,251,252,269,275,276,277,282,284],stori:89,str:[130,193,199],straight:[249,275],straightforward:[246,276],strategi:243,strcmp:[129,275],stream:[21,199,204,205,217],strength:29,strict:[251,256],strictli:[173,174,179,276],string:[1,10,27,29,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,101,129,130,133,139,160,171,197,198,199,204,214,215,219,223,225,226,229,254,255,267,269,270,274,275,276,286],strip:[46,89],strlen:[249,251],strongli:152,struct:[84,85,86,87,89,90,91,92,93,97,98,99,100,128,129,130,134,135,136,140,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,160,161,163,164,165,166,168,169,170,173,176,177,179,180,182,185,187,190,192,197,198,199,200,201,202,203,204,205,206,207,208,210,211,214,215,216,217,218,219,220,221,223,226,231,232,238,243,249,251,252,253,254,255,258,267,274,275,276,280,282],structur:[7,11,12,18,28,55,61,78,84,87,89,90,91,92,93,98,99,128,130,134,136,146,162,175,178,187,192,197,198,205,207,208,209,215,219,220,223,251,257,267,268,275,276,280,284,287,292],strutur:89,stub:[61,101,205,238,254,255,258,267,275,276],studio:[5,13],stuff:269,style:[130,244],sub:[28,43,45,50,70,71,72,75,76,134,155,255,272],subcmd1:220,subcmd2:220,subcommand:[45,50,62,64,66,70,71,72,75,76,220],subcompon:21,subdirectori:[2,231,267],subfold:259,subject:179,submit:11,subrang:20,subscrib:[28,250,252,276],subsequ:[21,22,128,160,161,222,249,252,267],subset:[22,176,206,208,211,278],substitut:[6,244,246,247],subsystem:[30,59,87,129,130,135,136,214],subtract:[98,100],subtre:129,succe:[176,267],succesfulli:[239,240,241,242,246,247,250,256,258,259,260,261,262,263,264,268,275,278,282,285,288,289,290],success:[3,20,55,84,86,89,92,97,99,100,136,141,142,143,144,145,146,148,149,150,152,153,154,156,157,159,160,161,163,164,165,166,167,168,169,170,171,172,176,177,178,179,182,186,187,190,192,193,194,197,200,201,202,203,204,215,217,218,219,229,232,233,235,240,251,253,262,264,267,276],successfuli:[93,267,282],successfulli:[7,20,55,90,93,97,222,235,236,239,240,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,57,58,60,80,83,247],suffici:[89,90,179],suffix:267,suggest:[3,6,211,234,265,292],suit:[6,55,228,230,231,246,266],suitabl:[20,93,173],summar:[93,222],summari:[6,11,19,36,214,219,255],supersed:179,supervision_timeout:[30,250],supplement:[29,249],supplementari:93,suppli:[152,170,172,176,191,267],support:[1,3,4,6,7,10,12,14,19,20,21,22,29,30,32,53,58,66,81,86,92,93,95,101,128,130,132,133,134,135,136,151,179,182,186,190,199,205,206,207,208,211,214,215,219,220,222,223,225,238,239,246,247,248,249,253,254,256,257,259,268,269,270,275,279,284,286,287,292],suppos:[43,91,98,186,223],suppress:286,suppresstasknam:12,sure:[2,7,8,57,89,198,246,247,249,251,256,258,264,267,269,274,275,276],suspend:278,svc:253,sw_rev:278,swap:[2,85,93,173,180,222,241,256,289],swclk:256,swd:[256,259,260,261,262,263,264,268,276,282],swdio:256,sweep:179,swim:260,swo:[259,268,282],symbol:[4,7,12,61,222,241,242,256,260,282,289,290],symlink:[60,83],sync:[20,25,39,57,58,59],sync_cb:[26,254,255],synchron:[20,39,49,57,58,59,96,98,134,190],syntax:[225,244,264,265,278],synthes:24,sys:[1,7,55,57,61,129,130,131,180,205,214,223,224,225,232,236,238,242,246,258,267,268,275,276,278,282,290],sys_config:[129,222],sys_config_test:7,sys_console_ful:222,sys_einv:[208,282],sys_enodev:208,sys_flash_map:[260,262],sys_log:222,sys_mfg:[7,256,259,260,261,262,278,285,288],sys_shel:222,sys_stat:222,sys_sysinit:[7,256,259,260,261,262,263,278,285,288],syscfg:[23,24,32,37,38,50,61,93,97,129,130,152,173,207,208,209,211,212,213,214,215,219,223,224,236,239,241,242,247,256,258,259,264,265,267,268,275,276,278,279,281,282,289,290],sysconfig:236,sysflash:[256,262],sysinit:[7,25,26,92,99,130,196,207,225,238,254,255,256,258,264,267,268,275,276,282],sysinit_assert_act:225,sysinit_panic_assert:[207,208,225],sysresetreq:256,system:[1,3,6,8,9,25,39,50,57,58,59,61,62,86,89,90,93,96,97,99,100,101,128,129,130,131,140,154,155,156,160,161,162,164,165,167,173,175,176,177,179,182,186,190,193,195,196,205,219,222,223,233,234,242,243,246,247,256,258,259,262,264,265,268,269,270,275,282,290],system_l:186,system_stm32f4xx:[260,262],systemview:292,sysview:[242,290,291],sysview_mynewt:[242,290],sytem:188,syuu:59,t_arg:99,t_ctx_sw_cnt:99,t_dev:206,t_driver:206,t_flag:99,t_func:[99,243],t_interfa:206,t_itf:206,t_name:99,t_next_wakeup:99,t_obj:99,t_poll_r:206,t_prio:[85,99],t_run_tim:99,t_sanity_check:99,t_stackptr:99,t_stacksiz:99,t_stacktop:99,t_string:204,t_taskid:99,t_type_m:206,t_uinteg:204,tab:[30,36],tabl:[19,20,93,128,131,151,160,179,225,251,253,264,278],tag:270,tail:[89,179],tailq_entri:[179,192],tailq_head:179,take:[6,7,23,45,50,55,62,89,92,129,141,198,211,222,223,243,249,251,252,253,254,255,267,274,276],taken:[7,61,87,92,251,269,270,274],talk:[247,249,286],tap:[4,56,79],tar:[4,57,58,59,60,81,82,83],tarbal:4,target:[3,4,5,7,12,25,29,32,34,35,36,37,38,39,42,43,46,47,48,53,55,57,58,59,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,96,129,195,222,223,224,225,231,239,243,245,254,255,257,265,267,275,277,279,281,287],target_nam:34,targetin:[254,255],task1:[92,97,285,288],task1_evq:97,task1_handl:92,task1_init:92,task1_prio:92,task1_sanity_checkin_itvl:97,task1_sem:92,task1_stack:92,task1_stack_s:92,task2:[92,285,288],task2_handl:92,task2_init:92,task2_prio:92,task2_sem:92,task2_stack:92,task2_stack_s:92,task:[9,11,55,64,77,80,81,82,84,85,87,89,90,91,92,93,95,96,98,100,130,134,139,169,202,211,214,216,219,225,233,236,251,258,264,274,275,277,280,282,285,286,288,292],task_l:238,task_prior:[224,225],tasknam:12,taskstat:[64,78,80,81,82,131,133,236,285,288],tbd:[253,276],tc_case_fail_arg:231,tc_case_fail_cb:231,tc_case_init_arg:231,tc_case_init_cb:231,tc_case_pass_arg:231,tc_case_pass_cb:231,tc_print_result:[231,232],tc_restart_arg:231,tc_restart_cb:231,tc_suite_init_arg:231,tc_suite_init_cb:231,tc_system_assert:231,tck:256,tcp:[256,260],tdi:256,tdo:256,teach:243,team:[4,181,244],technic:[10,235],technolog:[21,135],tee:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,275],telee02:264,telee02_boot:264,telemetri:254,telenor:264,teli:[254,255],tell:[30,55,140,155,193,195,199,222,223,225,235,249,251,254,255,262,270,274,276],telnet:[241,268,282,289],tem:278,temperatur:[159,206,278],templat:[7,45,246,267,275,282],temporari:[20,97,128,179],temporarili:[91,97],ten:190,term:[3,128,134,152,186,189,269],termin:[2,4,7,8,10,12,20,21,27,59,82,130,154,155,156,160,161,164,171,173,174,176,179,241,247,249,252,253,256,258,259,260,261,262,263,264,268,280,282,289],terminato:156,termintor:156,terribl:[7,246],test:[4,6,12,39,50,57,58,59,61,64,67,71,75,80,81,82,128,130,131,181,208,209,222,225,226,227,228,229,230,231,232,233,236,239,241,247,253,254,255,256,258,259,261,266,269,274,276,286,289,292],test_assert:[227,228,230,267],test_assert_fat:[226,267],test_cas:[226,267],test_case_1:228,test_case_2:228,test_case_3:228,test_case_nam:[227,228],test_datetime_parse_simpl:267,test_datetime_suit:267,test_json:267,test_json_util:267,test_project:44,test_suit:[227,228,267],test_suite_nam:230,testbench:[7,61],testcas:[7,267],testnam:75,testutil:[7,180,267],text:[39,48,69,89,130,171,214,222,229,260,285,288],textual:1,tgt:129,tgz:4,than:[3,7,14,20,29,72,89,91,92,93,96,98,99,100,101,128,132,152,163,166,179,190,194,211,214,222,224,226,228,241,243,247,253,254,255,259,276,282,289],thank:30,thee:96,thei:[1,6,20,29,30,61,84,87,89,90,92,93,98,99,128,129,134,169,179,192,222,223,225,231,234,240,249,250,251,253,254,255,264,265,267,269,270,272,274,278],their_key_dist:27,them:[2,9,55,89,93,98,99,160,177,179,195,222,223,225,243,247,249,254,255,256,267,268,269,276,277,292],themselv:[89,92,253],theori:[55,225],therebi:[98,140],therefor:[20,90,128,148,152,160,243,271],thi:[1,2,3,4,5,6,7,8,9,10,11,12,14,18,20,21,22,23,24,25,26,27,29,30,31,32,33,34,41,43,52,53,55,57,58,59,60,61,63,64,66,71,72,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,128,129,130,132,134,135,136,137,138,140,141,142,143,146,152,154,155,156,158,159,160,161,162,164,166,168,169,171,172,173,174,175,176,178,179,180,181,182,183,185,186,187,188,190,192,193,194,195,196,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,219,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,238,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,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,10,21,24,26,55,61,90,93,96,97,134,187,206,222,254,255,267,270,274,275,276,280,282],thingi:[207,241,242,289,290],thingy_boot:282,thingy_debug:[241,242,282,289,290],thingy_my_sensor:282,think:[10,128,276],third:[6,19,100,247,249,256,268,276],thorough:270,those:[1,31,32,39,55,57,58,59,61,93,96,128,137,141,222,234,270,274,275,276],though:[89,128,179,187,211,222],thought:276,thread:[9,246,256,260,262],three:[2,11,19,59,61,89,128,130,166,205,222,223,225,238,243,246,248,249,255,256,262,264],through:[21,23,61,62,89,99,128,133,140,146,151,154,155,156,161,164,173,174,181,190,199,211,236,248,250,252,255,256,258,262,267,268,274,275,276,279,281,284],throughout:[1,93,267],throughput:21,thrown:6,thu:[89,93,98,128,134,173,174,186,187,190,243],tick:[84,86,91,96,97,98,100,130,187,192,214,243,258,259,275,282],ticker:84,ticket:10,tickl:[97,194],tid:[77,275,285,288],tie:222,tied:152,ties:[89,246],time:[1,7,9,10,11,12,19,20,21,22,25,27,31,34,43,57,58,59,60,61,77,82,83,84,87,89,92,93,96,97,98,99,128,130,136,140,151,160,161,179,181,194,206,214,222,223,234,238,240,241,243,246,249,251,253,254,255,259,261,264,267,268,274,275,276,278,282,284,289],time_datetim:[222,282],time_datetime_test:267,time_in_flight:89,timeout:[20,27,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,87,91,98,187,239,275],timer:[24,84,86,87,93,97,181,189,194,211,282],timer_0:24,timer_4:264,timer_5:24,timer_ev_cb:[258,282],timer_interrupt_task:238,timer_num:192,timestamp:[72,206],timev:100,timezon:[100,267],timo:87,timo_func:84,timtest:[7,61],ting:[254,255],tini:[262,288],tinycbor:[7,277],tinycrypt:7,tinyprintf:101,tip:97,titl:[8,287],tlm:254,tlv:[27,128],tmp:[57,59,80,82,169,222],tmpstr:282,tmr:192,todo:[61,179,254,255],togeth:[1,43,55,61,89,137,179,222,250,262,276],toggl:[7,99,186,238,243,258],token:[75,92,98,214,271],told:195,too:[20,89,92,100,134,160,161,179,182,224,275],took:260,tool:[1,2,3,5,6,7,9,10,12,13,39,54,57,58,61,62,63,66,78,79,80,81,92,93,94,96,133,134,223,224,225,231,235,236,238,239,241,242,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,33,59,63,236,239,247,257,268,284,287,292],toolkit:3,tools_1:[57,58,59,81,82],top:[1,10,12,35,61,89,99,134,173,187,224,247,254,255,267,276],topic:1,total:[9,55,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,89,99,101,128,179,259,261,264,276],tour:248,track:[19,21,22,100,128,179],tradeoff:222,trail:[89,128],trailer:128,transact:[20,187,190],transfer:[22,190,275],transform:179,transit:128,translat:[186,254],transmiss:[20,27,190,193,218,264],transmit:[29,31,130,187,190,264],transmitt:193,transport:[20,21,27,80,130,133,225,239,246,247,256,260,275,276,277,279,281,284],travers:[89,154,155,156,161,164],traverse_dir:[154,155,156,161,164],treat:[140,200],tree:[1,6,7,50,55,61,93,159,246],tri:[3,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,129,136,224,264],trial:93,tricki:99,trig:186,trigger:[6,10,87,186],trim:89,trip:97,triplet:206,troubleshoot:[223,224],truncat:[157,169,170,172],truncate_test:267,trust:[22,27,275],tt_chr_f:253,tt_svc_type_p:253,ttl:[247,288],tty:[8,258,268,275,278,285,288],ttys002:66,ttys003:66,ttys005:286,ttys012:[285,288],ttys10:8,ttys2:[8,258,268,278,285,288],ttys5:8,ttyusb0:[10,66,247],ttyusb2:[8,268,285,288],ttyusb:[8,258,268,278,285,288],tu_any_fail:[232,267],tu_case_init_fn_t:231,tu_case_report_fn_t:231,tu_config:[231,232],tu_init:231,tu_restart_fn_t:231,tu_suite_init_fn_t:231,tupl:100,turn:[24,134,181,182,186,222,236,246,247,257,258,261,269,270,278,285],tutiori:[73,76],tutori:[2,3,6,7,8,10,12,21,23,59,77,207,208,212,213,214,231,235,236,238,239,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:[100,267,282],tv_usec:[100,267,282],tvp:100,tweak:151,two:[2,3,10,12,18,19,21,22,23,27,31,43,45,50,55,61,66,89,90,91,92,93,95,99,100,128,130,132,173,179,187,205,206,214,220,222,223,224,225,235,236,238,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:193,tx_func:193,tx_len:275,tx_off:275,tx_phys_mask:27,tx_power_level:[27,29],tx_time_on_air:264,txbuf:190,txd:264,txpower:264,txrx:190,txrx_cb:190,txt:[70,153,157,160,163,170,171,172,242,290],type:[1,7,8,10,12,19,20,23,27,29,30,31,39,43,45,46,53,55,57,58,59,61,66,84,89,90,93,96,99,128,130,133,160,161,176,177,179,186,190,193,199,200,204,205,207,210,212,214,217,224,225,226,227,228,229,230,235,238,239,241,242,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:[26,87,90,97,99,100,130,150,186,190,192,193,199,206,214],typic:[3,9,21,26,31,55,61,89,92,93,94,97,128,130,134,173,174,181,183,186,187,190,205,206,222,223,225,231,249,254,255,267],tz_dsttime:[100,267],tz_minuteswest:[100,267],u8_len:136,uart0:[130,275,286],uart1:275,uart:[7,8,21,55,96,130,134,188,217,236,241,246,247,259,260,261,262,263,264,275,282,289],uart_0_pin_rx:275,uart_0_pin_tx:275,uart_bitbang:[188,259],uart_flow_control_non:130,uart_hal:[7,260,261,262],uart_rx_char:193,uartno:275,ubuntu:[4,6,7,57,80],uci:23,udev:260,udp:66,uext:288,uicr:23,uid:254,uint16:[27,28],uint16_max:27,uint16_t:[20,89,90,91,97,98,99,128,135,140,141,179,187,190,199,206,217,223,251,274,275,276],uint32:[27,71],uint32_max:27,uint32_t:[84,86,89,90,91,98,99,100,128,135,140,148,152,153,157,158,160,162,163,168,171,172,174,175,179,182,184,187,189,190,192,194,205,206,208,223],uint64:27,uint64_t:199,uint8:27,uint8_max:27,uint8_t:[23,32,87,89,90,91,93,97,99,128,130,134,135,140,148,152,153,154,155,156,160,161,162,163,164,168,171,174,179,182,184,185,187,190,193,199,205,206,208,217,223,249,251,254,255,275,276],uint_max:204,uinteg:[199,204],ultim:251,umbrella:222,unabl:[2,179,256,259,260,263],unaccept:20,unadorn:20,unam:2,unc_t:214,unchang:[93,179],unconfirm:264,und:[27,30],undefin:[82,182,225],under:[4,7,10,11,12,20,26,34,55,61,71,101,129,134,214,253,256,260,261,263,275,276],underli:[96,134,140,152,160,161,180,181,190,206],underlin:244,understand:[7,100,206,222,234,235,239,264,269,276],understood:[160,226],underwai:128,undesir:92,undirect:[27,249],unexpect:[20,154,155,156,161,164,167],unexpectedli:[20,267],unicast:31,unicod:151,unidirect:27,unifi:134,uniform:[29,59],uniformli:62,uninstal:7,unint32:71,uninterpret:225,union:[179,199,251],uniqu:[9,19,32,93,179,182,205,223,224,225,254,264],unit:[1,7,20,27,39,51,57,58,59,84,99,128,225,267,292],unittest:[7,45,55,61,225,246,267,275],univers:193,unix:[2,59,152,235],unknown:[20,224],unlabel:275,unless:[27,99,128,173,187,195,225,275,276],unlicens:21,unlik:[20,90,267],unlink:[58,60,81,83,153,161,166,169],unlink_test:267,unlock:[206,211],unmet:93,unpack:[57,59],unplug:263,unpredict:161,unprovis:31,unregist:210,unresolv:[181,267],unrespons:20,unset:[50,128],unsign:[99,199,223,263,282],unspecifi:[20,42],unstabl:[57,58,80,81],unsuccess:187,unsupport:[20,253],unsur:179,unsync:26,untar:4,until:[20,26,61,86,87,89,92,98,130,140,179,187,190,193,249,254,255,264,269],unuesd:252,unus:[71,274,275,276],unwritten:128,updat:[2,4,15,20,27,30,36,37,49,52,57,58,59,60,80,81,83,89,128,142,179,225,250,252,258,259,265,267,274,276,277,282],upgrad:[2,39,56,59,79,93,128,130,235,236,241,247,256,268,289,292],uplink:264,uplink_cntr:264,uplink_freq:264,upload:[10,43,70,71,152,195,222,239,259],upon:[1,3,10,26,55,89,128,179,223,252],upper:[23,179,193,225],uppercas:209,upstream:132,uri:[27,29,133],url:[27,254,267,269],url_bodi:254,url_body_len:254,url_schem:254,url_suffix:254,usabl:[1,90,93,246,254],usag:[1,9,57,58,59,62,80,81,82,89,99,134,135,152,173,179,187,206,214,219,223,225,243,264,275,286],usart6_rx:288,usart6_tx:288,usb:[2,3,8,21,42,66,236,238,239,243,247,256,257,259,260,261,262,263,264,268,276,278,284,285,287,288],usbmodem14211:66,usbmodem14221:66,usbmodem401322:8,usbseri:[8,258,268,275,278,285,288],usbttlseri:247,use:[1,4,5,6,7,8,11,12,14,19,20,21,22,24,27,30,32,41,45,50,51,55,56,58,59,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,81,82,84,86,87,93,94,96,98,99,128,129,130,131,134,136,140,141,151,152,165,166,169,173,176,177,179,180,187,190,192,199,200,201,202,203,204,205,206,207,208,209,210,211,214,215,216,219,220,222,223,224,225,231,235,236,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:27,use_wl_inita:27,usec:[86,278,282],used:[6,7,10,11,12,19,20,22,23,24,27,29,30,31,34,46,49,61,66,72,84,86,89,90,91,93,98,99,100,101,128,129,130,135,136,140,143,151,152,156,179,184,187,188,190,192,194,199,206,207,208,214,222,223,224,225,226,227,228,229,230,233,234,235,240,243,247,249,251,252,253,254,255,256,264,267,268,269,270,276,277,278],useful:[3,20,92,171,208,246,269],user:[1,2,4,6,7,8,9,18,20,22,24,48,55,58,59,61,78,80,81,82,84,87,89,90,93,94,97,128,130,131,134,135,140,146,152,173,182,190,191,192,193,213,222,223,224,225,232,235,238,253,256,262,264,268,269,270,271,275,276,282,288],user_defined_head:89,user_hdr:89,user_hdr_len:89,user_id:[224,225],user_manu:235,user_pkthdr_len:89,usernam:[10,48,59,269],uses:[2,4,6,7,8,12,14,20,21,22,23,24,30,32,55,65,66,67,68,69,70,71,72,73,74,75,76,77,78,86,87,93,97,100,101,128,130,131,132,133,134,136,140,151,152,179,181,186,187,205,206,207,208,210,211,214,216,220,224,225,231,233,236,238,239,251,252,253,256,258,261,268,269,271,275,277,278,279,282,285,288],using:[1,2,4,6,7,8,11,12,19,20,21,24,26,27,28,29,31,33,36,37,43,44,57,58,59,60,61,63,66,76,80,81,82,83,84,86,87,89,91,92,94,95,96,97,98,99,100,101,128,129,134,140,143,145,150,151,152,160,179,181,186,187,189,190,192,194,199,208,209,211,214,222,223,225,227,228,230,231,235,236,238,239,241,242,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,36,57,58,59,60,80,81,82,83],usu:95,usual:[24,89,90,101,134,203,205],utc:[68,100,267],utctim:100,utf:29,util:[7,11,20,21,31,92,101,130,151,152,188,190,205,225,236,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:[27,29,251,253,255],uuid128_is_complet:[27,29],uuid16:[27,28,29,251,274,276],uuid16_is_complet:[27,29],uuid32:[27,29],uuid32_is_complet:[27,29],uuid:[27,28,29,30,32,66,251,253,255,274,276,277],uvp:100,v10:282,v14:260,v25:260,va_arg:208,va_list:[226,229],val:[23,24,39,50,57,58,59,61,93,129,183,186,190,200,205,223,224,225,236,254,255,258,264,275,277],valid:[20,39,50,53,57,58,59,61,66,72,89,128,135,140,150,152,169,176,177,179,187,190,206,251,267,275,276],valu:[1,4,7,12,20,23,24,27,28,29,30,37,39,42,46,50,53,57,58,59,61,62,64,65,66,68,71,72,75,80,81,82,85,89,90,93,98,99,100,128,129,134,174,175,179,182,186,187,190,191,192,193,194,199,205,207,209,211,214,222,223,236,238,239,241,247,250,251,252,253,254,255,265,269,270,274,275,276,278,279,281,282,284,289],valuabl:269,value1:[50,225],value2:[50,225],valuen:225,vanilla:151,vari:[9,89,96,128],variabl:[1,4,11,24,34,37,50,59,61,62,65,89,90,99,129,130,173,199,205,206,207,208,211,219,222,226,229,235,243,249,251,264,269,270,277,278,279,282],variant:[22,95,186],variat:12,varieti:[4,252],variou:[23,24,61,89,128,132,134,181,252,257,264],vdd:276,vector:278,vendor:269,ver:[1,7,55,197,198,235,247,256,268,269,270,271,275,276],ver_len:198,ver_str:198,verb:62,verbos:[1,7,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,256,268,275],veri:[1,9,31,55,89,99,101,128,179,207,241,244,245,253,258,259,269,276,277,289],verif:22,verifi:[22,57,59,80,82,128,179,181,208,222,239,243,259,260,261,263,264,267,276,277],versa:[8,222],version:[1,2,4,6,7,10,11,12,21,22,34,37,39,41,43,47,55,56,60,79,83,84,130,140,179,195,197,198,205,222,225,235,236,239,241,242,247,255,256,258,259,260,261,262,263,264,268,272,275,276,278,282,285,288,289,290],via:[8,20,26,42,55,89,90,128,130,134,152,154,155,156,161,164,173,174,176,179,180,181,187,211,214,222,223,225,239,247,248,249,251,259,261,264,269,275,276,278,279,281,284],vice:[8,222],vid:260,view:[1,7,10,12,30,50,62,66,209,213,214,222,223,225,242,269,276,281,290],vim:59,vin:278,violat:20,viper:11,virtual:[66,183,186],virtualbox:256,visibl:[2,28],visit:[39,57,58,59],visual:[5,13,242,290],visualstudio:12,vol:22,volatil:260,voltag:[134,136,181,191,260,276],volum:[29,151],vscode:12,vtref:[259,261,264,276],vvp:100,wai:[2,3,9,21,30,31,59,61,84,87,92,99,100,130,152,186,187,188,205,222,224,244,269,270,271,275,276],wait:[84,85,86,87,89,91,92,98,99,136,182,187,190,225,238,243,262,264,274,275,276,284],waitin:91,wake:[85,89,92,98,99,182,211,243],wakeup:[99,211],walk:[89,99,146,150,179,205,276],wall:6,wallclock:[84,100],wanda:81,want:[1,3,11,18,50,57,58,59,60,61,80,83,84,85,89,90,91,92,97,98,99,128,129,130,150,152,169,186,205,206,207,210,223,234,236,240,241,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,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,224,251,259,275],warranti:[4,241,242,256,275,276,282,289,290],watch:246,watchdog:[92,97,191],watchpoint:[256,260],wdog:67,wear:246,wear_level_test:267,wearabl:9,web:[235,244],webfreak:12,websit:244,welcom:[8,134,245,268,275,278],well:[8,22,40,55,89,90,96,98,128,129,134,195,226,234,250,264,275,276],were:[29,73,89,128,181,222,270,274,275],werror:[6,50],wes:264,west:100,wfi:260,wget:[57,59,80,82],what:[7,8,20,41,55,96,98,135,140,173,174,179,207,208,222,225,237,243,249,252,253,254,255,267,270,274,275,276],whatev:[23,98,268],wheel:[8,235],when:[1,2,6,7,8,10,12,14,20,22,23,24,26,29,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,66,72,81,84,85,86,87,88,89,90,91,92,93,94,96,97,98,99,100,128,129,130,131,134,140,141,142,145,151,152,154,155,156,160,161,162,164,169,171,173,174,179,186,187,190,192,193,195,199,202,206,207,208,210,211,212,214,217,220,222,223,224,225,229,231,233,236,238,239,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:[21,26,90,134,179,199,210,251,253,282],where:[8,9,10,11,22,29,31,35,37,50,55,59,60,61,83,89,90,93,95,96,99,128,129,130,140,141,142,145,148,150,179,186,189,190,193,198,199,205,222,224,225,236,243,253,254,255,258,259,264,268,275,276,278,285,288],wherea:[89,270],whether:[10,12,22,84,87,90,100,128,140,155,187,190,191,207,208,209,211,212,213,214,223,225,233,249,251,253,267,278,280,281,282],which:[1,2,4,8,10,11,14,19,20,21,30,32,34,39,55,57,58,59,61,62,66,80,81,82,84,85,86,89,90,92,93,96,97,98,99,100,101,128,129,134,135,137,140,150,151,152,179,182,183,186,187,190,192,195,199,206,208,222,223,224,226,229,232,233,235,239,241,243,249,250,251,252,253,254,255,256,264,267,268,269,270,275,276,286,289],white:[22,27],whitelist:27,who:10,whole:135,whose:[61,62,179,211],why:[10,243],wide:[21,222],wifi:[7,268],wifi_connect:268,wifi_init:268,wifi_request_scan:268,wikipedia:[187,190],winc1500_wifi:268,window:[5,6,7,9,12,27,56,66,78,79,93,130,239,241,247,256,258,259,260,261,262,263,264,268,278,285,288,289],winusb:[260,262,288],wipe:144,wire:[8,187,190,264,275,276,288],wireless:21,wish:[6,10,173,174,187,243,269,287],withdraw:10,within:[1,12,20,31,41,55,89,93,94,96,128,134,140,145,148,150,173,174,179,181,186,197,199,205,208,209,210,214,223,231,243,252,262,267,269,275],without:[6,10,22,24,28,30,90,128,152,161,173,174,179,180,205,214,221,222,223,225,239,256,267,275,276,280],wno:6,won:[8,222,276],wonder:276,word:[6,55,89,92,98,128,179,190,241,242,251,256,269,282,289,290],word_siz:190,work:[2,4,8,10,11,22,24,55,61,62,85,89,91,92,93,95,96,98,99,128,130,134,135,160,181,223,235,236,240,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:10,workspac:[1,2,11,39,57,58,59,60,80,82,83],workspaceroot:12,world:[12,21,193,249,254,255,257,271,292],worri:92,worth:[1,94,275],would:[5,12,58,59,81,82,84,89,92,98,128,130,137,140,181,186,187,190,202,220,222,223,231,243,246,262,264,267,269,270,275,276,284,288],wrap:[100,223,258],wrapper:87,write:[1,9,14,20,28,61,64,65,80,81,82,94,128,129,130,134,135,136,140,141,142,146,151,152,157,158,168,170,172,173,174,181,184,186,187,193,195,197,200,201,202,203,205,218,223,229,238,243,245,250,252,253,264,266,275,276,277,284],write_cmd_rx:[76,236],write_cmd_tx:[76,236],write_config:[157,170],write_id:172,write_req_rx:[76,236],write_req_tx:[76,236],write_rsp_rx:[76,236],write_rsp_tx:[76,236],written:[11,20,23,59,82,92,128,140,141,142,145,150,156,157,160,163,169,170,171,173,174,179,187,190,251,253,258,270],wrong:[42,276],wsl:[12,59],www:[101,235,241,242,247,256,275,276,282,288,289,290],x86:[4,12],x86_64:[241,242,256,282,289,290],xml:[7,88,129],xpf:4,xpsr:[256,260,262],xtal_32768:93,xtal_32768_synth:24,xxx:[6,93,99,135],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:181,xzf:[57,59,60,82,83],yai:275,yaml:11,year:31,yes:[22,264],yesno:27,yet:[7,92,96,239,246,269,270,276],yield:92,yml:[1,6,7,41,43,50,52,53,55,61,94,95,101,129,130,135,136,152,173,180,205,207,214,222,223,224,225,235,236,238,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,18,19,30,33,34,35,39,41,43,45,46,47,50,51,52,53,54,55,57,58,59,60,61,63,64,66,68,76,80,81,82,83,84,92,93,94,95,96,101,128,129,130,131,132,134,137,138,140,141,142,146,155,160,161,163,169,171,173,174,180,181,183,186,187,189,199,202,205,206,207,209,210,211,214,215,216,219,220,221,222,223,224,225,231,234,236,238,239,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,276,277,278,279,280,281,282,284,285,286,287,288,289,290,292],your:[1,3,4,6,8,10,19,30,39,50,52,55,56,58,59,60,61,70,71,79,81,82,83,84,92,93,94,95,96,97,99,131,132,133,134,135,136,138,140,151,173,181,205,207,214,220,222,224,225,231,238,239,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,30,92,93,248,275,292],ype:[254,255],yym:6,zadig:[260,262,288],zero:[12,24,84,89,90,93,99,100,144,148,150,157,169,170,175,182,186,187,190,191,192,193,199,215,217,218,219,225,243,253,254,255,257,264,267,268,269,282,292],zip:[4,259,276],zone:100},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","Contributing to Newt or Newtmgr Tools","Developing Mynewt Applications with Visual Studio Code","Appendix","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","SEGGER RTT Console","SEGGER SystemView","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":[152,181],"default":[243,258,280],"function":[93,100,101,137,140,195,199,206,208,210,211,225,231,243,251,253,277,280],"import":235,"new":[7,44,94,95,179,183,250,280,282,285,286,288],"public":23,"return":[20,136,138,139,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,159,160,161,163,164,165,166,167,168,169,170,171,172,176,177,178,196,197,198,200,201,202,203,204,215,216,217,218,219,220,221,226,227,228,229,230,232,233],"switch":[101,243],"try":[244,267],Adding:[58,81,223,269,276,277,280,282],For:4,The:[151,258],Use:[2,236,238,247,258,275,282,285,288],Used:206,Uses:205,Using:[8,57,80,89,130,133,188,278,282,288],acceleromet:280,access:[247,251,271],adafruit:10,adc:276,add:[66,93,254,255,274,275,276,277,282],addit:[269,276],address:[19,23,30,254,255],administr:10,advertis:[27,29,30,249,254,255],air:[239,273,274,275],all:238,ambigu:224,analog:276,apach:[9,31,92],api:[27,28,30,84,85,86,87,88,89,90,91,97,98,99,100,129,130,151,152,173,180,182,183,184,186,187,189,190,191,192,193,194,205,206,210,211,282],app:[9,30,61,222,242,247,250,264,282,284,290],app_get_light:277,app_set_light:277,appendix:[13,93],applic:[7,12,32,92,205,206,207,222,235,236,238,243,246,247,254,255,256,258,259,260,261,262,263,264,265,268,276,277,278,279,280,282,285,288],apt:[57,80],architectur:94,arduino:[8,256,259,268],area:[173,179,224],argument:[138,139,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,159,160,161,163,164,165,166,168,169,170,171,172,176,177,196,197,198,200,201,202,203,204,215,216,217,218,219,221,226,227,228,229,230,232,233],arm:4,artifact:61,assert:267,assign:224,associ:12,att:[14,20],attach:247,attribut:[30,253],autocomplet:36,avail:[27,28,39,43,50,257,269,284,287],bare:246,baselibc:101,bash:36,basic:92,beacon:[254,255],bearer:31,begin:[30,249],being:251,belong:30,between:268,binari:[57,59,80,82],bit:6,ble:[21,246,248,250,254,255,276,277],blehci:247,bleprph_gap_ev:252,bleprph_oic:277,blink:235,blink_rigado:48,blinki:[7,235,240,256,257,258,259,260,261,262,263],block:179,bluetooth:[21,31,245,247,274],bluez:247,bno055:278,bno055_log:208,bno055_stat:208,board:[96,207,256,259,260,261,262,263,264,268,276,277,278,279,285,288],bone:246,boot:[128,222],bootload:[128,247,256,259,260,261,262,263,264,268,278,282,285,288],branch:[58,81],brew:6,bsp:[53,93,96,182,224],btmgmt:247,btmon:247,btshell:[27,28,30],buffer:140,bug:10,build:[7,9,12,34,55,61,235,236,240,243,246,247,256,258,259,260,261,262,263,264,268,276,277,278,279,280,282,285,286,288],cach:179,call:280,callback:252,callout:[84,238],can:10,cannot:280,categori:292,chang:[33,63,280],channel:27,characterist:[30,248,251],check:[57,58,59,80,81,82,93,97,128,211],choos:267,circular:140,clean:35,clear:263,cli:[129,275],client:[14,16],clock:24,close:264,code:[10,12,20,93,94,167,223,265,267],collect:179,command:[12,27,28,39,43,50,62,64,66,132,208,213,214,236,247,275,286],committ:10,commun:[8,236,258],compil:94,complet:[36,214],compon:[21,269],comput:[57,80,268,278,282],concept:[1,222],conclus:[246,254,255,276],condit:225,config:[65,129],configur:[1,12,23,24,27,28,30,129,151,205,206,207,208,211,224,225,235,236,254,255,258,280],conflict:225,congratul:267,conn:66,connect:[27,30,236,239,241,247,256,258,259,260,261,262,263,264,268,276,277,278,279,282,285,286,288,289],consider:243,consol:[130,214,223,241,258,268,278,282,289],contain:2,content:[33,63],context:243,contribut:11,control:[24,247,254,255,277,278,279,284],copi:[93,277],core:[20,92,96],cpu:[86,94,96],crash:67,creat:[7,37,89,93,94,183,207,235,236,239,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:92,cross:4,crystal:24,current:222,custom:[97,131,236],data:[29,100,137,140,152,173,179,187,195,199,206,208,210,211,214,231,249,264,277,278,279,280,281,282],datetim:68,ddress:23,debian:[57,80],debug:[12,38,61,93],debugg:[4,12],declar:223,decod:199,defin:[12,93,208,223,237],definit:[185,224,225],delet:[66,277],depend:[7,61,93,96,135,136,180,181,235,236,258,270,277,282],descript:[34,35,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,65,66,67,68,69,70,71,72,73,74,75,76,77,84,85,86,87,88,90,91,96,97,98,99,100,101,130,134,137,140,151,152,173,181,182,184,185,186,187,189,190,191,192,193,194,195,199,214,222,231,278],descriptor:[30,248,253,269],design:[134,181],detail:223,detect:179,determin:251,develop:[12,261,282],devic:[2,23,27,30,129,206,207,208,239,247,277,278,279,280,284],direct:30,directori:[61,179],disabl:27,discov:30,discoveri:[27,235,240,260],disk:179,disk_op:152,displai:30,docker:2,document:[10,33,63],doe:269,download:[11,57,61,80,93,235,240,264,276],driver:[134,206,208,275,276,280],duplic:224,echo:69,eddyston:254,edit:10,editor:10,elua:137,empti:[254,255],emul:278,enabl:[2,27,36,214,222,223,236,258,268,277,278,279,281,282],encod:199,endif:[207,208],energi:245,enhanc:173,enter:246,environ:11,equip:243,eras:259,error:224,establish:[30,247,268],etap:276,event:[26,87,238,252,258],everyth:[2,264,276],exampl:[8,20,21,26,34,35,37,38,39,43,44,45,46,47,48,50,51,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77,87,92,129,134,135,136,138,139,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,159,160,161,163,164,166,168,169,170,171,172,176,177,181,185,193,197,198,200,201,202,203,204,215,217,218,220,221,224,225,226,227,228,230,231,232,233,238],execut:[6,235,240,241,242,259,260,261,263,264,276,286,289,290],exist:[236,258,269,278],explor:7,express:224,extend:[27,282],extens:[2,12],extern:[235,256,268],faq:10,fat:151,fcb:140,fcb_append:141,fcb_append_finish:142,fcb_append_to_scratch:143,fcb_clear:144,fcb_getnext:145,fcb_init:146,fcb_is_empti:147,fcb_offset_last_n:148,fcb_rotat:149,fcb_walk:150,featur:[7,10,21,22,28,31,92],fetch:[7,256,268],field:29,file:[93,135,136,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,223,228,270,277,280,282],filesystem:[152,173],fill:93,find:269,first:[7,9],flag:[34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77],flash:[93,128,135,140,173,179,184,224,259,263],format:[128,179],framework:[133,208,209,236,281],from:[57,58,59,80,81,82,130,277,279,280],fs_close:153,fs_closedir:154,fs_dirent_is_dir:155,fs_dirent_nam:156,fs_filelen:157,fs_getpo:158,fs_mkdir:159,fs_op:162,fs_open:160,fs_opendir:161,fs_read:163,fs_readdir:164,fs_regist:165,fs_renam:166,fs_seek:168,fs_unlink:169,fs_write:170,fsutil_read_fil:171,fsutil_write_fil:172,ft232h:8,full:130,futur:173,gap:[15,27,252],garbag:179,gatt:[16,17,28,274],gcc:6,gdb:6,gener:[22,30,134,181,225,238],get:[3,57,80,208],git:[10,59],global:[34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77],gpio:186,guarante:252,guid:[21,55,78,234],hal:[96,183,188,275],hal_flash_int:185,hal_i2c:187,handler:[129,205,214],hardcod:23,hardwar:[23,181,235,241,242,264,276,278,289,290],have:10,hci:[20,247],header:[14,15,16,17,19,20,89,135,136,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,180,223,277,280],heading3:244,heading4:244,heap:88,hello:[235,256,259,260,261,262,263],help:[39,214],high:128,hold:223,homebrew:[58,81],host:[14,15,16,17,18,19,20,254,255],how:[10,101,225,237,238,265,269,277,280],i2c:187,ibeacon:255,ident:19,identifi:269,ignor:224,imag:[10,37,46,71,128,195,222,235,236,239,240,247,259,260,261,262,263,264,268,276,277,278,279,280,282,285,288],imgmgr_module_init:196,imgr_ver_pars:197,imgr_ver_str:198,implement:[94,134,205,208,223],includ:[30,208,223,253],indefinit:[254,255],info:40,inform:214,initi:[30,135,136,173,206,208,223,225,243,280],inod:179,input:[130,214],instal:[2,4,5,6,11,12,36,41,56,57,58,59,60,79,80,81,82,83,235,264,276],instead:282,integr:128,interfac:[180,183,206],intern:[173,179],interrupt:238,introduct:[9,14,15,16,17,18,19,20,31,55,93,238,248,267],invalid:224,invok:132,issu:10,join:264,json:199,json_encode_object_entri:200,json_encode_object_finish:201,json_encode_object_kei:202,json_encode_object_start:203,json_read_object:204,kei:[22,27],kernel:92,kit:261,l2cap:[20,27],laptop:10,latest:[57,58,59,80,81,82],launch:[242,290],layer:181,led:[235,240],legaci:27,level:[128,205,239],libc:6,librari:[188,235],like:10,limit:128,line:214,link:4,linker:93,linux:[2,4,6,8,11,57,60,80,83],lis2dh12_onb:207,list:[10,64,101,137,140,195,199,206,210,211,222,231,244,254,255,278,282],listen:[210,282],load:[42,236,247,256,259,260,261,262,263,268,277,278,279,280,282,285,288],loader:222,log:[72,205,208,239],look:211,lorawan:264,low:245,lua_init:138,lua_main:139,mac:[2,4,6,8,11,58,60,81,83],macro:100,main:[243,258,277,280,282],make:10,manag:[9,10,20,55,63,78,131,132,195,211,236,238,243],manual:[57,80],map:[93,128],markdown:244,master:[58,81],mbuf:89,mcu:[93,95,96],measur:173,memori:[90,263],merg:10,mesh:[21,31],messag:224,method:[23,57,80],mfg:43,mgmt:131,mingw:59,minim:130,miscellan:173,mkr1000:268,mmc:136,model:31,modif:240,modifi:[236,258,277,282],modul:[214,223],monitor:[247,279,281],more:[55,235],move:179,mpstat:73,mqueue:89,msy:89,msys2:59,multipl:[12,152,223,224,238],mutex:91,my_sensor_app:282,mynewt:[2,7,8,9,10,12,23,31,33,58,63,81,92,93,94,95,96,130,209,246,269,277,279,284],mynewt_v:[207,208],name:[30,214,223,225],nano:263,nativ:[5,6],need:[2,235,240,241,242,264,269,275,276,278,289,290],newt:[2,9,10,11,12,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,63,78,131,132,236],newtmgr:[11,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,83,132,214,223,236,239,285,286,288],newtron:173,next:[6,278],nff:[173,179],nffs_area_desc:174,nffs_config:175,nffs_detect:176,nffs_format:177,nffs_init:178,nimbl:[14,15,16,17,18,19,20,21,22,25,246,247,254,255],node:31,nordic:[8,285],normal:89,note:[55,100,137,138,139,141,142,143,144,145,146,147,148,149,150,153,156,158,159,160,161,165,166,168,170,171,174,175,196,197,198,216,223,226,229,276],notnul:224,nrf52:[261,276,278,285],nrf52_adc:276,nrf52dk:[8,10],nrf:23,object:[179,206,235,240,241,242,257,264,276,289,290],off:[207,278],oic:[133,212,277,279,281,284],oicmgr:236,olimex:[262,288],omgr_app_init:277,onboard:[207,282],onto:[256,268],open:[247,264],openocd:4,oper:[55,61,92,128,187,190,222],option:[236,259],orient:27,ota:264,other:[7,12,180,236,266,270],out:[267,269,270],output:[48,53,130],over:[214,239],overrid:[224,225],overview:[64,209,248,249,250,252,257,277,280,281,284,287],own:10,pack:2,packag:[1,7,57,61,80,93,96,130,180,205,206,209,224,225,236,246,256,267,268,275,277,278,282],packet:89,passiv:30,patch:10,peer:[20,30],perform:30,peripher:[248,250],persist:129,pin:240,pkg:[45,93],platform:[8,181],poll:[206,211],pool:[89,90],port:[8,93,94,95,96,264],preempt:243,prerequisit:[7,236,238,239,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:[33,63],previou:[60,83],primo:259,principl:[134,181],prioriti:[224,243],privaci:22,privat:271,pro:8,process:[214,258],produc:[6,61],profil:[236,239,286],project:[1,7,10,12,21,235,236,246,247,248,256,257,258,259,260,261,262,263,264,268,269,270,273,274,275,276,285,286,287,288],prompt:214,protect:263,protocol:[214,236,254,255],provis:31,pull:[2,10],put:238,qualiti:[273,274,275],queri:[285,288],question:10,queue:[87,238,258],ram:179,random:23,rate:206,rational:55,read:[30,206,208,251,280,282],reboot:280,rebuild:[11,282],reconfigur:207,recoveri:128,redbear:263,reduc:[10,239,265],refer:[14,15,16,17,19,20,225],referenc:225,regist:[97,180,208,211,214,223,278],registr:253,releas:[57,58,59,60,80,81,82,83],renam:179,repo:[269,270,272],repositori:[7,10,55,269,270,271,276],represent:179,request:10,requir:93,reset:[26,74,128],resign:46,resolut:270,resolv:[61,225,270],respond:26,restrict:224,retriev:[222,223],review:[243,251],round:240,rtt:[241,282,289],run:[7,12,47,75,241,242,256,258,286,289,290],runtim:[23,129],safeti:152,sampl:[32,278,280],saniti:97,satisfi:93,scale:267,scan:30,schedul:85,scratch:179,script:[2,93],section:223,secur:[20,22,27],segger:[4,241,242,289,290],select:2,semaphor:98,semiconductor:8,send:[30,247,264],sensor:[206,207,208,209,210,211,212,213,273,274,275,276,277,278,279,280,281,282,283,284],sensor_read:282,sensors_test:279,sequenc:222,serial:[8,214,247,258,268,285,288],server:17,servic:[30,248,253,274,276],set:[6,11,30,57,80,93,205,206,208,224,225,236,246,249,253,258,275,277,280,286],settl:24,setup:[3,8,25,241,242,268,289,290],shell:[208,213,214,258,282],shell_cmd_regist:215,shell_evq_set:216,shell_nlip_input_regist:217,shell_nlip_output:218,shell_regist:219,shell_register_app_cmd_handl:220,shell_register_default_modul:221,should:270,show:[30,66],sign:[128,235,259,260,261,262,263,264,268,276,285,288],signatur:251,sim:286,simul:7,singl:222,size:[10,48,265],skeleton:282,slinki:[285,286,287,288],slot:128,smart:[277,279,284],softwar:[10,242,290],some:10,sourc:[7,11,55,57,59,80,82,236,254,255,275,277],space:179,special:100,specif:[94,270],specifi:[180,225],spi:190,split:222,stack:[243,254,255],start:[3,247,268],startup:93,stat:[76,208,223],state:[128,129,222],statist:223,statu:128,step:[11,239,257,277,278,279,280,282,287],stm32f303:235,stm32f3:[235,240],stm32f4:260,storag:27,struct:[152,162,174,175],structur:[62,100,137,140,152,173,179,195,199,206,210,211,214,231],stub:130,studio:12,stuff:275,sub:66,submit:10,suit:267,summari:20,support:[2,31,61,96,152,181,209,212,235,236,277,278,281,282],swap:128,sync:[26,49,254,255],syscfg:[205,222,225,277],sysinit_app:225,system:[24,55,92,151,152,180,191,224,225],systemview:[242,290],tabl:223,talk:268,tap:[58,81],target:[1,23,50,61,93,235,236,237,240,241,242,246,247,250,256,258,259,260,261,262,263,264,268,276,278,282,285,286,288,289,290],task:[12,97,99,224,238,243,276],taskstat:77,tcp:268,templat:93,termin:278,test:[7,51,93,267,275],test_assert:226,test_cas:[227,228],test_case_decl:228,test_pass:229,test_suit:230,testutil:231,theori:[61,187,190,222],thingi:282,thread:152,through:223,tick:189,time:[24,86,100],timer:[192,238,258],togeth:238,tool:[4,11,33,55,59,82,291],toolchain:[4,6],topolog:31,transport:[214,236],tree:275,tu_init:232,tu_restart:233,tutori:[222,257,284,287,292],type:[206,208,211,278],uart:193,undefin:224,under:267,undirect:30,unifi:222,unlink:179,updat:11,upgrad:[52,57,58,80,81,222,239,272],upload:258,usag:[34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77,131,140],usb2:2,use:[10,57,80,89,92,269],user:[21,234],using:[10,55,285,288],val:53,valid:224,valu:[136,138,139,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,159,160,161,163,164,165,166,168,169,170,171,172,176,177,178,196,197,198,200,201,202,203,204,206,208,215,216,217,218,219,220,221,224,225,226,227,228,229,230,232,233,277,280],variabl:223,vector:128,verif:[128,280],verifi:280,version:[54,57,58,59,80,81,82,269,270],via:[268,274,282],view:[277,278,279,282],violat:224,virtualbox:2,visual:12,wait:[254,255],want:[10,235],watch:[235,240],watchdog:194,water:276,welcom:9,what:[10,235,240,269],wheel:240,where:270,why:[89,92,269],window:[2,4,8,11,59,60,82,83],work:12,workspac:12,world:[235,256,259,260,261,262,263],would:10,wrapper:2,write:[30,33,63,179,251,263,267],yml:[93,270],you:[2,235,240,275],your:[2,7,9,11,12,57,80,180,188,223,235,236,243,256,259,260,261,262,263,267,268,269,278,282,286],zero:256}})
\ 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","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","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":[186,1,1,"c.HALGpio::HAL_GPIO_MODE_IN"],"HALGpio::HAL_GPIO_MODE_NC":[186,1,1,"c.HALGpio::HAL_GPIO_MODE_NC"],"HALGpio::HAL_GPIO_MODE_OUT":[186,1,1,"c.HALGpio::HAL_GPIO_MODE_OUT"],"HALGpio::HAL_GPIO_PULL_DOWN":[186,1,1,"c.HALGpio::HAL_GPIO_PULL_DOWN"],"HALGpio::HAL_GPIO_PULL_NONE":[186,1,1,"c.HALGpio::HAL_GPIO_PULL_NONE"],"HALGpio::HAL_GPIO_PULL_UP":[186,1,1,"c.HALGpio::HAL_GPIO_PULL_UP"],"HALGpio::HAL_GPIO_TRIG_BOTH":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_BOTH"],"HALGpio::HAL_GPIO_TRIG_FALLING":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_FALLING"],"HALGpio::HAL_GPIO_TRIG_HIGH":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_HIGH"],"HALGpio::HAL_GPIO_TRIG_LOW":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_LOW"],"HALGpio::HAL_GPIO_TRIG_NONE":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_NONE"],"HALGpio::HAL_GPIO_TRIG_RISING":[186,1,1,"c.HALGpio::HAL_GPIO_TRIG_RISING"],"HALGpio::hal_gpio_irq_trigger":[186,2,1,"c.HALGpio::hal_gpio_irq_trigger"],"HALGpio::hal_gpio_mode_e":[186,2,1,"c.HALGpio::hal_gpio_mode_e"],"HALGpio::hal_gpio_pull":[186,2,1,"c.HALGpio::hal_gpio_pull"],"HALSystem::HAL_RESET_BROWNOUT":[191,1,1,"c.HALSystem::HAL_RESET_BROWNOUT"],"HALSystem::HAL_RESET_PIN":[191,1,1,"c.HALSystem::HAL_RESET_PIN"],"HALSystem::HAL_RESET_POR":[191,1,1,"c.HALSystem::HAL_RESET_POR"],"HALSystem::HAL_RESET_REQUESTED":[191,1,1,"c.HALSystem::HAL_RESET_REQUESTED"],"HALSystem::HAL_RESET_SOFT":[191,1,1,"c.HALSystem::HAL_RESET_SOFT"],"HALSystem::HAL_RESET_WATCHDOG":[191,1,1,"c.HALSystem::HAL_RESET_WATCHDOG"],"HALSystem::hal_reset_reason":[191,2,1,"c.HALSystem::hal_reset_reason"],"HALUart::HAL_UART_FLOW_CTL_NONE":[193,1,1,"c.HALUart::HAL_UART_FLOW_CTL_NONE"],"HALUart::HAL_UART_FLOW_CTL_RTS_CTS":[193,1,1,"c.HALUart::HAL_UART_FLOW_CTL_RTS_CTS"],"HALUart::HAL_UART_PARITY_EVEN":[193,1,1,"c.HALUart::HAL_UART_PARITY_EVEN"],"HALUart::HAL_UART_PARITY_NONE":[193,1,1,"c.HALUart::HAL_UART_PARITY_NONE"],"HALUart::HAL_UART_PARITY_ODD":[193,1,1,"c.HALUart::HAL_UART_PARITY_ODD"],"HALUart::hal_uart_flow_ctl":[193,2,1,"c.HALUart::hal_uart_flow_ctl"],"HALUart::hal_uart_parity":[193,2,1,"c.HALUart::hal_uart_parity"],"OSTask::OS_TASK_READY":[99,1,1,"c.OSTask::OS_TASK_READY"],"OSTask::OS_TASK_SLEEP":[99,1,1,"c.OSTask::OS_TASK_SLEEP"],"OSTask::os_task_state":[99,2,1,"c.OSTask::os_task_state"],"hal_i2c_master_data::address":[187,6,1,"c.hal_i2c_master_data::address"],"hal_i2c_master_data::buffer":[187,6,1,"c.hal_i2c_master_data::buffer"],"hal_spi_settings::baudrate":[190,6,1,"c.hal_spi_settings::baudrate"],"hal_spi_settings::data_mode":[190,6,1,"c.hal_spi_settings::data_mode"],"hal_spi_settings::data_order":[190,6,1,"c.hal_spi_settings::data_order"],"hal_spi_settings::word_size":[190,6,1,"c.hal_spi_settings::word_size"],"hal_timer::bsp_timer":[192,6,1,"c.hal_timer::bsp_timer"],"hal_timer::cb_arg":[192,6,1,"c.hal_timer::cb_arg"],"hal_timer::cb_func":[192,6,1,"c.hal_timer::cb_func"],"hal_timer::expiry":[192,6,1,"c.hal_timer::expiry"],"os_callout::c_ev":[84,6,1,"c.os_callout::c_ev"],"os_callout::c_evq":[84,6,1,"c.os_callout::c_evq"],"os_callout::c_ticks":[84,6,1,"c.os_callout::c_ticks"],"os_event::ev_arg":[87,6,1,"c.os_event::ev_arg"],"os_event::ev_cb":[87,6,1,"c.os_event::ev_cb"],"os_event::ev_queued":[87,6,1,"c.os_event::ev_queued"],"os_eventq::evq_owner":[87,6,1,"c.os_eventq::evq_owner"],"os_eventq::evq_task":[87,6,1,"c.os_eventq::evq_task"],"os_mbuf::om_data":[89,6,1,"c.os_mbuf::om_data"],"os_mbuf::om_flags":[89,6,1,"c.os_mbuf::om_flags"],"os_mbuf::om_len":[89,6,1,"c.os_mbuf::om_len"],"os_mbuf::om_omp":[89,6,1,"c.os_mbuf::om_omp"],"os_mbuf::om_pkthdr_len":[89,6,1,"c.os_mbuf::om_pkthdr_len"],"os_mbuf_pkthdr::omp_flags":[89,6,1,"c.os_mbuf_pkthdr::omp_flags"],"os_mbuf_pkthdr::omp_len":[89,6,1,"c.os_mbuf_pkthdr::omp_len"],"os_mbuf_pool::omp_databuf_len":[89,6,1,"c.os_mbuf_pool::omp_databuf_len"],"os_mbuf_pool::omp_pool":[89,6,1,"c.os_mbuf_pool::omp_pool"],"os_mempool::mp_block_size":[90,6,1,"c.os_mempool::mp_block_size"],"os_mempool::mp_flags":[90,6,1,"c.os_mempool::mp_flags"],"os_mempool::mp_membuf_addr":[90,6,1,"c.os_mempool::mp_membuf_addr"],"os_mempool::mp_min_free":[90,6,1,"c.os_mempool::mp_min_free"],"os_mempool::mp_num_blocks":[90,6,1,"c.os_mempool::mp_num_blocks"],"os_mempool::mp_num_free":[90,6,1,"c.os_mempool::mp_num_free"],"os_mempool::name":[90,6,1,"c.os_mempool::name"],"os_mempool_info::omi_block_size":[90,6,1,"c.os_mempool_info::omi_block_size"],"os_mempool_info::omi_min_free":[90,6,1,"c.os_mempool_info::omi_min_free"],"os_mempool_info::omi_num_blocks":[90,6,1,"c.os_mempool_info::omi_num_blocks"],"os_mempool_info::omi_num_free":[90,6,1,"c.os_mempool_info::omi_num_free"],"os_mqueue::mq_ev":[89,6,1,"c.os_mqueue::mq_ev"],"os_mutex::SLIST_HEAD":[91,3,1,"c.os_mutex::SLIST_HEAD"],"os_mutex::_pad":[91,6,1,"c.os_mutex::_pad"],"os_mutex::mu_level":[91,6,1,"c.os_mutex::mu_level"],"os_mutex::mu_owner":[91,6,1,"c.os_mutex::mu_owner"],"os_mutex::mu_prio":[91,6,1,"c.os_mutex::mu_prio"],"os_sanity_check::sc_arg":[97,6,1,"c.os_sanity_check::sc_arg"],"os_sanity_check::sc_checkin_itvl":[97,6,1,"c.os_sanity_check::sc_checkin_itvl"],"os_sanity_check::sc_checkin_last":[97,6,1,"c.os_sanity_check::sc_checkin_last"],"os_sanity_check::sc_func":[97,6,1,"c.os_sanity_check::sc_func"],"os_sem::sem_tokens":[98,6,1,"c.os_sem::sem_tokens"],"os_task::t_arg":[99,6,1,"c.os_task::t_arg"],"os_task::t_ctx_sw_cnt":[99,6,1,"c.os_task::t_ctx_sw_cnt"],"os_task::t_flags":[99,6,1,"c.os_task::t_flags"],"os_task::t_func":[99,6,1,"c.os_task::t_func"],"os_task::t_name":[99,6,1,"c.os_task::t_name"],"os_task::t_next_wakeup":[99,6,1,"c.os_task::t_next_wakeup"],"os_task::t_obj":[99,6,1,"c.os_task::t_obj"],"os_task::t_prio":[99,6,1,"c.os_task::t_prio"],"os_task::t_run_time":[99,6,1,"c.os_task::t_run_time"],"os_task::t_sanity_check":[99,6,1,"c.os_task::t_sanity_check"],"os_task::t_stackptr":[99,6,1,"c.os_task::t_stackptr"],"os_task::t_stacksize":[99,6,1,"c.os_task::t_stacksize"],"os_task::t_stacktop":[99,6,1,"c.os_task::t_stacktop"],"os_task::t_taskid":[99,6,1,"c.os_task::t_taskid"],"os_task_info::oti_cswcnt":[99,6,1,"c.os_task_info::oti_cswcnt"],"os_task_info::oti_last_checkin":[99,6,1,"c.os_task_info::oti_last_checkin"],"os_task_info::oti_next_checkin":[99,6,1,"c.os_task_info::oti_next_checkin"],"os_task_info::oti_prio":[99,6,1,"c.os_task_info::oti_prio"],"os_task_info::oti_runtime":[99,6,1,"c.os_task_info::oti_runtime"],"os_task_info::oti_state":[99,6,1,"c.os_task_info::oti_state"],"os_task_info::oti_stksize":[99,6,1,"c.os_task_info::oti_stksize"],"os_task_info::oti_stkusage":[99,6,1,"c.os_task_info::oti_stkusage"],"os_task_info::oti_taskid":[99,6,1,"c.os_task_info::oti_taskid"],"os_timezone::tz_dsttime":[100,6,1,"c.os_timezone::tz_dsttime"],"os_timezone::tz_minuteswest":[100,6,1,"c.os_timezone::tz_minuteswest"],CPUTIME_GEQ:[86,0,1,"c.CPUTIME_GEQ"],CPUTIME_GT:[86,0,1,"c.CPUTIME_GT"],CPUTIME_LEQ:[86,0,1,"c.CPUTIME_LEQ"],CPUTIME_LT:[86,0,1,"c.CPUTIME_LT"],HAL_BSP_MAX_ID_LEN:[182,0,1,"c.HAL_BSP_MAX_ID_LEN"],HAL_BSP_POWER_DEEP_SLEEP:[182,0,1,"c.HAL_BSP_POWER_DEEP_SLEEP"],HAL_BSP_POWER_OFF:[182,0,1,"c.HAL_BSP_POWER_OFF"],HAL_BSP_POWER_ON:[182,0,1,"c.HAL_BSP_POWER_ON"],HAL_BSP_POWER_PERUSER:[182,0,1,"c.HAL_BSP_POWER_PERUSER"],HAL_BSP_POWER_SLEEP:[182,0,1,"c.HAL_BSP_POWER_SLEEP"],HAL_BSP_POWER_WFI:[182,0,1,"c.HAL_BSP_POWER_WFI"],HAL_SPI_LSB_FIRST:[190,0,1,"c.HAL_SPI_LSB_FIRST"],HAL_SPI_MODE0:[190,0,1,"c.HAL_SPI_MODE0"],HAL_SPI_MODE1:[190,0,1,"c.HAL_SPI_MODE1"],HAL_SPI_MODE2:[190,0,1,"c.HAL_SPI_MODE2"],HAL_SPI_MODE3:[190,0,1,"c.HAL_SPI_MODE3"],HAL_SPI_MSB_FIRST:[190,0,1,"c.HAL_SPI_MSB_FIRST"],HAL_SPI_TYPE_MASTER:[190,0,1,"c.HAL_SPI_TYPE_MASTER"],HAL_SPI_TYPE_SLAVE:[190,0,1,"c.HAL_SPI_TYPE_SLAVE"],HAL_SPI_WORD_SIZE_8BIT:[190,0,1,"c.HAL_SPI_WORD_SIZE_8BIT"],HAL_SPI_WORD_SIZE_9BIT:[190,0,1,"c.HAL_SPI_WORD_SIZE_9BIT"],OS_CALLOUT_F_QUEUED:[84,0,1,"c.OS_CALLOUT_F_QUEUED"],OS_EVENT_QUEUED:[87,0,1,"c.OS_EVENT_QUEUED"],OS_MBUF_DATA:[89,0,1,"c.OS_MBUF_DATA"],OS_MBUF_F_MASK:[89,0,1,"c.OS_MBUF_F_MASK"],OS_MBUF_IS_PKTHDR:[89,0,1,"c.OS_MBUF_IS_PKTHDR"],OS_MBUF_LEADINGSPACE:[89,0,1,"c.OS_MBUF_LEADINGSPACE"],OS_MBUF_PKTHDR:[89,0,1,"c.OS_MBUF_PKTHDR"],OS_MBUF_PKTHDR_TO_MBUF:[89,0,1,"c.OS_MBUF_PKTHDR_TO_MBUF"],OS_MBUF_PKTLEN:[89,0,1,"c.OS_MBUF_PKTLEN"],OS_MBUF_TRAILINGSPACE:[89,0,1,"c.OS_MBUF_TRAILINGSPACE"],OS_MBUF_USRHDR:[89,0,1,"c.OS_MBUF_USRHDR"],OS_MBUF_USRHDR_LEN:[89,0,1,"c.OS_MBUF_USRHDR_LEN"],OS_MEMPOOL_BYTES:[90,0,1,"c.OS_MEMPOOL_BYTES"],OS_MEMPOOL_F_EXT:[90,0,1,"c.OS_MEMPOOL_F_EXT"],OS_MEMPOOL_INFO_NAME_LEN:[90,0,1,"c.OS_MEMPOOL_INFO_NAME_LEN"],OS_MEMPOOL_SIZE:[90,0,1,"c.OS_MEMPOOL_SIZE"],OS_SANITY_CHECK_SETFUNC:[97,0,1,"c.OS_SANITY_CHECK_SETFUNC"],OS_TASK_FLAG_EVQ_WAIT:[99,0,1,"c.OS_TASK_FLAG_EVQ_WAIT"],OS_TASK_FLAG_MUTEX_WAIT:[99,0,1,"c.OS_TASK_FLAG_MUTEX_WAIT"],OS_TASK_FLAG_NO_TIMEOUT:[99,0,1,"c.OS_TASK_FLAG_NO_TIMEOUT"],OS_TASK_FLAG_SEM_WAIT:[99,0,1,"c.OS_TASK_FLAG_SEM_WAIT"],OS_TASK_MAX_NAME_LEN:[99,0,1,"c.OS_TASK_MAX_NAME_LEN"],OS_TASK_PRI_HIGHEST:[99,0,1,"c.OS_TASK_PRI_HIGHEST"],OS_TASK_PRI_LOWEST:[99,0,1,"c.OS_TASK_PRI_LOWEST"],OS_TIMEOUT_NEVER:[100,0,1,"c.OS_TIMEOUT_NEVER"],OS_TIME_MAX:[100,0,1,"c.OS_TIME_MAX"],OS_TIME_TICK_GEQ:[100,0,1,"c.OS_TIME_TICK_GEQ"],OS_TIME_TICK_GT:[100,0,1,"c.OS_TIME_TICK_GT"],OS_TIME_TICK_LT:[100,0,1,"c.OS_TIME_TICK_LT"],_sbrk:[182,3,1,"c._sbrk"],completion_cb:[130,4,1,"c.completion_cb"],console_append_char_cb:[130,4,1,"c.console_append_char_cb"],console_blocking_mode:[130,3,1,"c.console_blocking_mode"],console_echo:[130,3,1,"c.console_echo"],console_handle_char:[130,3,1,"c.console_handle_char"],console_init:[130,3,1,"c.console_init"],console_input:[130,5,1,"c.console_input"],console_is_init:[130,3,1,"c.console_is_init"],console_is_midline:[130,6,1,"c.console_is_midline"],console_non_blocking_mode:[130,3,1,"c.console_non_blocking_mode"],console_out:[130,3,1,"c.console_out"],console_printf:[130,3,1,"c.console_printf"],console_read:[130,3,1,"c.console_read"],console_rx_cb:[130,4,1,"c.console_rx_cb"],console_set_completion_cb:[130,3,1,"c.console_set_completion_cb"],console_set_queues:[130,3,1,"c.console_set_queues"],console_write:[130,3,1,"c.console_write"],hal_bsp_core_dump:[182,3,1,"c.hal_bsp_core_dump"],hal_bsp_flash_dev:[182,3,1,"c.hal_bsp_flash_dev"],hal_bsp_get_nvic_priority:[182,3,1,"c.hal_bsp_get_nvic_priority"],hal_bsp_hw_id:[182,3,1,"c.hal_bsp_hw_id"],hal_bsp_init:[182,3,1,"c.hal_bsp_init"],hal_bsp_power_state:[182,3,1,"c.hal_bsp_power_state"],hal_debugger_connected:[191,3,1,"c.hal_debugger_connected"],hal_flash_align:[184,3,1,"c.hal_flash_align"],hal_flash_erase:[184,3,1,"c.hal_flash_erase"],hal_flash_erase_sector:[184,3,1,"c.hal_flash_erase_sector"],hal_flash_init:[184,3,1,"c.hal_flash_init"],hal_flash_ioctl:[184,3,1,"c.hal_flash_ioctl"],hal_flash_read:[184,3,1,"c.hal_flash_read"],hal_flash_write:[184,3,1,"c.hal_flash_write"],hal_gpio_init_in:[186,3,1,"c.hal_gpio_init_in"],hal_gpio_init_out:[186,3,1,"c.hal_gpio_init_out"],hal_gpio_irq_disable:[186,3,1,"c.hal_gpio_irq_disable"],hal_gpio_irq_enable:[186,3,1,"c.hal_gpio_irq_enable"],hal_gpio_irq_handler_t:[186,4,1,"c.hal_gpio_irq_handler_t"],hal_gpio_irq_init:[186,3,1,"c.hal_gpio_irq_init"],hal_gpio_irq_release:[186,3,1,"c.hal_gpio_irq_release"],hal_gpio_irq_trig_t:[186,4,1,"c.hal_gpio_irq_trig_t"],hal_gpio_mode_t:[186,4,1,"c.hal_gpio_mode_t"],hal_gpio_pull_t:[186,4,1,"c.hal_gpio_pull_t"],hal_gpio_read:[186,3,1,"c.hal_gpio_read"],hal_gpio_toggle:[186,3,1,"c.hal_gpio_toggle"],hal_gpio_write:[186,3,1,"c.hal_gpio_write"],hal_i2c_init:[187,3,1,"c.hal_i2c_init"],hal_i2c_master_data:[187,7,1,"_CPPv319hal_i2c_master_data"],hal_i2c_master_probe:[187,3,1,"c.hal_i2c_master_probe"],hal_i2c_master_read:[187,3,1,"c.hal_i2c_master_read"],hal_i2c_master_write:[187,3,1,"c.hal_i2c_master_write"],hal_reset_cause:[191,3,1,"c.hal_reset_cause"],hal_spi_abort:[190,3,1,"c.hal_spi_abort"],hal_spi_config:[190,3,1,"c.hal_spi_config"],hal_spi_data_mode_breakout:[190,3,1,"c.hal_spi_data_mode_breakout"],hal_spi_disable:[190,3,1,"c.hal_spi_disable"],hal_spi_enable:[190,3,1,"c.hal_spi_enable"],hal_spi_init:[190,3,1,"c.hal_spi_init"],hal_spi_set_txrx_cb:[190,3,1,"c.hal_spi_set_txrx_cb"],hal_spi_settings:[190,7,1,"_CPPv316hal_spi_settings"],hal_spi_slave_set_def_tx_val:[190,3,1,"c.hal_spi_slave_set_def_tx_val"],hal_spi_tx_val:[190,3,1,"c.hal_spi_tx_val"],hal_spi_txrx:[190,3,1,"c.hal_spi_txrx"],hal_spi_txrx_cb:[190,4,1,"c.hal_spi_txrx_cb"],hal_spi_txrx_noblock:[190,3,1,"c.hal_spi_txrx_noblock"],hal_system_clock_start:[191,3,1,"c.hal_system_clock_start"],hal_system_reset:[191,3,1,"c.hal_system_reset"],hal_system_restart:[191,3,1,"c.hal_system_restart"],hal_system_start:[191,3,1,"c.hal_system_start"],hal_timer:[192,7,1,"_CPPv39hal_timer"],hal_timer_cb:[192,4,1,"c.hal_timer_cb"],hal_timer_config:[192,3,1,"c.hal_timer_config"],hal_timer_deinit:[192,3,1,"c.hal_timer_deinit"],hal_timer_delay:[192,3,1,"c.hal_timer_delay"],hal_timer_get_resolution:[192,3,1,"c.hal_timer_get_resolution"],hal_timer_init:[192,3,1,"c.hal_timer_init"],hal_timer_read:[192,3,1,"c.hal_timer_read"],hal_timer_set_cb:[192,3,1,"c.hal_timer_set_cb"],hal_timer_start:[192,3,1,"c.hal_timer_start"],hal_timer_start_at:[192,3,1,"c.hal_timer_start_at"],hal_timer_stop:[192,3,1,"c.hal_timer_stop"],hal_uart_blocking_tx:[193,3,1,"c.hal_uart_blocking_tx"],hal_uart_close:[193,3,1,"c.hal_uart_close"],hal_uart_config:[193,3,1,"c.hal_uart_config"],hal_uart_init:[193,3,1,"c.hal_uart_init"],hal_uart_init_cbs:[193,3,1,"c.hal_uart_init_cbs"],hal_uart_rx_char:[193,4,1,"c.hal_uart_rx_char"],hal_uart_start_rx:[193,3,1,"c.hal_uart_start_rx"],hal_uart_start_tx:[193,3,1,"c.hal_uart_start_tx"],hal_uart_tx_char:[193,4,1,"c.hal_uart_tx_char"],hal_uart_tx_done:[193,4,1,"c.hal_uart_tx_done"],hal_watchdog_enable:[194,3,1,"c.hal_watchdog_enable"],hal_watchdog_init:[194,3,1,"c.hal_watchdog_init"],hal_watchdog_tickle:[194,3,1,"c.hal_watchdog_tickle"],os_callout:[84,7,1,"_CPPv310os_callout"],os_callout_init:[84,3,1,"c.os_callout_init"],os_callout_queued:[84,3,1,"c.os_callout_queued"],os_callout_remaining_ticks:[84,3,1,"c.os_callout_remaining_ticks"],os_callout_reset:[84,3,1,"c.os_callout_reset"],os_callout_stop:[84,3,1,"c.os_callout_stop"],os_cputime_delay_nsecs:[86,3,1,"c.os_cputime_delay_nsecs"],os_cputime_delay_ticks:[86,3,1,"c.os_cputime_delay_ticks"],os_cputime_delay_usecs:[86,3,1,"c.os_cputime_delay_usecs"],os_cputime_get32:[86,3,1,"c.os_cputime_get32"],os_cputime_init:[86,3,1,"c.os_cputime_init"],os_cputime_nsecs_to_ticks:[86,3,1,"c.os_cputime_nsecs_to_ticks"],os_cputime_ticks_to_nsecs:[86,3,1,"c.os_cputime_ticks_to_nsecs"],os_cputime_ticks_to_usecs:[86,3,1,"c.os_cputime_ticks_to_usecs"],os_cputime_timer_init:[86,3,1,"c.os_cputime_timer_init"],os_cputime_timer_relative:[86,3,1,"c.os_cputime_timer_relative"],os_cputime_timer_start:[86,3,1,"c.os_cputime_timer_start"],os_cputime_timer_stop:[86,3,1,"c.os_cputime_timer_stop"],os_cputime_usecs_to_ticks:[86,3,1,"c.os_cputime_usecs_to_ticks"],os_event:[87,7,1,"_CPPv38os_event"],os_event_fn:[87,4,1,"c.os_event_fn"],os_eventq:[87,7,1,"_CPPv39os_eventq"],os_eventq_dflt_get:[87,3,1,"c.os_eventq_dflt_get"],os_eventq_get:[87,3,1,"c.os_eventq_get"],os_eventq_get_no_wait:[87,3,1,"c.os_eventq_get_no_wait"],os_eventq_init:[87,3,1,"c.os_eventq_init"],os_eventq_inited:[87,3,1,"c.os_eventq_inited"],os_eventq_poll:[87,3,1,"c.os_eventq_poll"],os_eventq_put:[87,3,1,"c.os_eventq_put"],os_eventq_remove:[87,3,1,"c.os_eventq_remove"],os_eventq_run:[87,3,1,"c.os_eventq_run"],os_get_uptime_usec:[100,3,1,"c.os_get_uptime_usec"],os_gettimeofday:[100,3,1,"c.os_gettimeofday"],os_mbuf:[89,7,1,"_CPPv37os_mbuf"],os_mbuf_adj:[89,3,1,"c.os_mbuf_adj"],os_mbuf_append:[89,3,1,"c.os_mbuf_append"],os_mbuf_appendfrom:[89,3,1,"c.os_mbuf_appendfrom"],os_mbuf_cmpf:[89,3,1,"c.os_mbuf_cmpf"],os_mbuf_cmpm:[89,3,1,"c.os_mbuf_cmpm"],os_mbuf_concat:[89,3,1,"c.os_mbuf_concat"],os_mbuf_copydata:[89,3,1,"c.os_mbuf_copydata"],os_mbuf_copyinto:[89,3,1,"c.os_mbuf_copyinto"],os_mbuf_dup:[89,3,1,"c.os_mbuf_dup"],os_mbuf_extend:[89,3,1,"c.os_mbuf_extend"],os_mbuf_free:[89,3,1,"c.os_mbuf_free"],os_mbuf_free_chain:[89,3,1,"c.os_mbuf_free_chain"],os_mbuf_get:[89,3,1,"c.os_mbuf_get"],os_mbuf_get_pkthdr:[89,3,1,"c.os_mbuf_get_pkthdr"],os_mbuf_off:[89,3,1,"c.os_mbuf_off"],os_mbuf_pkthdr:[89,7,1,"_CPPv314os_mbuf_pkthdr"],os_mbuf_pool:[89,7,1,"_CPPv312os_mbuf_pool"],os_mbuf_pool_init:[89,3,1,"c.os_mbuf_pool_init"],os_mbuf_prepend:[89,3,1,"c.os_mbuf_prepend"],os_mbuf_prepend_pullup:[89,3,1,"c.os_mbuf_prepend_pullup"],os_mbuf_pullup:[89,3,1,"c.os_mbuf_pullup"],os_mbuf_trim_front:[89,3,1,"c.os_mbuf_trim_front"],os_memblock:[90,7,1,"_CPPv311os_memblock"],os_memblock_from:[90,3,1,"c.os_memblock_from"],os_memblock_get:[90,3,1,"c.os_memblock_get"],os_memblock_put:[90,3,1,"c.os_memblock_put"],os_memblock_put_from_cb:[90,3,1,"c.os_memblock_put_from_cb"],os_membuf_t:[90,4,1,"c.os_membuf_t"],os_mempool:[90,7,1,"_CPPv310os_mempool"],os_mempool_ext_init:[90,3,1,"c.os_mempool_ext_init"],os_mempool_info:[90,7,1,"_CPPv315os_mempool_info"],os_mempool_info_get_next:[90,3,1,"c.os_mempool_info_get_next"],os_mempool_init:[90,3,1,"c.os_mempool_init"],os_mempool_is_sane:[90,3,1,"c.os_mempool_is_sane"],os_mempool_put_fn:[90,4,1,"c.os_mempool_put_fn"],os_mqueue:[89,7,1,"_CPPv39os_mqueue"],os_mqueue_get:[89,3,1,"c.os_mqueue_get"],os_mqueue_init:[89,3,1,"c.os_mqueue_init"],os_mqueue_put:[89,3,1,"c.os_mqueue_put"],os_msys_count:[89,3,1,"c.os_msys_count"],os_msys_get:[89,3,1,"c.os_msys_get"],os_msys_get_pkthdr:[89,3,1,"c.os_msys_get_pkthdr"],os_msys_num_free:[89,3,1,"c.os_msys_num_free"],os_msys_register:[89,3,1,"c.os_msys_register"],os_msys_reset:[89,3,1,"c.os_msys_reset"],os_mutex:[91,7,1,"_CPPv38os_mutex"],os_mutex_init:[91,3,1,"c.os_mutex_init"],os_mutex_pend:[91,3,1,"c.os_mutex_pend"],os_mutex_release:[91,3,1,"c.os_mutex_release"],os_sanity_check:[97,7,1,"_CPPv315os_sanity_check"],os_sanity_check_func_t:[97,4,1,"c.os_sanity_check_func_t"],os_sanity_check_init:[97,3,1,"c.os_sanity_check_init"],os_sanity_check_register:[97,3,1,"c.os_sanity_check_register"],os_sanity_check_reset:[97,3,1,"c.os_sanity_check_reset"],os_sanity_task_checkin:[97,3,1,"c.os_sanity_task_checkin"],os_sched_get_current_task:[85,3,1,"c.os_sched_get_current_task"],os_sem:[98,7,1,"_CPPv36os_sem"],os_sem_get_count:[98,3,1,"c.os_sem_get_count"],os_sem_init:[98,3,1,"c.os_sem_init"],os_sem_pend:[98,3,1,"c.os_sem_pend"],os_sem_release:[98,3,1,"c.os_sem_release"],os_settimeofday:[100,3,1,"c.os_settimeofday"],os_stime_t:[100,4,1,"c.os_stime_t"],os_task:[99,7,1,"_CPPv37os_task"],os_task_count:[99,3,1,"c.os_task_count"],os_task_func_t:[99,4,1,"c.os_task_func_t"],os_task_info:[99,7,1,"_CPPv312os_task_info"],os_task_info_get_next:[99,3,1,"c.os_task_info_get_next"],os_task_init:[99,3,1,"c.os_task_init"],os_task_remove:[99,3,1,"c.os_task_remove"],os_task_state_t:[99,4,1,"c.os_task_state_t"],os_tick_idle:[189,3,1,"c.os_tick_idle"],os_tick_init:[189,3,1,"c.os_tick_init"],os_time_advance:[100,3,1,"c.os_time_advance"],os_time_delay:[100,3,1,"c.os_time_delay"],os_time_get:[100,3,1,"c.os_time_get"],os_time_ms_to_ticks:[100,3,1,"c.os_time_ms_to_ticks"],os_time_t:[100,4,1,"c.os_time_t"],os_timeradd:[100,0,1,"c.os_timeradd"],os_timersub:[100,0,1,"c.os_timersub"],os_timeval:[100,7,1,"_CPPv310os_timeval"],os_timezone:[100,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":[257,259,262,274],"008s":[257,259,262,274],"00z":265,"01t22":68,"02t22":265,"04x":20,"05t02":265,"093s":[257,259,262,274],"0b1000110":187,"0mb":11,"0ubuntu5":6,"0x0":[254,261,274],"0x00":[20,261,262,273],"0x0000":[245,273],"0x00000000":[179,222,224,225],"0x00000001":128,"0x00000002":[128,261],"0x00000004":128,"0x00000008":128,"0x00000010":128,"0x000000b8":254,"0x000000d8":[287,288],"0x000000dc":[244,280,287,288],"0x00004000":[222,224,225],"0x00008000":[93,222,224,225],"0x00009ef4":261,"0x0000fca6":254,"0x00023800":222,"0x0003f000":222,"0x0003f800":222,"0x0006":29,"0x0007d000":225,"0x000e0000":224,"0x0010":27,"0x01":[20,27,30,128,262],"0x0100":27,"0x01000000":260,"0x0101":20,"0x0102":20,"0x0103":20,"0x0104":20,"0x0105":20,"0x0106":20,"0x0107":20,"0x0108":20,"0x0109":20,"0x010a":20,"0x010b":20,"0x010c":20,"0x010d":20,"0x010e":20,"0x010f":20,"0x0110":20,"0x0111":20,"0x02":[20,27,30,128,262,273],"0x0201":20,"0x0202":20,"0x0203":20,"0x0204":20,"0x0205":20,"0x0206":20,"0x0207":20,"0x0208":20,"0x0209":20,"0x020a":20,"0x020b":20,"0x020c":20,"0x020d":20,"0x020e":20,"0x020f":20,"0x0210":20,"0x0211":20,"0x0212":20,"0x0213":20,"0x0214":20,"0x0215":20,"0x0216":20,"0x0217":20,"0x0218":20,"0x0219":20,"0x021a":20,"0x021b":20,"0x021c":20,"0x021d":20,"0x021e":20,"0x021f":20,"0x0220":20,"0x0221":20,"0x0222":20,"0x0223":20,"0x0224":20,"0x0225":20,"0x0226":20,"0x0227":20,"0x0228":20,"0x0229":20,"0x022a":20,"0x022c":20,"0x022d":20,"0x022e":20,"0x022f":20,"0x0230":20,"0x0232":20,"0x0234":20,"0x0235":20,"0x0236":20,"0x0237":20,"0x0238":20,"0x0239":20,"0x023a":20,"0x023b":20,"0x023c":20,"0x023d":20,"0x023e":20,"0x023f":20,"0x0240":20,"0x03":[20,30,128],"0x0300":[20,27],"0x0301":20,"0x0302":20,"0x04":[20,27],"0x0401":20,"0x0402":20,"0x0403":20,"0x0404":20,"0x0405":20,"0x0406":20,"0x0407":20,"0x0408":20,"0x0409":20,"0x040a":20,"0x040b":20,"0x040c":20,"0x040d":20,"0x040e":20,"0x0483":258,"0x05":20,"0x0501":20,"0x0502":20,"0x0503":20,"0x0504":20,"0x0505":20,"0x0506":20,"0x0507":20,"0x0508":20,"0x0509":20,"0x050a":20,"0x050b":20,"0x050c":20,"0x050d":20,"0x050e":20,"0x06":[20,245],"0x07":20,"0x08":[20,27,273],"0x08000000":260,"0x08000020":260,"0x08000250":260,"0x08021e90":258,"0x09":20,"0x0a":20,"0x0b":20,"0x0bc11477":254,"0x0c":20,"0x0c80":29,"0x0d":20,"0x0e":20,"0x0f":[20,276],"0x0f505235":128,"0x0fffffff":179,"0x1":[274,276,278,280],"0x10":[20,254,261,262,276],"0x100":20,"0x1000":[89,276,278],"0x10000":93,"0x10000000":179,"0x10010000":260,"0x10036413":260,"0x10076413":258,"0x1010":89,"0x103":20,"0x11":[20,23,253,262],"0x12":20,"0x13":20,"0x14":20,"0x1400":273,"0x15":[20,272,274,276],"0x16":20,"0x17":20,"0x18":20,"0x1800":30,"0x1808":30,"0x180a":30,"0x19":[20,207],"0x1a":20,"0x1b":20,"0x1c":[20,272,274],"0x1d":20,"0x1e":20,"0x1f":20,"0x2":[276,278],"0x20":[20,32,93,254,261,272,274],"0x200":[20,276,278],"0x2000":[276,278],"0x20000":274,"0x20000000":93,"0x20002290":258,"0x20002408":254,"0x20008000":254,"0x21":[20,32],"0x21000000":254,"0x22":[20,23,32,262],"0x23":[20,32],"0x24":20,"0x25":[20,273],"0x26":20,"0x27":20,"0x28":20,"0x2800":273,"0x29":20,"0x2a":20,"0x2ba01477":261,"0x2c":20,"0x2d":20,"0x2e":20,"0x2f":20,"0x30":[20,254,261],"0x300":20,"0x311":276,"0x32":[20,276],"0x33":23,"0x34":20,"0x35":20,"0x36":20,"0x37":20,"0x374b":258,"0x38":20,"0x39":20,"0x3a":20,"0x3a000":93,"0x3b":20,"0x3c":20,"0x3c00":273,"0x3d":20,"0x3e":20,"0x3f":20,"0x4":[276,278],"0x40":[20,254,261,272,274],"0x400":20,"0x4000":[276,278],"0x40007000":274,"0x4001e504":261,"0x4001e50c":261,"0x40number":187,"0x41000000":258,"0x42000":61,"0x44":[23,273],"0x4400":273,"0x46":187,"0x4f":[272,274],"0x50":[254,261],"0x500":20,"0x5000":273,"0x55":23,"0x60":[254,261],"0x61":[272,274],"0x66":23,"0x6c00":273,"0x70":[254,261],"0x72":[272,274],"0x7800":273,"0x7fefd260":128,"0x7fff8000":274,"0x7fffffff":179,"0x80":[272,274],"0x8000":61,"0x8000000":260,"0x80000000":179,"0x8079b62c":128,"0x81":187,"0x8801":273,"0x8c":187,"0x8d":187,"0x90":[272,274],"0x96f3b83c":128,"0x9c01":273,"0x9f":273,"0xa0":276,"0xa001":273,"0xa7":[272,274],"0xaf":[272,274],"0xb3":[272,274],"0xb401":273,"0xb5":[272,274],"0xbead":[272,274],"0xcc01":273,"0xd2":[272,274],"0xd801":273,"0xdead":[272,274],"0xe401":273,"0xe7":[272,274],"0xf":273,"0xf001":273,"0xf395c277":128,"0xfb":276,"0xfe":273,"0xff":[128,179],"0xffff":[29,190,273],"0xfffffffe":179,"0xffffffff":[91,98,128,179,206,254],"0xffffffff0xffffffff0xffffffff0xffffffff":261,"100kb":101,"1024kbyte":[258,260],"103kb":222,"10m":27,"110kb":222,"128kb":[9,224],"12c":[257,259,262,274],"12kb":225,"12mhz":9,"132425ssb":30,"132428ssb":30,"132433ssb":30,"132437ssb":30,"132441ssb":30,"14e":287,"14h":[280,287],"1503a0":266,"16kb":[9,224,225],"16kbram":53,"16mb":9,"190a192":273,"1_amd64":[57,60,80,83],"1c15":[272,274],"1d11":283,"1d13":[266,286],"1d560":222,"1eec4":222,"1kb":222,"1st":68,"1ubuntu1":6,"1wx":261,"200mhz":9,"2015q2":[4,12],"2022609336ssb":248,"2022687456ssb":248,"2022789012ssb":248,"2022851508ssb":248,"2042859320ssb":248,"2042937440ssb":248,"248m":6,"250m":238,"256kb":254,"262s":[257,259,262,274],"28a29":273,"28t22":265,"291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682":239,"296712s":260,"2a24":48,"2d5217f":81,"2m_interval_max":27,"2m_interval_min":27,"2m_latenc":27,"2m_max_conn_event_len":27,"2m_min_conn_event_len":27,"2m_scan_interv":27,"2m_scan_window":27,"2m_timeout":27,"2msym":21,"300v":[257,259,262,274],"32kb":[225,254],"32mb":9,"32wx":[254,261],"363s":[257,259,262,274],"3_1":36,"3mb":81,"4_9":4,"4fa7":[272,274],"500m":238,"512kb":93,"575c":222,"5kb":101,"6lowpan":21,"73d77f":71,"78e4d263eeb5af5635705b7cae026cc184f14aa6c6c59c6e80616035cd2efc8f":222,"7b3w9m4n2mg3sqmgw2q1b9p80000gn":55,"7kb":222,"8ab6433f8971b05c2a9c3341533e8ddb754e404":269,"948f118966f7989628f8f3be28840fd23a200fc219bb72acdfe9096f06c4b39b":222,"9cf8af22b1b573909a8290a90c066d4e190407e97680b7a32243960ec2bf3a7f":286,"9mb":58,"abstract":[9,20,95,96,134,151,162,165,173,180,206,208,209,238,273,290],"boolean":[199,225],"break":[20,89,136,233,249,273],"byte":[10,19,23,27,46,66,71,73,89,90,99,128,130,132,140,141,153,157,158,160,163,168,169,170,171,172,173,174,179,182,187,190,193,199,222,226,239,241,252,253,262],"case":[2,6,7,20,21,30,55,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,89,92,93,97,98,99,128,134,173,179,183,222,223,225,226,227,228,229,230,231,233,235,241,245,249,250,252,253,254,265,266,272,273,274,288],"catch":20,"char":[90,92,97,99,129,130,134,138,139,152,154,155,156,159,160,161,162,164,166,169,171,172,176,177,179,193,197,198,199,200,202,205,214,215,219,220,221,223,225,232,238,241,249,252,253,256,265,273,278,280],"class":[134,262],"const":[87,89,90,93,99,128,130,135,152,154,155,156,157,158,159,160,161,162,164,165,166,169,170,171,172,176,177,180,182,184,185,199,204,205,208,214,219,221,223,249,251,252,253,265,272,273,274],"default":[1,2,4,6,7,10,12,20,24,26,27,28,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,87,89,91,92,93,94,96,97,99,130,131,133,134,135,151,175,190,199,205,206,207,208,209,211,212,213,214,216,221,222,223,224,225,235,236,238,239,245,247,249,252,253,254,255,262,267,272,273,274,276,277,279,280,282,287],"enum":[99,129,186,191,193,199,206,272,273],"export":[1,11,23,60,61,80,82,83,87,130,134,136,205,206,207,208,209,236,275,276,278],"final":[8,55,89,91,93,128,142,179,181,201,222,240,241,244,247,272,274],"float":[64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,101,199,206,275],"function":[1,7,9,14,20,23,31,61,84,86,87,88,89,90,92,94,95,96,97,99,128,129,130,134,135,136,138,146,150,151,152,153,154,155,156,158,160,161,162,164,166,167,168,169,171,173,174,176,179,180,181,183,186,187,188,189,190,191,192,193,196,198,200,201,202,203,204,205,207,209,212,214,215,216,217,219,220,222,226,227,228,229,230,232,233,235,236,238,239,244,247,248,250,252,253,255,256,262,265,267,272,273,274,276,280,285,287,288,290],"goto":[97,159,204,208,217,218,272,273,274],"i\u00b2c":187,"import":[11,55,57,80,89,93,100,101,187,241,244,247,250,274],"int":[1,20,26,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,84,86,87,89,90,92,97,99,100,129,130,134,135,136,138,139,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,159,160,161,162,163,164,165,166,168,169,170,171,172,176,177,178,180,182,183,184,186,187,189,190,191,192,193,194,197,198,199,200,201,202,203,204,207,208,214,215,217,218,219,220,221,223,225,226,227,228,230,231,232,238,240,241,247,249,250,251,252,253,256,265,272,273,274,278,280],"long":[3,21,24,28,89,92,98,101,151,169,179,187,222,261,280],"new":[2,3,4,6,10,11,21,23,24,27,30,31,34,39,41,45,46,50,53,57,58,59,61,85,89,93,96,99,128,130,140,141,142,151,152,161,166,173,176,177,181,187,195,214,222,223,225,235,239,241,243,244,245,250,251,252,253,254,257,258,259,260,261,262,265,266,267,273,274,275,277,290],"null":[84,86,87,89,90,91,92,93,97,98,99,130,135,152,156,160,163,171,173,179,185,190,204,205,207,208,214,219,221,224,225,238,241,247,250,251,252,253,256,272,273,274,275,278,280],"public":[19,25,27,29,30,32,57,66,80,84,87,89,90,91,97,98,99,100,128,130,187,190,192,252,253],"return":[18,26,84,85,86,87,89,90,91,92,93,97,98,99,100,129,130,135,140,152,182,185,186,187,190,191,192,193,194,199,207,208,211,225,238,241,247,249,250,251,254,256,262,265,272,273,274,276,278,280,284],"short":[89,91,214,241],"static":[19,26,66,84,87,90,92,93,97,98,129,130,135,139,180,198,200,201,203,204,205,207,208,215,217,218,219,220,221,226,235,238,245,247,249,250,251,252,253,256,272,273,274,275,278,280],"switch":[10,12,20,58,71,77,81,85,92,93,99,128,181,195,214,236,244,245,249,250,272,273,274,280,287],"transient":250,"true":[8,12,86,90,97,100,204,222,226,239,265,274,283,286],"try":[2,20,21,23,89,152,179,187,235,240,244,245,248,254,255,256,257,258,259,261,266,268,274,276,280,282,287],"var":[50,55,65,66,97,166],"void":[20,26,84,85,86,87,89,90,92,97,99,100,129,130,134,135,136,138,150,152,153,157,159,160,162,163,166,168,169,170,171,172,178,180,182,183,184,186,187,189,190,191,192,193,194,196,198,199,205,207,208,210,215,216,217,219,220,221,225,226,227,228,230,231,232,233,238,241,247,249,250,251,252,253,256,272,273,274,275,278,280],"while":[4,6,7,8,21,23,26,49,55,61,89,90,92,93,97,99,101,130,136,138,152,154,155,156,161,164,179,193,199,204,208,222,225,226,231,236,238,241,252,253,256,263,265,272,273,274,278,280,287,288],AES:22,ANS:246,Adding:[56,79,290],And:[61,128,140,222,224,240,241,243,248,272,273,274],But:274,CTS:[193,245],FOR:4,For:[2,3,5,6,7,8,11,12,20,22,23,24,29,30,34,37,39,50,53,55,57,58,59,60,61,62,66,83,84,89,92,93,96,100,101,128,134,135,152,170,173,174,179,180,183,186,187,190,199,205,206,207,208,209,210,220,222,223,224,225,231,233,235,238,239,244,249,250,251,252,253,254,256,258,259,260,262,265,266,267,268,273,274,276,278,280,283,286,287,288,290],IDE:[5,12],IDs:128,Its:[94,100,101,235,268],NOT:[156,187,192,274],Not:[7,20,29,86,89,179,181,186,190,222,274],One:[6,20,92,101,179,222,235,247,266,273],PCs:8,QoS:[20,21],RTS:[193,245],Such:[179,252,253,268],TMS:254,That:[2,20,61,140,179,225,252,253,254,262,266,267,273,274],The:[1,2,3,4,5,6,7,8,10,11,12,14,15,16,17,18,19,20,21,22,23,24,26,27,29,30,31,33,34,37,43,45,46,47,50,55,57,58,59,61,63,64,66,70,71,72,73,75,76,77,78,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,128,129,130,131,132,133,134,135,136,140,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,172,173,174,175,176,177,179,180,181,182,183,184,185,186,187,189,190,191,192,193,194,195,197,198,199,205,206,207,208,209,210,211,212,213,214,215,217,218,219,220,222,223,224,225,226,229,231,233,234,235,236,238,239,240,241,242,243,244,245,247,249,250,251,252,253,254,255,257,258,259,260,261,262,263,265,266,267,268,272,273,274,275,276,277,278,279,280,282,283,284,285,286,287,288,290],Then:[10,33,63,128,140,179,222,235,245,265,273,274,287],There:[4,8,10,22,23,28,57,61,80,84,89,91,93,94,98,99,100,101,129,130,134,160,179,181,186,205,206,211,214,222,223,249,254,262,265,269,274,280,287,288],These:[5,20,27,50,61,89,93,94,96,98,128,129,134,179,187,206,209,210,211,214,224,236,243,247,251,252,253,254,255,260,267,268,275,276],Use:[1,7,8,11,27,28,50,57,58,59,62,71,80,81,82,93,132,140,142,222,235,249,252,253,254,257,262,266,267,274,275,277,285],Used:[93,190,193,227,228,230],Uses:[31,42,133,224],Using:[20,49,91,256,285,290],Was:262,Will:20,With:[9,20,21,30,89,92,96,128,222,224,240,241,244,273,287,288,290],Yes:[10,19,89,128,133,242],__arg:97,__asm:258,__builtin_offsetof:223,__etext:260,__ev:87,__f:97,__hdr:89,__itvl:97,__n:89,__om:89,__omp:89,__sc:97,__t1:[86,100],__t2:[86,100],__type:89,__wfi:258,_access:249,_adc:274,_addr:252,_addr_:[252,253],_app:252,_build:[33,63],_cfg:[207,208],_cli:[208,209,276],_cnt:140,_config:[206,207,208,278],_file:152,_gatt_ac:249,_imghdr_siz:93,_init:[206,207,208],_log:208,_name:225,_nrf52_adc_h_:274,_object:199,_ofb:[207,209,276],_onb:[207,209,280],_pad1:128,_pad2:128,_pad3:128,_pad:[91,128],_param:214,_rea:199,_reserv:206,_resource_t:275,_sbrk:182,_senseair_h_:273,_sensor:207,_set:252,_shell_init:[208,276],_stage:225,_stat:208,a600anj1:222,abbrevi:247,abc:265,abil:[6,22,31,55,89,241],abl:[2,89,93,134,135,236,242,248,252,253,254,267,273,274],abort:[49,190,215,219,224,225,226,265,278],about:[1,3,10,23,29,40,57,58,59,62,64,80,81,82,90,92,93,97,99,100,140,141,145,179,199,210,222,223,234,235,238,241,247,250,251,252,253,257,261,262,268,273,274],abov:[9,10,14,19,89,92,97,100,128,152,160,179,187,190,214,222,223,224,225,236,244,247,249,252,253,256,262,265,267,272,274],absent:[128,179],absolut:[89,192],abstrat:140,acc:276,accel:[276,280],accel_rev:276,acceleromet:[206,208,275,276,277,280],accept:[20,27,136,160,179,187,193,195,235,254,258,260,262,267],access:[15,20,21,27,59,61,64,70,80,81,82,86,88,89,91,92,93,98,134,135,136,140,152,160,167,169,173,180,181,187,195,205,206,208,209,222,225,231,238,244,251,254,265,273],access_:251,access_cb:[249,251,272],access_fla:160,access_flag:[160,162],accgyro:276,accommod:[24,89,96,128,179,252],accomplish:[9,10,55,173,179,249],accord:[93,128,231,232],accordingli:[24,93,99],account:[10,61,89,128],accur:260,achiev:[26,179,252,253],ack_rxd:262,acknowledg:262,acl:20,acquir:[26,91,98,179,187],acquisit:187,across:[30,31,55,61,62,134,179,181],act:[22,30,195,222],action:[9,27,62,235,241,247,251,262,274],activ:[12,16,17,21,47,71,93,99,190,195,222,235,239,247,262,283,286,287,288],actual:[2,7,34,77,89,93,99,128,156,163,171,179,183,194,222,224,226,234,241,244,252,253,254,267,268,269,273,274],ad_fil:152,adafruit:[8,274,276],adapt:[21,96,254,257,258,266,280],adapter_nsrst_delai:[254,258],adaptor:260,adc0:274,adc:[9,53,134],adc_0:274,adc_0_interrupt_prior:274,adc_0_oversampl:274,adc_0_resolut:274,adc_buf_read:274,adc_buf_releas:274,adc_buf_s:274,adc_buf_set:274,adc_chan_config:274,adc_config:274,adc_dev:274,adc_event_handler_set:274,adc_evq:274,adc_hw_impl:53,adc_init:274,adc_nrf52:274,adc_number_channel:274,adc_number_sampl:274,adc_read:274,adc_read_ev:274,adc_result:274,adc_result_mv:274,adc_sampl:274,adc_sns_str:274,adc_sns_typ:274,adc_sns_val:274,adc_stack:274,adc_stack_s:274,adc_stm32f4:134,adc_task:274,adc_task_handl:274,adc_task_prio:274,add:[1,2,4,6,7,11,12,27,37,39,50,55,57,58,59,61,62,80,87,89,92,96,98,100,101,130,131,140,152,181,187,207,208,215,223,225,235,236,238,239,240,241,244,245,248,254,255,256,263,265,266,267,276,277,278,279,281,283,284,285,286,290],added:[10,12,32,53,55,81,89,93,98,99,128,130,135,137,152,187,214,238,239,254,256,266,268,272,273,283,284,286,290],adding:[2,10,31,37,55,89,93,94,100,140,223,244,256,265,267,268,272,273,274],addit:[1,12,21,29,43,55,61,62,89,93,94,96,128,134,152,179,187,205,222,225,226,229,235,236,241,244,247,254,255,257,258,260,261,262,273,284],addition:62,addr:[27,30,135,199,204,245,252,253,276],addr_typ:[27,30],address:[20,21,22,25,27,29,31,32,55,66,89,90,92,128,134,135,136,151,179,184,187,190,199,206,208,222,239,245,249,262,266,280,287],aditihilbert:4,adjust:[20,89,93,238,240],admin:[4,245],adress:27,adsertis:27,adv:[21,27,30,31],adv_data:27,adv_field:[247,252],adv_param:[247,250,252,253],advanc:[59,168,179,287,288],advantag:250,advantang:247,adverb:62,adverti:[252,253],advertis:[15,20,21,24,26,31,32,66,239,246,248,250,272,274,275],advertise_128bit_uuid:275,advertise_16bit_uuid:275,advertising_interv:[27,29],advic:[94,95],advinterv:29,aes:[254,257,259,261,266,283,284,286],aesni:[283,284],af80:[272,274],affect:[128,168,173,174,180,205,222,244,263],aflag:[1,50,61],after:[4,8,11,22,26,30,41,50,55,57,58,61,80,81,86,89,90,94,99,100,128,129,134,138,142,146,152,173,179,187,190,193,208,222,224,229,235,236,239,241,242,245,247,249,250,251,254,255,266,267,276,280],again:[8,20,26,57,59,80,93,99,128,140,222,223,241,247,254,257,258,259,260,261,262,272,274,286],against:[22,89,92,100],agnost:152,agre:[273,274],agreement:[273,274],ah02mie2:273,ahead:100,aid:[61,208],aim:[20,135,152,246,290],ain0:274,ain1:274,air:[20,89,222,236,262,281,290],air_q:273,air_qual:[272,273,274],albeit:243,alert:246,algorithm:[21,85],align:[89,90,140,241],all201612161220:75,all:[1,2,3,6,7,8,9,10,12,14,15,16,17,18,20,21,22,24,26,27,28,29,30,31,35,40,41,43,49,50,51,52,53,55,61,66,72,75,89,91,92,93,94,96,97,99,100,128,129,130,134,140,144,150,152,159,160,163,165,166,169,171,173,175,177,179,180,181,183,190,199,205,206,207,208,209,210,211,212,214,219,222,223,224,225,229,231,234,235,236,240,242,244,245,246,247,248,249,250,251,252,253,256,258,260,262,263,265,267,268,269,270,272,273,274,276,278,280,283,286],alloc:[73,77,87,88,89,90,151,179,219,247,249],allow:[2,3,4,6,8,9,12,20,21,27,31,39,50,55,57,58,59,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,87,89,91,92,96,98,128,130,134,152,173,179,182,187,190,191,205,209,210,211,213,214,222,223,225,228,232,235,236,238,241,245,247,250,252,256,257,262,266,274,276,280,282],almost:[8,241],alon:232,along:[10,61,89,90,99,217,273],alongsid:[241,252],alphabet:[179,225],alreadi:[6,7,8,11,20,24,31,43,58,59,81,82,86,95,96,128,135,146,153,159,160,165,166,167,172,179,186,192,235,240,243,244,254,256,257,258,259,260,261,262,266,272,273,274,275,283,286,287,288],also:[1,3,5,6,7,8,11,12,21,23,24,27,34,37,40,55,57,58,59,60,61,66,80,83,89,90,92,93,96,98,99,100,128,129,130,131,134,135,140,152,173,179,190,193,195,205,206,207,208,210,212,214,222,223,224,225,235,236,238,241,244,247,250,251,255,256,262,263,265,266,267,268,272,273,274,276,277,278,279,280,283,284,286],alt:286,altern:[6,128,140,222,249],although:267,altogeth:[84,272],alwai:[8,61,93,100,128,156,158,160,161,168,170,179,183,243,249,252,253,260,265,267,268,273,290],ambigu:20,ambiti:244,amd64:[57,80],amend:[1,32,50,62,239,263,287,288],amg:276,among:[85,93,128,176,222],amongst:89,amount:[24,89,90,95,152,171,205,222,241,247],analog:[134,281],analyz:[12,288],android:[275,277,279,282],ani:[1,4,8,10,14,21,22,27,33,49,50,59,61,63,64,66,73,76,77,80,81,82,84,86,87,89,90,91,92,93,95,97,98,99,100,128,130,135,136,152,159,169,173,174,175,176,178,179,190,193,205,208,209,214,222,223,225,232,235,236,239,245,247,256,257,262,268,272,273,274,280,285,290],announc:[247,252,253],annoy:[249,269],anonym:27,anoth:[10,21,26,27,30,61,89,91,92,93,94,95,98,99,100,130,186,195,222,224,235,241,247,249,262,273,274,284,287,288],ans:[273,274],answer:92,anymor:[89,241],anyth:[1,8,23,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,222,235,240,244,252,253,255,268,273,274],apach:[1,2,6,7,10,11,12,21,32,33,37,38,39,43,44,50,51,53,55,57,58,59,61,62,63,80,81,82,84,93,128,130,133,134,152,183,222,223,225,235,242,244,245,246,248,252,254,255,256,257,258,259,260,261,262,265,266,267,268,273,274,275,276,277,280,282,283,284,285,286,287,288,290],apart:100,api:[1,16,17,18,19,20,21,53,55,61,92,96,134,135,162,181,185,208,209,214,223,253,258,275,279],app:[1,7,8,12,21,26,29,32,34,37,38,42,43,45,46,47,48,50,53,55,62,73,76,77,93,128,130,134,152,181,191,223,224,225,235,236,238,239,240,241,244,246,247,250,251,252,253,254,256,257,258,259,260,261,265,266,272,273,274,275,276,277,278,279,283,284,285,286,287,290],app_error:274,app_log_init:205,app_util_platform:274,appear:[27,29,96,187,241,249,251],append:[89,140,158,168,170,179,265],append_loc:[141,142],append_test:265,appl:[254,280,282,287,288],appli:[12,24,100,128,130,173,174,179,193,205,222,225,262,265],applic:[1,2,4,5,6,8,9,10,11,13,14,18,20,21,23,24,25,26,28,30,34,39,42,47,50,55,57,58,59,60,61,73,76,77,78,82,83,87,89,93,97,99,128,130,131,132,133,134,152,173,179,184,190,208,209,210,211,212,213,214,220,223,224,225,234,239,243,246,249,250,255,264,265,272,273,279,282,284,285,288,290],applicaton:1,applict:12,approach:[31,93,225],appropri:[62,89,93,96,99,132,134,179,187,190,225,235,240,244,247,250,252,253,255,273,274,279],approv:10,apps_air_qu:273,apps_bleprph:222,apps_blinki:[55,61],apps_my_sensor_app:280,apr:[257,259,262,274],apropo:[254,280,287,288],apt:[4,6,7,56,60,79,83,245],arbitrari:[128,235,245,254,257,258,259,260,261,262,266,274,276,283,284,286],arbitrarili:[128,179,253],arc4:254,arch:[61,93,96,231,257,258,259,260,261,262,280],arch_sim:[256,280],architectur:[57,80,85,90,93,95,96,100,128,134,151,181,186,241],archiv:[4,7,57,59,61,166,235,236,244,254,256,257,258,259,260,261,262,266,273,274,276,280,283,284,286],arduino:[12,241,255,264,267,272,273,290],arduino_101:53,arduino_blinki:[12,241,254],arduino_boot:[12,254],arduino_mkr1000:266,arduino_primo_nrf52:[53,257,273],arduino_zero:254,arduino_zero_debug:254,arduinowifi:266,area:[89,93,128,129,140,150,174,176,177,182,225],area_cnt:182,area_desc:[176,177],aren:101,arg:[12,86,89,90,92,97,99,134,150,184,186,190,192,193,205,208,217,226,238,241,249,250,272,273,274,280],argc:[92,99,129,138,139,176,177,197,214,215,219,220,221,225,232,238,241,252,253,256,265,273,278,280],argument:[11,12,20,45,50,55,62,84,87,89,90,97,99,100,130,167,183,186,187,190,192,199,205,208,210,214,220,241,247,250,251,252,253,257,259,267,268,280],argv:[99,129,138,139,176,177,197,214,215,219,220,221,225,232,238,241,252,253,256,265,273,278,280],arm:[5,6,7,12,84,93,101,254,260,280,286,287,288],around:[30,89,128,274,275,277],arrai:[23,87,139,140,150,173,174,176,177,190,199,200,201,203,204,214,219,225,240,241,247,251],arrang:[93,222],arriv:89,articl:269,artifact:[35,39,50,55,57,58,59,267],ascii:179,asf:[1,267,273,274],ask:[10,92,129,193,206,241,260,267,268,273],aspect:[27,89,128,241],assembl:[1,61,93,96,257,258,259,260,261,262,280],assert:[67,89,97,130,157,170,176,177,190,207,223,226,238,241,249,250,251,252,253,256,272,273,274,278,280],assign:[10,19,21,23,29,37,50,53,66,90,92,93,99,140,179,180,225,235,249,254,257,258,259,260,261,262,266,274,276,283,286],associ:[22,24,87,89,97,99,128,192,225,226,247,250],assum:[7,12,30,43,59,60,82,83,87,89,93,99,128,135,190,195,225,235,236,238,240,243,244,256,262,272,273,274,275,277,279,280,287,288],asynchron:193,at45db:135,at45db_default_config:135,at45db_dev:135,at45db_erase_sector:135,at45db_init:135,at45db_read:135,at45db_sector_info:135,at45db_writ:135,at45dbxxx:135,at91samd21g18:254,at91samd:254,ate_m:206,atmel:[2,254,266],atop:[134,181],att:[18,21,28,249],attach:[8,12,89,93,186,191,244,257,262,274,280,287,288],attempt:[20,23,27,89,90,91,99,128,163,171,176,177,178,179,187,225,249,250,251,262],attempt_stat:223,attent:3,attr:[28,30,204],attr_handl:[248,249,250,272,274],attribit:199,attribut:[14,16,17,20,21,28,50,53,62,66,90,94,96,199,204,225,246,249],auth:[27,269],authent:[20,22,30,128,248],author:[1,20,43,61,130,265,273,274],auto:[29,135],autocomplet:55,autoconf:55,autom:31,automat:[1,10,21,24,25,42,55,61,94,196,214,223,225,229,236,244,246,247,254,257,258,260,261,265,267,273,274,275,290],autoselect:254,avaial:262,avail:[1,2,3,4,7,9,20,21,23,24,29,30,31,32,47,57,58,59,62,64,73,80,81,82,87,89,90,91,97,98,101,128,130,132,134,140,152,163,173,193,195,206,214,222,225,231,234,236,252,256,262,268,274,279,287,288],avail_queu:130,avoid:[61,89,91,92,97,241,275],awai:[20,93,129,249,274],await:3,awar:[247,252,253],b0_0:260,b0_1:260,b1_0:260,b1_1:260,b5729002b340:[272,274],b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2:239,bab:205,back:[8,58,64,69,80,81,82,89,90,100,101,128,129,130,187,212,236,251,260,261,273,279,283,284,286],backend:129,backward:[21,128,130,179,214],bad:[128,222,268],badli:92,band:[21,22,27],bang:273,bank:260,bar:[12,129,290],bare:[84,246,252,253,290],base64:[7,130,262,280],base:[1,2,4,6,7,12,20,21,24,31,34,39,55,57,58,59,61,89,101,132,134,136,168,181,182,187,224,241,245,251,254,257,258,260,261,266,273,275,276,280],baselibc:[7,48,93],baselin:133,bash:[2,12,55,59,93],bash_complet:36,bash_profil:[11,58,60,81,83],bashrc:55,basi:[9,19,22,99,268,273,274],basic:[1,14,21,29,30,31,61,89,93,99,101,134,152,182,184,186,193,222,236,239,244,245,262,267,269,271,272,282,284,285],batch:93,batteri:[9,24,31,96,252],baud:[66,130,245,273],baudrat:[135,190,193],bbno055_cli:276,bc_acc_bw:[208,278],bc_acc_rang:[208,278],bc_mask:[208,278],bc_opr_mod:[208,278],bc_placement:208,bc_pwr_mode:[208,278],bc_unit:[208,278],bc_use_ext_xt:278,bcfg:278,bd_addr:20,be9699809a049:71,beacon:[14,243,244,255],bearer:[21,32],becaus:[8,10,12,20,22,26,30,50,87,128,169,179,180,187,190,206,208,211,215,222,224,241,265,267,269,273,275,276,277,280],becom:[22,31,128,247,250],been:[4,10,20,26,36,43,55,58,59,61,77,81,82,84,88,89,90,99,128,129,138,140,152,153,165,173,179,190,193,222,225,242,245,250,254,257,262,266,272,273],befor:[2,4,7,8,12,20,41,50,57,61,80,84,86,88,89,91,92,93,97,99,100,101,128,129,130,140,146,173,174,178,190,192,193,194,199,210,211,214,216,222,223,225,231,232,236,238,241,244,245,246,247,249,252,253,255,256,258,262,265,266,274,279,282,285],begin:[26,89,99,140,148,193,245,248,250,252,253,265,267],beginn:290,behav:[20,30,92,252,253,265],behavior:[59,92,96,161,162,173,241,249,251,265,266,288],behaviour:89,behind:[89,100],being:[20,89,90,92,97,99,100,128,129,135,152,179,186,187,188,197,198,222,226,241,248,250,265,273,290],bell:98,belong:[14,90,128,179,251],below:[1,2,4,6,12,18,20,22,23,24,30,43,62,89,92,93,94,98,99,128,130,132,135,153,160,163,179,180,192,208,222,235,241,244,249,251,254,257,258,259,260,261,262,263,265,267,268,269,272,274,275,276,278,282,290],benefit:[10,92,179,225,234,238],best:[89,93,160,199,268],beta:[134,274],better:[128,223],between:[7,12,21,26,27,31,37,46,55,98,100,130,179,186,187,197,199,209,222,224,225,236,238,245,257,262,268,274,276,280],beyond:[89,179],bhd:66,big:[23,61,89,262,268],bigger:222,bin:[2,4,7,11,12,34,35,37,38,43,46,48,50,55,57,58,59,60,61,80,81,82,83,93,168,169,222,225,235,236,239,240,244,245,248,254,256,257,258,259,260,261,262,265,266,273,274,276,280,283,284,286,287,288],bin_basenam:61,binari:[4,7,11,34,37,39,55,58,60,61,79,81,83,101,132,187,256,273],binutil:4,bit:[7,14,23,25,27,29,57,58,59,66,81,82,86,89,90,99,100,101,128,179,187,188,190,193,206,208,210,211,222,223,241,244,249,250,251,252,253,266,268,273,274,275,280,287,288],bitbang:188,bitmap:90,bitmask:99,bits0x00:27,bl_rev:276,bla:205,ble:[14,18,19,23,26,30,31,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,87,89,128,132,133,222,225,236,239,243,245,247,249,250,251,255,271,272,273,277,279,282,290],ble_:249,ble_addr_t:[252,253],ble_addr_type_publ:250,ble_app:[244,252,253],ble_app_advertis:[252,253],ble_app_on_sync:[252,253],ble_app_set_addr:[252,253],ble_att:[76,236,249],ble_att_err_attr_not_found:20,ble_att_err_attr_not_long:20,ble_att_err_insufficient_authen:20,ble_att_err_insufficient_author:20,ble_att_err_insufficient_enc:20,ble_att_err_insufficient_key_sz:20,ble_att_err_insufficient_r:[20,272,274],ble_att_err_invalid_attr_value_len:[20,249],ble_att_err_invalid_handl:20,ble_att_err_invalid_offset:20,ble_att_err_invalid_pdu:20,ble_att_err_prepare_queue_ful:20,ble_att_err_read_not_permit:20,ble_att_err_req_not_support:20,ble_att_err_unlik:[20,272,274],ble_att_err_unsupported_group:20,ble_att_err_write_not_permit:20,ble_att_svr_entry_pool:73,ble_att_svr_prep_entry_pool:73,ble_eddystone_set_adv_data_uid:252,ble_eddystone_set_adv_data_url:252,ble_eddystone_url_scheme_http:252,ble_eddystone_url_suffix_org:252,ble_err_acl_conn_exist:20,ble_err_auth_fail:20,ble_err_chan_class:20,ble_err_cmd_disallow:20,ble_err_coarse_clk_adj:20,ble_err_conn_accept_tmo:20,ble_err_conn_establish:20,ble_err_conn_limit:20,ble_err_conn_parm:20,ble_err_conn_rej_bd_addr:20,ble_err_conn_rej_channel:20,ble_err_conn_rej_resourc:20,ble_err_conn_rej_secur:20,ble_err_conn_spvn_tmo:20,ble_err_conn_term_loc:20,ble_err_conn_term_m:20,ble_err_ctlr_busi:20,ble_err_diff_trans_col:20,ble_err_dir_adv_tmo:20,ble_err_encryption_mod:20,ble_err_host_busy_pair:20,ble_err_hw_fail:20,ble_err_inq_rsp_too_big:20,ble_err_instant_pass:20,ble_err_insufficient_sec:20,ble_err_inv_hci_cmd_parm:20,ble_err_inv_lmp_ll_parm:20,ble_err_link_key_chang:20,ble_err_lmp_collis:20,ble_err_lmp_ll_rsp_tmo:20,ble_err_lmp_pdu:20,ble_err_mac_conn_fail:20,ble_err_mem_capac:20,ble_err_no_pair:20,ble_err_no_role_chang:20,ble_err_page_tmo:20,ble_err_parm_out_of_rang:20,ble_err_pending_role_sw:20,ble_err_pinkey_miss:20,ble_err_qos_parm:20,ble_err_qos_reject:20,ble_err_rd_conn_term_pwroff:20,ble_err_rd_conn_term_resrc:20,ble_err_rem_user_conn_term:20,ble_err_repeated_attempt:20,ble_err_reserved_slot:20,ble_err_role_sw_fail:20,ble_err_sco_air_mod:20,ble_err_sco_itvl:20,ble_err_sco_offset:20,ble_err_sec_simple_pair:20,ble_err_synch_conn_limit:20,ble_err_unit_key_pair:20,ble_err_unk_conn_id:20,ble_err_unk_lmp:20,ble_err_unknown_hci_cmd:20,ble_err_unspecifi:20,ble_err_unsupp_lmp_ll_parm:20,ble_err_unsupp_qo:20,ble_err_unsupp_rem_featur:20,ble_err_unsupport:20,ble_ga:251,ble_gap:76,ble_gap_adv_param:[252,253],ble_gap_adv_set_field:247,ble_gap_adv_start:[247,250,252,253],ble_gap_chr_uuid16_appear:[249,251],ble_gap_chr_uuid16_device_nam:[249,251],ble_gap_chr_uuid16_periph_pref_conn_param:249,ble_gap_chr_uuid16_periph_priv_flag:249,ble_gap_chr_uuid16_reconnect_addr:249,ble_gap_conn_desc:250,ble_gap_conn_find:250,ble_gap_conn_fn:247,ble_gap_conn_mode_und:[247,250],ble_gap_disc_mode_gen:[247,250],ble_gap_ev:250,ble_gap_event_conn_upd:250,ble_gap_event_connect:250,ble_gap_event_disconnect:250,ble_gap_event_enc_chang:250,ble_gap_event_fn:[252,253],ble_gap_event_subscrib:250,ble_gap_svc_uuid16:[249,251],ble_gap_upd:73,ble_gatt:76,ble_gatt_access_ctxt:[249,272,274],ble_gatt_access_op_read_chr:[249,272,274],ble_gatt_access_op_write_chr:[249,272,274],ble_gatt_chr_def:[249,251,272],ble_gatt_chr_f_notifi:272,ble_gatt_chr_f_read:[249,251,272],ble_gatt_chr_f_read_enc:272,ble_gatt_chr_f_writ:272,ble_gatt_chr_f_write_enc:272,ble_gatt_register_fn:251,ble_gatt_svc_def:[249,251,272],ble_gatt_svc_type_primari:[249,251,272],ble_gattc:76,ble_gattc_proc_pool:73,ble_gatts_chr_upd:[272,274],ble_gatts_clt_cfg_pool:73,ble_gatts_find_chr:[272,274],ble_gatts_register_svc:251,ble_h:[14,15,16,17,19,20,23,26,76,252,253,274],ble_hci_ram_evt_hi_pool:73,ble_hci_ram_evt_lo_pool:73,ble_hci_uart_baud:245,ble_hs_:251,ble_hs_adv_field:[247,252],ble_hs_att_err:20,ble_hs_cfg:[26,252,253],ble_hs_conn_pool:73,ble_hs_eagain:20,ble_hs_ealreadi:20,ble_hs_eapp:20,ble_hs_eauthen:20,ble_hs_eauthor:20,ble_hs_ebaddata:20,ble_hs_ebusi:20,ble_hs_econtrol:20,ble_hs_edon:20,ble_hs_eencrypt:20,ble_hs_eencrypt_key_sz:20,ble_hs_einv:20,ble_hs_emsgs:20,ble_hs_eno:20,ble_hs_enoaddr:20,ble_hs_enomem:20,ble_hs_enomem_evt:20,ble_hs_enotconn:20,ble_hs_enotsup:20,ble_hs_enotsync:20,ble_hs_eo:20,ble_hs_ereject:20,ble_hs_erol:20,ble_hs_err_sm_peer_bas:20,ble_hs_err_sm_us_bas:20,ble_hs_estore_cap:20,ble_hs_estore_fail:20,ble_hs_etimeout:20,ble_hs_etimeout_hci:20,ble_hs_eunknown:20,ble_hs_ev_tx_notif:87,ble_hs_event_tx_notifi:87,ble_hs_forev:[250,252,253],ble_hs_hci_err:20,ble_hs_hci_ev_pool:73,ble_hs_id:23,ble_hs_id_gen_rnd:[23,252,253],ble_hs_id_set_rnd:[19,23,252,253],ble_hs_l2c_err:20,ble_hs_reset_fn:26,ble_hs_sm_peer_err:20,ble_hs_sm_us_err:20,ble_hs_sync_fn:26,ble_ibeacon_set_adv_data:253,ble_l2cap:76,ble_l2cap_chan_pool:73,ble_l2cap_sig_err_cmd_not_understood:20,ble_l2cap_sig_err_invalid_cid:20,ble_l2cap_sig_err_mtu_exceed:20,ble_l2cap_sig_proc_pool:73,ble_ll:[76,77,273],ble_ll_cfg_feat_le_encrypt:222,ble_ll_conn:76,ble_ll_prio:225,ble_lp_clock:24,ble_max_connect:[275,277],ble_mesh_dev_uuid:32,ble_mesh_pb_gatt:32,ble_own:[252,253],ble_own_addr_random:[252,253],ble_phi:76,ble_prph:273,ble_public_dev_addr:23,ble_rigado:47,ble_role_broadcast:277,ble_role_peripher:277,ble_sm_err_alreadi:20,ble_sm_err_authreq:20,ble_sm_err_cmd_not_supp:20,ble_sm_err_confirm_mismatch:20,ble_sm_err_cross_tran:20,ble_sm_err_dhkei:20,ble_sm_err_enc_key_sz:20,ble_sm_err_inv:20,ble_sm_err_numcmp:20,ble_sm_err_oob:20,ble_sm_err_pair_not_supp:20,ble_sm_err_passkei:20,ble_sm_err_rep:20,ble_sm_err_unspecifi:20,ble_sm_legaci:222,ble_tgt:[244,252,253],ble_uu:251,ble_uuid128_init:[272,274],ble_uuid128_t:[272,274],ble_uuid16:[249,251],ble_uuid16_declar:[272,274],ble_uuid:274,ble_uuid_128_to_16:249,ble_uuid_u16:[272,274],ble_xtal_settle_tim:24,bleadc:274,blecent:[7,61],blehci:[7,61],blehciproj:245,blehostd:66,blemesh:[21,32],blenano:53,bleprph:[7,21,61,66,222,239,246,247,248,249,250,251,272,273,274,275,288],bleprph_advertis:[247,250],bleprph_appear:249,bleprph_device_nam:[247,249],bleprph_log:[247,250,272,274],bleprph_oic:[7,61,279],bleprph_oic_sensor:275,bleprph_on_connect:247,bleprph_pref_conn_param:249,bleprph_print_conn_desc:250,bleprph_privacy_flag:249,bleprph_reconnect_addr:249,blesplit:[7,61],bletest:[7,61],bletini:[7,21,37,38,45,46,50,61,71,236,245,248],bletiny_chr_pool:73,bletiny_dsc_pool:73,bletiny_svc_pool:73,bletoh:89,bleuart:[7,61],blink:[1,7,61,93,99,238,240,241,254,255,257,258,259,260,261,273,274,290],blink_nord:288,blink_nrf:273,blink_primo:273,blink_rigado:47,blinki:[1,12,34,43,44,48,55,61,93,241,244,245,262,266,273,274,282,283,284,286,287,288,290],blinky_callout:256,blinky_primo:273,blinky_sim:61,blksize:90,blksz:[73,284],blob:[20,183],block:[20,29,73,86,87,89,90,98,134,140,143,173,174,175,176,177,187,190,192,193,238,273,284],block_addr:90,block_siz:90,blocks_siz:90,blue:261,bluetooth:[1,9,20,22,23,24,27,29,32,89,222,239,246,247,252,253,255,273,274,290],bmd300eval:[48,53,259,274],bmd:[259,274],bno055:[207,208,275,277,278],bno055_0:[207,276,278],bno055_acc_cfg_bw_125hz:278,bno055_acc_cfg_rng_16g:278,bno055_acc_unit_ms2:278,bno055_angrate_unit_dp:278,bno055_cfg:[208,278],bno055_cli:[276,277],bno055_config:[208,278],bno055_default_cfg:208,bno055_do_format_android:278,bno055_err:208,bno055_euler_unit_deg:278,bno055_get_chip_id:208,bno055_id:208,bno055_info:208,bno055_init:[207,208],bno055_ofb:[207,275,276,277],bno055_opr_mode_ndof:278,bno055_pwr_mode_norm:278,bno055_sensor_get_config:208,bno055_sensor_read:208,bno055_shel:276,bno055_shell_init:276,bno055_stat_sect:208,bno055_temp_unit_degc:278,board:[1,2,4,5,7,8,10,12,23,24,30,39,42,47,53,55,57,58,59,61,92,93,134,181,182,187,208,209,213,222,224,225,235,236,238,239,240,241,245,248,252,253,255,256,272,273,278,279,280,282,285,287,288,290],bodi:[128,278],bold:[235,242],bond:[22,27,29,30,248],bondabl:27,bone:[84,246,252,253,290],bookkeep:140,bool:[90,199],boot:[7,10,43,61,93,100,101,130,195,235,236,239,245,254,257,258,259,260,261,262,266,273,274,276,280,283,284,286],boot_boot_serial_test:7,boot_bootutil:222,boot_build_statu:128,boot_build_status_on:128,boot_clear_statu:128,boot_copy_area:128,boot_copy_imag:128,boot_erase_area:128,boot_fill_slot:128,boot_find_image_area_idx:128,boot_find_image_part:128,boot_find_image_slot:128,boot_go:128,boot_img_mag:128,boot_init_flash:128,boot_load:93,boot_mag:128,boot_move_area:128,boot_nrf:273,boot_olimex:260,boot_primo:273,boot_read_image_head:128,boot_read_statu:128,boot_select_image_slot:128,boot_seri:[7,130],boot_serial_setup:7,boot_slot_addr:128,boot_slot_to_area_idx:128,boot_swap_area:128,boot_test:7,boot_vect_delete_main:128,boot_vect_delete_test:128,boot_vect_read_main:128,boot_vect_read_on:128,boot_vect_read_test:128,boot_write_statu:128,bootabl:[222,239,283,286],bootload:[1,12,43,47,93,96,101,130,191,195,235,239,241,255,256,273,274,275,277,285],bootutil:[7,101,128,130,254,257,258,259,260,261,262,266,276,283,284,286],bootutil_misc:[7,254,257,258,259,261,276,283,284,286],both:[6,9,11,14,20,22,27,29,39,55,57,58,59,62,89,91,93,98,128,129,131,134,173,179,187,190,199,205,222,224,225,234,254,256,262,265,266,269,274],bottl:[58,81],bottom:[12,93,97,99,248],bound:[89,93,152],boundari:[89,90,93],box:[12,288],bps:193,branch:[1,4,7,10,11,55,56,57,59,60,79,80,82,83,128,242,254,266,267,268],branchnam:10,brand:261,bread:274,breadboard:274,breakdown:222,breakout:8,breakpoint:[254,258],breviti:[222,235,284],brew:[3,4,7,11,36,55,58,60,81,83],brick:128,bridg:179,brief:[19,186,252,253,262],briefli:93,bring:[12,93,181,276,279,282],broad:290,broadca:[252,253],broadcast:[14,27,31,247,252,253],brows:[248,257,267],browser:242,bsd:101,bsp:[1,7,24,32,34,37,38,42,43,45,47,50,55,61,62,92,129,134,173,174,176,177,181,185,186,192,193,206,207,208,209,211,222,225,235,238,244,245,248,254,256,257,258,259,260,261,262,266,273,274,275,276,277,278,280,283,284,286,287,288,290],bsp_arduino_zero:254,bsp_arduino_zero_pro:[254,266],bsp_flash_dev:174,bsp_timer:192,bsppackag:93,bss:[48,93,222],bssnz_t:[272,273,274],btattach:245,btshell:29,buad:66,buf:[129,135,153,154,155,156,160,161,163,164,168,171,199],buf_len:89,buffer:[10,20,89,90,92,96,97,130,134,156,163,169,171,179,187,190,199,205,224,253,274],buffer_len:274,buffer_size_down:287,bug:[4,7,11,160,161,254,258,280,287,288],bui:274,build:[1,2,3,4,5,6,11,31,32,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,80,82,92,93,94,96,128,134,181,187,198,205,209,222,223,224,225,231,238,239,246,247,248,255,265,272,273,282,285,290],build_arduino_blinki:12,build_arduino_boot:12,build_numb:197,build_profil:[1,32,37,38,43,50,53,61,93,222,235,244,245,248,254,257,258,259,260,261,262,266,273,274,275,276,277,280,283,284,286],buildabl:7,builder:242,built:[1,4,7,8,9,21,33,34,38,39,42,43,55,57,58,59,60,61,63,81,82,83,89,128,190,205,222,231,235,236,242,244,245,248,252,253,254,255,256,257,258,259,260,261,262,265,266,272,273,274,275,276,280,283,284,286],bunch:273,bundl:[55,101,152],burn:[252,253],bus:[2,187],buse:[134,181],busi:[20,90,91,241,273],button1_pin:238,button:[2,4,10,12,98,238,254,257],bytes_read:[153,160,163,168,171],bytyp:211,c_ev:84,c_evq:84,c_tick:84,cabl:[236,238,239,241,245,254,255,257,258,259,260,262,266,274,280,282,283,285,286],cach:[58,81,134,173,175,181],cache_large_file_test:265,calcul:[20,29,48,90,100,128,140],calendar:9,call:[6,7,9,11,19,21,23,26,36,61,84,85,86,87,88,89,90,91,92,93,97,98,99,100,101,128,129,130,131,132,134,135,138,140,141,142,143,145,146,150,158,161,165,168,171,172,175,176,178,179,180,183,186,187,189,190,191,192,193,194,196,199,205,206,207,208,210,211,212,214,216,217,220,223,225,227,228,229,230,231,232,233,236,238,241,243,244,247,248,249,250,251,252,253,254,256,262,265,267,273,274,275,276,280,285],callback:[20,26,86,87,89,90,130,140,145,150,186,190,192,193,206,207,208,210,212,225,238,247,249,251,252,253,256,273,280],caller:[89,90,130,140,192,198,199,215,219],callout:[87,92,97,211,256,280],callout_l:238,callout_reset:129,came:245,can:[1,2,3,4,5,6,7,8,9,11,12,19,20,21,22,23,24,27,30,31,33,34,35,42,45,50,55,57,58,59,60,61,62,63,64,66,72,76,80,81,82,83,84,85,86,87,89,90,91,92,93,94,96,97,98,99,101,128,129,130,131,134,135,136,137,140,141,143,145,146,150,151,152,161,165,166,169,171,173,174,176,179,180,181,186,188,189,190,192,193,194,195,199,205,206,207,208,209,210,211,214,215,219,220,221,222,223,224,225,227,228,230,231,234,235,236,238,239,240,241,242,244,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,272,273,274,275,276,277,278,280,282,283,284,286,287,288,290],cancel:[20,27,84],candid:267,cannot:[4,19,20,71,86,88,91,92,98,128,129,151,169,179,182,190,192,225,236,254,266,267,268,269],capabl:[20,22,27,29,95,130,134,205,222,241,256,287],capac:20,captian:81,captur:179,carbon:272,card:[136,151],care:[89,92,99,163,171,252,253,267,268,272],carri:89,cascad:[1,61],cast:[89,90,249],cat:[80,273,274],catastroph:26,categor:93,categori:[10,96],caus:[90,92,98,153,160,161,166,169,179,187,191,224,226,239,241,274,287],caveat:128,cb_arg:[150,192,247,251,252,253],cb_func:192,cbmem:[7,205,226],cbmem_buf:205,cbmem_entry_hdr:226,cbmem_init:205,cbmem_read:226,cbmem_test_case_1_walk:226,cbor:[132,133],cborattr:7,cccd:27,ccm:22,cdc:257,cell:22,cellar:[4,6,11,36,58,60,81,83],central:[20,30,246,247,248,250],certain:[1,21,89,90,92,93,134,245,268],certainli:274,cess_op_:249,cfg:[70,171,172,187,190,192,193,207,208,258],cflag:[1,50,61,93],cgi:101,ch_commit:129,ch_export:129,ch_get:129,ch_name:129,ch_set:129,chain:[89,90,199],challeng:263,chanc:[92,99],chang:[1,4,6,7,10,11,19,20,21,22,24,28,30,46,49,50,52,57,61,62,80,89,93,94,128,179,186,190,206,207,214,222,224,225,235,236,238,240,241,242,245,248,250,252,253,254,258,272,273,274,275,276,277,280,282,287,288],channel:[20,21,29,134,274],channel_map:27,chapter:[2,21,96,132],charact:[130,139,156,159,173,179,193,197,198,199,200,201,202,203,214,219,225,251,266,280,287],character:24,characteri:[249,251],characterist:[9,16,17,21,27,28,128,248,251,272,274],check:[4,6,8,11,20,22,55,56,79,84,87,90,99,129,179,199,208,222,224,225,235,239,244,245,246,257,260,262,265,268,273,276,278,285],checkbox:59,checkin:[77,97,99],checkout:[10,80,82,255],checksum:[140,142],child:[90,154,155,156,161,164,179],children:179,chip:[4,96,134,135,181,186,190,191,206,208,254,255,257,258,261,266,267,273,276],chip_id:276,chipset:[134,181,254,266],choic:[2,10,173,245,276],choos:[6,7,10,89,99,101,222,223,236,241,244,247,256,257,259,272,274],chose:223,chosen:[89,93,128,151,179,274],chr:[249,272,274],chr_access:249,chr_val_handl:[272,274],chunk:[10,89],ci40:53,cid:248,circuit:187,circular:[205,224,225],circularli:268,clang:6,clarif:10,clarifi:134,clariti:136,classif:20,clean:[1,11,33,39,50,57,58,59,63,81,159,177,241,262],cleanli:225,clear:[72,84,89,99,128,179],clearli:[8,20],cli:130,click:[2,4,10,12,242,248,252,253,254,257,258,260,286],client:[12,17,18,20,21,27,31,152,180,209,252,272],clk:190,clobber:166,clock:[20,25,86,191,254,258,276],clock_freq:86,clone:[10,11,45,50,55,58,81],close:[2,59,134,152,153,154,155,156,157,160,161,163,164,168,169,170,171,172,193,207,254,257,258,260,261,278],closest:192,cmake:1,cmd:[55,61,93,184,273,276],cmd_len:273,cmd_queue:130,cmd_read_co2:273,cmp:273,cmsi:[2,7,48,93,254,257,258,259,260,261,280],cmsis_nvic:[93,257,258,259,260,261,280],cn4:235,cnt:[73,130,176,177,190,284],co2:[272,273],co2_evq:272,co2_read_ev:272,co2_sns_str:272,co2_sns_typ:272,co2_sns_val:272,co2_stack:272,co2_stack_s:272,co2_task:272,co2_task_handl:272,co2_task_prio:272,coap:[133,209,212,275,279],coars:20,coc:27,code:[1,5,7,9,11,13,18,21,24,26,27,29,55,85,89,90,92,95,96,97,100,101,128,130,132,134,136,139,152,153,154,155,156,157,159,160,161,163,164,166,168,169,170,171,172,176,177,178,179,180,181,182,186,187,190,192,193,195,205,207,208,209,222,225,226,227,228,230,231,232,236,238,241,246,247,249,250,251,254,255,256,262,264,266,267,273,274,275,278,279,280,282,284,285,290],codebas:[254,266],coded_interval_max:27,coded_interval_min:27,coded_lat:27,coded_max_conn_event_len:27,coded_min_conn_event_len:27,coded_scan_interv:27,coded_scan_window:27,coded_timeout:27,codepag:151,coding_standard:7,coexist:128,collect:[1,7,43,55,61,89,90,132,140,180,199,222,235,267],collis:20,colon:66,color:240,column:19,com11:8,com1:66,com3:[8,256,266,276,283,286],com6:8,com:[8,10,11,12,33,55,57,58,59,63,80,81,82,101,183,235,245,256,266,267,269,276,283,284,286],combin:[1,20,22,26,43,61,92,93,187,244,252,253,267,268],combo:222,come:[3,21,30,55,61,93,101,130,134,205,254,260,261,266,273,274,286],comm:[235,255],comma:[51,66],comman:220,command:[1,2,4,7,8,10,11,20,30,34,35,36,37,38,40,41,42,44,45,46,47,48,49,51,52,53,54,57,58,59,60,61,67,68,70,71,72,75,76,78,80,81,82,83,93,96,128,131,133,136,138,187,195,196,205,209,215,219,220,221,222,223,224,225,231,235,237,239,240,241,244,252,253,254,256,257,258,259,260,261,262,263,265,266,267,269,270,274,275,276,277,278,280,283,286,287,288],comment:[3,10,93,234,290],commerci:273,commit:[10,11],common:[55,61,87,89,96,98,99,134,135,181,186,208,209,222,251,258],commonli:[98,190,252],commun:[9,21,26,27,31,66,78,130,132,136,187,190,206,207,208,235,238,239,240,241,245,247,250,255,262,266,267,273,274,276,280,283,284,285,286,290],compani:29,compar:[10,20,89,160,241,257,258,259,262,270,274],comparison:[20,22,89,100],compat:[4,10,21,55,128,130,135,214,215,222,254,262,266,276,278,280,287],compens:100,compil:[1,4,5,6,7,8,11,20,34,47,53,55,58,61,81,89,93,96,101,134,214,223,225,231,234,235,236,238,244,254,257,258,259,260,261,262,266,273,274,275,276,280,283,284,286],complaint:21,complementari:31,complet:[9,12,20,22,27,29,30,33,55,59,63,93,95,96,99,128,130,140,154,155,156,161,164,179,181,187,190,193,205,222,229,233,234,238,241,245,247,252,253,258,267,274,275,278,279,280,283,284,286],completion_cb:130,complex:[9,31,92,93,134,181,241,243],compli:21,complianc:[273,274],compliant:21,complic:[55,92,222],compon:[1,7,12,18,39,48,55,57,58,59,61,85,93,96,129,134,181,187,190,222,223,236,238,239,245,252,253,255,266,273,282,285],compos:[39,57,58,59,234],composit:199,comprehens:234,compress:[55,81,173,252],compris:[7,128,173,174],comput:[3,4,6,8,12,31,56,58,59,79,81,130,142,151,239,241,244,245,254,255,257,258,259,260,261,275,277,282,283,285,286],concept:[12,22,89,92,160,214,225,239,241,243,244,246,254,255,266,282,285],concern:[3,89,179],concis:132,conclud:[252,253,274],concurr:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,84,88,246,247],condit:[4,20,128,179,187,207,214,224,226,265,273,274],condition:[55,207,224,225,276],conduct:[128,132],conf:262,conf_export_tgt:129,conf_fcb_dst:129,conf_fcb_src:129,conf_file_dst:129,conf_file_src:129,conf_get_valu:129,conf_handl:129,conf_init:232,conf_int8:129,conf_load:129,conf_regist:[129,226],conf_sav:129,conf_save_on:129,conf_set_valu:129,conf_str_from_valu:129,conf_value_set:129,confidenti:22,config:[1,7,32,50,61,62,64,78,80,81,82,131,135,151,153,157,160,163,170,192,224,225,232,236,244,273,274,276],config_:207,config__sensor:207,config_bno055_sensor:[207,278],config_cli:129,config_fcb:[129,224],config_fcb_flash_area:[224,225],config_lis2dh12_sensor:207,config_newtmgr:[50,236],config_nff:[129,152,224],config_pkg_init:225,config_test_al:232,config_test_handl:226,config_test_insert:[226,227],configur:[6,7,9,19,20,25,26,31,32,50,55,57,58,59,61,62,86,90,92,93,94,96,128,130,132,134,152,173,175,179,181,182,186,187,190,192,193,194,209,210,212,222,238,241,244,247,251,254,257,260,261,262,263,269,274,276,279,280,282,284,287,288],configuraton:151,confirm:[8,20,27,71,128,222,239,262,283,286],confirmbe9699809a049:71,conflict:[61,224,268],confluenc:10,confus:[267,274],congratul:[7,235,248,272,273,274],conjunct:[31,210],conn:[27,28,30,64,65,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,239,250,252,253,283,284,286],conn_handl:[20,248,249,250,272,274],conn_interval_max:29,conn_interval_min:29,conn_itvl:[30,248],conn_lat:[30,248],conn_mod:250,conn_profil:[65,66,67,68,69,70,71,72,73,74,75,76,77],conn_upd:250,connect:[4,7,8,9,10,12,15,20,21,22,24,26,28,29,31,38,42,43,55,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,96,130,132,133,134,181,186,187,190,191,222,235,238,246,247,248,249,250,252,253,255,272,273,282,285],connect_don:266,connectable_mod:247,connection_profil:71,connectionless:27,connector:[4,236,245,257,260,262,286],connextra:10,connintervalmax:29,connintervalmin:29,connstr:[66,239,283,284,286],conntyp:10,consecut:97,consequ:[20,128,222],conserv:[9,89,96],consid:[21,62,89,92,98,142,187,226,251,267],consider:226,consist:[1,21,31,61,98,99,128,129,132,134,162,179,190,222,224,225,231,251],consol:[1,7,8,12,26,55,61,96,101,129,137,154,155,156,161,164,171,193,205,218,225,238,244,245,248,252,253,255,265,273,274,284],console_append_char_cb:130,console_blocking_mod:130,console_compat:130,console_echo:130,console_handle_char:130,console_init:130,console_input:130,console_is_init:130,console_is_midlin:130,console_max_input_len:130,console_non_blocking_mod:130,console_out:130,console_pkg_init:225,console_printf:[20,26,130,153,154,155,156,160,161,163,164,168,171,226,272,273,274,280],console_prompt:273,console_read:130,console_rtt:[130,280,287],console_rx_cb:130,console_set_completion_cb:130,console_set_queu:130,console_tick:[130,273],console_uart:[130,280,287],console_uart_baud:130,console_uart_dev:130,console_uart_flow_control:130,console_uart_tx_buf_s:130,console_writ:[130,226],consolid:179,consortium:132,constant:190,constantli:[247,266,274,290],constitu:[43,179],constrain:[9,55,133,263],constraint:254,construct:[11,89,98],consult:[152,181],consum:[87,98,193],consumpt:22,contact:[94,95,235],contain:[1,3,7,11,29,31,34,50,55,61,84,89,90,93,95,96,98,99,100,128,130,132,134,137,140,153,156,157,160,163,166,167,168,170,176,179,182,186,193,195,197,198,199,210,218,222,223,225,226,229,231,234,244,245,247,249,251,252,253,262,265,267,268,276,290],content:[12,49,61,80,89,93,128,140,141,142,154,155,156,161,164,171,179,192,199,222,232,235,241,247,251,252,253,260,262,265,268,269,276,278],context:[55,77,85,86,87,92,99,130,134,139,190,192,214,216,225,236,238,250,256],contigu:[89,128,140,179],continu:[6,93,98,129,179,214,222,236,238,240,241,242,245,254,255,260,266,274,277,278,279,280,282,284,285,287],contrast:225,contribut:[13,22,57,58,59,80,81,82,243,265,282],contributor:[181,273,274],control:[8,9,18,19,20,21,22,23,25,26,29,31,55,66,96,130,134,140,160,173,181,183,190,193,205,208,214,225,244,258,260,267,268,273,274,279],contruct:248,convei:89,conveni:[12,20,89,129,171,179,198,226],convent:[262,265,276,280],convers:[101,134,249],convert:[1,8,20,71,84,86,89,100,129,134,174,176,177,179,190,199,225,249,251,273,274],coordin:[275,277],copi:[1,4,45,49,50,62,80,82,89,94,95,128,140,179,199,207,222,223,239,247,250,254,273,274,278,280,287,288],copy_don:128,copyright:[4,254,260,273,274,280,287,288],core:[1,6,7,12,21,29,32,37,38,43,48,50,51,53,55,61,62,71,88,93,95,97,129,132,134,152,181,183,222,223,235,241,244,245,246,247,248,254,255,256,257,258,259,260,261,262,265,266,267,268,273,274,275,276,277,280,282,283,284,285,286,287,288,290],core_cminstr:258,core_o:130,core_path:61,coreconvert:71,coredownload:71,coredump:[7,182],coredump_flash_area:225,coreeras:71,corelist:71,corner:260,corp:[2,254],correct:[1,2,4,41,90,93,100,128,173,222,225,241,245,258,259,260,262,265,274,276],correctli:[2,89,240,245,254,258,265,274,275],correspo:251,correspond:[12,20,86,89,90,93,128,162,175,179,180,205,206,247,249,252,253,268,274],corrupt:[90,167,179],corrupt_block_test:265,corrupt_scratch_test:265,cortex:[4,101,257,259,262,266,274,280],cortex_m0:61,cortex_m4:[61,93,257,258,259,260,261,262,280],cortex_m:254,cost:9,could:[20,89,98,179,197,249,273],couldn:[226,247,273],count:[55,81,89,98,99,128,129,179],counter:[85,89,223,262],countri:21,coupl:[1,260,273,274],cours:272,cover:[8,61,134,179,225,234,241,251],cpha:190,cpol:190,cpptool:12,cpu:[85,93,95,134,181,182,189,241,254,258],cputim:[24,86,276,280],cputime_geq:86,cputime_gt:86,cputime_leq:86,cputime_lt:86,crank:274,crash:[64,78,80,81,82,97,128,131,191,193,236],crash_test:[7,131,236],crash_test_newtmgr:236,crc16:179,crc:[7,130,136,273],creat:[1,2,3,4,5,6,8,10,11,12,22,27,32,34,39,41,43,44,45,46,47,50,55,57,58,59,61,62,66,71,80,81,82,87,90,91,92,95,97,98,99,101,130,134,143,157,159,160,161,166,169,170,172,173,176,179,205,206,208,209,211,212,216,222,223,224,225,231,233,238,240,241,246,251,255,256,267,269,272,278,279,282,285,290],create_arduino_blinki:12,create_mbuf_pool:89,create_path:159,creation:[47,134,235,262,274],creator:[206,207,208,209,211,275,276,278,280],credenti:269,criteria:20,critic:3,cross:[5,6,7,9,96],crt0:48,crti:48,crtn:48,crw:8,crypto:[7,254,257,259,261,266,283,284,286],crypto_mbedtl:222,cryptograph:[22,128],cryptographi:22,crystal:25,csrk:27,css:242,cssv6:29,csw:[77,273,283,286],ctlr_name:66,ctlr_path:66,ctrl:[12,244,273,276,287],ctxt:[249,250,272,274],cur_ind:250,cur_notifi:250,curi:[248,250],curiou:[3,242],curl:[11,58],curn:[248,250],curr:266,currantlab:[81,82],current:[11,24,27,31,39,40,41,44,45,46,50,51,57,58,59,60,71,81,82,83,85,86,89,90,91,92,93,97,98,99,100,128,129,130,134,135,136,137,139,140,151,152,157,158,159,160,170,172,179,186,187,190,192,195,206,214,223,224,226,229,233,235,236,239,241,252,254,255,258,260,262,263,267,268,270,276,280],custom:[23,71,90,162,180,182,205,225],cvs:[254,260,280,287,288],cwd:12,cycl:[19,21,31,179],cylind:274,daemon:[2,245],dai:[100,214],dap:[2,254,257,261],darwin10:[254,280,287,288],darwin:6,data:[9,14,20,21,27,28,30,31,43,48,64,69,80,81,82,84,86,89,90,92,93,96,99,128,129,130,132,133,141,142,143,144,145,146,150,153,157,159,160,162,163,168,169,170,171,172,175,178,188,190,193,204,207,209,212,213,217,219,222,225,241,249,250,252,253,272,273,274,282,288,290],data_len:273,data_mod:190,data_ord:190,databas:28,databit:193,databuf:[89,280],datagram:217,datalen:27,datasheet:93,date:[11,68,151,262,265,273],datetim:[7,64,78,80,81,82,130,131,133,236,265],datetime_pars:265,daunt:247,daylight:100,dbm:[21,27,29],ddress:25,deactiv:222,deal:[89,92,93,134],deb:[57,60,80,83],debian:[4,6],debug:[1,2,4,5,6,7,39,43,47,50,55,57,58,59,62,94,208,209,224,235,239,244,245,254,256,257,258,259,260,261,266,273,274,275,276,277,280,283,284,286,287,288],debug_arduino_blinki:12,debug_arduinoblinki:12,debugg:[5,38,39,55,57,58,59,61,191,254,257,258,260,261,262,286,287,288],dec:[48,222],decemb:22,decid:[55,85,96,241,273],decim:[22,187],decis:187,declar:[12,91,99,129,183,192,207,219,228,230,238,265,267,278,280],decod:[214,217],decompress:252,dedic:[87,93,96,214,222,236,238,249,287,288],deep:182,deeper:[89,235,262,274],def:[7,207,224,225,274,280],defaultdevic:82,defin:[1,6,19,20,21,24,27,28,29,31,34,42,43,47,50,53,61,84,86,87,89,90,92,97,99,128,129,131,133,134,176,177,182,183,185,186,190,205,206,207,209,210,211,212,213,214,220,222,224,225,226,227,229,231,235,238,241,243,245,247,249,255,262,265,267,268,272,273,274,275,276,279,280,283,285,286,287],defininig:31,defininit:198,definit:[1,12,29,35,37,42,50,61,84,89,90,93,128,214,223,231,245,249,251,267,272,273,274],defint:[89,224],del:27,delai:[26,86,100,192,240,241,262],deleg:222,delet:[1,6,10,12,27,35,39,45,49,50,55,57,58,59,61,62,153,169,173,179,240,263,272,278,280],delimit:50,deliv:[84,151],delta:[55,81,235],demo:272,demonstr:[20,26,89,159,166,171,262,276,280],denot:89,dep:[1,50,55,61,62,93,130,135,136,151,152,180,181,205,207,214,223,225,236,238,244,256,265,273,274,275,280],depend:[1,4,6,8,20,22,24,27,39,41,49,50,52,55,57,58,59,62,66,84,89,95,101,128,130,151,152,160,179,186,187,190,200,205,207,214,223,225,226,229,231,233,241,244,254,265,266,267,270,273,274,276,283,285,286],depict:181,deploi:[43,222,256],deploy:31,deprec:225,depth:[4,95],dequeu:[87,238],deriv:[20,179],desc:[176,177,250],descend:[128,169],describ:[1,2,7,10,11,12,24,28,33,63,90,92,93,94,96,99,128,132,140,146,151,173,179,186,188,190,199,204,206,207,208,214,222,224,225,231,235,236,242,244,246,251,252,258,261,262,267,273,274,275,276,278,282],descript:[1,7,10,19,27,28,30,55,61,89,93,94,95,129,136,139,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,159,160,161,163,164,166,167,168,169,170,171,172,176,177,197,198,200,201,202,203,204,205,206,207,210,211,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,235,262,263,265,267,268,273,274,288],descriptor:[16,17,27,28,61,160,161,174,176,177,179,249],design:[21,22,23,55,96,97,100,128,173,179,214,222,233,241,251,265],desir:[86,89,98,192,207,265,270],desktop:10,destin:[4,31,89,156,163,166,171,179,187,198,205],detail:[1,10,12,21,22,29,55,92,99,128,129,152,173,187,190,206,207,208,210,211,222,235,236,244,247,249,251,252,253,254,262,267,280,287,288],detect:[20,55,90,140,152,173,176,177,191,217,224,225,245],determin:[20,87,89,90,99,128,140,179,192,214,222,225,234,247,250,267,278],dev:[1,2,3,4,7,8,10,11,12,48,61,66,82,130,134,135,207,208,225,234,235,239,240,244,245,248,254,256,257,258,259,260,261,262,266,267,268,269,273,274,275,276,278,280,283,284,286,290],dev_found:245,develop:[3,5,6,7,8,9,13,20,55,59,61,82,89,90,92,94,95,96,99,132,134,209,212,214,225,234,239,241,245,246,249,252,254,255,257,260,261,267,268,272,273,274,279,282,286,287,288,290],devic:[3,4,8,9,14,19,20,21,22,25,28,29,31,32,43,55,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,96,128,130,132,133,134,135,136,152,174,181,183,186,187,190,209,210,211,212,222,223,224,225,236,243,244,246,247,248,249,251,252,253,254,256,257,258,259,260,261,262,266,272,274,279,280,283,284,285,286,287,288,290],device_id:183,deviceaddr:23,deviceaddrtyp:23,dflt:199,dhcp:266,dhkei:20,diag:193,diagram:[132,241,258,260],dialog:[12,59,288],dictat:[11,62],did:[10,222],diff:273,differ:[4,6,7,8,11,12,20,24,27,30,45,55,57,80,84,89,91,92,93,94,95,96,99,134,173,181,186,193,207,222,223,224,225,228,236,238,239,241,244,245,256,257,258,260,263,265,266,267,268,270,272,276,278,280,286,288],differenti:[89,267],difficult:[21,95,128,224],dig:[7,246],digit:[22,134,186,274],dioxid:272,dir:[27,136,152,154,155,156,161,162,164],direct:[10,20,27,187,214,223,268],direct_addr:[252,253],directli:[7,11,14,18,36,152,192,193,205,222,225,252,254,263,265,266,275,278],directori:[1,4,6,7,8,10,11,12,34,35,37,41,43,45,50,55,57,59,60,80,82,83,88,93,94,95,129,134,136,154,155,156,159,160,161,164,165,166,167,169,171,172,189,191,231,235,240,244,245,254,255,257,258,259,260,261,265,266,267,268,273,274,275,276,280,282,283,285,286,288,290],dirent:[136,154,155,156,161,162,164],dirnam:[154,155,156,161,164],dirti:235,disabl:[6,20,22,24,30,86,130,151,179,186,190,193,205,207,208,214,222,224,225,236,250,263,266,275,276,277,280,287],disable_auto_eras:135,disallow:[20,173],disbl:214,disc_mod:250,discard:[179,266],disciplin:245,disclaim:[7,11,55,244],disconnec:27,disconnect:[27,250],discontigu:128,discov:[22,27,28,245],discover:[27,29,133,212,247,279],discoverable_mod:247,discoveri:[28,132,134,136,245,250,255],discret:[173,174],discuss:[10,89,94,207,222,247,276],disjoint:20,disk:[7,128,140,152,153,167,169,173,174],disk_nam:152,disk_op:136,disk_regist:[136,152],dispatch:[92,225,238],displai:[1,6,22,27,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,61,62,64,66,69,71,72,73,76,77,80,81,82,134,181,225,245,260,262,273,275,277,282,283,286],displayonli:27,displayyesno:27,dist:[57,80],distanc:[21,223],distinct:22,distribut:[1,4,6,20,21,27,55,101,128,267,273,274],distro:6,div0:67,dive:89,divid:[18,20,67,129,131,173,174,222],dle:27,dll:[257,259,262,274],dm00063382:235,dma:134,dndebug:50,dnrf52:93,do_task:223,doc:[4,6,7,10,23,33,63,242,254,255,258],docker:[3,7,254,290],dockertest:2,document:[1,4,8,12,14,18,20,23,25,59,62,64,93,97,101,137,151,152,162,180,181,183,222,231,235,239,241,246,249,251,252,253,254,257,259,265,266,267,276,280,283,284,287,288],doe:[7,20,22,35,50,61,66,71,87,89,90,92,93,94,99,100,128,130,132,134,140,157,161,169,170,173,174,176,179,187,190,195,205,207,208,210,220,223,224,225,236,238,239,241,244,247,254,257,258,259,261,262,263,269,280,285],doesn:[8,10,20,32,97,128,136,157,169,170,222,226,240,241,244,245,247],doing:[88,100,134,241,249,256,273],domain:2,don:[1,10,31,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,87,89,129,137,140,163,171,235,249,251,252,253,267,273,274],done:[6,7,8,23,25,55,81,91,92,93,100,128,130,140,141,160,161,175,194,195,211,227,228,230,235,236,239,241,245,251,252,253,254,257,258,259,262,266,274,280,287,288],dont:287,doorbel:55,dop:152,doubl:[2,199,260],doubli:179,doubt:251,down:[1,12,61,80,82,186,222,236,258,260,286],downgrad:[6,7],download:[1,2,4,7,10,12,29,39,41,42,55,58,59,60,70,71,81,82,83,152,195,242,244,245,254,257,258,259,260,261,265,266,269,273,280,282,283,284,286,287,288],doxygen:[4,7,88,129,254,258],doxygengroup:[88,129],dpidr:261,dpkg:[57,60,80,83],drag:20,drain:24,draw:24,drive:[9,61,100,134,187],driver:[7,55,135,136,152,181,185,186,188,190,192,193,207,209,211,223,244,254,257,258,259,260,261,266,276,280,286,287],drop:[10,12,26,179,193,258,260,286],dsc:249,dsimmon:273,dsize:89,dst:[45,50,70,89,171,184,198],dsym:[55,61],dtest:50,due:[20,90,128,135,140,151,191,254,258,260],dummi:179,dump:[129,287],dumpreg:276,duplex:21,duplic:[27,89],durat:[19,27,30,100,249,276],duration_m:[252,253],dure:[20,22,71,85,93,97,99,128,130,161,179,196,207,222,225,231,241,244,249,256,275,278],duti:[21,31],dwarf:61,dylib:4,dynam:[88,90],e407:[260,286],e407_:260,e407_devboard:[53,260,286],e407_devboard_download:260,e407_sch:286,e761d2af:[272,274],e_gatt:251,eabi:[4,7,12,93,101,254,280,287,288],each:[1,2,10,11,12,19,20,21,22,23,28,32,43,48,49,50,61,62,64,66,73,77,87,89,90,92,93,98,100,128,130,134,154,155,156,161,162,164,166,173,174,175,179,181,186,205,206,208,209,210,211,212,214,218,219,222,223,225,236,238,241,249,250,251,252,253,254,265,267,276,278,279,280,290],ead:152,eager:3,earlier:[10,30,57,58,59,80,81,82,169,249,252,253,272,273,274,287],eas:135,easi:[1,2,3,8,9,134,181,187,223,224,226,242,257,274,275],easier:[24,93,273],easiest:273,easili:[9,171,209,225,280],east:100,eavesdropp:19,ecdsa256:128,ecdsa:128,echo:[12,60,64,78,80,81,82,83,130,131,133,236,266,273,283,284,286],echocommand:12,eclips:12,ectabl:[252,253],edbg:[2,254],eddyston:[27,255],eddystone_url:[27,29],edg:186,edit:[7,94,151,235,240,262,263,267,278],editign:242,editor:[59,61,235,240,258],ediv:27,edr:[20,29,245],edu:[257,287],ee02:262,eeirili:272,eeprom:135,effect:[98,100,129,152,173,174],effici:[21,31,89,90,179,254],eid:252,eight:[132,168],einval:86,eir:29,eir_len:245,either:[1,4,6,11,21,27,29,30,57,59,61,80,84,85,87,89,90,99,129,130,131,137,140,166,186,187,190,191,222,225,226,229,230,236,252,253,262,273,274,282],elaps:[20,86,100],electron:290,element:[39,53,55,57,58,59,89,90,99,128,129,139,140,141,142,145,147,148,179,199,214,241],elev:91,elf:[7,12,34,38,48,55,61,71,222,235,236,244,245,248,254,256,257,258,259,260,261,262,265,266,273,274,276,280,283,284,286,287,288],elfifi:71,elicit:222,els:[23,85,97,128,154,155,156,161,164,179,208,222,272,273,274,287],elsewher:[246,249,267],emac:273,email:[3,234,290],emb:135,embed:[1,3,4,12,39,55,57,58,59,101,128,173,190,234,235,254,260,280,287,288],emit:[55,61],emploi:21,empti:[50,89,99,140,167,179,225,229,243,251,265],emptiv:9,emul:[262,266,278],enabl:[1,8,9,24,30,31,32,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,62,73,76,77,78,87,93,129,130,131,132,134,135,151,181,186,190,194,205,207,208,209,211,212,213,219,224,225,235,238,239,244,247,250,255,264,271,272,273,274,278,282,285,287,288,290],enc:[198,200,201,203],enc_chang:250,encapsul:21,encod:[7,51,130,132,133,200,201,202,203,212,214,218,262,265,275,279,280],encoding_cborattr:222,encoding_tinycbor:222,encompass:[14,20],encount:[7,10,20,57,89,150,179,241],encourag:134,encrypt:[20,22,27,30,173,248,250],encrypt_connect:20,end:[9,20,28,30,55,89,128,140,158,168,170,179,187,204,225,233,243,244,262,273],endian:[23,61,89,128,190,262],endif:[219,223,225,232,233,256,265,273,274,280],energi:[9,21,22,89,255,290],english:128,enjoi:274,enough:[55,89,96,128,156,195,198,273],enqueu:[89,192],ensur:[11,12,21,59,89,93,97,100,101,156,181,187,222,223,224,225,236,238,239,241,245,249,255,266,267,268,276,279,282,285],entail:222,enter:[12,22,47,93,214,220,221,223,241,254,256,258,276,280],entir:[2,89,90,93,128,173,174,179,241,251,273],entireti:171,entiti:[43,246],entri:[20,22,72,129,140,141,142,145,148,150,154,155,156,161,164,171,173,174,179,204,208,214,219,222,251,277],enumer:[128,183,191,206],environ:[3,4,9,12,55,58,59,61,82,96,101,134,190,233,245,284],eof:[57,80],ephemer:252,epoch:100,equal:[29,72,89,179,205,224,225,226],equat:29,equival:[46,61,135,160,181,274,290],eras:[10,71,128,135,136,140,149,173,174,177,179,184,254,258,259,260,262,274],erase_sector:260,err:[97,159,204,208,217,218,223,272,274],error:[1,2,4,6,7,20,21,26,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,80,82,86,89,91,92,93,97,98,135,136,153,154,155,156,157,159,160,161,163,164,166,167,168,169,170,171,172,173,176,177,178,182,186,187,190,192,193,208,222,225,247,249,250,251,254,257,258,260,261,262,265,266,268,272,273,274,275,278,280,286],error_rsp_rx:[76,236],error_rsp_tx:[76,236],error_stat:223,escap:[266,280,287],especi:100,essenti:[43,61,225,241],establish:[20,27,78,236,238,247,248,250,257,259,262,274],estim:89,etc:[1,21,24,26,36,43,57,80,89,90,92,95,96,128,132,134,181,182,193,197,241,243,250,273,274],ethernet:[134,181],etyp:274,eui:262,eul:276,euler:276,ev_arg:[84,87,97,130],ev_cb:[84,87,89,130,238],ev_queu:87,eval:[259,274],evalu:[12,86,100,224,225,259,262,267,274],evalut:100,even:[4,10,86,89,96,128,151,179,193,199,211,222,272,274,278],event:[20,24,25,27,84,89,92,97,99,130,134,205,211,214,216,223,225,236,241,245,247,248,252,253,272,273,274,278,280,290],event_q:274,event_queu:130,eventq:[89,272,273],eventq_exampl:238,eventu:[4,99,100,179],ever:[89,90,128,140],everi:[1,32,61,97,98,99,134,150,179,190,250,252,254,256,268,273,280],everyon:[10,241],everyth:[1,93,97,222,241,265,266,273],evq:[84,87,89,216],evq_own:87,evq_task:87,exact:[96,128,186,192,223],exactli:[89,93,98,157,170,225],examin:[192,247,249,284],exampl:[1,2,3,6,7,9,12,22,23,24,25,30,31,55,57,58,59,60,61,62,64,80,82,83,89,90,91,93,94,96,97,98,99,100,101,128,130,133,152,173,174,180,183,186,187,188,205,207,208,209,210,214,219,222,223,234,235,236,241,243,245,246,250,254,256,258,262,265,266,267,268,269,273,275,276,277,278,279,280,283,284,286,287,288,290],example1:89,example2:89,exce:[179,215,219,287],exceed:20,except:[7,51,87,128,223,247,252,253,273,274],excerpt:[130,206,207,208,219,224,225,249,251,278],exchang:[14,21,22,27,28],excit:[7,235,244],exclud:[51,128,222,276],exclus:[22,91,98,206],exe:[12,59,60,82,83],exec_write_req_rx:[76,236],exec_write_req_tx:[76,236],exec_write_rsp_rx:[76,236],exec_write_rsp_tx:[76,236],execut:[1,2,7,11,12,30,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,67,80,82,85,87,90,92,93,96,99,101,133,136,137,139,190,195,216,225,229,231,232,236,241,247,249,250,251,252,253,256,265,273],exhaust:[20,97,140,179],exisit:27,exist:[2,10,20,24,29,41,46,49,50,71,94,140,146,151,157,159,160,161,166,167,169,170,172,173,176,177,179,186,206,208,213,225,228,240,248,254,257,258,259,260,261,266,268,273,274,275,277,278,279,280,282,283,285,286,287,288,290],exit:[8,80,257,259,262,273,274,287],expect:[6,20,43,61,84,92,93,97,129,130,134,222,226,227,228,229,230,241,245,252,253,262,265],experi:[22,263,276],experiment:99,expertis:267,expir:[84,86,87,192,194,238],expire_msec:194,expire_sec:194,expiri:[84,192],explain:[4,12,98,236,243,244,245,252,253,255,266,268,282,285,290],explan:[34,35,37,38,39,43,44,45,46,47,48,50,51,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77,152,247],explanatori:[30,94,252,253],explic:276,explicit:265,explicitli:247,explor:[128,222,249,282],expos:[1,14,21,92,133,173,174,175,209,214,225,246,251],express:[23,168,225,226,251,273,274],ext:[12,258],ext_bynam:211,ext_bytyp:211,extend:[20,29,30,89,90,274,277,279],extended_dur:27,extended_period:27,extens:[21,30,137,262],extent:[254,280,287,288],extern:[12,29,40,93,97,134,135,175,181,186,205,223,231,267,268,274,287,288],extra:[38,42,47,89,134,152,190,239,242,247,280,287],extra_gdb_cmd:61,extract:[4,11,58,59,60,82,83,190,235,257],extrajtagcmd:[38,42,47],extrem:9,eyes:226,f401re:53,f411a55d7a5f54eb8880d380bf47521d8c41ed77fd0a7bd5373b0ae87ddabd42:283,f4discoveri:258,f_activ:140,f_active_id:140,f_align:140,f_close:[162,180],f_closedir:[162,180],f_dirent_is_dir:[162,180],f_dirent_nam:[162,180],f_filelen:[162,180],f_getpo:[162,180],f_magic:140,f_mkdir:[162,180],f_mtx:140,f_name:[162,180],f_oldest:140,f_open:[162,180],f_opendir:[162,180],f_read:[162,180],f_readdir:[162,180],f_renam:[162,180],f_scratch:140,f_scratch_cnt:140,f_sector:140,f_sector_cnt:140,f_seek:[162,180],f_unlink:[162,180],f_version:140,f_write:[162,180],face:222,facil:[19,101,231,238],fact:[135,267],factor:9,factori:261,fail:[20,42,57,80,89,97,140,143,160,161,173,179,226,227,228,230,244,250,257,258,261,262,265,267,274,287],fail_msg:226,failov:222,failur:[20,84,89,97,99,100,128,136,141,142,143,145,146,148,149,150,152,153,154,156,157,159,160,163,166,167,168,169,170,171,172,176,177,178,182,186,187,190,192,193,194,215,217,218,219,226,232,233,249,250,251,265],fair:89,fairli:[24,55,61,89,98],fall:[96,101,186,290],fallback:27,fals:[90,222,224,226],famili:[4,101,135,151,245],familiar:[3,12,225,235,236,243,244,246,273,274,280,287,290],fanci:99,faq:[11,13],far:[244,280],fashion:[92,140,179,235],fast:273,fat2n:[7,61],fatf:[7,136,151,152],fault:130,favorit:[235,240],fcb:[7,129,141,142,143,144,145,146,147,148,149,150,205],fcb_append:[140,142,143],fcb_append_finish:[140,141],fcb_append_to_scratch:141,fcb_entri:[140,141,142,145,150],fcb_err_nospac:141,fcb_err_novar:145,fcb_getnext:140,fcb_init:140,fcb_log:205,fcb_rotat:[140,141],fcb_walk:140,fcb_walk_cb:150,fda_id:179,fe80:287,fe_area:[140,145,150],fe_data_:140,fe_data_len:[140,145,150],fe_data_off:[140,145,150],fe_elem_:140,fe_elem_off:140,feat:274,featur:[1,3,11,19,20,30,90,96,99,140,152,173,214,222,225,234,247,262,276,282],feedback:[235,240,255,274],feel:3,femal:286,fetch:[1,12,40,57,80,236,238,239,245,255,267,268,273,282,285],few:[1,6,14,25,31,55,61,90,93,94,223,244,249,252,262,265,274,290],ffconf:151,ffffffff:260,ffs2nativ:[7,61],fhss:21,ficr:23,fictiti:[267,268],fie_child_list:179,field:[20,27,84,85,89,93,128,130,175,187,200,202,206,207,208,214,219,222,223,225,247,249,251,252,253,267,268,276,278],fifo:140,figur:[89,128,129,140],file:[1,2,4,6,7,10,11,12,34,36,37,41,43,46,48,50,55,57,58,59,60,61,64,70,71,80,81,82,83,94,95,96,101,128,129,130,134,173,183,186,188,195,205,206,207,210,211,214,222,224,225,229,231,235,236,238,240,242,244,245,251,254,256,257,258,260,261,262,263,265,266,267,269,273,274,276,284,288],file_nam:61,filenam:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,70,71,93,151,156,160,162,166,169,173,179,222,245,273],filesystem:[55,129,151,195],fill:[10,48,95,99,140,141,143,145,146,182,198,199,244,249,252,253,265,273,274],filter:[2,22,27,30,72,254],find:[1,2,3,20,28,34,55,61,88,89,94,96,129,146,181,211,223,224,228,234,235,244,245,254,257,258,261,266,280,283,286,287,288,290],find_info_req_rx:[76,236],find_info_req_tx:[76,236],find_info_rsp_rx:[76,236],find_info_rsp_tx:[76,236],find_type_value_req_rx:[76,236],find_type_value_req_tx:76,find_type_value_rsp_rx:76,find_type_value_rsp_tx:76,fine:[9,252,253],finish:[4,98,99,141,179,193,262,273],fip:21,fire:[84,192,194,241,248,280],firmwar:[128,152,236,257,259,262,266,273,274,287,288],first:[2,3,6,8,12,21,22,29,33,57,58,59,60,63,82,83,84,87,89,90,91,93,99,100,101,128,129,140,168,173,174,179,180,183,190,197,199,211,214,222,225,235,236,241,243,246,247,248,249,251,252,253,255,256,262,266,272,273,274,276,280,282,285,290],fit:[4,89,100,171,179,247,248,263],five:[20,21,22,157,170,236],fix:[6,10,11,90,100,128,269],fl_area:141,fl_data_off:141,flag:[1,6,12,27,29,55,57,58,59,61,62,64,80,81,82,89,94,99,128,160,222,239,245,249,251,272,273,276,283,286],flash0:152,flash:[1,9,39,43,48,55,57,58,59,61,95,96,129,134,141,142,146,152,174,176,177,180,181,185,186,188,195,205,222,225,236,254,258,259,260,262,263,274],flash_area:[140,150],flash_area_bootload:[93,128,176,177,224,225],flash_area_image_0:[93,128,176,177],flash_area_image_1:[93,128,176,177,225],flash_area_image_scratch:[93,128,176,177,224],flash_area_nff:[176,177,224,225],flash_area_noexist:224,flash_area_read:[140,145,150],flash_area_reboot_log:[224,225],flash_area_to_nffs_desc:[176,177],flash_area_writ:[140,141],flash_area_x:140,flash_id:[135,182,184],flash_map:[7,129,176,177,182,224,225],flash_map_init:225,flash_own:[224,225],flash_spi_chip_select:186,flash_test:[7,130],flat:[89,199,205],flavor:254,flexibl:[89,96,234,247,267,268],flg:273,flight:89,float_us:275,flood:31,flow:[21,130,193,245,252,253],flow_ctl:193,fly:190,fmt:130,focu:241,folder:[4,10,12,33,55,59,63,240,257],follow:[1,2,3,4,6,7,8,10,11,12,19,20,21,23,24,26,27,29,30,31,32,37,38,43,50,51,55,57,58,59,60,61,64,66,67,71,72,73,77,78,80,81,82,83,89,91,93,94,96,98,99,100,101,128,130,131,133,134,135,136,140,152,160,167,168,169,173,174,175,179,180,181,187,189,190,200,202,205,206,207,208,209,211,212,222,223,224,225,226,227,228,229,230,231,235,236,238,239,240,241,244,245,246,247,249,251,252,253,254,255,256,257,258,259,260,261,262,265,266,267,268,269,272,273,274,275,276,277,278,279,280,282,283,285,286],foo:129,foo_callout:129,foo_conf_export:129,foo_conf_set:129,foo_val:129,footer:[128,256],footprint:[9,132,134],fop:165,fopen:160,forc:[41,49,52,89,222],forev:[87,91,98,99,160,161,233],forgeri:22,forget:[80,160,161,235,272,273,274],forgot:273,fork:10,form:[1,19,22,23,26,66,89,99,179,225,249,250,252,262,265,267],formal:[7,20],format:[8,29,50,66,68,71,72,89,130,132,151,152,173,176,177,197,198,199,206,223,225,226,229,245,252,256,266,267,268,276,283,286],former:179,formula:[3,60,83],forth:[129,199],fortun:55,forver:27,forward:[100,247],found:[1,20,33,55,63,90,93,148,173,179,199,245,250,251,252,254,258,260,286],foundat:[4,21,31,132,254,260,267,273,274,280,287,288],four:[19,22,47,128,168,172],fraction:[100,265],frame:[214,217,218,241,262],framerwork:131,framework:[21,28,97,132,206,212,213,231,232,245,275,276,277,280,281,282],frdm:53,free:[2,4,73,88,89,90,140,179,215,219,222,248,250,254,260,280,284,287,288],freebsd:101,freed:[89,90,179],freedom:[250,252,253],freq_hz:192,frequenc:[21,24,86,93,97,100,134,181,189,192,194,223,241,262],frequent:[10,19,21,22,97,252,253,280],freshli:89,friend:31,friendli:134,from:[1,4,6,7,8,9,10,11,12,19,20,22,23,26,27,30,31,32,35,36,38,39,41,43,44,45,46,47,49,50,51,55,56,60,61,62,64,65,66,68,69,70,71,72,73,76,77,79,83,84,85,86,87,88,89,90,92,93,94,95,96,99,100,101,128,129,131,132,133,135,136,137,139,140,146,152,153,154,155,156,160,161,162,163,164,166,168,169,171,176,177,179,180,182,186,187,190,192,193,195,198,199,205,206,207,208,209,210,211,212,213,214,216,217,222,223,224,225,226,227,228,230,231,233,235,236,238,239,241,243,244,245,246,249,250,251,252,253,254,255,256,257,258,259,260,261,262,265,266,267,268,273,274,276,280,282,283,284,286,287,288],front:[89,179],fs_access_append:160,fs_access_read:[153,160,163,168],fs_access_trunc:[157,160,166,169,170],fs_access_writ:[157,160,166,169,170],fs_cli:7,fs_cli_init:215,fs_close:[157,160,163,166,168,169,170,171,172],fs_closedir:[136,161],fs_dir:[152,154,155,156,161,162,164],fs_dirent:[7,152,154,155,156,161,162,164],fs_dirent_is_dir:[154,156,161,164],fs_dirent_nam:[136,154,155,161,164],fs_eaccess:167,fs_ealreadi:172,fs_ecorrupt:[167,176,177],fs_eempti:167,fs_eexist:[165,167],fs_eful:167,fs_ehw:167,fs_einval:167,fs_enoent:[136,154,155,156,161,164,166,167],fs_enomem:167,fs_eo:167,fs_eoffset:167,fs_eok:167,fs_eunexp:167,fs_euninit:167,fs_fcb:222,fs_file:[7,152,153,157,158,160,162,163,166,168,169,170],fs_filelen:170,fs_if:[162,180],fs_ls_cmd:215,fs_ls_struct:215,fs_mkdir:[7,172],fs_mount:7,fs_name:152,fs_nmgr:7,fs_op:[165,180],fs_open:[153,157,163,166,168,169,170,171,172],fs_opendir:[136,154,155,156,164],fs_read:[153,160,168,171],fs_readdir:[136,154,155,156,161],fs_regist:180,fs_unlink:159,fs_write:[157,166,172],fssl:[11,58],fsutil:[7,152],fsutil_r:152,fsutil_w:152,ftdichip:245,fulfil:249,full:[1,7,8,20,21,28,30,48,55,93,128,129,135,141,156,160,166,167,179,182,195,205,214,222,224,225,236,240,244,247,250,251,256,273,274,276,280,290],fuller:179,fulli:[9,21,128,173,174,179,222,244,253,267,268,274],fun:[235,273],func:[89,97,99,129,187,192,194],fundament:[1,290],funtion:199,further:[6,93,97,187],furthermor:[92,128,173,174,179,222,241,252,253],fuse:55,futur:[84,89,179,187,206,214,225,262,267,268,269],g_bno055_sensor_driv:208,g_bno055stat:208,g_led_pin:[240,241,256],g_mbuf_buff:89,g_mbuf_mempool:89,g_mbuf_pool:89,g_mystat:223,g_nmgr_shell_transport:217,g_os_run_list:85,g_os_sleep_list:85,g_stats_map_my_stat_sect:223,g_task1_loop:256,gain:[91,98,180,244,274],gap:[18,19,20,21,30,179,246,249,251,273,274,275],garbag:140,gatewai:262,gatt:[14,18,21,27,30,31,32,246,249,251,273,274,275],gatt_acc:249,gatt_adc_v:274,gatt_co2_v:272,gatt_co2_val_len:272,gatt_srv:274,gatt_srv_sns_access:274,gatt_svr:[251,272,274,276],gatt_svr_chr_access_gap:[249,251],gatt_svr_chr_access_sec_test:[251,272],gatt_svr_chr_sec_test_rand_uuid:[251,272],gatt_svr_chr_sec_test_static_uuid:[251,272],gatt_svr_chr_writ:[272,274],gatt_svr_register_cb:251,gatt_svr_sns_access:[272,274],gatt_svr_svc:[249,251,272],gatt_svr_svc_adc_uuid:274,gatt_svr_svc_co2_uuid:272,gatt_svr_svc_sec_test_uuid:[251,272],gaussian:21,gavin:58,gc_on_oom_test:265,gc_test:265,gcc:[4,7,57,101],gcc_startup_:93,gcc_startup_myboard:93,gcc_startup_myboard_split:93,gcc_startup_nrf52:[93,257,259,280],gcc_startup_nrf52_split:[257,259,261,262,280],gdb:[4,7,12,38,47,61,62,93,241,244,254,256,257,258,260,261,274,280,287,288],gdb_arduino_blinki:12,gdbmacro:7,gdbpath:12,gdbserver:6,gear:101,gen:[27,30],gen_task:238,gen_task_ev:238,gen_task_prio:238,gen_task_stack:238,gen_task_stack_sz:238,gen_task_str:238,gener:[1,11,15,16,17,18,19,20,21,23,27,28,29,31,34,35,43,55,61,62,87,89,90,91,93,99,128,136,173,174,186,199,222,224,227,228,230,235,236,239,240,241,242,244,245,247,248,251,252,253,254,255,256,257,258,259,260,261,262,265,266,267,272,273,276,280,283,286,287,288],get:[2,4,6,7,8,9,10,11,23,55,56,58,59,60,61,64,76,79,81,82,83,85,87,89,90,91,92,93,95,96,97,98,99,100,128,129,133,134,140,150,157,160,163,166,171,179,182,186,190,192,199,206,210,212,222,225,226,235,238,240,241,243,245,247,249,251,252,253,254,255,257,258,260,261,262,265,266,272,273,274,279,280,286,290],gettng:263,gfsk:21,ggdb:6,ghz:[21,266],gist:[134,186],gister_li:210,git:[11,55,58,80,81,82,101,254,266,267,268,269],github:[1,7,10,11,33,55,57,58,59,63,80,81,82,101,183,235,254,266,267,268,269,273,274,282],githublogin:269,githubpassword:269,githubusercont:[11,57,58,59,80,81,82],give:[55,186,222,235,241,244,252,253,262,267,268,274],given:[12,20,42,84,86,87,89,90,96,99,100,128,136,139,145,146,152,182,186,190,192,193,199,206,210,211,241,268],glanc:247,glibc:57,global:[1,29,62,89,90,91,175,205,206,208,223,231,249,273],gmt:100,gnd:[8,262,274,276,286],gnu:[3,4,12,38,47,254,258,260,261,280,287,288],goal:[55,101,285],gobjcopi:6,gobjdump:6,gobl:81,goe:[61,231,265,273],going:[96,222,252,256,273,274],golang:[11,59,82],gone:248,good:[7,9,22,55,91,93,97,128,151,222,244,247,253,262,273],googl:[252,282],gopath:[11,57,58,59,60,80,81,82,83],got:[272,273,274],govern:[273,274],gpg:[57,80],gpio:[8,96,134,188,190,193,238],gpio_ev:238,gpio_l:238,gpl:[4,254,258,260,261,280,287,288],gplv3:[254,260,280,287,288],gpo:181,grab:88,gracefulli:233,graduat:274,grain:9,grant:91,granular:100,graph:[1,50,62,274],graviti:276,great:[8,21,128,224,240,273,274],greater:[21,29,89,179,224],greatest:[128,179],green:[2,10,12,254,258,259,266,276,283],grid:55,ground:[274,276],group:[2,10,20,76,131,134,214,223,225,236,262],grow:[53,241],guarante:[89,90],guard:92,guid:[7,11,12,18,59,62,64,82,208,209,225,236,238,241,246,251,253,263,265,267,283,286],guinea:242,gyro:276,gyro_rev:276,gyroscop:[206,276],h_mynewt_syscfg_:225,hack:[7,9,12,235,240,274],had:[89,92,128,222],hal:[1,7,9,48,55,61,86,95,134,135,176,177,180,181,187,190,192,193,208,238,244,254,258,260,274,276,280,290],hal_bsp:[7,93,134,185,207,254,257,258,260,273,278],hal_bsp_core_dump:182,hal_bsp_flash_dev:[93,135,182,185],hal_bsp_get_nvic_prior:182,hal_bsp_hw_id:182,hal_bsp_init:[182,207],hal_bsp_max_id_len:182,hal_bsp_mem_dump:182,hal_bsp_power_deep_sleep:182,hal_bsp_power_off:182,hal_bsp_power_on:182,hal_bsp_power_perus:182,hal_bsp_power_sleep:182,hal_bsp_power_st:182,hal_bsp_power_wfi:182,hal_common:[7,244,258,260],hal_debugger_connect:191,hal_flash:[7,93,135,152,182,185,254,258,260],hal_flash_align:184,hal_flash_eras:184,hal_flash_erase_sector:184,hal_flash_init:184,hal_flash_ioctl:184,hal_flash_read:184,hal_flash_writ:184,hal_gpio:[7,136,183,186,238],hal_gpio_init_in:186,hal_gpio_init_out:[99,186,238,240,241,256],hal_gpio_irq_dis:186,hal_gpio_irq_en:[186,238],hal_gpio_irq_handler_t:186,hal_gpio_irq_init:[186,238],hal_gpio_irq_releas:186,hal_gpio_irq_trig_t:186,hal_gpio_irq_trigg:186,hal_gpio_mode_:186,hal_gpio_mode_in:186,hal_gpio_mode_nc:186,hal_gpio_mode_out:186,hal_gpio_mode_t:186,hal_gpio_pul:186,hal_gpio_pull_down:186,hal_gpio_pull_non:186,hal_gpio_pull_t:186,hal_gpio_pull_up:[186,238],hal_gpio_read:186,hal_gpio_toggl:[99,186,238,240,256],hal_gpio_trig_both:186,hal_gpio_trig_fal:186,hal_gpio_trig_high:186,hal_gpio_trig_low:186,hal_gpio_trig_non:186,hal_gpio_trig_ris:[186,238],hal_gpio_writ:[183,186,241],hal_i2c_begin:187,hal_i2c_end:187,hal_i2c_init:187,hal_i2c_master_data:187,hal_i2c_master_prob:187,hal_i2c_master_read:187,hal_i2c_master_writ:187,hal_i2c_prob:187,hal_i2c_read:187,hal_i2c_writ:187,hal_os_tick:[189,257,280],hal_reset_brownout:191,hal_reset_caus:[191,278],hal_reset_pin:191,hal_reset_por:191,hal_reset_reason:191,hal_reset_request:191,hal_reset_soft:191,hal_reset_watchdog:191,hal_rtc:151,hal_spi:[136,190],hal_spi_abort:190,hal_spi_config:190,hal_spi_data_mode_breakout:190,hal_spi_dis:190,hal_spi_en:190,hal_spi_init:[136,190],hal_spi_lsb_first:190,hal_spi_mod:190,hal_spi_mode0:190,hal_spi_mode1:190,hal_spi_mode2:190,hal_spi_mode3:190,hal_spi_moden:190,hal_spi_msb_first:190,hal_spi_set:[135,190],hal_spi_set_txrx_cb:190,hal_spi_slave_set_def_tx_v:190,hal_spi_tx_v:190,hal_spi_txrx:190,hal_spi_txrx_cb:190,hal_spi_txrx_noblock:190,hal_spi_type_mast:190,hal_spi_type_slav:190,hal_spi_word_size_8bit:190,hal_spi_word_size_9bit:190,hal_system:191,hal_system_clock_start:191,hal_system_reset:191,hal_system_restart:191,hal_system_start:191,hal_tim:[86,192],hal_timer_cb:[86,192],hal_timer_config:192,hal_timer_deinit:192,hal_timer_delai:192,hal_timer_get_resolut:192,hal_timer_init:192,hal_timer_read:192,hal_timer_set_cb:192,hal_timer_start:192,hal_timer_start_at:192,hal_timer_stop:192,hal_uart:273,hal_uart_blocking_tx:193,hal_uart_clos:193,hal_uart_config:[193,273],hal_uart_flow_ctl:193,hal_uart_flow_ctl_non:[193,273],hal_uart_flow_ctl_rts_ct:193,hal_uart_init:193,hal_uart_init_cb:[193,273],hal_uart_par:193,hal_uart_parity_even:193,hal_uart_parity_non:[193,273],hal_uart_parity_odd:193,hal_uart_rx_char:193,hal_uart_start_rx:193,hal_uart_start_tx:[193,273],hal_uart_tx_char:193,hal_uart_tx_don:193,hal_watchdog_en:194,hal_watchdog_init:194,hal_watchdog_tickl:194,hal_xxxx:181,half:[16,17,93,100],halfwai:128,halgpio:186,halsystem:191,halt:[92,189,190,254,258,260],haluart:193,hand:[222,235,241,265],handbook:[257,261],handi:[93,274],handl:[17,20,27,28,30,61,89,101,134,135,136,152,153,154,155,156,160,161,164,169,170,171,172,179,205,209,210,214,236,238,248,249,250,272,273,274,280],handler:[87,92,93,131,186,210,212,215,217,219,220,238,241,272,273,274,275],happen:[9,20,26,129,140,179,248,251,252,253,254,266,268],happi:[7,9],har:286,hard:[97,130],hardcod:[25,27],hardwar:[2,3,5,6,7,9,20,21,24,25,31,34,86,93,95,96,128,134,173,174,179,182,183,184,185,186,187,189,191,192,193,194,208,222,225,238,241,244,245,252,253,254,256,257,258,259,263,266,267,273,280,290],harm:128,has:[2,3,4,7,10,11,12,20,22,24,26,30,34,36,43,50,55,57,58,59,61,62,77,80,81,82,84,85,86,87,88,89,90,92,93,96,97,98,99,128,129,130,132,134,138,140,152,153,165,169,173,179,186,187,190,192,193,195,208,210,222,223,225,231,233,236,239,241,242,249,250,251,254,256,257,258,262,265,266,267,268,272,273,279,280,287,288,290],hash:[34,37,43,46,71,128,179,222,239,283,286],have:[1,2,3,6,7,8,9,11,12,19,20,22,24,30,32,43,50,52,54,55,57,58,59,60,61,62,64,80,81,82,83,84,87,89,90,92,93,95,96,97,98,99,101,128,130,132,134,135,137,140,143,173,174,179,181,185,186,192,193,214,220,222,223,224,225,234,235,236,238,239,240,242,243,244,245,248,249,251,252,253,254,255,256,257,258,259,260,261,262,265,266,267,268,270,272,273,274,275,276,277,278,279,280,282,283,284,285,286,287,288,290],haven:[3,136,234,268,273,274,290],hci1:245,hci:[21,243],hci_adv_param:247,hci_common:236,hdr:[128,226],hdr_ver:197,head:[11,58,80,81,82,87,89,210,242],header:[1,37,39,46,55,57,58,59,61,93,128,132,140,141,179,183,186,205,207,225,231,236,256,273,274],heading1:242,heading2:242,heading5:242,headless:2,health:252,heap:[90,92,93],heart:241,held:267,hello:[12,69,157,170,193,236,255,266,283,284,286,290],help:[1,8,12,31,34,35,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,67,68,69,70,71,72,73,74,75,76,77,80,81,82,92,94,95,100,134,199,219,222,224,241,242,243,244,247,254,256,257,259,262,263,265,266,269,273,274,276,280,287,288],helper:[1,61,89,94,135,252,253],henc:[128,234],her:92,here:[1,3,8,10,11,29,32,55,73,76,77,84,87,89,90,93,94,97,99,129,130,140,156,157,160,163,171,173,186,190,199,205,206,208,214,222,223,224,225,232,234,235,238,242,245,249,251,252,253,254,256,257,258,261,262,265,266,267,268,273,274,284,290],hertz:86,hex:[7,37,43,48,71,187,222,260,262,272,280],hexidecim:66,hfxo:24,hidapi:4,hidraw:4,hierarchi:[152,225,231],high:[9,18,21,64,86,98,134,186,238,241,287],high_duti:27,higher:[11,14,20,21,55,58,59,72,80,81,82,91,92,98,99,181,205,211,224,225,234,241,245,265,268],highest:[85,91,92,99,224,225,241],highli:234,highlight:[2,6,30,101,235,254,257,259,261,266,274,275,280],hint:55,his:92,histori:224,hit:[36,256],hl_line:[207,208],hog:241,hold:[33,43,63,89,90,156,187,198,208,214,235,241,262,267,274],hole:[179,274],home:[7,11,59,93,222,244,256,265,269,273],homebrew:[4,6,7,11,36,56,60,79,83],homepag:[1,43,61,130,265,273,274],hook:[97,260,273,286],hop:[21,134],host:[7,9,21,22,23,26,29,30,66,70,71,84,87,89,128,212,242,244,245,249,250,251,254,265,266,273,274,275,279,280,287,288],hotkei:287,hour:100,how:[2,3,4,5,6,7,8,11,12,20,21,23,30,55,57,58,59,60,66,80,81,82,83,89,91,93,96,100,128,129,130,140,146,148,166,173,187,190,200,205,207,208,219,222,223,226,229,231,234,235,236,239,240,241,242,243,244,245,248,249,250,252,253,254,255,256,257,258,259,260,261,262,264,265,266,272,273,274,276,277,279,280,282,283,284,285,286,290],how_to_edit_doc:242,howev:[3,57,80,89,96,99,101,128,130,173,179,186,223,239,257,267],htm:245,html:[4,33,63,152,254,258,260,280,287,288],http:[1,4,10,11,12,33,39,55,57,58,59,61,63,80,81,82,101,130,137,183,235,245,252,254,257,258,260,261,265,267,269,273,274,280,286,287,288],httperror404:[57,80],hub:266,human:[245,267],hw_bsp_nativ:61,hw_drivers_nimble_nrf51:222,hw_hal:55,hw_mcu_nordic_nrf51xxx:222,hypothet:20,i2c:[8,134,135,181,276,277,280],i2c_0:[275,276,277,280],i2c_0_itf_bno:207,i2c_0_itf_li:207,i2c_num:187,i2s:254,i2s_callback:254,i386:[4,6],iOS:[248,272,274,275,277,279,282],ibeacon:[23,244,255,290],icon:[10,12],id16:251,id3:[33,63],id_init:225,idcod:254,idea:[61,89,91,97,247],ideal:21,ident:[18,20,22,23,27,30,66,89,101,133,222,223,231],identifi:[1,8,19,20,27,29,34,71,93,99,128,129,179,182,187,252,253,257,259,262,266,274,283,286],idl:[27,77,97,241,244,273,283,286],idx:[27,135,179],ietf:199,if_rw:133,ifdef:[222,225,232,256,280],ifndef:[225,273,274],ignor:[6,27,82,90,152,166,173,225,287],ih_flag:128,ih_hdr_siz:128,ih_img_s:128,ih_key_id:128,ih_mag:128,ih_tlv_siz:128,ih_ver:128,iii:128,illustr:[12,89,91,92,128,241,274,280],imag:[2,6,7,12,31,34,38,39,42,43,47,55,57,58,59,61,64,78,80,81,82,93,94,96,101,130,131,196,197,198,200,201,203,223,224,234,244,248,254,255,256,263,272,273,284,285,287,288,290],image_ec256:[254,257,258,259,260,261,262,266,276,283,284,286],image_ec:[7,254,257,258,259,260,261,262,266,276,283,284,286],image_f_ecdsa224_sha256:128,image_f_non_boot:128,image_f_p:128,image_f_pkcs15_rsa2048_sha256:128,image_f_sha256:128,image_head:128,image_header_s:128,image_mag:128,image_magic_non:128,image_ok:128,image_rsa:[7,254,257,258,259,260,261,262,266,276,283,284,286],image_tlv:128,image_tlv_:128,image_tlv_ecdsa224:128,image_tlv_rsa2048:128,image_tlv_sha256:128,image_valid:[7,254,258,259,261,266,276,283,284,286],image_vers:[128,197,198],img:[37,46,71,235,236,239,240,244,245,248,254,257,258,259,260,261,262,266,273,276,280,283,286,287,288],img_data:204,img_start:191,imgmgr:[7,130,131,152,195,225,236,274],imgmgr_max_ver_str:198,imgmgr_module_init:225,imgr_list:[200,201,203],imgr_upload:204,imgr_ver_jsonstr:198,immedi:[26,87,93,128,169,179,190,192,242,247,252,253],impact:[24,179],impl:61,implemen:66,implement:[9,10,21,32,61,66,87,89,90,93,95,96,128,129,130,131,151,152,173,179,181,183,185,186,187,188,189,190,191,195,199,206,207,209,211,213,214,220,225,231,238,246,249,251,252,262,265,274,275,276,280],impli:[252,253,265,268,273,274],implicit:265,impos:[128,173,174,179],imposs:[19,175],impract:251,impress:274,improv:256,imuplu:276,inc:[4,254,260,280,287,288],includ:[1,4,7,9,10,14,15,16,17,19,20,21,22,26,27,28,31,43,50,59,61,84,87,89,90,91,93,95,96,97,98,99,100,128,130,133,134,135,136,138,151,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,187,190,192,193,195,205,206,207,210,211,212,214,222,224,225,231,235,236,238,239,241,245,246,247,249,252,253,257,265,267,268,273,274,275,276,278,279,280,285,287],include_tx_pow:27,incom:[20,87,193,195,214,215,217,238],incompat:[57,80,267],incomplet:[29,93,159],incomplete_block_test:265,incorrect:[42,100],incr:182,increas:[21,22,89,179,214,215,219,225,241,287],increasin:140,increment:[89,100,129,179,223],incub:[7,55,183,225,235,274],inde:[92,260],indefini:[252,253],indent:6,independ:[22,96,128,134,181,182,184,186,187,189,191,192,193,194,225,273],indetermin:265,index:[31,72,128,245],indian:100,indic:[7,10,19,20,26,28,29,30,87,90,93,97,128,130,132,152,158,160,167,179,186,187,192,204,211,214,219,222,224,225,239,249,251,254,257,258,261,265,266,280,282],indirect:274,individu:[11,99,128,129,134,186,225,230,236,267],industri:[21,151],ineffici:179,infinit:[87,90,92,225,241,256],info:[39,57,58,59,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,90,99,140,141,145,219,239,250,254,258,260,261,266,272,274],inform:[1,6,7,12,20,22,23,27,29,34,37,39,40,57,58,59,61,62,64,66,71,80,81,82,87,89,90,93,95,96,99,100,128,132,133,145,179,205,206,208,209,219,222,223,225,234,235,238,239,241,244,247,250,251,252,253,254,256,262,267,268,269,273,274,276,280,283,286,288],infrastructur:244,ing:[134,252,253],inher:[1,23,249],inherit:[1,4,59,91,175,206],ininclud:223,init:[50,55,207,211,225,273,274],init_app_task:92,init_func_nam:225,init_funct:225,init_stag:225,init_task:[238,241],init_tim:[256,280],initi:[16,19,21,23,25,26,27,28,61,84,86,87,89,90,91,92,93,97,98,99,129,130,134,138,146,152,167,176,177,178,179,181,182,184,186,187,190,192,193,196,199,203,205,207,210,211,212,214,215,219,231,232,236,238,240,245,246,250,252,253,256,265,272,273,274,275,276,280],initialis:[208,254],inod:[173,175],inoper:[26,252,253],input:[20,22,27,100,134,181,186,190,238,260,265,287],inquiri:[20,29],insert:[99,179],insid:[24,89,92,161,182,256,260,265],insight:[134,241],inspect:[48,128,129,250],instal:[3,7,9,33,39,54,55,63,78,92,93,94,136,210,236,238,239,240,241,243,244,245,254,255,257,258,259,260,261,265,266,268,270,273,275,276,277,279,280,282,283,284,285,286,287,290],instanc:[2,3,9,27,62,89,175,176,177,179,205,223,247,252,253,254],instant:20,instantan:241,instanti:[92,134],instantli:98,instead:[7,11,12,24,87,90,98,128,130,222,225,236,238,248,254,256,257,258,259,260,261,265,269,272,273,274,275,278],instruct:[3,4,7,11,55,57,62,80,85,96,236,238,254,257,261,275,276,277,278,280,284,287,288],insuffici:[20,89,167],insur:[90,99],int16_t:100,int32_max:27,int32_t:[84,100,193,252,253],int64_t:100,int8:129,int_max:89,integ:[199,206,223,225],integr:[12,22,90,179,187,223],intellig:181,intend:[24,29,36,176,177,187,234],inter:[179,187,238],interact:[2,8,130,132,195,248,256,263,287],interchang:199,interconnect:[9,132],interdepend:[129,225],interest:[7,14,18,89,93,181,222,240,244,247,252,290],interfac:[4,18,21,30,31,89,99,128,133,134,135,136,151,152,181,182,184,186,187,189,190,191,193,194,205,208,209,235,243,245,246,254,258,260,273,276,277,280,286],intermedi:[159,160,166],intern:[7,20,89,92,93,97,134,135,140,167,176,177,178,185,192,194,195,199,215,219,254,274],internet:[7,12,21,236,238,239,245,255,266,282,285],interoper:[132,133],interpret:[137,139,206,210],interrog:274,interrupt:[86,87,93,128,182,186,189,190,192,193,274],interrupt_prior:274,interv:[20,27,29,97,99,206,210,211,238,276,280],interval_max:27,interval_min:27,intervent:96,intial:219,intiat:93,introduc:[1,30,179,224,225],introduct:[241,290],introductori:282,intuit:128,invalid:[20,86,128,136,142,152,153,167,171,172,179,190,192,249,265],invers:[91,98],invert:98,invoc:[6,251],invok:[2,265,269,280],involv:[16,17,19,22,93,96,181,187,265],io_cap:27,ioctl:152,iot:21,iotiv:275,ipsp:21,ipv6:21,irk:[19,27],irq:186,irq_num:182,irq_prio:[135,136],isbuildcommand:12,ism:21,ismylaptop:[273,274],isn:[93,179,244],isol:[93,222],isshellcommand:12,issu:[1,6,30,55,66,92,98,128,132,152,173,179,187,236,257,258,259,261,262,270,273,274],ist:100,it_len:128,it_typ:128,ital:242,ite_chr:249,item:[1,87,93,129,180,210,253],iter:[90,99,128,154,155,156,161,164,179,211],itf:208,its:[7,10,11,18,19,20,55,61,85,87,89,90,91,92,93,96,97,99,128,130,135,140,158,168,171,173,174,179,186,187,190,205,222,223,224,225,226,231,235,239,240,241,242,243,244,247,249,250,251,252,253,262,267,273,278,284,290],itself:[26,61,89,90,99,128,134,138,140,180,195,200,211,225,235,257,265,273,274],iv_build_num:128,iv_major:128,iv_minor:128,iv_revis:128,jan:100,javascript:55,jb_read_next:199,jb_read_prev:199,jb_readn:199,je_arg:199,je_encode_buf:199,je_wr_comma:199,je_writ:199,jira:10,jlink:[61,93,239,257,259,266,276,280,283],jlink_debug:61,jlink_dev:61,jlinkex:[257,259,262,274],jlinkgdbserv:[280,287],job:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,85,92,93,214,249],join:[3,134,234,266,290],json:[7,12,34,37,51,55,61,201,202,203,204,235,236,240,265,273],json_array_t:199,json_attr_t:[199,204],json_buff:[199,204],json_buffer_read_next_byte_t:199,json_buffer_read_prev_byte_t:199,json_buffer_readn_t:199,json_decod:[204,265],json_encod:[198,199,200,201,202,203,265],json_encode_object_entri:[201,202,203],json_encode_object_finish:[200,203],json_encode_object_start:[200,201,202],json_enum_t:199,json_read:199,json_read_object:199,json_simple_decod:265,json_simple_encod:265,json_typ:199,json_valu:[199,200,201,202,203],json_value_int:[199,202],json_value_str:199,json_value_stringn:199,json_write_func_t:199,jtag:[4,38,42,47,254,257,258,260,266,280,286],jul:80,jump0:67,jump:[128,222],jumper:[8,235,260,273,274,286],just:[1,7,8,20,22,23,62,84,87,93,94,99,100,128,135,136,151,166,171,222,235,248,249,252,253,254,256,262,269,270,273,274],jv_len:199,jv_pad1:199,jv_type:199,jv_val:199,k30:[272,273],k64f:53,keep:[9,22,24,92,128,130,134,140,179,190,207,214,215,219,222,235,240,241,265,274],keg:[60,83],kei:[8,19,20,21,31,37,46,57,80,93,128,129,179,198,199,200,202,225,249,262,266,273,276],kept:[85,128,140],kernel:[1,7,9,51,55,61,93,130,134,181,211,222,225,238,244,245,273,274,275,276,278,280],kernel_o:222,keyboard:[12,22,130],keyboarddisplai:27,keyboardonli:27,keychain:[57,80],keystor:27,keyword:[1,61,94,130,265,267,273,274],khz:[190,254,258],kick:[97,252,253],kilobyt:96,kind:[31,134,273,274,287],kit:[8,47,61,235,239,240,255,257,274,287,288,290],klibc:101,know:[1,8,12,30,61,130,206,210,223,224,241,249,250,252,253,255,256,266,273,274,285,290],known:[21,55,100,160,161,179,241,247],l13:257,l2cap:21,lab:32,label:[8,93,260,274],lack:[140,151,222],lag:251,languag:[11,12,55,96,137,273,274],laptop:[3,8,235,236,238,240,245,262,273,274],larg:[20,24,31,89,99,100,222,223,241],large_system_test:265,large_unlink_test:265,large_write_test:265,larger:[10,31,89,226],largest:[89,242],las_app_port:262,las_app_tx:262,las_join:262,las_link_chk:262,las_rd_app_eui:262,las_rd_app_kei:262,las_rd_dev_eui:262,las_rd_mib:262,las_wr_app_eui:262,las_wr_app_kei:262,las_wr_dev_eui:262,las_wr_mib:262,last:[20,26,72,77,89,90,97,99,128,148,179,193,201,206,214,219,225,247,251,252,253,254,262,266,274,276,278,280],last_checkin:[77,283,286],last_n_off:148,last_op:187,last_read_tim:208,latenc:27,later:[7,8,72,84,89,128,231,240,244,250,254,262,265,274,280,287,288],latest:[1,2,4,7,10,11,49,52,55,56,60,79,83,129,235,254,266,267,268,273,274],latex:[173,179],latter:[20,89,132,173],launch:12,launchpad:4,law:[254,273,274,280,287,288],layer:[9,20,21,89,90,95,96,134,152,162,165,173,180,193,208,209,225,238,246,274,290],layout:[96,128,174,286],lc_f:207,lc_pull_up_disc:207,lc_rate:207,lc_s_mask:207,lcheck:273,ld4:258,ldebug:224,ldflag:50,ldr:260,le_elem_off:145,lead:[89,92,250,274],leadingspac:89,leak:[160,161],learn:[7,26,61,235,240,255,282],least:[22,89,97,128,179,190,192,236,256,262,274,290],leav:[89,135,148,222],led1:[238,259],led2:238,led3:238,led:[1,7,61,93,96,99,134,181,186,236,238,241,245,254,255,256,257,258,259,260,261,266,273,274,276,283,286,290],led_blink_pin:[93,99,240,241,256],led_blink_pin_1:240,led_blink_pin_2:240,led_blink_pin_3:240,led_blink_pin_4:240,led_blink_pin_5:240,led_blink_pin_6:240,led_blink_pin_7:240,led_blink_pin_8:240,led_pin:240,left:[86,90,99,145,198,222,260,272,280,290],legaci:[30,151,225,241],len:[89,135,140,141,162,163,170,171,172,187,190,199,204,249,262,273],length:[20,21,27,89,93,128,130,140,156,157,176,179,182,198,249,262],less:[92,101,128,179,251,252,253],lesser:179,lesson:[241,290],let:[4,8,55,89,93,205,222,223,235,241,244,246,247,248,249,250,251,252,253,256,260,265,267,268,272,273,274,280],level:[1,2,9,14,18,20,23,27,29,30,31,32,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,89,91,93,131,134,135,152,173,174,181,208,224,225,234,248,249,252,253,254,258,262,265,266,268,272,273,274],level_list:72,leverag:[132,134,243,274],lflag:[1,50,61],lib:[1,4,45,53,55,82,101,130,152,180,224,225,273,274],libc6:6,libc:[7,93,101],libc_baselibc:[222,260],libftdi1:4,libftdi:4,libg:48,libgcc:[48,222],libhidapi:4,librari:[1,4,48,50,55,58,81,87,89,93,94,96,101,128,130,134,152,160,180,181,195,222,223,231,244,265,267,268,273,274,275],libusb:4,libusb_error_access:258,libusb_open:258,licens:[4,7,11,55,61,101,134,244,254,258,260,261,266,267,273,274,280,287,288],lieu:66,life:[24,252],light:[9,31,181,206,235,238,240,255,258,259,260,261,275,276,283,286],lightblu:[248,272,274],lightweight:151,like:[2,3,5,8,12,31,55,58,59,62,81,82,89,92,93,96,97,98,101,128,130,134,140,181,187,223,235,240,244,254,258,260,265,267,273,274,275,277,278,280,282,286,287,288],likewis:[62,179],limit:[3,20,27,29,99,101,135,151,215,219,222,236,247,252,273,274,287],limt:223,line:[2,6,7,10,12,36,38,39,47,62,93,101,130,186,223,229,235,240,245,251,256,258,259,267,269,273,274,275,276,280,287],linear:179,linearacc:276,lines_queu:130,link:[2,3,7,20,21,22,27,34,38,42,60,61,81,83,85,89,179,192,214,222,225,231,234,235,244,245,248,253,254,256,257,258,259,260,261,262,266,273,274,276,280,283,284,286,287,288,290],linker:[1,61,94,101,222,244,260],linkerscript:[61,93],linux:[5,7,9,12,56,66,78,79,135,239,245,254,256,257,258,260,261,266,276,283,284,285,286],liquid:274,lis2dh12:[207,280],lis2dh12_0:[207,280],lis2dh12_cfg:207,lis2dh12_config:207,lis2dh12_data_rate_hn_1344hz_l_5376hz:207,lis2dh12_fs_2g:207,lis2dh12_init:207,lis2dh12_onb:280,list:[3,6,7,8,12,22,27,29,34,35,48,50,51,53,57,59,61,66,71,72,73,75,76,77,78,80,85,87,89,90,93,94,95,99,128,130,131,134,136,179,180,192,205,214,223,225,226,229,234,235,239,240,244,247,250,251,254,255,256,257,258,259,260,261,262,267,268,273,274,278,283,284,286,290],listen:[2,14,30,31,66,89,206,211,222,247],listener_cb:280,lit:[236,240,241,245],littl:[6,20,23,89,128,235,240,244,251,262,268,273],live:[134,235,250,251,254,266,267,268],lma:260,lmp:20,load:[2,4,5,7,12,34,39,43,47,55,57,58,59,61,93,128,129,191,222,235,238,239,240,241,248,255,256,262,268,272,273,274,287,288],load_arduino_blinki:12,load_arduino_boot:12,loader:[10,43,50,93,128,130,191,254,257,258,259,261,266,276,283,284,286],loc:[141,145,150],local:[1,4,6,7,10,11,20,27,28,36,40,49,55,58,60,71,81,83,94,99,100,242,247,254,266,278],localhost:[66,280,287],locat:[1,8,11,19,31,61,89,93,128,140,145,179,187,231,241,251,256,260,266,267,273,276,283,284,286],lock:[9,88,92,98,140,206,211,238],log:[1,7,10,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,66,67,68,69,70,71,73,74,75,76,77,78,80,81,82,128,131,132,150,159,166,180,181,214,222,224,225,235,236,244,254,257,258,260,261,263,273,274,278,280,284,287],log_cbm_handl:205,log_cbmem_handl:205,log_cli:[214,263],log_console_handl:[205,208],log_debug:205,log_error:208,log_fcb:225,log_fcb_handl:205,log_handl:205,log_info:208,log_init:225,log_level:[50,205,225,239,263],log_level_debug:205,log_level_error:205,log_module_bno055:208,log_module_default:205,log_nam:72,log_newmgr:224,log_newtmgr:[50,224,225,236],log_nmgr_register_group:225,log_regist:[205,208],log_shel:235,log_syslevel:[205,208],logic:[1,21,23,29,128,174,193,262,273],login:269,loglevel:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,273],logxi:81,long_filename_test:265,longer:[3,8,11,21,24,90,210,224,245,273,275],longjmp:233,longrange_interv:27,longrange_pass:27,longrange_window:27,look:[8,10,24,55,61,93,95,99,101,128,130,131,187,199,204,222,223,235,240,241,242,247,249,250,251,265,268,270,272,273,274,278,280,290],lookup:[211,220,249,280],loop:[84,87,92,99,154,155,156,161,164,225,236,241,244,256,272,273,274],lora:262,lora_app_shel:262,lora_app_shell_telee02:262,lora_app_shell_telee0:262,lora_mac_timer_num:262,lose:26,loss:[26,29,182],lost:[97,179],lost_found_test:265,lot:[7,222,224,247,265,274],low:[9,20,21,22,31,86,89,93,98,135,152,181,186,190,191,208,241,249,252,253,254,255,258,266,290],lower:[20,86,91,92,98,99,224,225,239,241,246,256,260],lowest:[73,85,90,99,179,225,241],lowpow:276,lru:179,lrwxr:[4,81],lsb:187,lst:[34,55,61],ltbase:225,ltd:27,ltk:27,ltk_sc:27,ltrequir:225,lua:[137,138,139],lua_cmd:139,luckili:273,m32:6,m4g:276,mac:[3,5,7,9,12,20,55,56,78,79,235,239,240,245,248,254,256,257,258,260,261,262,266,272,274,276,283,284,285,286],machin:[2,3,7,8,94,245,290],maco:[4,66],macro:[20,89,90,93,97,199,206,208,223,225,231,241,251,265,274],made:[2,10,11,20,55,71,99,128,187,241,242,262,274],mag:276,mag_rev:276,maggyro:276,magic:[61,128,140,179],magnet:[206,276],magnetomet:208,mai:[2,4,6,7,8,12,22,27,29,30,31,51,53,57,58,62,80,81,82,85,87,89,90,92,93,96,101,128,130,132,134,161,179,181,186,187,192,205,206,207,208,210,211,222,223,224,225,226,229,231,236,241,244,245,254,256,257,258,259,260,261,262,266,267,273,274,276,280,283,286,287],mail:[3,10,134,234,235,240,244,255,274,290],main:[7,12,26,31,57,61,77,80,87,89,92,95,99,128,130,138,176,177,197,206,211,214,216,221,225,230,232,236,238,240,244,247,252,253,254,257,258,259,260,261,265,272,273,274,276,283,284,286],mainli:222,maintain:[4,49,85,128,134,179,206,211,225,265,267,268],mainten:[132,223],major:[55,61,96,197,241,253,267,268],major_num:[267,268],make:[1,2,3,7,8,9,19,20,21,24,30,31,33,55,57,63,71,85,89,90,93,128,134,140,141,173,179,181,198,205,222,223,235,239,240,241,243,244,245,247,249,250,252,253,254,256,260,262,265,267,272,273,274,275,280,290],makerbeacon:236,malloc:[88,90,93,101,241,274],man:[6,27,101],manag:[6,8,16,17,21,27,31,39,45,57,58,59,61,64,66,68,71,72,73,76,77,80,81,82,87,90,92,93,94,96,99,128,130,134,181,196,199,206,208,209,210,222,225,239,256,257,263,266,268,276,280,283,285,286,290],mandatori:[20,93,226,251,252,253],mani:[20,31,55,61,89,93,95,128,140,148,160,161,181,192,249,254,267],manifest:[34,37,43,55,61,235,236,240,273],manipul:[1,39,45,89],manner:[27,29,89,92,128,181],manual:[21,25,60,83,90,92,99,101,173,222,229,235,254,260,280,286,287,288],manufactur:[19,27,29,39,43,57,58,59,66,222,247,254,266],many_children_test:265,map:[2,3,8,20,27,28,61,96,134,135,160,181,185,186,193,199,222,224,225,249,256,266,267,268,276,283,286,287],mar:[100,257,259,262,274,280],march:68,mark:[27,28,71,93,260],marker:93,market:[31,259],mask:[27,206,208,210,211,278,280],mass:[245,258],mass_eras:[257,258],master:[1,7,11,27,56,57,59,60,79,80,82,83,134,181,183,187,190,242,254,266,267,268],match:[2,7,20,93,94,96,128,210,211,222,254,258,266,267,268],matter:10,max:[156,198,199],max_cbmem_buf:205,max_conn_event_len:27,max_ev:27,max_len:[156,162,182],max_protohdr:89,maxim:9,maximum:[21,27,29,89,128,130,173,175,179,182,198,214,215,219,265,287],mayb:[287,288],mb_crc:273,mb_crc_check:273,mb_crc_tbl:273,mbed:[257,261],mbedtl:[7,254,257,259,261,266,283,284,286],mblehciproj:245,mblen:89,mbuf:[92,199,277],mbuf_buf_s:89,mbuf_memblock_overhead:89,mbuf_memblock_s:89,mbuf_mempool_s:89,mbuf_num_mbuf:89,mbuf_payload_s:89,mbuf_pkthdr_overhead:89,mbuf_pool:89,mbuf_usage_example1:89,mbuf_usage_example2:89,mcu:[7,9,53,94,97,134,135,181,186,189,190,191,192,193,195,235,240,241,254,257,266,280],mcu_gpio_porta:135,mcu_sim_parse_arg:[256,280],mdw:260,mean:[2,12,20,89,91,97,98,99,100,128,135,175,190,201,203,225,233,251,258,268,273,274],meaning:[138,193],meant:[1,97,129],measur:[9,241,262],mechan:[1,22,92,222,225,238,267,269,273,274],medic:[21,55],medium:167,meet:[207,239,245,254,255,257,258,259,260,261,276,278,279,280,282,283,284,285,286],mem:[7,225],member:[84,87,89,90,91,97,98,99,100,130,187,190,192,247,249],membuf:90,memcmp:89,memcpi:249,memori:[9,20,48,73,87,88,89,92,93,96,97,101,128,132,134,135,151,167,173,174,178,179,181,182,184,187,215,219,224,236,238,241,249,260,262,263,284,287],mempool:[64,80,81,82,89,90,214,273],memset:[207,247,250,253,274],mention:[12,179,206,274],menu:[12,59,258,260,286],merchant:4,merci:90,merg:242,mesh:32,messag:[2,4,22,31,42,57,58,59,75,130,132,133,166,214,217,218,226,238,254,258,262,266,273],messi:274,messsag:62,met:[20,236,238,266],meta:[8,266,276],metadata:[43,128,167],meter:21,method:[25,89,99,133,173,183,186,190,205,214,223,249,267],mfg:[7,39,57,58,59,70,225],mfg_data:29,mfg_init:225,mgmt:[7,130,132,190,196,214,224,225,236,273,274],mgmt_evq_set:236,mgmt_group_id_config:131,mgmt_group_id_crash:131,mgmt_group_id_default:131,mgmt_group_id_imag:131,mgmt_group_id_log:131,mgmt_group_id_runtest:131,mgmt_group_id_stat:131,mgmt_imgmgr:222,mgmt_newtmgr_nmgr_o:222,mgutz:81,mhz:[21,24],mib:[55,81,262],mic:20,micro:[55,239,241,254,255,257,259,260,262,266,274,276,282,283,285,286,287,288],microcontrol:[9,101,128,260,286],microsecond:[24,86,100],microsoft:12,mid:[14,128,258],middl:[27,128,179,274],might:[1,2,18,20,61,93,96,130,134,179,181,187,208,222,224,244,246,247,252,253,254,258,267,268,270,280,287,288],migrat:[179,225],milisecond:27,millisecond:[27,100,262],millivolt:274,min:[72,73,128,266,284],min_conn_event_len:27,mind:[97,244],mingw32:59,mingw64:59,mingw:[4,7,8,12,56,82,256,266,276,283,286],mini:258,minicom:[8,256,266,273,276],minim:[93,134,151,152,173,179,208,244],minimum:[27,29,72,89,90,128,179,244],minor:[197,253,267,268],minor_num:[267,268],minu:89,minut:[81,100,252,265],mip:[7,61],mirror:[1,10,11,267,273,274],misc:276,mislead:6,mismatch:[20,89],miso:190,miso_pin:[135,136],miss:[20,57,93,224,235,240,244,255,274],misspel:224,mitm:27,mk64f12:[134,181],mkdir:[11,43,80,82,93,235,254,257,258,259,260,261,262,266,267,273,274],mkdir_test:265,mkdoc:242,mkr1000:264,mkr1000_boot:266,mkr1000_wifi:266,mlme:262,mman:57,mmc0:[136,152],mmc:151,mmc_addr_error:136,mmc_card_error:136,mmc_crc_error:136,mmc_device_error:136,mmc_erase_error:136,mmc_init:136,mmc_invalid_command:136,mmc_ok:136,mmc_op:[136,152],mmc_param_error:136,mmc_read_error:136,mmc_response_error:136,mmc_timeout:136,mmc_voltage_error:136,mmc_write_error:136,mn_socket:7,mobil:31,mod:[30,248],modbu:273,mode:[9,20,22,27,29,134,158,160,167,168,170,181,182,186,190,193,208,222,247,254,258,260,265,276],model:[21,22,32,87,195,257],modern:[8,151],modif:[11,235,265,275],modifi:[6,62,89,93,100,133,192,240,241,273,274,279,282],modul:[72,86,90,92,101,132,137,205,215,219,221,256,262,286],module_list:72,module_nam:[219,221],modulo:100,moment:[135,187,195,249,268],mon:[254,257,258],monitor:[89,130,132,140,212,223,260,275,282,290],monolith:251,month:265,more:[1,4,7,9,10,12,20,21,22,29,30,34,35,39,43,51,53,57,58,59,61,62,64,80,81,82,85,87,89,92,93,98,99,100,101,128,129,134,141,145,152,163,164,179,190,193,199,205,206,207,208,209,214,222,225,226,239,240,241,244,247,251,252,253,254,256,257,262,265,266,268,272,273,274,276,280,283,286,287,290],mosi:190,mosi_pin:[135,136],most:[1,8,14,19,21,23,24,25,61,89,93,94,99,101,128,179,183,190,222,224,241,247,265,272,273,274,276,278,280],mostli:[6,9,222,252,253],motor:9,mou:242,mount:[165,274],mous:[134,181],move:[8,45,57,58,59,81,92,100,128,166,182,222,256,260,274,275,277,280],mp_block_siz:90,mp_flag:90,mp_membuf_addr:90,mp_min_fre:90,mp_num_block:90,mp_num_fre:90,mpe:90,mpool:[219,262],mpstat:[64,78,80,81,82,131,133,236,284],mq_ev:89,mqeueue:89,msb:187,msdo:93,msec:[27,194],msg:229,msg_data:27,msp:[254,260],msy:59,msys2:56,msys2_path_typ:59,msys64:59,msys_1:[73,284],msys_1_block_count:[275,277],msys_1_block_s:[275,277],mtd:135,mtu:[10,20,27,28,248],mu_level:91,mu_own:91,mu_prio:91,much:[89,93,98,101,146,179,273],multi:[1,9,50,62,96,99,187],multilib:[6,7,57],multipl:[4,23,27,29,34,35,50,51,55,84,91,92,97,101,129,132,134,181,190,211,225,247,251,252,267],multiplex:21,multiplexor:96,multipli:[90,241],multitask:[92,241],must:[1,2,4,5,7,8,9,11,12,14,22,24,25,33,37,41,46,53,55,57,59,61,63,66,68,71,80,86,87,89,90,92,93,96,97,99,128,129,130,136,140,148,152,159,160,162,166,173,174,175,176,178,179,180,187,190,192,193,197,198,199,205,206,207,208,210,211,212,214,215,216,219,223,224,225,232,235,236,239,241,244,247,249,256,259,260,262,266,267,268,273,274,276,277,278,279,280,283,286,287],mutex:[88,92,98,99],mutual:91,my_at45db_dev:135,my_blinki:50,my_blinky_sim:[7,34,35,43,55,61,244,245,257,258,273],my_blocking_enc_proc:20,my_callout:238,my_conf:129,my_config_nam:225,my_driv:[273,274],my_ev_cb:238,my_eventq:236,my_gpio_irq:238,my_interrupt_ev_cb:238,my_memory_buff:90,my_new_target:50,my_newt_target:50,my_packag:205,my_package_log:205,my_pool:90,my_proj1:244,my_proj:244,my_project:[1,254,266,267,274],my_protocol_head:89,my_protocol_typ:89,my_result_mv:274,my_sensor:280,my_sensor_devic:280,my_sensor_poll_tim:280,my_stack_s:99,my_stat:223,my_stat_sect:223,my_target1:62,my_task:99,my_task_evq:89,my_task_func:99,my_task_handl:89,my_task_pri:99,my_task_prio:99,my_task_rx_data_func:89,my_task_stack:99,my_timer_ev_cb:238,my_timer_interrupt_eventq:238,my_timer_interrupt_task:238,my_timer_interrupt_task_prio:238,my_timer_interrupt_task_stack:238,my_timer_interrupt_task_stack_sz:238,my_timer_interrupt_task_str:238,my_uart:193,myadc:274,myapp1:287,myapp:223,myapp_cmd:220,myapp_cmd_handl:220,myapp_console_buf:130,myapp_console_ev:130,myapp_init:130,myapp_process_input:130,myapp_shell_init:220,mybl:[34,35,46,50,66,73,76,77,236],myble2:[37,38,245],myblehostd:66,mybleprph:[66,239],mybletyp:66,myboard:[45,93],myboard_debug:93,myboard_download:93,mycmd:221,myconn:236,mycor:71,mydata:89,mydata_length:89,mylora:262,mymcu:95,mymfg:70,mymodul:97,mymodule_has_buff:97,mymodule_perform_sanity_check:97,mymodule_register_sanity_check:97,mynewt:[1,3,4,5,6,11,13,20,21,25,30,32,37,38,39,43,44,50,51,53,55,56,57,59,60,61,62,71,78,79,80,82,83,84,86,87,88,97,98,99,100,101,128,129,132,133,134,151,152,173,180,181,182,183,186,187,190,193,205,208,214,216,222,223,224,225,231,234,235,236,238,239,241,243,245,246,248,252,253,254,255,256,257,258,259,260,261,262,263,265,266,268,272,273,274,276,279,280,283,284,285,286,287,288,290],mynewt_0_8_0_b2_tag:[267,268],mynewt_0_8_0_tag:267,mynewt_0_9_0_tag:267,mynewt_1_0_0_b1_tag:267,mynewt_1_0_0_b2_tag:267,mynewt_1_0_0_rc1_tag:267,mynewt_1_0_0_tag:267,mynewt_1_3_0_tag:[57,59,80,82],mynewt_arduino_zero:[254,266,267],mynewt_nord:274,mynewt_stm32f3:235,mynewt_v:[130,214,219,223,225,265,274],mynewt_val_:225,mynewt_val_log_level:225,mynewt_val_log_newtmgr:225,mynewt_val_msys_1_block_count:225,mynewt_val_msys_1_block_s:225,mynewt_val_my_config_nam:225,mynewtl:275,mynewtsan:75,myperiph:[239,248],mypool:90,myproj2:222,myproj:[2,7,12,93,235,239,240,254,256,257,258,259,260,261,267,273,275,276,280,288],myriad:9,myseri:[73,76,77],myserial01:66,myserial02:66,myserial03:66,mytask:241,mytask_handl:241,mytask_prio:241,mytask_stack:241,mytask_stack_s:241,myudp5683:66,myvar:65,n_sampl:276,nad_flash_id:174,nad_length:174,nad_offset:174,nak:187,name1:50,name2:50,name:[1,2,4,7,8,10,11,12,20,21,27,29,34,35,37,38,42,43,44,45,47,48,50,51,53,55,57,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,90,93,94,95,97,99,100,101,129,130,134,152,154,155,156,159,160,161,164,180,181,186,198,199,200,202,204,205,206,207,208,209,211,215,219,220,221,222,224,227,228,230,235,236,238,241,244,247,249,251,252,253,254,256,257,258,259,260,261,265,266,267,268,269,273,274,275,276,277,280,283,284,286,287],name_is_complet:247,name_len:[154,155,156,161,164,247],namespac:[88,129,214,252],nano2:[43,53,93,261],nano2_debug:[93,261],nano:[255,290],nanosecond:[86,192],nativ:[2,3,7,12,43,50,53,55,59,61,66,190,224,225,235,238,245,257,258,266,273,274,284,290],natur:[93,179],navig:[10,290],nb_data_len:179,nb_hash_entri:179,nb_inode_entri:179,nb_prev:179,nb_seq:179,nbuf:89,nc_num_block:175,nc_num_cache_block:175,nc_num_cache_inod:175,nc_num_fil:175,nc_num_inod:175,ncb_block:179,ncb_file_offset:179,ncb_link:179,ncheck:273,nci_block_list:179,nci_file_s:179,nci_inod:179,nci_link:179,nda_gc_seq:179,nda_id:179,nda_length:179,nda_mag:179,nda_ver:179,ndb_crc16:179,ndb_data_len:179,ndb_id:179,ndb_inode_id:179,ndb_magic:179,ndb_prev_id:179,ndb_seq:179,ndi_crc16:179,ndi_filename_len:179,ndi_id:179,ndi_mag:179,ndi_parent_id:179,ndi_seq:179,nding:251,ndof:276,ndof_fmc_off:276,nearest:257,neatli:247,necessari:[6,24,39,47,57,58,59,89,128,152,179,233,235,244,249,254,262,265,274],need:[4,5,6,7,8,9,10,11,12,14,23,24,32,43,50,52,55,57,58,59,60,61,64,66,80,81,83,84,88,89,90,91,92,93,95,96,97,98,99,128,130,135,140,141,142,152,179,191,194,205,206,208,209,210,211,214,220,222,223,224,225,229,236,238,239,241,244,245,247,249,250,251,252,253,254,256,257,258,259,260,261,265,266,268,269,272,275,277,280,283,284,286],neg:[89,100,179,251],neither:89,ness:190,nest:[91,159],net:[4,7,24,51,212,225,244,245,249,251,266,273,274,275,277,279],net_nimble_control:222,net_nimble_host:222,network:[1,9,23,27,31,32,55,89,92,222,241,262,266],never:[19,92,97,99,166,179,225,241,244,249],nevq:87,new_bletini:45,new_pool:89,new_slinki:45,newer:6,newest:[140,224,241],newli:[1,10,19,43,128,160,245,252,253,267],newlib:101,newlin:130,newt:[1,3,5,6,7,13,32,56,61,62,73,76,77,80,81,82,83,92,93,94,96,134,222,223,224,225,231,235,237,238,239,240,241,243,244,245,248,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,273,274,275,276,277,278,280,282,283,284,285,286,287,288,290],newt_1:[57,60],newt_1_1_0_windows_amd64:60,newt_1_3_0_windows_amd64:59,newt_group:2,newt_host:2,newt_us:2,newtgmr:[81,82,83],newtmgr:[1,7,9,10,13,57,58,59,63,64,78,79,130,131,133,195,205,217,218,222,224,225,238,273,274,285,290],newtmgr_1:[80,83],newtmgr_1_1_0_windows_amd64:83,newtmgr_1_3_0_windows_amd64:82,newtmgr_shel:214,newtron:[152,180,224,225],newtvm:11,next:[7,8,24,30,71,77,82,85,89,90,99,128,130,132,140,145,154,155,156,161,164,179,195,199,206,210,211,222,225,233,239,240,241,242,244,247,251,252,253,254,257,260,268,272,273,274],next_checkin:[77,283,286],nff:[7,101,135,152,174,175,176,177,178,180,188,224,225,231,265],nffs_area_desc:[173,176,177,226],nffs_area_mag:179,nffs_area_max:[176,177],nffs_block:179,nffs_block_cache_entri:179,nffs_block_cache_list:179,nffs_block_mag:179,nffs_cache_block:179,nffs_cache_block_list:179,nffs_cache_inod:179,nffs_close:180,nffs_closedir:180,nffs_detect:[177,179],nffs_detect_fail:[152,173],nffs_dirent_is_dir:180,nffs_dirent_nam:180,nffs_disk_area:179,nffs_disk_block:179,nffs_disk_inod:179,nffs_file_len:180,nffs_flash:188,nffs_flash_area:[224,225],nffs_format:[176,179,226],nffs_getpo:180,nffs_hash_entri:179,nffs_id_non:179,nffs_init:[175,176,177,180],nffs_inod:179,nffs_inode_entri:179,nffs_inode_list:179,nffs_inode_mag:179,nffs_intern:173,nffs_mkdir:180,nffs_op:180,nffs_open:180,nffs_opendir:180,nffs_read:180,nffs_readdir:180,nffs_renam:180,nffs_seek:180,nffs_short_filename_len:179,nffs_test:265,nffs_test_debug:265,nffs_test_priv:265,nffs_test_system_01:265,nffs_test_unlink:226,nffs_test_util:265,nffs_unlink:180,nffs_write:180,nhe_flash_loc:179,nhe_id:179,nhe_next:179,ni_filenam:179,ni_filename_len:179,ni_inode_entri:179,ni_par:179,ni_seq:179,nice:[223,272],nie_child_list:179,nie_hash_entri:179,nie_last_block_entri:179,nie_refcnt:179,nie_sibling_next:179,nil:67,nim:251,nimbl:[7,23,24,26,29,66,225,236,239,243,246,247,248,249,250,251,273,274,275,277],njb:[200,201,202,203,204],njb_buf:204,njb_enc:202,nlip:217,nmgr:133,nmgr_def_taskstat_read:202,nmgr_err_eok:202,nmgr_jbuf:[200,201,202,203,204],nmgr_o:131,nmgr_shell:[130,225,236],nmgr_shell_in:217,nmgr_shell_out:218,nmgr_shell_pkg_init:225,nmgr_task_init:217,nmgr_transport:218,nmgr_uart:236,nmgr_urart_spe:236,nmxact:11,no_of_sampl:276,no_rsp:28,no_wl:[27,30],no_wl_inita:27,node:[21,32,55,154,155,156,161,164,179],nodefault:[199,204],nodup:27,nogdb:[38,47],noinputnooutput:27,non:[7,18,19,21,24,27,31,32,84,89,90,99,100,144,148,150,179,182,186,187,190,191,192,193,215,217,218,219,222,225,252,253,262,267,280],none:[4,7,8,12,20,27,30,82,87,93,101,128,179,216,220,221,222,226,229,235,254,258,262,274,280,287,288],nonexist:[160,179],nonsens:265,nonzero:[89,141,142,143,145,146,149,150,190,227,228,230,232,233,250,265],nor:22,nordic:[23,93,134,181,185,189,191,238,239,257,259,273,274,276,280,285,290],nordicsemi:[257,259,262,274,280],normal:[2,98,179,229,231,272,276],notat:[55,260],note:[1,2,4,6,7,10,11,12,21,22,23,24,29,32,43,47,50,57,58,59,60,61,66,68,71,80,81,82,83,85,86,87,89,90,91,92,93,94,99,128,130,136,173,187,190,192,195,206,207,208,209,211,214,215,219,222,224,225,235,236,239,241,242,244,245,247,249,251,252,253,254,256,257,258,259,260,261,262,263,266,267,268,269,273,275,276,277,278,280,282,283,284,286,287,290],noth:[11,179,226,252,253,273,274],notic:[7,11,55,61,92,93,180,222,241,244,268,272,273,274],notif:[10,27,28,87,130,210,246,272],notifi:[10,28,210,250,251],notnul:225,nov:8,now:[2,8,9,59,86,89,90,91,93,98,99,128,151,153,157,160,163,166,168,170,179,186,193,222,235,236,239,240,241,244,246,247,248,250,251,252,253,254,257,262,265,267,272,273,274,276,280,284,287,288],nreset:254,nrf51:[24,53,93,134,181,263],nrf51dk:[53,222],nrf51xxx:189,nrf52840pdk:32,nrf52:[4,24,61,93,134,181,185,191,207,238,239,245,255,256,257,262,273,275,277,280,285,287,288,290],nrf52_adc_dev_init:274,nrf52_bleprph_oic_bno055:275,nrf52_blinki:[256,259,261,287],nrf52_bno055_oic_test:[275,277],nrf52_bno055_test:[276,278],nrf52_boot:[236,245,259,274,275,276,277,283],nrf52_hal:93,nrf52_slinki:283,nrf52_thingi:207,nrf52dk:[37,38,53,61,62,93,225,238,244,245,248,256,259,274,275,276,277,283],nrf52dk_debug:[61,93,256],nrf52dk_download:93,nrf52k_flash_dev:[93,185],nrf52pdk:[245,259],nrf52serial:283,nrf52xxx:[48,93,191,257,280],nrf5x:24,nrf:[25,274],nrf_drv_saadc:274,nrf_drv_saadc_config_t:274,nrf_drv_saadc_default_channel_config_s:274,nrf_drv_saadc_default_config:274,nrf_saadc_channel_config_t:274,nrf_saadc_gain1_6:274,nrf_saadc_input_ain1:274,nrf_saadc_reference_intern:274,nrf_saadc_typ:274,nrpa:[19,252,253],nsampl:276,nsec:86,nth:179,ntoh:89,ntohl:89,ntrst:254,nucleo:53,nul:179,num_block:90,num_byt:184,number:[1,8,9,10,22,27,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,60,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,83,84,86,87,89,90,91,92,93,98,99,100,101,128,129,139,140,141,151,157,163,168,170,171,172,173,174,175,179,182,186,187,189,190,192,193,195,197,198,199,206,214,215,219,223,224,225,229,236,238,239,241,245,251,252,253,254,256,260,262,266,267,268,272,273,274,276,277,283,286,287],numer:[20,22,85,93,128],nvm:254,nxp:[134,181],objcopi:6,objdump:6,object:[4,11,48,55,61,81,86,92,93,96,99,132,166,199,201,202,203,208,210,211,250,265,276,279],objsiz:[6,48,222],observ:[14,27,212,245,279],obtain:[27,89,91,98,99,179,192,267,273,274],obvious:53,oc_add_devic:275,oc_add_resourc:275,oc_app_resourc:[275,277],oc_get:275,oc_if_rw:275,oc_init_platform:275,oc_main_init:[212,275],oc_new_resourc:275,oc_put:275,oc_resource_bind_resource_interfac:275,oc_resource_bind_resource_typ:275,oc_resource_set_default_interfac:275,oc_resource_set_discover:275,oc_resource_set_periodic_observ:275,oc_resource_set_request_handl:275,oc_serv:[212,236,275,277,279],oc_transport_gatt:236,oc_transport_ip:236,oc_transport_seri:236,occasion:89,occur:[26,27,89,91,100,186,187,190,224,249,250,252,253],occurr:225,ocf:132,ocf_sampl:[7,61],ocimgr:131,ock:211,oct:273,octet:[27,29,31,128],od_init:134,od_nam:208,odd:193,off:[2,20,21,31,32,84,87,89,96,97,99,130,134,140,181,182,187,204,206,208,209,213,236,238,239,240,244,245,252,253,256,260,275,277,278,279,280,282,290],off_attr:204,offer:[1,21,132,134,151,184,274],offset1:89,offset2:89,offset:[20,28,71,89,93,100,128,140,148,152,158,162,167,168,170,171,172,174,179,199,222,224,225,276],often:[9,55,93,179,187,190],ohm:274,oic:[7,51,66,132,209,210,280,290],oic_bhd:66,oic_bl:66,oic_seri:66,oic_udp:66,oic_udpconnstr:66,oicmgr:[7,66,131,132,133],old:[45,140],older:[10,59,82,258],oldest:[140,145,149,224],olimex:[255,273,285,290],olimex_blinki:260,olimex_stm32:[53,260,286],om1:89,om2:89,om_data:89,om_databuf:89,om_flag:89,om_len:89,om_omp:89,om_pkthdr_len:89,ome:90,omgr:133,omi_block_s:90,omi_min_fre:90,omi_nam:90,omi_num_block:90,omi_num_fre:90,omit:[47,224],omp:89,omp_databuf_len:89,omp_flag:89,omp_len:89,omp_next:89,omp_pool:89,on_reset:26,on_sync:26,onboard:[208,209,278,282,287,288,290],onc:[19,29,55,57,61,80,84,86,89,90,91,92,99,128,143,181,190,192,233,235,236,239,240,247,252,255,256,262,267,273,274],one:[1,4,7,8,10,11,12,19,20,21,22,23,27,29,30,31,34,35,39,43,45,50,51,53,57,58,59,61,67,85,87,89,91,92,93,96,98,99,128,129,130,136,137,140,152,165,166,173,174,176,177,179,182,187,190,195,205,206,210,211,220,222,223,224,225,240,241,242,244,245,251,252,253,254,255,256,257,258,259,260,261,262,265,266,267,268,269,272,273,274,276,282,283,286,290],ones:[14,89,98,134,181,205,245,290],ongo:27,onli:[1,2,7,8,10,11,12,14,19,20,24,27,29,31,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,66,72,80,83,86,87,89,90,92,93,96,97,98,128,129,130,131,134,135,136,138,150,152,154,155,156,158,161,164,165,167,168,173,174,179,187,190,195,205,206,208,209,211,214,219,222,223,224,225,228,229,231,232,234,236,239,240,241,242,247,249,252,254,256,262,263,265,266,267,268,269,273,274,275,276,279,280,284],onlin:[254,280,287,288],onto:[1,20,42,43,47,84,87,89,93,255,257,258,259,260,261,272,273,276,283,286],oob:[20,27,29],opaqu:[152,192,205,206,208,210,280],open:[4,8,9,10,12,20,21,38,39,47,55,57,58,59,61,96,132,134,152,153,157,158,160,161,163,164,167,168,169,170,171,172,175,179,207,252,254,257,258,260,261,265,273,278,284],open_test:265,openocd:[12,93,254,257,258,260,261,286],openocd_debug:[257,273],oper:[1,9,12,15,18,20,21,26,31,39,57,58,59,84,89,96,97,98,99,100,130,132,134,152,160,161,162,167,169,173,174,178,179,180,181,182,184,186,193,206,211,223,225,234,244,245,249,250,251,252,253,254,262,265,266,268,269,272,273,276,280],oppos:[31,89,269],opt:4,optim:[1,24,32,37,38,43,50,61,89,93,94,101,134,222,235,241,244,245,248,254,257,258,259,260,261,262,266,273,274,276,280,283,286],optimis:31,option:[2,3,4,6,7,8,10,12,22,23,27,36,37,46,51,55,62,66,72,84,87,90,93,128,132,134,150,151,197,206,208,209,214,222,224,225,226,231,242,244,245,251,254,258,260,262,266,267,268,273,274,276,286],orang:[257,261],order:[1,8,9,22,33,55,61,63,85,87,89,90,91,97,99,101,128,129,132,179,190,206,224,225,236,240,241,262,265,268,270,273,274,280,287,288],org:[1,4,10,11,39,57,58,59,61,80,82,101,130,137,252,254,257,258,260,261,265,273,274,280,287,288],organ:[11,134,223,265,267],origin:[11,46,93,128,260,273],os_align:[89,90],os_arch:[61,90,100],os_bad_mutex:91,os_bsp_adc0:274,os_bsp_adc0_config:274,os_callout:[61,84,97,129,238,256,280],os_callout_f_queu:84,os_callout_func:[84,89],os_callout_func_init:84,os_callout_init:[84,97,238,256,280],os_callout_queu:84,os_callout_remaining_tick:84,os_callout_reset:[84,97,238,256,280],os_callout_stop:84,os_cfg:61,os_cli:225,os_cputim:61,os_cputime_delay_nsec:86,os_cputime_delay_tick:86,os_cputime_delay_usec:86,os_cputime_freq:24,os_cputime_freq_pwr2:86,os_cputime_get32:86,os_cputime_init:86,os_cputime_nsecs_to_tick:86,os_cputime_ticks_to_nsec:86,os_cputime_ticks_to_usec:86,os_cputime_timer_init:86,os_cputime_timer_num:[24,86],os_cputime_timer_rel:86,os_cputime_timer_start:86,os_cputime_timer_stop:86,os_cputime_usecs_to_tick:86,os_dev:[61,134,206,207,208,274,278],os_dev_clos:[207,278],os_dev_cr:[134,206,207,208,211,274],os_dev_init_func_t:[134,208],os_dev_init_kernel:274,os_dev_init_primari:207,os_dev_init_prio_default:274,os_dev_open:[207,274,278],os_einv:[89,100,204],os_eno:129,os_error_t:[90,91,98],os_ev:[84,87,89,97,129,130,238,256,280],os_event_fn:[84,87,89],os_event_queu:87,os_event_t_mqueue_data:89,os_event_t_tim:84,os_eventq:[61,84,87,89,97,130,216,238,272,273,274],os_eventq_dflt_get:[26,87,92,99,130,225,238,252,253,256,278,280],os_eventq_dflt_set:273,os_eventq_get:[87,97],os_eventq_get_no_wait:87,os_eventq_init:[87,89,97,130,238,272,273],os_eventq_pol:87,os_eventq_put:[87,130,238],os_eventq_remov:87,os_eventq_run:[26,87,89,92,99,225,238,252,253,256,273,278,280],os_fault:61,os_get_uptime_usec:100,os_gettimeofdai:100,os_heap:61,os_init:[86,99],os_invalid_parm:[91,98],os_main_task_prio:[225,241],os_main_task_stack_s:225,os_malloc:[61,88],os_mbuf:[61,89,217,218],os_mbuf_adj:89,os_mbuf_append:[89,272,274],os_mbuf_appendfrom:89,os_mbuf_cmpf:89,os_mbuf_cmpm:89,os_mbuf_concat:89,os_mbuf_copydata:89,os_mbuf_copyinto:89,os_mbuf_count:89,os_mbuf_data:89,os_mbuf_dup:89,os_mbuf_extend:89,os_mbuf_f_:89,os_mbuf_f_mask:89,os_mbuf_fre:89,os_mbuf_free_chain:89,os_mbuf_get:89,os_mbuf_get_pkthdr:89,os_mbuf_is_pkthdr:89,os_mbuf_leadingspac:89,os_mbuf_off:89,os_mbuf_pkthdr:89,os_mbuf_pkthdr_to_mbuf:89,os_mbuf_pktlen:89,os_mbuf_pool:89,os_mbuf_pool_init:89,os_mbuf_prepend:89,os_mbuf_prepend_pullup:89,os_mbuf_pullup:89,os_mbuf_trailingspac:89,os_mbuf_trim_front:89,os_mbuf_usrhdr:89,os_mbuf_usrhdr_len:89,os_memblock:90,os_memblock_from:90,os_memblock_get:90,os_memblock_put:90,os_memblock_put_from_cb:90,os_membuf_t:[89,90],os_mempool:[61,89,90],os_mempool_byt:90,os_mempool_ext:90,os_mempool_ext_init:90,os_mempool_f_:90,os_mempool_f_ext:90,os_mempool_info:90,os_mempool_info_get_next:90,os_mempool_info_name_len:90,os_mempool_init:[89,90],os_mempool_is_san:90,os_mempool_put_fn:90,os_mempool_s:[89,90],os_mqueu:89,os_mqueue_get:89,os_mqueue_init:89,os_mqueue_put:89,os_msys_count:89,os_msys_get:89,os_msys_get_pkthdr:89,os_msys_num_fre:89,os_msys_regist:89,os_msys_reset:89,os_mutex:[61,91,140,206],os_mutex_init:91,os_mutex_pend:91,os_mutex_releas:91,os_ok:[91,98],os_pkg_init:225,os_san:[61,97],os_sanity_check:[97,99],os_sanity_check_func_t:97,os_sanity_check_init:97,os_sanity_check_regist:97,os_sanity_check_reset:97,os_sanity_check_setfunc:97,os_sanity_task_checkin:97,os_sch:61,os_sched_get_current_t:241,os_sched_get_current_task:[85,97,241],os_sem:[61,92,98,273],os_sem_get_count:98,os_sem_init:[92,98,273],os_sem_pend:[92,98,273],os_sem_releas:[92,98,273],os_sem_test_bas:230,os_sem_test_case_1:230,os_sem_test_case_2:230,os_sem_test_case_3:230,os_sem_test_case_4:230,os_sem_test_suit:230,os_settimeofdai:100,os_stack_align:[241,272,273,274],os_stack_t:[97,99,217,238,241,272,273,274],os_start:99,os_stime_t:100,os_sysview:288,os_task:[61,85,87,91,92,97,99,238,241,272,273,274],os_task_count:99,os_task_flag_evq_wait:99,os_task_flag_mutex_wait:99,os_task_flag_no_timeout:99,os_task_flag_sem_wait:99,os_task_func_t:[97,99],os_task_info:99,os_task_info_get_next:99,os_task_init:[92,97,99,238,241,272,273],os_task_max_name_len:99,os_task_pri_highest:99,os_task_pri_lowest:99,os_task_readi:99,os_task_remov:99,os_task_sleep:99,os_task_st:99,os_task_state_t:99,os_test:61,os_test_restart:233,os_tick_idl:[189,254,257,280],os_tick_init:189,os_ticks_per_sec:[84,97,100,129,189,208,238,241,256,272,273,274,280],os_tim:[61,100,265],os_time_adv:100,os_time_delai:[99,100,208,238,240,241,272,274],os_time_get:100,os_time_max:100,os_time_ms_to_tick:100,os_time_t:[84,87,97,99,100,189,206,208],os_time_tick_geq:100,os_time_tick_gt:100,os_time_tick_lt:100,os_timeout:[91,98,273],os_timeout_nev:[92,100,207,278,280],os_timeradd:100,os_timersub:100,os_timev:[100,265],os_timezon:[100,265],os_wait_forev:[87,92,99,238,241,272,273],osmalloc:88,ostask:99,ostick:100,osx:[235,240],ota:236,otg1:260,otg2:[260,286],other:[1,6,10,11,20,22,24,29,31,50,55,61,86,87,89,90,92,93,94,97,98,99,100,128,129,130,134,152,153,161,164,169,173,174,176,179,184,187,205,208,210,214,222,223,225,235,238,241,244,245,246,247,249,250,254,255,256,257,263,265,267,272,274,275,276,277,280,282,287,288],otherwis:[89,90,92,99,142,144,147,186,190,267,268],oti:99,oti_cswcnt:99,oti_last_checkin:99,oti_nam:99,oti_next_checkin:99,oti_prio:99,oti_runtim:99,oti_st:99,oti_stks:99,oti_stkusag:99,oti_taskid:99,oui:[19,262],our:[20,55,89,93,222,223,235,236,240,241,244,247,252,253,255,256,265,268,272,273,274,283,286],our_id_addr:[30,248],our_id_addr_typ:248,our_key_dist:27,our_ota_addr:[30,248],our_ota_addr_typ:[30,248],out:[8,9,10,11,20,21,22,23,26,27,61,80,81,82,84,89,95,99,128,130,136,140,141,144,146,160,161,173,180,181,182,198,200,201,202,203,222,226,233,244,246,248,252,253,255,260,266,273,285],out_cpha:190,out_cpol:190,out_data:[162,163],out_dir:[161,162,164],out_fil:[160,162],out_id_addr_typ:30,out_len:[157,162,163,171],out_nam:[136,156,162],out_name_l:156,out_name_len:[156,162],out_off:89,out_tick:100,outdat:58,outfil:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,273],outgo:218,outlin:5,output:[1,7,12,21,22,27,30,34,35,37,38,39,40,41,42,43,44,45,46,47,49,50,51,52,54,57,58,59,62,69,73,75,76,77,81,88,93,99,100,128,129,181,186,193,205,222,224,226,235,238,254,256,257,258,260,261,262,265,266,273,276,280,284,287],outsid:[20,21,89],outweigh:89,over:[20,21,22,23,27,29,31,65,66,67,68,69,70,71,72,73,74,75,76,77,89,128,133,134,136,140,142,150,187,193,205,222,236,241,249,255,256,258,262,266,272,273,275,276,277,279,282,285,287,290],overal:[10,24,89,99,173],overhead:89,overlap:[20,179],overrid:[50,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,93,205,222,223,236,245],overridden:[23,225,245],oversampl:274,overview:[128,276,277,280],overwrit:[6,49,50,59,60,82,83,93,130,179,254,263,266],overwrite_many_test:265,overwrite_one_test:265,overwrite_three_test:265,overwrite_two_test:265,overwritten:[128,172,179],own:[2,11,19,20,39,57,58,59,61,87,91,92,96,98,99,135,179,190,205,222,223,242,243,244,273,274],own_addr_t:[252,253],own_addr_typ:[27,66,252,253],owner:[87,91,269],ownership:[91,179,273,274],pacakg:244,pacif:100,pack:[4,55,81,89,239,257,259,266,276,280,283],packag:[6,9,11,23,24,26,34,39,40,41,43,45,50,51,52,53,55,56,58,59,60,79,83,87,92,94,99,128,129,131,132,134,137,138,152,162,173,181,182,195,196,199,207,208,211,212,213,214,222,223,230,231,232,235,238,245,255,256,257,262,264,267,268,274,277,278,279,290],package1:205,package1_log:205,package2:205,package2_log:205,packet:[20,21,27,29,187,214,218,252,262],packet_data:89,pacman:[7,59],pad:[89,128],page:[1,4,5,6,7,8,10,20,22,57,58,60,80,81,83,93,101,135,180,187,188,206,207,208,209,235,240,242,244,246,250,252,253,255,274],page_s:135,pair:[20,21,22,27,66,128,129,179,199,204,225,248,250],pakcag:214,panel:12,paradigm:89,param:[27,214,219,250],param_nam:214,paramet:[1,20,26,27,28,30,61,66,72,84,86,87,89,90,91,97,98,99,100,136,140,150,182,186,187,189,190,192,193,194,205,207,208,214,225,236,247,249,250,251,252,253,265],parameter_nam:225,parameter_valu:225,parent:[90,154,155,156,161,164,166,172,179],parenthes:89,pariti:193,parlanc:11,parmaet:27,parmet:[27,28],pars:[55,197,214,226,229,252,265],part:[22,29,89,95,128,140,168,173,174,179,180,222,247,248,251,273,274,279],parti:[252,254,266],partial:[64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,89,128,173,174],particular:[4,20,47,61,89,92,93,96,97,128,130,134,152,181,190,192,199,233,250,252,253],particularli:263,partit:[20,93,128,173,179,222],pass:[1,7,12,20,27,61,84,86,87,89,90,91,97,98,99,130,134,135,139,140,150,160,163,171,179,186,187,190,192,193,199,206,207,208,210,214,217,227,228,229,230,247,251,252,253,265,274,280],passiv:27,passkei:[20,22,27],password:[11,58,80,245,269],past:[20,89,274],patch:[257,258,261],path:[2,4,6,10,11,12,29,50,57,58,59,60,61,66,80,81,82,83,93,94,152,159,160,161,162,166,169,171,172,225,267,273,274],pathloss:29,pattern:[27,93,241],payload:[89,132,133,187],pc6:286,pc7:286,pca100040:245,pca:[239,259,274],pcb:273,pci:[134,181],pcmcia:[134,181],pdata:187,pdf:[235,286],pdt:[100,265],pdu:[20,27],peek:241,peer:[10,22,28,66,190,239,249,251,252,253],peer_addr:[27,30,66,247],peer_addr_typ:[27,30,66,247],peer_id:66,peer_id_addr:248,peer_id_addr_typ:248,peer_nam:[66,239],peer_ota_addr:248,peer_ota_addr_typ:248,pem:[37,46],pencil:10,pend:[20,84,87,91,98,128,187,239],per:[11,19,89,91,128,129,173,182,186,190,193,223,241,265,268,273],perfom:128,perform:[3,4,5,9,11,12,20,22,25,27,36,57,58,59,64,80,81,82,89,90,92,93,97,99,101,128,130,135,151,152,166,179,187,192,211,222,225,235,239,249,254,256,257,262,268,272,273,274,275,276,277,280],perhap:267,period:[9,19,22,27,84,97,189,194,238,241],peripher:[9,20,21,24,26,29,30,93,96,134,181,182,187,190,223,239,243,244,247,250,251,252,272,273,274],perman:[71,128,179,222,239,247,250],permiss:[273,274],permit:[20,251,254,280,287,288],persist:[128,151],perspect:222,pertain:250,petteriaimonen:101,phdr:89,phone:[22,31],php:55,phy:[21,27],phy_opt:27,physic:[21,27,29,66,130,183,186,193],pick:[85,92,205,252,253],pictur:[235,257],pid:258,piec:[21,93,273],pig:242,pin:[7,8,20,93,96,99,134,181,183,186,187,190,191,193,206,235,238,256,257,260,262,266,273,274,276,280,286],ping:92,pinout:95,piqu:290,pitfal:89,pkcs15:128,pkg1:224,pkg2:224,pkg:[1,7,11,39,43,50,53,55,57,58,59,61,94,95,101,130,134,135,136,151,152,180,181,205,207,214,223,224,225,236,238,244,256,265,273,274,275,280],pkg_init_func1_nam:225,pkg_init_func1_stag:225,pkg_init_func2_nam:225,pkg_init_func2_stag:225,pkg_init_func:225,pkg_init_funcn_nam:225,pkg_init_funcn_stag:225,pkg_test:232,pkga_syscfg_nam:225,pkga_syscfg_name1:225,pkga_syscfg_name2:225,pkgn_syscfg_name1:225,pkt:273,pkthdr_len:89,pkts_rxd:89,place:[3,55,61,87,100,101,128,140,168,187,190,222,225,231,236,240,241,244,245,251,252,253,260,268,273,282],plai:[12,21,282],plain:[222,258,268],plan:[2,134,214],platform:[2,7,9,11,12,23,24,57,58,59,66,80,81,82,84,92,93,94,96,134,182,187,190,192,231,239,241,244,254,256,257,258,260,261,266,273,274,276,283,284,285,286],pleas:[10,39,57,58,59,94,95,206,210,211,223,235,240,254,255,267,274,280,287,288],plenti:[241,273],plist:61,plu:[89,156,179,187],plug:[8,180,235,260,261,273,274],plumb:272,pmode:276,point:[2,4,6,31,85,89,91,93,95,99,101,128,130,134,141,142,143,144,145,147,148,149,150,161,162,164,179,190,206,244,249,250,252,253,273,274,275],pointer:[67,84,85,86,87,89,90,91,93,98,99,100,130,134,140,141,142,150,153,155,156,157,158,160,162,163,168,170,171,172,179,180,182,187,190,192,197,198,199,205,206,207,208,211,214,215,216,219,220,226,241,249,250],poke:274,polici:[27,267],poll:[87,92,210,276,280],poll_du:276,poll_dur:276,poll_interv:276,poll_itvl:276,poller:[206,210,211,280],pong:92,pool:[73,80,92,262,277,284],popul:[1,7,12,50,62,100,175,179,231,255,266,282,285,290],port:[2,12,66,92,130,134,186,193,205,223,236,245,254,256,257,258,259,260,261,266,273,276,280,283,284,285,286,290],portabl:[134,181],portingto:94,portion:[128,146,187,272,274],posit:[89,100,128,158,168,171,194,260],posix:59,possibilti:[287,288],possibl:[21,22,24,27,28,30,32,36,53,89,91,100,128,134,152,173,174,179,181,182,205,222,223,251,267,276,287],post:[49,84,89,134,238,244],potenti:[96,222,268],pour:[58,81],power:[2,9,20,21,22,27,29,31,55,93,96,130,134,181,182,190,191,208,236,239,245,254,259,260,262,266,275,276,277,278,280,283,286],ppa:4,pre:[4,9,205,223,267,268],precaut:249,prece:89,preced:23,precis:[6,20],predict:241,preempt:[91,92,98,99],preemptiv:[92,99,241],prefer:[3,27,29,138,239,249,273],preference0x01:27,prefix:[61,179,209,225,274],preload:190,prepar:[20,257,259,262,274],prepend:89,preprocessor:[214,223],prerequisit:12,presenc:[93,179,247,252,253,267],present:[1,89,93,128,130,179,195,207,222,245,260,265,274],preserv:89,press:[8,12,98,238,241,244,266,273,276,288],presum:[89,262],pretti:274,prev:[99,179],prev_ind:250,prev_notifi:250,prevent:[91,92,128,169,249],previ:[248,250],preview:[242,245,259],previou:[21,56,57,58,59,78,79,80,81,82,99,128,179,199,224,225,244,245,256,267,272],previous:[6,12,57,58,59,60,80,81,82,83,190,236,248,270,274,276],prevn:[248,250],pri:[77,182,273,283,286],primari:[27,93,128,132,166,239,251,253,272],primarili:101,primary_phi:27,primo:[255,272,273],primo_boot:257,primo_debug:257,primoblinki:257,print:[48,57,58,59,62,129,130,136,154,155,156,161,164,171,193,214,224,226],print_statu:171,print_usag:197,printabl:198,printf:[101,136,226,229],prio:[97,99,189,217],prior:[22,24,49,89,92,128,166,175,179,190,192,262],prioriti:[77,85,87,91,92,98,99,134,173,182,189,225,238,245,274,290],priv:27,privaci:[19,21,27],privat:[19,22,32,37,46,57,66,80,128,252,253],privileg:2,pro:[241,254,257],probabl:[7,10,93,246,269,273],probe:[187,257,266,280],problem:[7,98,128,161,222,224],proce:[3,6,11,128,233,254,257,258,259,260,261,265,266,273,283,286],procedur:[6,11,16,19,20,22,27,28,64,75,80,81,82,128,179,180,222,276,279],proceed:[7,246,252,253],process:[3,6,9,10,20,22,26,27,31,61,84,85,87,89,93,99,128,130,131,179,211,212,216,222,223,225,235,236,238,241,252,253,275,278,279,280,287,288],process_data:169,process_rx_data_queu:89,processor:[4,9,89,99,134,181,182,186,241,254,260,280,287,288],produc:[98,128,223,229,258],product:[55,96,174,186,209,245,273,286],profil:[14,15,16,17,21,27,28,31,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,244,254,283,285,286],profile01:[65,67,68,69,70,71,72,73,74,75,76,77],profile0:77,program:[4,6,8,12,23,85,128,130,188,191,235,241,254,256,257,259,262,266,274],programat:130,programm:[258,287,288],programmat:[137,280],progress:[7,20,128,134,135,179,190,243],prohibit:167,project:[3,6,8,11,33,34,39,40,41,44,49,50,52,55,57,58,59,61,63,88,99,101,128,129,130,135,136,138,151,176,177,181,195,205,223,230,231,238,240,241,242,248,265,269,270,275,276,280,281,282,287,290],prompt:[7,8,11,12,47,58,59,93,244,254,256,257,258,259,260,261,273,276,280],prone:251,proper:[134,274],properli:[24,61,92,97,241,245,249,272,273,274],properti:[12,19,31,59,93,128,133,173,174,179,205,235,246,257],proport:179,propos:10,propper:273,prot_length:89,prot_tif:89,prot_typ:89,protcol:89,protect:[22,88,128,140],protocol:[14,20,21,28,61,66,89,128,132,133,187,277,279,282,285],prototyp:[96,193,225,252,253],provid:[1,2,7,9,11,12,19,20,21,22,27,30,31,37,39,45,50,57,58,59,66,70,71,72,75,80,84,86,88,89,90,91,92,93,95,96,97,99,100,128,130,134,135,136,140,151,152,173,181,186,187,190,192,197,206,209,211,212,214,223,231,234,236,246,252,253,254,262,265,266,267,268,273,274,279],provis:[21,32],provision:31,proxi:[21,31],pseln:274,pselp:274,pset:190,psm:27,psp:[254,258],pst:[68,100,265],pth:260,ptr:193,public_id:27,public_id_addr:30,public_target_address:29,publish:22,pull:[11,49,80,82,87,89,134,186,238,256,260],pulldown:186,pullup:[89,186],purpos:[4,22,50,55,93,97,128,181,186,205,208,210,222,223,241,249,262,274,280],push:[10,242],put:[1,2,7,43,61,80,82,87,89,90,91,93,98,99,100,133,182,241,247,252,253,265,274],putti:[8,256,266,276],pwd:[2,11],pwm:9,pwr:[258,260],px4:4,python:[33,63],qualifi:249,qualiti:281,quat:276,queri:[9,19,50,55,57,58,59,61,62,89,133,155,156,157,158,171,179,206,208,223,247,276,284],question:244,queu:[20,84,87,193,238],queue:[26,61,84,86,89,92,97,98,99,130,179,192,211,214,216,218,225,236,252,253,272,278,280,282,290],quick:[2,3],quickli:[100,181,241,274,276,279,280,282],quickstart:[2,241],quiet:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,273],quit:[19,93,244,247,252,253,254,257,258,260,261,287],quot:66,r_find_n:211,r_lock:211,r_match_:211,r_regist:211,r_unlock:211,radio:[21,24,245],raff:81,rais:91,ram:[48,93,95,173,182,222,244,254,273,274,275],ram_siz:93,ran:97,rand:27,random:[19,20,25,27,30,66,245,251,252,253,272],random_id:27,random_id_addr:30,randomli:19,rang:[9,20,21,29,89,101,179,197,262],rare:89,rate:[66,84,130,211,212,245,262,276,279,280],rather:[14,20,93,100,101,128,152,166,222,274],raw:[11,57,58,59,80,81,82,130,173,179,225,226,274],rb_bletini:50,rb_blinki:[43,50],rb_blinky_rsa:43,rb_boot:43,rbnano2_blinki:261,rbnano2_boot:261,reach:[97,192],read:[4,6,7,11,12,14,18,19,20,23,27,28,55,61,64,65,68,73,76,77,80,81,82,87,89,99,128,129,130,134,135,136,140,142,145,146,150,152,153,154,155,156,158,160,161,163,164,168,169,171,179,184,186,187,192,199,204,205,210,211,212,213,225,226,235,236,238,239,241,248,250,251,252,253,254,255,258,261,262,265,266,267,272,273,274,275,276,277,279,282,285,287,288],read_acceleromet:280,read_cb:280,read_chr:249,read_config:[153,160,163],read_part1_middl:168,read_rsp_rx:76,read_rsp_tx:76,read_sensor_interv:280,read_test:265,read_type_req_rx:76,read_type_req_tx:[76,236],read_type_rsp_rx:[76,236],read_type_rsp_tx:[76,236],readabl:[245,269],readdesc:7,readdir_test:265,reader:[265,272,274],readi:[10,85,87,99,130,193,199,241,254,273,287],readili:134,readm:[7,11,55,61,93,244,265],readnow:61,real:[1,7,9,87,92,100,130,179,199,234,238,244,251,280,287],realist:265,realli:[89,274],rearm:84,rearrang:89,reason:[10,20,26,27,89,90,128,191,241,248,250,262,265,267],reassembl:21,rebas:11,reboot:[7,71,128,191,222,224,239,275,277],reboot_log:72,reboot_log_flash_area:[224,225],reboot_start:278,rebuild:[32,61,82,278],rec0:128,rec1:128,rec2:128,recal:[249,267],receiv:[10,14,20,27,29,31,55,81,89,130,131,136,187,190,193,206,211,214,217,220,236,247,250,251,258,262,280,283,286],recent:[179,257],recip:6,recipi:29,reclaim:179,recogn:[55,179,274],recommend:[3,4,7,12,57,58,80,81,89,130,188,207,208,214,224,225,236,238,247,251,257,261,263,276,282,287],reconfigur:[190,193,278],reconnect:249,record:[128,179,208,223,231,288],recov:128,recover:128,recreat:268,recur:194,recurs:[55,61,90,169],red:[27,28,235,258,260,286],redbear:[255,290],redefin:224,redistribut:[55,254,267,280,287,288],reduc:[9,22,24,31,87,101,132,205,236,238,264],redund:222,reenter:263,ref0:67,refer:[7,8,10,18,22,23,29,55,67,93,166,169,179,190,209,215,219,222,242,247,252,253,254,256,260,266,273,274,276,286],referenc:[1,179,186],reflect:248,reformat:179,refrain:26,refresh:[2,49,242,254],refus:[280,287],regard:[173,174,265,273,274],regardless:41,region:[89,93,128,167,173,174,179],regist:[23,75,85,89,94,129,131,134,138,152,162,165,181,182,187,196,205,206,210,212,215,217,219,220,221,225,241,249,251,273,274,280],register_:210,registr:[17,180,223,249,280],registri:[89,208],regress:[227,228,230,231,232],regular:[89,155,265],reject:[20,265],rel:[89,92,148],relai:[21,31],relat:[10,27,31,43,135,222,247,250,254,262,280,287,288],relationship:[27,98],releas:[3,4,7,31,49,56,78,79,89,90,91,92,98,134,186,187,214,225,254,266,267,268],release_not:[7,11],relev:[95,128,134,186],reli:[1,7,55,225],reliabl:[21,128,151,173,252,253,268],remain:[93,163,169,179,222,226,229,241,249],remaind:[93,179,229,247,265,267],rememb:[2,41,80,82,91,254,272],remind:254,remot:[1,7,9,12,20,27,28,49,55,66,78,80,81,82,132,187,235,236,238,239,245,254,255,256,266,273,274,280,282,284,285,290],remov:[2,4,6,27,35,45,60,83,86,87,89,90,98,99,130,136,179,222,249,254,280],renam:166,rename_test:265,repeat:[2,11,20,187,240,249],repeatedli:[29,128],replac:[4,6,93,95,101,195,222,225,226,229,240,254,256,272,283,286],repli:27,repo814721459:55,repo:[1,6,7,10,11,41,55,57,61,80,93,134,152,222,235,242,244,254,256,257,258,259,260,261,262,265,266,269,273,274,275,276,280,283,284,286,287,288],repop:7,report:[1,4,6,10,20,93,182,193,223,226,229,254,258,265,273,280,287,288],reposistori:7,reposit:168,repositori:[1,4,11,12,40,41,44,49,51,52,57,61,80,134,235,242,243,244,246,254,255,262,266,270,273,282,285,290],repres:[1,12,61,87,89,98,100,128,130,159,179,206,208,210,211,214,241,251],represent:[128,132],reproduc:[1,61,128,180,252,253],req_api:[61,130,205],req_len:89,request:[12,20,27,66,67,74,78,89,91,93,98,128,132,133,136,140,163,179,191,209,210,212,214,222,236,248,249,254,258,260,262,267,268,272,274,275,279,280,283,286],requir:[1,2,4,6,9,11,20,24,30,31,53,59,61,66,80,82,87,89,90,92,94,95,96,98,128,130,132,135,152,162,173,174,179,192,205,207,214,222,223,224,225,228,235,236,238,241,244,247,249,254,257,261,262,265,267,268,272,273,274,276,278,279,280,290],res:275,reserv:[20,89,93,96,141,143,179,206,241,262],reserved16:179,reserved8:179,reset:[25,64,78,80,81,82,84,97,131,132,191,222,233,236,244,245,248,257,258,259,261,274,276,280,287,288],reset_cb:26,reset_config:254,reset_handl:[93,260],resid:[96,128,174,179,240,251,273],resign:[57,58,59],resist:274,resistor:[238,274],resolut:[22,86,192,223,274],resolv:[1,19,20,22,27,32,55,66,81,224,235,252,253,267],resourc:[9,20,29,61,88,91,98,133,209,210,212,214,235,238,254,275,277,279,280,286,287,288],respect:100,respond:[17,25,222,247,249,251,272,273],respons:[10,15,20,28,29,69,85,90,92,130,132,136,212,222,241,247,249,266,273,279,283,284,286],rest:[1,46,61,89,179,197,199,226],restart:[2,128,129,140,179,191,254],restor:[129,173,176,177,179,257,259,262,274],restrict:[128,140,173,174,179,214,225,249,250],restructuredtext:10,result:[10,12,20,58,62,89,100,160,161,174,179,198,206,223,225,229,231,251,258,265,272,273,274],resum:[21,99,128,179,247,250],resynchron:49,retain:[128,179,225,250],retent:182,retransmit:31,retreiv:133,retri:[261,262],retriev:[57,80,87,89,100,132,152,154,155,156,157,158,161,163,164,171,174,206,208,244,282],reus:[55,81,128,225],reusabl:55,rev:276,revdep:[1,50,62],revers:[1,23,50,62,128,179,249,260],revert:[128,239],review:[10,222,247,265],revis:[4,197,276],revision_num:[267,268],revisit:[244,250],rewrit:179,rewritten:179,rfc:[68,199,265],ribbon:[260,286],rigado:[48,259,274],right:[2,3,10,55,61,129,242,247,260,274],rimari:251,ring:98,rise:186,ristic:251,rite_fil:152,robust:151,role:[20,21,30,31,98,249],room:[89,179,241],root:[2,4,8,31,80,136,165,179,235,267],rotat:166,rotate_log:166,routin:[101,129,140,141,143,162,180,199,230,273],rpa:[19,27],rpa_pub:[27,66],rpa_rnd:[27,66],rsa2048:128,rsa:128,rsp:27,rssi:[27,29,245],rtc:9,rto:[55,92,241],rtt:[130,289,290],rtt_buffer_size_down:287,rubi:[11,55,58],rule:[225,258,265],run:[2,3,4,5,6,8,9,11,23,24,30,34,39,41,43,50,52,55,57,58,59,60,61,64,66,67,77,78,80,81,82,83,84,85,86,87,89,91,92,93,96,97,98,99,128,129,131,132,135,136,152,160,161,179,192,212,214,220,222,224,232,233,234,235,236,239,240,241,244,245,252,253,255,257,258,259,260,261,262,265,266,273,274,275,276,277,278,280,283,285,286,290],runner:12,runtest:[7,131,236],runtest_newtmgr:236,runtim:[25,77,99,254,266,273,283,286],runtimeco:[57,58,59,80,81,82,235,254,266,267,274],rwx:93,rwxr:[80,82],rx_cb:130,rx_data:273,rx_func:193,rx_off:273,rx_phys_mask:27,rx_power:27,rxbuf:190,rxpkt:89,rxpkt_q:89,s_cnt:223,s_dev:206,s_func:206,s_hdr:223,s_itf:206,s_listener_list:206,s_lock:206,s_map:223,s_map_cnt:223,s_mask:206,s_name:223,s_next:[206,223],s_next_run:206,s_pad1:223,s_poll_rat:206,s_size:223,s_st:[206,280],s_type:206,saadc_config_irq_prior:274,saadc_config_oversampl:274,saadc_config_resolut:274,sad:280,sad_i:280,sad_x:280,sad_x_is_valid:280,sad_y_is_valid:280,sad_z:280,sad_z_is_valid:280,safe:[90,152],safeguard:92,safeti:249,sai:[61,89,99,254,266,267,268,273],said:[186,274],sam0:254,sam3u128:[257,259,262,274,280],samd21:[254,266],samd21g18a:254,samd21xx:254,samd:254,same:[6,10,12,22,29,34,37,47,51,59,61,78,89,91,93,94,98,128,130,151,173,179,187,211,222,223,224,225,226,235,238,240,241,247,249,250,255,257,259,262,267,268,269,274,275],sampl:[1,12,21,30,61,89,94,134,212,222,225,274,275,277,279,280,285],sample_buffer1:274,sample_buffer2:274,sample_cmd:221,sample_cmd_handl:221,sample_command:219,sample_modul:[219,221],sample_module_command:219,sample_module_init:219,sample_mpool:219,sample_mpool_help:219,sample_mpool_param:219,sample_target:53,sample_tasks_help:219,sample_tasks_param:219,sane:99,saniti:[77,92,99,244],sanity_interv:97,sanity_itvl:[97,99],sanity_task:97,sanity_task_interv:97,satisfactori:267,satisfi:[179,268],sattempt_stat:223,save:[12,31,49,50,71,100,129,130,187,208,241,249],saw:250,sbrk:[93,257,258,259,260,261],sc_arg:97,sc_checkin_itvl:97,sc_checkin_last:97,sc_cmd:[214,215,219,220,221,273],sc_cmd_f:214,sc_cmd_func:[214,215,219,220,221,273],sc_cmd_func_t:214,sc_func:97,sc_next:152,sc_valtyp:206,scalabl:[151,179],scale:31,scan:[15,21,24,26,27,29,179,245,247,275,277],scan_interv:27,scan_req:27,scan_req_notif:27,scan_result:266,scan_rsp:27,scan_window:27,scannabl:[27,30],scenario:[22,98,195],scene:31,schedul:[9,24,84,87,92,96,99,100,241],schemat:[93,286],scheme:[19,29,93],scientif:21,sck_pin:[135,136],scl:[187,276],sco:20,scope:[12,89,241],scratch:[93,128,140,141,143,222],screen:[8,262],script:[7,42,61,137,139,260],scroll:[12,236,248],sd_get_config:[206,208],sd_read:[206,208],sda:[187,276],sdcard:136,sdk:[45,53,225],search:[12,87,94,134,176,179,211,244,254,260,267,275,280,287,288],searchabl:134,sec000:128,sec125:128,sec126:128,sec127:128,sec:[276,280],second:[22,26,27,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,84,89,90,93,97,99,100,128,140,194,214,222,235,240,241,247,252,253,256,260,265,272,273,274,276,280],secondar:251,secondari:[27,71,93,128,239,251,273],secondary_phi:27,secret:[22,27],section:[1,5,6,7,11,12,14,24,25,29,30,61,89,92,93,99,128,179,208,222,224,225,236,239,241,243,247,250,251,254,255,266,267,268,274,282,284,285],sector:[128,140,141,146,148,149,150,179,184,260],sector_address:[135,184],secur:[21,128,222,251,269,272],see:[2,4,5,6,7,8,10,11,12,21,22,23,24,33,36,43,55,57,58,59,61,63,64,66,80,81,82,87,89,91,92,93,96,99,128,137,147,160,181,187,190,199,205,206,207,208,209,210,211,212,213,214,223,224,225,235,236,239,240,241,242,244,245,247,248,249,251,252,253,254,255,256,257,258,259,260,261,262,263,266,267,268,269,272,273,274,275,276,277,279,280,282,283,285,286,287,288],seek:[89,168,179],seem:[247,274],seen:[90,185,188,267,290],segger:[130,239,257,259,262,266,274,276,280,283,289,290],segger_rtt_conf:287,segment:[21,89,275],sel:286,select:[4,12,19,21,55,59,179,186,190,206,214,254,256,257,258,260,275,277,286,288],selector:206,self:[3,30,94,252,253,265],selftest:265,sem:98,sem_token:98,sema:273,semant:250,semaphor:[92,99,273],semi:273,send:[3,10,14,20,27,28,31,38,42,47,64,66,67,69,74,78,80,81,82,89,130,132,133,187,190,193,212,234,235,240,247,255,272,274,279,284,290],send_pkt:89,sender:247,sens:[20,128,222,274],senseair:[272,273],senseair_cmd:273,senseair_co2:[272,273],senseair_init:273,senseair_read:[272,273],senseair_read_typ:[272,273],senseair_rx_char:273,senseair_shell_func:273,senseair_tx:273,senseair_tx_char:273,sensi:275,sensibl:225,sensor:[9,31,134,223,290],sensor_accel_data:280,sensor_callout:280,sensor_cfg:[206,208],sensor_cli:[213,276,277,280],sensor_cr:[207,276,278],sensor_data_func_t:[208,210],sensor_data_funct_t:208,sensor_dev_cr:207,sensor_devic:206,sensor_driv:[206,208],sensor_ftostr:280,sensor_g:206,sensor_get_config_func_t:[206,208],sensor_get_itf:208,sensor_in:206,sensor_init:[206,208],sensor_itf:[206,207,208],sensor_itf_i2c:[206,207],sensor_itf_spi:206,sensor_itf_uart:206,sensor_listen:[206,210,280],sensor_lo:206,sensor_mg:211,sensor_mgr_find_next_bydevnam:[211,280],sensor_mgr_find_next_bytyp:211,sensor_mgr_l:211,sensor_mgr_lock:211,sensor_mgr_match_bytyp:211,sensor_mgr_regist:[206,208,211],sensor_mgr_unlock:211,sensor_mgr_wakeup_r:[211,280],sensor_nam:276,sensor_o:[212,275,276,277,279,280],sensor_offset:276,sensor_oic_init:[212,275],sensor_oic_obs_r:[212,279],sensor_r:[206,210],sensor_read:[206,210],sensor_read_func_t:[206,208],sensor_register_listen:[210,280],sensor_s:206,sensor_set_driv:[206,208],sensor_set_interfac:[206,208],sensor_set_poll_rate_m:[206,211,280],sensor_set_type_mask:[206,208],sensor_shel:276,sensor_timestamp:206,sensor_type_acceleromet:[206,207,208,278,280],sensor_type_al:206,sensor_type_eul:[208,278],sensor_type_grav:[208,278],sensor_type_gyroscop:[206,208,278],sensor_type_light:206,sensor_type_linear_accel:[208,278],sensor_type_magnetic_field:[206,208,278],sensor_type_non:206,sensor_type_rotation_vector:[208,278],sensor_type_t:[206,208,210,211,280],sensor_type_temperatur:[206,208],sensor_type_user_defined_6:206,sensor_un:[206,210],sensor_unregister_listen:[210,280],sensor_value_type_float:[206,208],sensor_value_type_float_triplet:[206,208],sensor_value_type_int32:206,sensor_value_type_int32_triplet:206,sensor_value_type_opaqu:206,sensor_value_type_temperatur:208,sensornam:[206,207,208,209,276,278,280],sensorname_cli:208,sensorname_ofb:276,sensors_o:277,sensors_test:[275,276,278,279],sensors_test_config_bno055:278,sent:[20,29,130,179,187,190,193,214,249,251,262],sentenc:[62,242],sep:[4,81,82],separ:[20,26,34,35,50,51,66,128,134,176,179,197,205,222,223,249,252,253,254,257,258,260,261,262],seper:287,sequenc:[92,128,130,173,179,226,229],sequenti:[173,174,179],seri:[128,159,191,251,290],serial:[10,66,87,128,129,130,132,133,134,140,182,187,190,223,236,238,239,257,261,262,273,275,276,277,284,285],serror_stat:223,serv:[18,55,93,140,209,222,275],server:[12,14,18,20,21,27,31,133,209,210,212,222,242,251,262,272,275,277,279,280],servic:[16,17,21,27,28,29,31,92,96,134,181,234,247,248,249,250,266,268,273,275],service_data_uuid128:[27,29],service_data_uuid16:29,service_data_uuid32:[27,29],sesnor:280,session:[12,38,39,47,55,57,58,59,61,93,254,257,258,260,261,287],set:[1,2,7,8,9,10,12,19,20,23,24,27,28,29,31,32,34,36,37,39,50,53,55,56,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,81,82,84,86,89,96,97,98,99,100,128,129,130,134,135,145,152,153,157,160,162,163,167,170,173,175,176,177,179,181,186,187,189,190,192,193,194,199,207,209,211,212,213,214,215,219,220,221,222,223,231,235,238,239,241,245,248,249,252,253,254,255,257,258,259,260,261,262,263,265,266,267,268,269,272,274,276,277,279,280,282,283,285,286,287],setting1:224,setting2:224,settl:25,setup:[11,57,59,60,71,80,82,83,208,222,236,239,244,245,255,256,272,273,274,276,280,282,283,284,285,286],sever:[3,20,21,23,27,61,93,94,96,100,128,179,222,225,233,234,251,252,253,259,260,267],sha256:128,sha:128,shall:[24,27,29],share:[4,22,88,89,91,92,98,222,238,267],sheet:208,shell:[1,7,8,21,30,55,59,80,96,129,130,137,138,205,209,215,216,217,218,219,220,221,223,224,225,235,236,241,255,262,263,272,273,275,276,277,282,287],shell_cmd:[214,215,219,220,221,273],shell_cmd_argc_max:[214,262],shell_cmd_func_t:214,shell_cmd_h:214,shell_cmd_help:[214,219,263],shell_cmd_regist:[214,220,273],shell_compat:214,shell_complet:214,shell_evq:273,shell_init:225,shell_max_compat_command:[214,215],shell_max_input_len:138,shell_max_modul:[214,219],shell_modul:214,shell_newtmgr:[214,236],shell_nlip_input_func_t:217,shell_nlip_input_regist:214,shell_os_modul:[214,263],shell_param:[214,219],shell_prompt_modul:[214,256],shell_regist:[214,221],shell_sample_mpool_display_cmd:219,shell_sample_tasks_display_cmd:219,shell_stack:[138,273],shell_stack_s:273,shell_task:[214,224,225,236,256,263,273,276,280],shell_task_handl:273,shell_task_init:138,shell_task_prio:[138,273],shell_task_prior:224,shell_task_stack_s:138,shield:92,shift:[12,21],ship:[6,10],shortcut:[12,273],shorten:247,shorter:[179,240],shorthand:[89,267],shortli:274,shot:262,should:[4,8,10,12,19,26,30,32,55,57,59,61,81,84,85,86,87,89,90,93,96,97,98,99,128,130,134,137,138,140,146,150,152,156,157,160,170,173,179,181,182,187,190,192,193,194,197,199,208,211,214,223,225,229,231,235,240,241,245,247,248,249,250,252,253,254,256,257,258,259,260,261,262,265,266,267,270,273,274,275,276,278,280,283,286,287,288],show:[1,4,5,6,7,8,11,12,27,28,31,36,39,40,43,50,53,57,58,59,60,61,62,72,80,81,82,83,89,99,129,130,193,205,219,222,224,225,231,234,235,236,238,239,241,242,245,251,254,255,256,257,258,259,260,261,262,266,272,273,274,275,276,277,278,279,280,282,283,284,286,287,288,290],shown:[6,7,12,43,55,61,89,92,128,135,192,208,223,235,249,254,257,259,262,265,267,269,272,274,276,278,280,284],si_addr:[206,207],si_cs_pin:206,si_num:[206,207],si_typ:[206,207],sibl:[11,268],sid:27,side:[12,21,30,129,273],sierra:[58,81],sig:[20,29,31],sign:[6,10,37,46,47,57,58,59,80,206,240,245,255],signal:[20,21,26,29,99,190,250],signatuar:12,signatur:[27,46,128],signed_imag:128,signifi:187,signific:[19,89,190,222,262],significantli:31,signigic:89,silent:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,225,273],silicon:32,sim1:[283,284,286],sim:[6,7,61,94,273,283,285,286],sim_slinki:[224,284],similar:[1,8,10,12,92,93,207,245,262,265,272],similarli:[89,205],simpl:[12,20,21,61,85,89,92,93,98,99,101,129,132,134,151,181,223,235,241,246,247,252,253,256,274,280,282],simplehttpserv:[33,63],simpler:[93,251],simplest:[89,283,286],simpli:[6,10,87,89,90,98,99,130,181,222,235,241,243,248,254,272],simplic:[128,252,253],simplifi:[20,87,90,187],simul:[2,3,5,6,50,233,241,280,284],simultaen:89,simultan:[27,29,30],simultaneosli:152,sinc:[3,20,24,32,61,89,92,93,98,100,128,190,214,223,239,240,241,244,245,252,253,254,256,266,267,272,273,274,275],singl:[2,3,7,22,39,47,55,57,58,59,87,89,98,99,128,134,152,171,173,174,179,208,223,225,246,247,251,252,265,267],singli:179,sissu:191,sit:[14,18,134,181,222],site:[246,257,261],situat:[92,222],six:[22,23],size:[9,20,27,29,39,55,57,58,59,61,73,77,87,89,90,93,99,100,101,128,130,132,135,156,173,174,175,179,190,204,205,222,223,224,225,226,234,236,241,254,258,260,262,264,277],size_t:[156,162,199],sizeof:[89,129,136,153,154,155,156,160,161,163,164,171,204,207,226,241,247,249,250,253,272,273,274],skelet:245,skeleton:[7,44,50,235,244,245,254,257,258,259,260,261,262,266,274,283,284,286],skip:[6,11,47,59,128,140,142,254,257,258,259,260,261,266,283,286],sl_arg:[210,280],sl_func:[210,280],sl_next:210,sl_sensor_typ:[210,280],slash:179,slave:[27,29,187,190],slave_interval_rang:29,sleep:[9,85,87,89,91,98,99,100,182,238,241,256],slightli:[96,222],slink:[283,284,286],slinki:[7,45,61,130,152,176,177,222,224,225],slinky_o:[7,61],slinky_sim:224,slinky_task_prior:224,slist_entri:[152,179,206,210],slist_head:[91,206],slot0:128,slot1:128,slot:[7,20,61,71,195,222,239,245,248,254,256,257,258,259,260,261,262,263,266,273,276,280,283,286,287,288],slower:[3,96,97],small:[20,24,89,130,134,171,222,223,251,258,265,273,274],smaller:[10,89,132,194,222,242,254],smallest:[89,179],smart:[21,31,55,61,273,279],smarter:268,smp:[20,21],snapshot:[43,257,261,268],snip:[1,36,43,55,61,236,244,245,274],snippet:249,soc:96,socket:2,soft:[64,80,81,82,191],softwar:[1,3,4,6,21,38,42,47,50,96,97,128,181,234,239,254,257,259,260,266,267,273,274,276,280,283,287],solder:273,solut:[55,181,252,253],solv:[128,222],some:[1,8,12,30,64,76,89,90,92,93,96,98,99,101,128,130,136,140,151,152,153,160,163,173,174,182,190,193,205,219,224,231,235,236,241,246,247,248,249,250,252,253,256,257,258,261,262,263,265,266,267,273,274,280,283,286,287,288,290],somebodi:[129,273],somehow:61,someon:[10,85,274],someth:[20,235,244,245,266,269,287],sometim:[129,254,266,287],somewhat:[92,128,179],somewher:[128,179,222,274],soon:[21,268,274],sooner:194,sophist:241,sort:[179,248],sourc:[1,4,9,21,24,50,56,58,60,61,79,81,83,89,96,128,129,134,166,179,208,209,225,231,238,246,254,257,258,260,266,267,268,274,280,282,286],space:[12,21,34,35,50,51,66,89,96,140,141,156,173,174,187,195,198,214,222,223,244,252,255,266,282,285,290],spec:20,specfi:276,special:[8,89,96,135,222,226,229,251,252,253,265,266,267,268,273,276],specif:[11,20,21,22,23,29,31,57,58,59,61,62,85,87,89,90,92,93,95,96,100,128,132,134,150,152,173,174,181,186,187,189,190,191,192,193,195,205,206,208,222,225,226,230,231,236,241,245,247,249,250,252,253,254,260,262,265,266,267,273,274,283,286],specifi:[1,4,6,7,10,11,12,20,27,30,34,35,37,39,41,43,45,46,50,51,53,55,57,58,59,61,65,66,67,68,69,70,71,72,73,74,75,76,77,84,86,87,89,90,93,96,97,99,100,101,130,132,133,150,152,153,154,155,156,157,158,159,160,161,163,164,166,167,168,169,170,171,172,174,176,177,179,182,186,187,205,206,207,208,209,210,211,212,213,214,215,216,219,224,226,229,231,236,239,244,247,249,250,251,252,253,254,259,260,263,266,267,268,269,274,276,279,280,283,286,287],spectrum:21,speed:[9,21,179,193,254,257,258,259,262,274,287],spew:266,sphinx:[33,63],spi:[8,21,96,134,135,136,186],spi_cfg:[135,136],spi_miso_pin:[135,136],spi_mosi_pin:[135,136],spi_num:[135,136,190],spi_sck_pin:[135,136],spi_ss_pin:[135,136],spi_typ:190,spitest:[7,61],split:[7,71,93,179,191,224,239,274,283,284,286],split_app:7,split_app_init:225,split_config:[283,284],split_elf_nam:61,split_file_test:265,split_load:225,splitti:[7,61,222,224],spot:93,spread:21,spuriou:265,squar:187,sram:260,src:[6,7,11,45,50,55,61,70,80,82,89,93,95,134,176,177,180,181,184,188,189,191,197,225,231,240,241,244,254,257,258,259,260,261,262,265,266,272,273,274,276,278,280,283,284,286],src_off:89,ss_op_wr:249,ss_pin:[135,136],ssec:27,sstatic:272,st_cputim:280,st_ostv:280,stabil:[267,268],stabl:[1,7,57,58,80,81,267,268],stack:[1,9,18,21,24,26,27,30,55,77,85,87,89,92,99,222,225,243,244,245,246,247,249,250,251,262,273],stack_bottom:99,stack_len:217,stack_ptr:217,stack_siz:[97,99],staff:[80,81],stage:[97,128,134,207,222,225],stai:[160,161],stailq_entri:223,stale:[2,254],stand:[89,232],standalon:[10,222],standard:[7,21,31,100,132,133,134,135,151,152,160,181,247,252,253,262,272,273],standbi:[21,195],start:[2,4,8,9,10,12,26,27,28,30,38,47,59,62,71,82,86,88,89,90,91,92,93,95,99,128,134,137,140,141,143,146,152,159,160,168,171,174,179,187,188,190,191,192,193,194,203,211,222,225,233,235,241,242,243,244,247,254,255,256,257,258,260,261,262,265,267,272,273,274,275,276,277,278,280,284,288,290],starter:240,startup:[19,21,26,30,128,222,225,241,252,253],startup_stm32f40x:[258,260],stash:49,stat:[1,7,64,78,80,81,82,131,132,225,236,244,262,263,273,274,280,287],state:[6,21,26,31,52,55,85,87,93,97,99,100,133,140,176,177,181,182,186,199,238,239,241,254,260,268,270],statement:[11,225,236],statist:[1,48,64,73,76,77,80,81,82,262,283,284,286,287],stats_cli:[1,263,273],stats_hdr:[208,223],stats_inc:223,stats_incn:223,stats_init:[208,223],stats_init_and_reg:223,stats_module_init:225,stats_my_stat_sect:223,stats_nam:[1,37,38,76,208,223],stats_name_end:[208,223],stats_name_init_parm:[208,223],stats_name_map:223,stats_name_start:[208,223],stats_newtmgr:[1,224,225,236],stats_regist:[208,223],stats_sect_decl:[208,223],stats_sect_end:[208,223],stats_sect_entri:[208,223],stats_sect_start:[208,223],stats_size_16:223,stats_size_32:[208,223],stats_size_64:223,stats_size_init_parm:[208,223],statu:[10,11,20,136,171,222,239,248,250,252,254,262,273,283,284,286],stdarg:[226,229],stderr:197,stdio:274,stener:210,step:[2,4,6,7,12,47,55,57,59,80,82,92,93,94,128,130,187,207,222,223,242,244,245,252,253,254,257,258,259,260,261,262,266,267,273,274,283,284,286],sterli:268,sterlinghugh:268,stic:[249,251],still:[5,59,66,86,96,97,248,282,287],stitch:1,stksz:[77,273,283,286],stkuse:[77,273,283,286],stlink:258,stm32:[258,260,286],stm32_boot:286,stm32_slinki:286,stm32f2x:258,stm32f303vc:[235,240],stm32f3discoveri:235,stm32f4:[134,135,136,255],stm32f4_adc_dev_init:134,stm32f4_hal_spi_cfg:[135,136],stm32f4disc_blinki:258,stm32f4disc_boot:258,stm32f4discoveri:[53,258],stm32f4discovery_debug:258,stm32f4x:258,stm32f4xx:186,stm32f4xxi:186,stm32serial:286,stm32x:258,stm34f4xx:186,stm:286,stmf303:235,stmf32f4xx:186,stmf3:235,stmf3_blinki:[235,240],stmf3_boot:[235,240],stop:[2,27,84,86,140,150,187,188,192,193,247,266,276],stopbit:193,storag:[20,129,140,167,245,267],store:[1,11,22,27,31,34,35,37,50,55,57,59,61,80,85,87,89,100,129,130,140,147,179,190,195,198,199,217,223,244,247,249,250,267,273,274,275,280,282],stori:89,str:[130,193,199],straight:[247,273],straightforward:[244,274],strategi:241,strcmp:[129,273],stream:[21,199,204,205,217],strength:29,strict:[249,254],strictli:[173,174,179,274],string:[1,10,27,29,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,101,129,130,133,139,160,171,197,198,199,204,214,215,219,223,225,226,229,252,253,265,267,268,272,273,274,284],strip:[46,89],strlen:[247,249],strongli:152,struct:[84,85,86,87,89,90,91,92,93,97,98,99,100,128,129,130,134,135,136,140,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,160,161,163,164,165,166,168,169,170,173,176,177,179,180,182,185,187,190,192,197,198,199,200,201,202,203,204,205,206,207,208,210,211,214,215,216,217,218,219,220,221,223,226,231,232,238,241,247,249,250,251,252,253,256,265,272,273,274,278,280],structur:[7,11,12,18,28,55,61,78,84,87,89,90,91,92,93,98,99,128,130,134,136,146,162,175,178,187,192,197,198,205,207,208,209,215,219,220,223,249,255,265,266,273,274,278,282,285,290],strutur:89,stub:[61,101,205,238,252,253,256,265,273,274],studio:[5,13],stuff:267,style:[130,242],sub:[28,43,45,50,70,71,72,75,76,134,155,253,270],subcmd1:220,subcmd2:220,subcommand:[45,50,62,64,66,70,71,72,75,76,220],subcompon:21,subdirectori:[2,231,265],subfold:257,subject:179,submit:11,subrang:20,subscrib:[28,248,250,274],subsequ:[21,22,128,160,161,222,247,250,265],subset:[22,176,206,208,211,276],substitut:[6,242,244,245],subsystem:[30,59,87,129,130,135,136,214],subtract:[98,100],subtre:129,succe:[176,265],succesfulli:[239,240,244,245,248,254,256,257,258,259,260,261,262,266,273,276,280,283,286,287,288],success:[3,20,55,84,86,89,92,97,99,100,136,141,142,143,144,145,146,148,149,150,152,153,154,156,157,159,160,161,163,164,165,166,167,168,169,170,171,172,176,177,178,179,182,186,187,190,192,193,194,197,200,201,202,203,204,215,217,218,219,229,232,233,235,240,249,251,260,262,265,274],successfuli:[93,265,280],successfulli:[7,20,55,90,93,97,222,235,236,239,240,244,245,248,250,252,253,254,257,258,259,260,261,262,266,273,274,275,276,277,280,283,284,286],sudo:[4,6,7,11,57,58,60,80,83,245],suffici:[89,90,179],suffix:265,suggest:[3,6,211,234,263,290],suit:[6,55,228,230,231,244,264],suitabl:[20,93,173],summar:[93,222],summari:[6,11,19,36,214,219,253],supersed:179,supervision_timeout:[30,248],supplement:[29,247],supplementari:93,suppli:[152,170,172,176,191,265],support:[1,3,4,6,7,10,12,14,19,20,21,22,29,30,32,53,58,66,81,86,92,93,95,101,128,130,132,133,134,135,136,151,179,182,186,190,199,205,206,207,208,211,214,215,219,220,222,223,225,238,239,244,245,246,247,251,252,254,255,257,266,267,268,273,277,282,284,285,290],suppos:[43,91,98,186,223],suppress:284,suppresstasknam:12,sure:[2,7,8,57,89,198,244,245,247,249,254,256,262,265,267,272,273,274],suspend:276,svc:251,sw_rev:276,swap:[2,85,93,173,180,222,254,287],swclk:254,swd:[254,257,258,259,260,261,262,266,274,280],swdio:254,sweep:179,swim:258,swo:[257,266,280],symbol:[4,7,12,61,222,254,258,280,287,288],symlink:[60,83],sync:[20,25,39,57,58,59],sync_cb:[26,252,253],synchron:[20,39,49,57,58,59,96,98,134,190],syntax:[225,242,262,263,276],synthes:24,sys:[1,7,55,57,61,129,130,131,180,205,214,223,224,225,232,236,238,244,256,265,266,273,274,276,280,288],sys_config:[129,222],sys_config_test:7,sys_console_ful:222,sys_einv:[208,280],sys_enodev:208,sys_flash_map:[258,260],sys_log:222,sys_mfg:[7,254,257,258,259,260,276,283,286],sys_shel:222,sys_stat:222,sys_sysinit:[7,254,257,258,259,260,261,276,283,286],syscfg:[23,24,32,37,38,50,61,93,97,129,130,152,173,207,208,209,211,212,213,214,215,219,223,224,236,239,245,254,256,257,262,263,265,266,273,274,276,277,279,280,287,288],sysconfig:236,sysflash:[254,260],sysinit:[7,25,26,92,99,130,196,207,225,238,252,253,254,256,262,265,266,273,274,280],sysinit_assert_act:225,sysinit_panic_assert:[207,208,225],sysresetreq:254,system:[1,3,6,8,9,25,39,50,57,58,59,61,62,86,89,90,93,96,97,99,100,101,128,129,130,131,140,154,155,156,160,161,162,164,165,167,173,175,176,177,179,182,186,190,193,195,196,205,219,222,223,233,234,241,244,245,254,256,257,260,262,263,266,267,268,273,280,288],system_l:186,system_stm32f4xx:[258,260],systemview:290,sysview:[288,289],sysview_mynewt:288,sytem:188,syuu:59,t_arg:99,t_ctx_sw_cnt:99,t_dev:206,t_driver:206,t_flag:99,t_func:[99,241],t_interfa:206,t_itf:206,t_name:99,t_next_wakeup:99,t_obj:99,t_poll_r:206,t_prio:[85,99],t_run_tim:99,t_sanity_check:99,t_stackptr:99,t_stacksiz:99,t_stacktop:99,t_string:204,t_taskid:99,t_type_m:206,t_uinteg:204,tab:[30,36],tabl:[19,20,93,128,131,151,160,179,225,249,251,262,276],tag:268,tail:[89,179],tailq_entri:[179,192],tailq_head:179,take:[6,7,23,45,50,55,62,89,92,129,141,198,211,222,223,241,247,249,250,251,252,253,265,272,274],taken:[7,61,87,92,249,267,268,272],talk:[245,247,284],tap:[4,56,79],tar:[4,57,58,59,60,81,82,83],tarbal:4,target:[3,4,5,7,12,25,29,32,34,35,36,37,38,39,42,43,46,47,48,53,55,57,58,59,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,96,129,195,222,223,224,225,231,239,241,243,252,253,255,263,265,273,275,277,279,285],target_nam:34,targetin:[252,253],task1:[92,97,283,286],task1_evq:97,task1_handl:92,task1_init:92,task1_prio:92,task1_sanity_checkin_itvl:97,task1_sem:92,task1_stack:92,task1_stack_s:92,task2:[92,283,286],task2_handl:92,task2_init:92,task2_prio:92,task2_sem:92,task2_stack:92,task2_stack_s:92,task:[9,11,55,64,77,80,81,82,84,85,87,89,90,91,92,93,95,96,98,100,130,134,139,169,202,211,214,216,219,225,233,236,249,256,262,272,273,275,278,280,283,284,286,290],task_l:238,task_prior:[224,225],tasknam:12,taskstat:[64,78,80,81,82,131,133,236,283,286],tbd:[251,274],tc_case_fail_arg:231,tc_case_fail_cb:231,tc_case_init_arg:231,tc_case_init_cb:231,tc_case_pass_arg:231,tc_case_pass_cb:231,tc_print_result:[231,232],tc_restart_arg:231,tc_restart_cb:231,tc_suite_init_arg:231,tc_suite_init_cb:231,tc_system_assert:231,tck:254,tcp:[254,258],tdi:254,tdo:254,teach:241,team:[4,181,242],technic:[10,235],technolog:[21,135],tee:[1,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,273],telee02:262,telee02_boot:262,telemetri:252,telenor:262,teli:[252,253],tell:[30,55,140,155,193,195,199,222,223,225,235,247,249,252,253,260,268,272,274],telnet:[266,280,287],tem:276,temperatur:[159,206,276],templat:[7,45,244,265,273,280],temporari:[20,97,128,179],temporarili:[91,97],ten:190,term:[3,128,134,152,186,189,267],termin:[2,4,7,8,10,12,20,21,27,59,82,130,154,155,156,160,161,164,171,173,174,176,179,245,247,250,251,254,256,257,258,259,260,261,262,266,278,280,287],terminato:156,termintor:156,terribl:[7,244],test:[4,6,12,39,50,57,58,59,61,64,67,71,75,80,81,82,128,130,131,181,208,209,222,225,226,227,228,229,230,231,232,233,236,239,245,251,252,253,254,256,257,259,264,267,272,274,284,287,290],test_assert:[227,228,230,265],test_assert_fat:[226,265],test_cas:[226,265],test_case_1:228,test_case_2:228,test_case_3:228,test_case_nam:[227,228],test_datetime_parse_simpl:265,test_datetime_suit:265,test_json:265,test_json_util:265,test_project:44,test_suit:[227,228,265],test_suite_nam:230,testbench:[7,61],testcas:[7,265],testnam:75,testutil:[7,180,265],text:[39,48,69,89,130,171,214,222,229,258,283,286],textual:1,tgt:129,tgz:4,than:[3,7,14,20,29,72,89,91,92,93,96,98,99,100,101,128,132,152,163,166,179,190,194,211,214,222,224,226,228,241,245,251,252,253,257,274,280,287],thank:30,thee:96,thei:[1,6,20,29,30,61,84,87,89,90,92,93,98,99,128,129,134,169,179,192,222,223,225,231,234,240,247,248,249,251,252,253,262,263,265,267,268,270,272,276],their_key_dist:27,them:[2,9,55,89,93,98,99,160,177,179,195,222,223,225,241,245,247,252,253,254,265,266,267,274,275,290],themselv:[89,92,251],theori:[55,225],therebi:[98,140],therefor:[20,90,128,148,152,160,241,269],thi:[1,2,3,4,5,6,7,8,9,10,11,12,14,18,20,21,22,23,24,25,26,27,29,30,31,32,33,34,41,43,52,53,55,57,58,59,60,61,63,64,66,71,72,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,128,129,130,132,134,135,136,137,138,140,141,142,143,146,152,154,155,156,158,159,160,161,162,164,166,168,169,171,172,173,174,175,176,178,179,180,181,182,183,185,186,187,188,190,192,193,194,195,196,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,219,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,238,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,265,266,267,268,269,272,273,274,275,276,277,278,279,280,282,283,284,285,286,287,288,290],thing:[1,10,21,24,26,55,61,90,93,96,97,134,187,206,222,252,253,265,268,272,273,274,278,280],thingi:[207,287,288],thingy_boot:280,thingy_debug:[280,287,288],thingy_my_sensor:280,think:[10,128,274],third:[6,19,100,245,247,254,266,274],thorough:268,those:[1,31,32,39,55,57,58,59,61,93,96,128,137,141,222,234,268,272,273,274],though:[89,128,179,187,211,222],thought:274,thread:[9,244,254,258,260],three:[2,11,19,59,61,89,128,130,166,205,222,223,225,238,241,244,246,247,253,254,260,262],through:[21,23,61,62,89,99,128,133,140,146,151,154,155,156,161,164,173,174,181,190,199,211,236,246,248,250,253,254,256,260,265,266,272,273,274,277,279,282],throughout:[1,93,265],throughput:21,thrown:6,thu:[89,93,98,128,134,173,174,186,187,190,241],tick:[84,86,91,96,97,98,100,130,187,192,214,241,256,257,273,280],ticker:84,ticket:10,tickl:[97,194],tid:[77,273,283,286],tie:222,tied:152,ties:[89,244],time:[1,7,9,10,11,12,19,20,21,22,25,27,31,34,43,57,58,59,60,61,77,82,83,84,87,89,92,93,96,97,98,99,128,130,136,140,151,160,161,179,181,194,206,214,222,223,234,238,240,241,244,247,249,251,252,253,257,259,262,265,266,272,273,274,276,280,282,287],time_datetim:[222,280],time_datetime_test:265,time_in_flight:89,timeout:[20,27,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,87,91,98,187,239,273],timer:[24,84,86,87,93,97,181,189,194,211,280],timer_0:24,timer_4:262,timer_5:24,timer_ev_cb:[256,280],timer_interrupt_task:238,timer_num:192,timestamp:[72,206],timev:100,timezon:[100,265],timo:87,timo_func:84,timtest:[7,61],ting:[252,253],tini:[260,286],tinycbor:[7,275],tinycrypt:7,tinyprintf:101,tip:97,titl:[8,285],tlm:252,tlv:[27,128],tmp:[57,59,80,82,169,222],tmpstr:280,tmr:192,todo:[61,179,252,253],togeth:[1,43,55,61,89,137,179,222,248,260,274],toggl:[7,99,186,238,241,256],token:[75,92,98,214,269],told:195,too:[20,89,92,100,134,160,161,179,182,224,273],took:258,tool:[1,2,3,5,6,7,9,10,12,13,39,54,57,58,61,62,63,66,78,79,80,81,92,93,94,96,133,134,223,224,225,231,235,236,238,239,243,244,245,254,255,260,262,263,265,266,267,268,269,274,275,280,282,284,285,287,288,290],toolbox:2,toolchain:[2,3,5,7,12,33,59,63,236,239,245,255,266,282,285,290],toolkit:3,tools_1:[57,58,59,81,82],top:[1,10,12,35,61,89,99,134,173,187,224,245,252,253,265,274],topic:1,total:[9,55,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,89,99,101,128,179,257,259,262,274],tour:246,track:[19,21,22,100,128,179],tradeoff:222,trail:[89,128],trailer:128,transact:[20,187,190],transfer:[22,190,273],transform:179,transit:128,translat:[186,252],transmiss:[20,27,190,193,218,262],transmit:[29,31,130,187,190,262],transmitt:193,transport:[20,21,27,80,130,133,225,239,244,245,254,258,273,274,275,277,279,282],travers:[89,154,155,156,161,164],traverse_dir:[154,155,156,161,164],treat:[140,200],tree:[1,6,7,50,55,61,93,159,244],tri:[3,64,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,129,136,224,262],trial:93,tricki:99,trig:186,trigger:[6,10,87,186],trim:89,trip:97,triplet:206,troubleshoot:[223,224],truncat:[157,169,170,172],truncate_test:265,trust:[22,27,273],tt_chr_f:251,tt_svc_type_p:251,ttl:[245,286],tty:[8,256,266,273,276,283,286],ttys002:66,ttys003:66,ttys005:284,ttys012:[283,286],ttys10:8,ttys2:[8,256,266,276,283,286],ttys5:8,ttyusb0:[10,66,245],ttyusb2:[8,266,283,286],ttyusb:[8,256,266,276,283,286],tu_any_fail:[232,265],tu_case_init_fn_t:231,tu_case_report_fn_t:231,tu_config:[231,232],tu_init:231,tu_restart_fn_t:231,tu_suite_init_fn_t:231,tupl:100,turn:[24,134,181,182,186,222,236,244,245,255,256,259,267,268,276,283],tutiori:[73,76],tutori:[2,3,6,7,8,10,12,21,23,59,77,207,208,212,213,214,231,235,236,238,239,241,243,244,245,246,247,248,249,250,251,252,253,254,256,257,258,259,260,261,262,265,266,272,273,274,275,276,277,278,279,280,283,284,286],tv_sec:[100,265,280],tv_usec:[100,265,280],tvp:100,tweak:151,two:[2,3,10,12,18,19,21,22,23,27,31,43,45,50,55,61,66,89,90,91,92,93,95,99,100,128,130,132,173,179,187,205,206,214,220,222,223,224,225,235,236,238,241,244,245,247,249,252,253,254,256,257,258,259,260,261,262,265,266,267,268,269,270,273,274,275,276,279,280,283,286],tx_data:273,tx_done:193,tx_func:193,tx_len:273,tx_off:273,tx_phys_mask:27,tx_power_level:[27,29],tx_time_on_air:262,txbuf:190,txd:262,txpower:262,txrx:190,txrx_cb:190,txt:[70,153,157,160,163,170,171,172,288],type:[1,7,8,10,12,19,20,23,27,29,30,31,39,43,45,46,53,55,57,58,59,61,66,84,89,90,93,96,99,128,130,133,160,161,176,177,179,186,190,193,199,200,204,205,207,210,212,214,217,224,225,226,227,228,229,230,235,238,239,241,244,245,247,248,249,250,251,252,254,257,258,259,260,262,265,266,267,268,269,272,273,274,278,279,280,283,284,286,287,288],typedef:[26,87,90,97,99,100,130,150,186,190,192,193,199,206,214],typic:[3,9,21,26,31,55,61,89,92,93,94,97,128,130,134,173,174,181,183,186,187,190,205,206,222,223,225,231,247,252,253,265],tz_dsttime:[100,265],tz_minuteswest:[100,265],u8_len:136,uart0:[130,273,284],uart1:273,uart:[7,8,21,55,96,130,134,188,217,236,244,245,257,258,259,260,261,262,273,280,287],uart_0_pin_rx:273,uart_0_pin_tx:273,uart_bitbang:[188,257],uart_flow_control_non:130,uart_hal:[7,258,259,260],uart_rx_char:193,uartno:273,ubuntu:[4,6,7,57,80],uci:23,udev:258,udp:66,uext:286,uicr:23,uid:252,uint16:[27,28],uint16_max:27,uint16_t:[20,89,90,91,97,98,99,128,135,140,141,179,187,190,199,206,217,223,249,272,273,274],uint32:[27,71],uint32_max:27,uint32_t:[84,86,89,90,91,98,99,100,128,135,140,148,152,153,157,158,160,162,163,168,171,172,174,175,179,182,184,187,189,190,192,194,205,206,208,223],uint64:27,uint64_t:199,uint8:27,uint8_max:27,uint8_t:[23,32,87,89,90,91,93,97,99,128,130,134,135,140,148,152,153,154,155,156,160,161,162,163,164,168,171,174,179,182,184,185,187,190,193,199,205,206,208,217,223,247,249,252,253,273,274],uint_max:204,uinteg:[199,204],ultim:249,umbrella:222,unabl:[2,179,254,257,258,261],unaccept:20,unadorn:20,unam:2,unc_t:214,unchang:[93,179],unconfirm:262,und:[27,30],undefin:[82,182,225],under:[4,7,10,11,12,20,26,34,55,61,71,101,129,134,214,251,254,258,259,261,273,274],underli:[96,134,140,152,160,161,180,181,190,206],underlin:242,understand:[7,100,206,222,234,235,239,262,267,274],understood:[160,226],underwai:128,undesir:92,undirect:[27,247],unexpect:[20,154,155,156,161,164,167],unexpectedli:[20,265],unicast:31,unicod:151,unidirect:27,unifi:134,uniform:[29,59],uniformli:62,uninstal:7,unint32:71,uninterpret:225,union:[179,199,249],uniqu:[9,19,32,93,179,182,205,223,224,225,252,262],unit:[1,7,20,27,39,51,57,58,59,84,99,128,225,265,290],unittest:[7,45,55,61,225,244,265,273],univers:193,unix:[2,59,152,235],unknown:[20,224],unlabel:273,unless:[27,99,128,173,187,195,225,273,274],unlicens:21,unlik:[20,90,265],unlink:[58,60,81,83,153,161,166,169],unlink_test:265,unlock:[206,211],unmet:93,unpack:[57,59],unplug:261,unpredict:161,unprovis:31,unregist:210,unresolv:[181,265],unrespons:20,unset:[50,128],unsign:[99,199,223,261,280],unspecifi:[20,42],unstabl:[57,58,80,81],unsuccess:187,unsupport:[20,251],unsur:179,unsync:26,untar:4,until:[20,26,61,86,87,89,92,98,130,140,179,187,190,193,247,252,253,262,267],unuesd:250,unus:[71,272,273,274],unwritten:128,updat:[2,4,15,20,27,30,36,37,49,52,57,58,59,60,80,81,83,89,128,142,179,225,248,250,256,257,263,265,272,274,275,280],upgrad:[2,39,56,59,79,93,128,130,235,236,245,254,266,287,290],uplink:262,uplink_cntr:262,uplink_freq:262,upload:[10,43,70,71,152,195,222,239,257],upon:[1,3,10,26,55,89,128,179,223,250],upper:[23,179,193,225],uppercas:209,upstream:132,uri:[27,29,133],url:[27,252,265,267],url_bodi:252,url_body_len:252,url_schem:252,url_suffix:252,usabl:[1,90,93,244,252],usag:[1,9,57,58,59,62,80,81,82,89,99,134,135,152,173,179,187,206,214,219,223,225,241,262,273,284],usart6_rx:286,usart6_tx:286,usb:[2,3,8,21,42,66,236,238,239,241,245,254,255,257,258,259,260,261,262,266,274,276,282,283,285,286],usbmodem14211:66,usbmodem14221:66,usbmodem401322:8,usbseri:[8,256,266,273,276,283,286],usbttlseri:245,use:[1,4,5,6,7,8,11,12,14,19,20,21,22,24,27,30,32,41,45,50,51,55,56,58,59,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,81,82,84,86,87,93,94,96,98,99,128,129,130,131,134,136,140,141,151,152,165,166,169,173,176,177,179,180,187,190,192,199,200,201,202,203,204,205,206,207,208,209,210,211,214,215,216,219,220,222,223,224,225,231,235,236,237,238,239,240,241,243,244,245,247,248,249,250,252,253,254,255,256,257,260,262,263,265,266,268,269,272,273,274,275,276,279,280,282,283,284,285,286,287,288],use_wl:27,use_wl_inita:27,usec:[86,276,280],used:[6,7,10,11,12,19,20,22,23,24,27,29,30,31,34,46,49,61,66,72,84,86,89,90,91,93,98,99,100,101,128,129,130,135,136,140,143,151,152,156,179,184,187,188,190,192,194,199,206,207,208,214,222,223,224,225,226,227,228,229,230,233,234,235,240,241,245,247,249,250,251,252,253,254,262,265,266,267,268,274,275,276],useful:[3,20,92,171,208,244,267],user:[1,2,4,6,7,8,9,18,20,22,24,48,55,58,59,61,78,80,81,82,84,87,89,90,93,94,97,128,130,131,134,135,140,146,152,173,182,190,191,192,193,213,222,223,224,225,232,235,238,251,254,260,262,266,267,268,269,273,274,280,286],user_defined_head:89,user_hdr:89,user_hdr_len:89,user_id:[224,225],user_manu:235,user_pkthdr_len:89,usernam:[10,48,59,267],uses:[2,4,6,7,8,12,14,20,21,22,23,24,30,32,55,65,66,67,68,69,70,71,72,73,74,75,76,77,78,86,87,93,97,100,101,128,130,131,132,133,134,136,140,151,152,179,181,186,187,205,206,207,208,210,211,214,216,220,224,225,231,233,236,238,239,249,250,251,254,256,259,266,267,269,273,275,276,277,280,283,286],using:[1,2,4,6,7,8,11,12,19,20,21,24,26,27,28,29,31,33,36,37,43,44,57,58,59,60,61,63,66,76,80,81,82,83,84,86,87,89,91,92,94,95,96,97,98,99,100,101,128,129,134,140,143,145,150,151,152,160,179,181,186,187,189,190,192,194,199,208,209,211,214,222,223,225,227,228,230,231,235,236,238,239,241,242,244,245,251,253,254,255,256,257,258,259,260,261,262,265,266,272,273,274,275,277,280,284,285,287,288],usr:[4,6,11,36,57,58,59,60,80,81,82,83],usu:95,usual:[24,89,90,101,134,203,205],utc:[68,100,265],utctim:100,utf:29,util:[7,11,20,21,31,92,101,130,151,152,188,190,205,225,236,265],util_cbmem:280,util_cbmem_test:7,util_crc:[280,284,286],util_mem:[7,254,256,257,258,259,260,261,262,266,276,280,283,284,286],util_pars:[262,276,280],uuid128:[27,29,249,251,253],uuid128_is_complet:[27,29],uuid16:[27,28,29,249,272,274],uuid16_is_complet:[27,29],uuid32:[27,29],uuid32_is_complet:[27,29],uuid:[27,28,29,30,32,66,249,251,253,272,274,275],uvp:100,v10:280,v14:258,v25:258,va_arg:208,va_list:[226,229],val:[23,24,39,50,57,58,59,61,93,129,183,186,190,200,205,223,224,225,236,252,253,256,262,273,275],valid:[20,39,50,53,57,58,59,61,66,72,89,128,135,140,150,152,169,176,177,179,187,190,206,249,265,273,274],valu:[1,4,7,12,20,23,24,27,28,29,30,37,39,42,46,50,53,57,58,59,61,62,64,65,66,68,71,72,75,80,81,82,85,89,90,93,98,99,100,128,129,134,174,175,179,182,186,187,190,191,192,193,194,199,205,207,209,211,214,222,223,236,238,239,245,248,249,250,251,252,253,263,267,268,272,273,274,276,277,279,280,282,287],valuabl:267,value1:[50,225],value2:[50,225],valuen:225,vanilla:151,vari:[9,89,96,128],variabl:[1,4,11,24,34,37,50,59,61,62,65,89,90,99,129,130,173,199,205,206,207,208,211,219,222,226,229,235,241,247,249,262,267,268,275,276,277,280],variant:[22,95,186],variat:12,varieti:[4,250],variou:[23,24,61,89,128,132,134,181,250,255,262],vdd:274,vector:276,vendor:267,ver:[1,7,55,197,198,235,245,254,266,267,268,269,273,274],ver_len:198,ver_str:198,verb:62,verbos:[1,7,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,254,266,273],veri:[1,9,31,55,89,99,101,128,179,207,242,243,251,256,257,267,274,275,287],verif:22,verifi:[22,57,59,80,82,128,179,181,208,222,239,241,257,258,259,261,262,265,274,275],versa:[8,222],version:[1,2,4,6,7,10,11,12,21,22,34,37,39,41,43,47,55,56,60,79,83,84,130,140,179,195,197,198,205,222,225,235,236,239,245,253,254,256,257,258,259,260,261,262,266,270,273,274,276,280,283,286,287,288],via:[8,20,26,42,55,89,90,128,130,134,152,154,155,156,161,164,173,174,176,179,180,181,187,211,214,222,223,225,239,245,246,247,249,257,259,262,267,273,274,276,277,279,282],vice:[8,222],vid:258,view:[1,7,10,12,30,50,62,66,209,213,214,222,223,225,267,274,279,288],vim:59,vin:276,violat:20,viper:11,virtual:[66,183,186],virtualbox:254,visibl:[2,28],visit:[39,57,58,59],visual:[5,13,288],visualstudio:12,vol:22,volatil:258,voltag:[134,136,181,191,258,274],volum:[29,151],vscode:12,vtref:[257,259,262,274],vvp:100,wai:[2,3,9,21,30,31,59,61,84,87,92,99,100,130,152,186,187,188,205,222,224,242,267,268,269,273,274],wait:[84,85,86,87,89,91,92,98,99,136,182,187,190,225,238,241,260,262,272,273,274,282],waitin:91,wake:[85,89,92,98,99,182,211,241],wakeup:[99,211],walk:[89,99,146,150,179,205,274],wall:6,wallclock:[84,100],wanda:81,want:[1,3,11,18,50,57,58,59,60,61,80,83,84,85,89,90,91,92,97,98,99,128,129,130,150,152,169,186,205,206,207,210,223,234,236,240,244,246,247,249,251,252,253,254,255,257,258,259,260,262,263,265,267,273,274,277,287,290],warn:[1,6,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,62,224,249,257,273],warranti:[4,254,273,274,280,287,288],watch:244,watchdog:[92,97,191],watchpoint:[254,258],wdog:67,wear:244,wear_level_test:265,wearabl:9,web:[235,242],webfreak:12,websit:242,welcom:[8,134,243,266,273,276],well:[8,22,40,55,89,90,96,98,128,129,134,195,226,234,248,262,273,274],were:[29,73,89,128,181,222,268,272,273],werror:[6,50],wes:262,west:100,wfi:258,wget:[57,59,80,82],what:[7,8,20,41,55,96,98,135,140,173,174,179,207,208,222,225,237,241,247,250,251,252,253,265,268,272,273,274],whatev:[23,98,266],wheel:[8,235],when:[1,2,6,7,8,10,12,14,20,22,23,24,26,29,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,62,66,72,81,84,85,86,87,88,89,90,91,92,93,94,96,97,98,99,100,128,129,130,131,134,140,141,142,145,151,152,154,155,156,160,161,162,164,169,171,173,174,179,186,187,190,192,193,195,199,202,206,207,208,210,211,212,214,217,220,222,223,224,225,229,231,233,236,238,239,241,242,244,245,246,247,250,251,252,253,254,257,258,260,261,265,267,268,269,273,274,275,276,277,278,279,280,284,287],whenev:[21,26,90,134,179,199,210,249,251,280],where:[8,9,10,11,22,29,31,35,37,50,55,59,60,61,83,89,90,93,95,96,99,128,129,130,140,141,142,145,148,150,179,186,189,190,193,198,199,205,222,224,225,236,241,251,252,253,256,257,262,266,273,274,276,283,286],wherea:[89,268],whether:[10,12,22,84,87,90,100,128,140,155,187,190,191,207,208,209,211,212,213,214,223,225,233,247,249,251,265,276,278,279,280],which:[1,2,4,8,10,11,14,19,20,21,30,32,34,39,55,57,58,59,61,62,66,80,81,82,84,85,86,89,90,92,93,96,97,98,99,100,101,128,129,134,135,137,140,150,151,152,179,182,183,186,187,190,192,195,199,206,208,222,223,224,226,229,232,233,235,239,241,247,248,249,250,251,252,253,254,262,265,266,267,268,273,274,284,287],white:[22,27],whitelist:27,who:10,whole:135,whose:[61,62,179,211],why:[10,241],wide:[21,222],wifi:[7,266],wifi_connect:266,wifi_init:266,wifi_request_scan:266,wikipedia:[187,190],winc1500_wifi:266,window:[5,6,7,9,12,27,56,66,78,79,93,130,239,245,254,256,257,258,259,260,261,262,266,276,283,286,287],winusb:[258,260,286],wipe:144,wire:[8,187,190,262,273,274,286],wireless:21,wish:[6,10,173,174,187,241,267,285],withdraw:10,within:[1,12,20,31,41,55,89,93,94,96,128,134,140,145,148,150,173,174,179,181,186,197,199,205,208,209,210,214,223,231,241,250,260,265,267,273],without:[6,10,22,24,28,30,90,128,152,161,173,174,179,180,205,214,221,222,223,225,239,254,265,273,274,278],wno:6,won:[8,222,274],wonder:274,word:[6,55,89,92,98,128,179,190,249,254,267,280,287,288],word_siz:190,work:[2,4,8,10,11,22,24,55,61,62,85,89,91,92,93,95,96,98,99,128,130,134,135,160,181,223,235,236,240,241,244,245,248,254,256,262,265,270,272,273,274,277,279,282],work_stack:241,work_stack_s:241,work_task:241,work_task_handl:241,work_task_prio:241,workaround:10,workspac:[1,2,11,39,57,58,59,60,80,82,83],workspaceroot:12,world:[12,21,193,247,252,253,255,269,290],worri:92,worth:[1,94,273],would:[5,12,58,59,81,82,84,89,92,98,128,130,137,140,181,186,187,190,202,220,222,223,231,241,244,260,262,265,267,268,273,274,282,286],wrap:[100,223,256],wrapper:87,write:[1,9,14,20,28,61,64,65,80,81,82,94,128,129,130,134,135,136,140,141,142,146,151,152,157,158,168,170,172,173,174,181,184,186,187,193,195,197,200,201,202,203,205,218,223,229,238,241,243,248,250,251,262,264,273,274,275,282],write_cmd_rx:[76,236],write_cmd_tx:[76,236],write_config:[157,170],write_id:172,write_req_rx:[76,236],write_req_tx:[76,236],write_rsp_rx:[76,236],write_rsp_tx:[76,236],written:[11,20,23,59,82,92,128,140,141,142,145,150,156,157,160,163,169,170,171,173,174,179,187,190,249,251,256,268],wrong:[42,274],wsl:[12,59],www:[101,235,245,254,273,274,280,286,287,288],x86:[4,12],x86_64:[254,280,287,288],xml:[7,88,129],xpf:4,xpsr:[254,258,260],xtal_32768:93,xtal_32768_synth:24,xxx:[6,93,99,135],xxx_branch_0_8_0:[267,268],xxx_branch_1_0_0:[267,268],xxx_branch_1_0_2:[267,268],xxx_branch_1_1_0:[267,268],xxx_branch_1_1_2:[267,268],xxx_branch_1_2_0:[267,268],xxx_branch_1_2_1:[267,268],xxxx:181,xzf:[57,59,60,82,83],yai:273,yaml:11,year:31,yes:[22,262],yesno:27,yet:[7,92,96,239,244,267,268,274],yield:92,yml:[1,6,7,41,43,50,52,53,55,61,94,95,101,129,130,135,136,152,173,180,205,207,214,222,223,224,225,235,236,238,244,245,254,256,262,263,265,266,267,269,270,273,274,275,276,280],you:[1,3,4,5,6,7,8,9,10,11,12,18,19,30,33,34,35,39,41,43,45,46,47,50,51,52,53,54,55,57,58,59,60,61,63,64,66,68,76,80,81,82,83,84,92,93,94,95,96,101,128,129,130,131,132,134,137,138,140,141,142,146,155,160,161,163,169,171,173,174,180,181,183,186,187,189,199,202,205,206,207,209,210,211,214,215,216,219,220,221,222,223,224,225,231,234,236,238,239,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,272,274,275,276,277,278,279,280,282,283,284,285,286,287,288,290],your:[1,3,4,6,8,10,19,30,39,50,52,55,56,58,59,60,61,70,71,79,81,82,83,84,92,93,94,95,96,97,99,131,132,133,134,135,136,138,140,151,173,181,205,207,214,220,222,224,225,231,238,239,240,242,243,244,245,246,247,248,250,251,252,253,255,256,262,263,268,272,273,274,275,277,278,282,283,285,286,287,288,290],yourself:[2,10,30,92,93,246,273,290],ype:[252,253],yym:6,zadig:[258,260,286],zero:[12,24,84,89,90,93,99,100,144,148,150,157,169,170,175,182,186,187,190,191,192,193,199,215,217,218,219,225,241,251,252,253,255,262,265,266,267,280,290],zip:[4,257,274],zone:100},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","Contributing to Newt or Newtmgr Tools","Developing Mynewt Applications with Visual Studio Code","Appendix","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":[152,181],"default":[241,256,278],"function":[93,100,101,137,140,195,199,206,208,210,211,225,231,241,249,251,275,278],"import":235,"new":[7,44,94,95,179,183,248,278,280,283,284,286],"public":23,"return":[20,136,138,139,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,159,160,161,163,164,165,166,167,168,169,170,171,172,176,177,178,196,197,198,200,201,202,203,204,215,216,217,218,219,220,221,226,227,228,229,230,232,233],"switch":[101,241],"try":[242,265],Adding:[58,81,223,267,274,275,278,280],For:4,The:[151,256],Use:[2,236,238,245,256,273,280,283,286],Used:206,Uses:205,Using:[8,57,80,89,130,133,188,276,280,286],acceleromet:278,access:[245,249,269],adafruit:10,adc:274,add:[66,93,252,253,272,273,274,275,280],addit:[267,274],address:[19,23,30,252,253],administr:10,advertis:[27,29,30,247,252,253],air:[239,271,272,273],all:238,ambigu:224,analog:274,apach:[9,31,92],api:[27,28,30,84,85,86,87,88,89,90,91,97,98,99,100,129,130,151,152,173,180,182,183,184,186,187,189,190,191,192,193,194,205,206,210,211,280],app:[9,30,61,222,245,248,262,280,282,288],app_get_light:275,app_set_light:275,appendix:[13,93],applic:[7,12,32,92,205,206,207,222,235,236,238,241,244,245,252,253,254,256,257,258,259,260,261,262,263,266,274,275,276,277,278,280,283,286],apt:[57,80],architectur:94,arduino:[8,254,257,266],area:[173,179,224],argument:[138,139,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,159,160,161,163,164,165,166,168,169,170,171,172,176,177,196,197,198,200,201,202,203,204,215,216,217,218,219,221,226,227,228,229,230,232,233],arm:4,artifact:61,assert:265,assign:224,associ:12,att:[14,20],attach:245,attribut:[30,251],autocomplet:36,avail:[27,28,39,43,50,255,267,282,285],bare:244,baselibc:101,bash:36,basic:92,beacon:[252,253],bearer:31,begin:[30,247],being:249,belong:30,between:266,binari:[57,59,80,82],bit:6,ble:[21,244,246,248,252,253,274,275],blehci:245,bleprph_gap_ev:250,bleprph_oic:275,blink:235,blink_rigado:48,blinki:[7,235,240,254,255,256,257,258,259,260,261],block:179,bluetooth:[21,31,243,245,272],bluez:245,bno055:276,bno055_log:208,bno055_stat:208,board:[96,207,254,257,258,259,260,261,262,266,274,275,276,277,283,286],bone:244,boot:[128,222],bootload:[128,245,254,257,258,259,260,261,262,266,276,280,283,286],branch:[58,81],brew:6,bsp:[53,93,96,182,224],btmgmt:245,btmon:245,btshell:[27,28,30],buffer:140,bug:10,build:[7,9,12,34,55,61,235,236,240,241,244,245,254,256,257,258,259,260,261,262,266,274,275,276,277,278,280,283,284,286],cach:179,call:278,callback:250,callout:[84,238],can:10,cannot:278,categori:290,chang:[33,63,278],channel:27,characterist:[30,246,249],check:[57,58,59,80,81,82,93,97,128,211],choos:265,circular:140,clean:35,clear:261,cli:[129,273],client:[14,16],clock:24,close:262,code:[10,12,20,93,94,167,223,263,265],collect:179,command:[12,27,28,39,43,50,62,64,66,132,208,213,214,236,245,273,284],committ:10,commun:[8,236,256],compil:94,complet:[36,214],compon:[21,267],comput:[57,80,266,276,280],concept:[1,222],conclus:[244,252,253,274],condit:225,config:[65,129],configur:[1,12,23,24,27,28,30,129,151,205,206,207,208,211,224,225,235,236,252,253,256,278],conflict:225,congratul:265,conn:66,connect:[27,30,236,239,245,254,256,257,258,259,260,261,262,266,274,275,276,277,280,283,284,286,287],consider:241,consol:[130,214,223,256,266,276,280,287],contain:2,content:[33,63],context:241,contribut:11,control:[24,245,252,253,275,276,277,282],copi:[93,275],core:[20,92,96],cpu:[86,94,96],crash:67,creat:[7,37,89,93,94,183,207,235,236,239,244,245,248,252,253,254,257,258,259,260,261,262,265,266,268,273,274,275,276,277,280,283,284,286],creation:92,cross:4,crystal:24,current:222,custom:[97,131,236],data:[29,100,137,140,152,173,179,187,195,199,206,208,210,211,214,231,247,262,275,276,277,278,279,280],datetim:68,ddress:23,debian:[57,80],debug:[12,38,61,93],debugg:[4,12],declar:223,decod:199,defin:[12,93,208,223,237],definit:[185,224,225],delet:[66,275],depend:[7,61,93,96,135,136,180,181,235,236,256,268,275,280],descript:[34,35,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,65,66,67,68,69,70,71,72,73,74,75,76,77,84,85,86,87,88,90,91,96,97,98,99,100,101,130,134,137,140,151,152,173,181,182,184,185,186,187,189,190,191,192,193,194,195,199,214,222,231,276],descriptor:[30,246,251,267],design:[134,181],detail:223,detect:179,determin:249,develop:[12,259,280],devic:[2,23,27,30,129,206,207,208,239,245,275,276,277,278,282],direct:30,directori:[61,179],disabl:27,discov:30,discoveri:[27,235,240,258],disk:179,disk_op:152,displai:30,docker:2,document:[10,33,63],doe:267,download:[11,57,61,80,93,235,240,262,274],driver:[134,206,208,273,274,278],duplic:224,echo:69,eddyston:252,edit:10,editor:10,elua:137,empti:[252,253],emul:276,enabl:[2,27,36,214,222,223,236,256,266,275,276,277,279,280],encod:199,endif:[207,208],energi:243,enhanc:173,enter:244,environ:11,equip:241,eras:257,error:224,establish:[30,245,266],etap:274,event:[26,87,238,250,256],everyth:[2,262,274],exampl:[8,20,21,26,34,35,37,38,39,43,44,45,46,47,48,50,51,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77,87,92,129,134,135,136,138,139,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,159,160,161,163,164,166,168,169,170,171,172,176,177,181,185,193,197,198,200,201,202,203,204,215,217,218,220,221,224,225,226,227,228,230,231,232,233,238],execut:[6,235,240,257,258,259,261,262,274,284,287,288],exist:[236,256,267,276],explor:7,express:224,extend:[27,280],extens:[2,12],extern:[235,254,266],faq:10,fat:151,fcb:140,fcb_append:141,fcb_append_finish:142,fcb_append_to_scratch:143,fcb_clear:144,fcb_getnext:145,fcb_init:146,fcb_is_empti:147,fcb_offset_last_n:148,fcb_rotat:149,fcb_walk:150,featur:[7,10,21,22,28,31,92],fetch:[7,254,266],field:29,file:[93,135,136,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,223,228,268,275,278,280],filesystem:[152,173],fill:93,find:267,first:[7,9],flag:[34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77],flash:[93,128,135,140,173,179,184,224,257,261],format:[128,179],framework:[133,208,209,236,279],from:[57,58,59,80,81,82,130,275,277,278],fs_close:153,fs_closedir:154,fs_dirent_is_dir:155,fs_dirent_nam:156,fs_filelen:157,fs_getpo:158,fs_mkdir:159,fs_op:162,fs_open:160,fs_opendir:161,fs_read:163,fs_readdir:164,fs_regist:165,fs_renam:166,fs_seek:168,fs_unlink:169,fs_write:170,fsutil_read_fil:171,fsutil_write_fil:172,ft232h:8,full:130,futur:173,gap:[15,27,250],garbag:179,gatt:[16,17,28,272],gcc:6,gdb:6,gener:[22,30,134,181,225,238],get:[3,57,80,208],git:[10,59],global:[34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77],gpio:186,guarante:250,guid:[21,55,78,234],hal:[96,183,188,273],hal_flash_int:185,hal_i2c:187,handler:[129,205,214],hardcod:23,hardwar:[23,181,235,262,274,276,287,288],have:10,hci:[20,245],header:[14,15,16,17,19,20,89,135,136,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,180,223,275,278],heading3:242,heading4:242,heap:88,hello:[235,254,257,258,259,260,261],help:[39,214],high:128,hold:223,homebrew:[58,81],host:[14,15,16,17,18,19,20,252,253],how:[10,101,225,237,238,263,267,275,278],i2c:187,ibeacon:253,ident:19,identifi:267,ignor:224,imag:[10,37,46,71,128,195,222,235,236,239,240,245,257,258,259,260,261,262,266,274,275,276,277,278,280,283,286],imgmgr_module_init:196,imgr_ver_pars:197,imgr_ver_str:198,implement:[94,134,205,208,223],includ:[30,208,223,251],indefinit:[252,253],info:40,inform:214,initi:[30,135,136,173,206,208,223,225,241,278],inod:179,input:[130,214],instal:[2,4,5,6,11,12,36,41,56,57,58,59,60,79,80,81,82,83,235,262,274],instead:280,integr:128,interfac:[180,183,206],intern:[173,179],interrupt:238,introduct:[9,14,15,16,17,18,19,20,31,55,93,238,246,265],invalid:224,invok:132,issu:10,join:262,json:199,json_encode_object_entri:200,json_encode_object_finish:201,json_encode_object_kei:202,json_encode_object_start:203,json_read_object:204,kei:[22,27],kernel:92,kit:259,l2cap:[20,27],laptop:10,latest:[57,58,59,80,81,82],launch:288,layer:181,led:[235,240],legaci:27,level:[128,205,239],libc:6,librari:[188,235],like:10,limit:128,line:214,link:4,linker:93,linux:[2,4,6,8,11,57,60,80,83],lis2dh12_onb:207,list:[10,64,101,137,140,195,199,206,210,211,222,231,242,252,253,276,280],listen:[210,280],load:[42,236,245,254,257,258,259,260,261,266,275,276,277,278,280,283,286],loader:222,log:[72,205,208,239],look:211,lorawan:262,low:243,lua_init:138,lua_main:139,mac:[2,4,6,8,11,58,60,81,83],macro:100,main:[241,256,275,278,280],make:10,manag:[9,10,20,55,63,78,131,132,195,211,236,238,241],manual:[57,80],map:[93,128],markdown:242,master:[58,81],mbuf:89,mcu:[93,95,96],measur:173,memori:[90,261],merg:10,mesh:[21,31],messag:224,method:[23,57,80],mfg:43,mgmt:131,mingw:59,minim:130,miscellan:173,mkr1000:266,mmc:136,model:31,modif:240,modifi:[236,256,275,280],modul:[214,223],monitor:[245,277,279],more:[55,235],move:179,mpstat:73,mqueue:89,msy:89,msys2:59,multipl:[12,152,223,224,238],mutex:91,my_sensor_app:280,mynewt:[2,7,8,9,10,12,23,31,33,58,63,81,92,93,94,95,96,130,209,244,267,275,277,282],mynewt_v:[207,208],name:[30,214,223,225],nano:261,nativ:[5,6],need:[2,235,240,262,267,273,274,276,287,288],newt:[2,9,10,11,12,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,63,78,131,132,236],newtmgr:[11,65,66,67,68,69,70,71,72,73,74,75,76,77,80,81,82,83,132,214,223,236,239,283,284,286],newtron:173,next:[6,276],nff:[173,179],nffs_area_desc:174,nffs_config:175,nffs_detect:176,nffs_format:177,nffs_init:178,nimbl:[14,15,16,17,18,19,20,21,22,25,244,245,252,253],node:31,nordic:[8,283],normal:89,note:[55,100,137,138,139,141,142,143,144,145,146,147,148,149,150,153,156,158,159,160,161,165,166,168,170,171,174,175,196,197,198,216,223,226,229,274],notnul:224,nrf52:[259,274,276,283],nrf52_adc:274,nrf52dk:[8,10],nrf:23,object:[179,206,235,240,255,262,274,287,288],off:[207,276],oic:[133,212,275,277,279,282],oicmgr:236,olimex:[260,286],omgr_app_init:275,onboard:[207,280],onto:[254,266],open:[245,262],openocd:4,oper:[55,61,92,128,187,190,222],option:[236,257],orient:27,ota:262,other:[7,12,180,236,264,268],out:[265,267,268],output:[48,53,130],over:[214,239],overrid:[224,225],overview:[64,209,246,247,248,250,255,275,278,279,282,285],own:10,pack:2,packag:[1,7,57,61,80,93,96,130,180,205,206,209,224,225,236,244,254,265,266,273,275,276,280],packet:89,passiv:30,patch:10,peer:[20,30],perform:30,peripher:[246,248],persist:129,pin:240,pkg:[45,93],platform:[8,181],poll:[206,211],pool:[89,90],port:[8,93,94,95,96,262],preempt:241,prerequisit:[7,236,238,239,241,245,248,254,255,256,257,258,259,260,261,266,275,276,277,278,279,280,282,283,284,285,286,290],preview:[33,63],previou:[60,83],primo:257,principl:[134,181],prioriti:[224,241],privaci:22,privat:269,pro:8,process:[214,256],produc:[6,61],profil:[236,239,284],project:[1,7,10,12,21,235,236,244,245,246,254,255,256,257,258,259,260,261,262,266,267,268,271,272,273,274,283,284,285,286],prompt:214,protect:261,protocol:[214,236,252,253],provis:31,pull:[2,10],put:238,qualiti:[271,272,273],queri:[283,286],question:10,queue:[87,238,256],ram:179,random:23,rate:206,rational:55,read:[30,206,208,249,278,280],reboot:278,rebuild:[11,280],reconfigur:207,recoveri:128,redbear:261,reduc:[10,239,263],refer:[14,15,16,17,19,20,225],referenc:225,regist:[97,180,208,211,214,223,276],registr:251,releas:[57,58,59,60,80,81,82,83],renam:179,repo:[267,268,270],repositori:[7,10,55,267,268,269,274],represent:179,request:10,requir:93,reset:[26,74,128],resign:46,resolut:268,resolv:[61,225,268],respond:26,restrict:224,retriev:[222,223],review:[241,249],round:240,rtt:[280,287],run:[7,12,47,75,254,256,284,287,288],runtim:[23,129],safeti:152,sampl:[32,276,278],saniti:97,satisfi:93,scale:265,scan:30,schedul:85,scratch:179,script:[2,93],section:223,secur:[20,22,27],segger:[4,287,288],select:2,semaphor:98,semiconductor:8,send:[30,245,262],sensor:[206,207,208,209,210,211,212,213,271,272,273,274,275,276,277,278,279,280,281,282],sensor_read:280,sensors_test:277,sequenc:222,serial:[8,214,245,256,266,283,286],server:17,servic:[30,246,251,272,274],set:[6,11,30,57,80,93,205,206,208,224,225,236,244,247,251,256,273,275,278,284],settl:24,setup:[3,8,25,266,287,288],shell:[208,213,214,256,280],shell_cmd_regist:215,shell_evq_set:216,shell_nlip_input_regist:217,shell_nlip_output:218,shell_regist:219,shell_register_app_cmd_handl:220,shell_register_default_modul:221,should:268,show:[30,66],sign:[128,235,257,258,259,260,261,262,266,274,283,286],signatur:249,sim:284,simul:7,singl:222,size:[10,48,263],skeleton:280,slinki:[283,284,285,286],slot:128,smart:[275,277,282],softwar:[10,288],some:10,sourc:[7,11,55,57,59,80,82,236,252,253,273,275],space:179,special:100,specif:[94,268],specifi:[180,225],spi:190,split:222,stack:[241,252,253],start:[3,245,266],startup:93,stat:[76,208,223],state:[128,129,222],statist:223,statu:128,step:[11,239,255,275,276,277,278,280,285],stm32f303:235,stm32f3:[235,240],stm32f4:258,storag:27,struct:[152,162,174,175],structur:[62,100,137,140,152,173,179,195,199,206,210,211,214,231],stub:130,studio:12,stuff:273,sub:66,submit:10,suit:265,summari:20,support:[2,31,61,96,152,181,209,212,235,236,275,276,279,280],swap:128,sync:[26,49,252,253],syscfg:[205,222,225,275],sysinit_app:225,system:[24,55,92,151,152,180,191,224,225],systemview:288,tabl:223,talk:266,tap:[58,81],target:[1,23,50,61,93,235,236,237,240,244,245,248,254,256,257,258,259,260,261,262,266,274,276,280,283,284,286,287,288],task:[12,97,99,224,238,241,274],taskstat:77,tcp:266,templat:93,termin:276,test:[7,51,93,265,273],test_assert:226,test_cas:[227,228],test_case_decl:228,test_pass:229,test_suit:230,testutil:231,theori:[61,187,190,222],thingi:280,thread:152,through:223,tick:189,time:[24,86,100],timer:[192,238,256],togeth:238,tool:[4,11,33,55,59,82,289],toolchain:[4,6],topolog:31,transport:[214,236],tree:273,tu_init:232,tu_restart:233,tutori:[222,255,282,285,290],type:[206,208,211,276],uart:193,undefin:224,under:265,undirect:30,unifi:222,unlink:179,updat:11,upgrad:[52,57,58,80,81,222,239,270],upload:256,usag:[34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,65,66,67,68,69,70,71,72,73,74,75,76,77,131,140],usb2:2,use:[10,57,80,89,92,267],user:[21,234],using:[10,55,283,286],val:53,valid:224,valu:[136,138,139,141,142,143,144,145,146,147,148,149,150,153,154,155,156,157,158,159,160,161,163,164,165,166,168,169,170,171,172,176,177,178,196,197,198,200,201,202,203,204,206,208,215,216,217,218,219,220,221,224,225,226,227,228,229,230,232,233,275,278],variabl:223,vector:128,verif:[128,278],verifi:278,version:[54,57,58,59,80,81,82,267,268],via:[266,272,280],view:[275,276,277,280],violat:224,virtualbox:2,visual:12,wait:[252,253],want:[10,235],watch:[235,240],watchdog:194,water:274,welcom:9,what:[10,235,240,267],wheel:240,where:268,why:[89,92,267],window:[2,4,8,11,59,60,82,83],work:12,workspac:12,world:[235,254,257,258,259,260,261],would:10,wrapper:2,write:[30,33,63,179,249,261,265],yml:[93,268],you:[2,235,240,273],your:[2,7,9,11,12,57,80,180,188,223,235,236,241,254,257,258,259,260,261,265,266,267,276,280,284],zero:254}})
\ No newline at end of file
diff --git a/master/sitemap.xml b/master/sitemap.xml
index e995c872e..725f65ebe 100644
--- a/master/sitemap.xml
+++ b/master/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -76,7 +76,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -85,7 +85,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -97,7 +97,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -133,7 +133,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -143,37 +143,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/sitemap.xml b/sitemap.xml
index e995c872e..725f65ebe 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -76,7 +76,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -85,7 +85,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -97,7 +97,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -133,7 +133,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -143,37 +143,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v0_9_0/sitemap.xml b/v0_9_0/sitemap.xml
index 607027af3..3792d07d1 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-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -12,7 +12,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -20,7 +20,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -53,7 +53,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -65,7 +65,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -101,7 +101,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -111,13 +111,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_0_0/sitemap.xml b/v1_0_0/sitemap.xml
index 1eec8fbb9..83a4c06e2 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-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,7 +13,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -22,7 +22,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -30,7 +30,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -38,7 +38,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -46,7 +46,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -54,7 +54,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -62,7 +62,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -71,7 +71,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -83,7 +83,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -119,7 +119,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -129,25 +129,25 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_1_0/sitemap.xml b/v1_1_0/sitemap.xml
index 4b1257948..bd15b8167 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-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -125,7 +125,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -135,25 +135,25 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_2_0/sitemap.xml b/v1_2_0/sitemap.xml
index 9b85645d7..039399f09 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-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -125,7 +125,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -135,37 +135,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-03-03</lastmod>
+     <lastmod>2018-03-06</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