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/05/25 01:14:42 UTC

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

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

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/_images/task_lesson.png b/develop/_images/task_lesson.png
new file mode 100644
index 000000000..4b095065a
Binary files /dev/null and b/develop/_images/task_lesson.png differ
diff --git a/develop/_sources/tutorials/blinky/blinky.rst.txt b/develop/_sources/tutorials/blinky/blinky.rst.txt
index 5f506c614..4a3393c12 100644
--- a/develop/_sources/tutorials/blinky/blinky.rst.txt
+++ b/develop/_sources/tutorials/blinky/blinky.rst.txt
@@ -79,7 +79,7 @@ After you try the Blinky application on your boards, checkout out other
 tutorials to enable additional functionality such as :doc:`remote
 comms <../slinky/project-slinky>` on the current board. If you have BLE
 (Bluetooth Low Energy) chip (e.g. nRF52) on your board, you can try
-turning it into an :doc`iBeacon <../ble/ibeacon>` or :doc:`Eddystone
+turning it into an :doc:`iBeacon <../ble/ibeacon>` or :doc:`Eddystone
 Beacon <../ble/eddystone>`!
 
 If you see anything missing or want to send us feedback, please sign up
diff --git a/develop/_sources/tutorials/devmgmt/add_newtmgr.rst.txt b/develop/_sources/tutorials/devmgmt/add_newtmgr.rst.txt
new file mode 100644
index 000000000..97bec600e
--- /dev/null
+++ b/develop/_sources/tutorials/devmgmt/add_newtmgr.rst.txt
@@ -0,0 +1,319 @@
+Enabling Newt Manager in Your Application
+-----------------------------------------
+
+In order for your application to communicate with the newtmgr tool and
+process Newt Manager commands, you must enable Newt Manager device
+management and the support to process Newt Manager commands in your
+application. This tutorial explains how to add the support to your
+application.
+
+This tutorial assumes that you have read the :doc:`Device Management with
+Newt Manager <../../../os/modules/devmgmt/newtmgr>` guide and are familiar
+with the ``newtmgr`` and ``oicmgr`` frameworks and all the options that
+are available to customize your application.
+
+This tutorial shows you how to configure your application to:
+
+-  Use the newtmgr framework.
+-  Use serial transport to communicate with the newtmgr tool.
+-  Support all Newt Manager commands.
+
+See :doc:`Other Configuration Options <#other-configuration-options>` on
+how to customize your application.
+
+.. contents::
+   :local:
+   :depth: 2
+
+Prerequisites
+~~~~~~~~~~~~~
+
+Ensure that you have met the following prerequisites before continuing
+with this tutorial:
+
+-  Have Internet connectivity to fetch remote Mynewt components.
+-  Have a cable to establish a serial USB connection between the board
+   and the laptop.
+-  Install the newt tool and toolchains (See :doc:`Basic
+   Setup <../../get_started/index>`).
+-  Install the :doc:`newtmgr tool <../../newtmgr/docs/install/index>`.
+
+Use an Existing Project
+~~~~~~~~~~~~~~~~~~~~~~~
+
+We assume that you have worked through at least some of the other
+tutorials and have an existing project. In this example, we modify the
+``btshell`` app to enable Newt Manager support. We call our target
+``myble``. You can create the target using any name you choose.
+
+Modify Package Dependencies and Configurations
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Add the following packages to the ``pkg.deps`` parameter in your target
+or application ``pkg.yml`` file:
+
+.. code-block:: console
+
+   pkg.deps:
+       - mgmt/newtmgr
+       - mgmt/newtmgr/transport/nmgr_shell
+       - mgmt/imgmgr
+       - sys/log/full
+       - sys/stats/full
+       - sys/config
+       - test/crash_test
+       - test/runtest
+
+Each package provides the following Newt Manager functionality:
+
+-  ``mgmt/newtmgr``: Supports the newtmgr framework and the Newt Manager
+   ``echo``, ``taskstat`` ``mpstat``, ``datetime``, and ``reset``
+   commands.
+-  ``mgmt/newtmgr/transport/nmgr_shell``: Supports serial transport.
+-  ``mgmt/imgmgr``: Supports the ``newtmgr image`` command
+-  ``sys/log/full`` : Supports the ``newtmgr log`` command.
+-  ``sys/stats/full``: Supports the ``newtmgr stat`` command.
+-  ``sys/config``: Supports the ``newtmgr config`` command.
+-  ``test/crash_test``: Supports the ``newtmgr crash`` command.
+-  ``test/runtest``: Supports the ``newt run`` command.
+
+Add the following configuration setting values to the ``syscfg.vals``
+parameter in the target or application ``syscfg.yml`` file:
+
+.. code-block:: console
+
+
+   syscfg.vals:
+       LOG_NEWTMGR: 1
+       STATS_NEWTMGR: 1
+       CONFIG_NEWTMGR: 1
+       CRASH_TEST_NEWTMGR: 1
+       RUNTEST_NEWTMGR: 1
+       SHELL_TASK: 1
+       SHELL_NEWTMGR: 1
+
+The first five configuration settings enable support for the Newt
+Manager ``log``, ``stat``, ``config``, ``crash``, and ``run`` commands.
+The ``SHELL_TASK`` setting enables the shell for serial transport. The
+``SHELL_NEWTMGR`` setting enables newtmgr support in the shell.
+
+Note that you may need to override additional configuration settings
+that are specific to each package to customize the package
+functionality.
+
+Modify the Source
+~~~~~~~~~~~~~~~~~
+
+By default, the ``mgmt`` package uses the Mynewt default event queue to
+receive request events from the newtmgr tool. These events are processed
+in the context of the application main task.
+
+You can specify a different event queue for the package to use. If you
+choose to use a dedicated event queue, you must create a task to process
+events from this event queue. The ``mgmt`` package executes and handles
+newtmgr request events in the context of this task. The ``mgmt`` package
+exports the ``mgmt_evq_set()`` function that allows you to specify an
+event queue.
+
+This example uses the Mynewt default event queue and you do not need to
+modify your application source.
+
+If you choose to use a different event queue, see :doc:`Events and Event
+Queues <../os_fundamentals/event_queue>` for details on how to initialize an event
+queue and create a task to process the events. You will also need to
+modify your ``main.c`` to add the call to the ``mgmt_evq_set()``
+function as follows:
+
+Add the ``mgmt/mgmt.h`` header file:
+
+.. code-block:: c
+
+   #include <mgmt/mgmt.h>
+
+Add the call to specify the event queue. In the ``main()`` function,
+scroll down to the ``while (1)`` loop and add the following statement
+above the loop:
+
+.. code-block:: c
+
+   mgmt_evq_set(&my_eventq)
+
+where ``my_eventq`` is an event queue that you have initialized.
+
+Build the Targets
+~~~~~~~~~~~~~~~~~
+
+Build the two targets as follows:
+
+.. code-block:: console
+
+   $ newt build nrf52_boot
+   <snip>
+   App successfully built: ./bin/nrf52_boot/apps/boot/boot.elf
+   $ newt build myble
+   Compiling hci_common.c
+   Compiling util.c
+   Archiving nimble.a
+   Compiling os.c
+   <snip>
+
+Create the Application Image
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Generate an application image for the ``myble`` target. You can use any
+version number you choose.
+
+.. code-block:: console
+
+   $ newt create-image myble 1.0.0
+   App image successfully generated: ./bin/makerbeacon/apps/btshell/btshell.img
+   Build manifest: ./bin/makerbeacon/apps/btshell/manifest.json
+
+Load the Image
+~~~~~~~~~~~~~~
+
+Ensure the USB connector is in place and the power LED on the board is
+lit. Turn the power switch on your board off, then back on to reset the
+board after loading the image.
+
+.. code-block:: console
+
+   $ newt load nrf52_boot
+   $ newt load myble
+
+Set Up a Connection Profile
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+The newtmgr tool requires a connection profile in order to connect to
+your board. If you have not done so, follow the
+:doc:`instructions <../../newtmgr/command_list/newtmgr_conn>` for
+setting up your connection profile.
+
+Communicate with Your Application
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Once you have a connection profile set up, you can connect to your
+device with ``newtmgr -c myconn <command>`` to run commands in your
+application.
+
+Issue the ``echo`` command to ensure that your application is
+communicating with the newtmgr tool:
+
+.. code-block:: console
+
+   $ newtmgr -c myconn echo hello
+   hello
+
+ Test your application to ensure that it can process a Newt Manager
+command that is supported by a different package. Issue the ``stat``
+command to see the BLE stats.
+
+.. code-block:: console
+
+   stat group: ble_att
+            0 error_rsp_rx
+            0 error_rsp_tx
+            0 exec_write_req_rx
+            0 exec_write_req_tx
+            0 exec_write_rsp_rx
+            0 exec_write_rsp_tx
+            0 find_info_req_rx
+            0 find_info_req_tx
+            0 find_info_rsp_rx
+            0 find_info_rsp_tx
+            0 find_type_value_req_rx
+
+                  ...
+
+            0 read_type_req_tx
+            0 read_type_rsp_rx
+            0 read_type_rsp_tx
+            0 write_cmd_rx
+            0 write_cmd_tx
+            0 write_req_rx
+            0 write_req_tx
+            0 write_rsp_rx
+            0 write_rsp_tx
+
+Your application is now able to communicate with the newtmgr tool.
+
+Other Configuration Options
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+This section explains how to customize your application to use other
+Newt Manager protocol options.
+
+Newtmgr Framework Transport Protocol Options
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+The newtmgr framework currently supports BLE and serial transport
+protocols. To configure the transport protocols that are supported,
+modify the ``pkg.yml`` and ``syscfg.yml`` files as follows:
+
+-  Add the ``mgmt/newtmgr/transport/ble`` package to the ``pkg.deps``
+   parameter to enable BLE transport.
+-  Add the ``mgmt/newtmgr/transport/nmgr_shell`` package to the
+   ``pkg.deps`` parameter, and add ``SHELL_TASK: 1`` and
+   ``SHELL_NEWTMGR`` to the ``syscfg.vals`` parameter to enable serial
+   transport when your application also uses the
+   :doc:`Shell <../../../os/modules/shell/shell>`.
+-  Add the ``mgmt/newtmgr/transport/nmgr_uart`` package to the
+   ``pkg.deps`` parameter to enable serial transport over a UART port.
+   You can use this package instead of the ``nmgr_shell`` package when
+   your application does not use the
+   :doc:`Shell <../../../os/modules/shell/shell>` or you want to use a dedicated
+   UART port to communicate with newtmgr. You can change the
+   ``NMGR_UART`` and ``NMGR_URART_SPEED`` sysconfig values to specify a
+   different port.
+
+Oicmgr Framework Options
+^^^^^^^^^^^^^^^^^^^^^^^^
+
+To use the oicmgr framework instead of the newtmgr framework, modify the
+``pkg.yml`` and ``syscfg.yml`` files as follows:
+
+-  Add the ``mgmt/oicmgr`` package (instead of the ``mgmt/newtmgr`` and
+   ``mgmt/newtmgr/transport`` packages as described previously) to the
+   ``pkg.deps`` parameter.
+-  Add ``OC_SERVER: 1`` to the ``syscfg.vals`` parameter.
+
+Oicmgr supports the IP, serial, and BLE transport protocols. To
+configure the transport protocols that are supported, set the
+configuration setting values in the ``syscfg.vals`` parameter as
+follows:
+
+-  Add ``OC_TRANSPORT_IP: 1`` to enable IP transport.
+-  Add ``OC_TRANSPORT_GATT: 1`` to enable BLE transport.
+-  Add ``OC_TRANSPORT_SERIAL: 1``, ``SHELL_TASK: 1``,
+   ``SHELL_NEWTMGR:1`` to enable serial transport.
+
+Customize the Newt Manager Commands that Your Application Supports
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+We recommend that you only enable support for the Newt Manager commands
+that your application uses to reduce your application code size. To
+configure the commands that are supported, set the configuration setting
+values in the ``syscfg.vals`` parameter as follows:
+
+-  Add ``LOG_NEWTMGR: 1`` to enable support for the ``newtmgr log``
+   command.
+-  Add ``STATS_NEWTMGR: 1`` to enable support for the ``newtmgr stat``
+   command.
+-  Add ``CONFIG_NEWTMGR: 1`` to enable support for the
+   ``newtmgr config`` command.
+-  Add ``CRASH_TEST_NEWTMGR: 1`` to enable support for the
+   ``newtmgr crash`` command.
+-  Add ``RUNTEST_NEWTMGR: 1`` to enable support for the
+   ``newtmgr crash`` command.
+
+Notes:
+
+-  When you enable Newt Manager support, using either the newtmgr or
+   oicmgr framework, your application automatically supports the Newt
+   Manager ``echo``, ``taskstat``, ``mpstat``, ``datetime``, and
+   ``reset`` commands. These commands cannot be configured individually.
+-  The ``mgmt/imgmgr`` package does not provide a configuration setting
+   to enable or disable support for the ``newtmgr image`` command. Do
+   not specify the package in the ``pkg.deps`` parameter if your device
+   has limited flash memory and cannot support Over-The-Air (OTA)
+   firmware upgrades.
diff --git a/develop/_sources/tutorials/devmgmt/devmgmt.rst.txt b/develop/_sources/tutorials/devmgmt/devmgmt.rst.txt
new file mode 100644
index 000000000..31bb7ba90
--- /dev/null
+++ b/develop/_sources/tutorials/devmgmt/devmgmt.rst.txt
@@ -0,0 +1,8 @@
+Remote Device Management
+========================
+
+.. toctree::
+   :maxdepth: 1
+
+   Enable Newt Manager in Any App <add_newtmgr>
+   Upgrade an Image Over-The-Air <ota_upgrade_nrf52>
diff --git a/develop/_sources/tutorials/devmgmt/ota_upgrade_nrf52.rst.txt b/develop/_sources/tutorials/devmgmt/ota_upgrade_nrf52.rst.txt
new file mode 100644
index 000000000..be70b1d4d
--- /dev/null
+++ b/develop/_sources/tutorials/devmgmt/ota_upgrade_nrf52.rst.txt
@@ -0,0 +1,246 @@
+Over-the-Air Image Upgrade
+==========================
+
+Mynewt OS supports over-the-air image upgrades. This tutorial shows you
+how to use the newtmgr tool to upgrade an image on a device over BLE
+communication.
+
+To support over-the-air image upgrade over BLE, a device must be running
+a Mynewt application that has newtmgr image management over BLE
+transport enabled. For this tutorial, we use the
+:doc:`bleprph </os/tutorials/bleprph/bleprph-app/>` application, which
+includes image management over BLE functionality, on an nRF52-DK board.
+If you prefer to use a different BLE application, see :doc:`Enable Newt
+Manager in any app </os/tutorials/add_newtmgr/>` to enable newtmgr
+image management over BLE transport support in your application.
+
+**Note:** Over-the-air upgrade via newtmgr BLE transport is supported on
+Mac OS and Linux. It is not supported on Windows platforms.
+
+.. contents::
+   :local:
+   :depth: 2
+
+Prerequisites
+-------------
+
+Ensure that you meet the following prerequisites:
+
+-  Have Internet connectivity to fetch remote Mynewt components.
+-  Have a computer that supports Bluetooth to communicate with the board
+   and to build a Mynewt application.
+-  Have a Micro-USB cable to connect the board and the computer.
+-  Have a Nordic nRF52-DK Development Kit - PCA 10040
+-  Install the :doc:`Segger JLINK software and documentation
+   pack <https://www.segger.com/jlink-software.html>`.
+-  Install the newt tool and toolchains (See :doc:`Setup & Get Started <../../get_started/index>`).
+-  Read the Mynewt OS :doc:`Concepts <../../concepts>`
+   section.
+-  Read the :doc:`Secure Bootloader <../../../os/modules/bootloader/bootloader>` section
+   and understand the Mynewt bootloader concepts.
+-  Build and load the **bleprph** application on to an nRF52-DK board
+   via a serial connection. See :doc:`BLE Peripheral
+   App <../ble/bleprph/bleprph>`.
+
+Reducing the Log Level
+----------------------
+
+You need to build your application with log level set to INFO or lower.
+The default log level for the **bleprph** app is set to DEBUG. The extra
+logging causes the communication to timeout. Perform the following to
+reduce the log level to INFO, build, and load the application.
+
+.. code-block:: console
+
+
+   $ newt target amend myperiph syscfg="LOG_LEVEL=1"
+   $ newt build myperiph
+   $ newt create-image myperiph 1.0.0
+   $ newt load myperiph
+
+Upgrading an Image on a Device
+------------------------------
+
+Once you have an application with
+newtmgr image management with BLE transport support running on a device,
+you can use the newtmgr tool to upgrade an image over-the-air.
+
+You must perform the following steps to upgrade an image:
+
+Step 1: Create a newtmgr connection profile to communicate with the
+device over BLE. Step 2: Upload the image to the secondary slot (slot 1)
+on the device. Step 3: Test the image. Step 4: Confirm and make the
+image permanent.
+
+See the :doc:`Secure Bootloader <../../../os/modules/bootloader/bootloader>` section for
+more information on the bootloader, image slots, and boot states.
+
+Step 1: Creating a Newtmgr Connection Profile
+--------------------------------------------- 
+
+The **bleprph** application sets and advertises ``nimble-bleprph`` as its bluetooth
+device address. Run the ``newtmgr conn add`` command to create a newtmgr
+connection profile that uses this peer address to communicate with the
+device over BLE:
+
+.. code-block:: console
+
+
+   $ newtmgr conn add mybleprph type=ble connstring="peer_name=nimble-bleprph"
+   Connection profile mybleprph successfully added
+
+Verify that the newtmgr tool can communicate with the device and check
+the image status on the device:
+
+.. code-block:: console
+
+
+   $ newtmgr image list -c mybleprph 
+   Images:
+    slot=0
+       version: 1.0.0
+       bootable: true
+       flags: active confirmed
+       hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2
+   Split status: N/A (0)
+
+The device only has an image loaded on the primary slot (slot 0). It
+does not have an image loaded on the secondary slot (slot 1). 
+
+Step 2: Uploading an Image to the Device
+----------------------------------------
+
+We create an image with version 2.0.0 for the bleprph application from the ``myperiph`` target and
+upload the new image. You can upload a different image.
+
+.. code-block:: console
+
+   $ newt create-image myperiph 2.0.0
+   App image succesfully generated: ~/dev/myproj/bin/targets/myperiph/app/apps/bleprph/bleprph.img
+
+Run the ``newtmgr image upload`` command to upload the image:
+
+.. code-block:: console
+
+   $ newtmgr image upload -c mybleprph ~/dev/myproj/bin/targets/myperiph/app/apps/bleprph/bleprph.img
+   215
+   429
+   642
+   855
+   1068
+   1281
+
+   ...
+
+   125953
+   126164
+   126375
+   126586
+   126704
+   Done
+
+The numbers indicate the number of bytes that the newtmgr tool has
+uploaded.
+
+Verify that the image uploaded to the secondary slot on the device
+successfully:
+
+.. code-block:: console
+
+
+   $ newtmgr image list -c mybleprph
+   Images:
+    slot=0
+       version: 1.0.0
+       bootable: true
+       flags: active confirmed
+       hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2
+    slot=1
+       version: 2.0.0
+       bootable: true
+       flags: 
+       hash: 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682
+   Split status: N/A (0)
+
+The device now has the uploaded image in the secondary slot (slot 1).
+
+Step 3: Testing the Image 
+-------------------------
+
+The image is uploaded to the secondary
+slot but is not yet active. You must run the ``newtmgr image test``
+command to set the image status to **pending** and reboot the device.
+When the device reboots, the bootloader copies this image to the primary
+slot and runs the image.
+
+.. code-block:: console
+
+   $ newtmgr image test -c mybleprph 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682
+   Images:
+    slot=0
+       version: 1.0.0
+       bootable: true
+       flags: active confirmed
+       hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2
+    slot=1
+       version: 2.0.0
+       bootable: true
+       flags: pending
+       hash: 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682
+   Split status: N/A (0)
+
+The status of the image in the secondary slot is now set to **pending**.
+
+Power the device OFF and ON and run the ``newtmgr image list`` command
+to check the image status on the device after the reboot:
+
+.. code-block:: console
+
+
+   $ newtmgr image list -c mybleprph
+   Images:
+    slot=0
+       version: 2.0.0
+       bootable: true
+       flags: active
+       hash: 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682
+    slot=1
+       version: 1.0.0
+       bootable: true
+       flags: confirmed
+       hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2
+   Split status: N/A (0)
+
+The uploaded image is now active and running in the primary slot. The
+image, however, is not confirmed. The confirmed image is in the
+secondary slot. On the next reboot, the bootloader reverts to using the
+confirmed image. It copies the confirmed image to the primary slot and
+runs the image when the device reboots. You need to confirm and make the
+uploaded image in the primary slot permanent. 
+
+Step 4: Confirming the Image
+----------------------------
+
+Run the ``newtmgr image confirm`` command to confirm and make the
+uploaded image permanent. Since the uploaded image is currently the
+active image, you can confirm the image setup without specifying the
+image hash value in the command:
+
+.. code-block:: console
+
+   $ newtmgr image confirm -c mybleprph 
+   Images:
+    slot=0
+       version: 2.0.0
+       bootable: true
+       flags: active confirmed
+       hash: 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682
+    slot=1
+       version: 1.0.0
+       bootable: true
+       flags: 
+       hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2
+   Split status: N/A (0)
+
+The uploaded image is now the active and confirmed image. You have
+successfully upgraded an image over-the-air.
diff --git a/develop/_sources/tutorials/os_fundamentals/os_fundamentals.rst.txt b/develop/_sources/tutorials/os_fundamentals/os_fundamentals.rst.txt
index 14787047d..34e1b8aaf 100644
--- a/develop/_sources/tutorials/os_fundamentals/os_fundamentals.rst.txt
+++ b/develop/_sources/tutorials/os_fundamentals/os_fundamentals.rst.txt
@@ -1,3 +1,6 @@
+OS Fundamentals
+===============
+
 .. toctree::
    :maxdepth: 1
 
diff --git a/develop/_sources/tutorials/os_fundamentals/tasks_lesson.rst.txt b/develop/_sources/tutorials/os_fundamentals/tasks_lesson.rst.txt
new file mode 100644
index 000000000..4773cdcb9
--- /dev/null
+++ b/develop/_sources/tutorials/os_fundamentals/tasks_lesson.rst.txt
@@ -0,0 +1,329 @@
+Tasks and Priority Management
+=============================
+
+**Target Platform: Arduino M0 Pro** (or legacy Arduino Zero or Zero Pro,
+but not Arduino M0)
+
+This lesson is designed to teach core OS concepts and strategies
+encountered when building applications using Mynewt. Specifically, this
+lesson will cover tasks, simple multitasking, and priority management
+running on an Arduino M0 Pro.
+
+.. contents::
+   :local:
+   :depth: 1
+
+Prerequisites
+-------------
+
+Before starting, you should read about Mynewt in the
+:doc:`Introduction <../../index>` section and
+complete the
+:doc:`QuickStart <../../get_started/index>`
+guide and the
+:doc:`Blinky <../blinky/arduino_zero>`
+tutorial. Furthermore, it may be helpful to take a peek at the :doc:`task
+documentation <../../../os/core_os/task/task>` for
+additional insights.
+
+Equipment
+---------
+
+You will need the following equipment:
+
+-  Arduino M0 Pro (or legacy Arduino Zero or Zero Pro, but not Arduino
+   M0)
+-  Computer with Mynewt installed
+-  USB to Micro USB Cable
+
+Build Your Application
+----------------------
+
+To save time, we will simply modify the Blinky application. We’ll add
+the Task Management code to the Blinky application. Follow the :doc:`Arduino
+Zero Blinky
+tutorial <../blinky/arduino_zero>` to
+create a new project and build your bootloader and application. Finally,
+build and load the application to your Arduino to verify that everything
+is in order. Now let’s get started!
+
+Default Main Task
+-----------------
+
+During Mynewt system startup, Mynewt creates a default main task and
+executes the application ``main()`` function in the context of this
+task. The main task priority defaults to 127 and can be configured with
+the ``OS_MAIN_TASK_PRIO`` system configuration setting.
+
+The blinky application only has the ``main`` task. The ``main()``
+function executes an infinite loop that toggles the led and sleeps for
+one second. 
+
+Create a New Task
+-----------------
+
+The purpose of this section is to give an introduction to the important
+aspects of tasks and how to properly initialize them. First, let’s
+define a second task called ``work_task`` in main.c (located in
+apps/blinky/src):
+
+.. code-block:: c
+
+   struct os_task work_task;
+
+A task is represented by the
+:doc:`os_task <../../../core_os/task/task>`
+struct which will hold the task’s information (name, state, priority,
+etc.). A task is made up of two main elements, a task function (also
+known as a task handler) and a task stack.
+
+Next, let’s take a look at what is required to initialize our new task.
+
+Task Stack
+~~~~~~~~~~
+
+The task stack is an array of type ``os_stack_t`` which holds the
+program stack frames. Mynewt gives us the ability to set the stack size
+for a task giving the application developer room to optimize memory
+usage. Since we’re not short on memory, our ``work_stack`` is plenty
+large for the purpose of this lesson. Notice that the elements in our
+task stack are of type ``os_stack_t`` which are generally 32 bits,
+making our entire stack 1024 Bytes.
+
+.. code-block:: c
+
+     #define WORK_STACK_SIZE OS_STACK_ALIGN(256)
+
+Note: The ``OS_STACK_ALIGN`` macro is used to align the stack based on
+the hardware architecture.
+
+Task Function
+~~~~~~~~~~~~~
+
+A task function is essentially an infinite loop that waits for some
+“event” to wake it up. In general, the task function is where the
+majority of work is done by a task. Let’s write a task function for
+``work_task`` called ``work_task_handler()``:
+
+.. code-block:: c
+
+   void
+   work_task_handler(void *arg)
+   {
+       struct os_task *t;
+
+       g_led_pin = LED_BLINK_PIN;
+       hal_gpio_init_out(g_led_pin, 1);
+       
+       while (1) {
+           t = os_sched_get_current_task();
+           assert(t->t_func == work_task_handler);
+           /* Do work... */
+       }
+   }
+
+The task function is called when the task is initially put into the
+*running* state by the scheduler. We use an infinite loop to ensure that
+the task function never returns. Our assertion that the current task’s
+handler is the same as our task handler is for illustration purposes
+only and does not need to be in most task functions.
+
+Task Priority
+~~~~~~~~~~~~~
+
+As a preemptive, multitasking RTOS, Mynewt decides which tasks to run
+based on which has a higher priority; the highest priority being 0 and
+the lowest 255. Thus, before initializing our task, we must choose a
+priority defined as a macro variable.
+
+Let’s set the priority of ``work_task`` to 0, because everyone knows
+that work is more important than blinking.
+
+.. code-block:: c
+
+     #define WORK_TASK_PRIO (0)
+
+Initialization
+~~~~~~~~~~~~~~
+
+To initialize a new task we use ``os_task_init()``
+which takes a number of arguments including our new task function,
+stack, and priority.
+
+Add the ``init_tasks()`` function to initialize ``work_task`` to keep
+our main function clean.
+
+.. code-block:: c
+
+   int
+   init_tasks(void)
+   {
+       /* … */
+       os_stack_t *work_stack;
+       work_stack = malloc(sizeof(os_stack_t)*WORK_STACK_SIZE);
+       
+       assert(work_stack);
+       os_task_init(&work_task, "work", work_task_handler, NULL,
+               WORK_TASK_PRIO, OS_WAIT_FOREVER, work_stack,
+               WORK_STACK_SIZE);
+
+       return 0;
+   }
+
+Add the call to ``init_tasks()`` in ``main()`` before the ``while``
+loop:
+
+.. code-block:: c
+
+
+   int
+   main(int argc, char **argv)
+   {
+
+           ...
+
+       /* Initialize the work task */
+       init_tasks();
+
+       while (1) {
+            ...
+       }
+   }
+
+ And that’s it! Now run your application using the newt run command.
+
+.. code-block:: console
+
+   $ newt run arduino_blinky 0.0.0
+
+When GDB appears press C then Enter to continue and … *wait, why
+doesn’t our LED blink anymore?*
+
+Review
+^^^^^^
+
+Before we run our new app, let’s review what we need in
+order to create a task. This is a general case for a new task called
+mytask:
+
+**1)** Define a new task, task stack, and priority:
+
+.. code-block:: c
+
+   /* My Task */
+   struct os_task mytask
+   /* My Task Stack */
+   #define MYTASK_STACK_SIZE OS_STACK_ALIGN(256)
+   os_stack_t mytask_stack[MYTASK_STACK_SIZE];
+   /* My Task Priority */
+   #define MYTASK_PRIO (0)
+
+**2)** Define task function:
+
+.. code-block:: c
+
+   void 
+   mytask_handler(void *arg)
+   {
+     while (1) {
+         /* ... */
+     }
+   }
+
+**3)** Initialize the task:
+
+.. code-block:: c
+
+   os_task_init(&mytask, "mytask", mytask_handler, NULL, 
+               MYTASK_PRIO, OS_WAIT_FOREVER, mytask_stack,
+               MYTASK_STACK_SIZE);
+
+Task Priority, Preempting, and Context Switching
+------------------------------------------------
+
+A preemptive RTOS is one in which a higher priority task that is *ready
+to run* will preempt (i.e. take the place of) the lower priority task
+which is *running*. When a lower priority task is preempted by a higher
+priority task, the lower priority task’s context data (stack pointer,
+registers, etc.) is saved and the new task is switched in.
+
+In our example, ``work_task`` (priority 0) has a higher priority than
+the ``main`` task (priority 127). Since ``work_task`` is never put into
+a *sleep* state, it holds the processor focus on its context.
+
+Let’s give ``work_task`` a delay and some simulated work to keep it
+busy. The delay is measured in os ticks and the actual number of ticks
+per second is dependent on the board. We multiply ``OS_TICKS_PER_SEC``,
+which is defined in the MCU, by the number of seconds we wish to delay.
+
+.. code-block:: c
+
+   void
+   work_task_handler(void *arg)
+   {
+       struct os_task *t;
+
+       g_led_pin = LED_BLINK_PIN;
+       hal_gpio_init_out(g_led_pin, 1);
+
+       while (1) {
+           t = os_sched_get_current_t:ask();
+           assert(t->t_func == work_task_handler);
+           /* Do work... */
+           int i;
+           for(i = 0; i < 1000000; ++i) {
+               /* Simulate doing a noticeable amount of work */
+               hal_gpio_write(g_led_pin, 1);
+           }
+           os_time_delay(3 * OS_TICKS_PER_SEC);
+       }
+   }
+
+ In order to notice the LED changing, modify the time delay in
+``main()`` to blink at a higher frequency.
+
+.. code-block:: c
+
+   os_time_delay(OS_TICKS_PER_SEC/10);
+
+ Before we run the app, let’s predict the behavior. With the newest
+additions to ``work_task_handler()``, our first action will be to sleep
+for three seconds. This allows the ``main`` task, running ``main()``, to
+take over the CPU and blink to its heart’s content. After three seconds,
+``work_task`` will wake up and be made *ready to run*. This causes it to
+preempt the ``main`` task. The LED will then remain lit for a short
+period while ``work_task`` loops, then blink again for another three
+seconds while ``work_task`` sleeps.
+
+You should see that our prediction was correct!
+
+Priority Management Considerations
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+When projects grow in scope, from blinking LEDs into more sophisticated
+applications, the number of tasks needed increases alongside complexity.
+It remains important, then, that each of our tasks is capable of doing
+its work within a reasonable amount of time.
+
+Some tasks, such as the Shell task, execute quickly and require almost
+instantaneous response. Therefore, the Shell task should be given a high
+priority. On the other hand, tasks which may be communicating over a
+network, or processing data, should be given a low priority in order to
+not hog the CPU.
+
+The diagram below shows the different scheduling patterns we would
+expect when we set the ``work_task`` priority higher and lower than the
+``main`` task priority.
+
+.. figure:: ../pics/task_lesson.png
+   :alt: Task Scheduling
+
+   Task Scheduling
+
+In the second case where the ``main`` task has a higher priority,
+``work_task`` runs and executes “work” when the ``main`` task sleeps,
+saving us idle time compared to the first case.
+
+**Note:** Defining the same priority for two tasks fires an assert in
+``os_task_init()`` and must be avoided. Priority 127 is reserved for main
+task, 255 for idle task.
diff --git a/develop/_sources/tutorials/sensors/air_quality_sensor.rst.txt b/develop/_sources/tutorials/sensors/air_quality_sensor.rst.txt
index a491d92e9..62bb1035a 100644
--- a/develop/_sources/tutorials/sensors/air_quality_sensor.rst.txt
+++ b/develop/_sources/tutorials/sensors/air_quality_sensor.rst.txt
@@ -8,7 +8,7 @@ This tutorial will show you how to set up and use the Senseair K30 air quality s
 
 Prerequisites
 ~~~~~~~~~~~~~
-- Complete one of the other tutorials (e.g. :doc:`Project Blinky <blinky>`) to famliarize yourself with Mynewt
+- Complete one of the other tutorials (e.g. :doc:`Project Blinky <../blinky/blinky>`) to famliarize yourself with Mynewt
 - Nordic nRF52 Development - PCA 10040
 - Senseair K30 CO2 Sensor
 
@@ -295,7 +295,7 @@ Add a call to your ``main()`` to initialize this driver:
 Add CLI Commands For Testing Drivers
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-While developing the driver, it would be helpful to issue operations from the console to verify the driver is responding correctly. Since the nRF52DK only has one UART, which will be used to connect to the CO2 sensor, the console we'll use instead is the :doc:`Segger RTT Console <segger_rtt>`. To configure this, make the following changes in your project's ``syscfg.yml`` file:
+While developing the driver, it would be helpful to issue operations from the console to verify the driver is responding correctly. Since the nRF52DK only has one UART, which will be used to connect to the CO2 sensor, the console we'll use instead is the :doc:`Segger RTT Console <../tooling/segger_rtt>`. To configure this, make the following changes in your project's ``syscfg.yml`` file:
 
 .. code-block:: console
 
diff --git a/develop/_sources/tutorials/sensors/nrf52_adc.rst.txt b/develop/_sources/tutorials/sensors/nrf52_adc.rst.txt
index c344e4968..8c2c1cceb 100644
--- a/develop/_sources/tutorials/sensors/nrf52_adc.rst.txt
+++ b/develop/_sources/tutorials/sensors/nrf52_adc.rst.txt
@@ -22,7 +22,7 @@ Required Hardware
 -  Laptop running Mac OS
 -  It is assumed you have already installed newt tool.
 -  It is assumed you already installed native tools as described
-   :doc:`here <../../get_started/native_tools>`
+   :doc:`here <../../get_started/native_install/native_tools>`
 
 Create a Project
 ----------------
@@ -817,7 +817,7 @@ device. That's no small feat!
 
 If you see anything missing or want to send us feedback, please do so by
 signing up for appropriate mailing lists on our :doc:`Community
-Page <community>`
+Page <community>`.
 
 Keep on hacking and sensing!
 
diff --git a/develop/_sources/tutorials/tutorials.rst.txt b/develop/_sources/tutorials/tutorials.rst.txt
index f46d65d72..b8258da14 100644
--- a/develop/_sources/tutorials/tutorials.rst.txt
+++ b/develop/_sources/tutorials/tutorials.rst.txt
@@ -12,6 +12,7 @@ Tutorials
    Bluetooth Low Energy <ble/ble>
    LoRa <lora/lorawanapp>
    OS Fundamentals <os_fundamentals/os_fundamentals>
+   Remote Device Management <devmgmt/devmgmt>
    Sensors <sensors/sensors>
    Tooling <tooling/tooling>
    Other <other/other>
@@ -84,8 +85,8 @@ category are listed below.
 
 -  Remote Device Management
 
-   -  :doc:`Enabling Newt Manager in Any App <../add_newtmgr>`
-   -  :doc:`Upgrading an Image Over-The-Air <ota_upgrade_nrf52>`
+   -  :doc:`Enabling Newt Manager in Any App <devmgmt/add_newtmgr>`
+   -  :doc:`Upgrading an Image Over-The-Air <devmgmt/ota_upgrade_nrf52>`
 
 -  Sensors
 
diff --git a/develop/objects.inv b/develop/objects.inv
index 4f6d2c7f0..29527b5d6 100644
Binary files a/develop/objects.inv and b/develop/objects.inv differ
diff --git a/develop/searchindex.js b/develop/searchindex.js
index 9677c82f0..5130e39e1 100644
--- a/develop/searchindex.js
+++ b/develop/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["_static/common","concepts","get_started/docker","get_started/index","get_started/native_install/cross_tools","get_started/native_install/index","get_started/native_install/native_tools","get_started/project_create","get_started/serial_access","index","misc/faq","misc/go_env","misc/ide","misc/index","mynewt_faq","network/ble/ble_hs/ble_att","network/ble/ble_hs/ble_gap","network/ble/ble_hs/ble_gattc","network/ble/ble_hs/ble_gatts","network/ble/ble_hs/ble_hs","network/ble/ble_hs/ble_hs_id","network/ble/ble_hs/ble_hs_return_codes","network/ble/ble_intro","network/ble/ble_sec","network/ble/ble_setup/ble_addr","network/ble/ble_setup/ble_lp_clock","network/ble/ble_setup/ble_setup_intro","network/ble/ble_setup/ble_sync_cb","network/ble/btshell/btshell_GAP","network/ble/btshell/btshell_GATT","network/ble/btshell/btshell_advdata","network/ble/btshell/btshell_api","network/ble/mesh/index","network/ble/mesh/sample","newt/README","newt/command_list/newt_build","newt/command_list/newt_clean","newt/command_list/newt_complete","newt/command_list/newt_create_image","newt/command_list/newt_debug","newt/command_list/newt_help","newt/command_list/newt_info","newt/command_list/newt_install","newt/command_list/newt_load","newt/command_list/newt_mfg","newt/command_list/newt_new","newt/command_list/newt_pkg","newt/command_list/newt_resign_image","newt/command_list/newt_run","newt/command_list/newt_size","newt/command_list/newt_sync","newt/command_list/newt_target","newt/command_list/newt_test","newt/command_list/newt_upgrade","newt/command_list/newt_vals","newt/command_list/newt_version","newt/index","newt/install/index","newt/install/newt_linux","newt/install/newt_mac","newt/install/newt_windows","newt/install/prev_releases","newt/newt_operation","newt/newt_ops","newtmgr/README","newtmgr/command_list/index","newtmgr/command_list/newtmgr_config","newtmgr/command_list/newtmgr_conn","newtmgr/command_list/newtmgr_crash","newtmgr/command_list/newtmgr_datetime","newtmgr/command_list/newtmgr_echo","newtmgr/command_list/newtmgr_fs","newtmgr/command_list/newtmgr_image","newtmgr/command_list/newtmgr_logs","newtmgr/command_list/newtmgr_mpstats","newtmgr/command_list/newtmgr_reset","newtmgr/command_list/newtmgr_run","newtmgr/command_list/newtmgr_stat","newtmgr/command_list/newtmgr_taskstats","newtmgr/index","newtmgr/install/index","newtmgr/install/install_linux","newtmgr/install/install_mac","newtmgr/install/install_windows","newtmgr/install/prev_releases","os/core_os/callout/callout","os/core_os/context_switch/context_switch","os/core_os/cputime/os_cputime","os/core_os/event_queue/event_queue","os/core_os/heap/heap","os/core_os/mbuf/mbuf","os/core_os/memory_pool/memory_pool","os/core_os/mutex/mutex","os/core_os/mynewt_os","os/core_os/porting/port_bsp","os/core_os/porting/port_cpu","os/core_os/porting/port_mcu","os/core_os/porting/port_os","os/core_os/sanity/sanity","os/core_os/semaphore/semaphore","os/core_os/task/task","os/core_os/time/os_time","os/modules/baselibc","os/modules/bootloader/boot_build_status","os/modules/bootloader/boot_build_status_one","os/modules/bootloader/boot_clear_status","os/modules/bootloader/boot_copy_area","os/modules/bootloader/boot_copy_image","os/modules/bootloader/boot_erase_area","os/modules/bootloader/boot_fill_slot","os/modules/bootloader/boot_find_image_area_idx","os/modules/bootloader/boot_find_image_part","os/modules/bootloader/boot_find_image_slot","os/modules/bootloader/boot_go","os/modules/bootloader/boot_init_flash","os/modules/bootloader/boot_move_area","os/modules/bootloader/boot_read_image_header","os/modules/bootloader/boot_read_image_headers","os/modules/bootloader/boot_read_status","os/modules/bootloader/boot_select_image_slot","os/modules/bootloader/boot_slot_addr","os/modules/bootloader/boot_slot_to_area_idx","os/modules/bootloader/boot_swap_areas","os/modules/bootloader/boot_vect_delete_main","os/modules/bootloader/boot_vect_delete_test","os/modules/bootloader/boot_vect_read_main","os/modules/bootloader/boot_vect_read_one","os/modules/bootloader/boot_vect_read_test","os/modules/bootloader/boot_write_status","os/modules/bootloader/bootloader","os/modules/config/config","os/modules/console/console","os/modules/devmgmt/customize_newtmgr","os/modules/devmgmt/newtmgr","os/modules/devmgmt/oicmgr","os/modules/drivers/driver","os/modules/drivers/flash","os/modules/drivers/mmc","os/modules/elua/elua","os/modules/elua/lua_init","os/modules/elua/lua_main","os/modules/fcb/fcb","os/modules/fcb/fcb_append","os/modules/fcb/fcb_append_finish","os/modules/fcb/fcb_append_to_scratch","os/modules/fcb/fcb_clear","os/modules/fcb/fcb_getnext","os/modules/fcb/fcb_init","os/modules/fcb/fcb_is_empty","os/modules/fcb/fcb_offset_last_n","os/modules/fcb/fcb_rotate","os/modules/fcb/fcb_walk","os/modules/fs/fatfs","os/modules/fs/fs/fs","os/modules/fs/fs/fs_close","os/modules/fs/fs/fs_closedir","os/modules/fs/fs/fs_dirent_is_dir","os/modules/fs/fs/fs_dirent_name","os/modules/fs/fs/fs_filelen","os/modules/fs/fs/fs_getpos","os/modules/fs/fs/fs_mkdir","os/modules/fs/fs/fs_open","os/modules/fs/fs/fs_opendir","os/modules/fs/fs/fs_ops","os/modules/fs/fs/fs_read","os/modules/fs/fs/fs_readdir","os/modules/fs/fs/fs_register","os/modules/fs/fs/fs_rename","os/modules/fs/fs/fs_return_codes","os/modules/fs/fs/fs_seek","os/modules/fs/fs/fs_unlink","os/modules/fs/fs/fs_write","os/modules/fs/fs/fsutil_read_file","os/modules/fs/fs/fsutil_write_file","os/modules/fs/nffs/nffs","os/modules/fs/nffs/nffs_area_desc","os/modules/fs/nffs/nffs_config","os/modules/fs/nffs/nffs_detect","os/modules/fs/nffs/nffs_format","os/modules/fs/nffs/nffs_init","os/modules/fs/nffs/nffs_internals","os/modules/fs/otherfs","os/modules/hal/hal","os/modules/hal/hal_bsp/hal_bsp","os/modules/hal/hal_creation","os/modules/hal/hal_flash/hal_flash","os/modules/hal/hal_flash/hal_flash_int","os/modules/hal/hal_gpio/hal_gpio","os/modules/hal/hal_i2c/hal_i2c","os/modules/hal/hal_in_libraries","os/modules/hal/hal_os_tick/hal_os_tick","os/modules/hal/hal_spi/hal_spi","os/modules/hal/hal_system/hal_sys","os/modules/hal/hal_timer/hal_timer","os/modules/hal/hal_uart/hal_uart","os/modules/hal/hal_watchdog/hal_watchdog","os/modules/imgmgr/imgmgr","os/modules/imgmgr/imgmgr_module_init","os/modules/imgmgr/imgr_ver_parse","os/modules/imgmgr/imgr_ver_str","os/modules/json/json","os/modules/json/json_encode_object_entry","os/modules/json/json_encode_object_finish","os/modules/json/json_encode_object_key","os/modules/json/json_encode_object_start","os/modules/json/json_read_object","os/modules/logs/logs","os/modules/sensor_framework/sensor_api","os/modules/sensor_framework/sensor_create","os/modules/sensor_framework/sensor_driver","os/modules/sensor_framework/sensor_framework_overview","os/modules/sensor_framework/sensor_listener_api","os/modules/sensor_framework/sensor_mgr_api","os/modules/sensor_framework/sensor_oic","os/modules/sensor_framework/sensor_shell","os/modules/shell/shell","os/modules/shell/shell_cmd_register","os/modules/shell/shell_evq_set","os/modules/shell/shell_nlip_input_register","os/modules/shell/shell_nlip_output","os/modules/shell/shell_register","os/modules/shell/shell_register_app_cmd_handler","os/modules/shell/shell_register_default_module","os/modules/split/split","os/modules/stats/stats","os/modules/sysinitconfig/sysconfig_error","os/modules/sysinitconfig/sysinitconfig","os/modules/system_modules","os/modules/testutil/test_assert","os/modules/testutil/test_case","os/modules/testutil/test_decl","os/modules/testutil/test_pass","os/modules/testutil/test_suite","os/modules/testutil/testutil","os/modules/testutil/tu_init","os/modules/testutil/tu_restart","os/os_user_guide","os/tutorials/STM32F303","os/tutorials/add_newtmgr","os/tutorials/define_target","os/tutorials/event_queue","os/tutorials/ota_upgrade_nrf52","os/tutorials/pin-wheel-mods","os/tutorials/tasks_lesson","os/tutorials/try_markdown","tutorials/ble/ble","tutorials/ble/ble_bare_bones","tutorials/ble/blehci_project","tutorials/ble/bleprph/bleprph","tutorials/ble/bleprph/bleprph-sections/bleprph-adv","tutorials/ble/bleprph/bleprph-sections/bleprph-app","tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access","tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event","tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg","tutorials/ble/eddystone","tutorials/ble/ibeacon","tutorials/blinky/arduino_zero","tutorials/blinky/blinky","tutorials/blinky/blinky_console","tutorials/blinky/blinky_primo","tutorials/blinky/blinky_stm32f4disc","tutorials/blinky/nRF52","tutorials/blinky/olimex","tutorials/blinky/rbnano2","tutorials/lora/lorawanapp","tutorials/os_fundamentals/event_queue","tutorials/os_fundamentals/os_fundamentals","tutorials/other/codesize","tutorials/other/other","tutorials/other/unit_test","tutorials/other/wi-fi_on_arduino","tutorials/repo/add_repos","tutorials/repo/create_repo","tutorials/repo/private_repo","tutorials/repo/upgrade_repo","tutorials/sensors/air_quality","tutorials/sensors/air_quality_ble","tutorials/sensors/air_quality_sensor","tutorials/sensors/nrf52_adc","tutorials/sensors/sensor_bleprph_oic","tutorials/sensors/sensor_nrf52_bno055","tutorials/sensors/sensor_nrf52_bno055_oic","tutorials/sensors/sensor_offboard_config","tutorials/sensors/sensor_oic_overview","tutorials/sensors/sensor_thingy_lis2dh12_onb","tutorials/sensors/sensors","tutorials/sensors/sensors_framework","tutorials/slinky/project-nrf52-slinky","tutorials/slinky/project-sim-slinky","tutorials/slinky/project-slinky","tutorials/slinky/project-stm32-slinky","tutorials/tooling/segger_rtt","tutorials/tooling/segger_sysview","tutorials/tooling/tooling","tutorials/tutorials"],envversion:52,filenames:["_static/common.rst","concepts.rst","get_started/docker.rst","get_started/index.rst","get_started/native_install/cross_tools.rst","get_started/native_install/index.rst","get_started/native_install/native_tools.rst","get_started/project_create.rst","get_started/serial_access.rst","index.rst","misc/faq.rst","misc/go_env.rst","misc/ide.rst","misc/index.rst","mynewt_faq.rst","network/ble/ble_hs/ble_att.rst","network/ble/ble_hs/ble_gap.rst","network/ble/ble_hs/ble_gattc.rst","network/ble/ble_hs/ble_gatts.rst","network/ble/ble_hs/ble_hs.rst","network/ble/ble_hs/ble_hs_id.rst","network/ble/ble_hs/ble_hs_return_codes.rst","network/ble/ble_intro.rst","network/ble/ble_sec.rst","network/ble/ble_setup/ble_addr.rst","network/ble/ble_setup/ble_lp_clock.rst","network/ble/ble_setup/ble_setup_intro.rst","network/ble/ble_setup/ble_sync_cb.rst","network/ble/btshell/btshell_GAP.rst","network/ble/btshell/btshell_GATT.rst","network/ble/btshell/btshell_advdata.rst","network/ble/btshell/btshell_api.rst","network/ble/mesh/index.rst","network/ble/mesh/sample.rst","newt/README.rst","newt/command_list/newt_build.rst","newt/command_list/newt_clean.rst","newt/command_list/newt_complete.rst","newt/command_list/newt_create_image.rst","newt/command_list/newt_debug.rst","newt/command_list/newt_help.rst","newt/command_list/newt_info.rst","newt/command_list/newt_install.rst","newt/command_list/newt_load.rst","newt/command_list/newt_mfg.rst","newt/command_list/newt_new.rst","newt/command_list/newt_pkg.rst","newt/command_list/newt_resign_image.rst","newt/command_list/newt_run.rst","newt/command_list/newt_size.rst","newt/command_list/newt_sync.rst","newt/command_list/newt_target.rst","newt/command_list/newt_test.rst","newt/command_list/newt_upgrade.rst","newt/command_list/newt_vals.rst","newt/command_list/newt_version.rst","newt/index.rst","newt/install/index.rst","newt/install/newt_linux.rst","newt/install/newt_mac.rst","newt/install/newt_windows.rst","newt/install/prev_releases.rst","newt/newt_operation.rst","newt/newt_ops.rst","newtmgr/README.rst","newtmgr/command_list/index.rst","newtmgr/command_list/newtmgr_config.rst","newtmgr/command_list/newtmgr_conn.rst","newtmgr/command_list/newtmgr_crash.rst","newtmgr/command_list/newtmgr_datetime.rst","newtmgr/command_list/newtmgr_echo.rst","newtmgr/command_list/newtmgr_fs.rst","newtmgr/command_list/newtmgr_image.rst","newtmgr/command_list/newtmgr_logs.rst","newtmgr/command_list/newtmgr_mpstats.rst","newtmgr/command_list/newtmgr_reset.rst","newtmgr/command_list/newtmgr_run.rst","newtmgr/command_list/newtmgr_stat.rst","newtmgr/command_list/newtmgr_taskstats.rst","newtmgr/index.rst","newtmgr/install/index.rst","newtmgr/install/install_linux.rst","newtmgr/install/install_mac.rst","newtmgr/install/install_windows.rst","newtmgr/install/prev_releases.rst","os/core_os/callout/callout.rst","os/core_os/context_switch/context_switch.rst","os/core_os/cputime/os_cputime.rst","os/core_os/event_queue/event_queue.rst","os/core_os/heap/heap.rst","os/core_os/mbuf/mbuf.rst","os/core_os/memory_pool/memory_pool.rst","os/core_os/mutex/mutex.rst","os/core_os/mynewt_os.rst","os/core_os/porting/port_bsp.rst","os/core_os/porting/port_cpu.rst","os/core_os/porting/port_mcu.rst","os/core_os/porting/port_os.rst","os/core_os/sanity/sanity.rst","os/core_os/semaphore/semaphore.rst","os/core_os/task/task.rst","os/core_os/time/os_time.rst","os/modules/baselibc.rst","os/modules/bootloader/boot_build_status.rst","os/modules/bootloader/boot_build_status_one.rst","os/modules/bootloader/boot_clear_status.rst","os/modules/bootloader/boot_copy_area.rst","os/modules/bootloader/boot_copy_image.rst","os/modules/bootloader/boot_erase_area.rst","os/modules/bootloader/boot_fill_slot.rst","os/modules/bootloader/boot_find_image_area_idx.rst","os/modules/bootloader/boot_find_image_part.rst","os/modules/bootloader/boot_find_image_slot.rst","os/modules/bootloader/boot_go.rst","os/modules/bootloader/boot_init_flash.rst","os/modules/bootloader/boot_move_area.rst","os/modules/bootloader/boot_read_image_header.rst","os/modules/bootloader/boot_read_image_headers.rst","os/modules/bootloader/boot_read_status.rst","os/modules/bootloader/boot_select_image_slot.rst","os/modules/bootloader/boot_slot_addr.rst","os/modules/bootloader/boot_slot_to_area_idx.rst","os/modules/bootloader/boot_swap_areas.rst","os/modules/bootloader/boot_vect_delete_main.rst","os/modules/bootloader/boot_vect_delete_test.rst","os/modules/bootloader/boot_vect_read_main.rst","os/modules/bootloader/boot_vect_read_one.rst","os/modules/bootloader/boot_vect_read_test.rst","os/modules/bootloader/boot_write_status.rst","os/modules/bootloader/bootloader.rst","os/modules/config/config.rst","os/modules/console/console.rst","os/modules/devmgmt/customize_newtmgr.rst","os/modules/devmgmt/newtmgr.rst","os/modules/devmgmt/oicmgr.rst","os/modules/drivers/driver.rst","os/modules/drivers/flash.rst","os/modules/drivers/mmc.rst","os/modules/elua/elua.rst","os/modules/elua/lua_init.rst","os/modules/elua/lua_main.rst","os/modules/fcb/fcb.rst","os/modules/fcb/fcb_append.rst","os/modules/fcb/fcb_append_finish.rst","os/modules/fcb/fcb_append_to_scratch.rst","os/modules/fcb/fcb_clear.rst","os/modules/fcb/fcb_getnext.rst","os/modules/fcb/fcb_init.rst","os/modules/fcb/fcb_is_empty.rst","os/modules/fcb/fcb_offset_last_n.rst","os/modules/fcb/fcb_rotate.rst","os/modules/fcb/fcb_walk.rst","os/modules/fs/fatfs.rst","os/modules/fs/fs/fs.rst","os/modules/fs/fs/fs_close.rst","os/modules/fs/fs/fs_closedir.rst","os/modules/fs/fs/fs_dirent_is_dir.rst","os/modules/fs/fs/fs_dirent_name.rst","os/modules/fs/fs/fs_filelen.rst","os/modules/fs/fs/fs_getpos.rst","os/modules/fs/fs/fs_mkdir.rst","os/modules/fs/fs/fs_open.rst","os/modules/fs/fs/fs_opendir.rst","os/modules/fs/fs/fs_ops.rst","os/modules/fs/fs/fs_read.rst","os/modules/fs/fs/fs_readdir.rst","os/modules/fs/fs/fs_register.rst","os/modules/fs/fs/fs_rename.rst","os/modules/fs/fs/fs_return_codes.rst","os/modules/fs/fs/fs_seek.rst","os/modules/fs/fs/fs_unlink.rst","os/modules/fs/fs/fs_write.rst","os/modules/fs/fs/fsutil_read_file.rst","os/modules/fs/fs/fsutil_write_file.rst","os/modules/fs/nffs/nffs.rst","os/modules/fs/nffs/nffs_area_desc.rst","os/modules/fs/nffs/nffs_config.rst","os/modules/fs/nffs/nffs_detect.rst","os/modules/fs/nffs/nffs_format.rst","os/modules/fs/nffs/nffs_init.rst","os/modules/fs/nffs/nffs_internals.rst","os/modules/fs/otherfs.rst","os/modules/hal/hal.rst","os/modules/hal/hal_bsp/hal_bsp.rst","os/modules/hal/hal_creation.rst","os/modules/hal/hal_flash/hal_flash.rst","os/modules/hal/hal_flash/hal_flash_int.rst","os/modules/hal/hal_gpio/hal_gpio.rst","os/modules/hal/hal_i2c/hal_i2c.rst","os/modules/hal/hal_in_libraries.rst","os/modules/hal/hal_os_tick/hal_os_tick.rst","os/modules/hal/hal_spi/hal_spi.rst","os/modules/hal/hal_system/hal_sys.rst","os/modules/hal/hal_timer/hal_timer.rst","os/modules/hal/hal_uart/hal_uart.rst","os/modules/hal/hal_watchdog/hal_watchdog.rst","os/modules/imgmgr/imgmgr.rst","os/modules/imgmgr/imgmgr_module_init.rst","os/modules/imgmgr/imgr_ver_parse.rst","os/modules/imgmgr/imgr_ver_str.rst","os/modules/json/json.rst","os/modules/json/json_encode_object_entry.rst","os/modules/json/json_encode_object_finish.rst","os/modules/json/json_encode_object_key.rst","os/modules/json/json_encode_object_start.rst","os/modules/json/json_read_object.rst","os/modules/logs/logs.rst","os/modules/sensor_framework/sensor_api.rst","os/modules/sensor_framework/sensor_create.rst","os/modules/sensor_framework/sensor_driver.rst","os/modules/sensor_framework/sensor_framework_overview.rst","os/modules/sensor_framework/sensor_listener_api.rst","os/modules/sensor_framework/sensor_mgr_api.rst","os/modules/sensor_framework/sensor_oic.rst","os/modules/sensor_framework/sensor_shell.rst","os/modules/shell/shell.rst","os/modules/shell/shell_cmd_register.rst","os/modules/shell/shell_evq_set.rst","os/modules/shell/shell_nlip_input_register.rst","os/modules/shell/shell_nlip_output.rst","os/modules/shell/shell_register.rst","os/modules/shell/shell_register_app_cmd_handler.rst","os/modules/shell/shell_register_default_module.rst","os/modules/split/split.rst","os/modules/stats/stats.rst","os/modules/sysinitconfig/sysconfig_error.rst","os/modules/sysinitconfig/sysinitconfig.rst","os/modules/system_modules.rst","os/modules/testutil/test_assert.rst","os/modules/testutil/test_case.rst","os/modules/testutil/test_decl.rst","os/modules/testutil/test_pass.rst","os/modules/testutil/test_suite.rst","os/modules/testutil/testutil.rst","os/modules/testutil/tu_init.rst","os/modules/testutil/tu_restart.rst","os/os_user_guide.rst","os/tutorials/STM32F303.rst","os/tutorials/add_newtmgr.rst","os/tutorials/define_target.rst","os/tutorials/event_queue.rst","os/tutorials/ota_upgrade_nrf52.rst","os/tutorials/pin-wheel-mods.rst","os/tutorials/tasks_lesson.rst","os/tutorials/try_markdown.rst","tutorials/ble/ble.rst","tutorials/ble/ble_bare_bones.rst","tutorials/ble/blehci_project.rst","tutorials/ble/bleprph/bleprph.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-adv.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-app.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.rst","tutorials/ble/eddystone.rst","tutorials/ble/ibeacon.rst","tutorials/blinky/arduino_zero.rst","tutorials/blinky/blinky.rst","tutorials/blinky/blinky_console.rst","tutorials/blinky/blinky_primo.rst","tutorials/blinky/blinky_stm32f4disc.rst","tutorials/blinky/nRF52.rst","tutorials/blinky/olimex.rst","tutorials/blinky/rbnano2.rst","tutorials/lora/lorawanapp.rst","tutorials/os_fundamentals/event_queue.rst","tutorials/os_fundamentals/os_fundamentals.rst","tutorials/other/codesize.rst","tutorials/other/other.rst","tutorials/other/unit_test.rst","tutorials/other/wi-fi_on_arduino.rst","tutorials/repo/add_repos.rst","tutorials/repo/create_repo.rst","tutorials/repo/private_repo.rst","tutorials/repo/upgrade_repo.rst","tutorials/sensors/air_quality.rst","tutorials/sensors/air_quality_ble.rst","tutorials/sensors/air_quality_sensor.rst","tutorials/sensors/nrf52_adc.rst","tutorials/sensors/sensor_bleprph_oic.rst","tutorials/sensors/sensor_nrf52_bno055.rst","tutorials/sensors/sensor_nrf52_bno055_oic.rst","tutorials/sensors/sensor_offboard_config.rst","tutorials/sensors/sensor_oic_overview.rst","tutorials/sensors/sensor_thingy_lis2dh12_onb.rst","tutorials/sensors/sensors.rst","tutorials/sensors/sensors_framework.rst","tutorials/slinky/project-nrf52-slinky.rst","tutorials/slinky/project-sim-slinky.rst","tutorials/slinky/project-slinky.rst","tutorials/slinky/project-stm32-slinky.rst","tutorials/tooling/segger_rtt.rst","tutorials/tooling/segger_sysview.rst","tutorials/tooling/tooling.rst","tutorials/tutorials.rst"],objects:{"":{"HALGpio::HAL_GPIO_MODE_IN":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_IN"],"HALGpio::HAL_GPIO_MODE_NC":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_NC"],"HALGpio::HAL_GPIO_MODE_OUT":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_OUT"],"HALGpio::HAL_GPIO_PULL_DOWN":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_DOWN"],"HALGpio::HAL_GPIO_PULL_NONE":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_NONE"],"HALGpio::HAL_GPIO_PULL_UP":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_UP"],"HALGpio::HAL_GPIO_TRIG_BOTH":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_BOTH"],"HALGpio::HAL_GPIO_TRIG_FALLING":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_FALLING"],"HALGpio::HAL_GPIO_TRIG_HIGH":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_HIGH"],"HALGpio::HAL_GPIO_TRIG_LOW":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_LOW"],"HALGpio::HAL_GPIO_TRIG_NONE":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_NONE"],"HALGpio::HAL_GPIO_TRIG_RISING":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_RISING"],"HALGpio::hal_gpio_irq_trigger":[187,2,1,"c.HALGpio::hal_gpio_irq_trigger"],"HALGpio::hal_gpio_mode_e":[187,2,1,"c.HALGpio::hal_gpio_mode_e"],"HALGpio::hal_gpio_pull":[187,2,1,"c.HALGpio::hal_gpio_pull"],"HALSystem::HAL_RESET_BROWNOUT":[192,1,1,"c.HALSystem::HAL_RESET_BROWNOUT"],"HALSystem::HAL_RESET_PIN":[192,1,1,"c.HALSystem::HAL_RESET_PIN"],"HALSystem::HAL_RESET_POR":[192,1,1,"c.HALSystem::HAL_RESET_POR"],"HALSystem::HAL_RESET_REQUESTED":[192,1,1,"c.HALSystem::HAL_RESET_REQUESTED"],"HALSystem::HAL_RESET_SOFT":[192,1,1,"c.HALSystem::HAL_RESET_SOFT"],"HALSystem::HAL_RESET_WATCHDOG":[192,1,1,"c.HALSystem::HAL_RESET_WATCHDOG"],"HALSystem::hal_reset_reason":[192,2,1,"c.HALSystem::hal_reset_reason"],"HALUart::HAL_UART_FLOW_CTL_NONE":[194,1,1,"c.HALUart::HAL_UART_FLOW_CTL_NONE"],"HALUart::HAL_UART_FLOW_CTL_RTS_CTS":[194,1,1,"c.HALUart::HAL_UART_FLOW_CTL_RTS_CTS"],"HALUart::HAL_UART_PARITY_EVEN":[194,1,1,"c.HALUart::HAL_UART_PARITY_EVEN"],"HALUart::HAL_UART_PARITY_NONE":[194,1,1,"c.HALUart::HAL_UART_PARITY_NONE"],"HALUart::HAL_UART_PARITY_ODD":[194,1,1,"c.HALUart::HAL_UART_PARITY_ODD"],"HALUart::hal_uart_flow_ctl":[194,2,1,"c.HALUart::hal_uart_flow_ctl"],"HALUart::hal_uart_parity":[194,2,1,"c.HALUart::hal_uart_parity"],"OSTask::OS_TASK_READY":[100,1,1,"c.OSTask::OS_TASK_READY"],"OSTask::OS_TASK_SLEEP":[100,1,1,"c.OSTask::OS_TASK_SLEEP"],"OSTask::os_task_state":[100,2,1,"c.OSTask::os_task_state"],"SysConfig::CONF_EXPORT_PERSIST":[130,1,1,"c.SysConfig::CONF_EXPORT_PERSIST"],"SysConfig::CONF_EXPORT_SHOW":[130,1,1,"c.SysConfig::CONF_EXPORT_SHOW"],"SysConfig::conf_export_tgt":[130,2,1,"c.SysConfig::conf_export_tgt"],"SysConfig::conf_type":[130,2,1,"c.SysConfig::conf_type"],"conf_handler::ch_commit":[130,5,1,"c.conf_handler::ch_commit"],"conf_handler::ch_export":[130,5,1,"c.conf_handler::ch_export"],"conf_handler::ch_get":[130,5,1,"c.conf_handler::ch_get"],"conf_handler::ch_name":[130,5,1,"c.conf_handler::ch_name"],"conf_handler::ch_set":[130,5,1,"c.conf_handler::ch_set"],"console_input::line":[131,5,1,"c.console_input::line"],"hal_i2c_master_data::address":[188,5,1,"c.hal_i2c_master_data::address"],"hal_i2c_master_data::buffer":[188,5,1,"c.hal_i2c_master_data::buffer"],"hal_spi_settings::baudrate":[191,5,1,"c.hal_spi_settings::baudrate"],"hal_spi_settings::data_mode":[191,5,1,"c.hal_spi_settings::data_mode"],"hal_spi_settings::data_order":[191,5,1,"c.hal_spi_settings::data_order"],"hal_spi_settings::word_size":[191,5,1,"c.hal_spi_settings::word_size"],"hal_timer::bsp_timer":[193,5,1,"c.hal_timer::bsp_timer"],"hal_timer::cb_arg":[193,5,1,"c.hal_timer::cb_arg"],"hal_timer::cb_func":[193,5,1,"c.hal_timer::cb_func"],"hal_timer::expiry":[193,5,1,"c.hal_timer::expiry"],"os_callout::c_ev":[85,5,1,"c.os_callout::c_ev"],"os_callout::c_evq":[85,5,1,"c.os_callout::c_evq"],"os_callout::c_ticks":[85,5,1,"c.os_callout::c_ticks"],"os_event::ev_arg":[88,5,1,"c.os_event::ev_arg"],"os_event::ev_cb":[88,5,1,"c.os_event::ev_cb"],"os_event::ev_queued":[88,5,1,"c.os_event::ev_queued"],"os_eventq::evq_owner":[88,5,1,"c.os_eventq::evq_owner"],"os_eventq::evq_task":[88,5,1,"c.os_eventq::evq_task"],"os_mbuf::om_data":[90,5,1,"c.os_mbuf::om_data"],"os_mbuf::om_flags":[90,5,1,"c.os_mbuf::om_flags"],"os_mbuf::om_len":[90,5,1,"c.os_mbuf::om_len"],"os_mbuf::om_omp":[90,5,1,"c.os_mbuf::om_omp"],"os_mbuf::om_pkthdr_len":[90,5,1,"c.os_mbuf::om_pkthdr_len"],"os_mbuf_pkthdr::omp_flags":[90,5,1,"c.os_mbuf_pkthdr::omp_flags"],"os_mbuf_pkthdr::omp_len":[90,5,1,"c.os_mbuf_pkthdr::omp_len"],"os_mbuf_pool::omp_databuf_len":[90,5,1,"c.os_mbuf_pool::omp_databuf_len"],"os_mbuf_pool::omp_pool":[90,5,1,"c.os_mbuf_pool::omp_pool"],"os_mempool::mp_block_size":[91,5,1,"c.os_mempool::mp_block_size"],"os_mempool::mp_flags":[91,5,1,"c.os_mempool::mp_flags"],"os_mempool::mp_membuf_addr":[91,5,1,"c.os_mempool::mp_membuf_addr"],"os_mempool::mp_min_free":[91,5,1,"c.os_mempool::mp_min_free"],"os_mempool::mp_num_blocks":[91,5,1,"c.os_mempool::mp_num_blocks"],"os_mempool::mp_num_free":[91,5,1,"c.os_mempool::mp_num_free"],"os_mempool::name":[91,5,1,"c.os_mempool::name"],"os_mempool_info::omi_block_size":[91,5,1,"c.os_mempool_info::omi_block_size"],"os_mempool_info::omi_min_free":[91,5,1,"c.os_mempool_info::omi_min_free"],"os_mempool_info::omi_num_blocks":[91,5,1,"c.os_mempool_info::omi_num_blocks"],"os_mempool_info::omi_num_free":[91,5,1,"c.os_mempool_info::omi_num_free"],"os_mqueue::mq_ev":[90,5,1,"c.os_mqueue::mq_ev"],"os_mutex::SLIST_HEAD":[92,3,1,"c.os_mutex::SLIST_HEAD"],"os_mutex::_pad":[92,5,1,"c.os_mutex::_pad"],"os_mutex::mu_level":[92,5,1,"c.os_mutex::mu_level"],"os_mutex::mu_owner":[92,5,1,"c.os_mutex::mu_owner"],"os_mutex::mu_prio":[92,5,1,"c.os_mutex::mu_prio"],"os_sanity_check::sc_arg":[98,5,1,"c.os_sanity_check::sc_arg"],"os_sanity_check::sc_checkin_itvl":[98,5,1,"c.os_sanity_check::sc_checkin_itvl"],"os_sanity_check::sc_checkin_last":[98,5,1,"c.os_sanity_check::sc_checkin_last"],"os_sanity_check::sc_func":[98,5,1,"c.os_sanity_check::sc_func"],"os_sem::sem_tokens":[99,5,1,"c.os_sem::sem_tokens"],"os_task::t_arg":[100,5,1,"c.os_task::t_arg"],"os_task::t_ctx_sw_cnt":[100,5,1,"c.os_task::t_ctx_sw_cnt"],"os_task::t_flags":[100,5,1,"c.os_task::t_flags"],"os_task::t_func":[100,5,1,"c.os_task::t_func"],"os_task::t_name":[100,5,1,"c.os_task::t_name"],"os_task::t_next_wakeup":[100,5,1,"c.os_task::t_next_wakeup"],"os_task::t_obj":[100,5,1,"c.os_task::t_obj"],"os_task::t_prio":[100,5,1,"c.os_task::t_prio"],"os_task::t_run_time":[100,5,1,"c.os_task::t_run_time"],"os_task::t_sanity_check":[100,5,1,"c.os_task::t_sanity_check"],"os_task::t_stackptr":[100,5,1,"c.os_task::t_stackptr"],"os_task::t_stacksize":[100,5,1,"c.os_task::t_stacksize"],"os_task::t_stacktop":[100,5,1,"c.os_task::t_stacktop"],"os_task::t_taskid":[100,5,1,"c.os_task::t_taskid"],"os_task_info::oti_cswcnt":[100,5,1,"c.os_task_info::oti_cswcnt"],"os_task_info::oti_last_checkin":[100,5,1,"c.os_task_info::oti_last_checkin"],"os_task_info::oti_next_checkin":[100,5,1,"c.os_task_info::oti_next_checkin"],"os_task_info::oti_prio":[100,5,1,"c.os_task_info::oti_prio"],"os_task_info::oti_runtime":[100,5,1,"c.os_task_info::oti_runtime"],"os_task_info::oti_state":[100,5,1,"c.os_task_info::oti_state"],"os_task_info::oti_stksize":[100,5,1,"c.os_task_info::oti_stksize"],"os_task_info::oti_stkusage":[100,5,1,"c.os_task_info::oti_stkusage"],"os_task_info::oti_taskid":[100,5,1,"c.os_task_info::oti_taskid"],"os_timezone::tz_dsttime":[101,5,1,"c.os_timezone::tz_dsttime"],"os_timezone::tz_minuteswest":[101,5,1,"c.os_timezone::tz_minuteswest"],CONF_STR_FROM_BYTES_LEN:[130,0,1,"c.CONF_STR_FROM_BYTES_LEN"],CONF_VALUE_SET:[130,0,1,"c.CONF_VALUE_SET"],CPUTIME_GEQ:[87,0,1,"c.CPUTIME_GEQ"],CPUTIME_GT:[87,0,1,"c.CPUTIME_GT"],CPUTIME_LEQ:[87,0,1,"c.CPUTIME_LEQ"],CPUTIME_LT:[87,0,1,"c.CPUTIME_LT"],HAL_BSP_MAX_ID_LEN:[183,0,1,"c.HAL_BSP_MAX_ID_LEN"],HAL_BSP_POWER_DEEP_SLEEP:[183,0,1,"c.HAL_BSP_POWER_DEEP_SLEEP"],HAL_BSP_POWER_OFF:[183,0,1,"c.HAL_BSP_POWER_OFF"],HAL_BSP_POWER_ON:[183,0,1,"c.HAL_BSP_POWER_ON"],HAL_BSP_POWER_PERUSER:[183,0,1,"c.HAL_BSP_POWER_PERUSER"],HAL_BSP_POWER_SLEEP:[183,0,1,"c.HAL_BSP_POWER_SLEEP"],HAL_BSP_POWER_WFI:[183,0,1,"c.HAL_BSP_POWER_WFI"],HAL_SPI_LSB_FIRST:[191,0,1,"c.HAL_SPI_LSB_FIRST"],HAL_SPI_MODE0:[191,0,1,"c.HAL_SPI_MODE0"],HAL_SPI_MODE1:[191,0,1,"c.HAL_SPI_MODE1"],HAL_SPI_MODE2:[191,0,1,"c.HAL_SPI_MODE2"],HAL_SPI_MODE3:[191,0,1,"c.HAL_SPI_MODE3"],HAL_SPI_MSB_FIRST:[191,0,1,"c.HAL_SPI_MSB_FIRST"],HAL_SPI_TYPE_MASTER:[191,0,1,"c.HAL_SPI_TYPE_MASTER"],HAL_SPI_TYPE_SLAVE:[191,0,1,"c.HAL_SPI_TYPE_SLAVE"],HAL_SPI_WORD_SIZE_8BIT:[191,0,1,"c.HAL_SPI_WORD_SIZE_8BIT"],HAL_SPI_WORD_SIZE_9BIT:[191,0,1,"c.HAL_SPI_WORD_SIZE_9BIT"],OS_EVENT_QUEUED:[88,0,1,"c.OS_EVENT_QUEUED"],OS_MBUF_DATA:[90,0,1,"c.OS_MBUF_DATA"],OS_MBUF_F_MASK:[90,0,1,"c.OS_MBUF_F_MASK"],OS_MBUF_IS_PKTHDR:[90,0,1,"c.OS_MBUF_IS_PKTHDR"],OS_MBUF_LEADINGSPACE:[90,0,1,"c.OS_MBUF_LEADINGSPACE"],OS_MBUF_PKTHDR:[90,0,1,"c.OS_MBUF_PKTHDR"],OS_MBUF_PKTHDR_TO_MBUF:[90,0,1,"c.OS_MBUF_PKTHDR_TO_MBUF"],OS_MBUF_PKTLEN:[90,0,1,"c.OS_MBUF_PKTLEN"],OS_MBUF_TRAILINGSPACE:[90,0,1,"c.OS_MBUF_TRAILINGSPACE"],OS_MBUF_USRHDR:[90,0,1,"c.OS_MBUF_USRHDR"],OS_MBUF_USRHDR_LEN:[90,0,1,"c.OS_MBUF_USRHDR_LEN"],OS_MEMPOOL_BYTES:[91,0,1,"c.OS_MEMPOOL_BYTES"],OS_MEMPOOL_F_EXT:[91,0,1,"c.OS_MEMPOOL_F_EXT"],OS_MEMPOOL_INFO_NAME_LEN:[91,0,1,"c.OS_MEMPOOL_INFO_NAME_LEN"],OS_MEMPOOL_SIZE:[91,0,1,"c.OS_MEMPOOL_SIZE"],OS_SANITY_CHECK_SETFUNC:[98,0,1,"c.OS_SANITY_CHECK_SETFUNC"],OS_TASK_FLAG_EVQ_WAIT:[100,0,1,"c.OS_TASK_FLAG_EVQ_WAIT"],OS_TASK_FLAG_MUTEX_WAIT:[100,0,1,"c.OS_TASK_FLAG_MUTEX_WAIT"],OS_TASK_FLAG_NO_TIMEOUT:[100,0,1,"c.OS_TASK_FLAG_NO_TIMEOUT"],OS_TASK_FLAG_SEM_WAIT:[100,0,1,"c.OS_TASK_FLAG_SEM_WAIT"],OS_TASK_MAX_NAME_LEN:[100,0,1,"c.OS_TASK_MAX_NAME_LEN"],OS_TASK_PRI_HIGHEST:[100,0,1,"c.OS_TASK_PRI_HIGHEST"],OS_TASK_PRI_LOWEST:[100,0,1,"c.OS_TASK_PRI_LOWEST"],OS_TASK_STACK_DEFINE:[100,0,1,"c.OS_TASK_STACK_DEFINE"],OS_TIMEOUT_NEVER:[101,0,1,"c.OS_TIMEOUT_NEVER"],OS_TIME_MAX:[101,0,1,"c.OS_TIME_MAX"],OS_TIME_TICK_GEQ:[101,0,1,"c.OS_TIME_TICK_GEQ"],OS_TIME_TICK_GT:[101,0,1,"c.OS_TIME_TICK_GT"],OS_TIME_TICK_LT:[101,0,1,"c.OS_TIME_TICK_LT"],_sbrk:[183,3,1,"c._sbrk"],completion_cb:[131,4,1,"c.completion_cb"],conf_bytes_from_str:[130,3,1,"c.conf_bytes_from_str"],conf_commit:[130,3,1,"c.conf_commit"],conf_commit_handler_t:[130,4,1,"c.conf_commit_handler_t"],conf_export_func_t:[130,4,1,"c.conf_export_func_t"],conf_export_handler_t:[130,4,1,"c.conf_export_handler_t"],conf_export_tgt_t:[130,4,1,"c.conf_export_tgt_t"],conf_get_handler_t:[130,4,1,"c.conf_get_handler_t"],conf_get_value:[130,3,1,"c.conf_get_value"],conf_handler:[130,7,1,"_CPPv312conf_handler"],conf_init:[130,3,1,"c.conf_init"],conf_load:[130,3,1,"c.conf_load"],conf_register:[130,3,1,"c.conf_register"],conf_save:[130,3,1,"c.conf_save"],conf_save_one:[130,3,1,"c.conf_save_one"],conf_save_tree:[130,3,1,"c.conf_save_tree"],conf_set_handler_t:[130,4,1,"c.conf_set_handler_t"],conf_set_value:[130,3,1,"c.conf_set_value"],conf_store_init:[130,3,1,"c.conf_store_init"],conf_str_from_bytes:[130,3,1,"c.conf_str_from_bytes"],conf_str_from_value:[130,3,1,"c.conf_str_from_value"],conf_value_from_str:[130,3,1,"c.conf_value_from_str"],console_append_char_cb:[131,4,1,"c.console_append_char_cb"],console_blocking_mode:[131,3,1,"c.console_blocking_mode"],console_echo:[131,3,1,"c.console_echo"],console_handle_char:[131,3,1,"c.console_handle_char"],console_init:[131,3,1,"c.console_init"],console_input:[131,6,1,"c.console_input"],console_is_init:[131,3,1,"c.console_is_init"],console_is_midline:[131,5,1,"c.console_is_midline"],console_non_blocking_mode:[131,3,1,"c.console_non_blocking_mode"],console_out:[131,3,1,"c.console_out"],console_printf:[131,3,1,"c.console_printf"],console_read:[131,3,1,"c.console_read"],console_rx_cb:[131,4,1,"c.console_rx_cb"],console_set_completion_cb:[131,3,1,"c.console_set_completion_cb"],console_set_queues:[131,3,1,"c.console_set_queues"],console_write:[131,3,1,"c.console_write"],hal_bsp_core_dump:[183,3,1,"c.hal_bsp_core_dump"],hal_bsp_flash_dev:[183,3,1,"c.hal_bsp_flash_dev"],hal_bsp_get_nvic_priority:[183,3,1,"c.hal_bsp_get_nvic_priority"],hal_bsp_hw_id:[183,3,1,"c.hal_bsp_hw_id"],hal_bsp_init:[183,3,1,"c.hal_bsp_init"],hal_bsp_power_state:[183,3,1,"c.hal_bsp_power_state"],hal_debugger_connected:[192,3,1,"c.hal_debugger_connected"],hal_flash_align:[185,3,1,"c.hal_flash_align"],hal_flash_erase:[185,3,1,"c.hal_flash_erase"],hal_flash_erase_sector:[185,3,1,"c.hal_flash_erase_sector"],hal_flash_init:[185,3,1,"c.hal_flash_init"],hal_flash_ioctl:[185,3,1,"c.hal_flash_ioctl"],hal_flash_read:[185,3,1,"c.hal_flash_read"],hal_flash_write:[185,3,1,"c.hal_flash_write"],hal_gpio_init_in:[187,3,1,"c.hal_gpio_init_in"],hal_gpio_init_out:[187,3,1,"c.hal_gpio_init_out"],hal_gpio_irq_disable:[187,3,1,"c.hal_gpio_irq_disable"],hal_gpio_irq_enable:[187,3,1,"c.hal_gpio_irq_enable"],hal_gpio_irq_handler_t:[187,4,1,"c.hal_gpio_irq_handler_t"],hal_gpio_irq_init:[187,3,1,"c.hal_gpio_irq_init"],hal_gpio_irq_release:[187,3,1,"c.hal_gpio_irq_release"],hal_gpio_irq_trig_t:[187,4,1,"c.hal_gpio_irq_trig_t"],hal_gpio_mode_t:[187,4,1,"c.hal_gpio_mode_t"],hal_gpio_pull_t:[187,4,1,"c.hal_gpio_pull_t"],hal_gpio_read:[187,3,1,"c.hal_gpio_read"],hal_gpio_toggle:[187,3,1,"c.hal_gpio_toggle"],hal_gpio_write:[187,3,1,"c.hal_gpio_write"],hal_i2c_init:[188,3,1,"c.hal_i2c_init"],hal_i2c_master_data:[188,7,1,"_CPPv319hal_i2c_master_data"],hal_i2c_master_probe:[188,3,1,"c.hal_i2c_master_probe"],hal_i2c_master_read:[188,3,1,"c.hal_i2c_master_read"],hal_i2c_master_write:[188,3,1,"c.hal_i2c_master_write"],hal_reset_cause:[192,3,1,"c.hal_reset_cause"],hal_reset_cause_str:[192,3,1,"c.hal_reset_cause_str"],hal_spi_abort:[191,3,1,"c.hal_spi_abort"],hal_spi_config:[191,3,1,"c.hal_spi_config"],hal_spi_data_mode_breakout:[191,3,1,"c.hal_spi_data_mode_breakout"],hal_spi_disable:[191,3,1,"c.hal_spi_disable"],hal_spi_enable:[191,3,1,"c.hal_spi_enable"],hal_spi_init:[191,3,1,"c.hal_spi_init"],hal_spi_set_txrx_cb:[191,3,1,"c.hal_spi_set_txrx_cb"],hal_spi_settings:[191,7,1,"_CPPv316hal_spi_settings"],hal_spi_slave_set_def_tx_val:[191,3,1,"c.hal_spi_slave_set_def_tx_val"],hal_spi_tx_val:[191,3,1,"c.hal_spi_tx_val"],hal_spi_txrx:[191,3,1,"c.hal_spi_txrx"],hal_spi_txrx_cb:[191,4,1,"c.hal_spi_txrx_cb"],hal_spi_txrx_noblock:[191,3,1,"c.hal_spi_txrx_noblock"],hal_system_clock_start:[192,3,1,"c.hal_system_clock_start"],hal_system_reset:[192,3,1,"c.hal_system_reset"],hal_system_restart:[192,3,1,"c.hal_system_restart"],hal_system_start:[192,3,1,"c.hal_system_start"],hal_timer:[193,7,1,"_CPPv39hal_timer"],hal_timer_cb:[193,4,1,"c.hal_timer_cb"],hal_timer_config:[193,3,1,"c.hal_timer_config"],hal_timer_deinit:[193,3,1,"c.hal_timer_deinit"],hal_timer_delay:[193,3,1,"c.hal_timer_delay"],hal_timer_get_resolution:[193,3,1,"c.hal_timer_get_resolution"],hal_timer_init:[193,3,1,"c.hal_timer_init"],hal_timer_read:[193,3,1,"c.hal_timer_read"],hal_timer_set_cb:[193,3,1,"c.hal_timer_set_cb"],hal_timer_start:[193,3,1,"c.hal_timer_start"],hal_timer_start_at:[193,3,1,"c.hal_timer_start_at"],hal_timer_stop:[193,3,1,"c.hal_timer_stop"],hal_uart_blocking_tx:[194,3,1,"c.hal_uart_blocking_tx"],hal_uart_close:[194,3,1,"c.hal_uart_close"],hal_uart_config:[194,3,1,"c.hal_uart_config"],hal_uart_init:[194,3,1,"c.hal_uart_init"],hal_uart_init_cbs:[194,3,1,"c.hal_uart_init_cbs"],hal_uart_rx_char:[194,4,1,"c.hal_uart_rx_char"],hal_uart_start_rx:[194,3,1,"c.hal_uart_start_rx"],hal_uart_start_tx:[194,3,1,"c.hal_uart_start_tx"],hal_uart_tx_char:[194,4,1,"c.hal_uart_tx_char"],hal_uart_tx_done:[194,4,1,"c.hal_uart_tx_done"],hal_watchdog_enable:[195,3,1,"c.hal_watchdog_enable"],hal_watchdog_init:[195,3,1,"c.hal_watchdog_init"],hal_watchdog_tickle:[195,3,1,"c.hal_watchdog_tickle"],os_callout:[85,7,1,"_CPPv310os_callout"],os_callout_init:[85,3,1,"c.os_callout_init"],os_callout_queued:[85,3,1,"c.os_callout_queued"],os_callout_remaining_ticks:[85,3,1,"c.os_callout_remaining_ticks"],os_callout_reset:[85,3,1,"c.os_callout_reset"],os_callout_stop:[85,3,1,"c.os_callout_stop"],os_cputime_delay_nsecs:[87,3,1,"c.os_cputime_delay_nsecs"],os_cputime_delay_ticks:[87,3,1,"c.os_cputime_delay_ticks"],os_cputime_delay_usecs:[87,3,1,"c.os_cputime_delay_usecs"],os_cputime_get32:[87,3,1,"c.os_cputime_get32"],os_cputime_init:[87,3,1,"c.os_cputime_init"],os_cputime_nsecs_to_ticks:[87,3,1,"c.os_cputime_nsecs_to_ticks"],os_cputime_ticks_to_nsecs:[87,3,1,"c.os_cputime_ticks_to_nsecs"],os_cputime_ticks_to_usecs:[87,3,1,"c.os_cputime_ticks_to_usecs"],os_cputime_timer_init:[87,3,1,"c.os_cputime_timer_init"],os_cputime_timer_relative:[87,3,1,"c.os_cputime_timer_relative"],os_cputime_timer_start:[87,3,1,"c.os_cputime_timer_start"],os_cputime_timer_stop:[87,3,1,"c.os_cputime_timer_stop"],os_cputime_usecs_to_ticks:[87,3,1,"c.os_cputime_usecs_to_ticks"],os_event:[88,7,1,"_CPPv38os_event"],os_event_fn:[88,4,1,"c.os_event_fn"],os_eventq:[88,7,1,"_CPPv39os_eventq"],os_eventq_dflt_get:[88,3,1,"c.os_eventq_dflt_get"],os_eventq_get:[88,3,1,"c.os_eventq_get"],os_eventq_get_no_wait:[88,3,1,"c.os_eventq_get_no_wait"],os_eventq_init:[88,3,1,"c.os_eventq_init"],os_eventq_inited:[88,3,1,"c.os_eventq_inited"],os_eventq_poll:[88,3,1,"c.os_eventq_poll"],os_eventq_put:[88,3,1,"c.os_eventq_put"],os_eventq_remove:[88,3,1,"c.os_eventq_remove"],os_eventq_run:[88,3,1,"c.os_eventq_run"],os_get_uptime:[101,3,1,"c.os_get_uptime"],os_get_uptime_usec:[101,3,1,"c.os_get_uptime_usec"],os_gettimeofday:[101,3,1,"c.os_gettimeofday"],os_mbuf:[90,7,1,"_CPPv37os_mbuf"],os_mbuf_adj:[90,3,1,"c.os_mbuf_adj"],os_mbuf_append:[90,3,1,"c.os_mbuf_append"],os_mbuf_appendfrom:[90,3,1,"c.os_mbuf_appendfrom"],os_mbuf_cmpf:[90,3,1,"c.os_mbuf_cmpf"],os_mbuf_cmpm:[90,3,1,"c.os_mbuf_cmpm"],os_mbuf_concat:[90,3,1,"c.os_mbuf_concat"],os_mbuf_copydata:[90,3,1,"c.os_mbuf_copydata"],os_mbuf_copyinto:[90,3,1,"c.os_mbuf_copyinto"],os_mbuf_dup:[90,3,1,"c.os_mbuf_dup"],os_mbuf_extend:[90,3,1,"c.os_mbuf_extend"],os_mbuf_free:[90,3,1,"c.os_mbuf_free"],os_mbuf_free_chain:[90,3,1,"c.os_mbuf_free_chain"],os_mbuf_get:[90,3,1,"c.os_mbuf_get"],os_mbuf_get_pkthdr:[90,3,1,"c.os_mbuf_get_pkthdr"],os_mbuf_off:[90,3,1,"c.os_mbuf_off"],os_mbuf_pkthdr:[90,7,1,"_CPPv314os_mbuf_pkthdr"],os_mbuf_pool:[90,7,1,"_CPPv312os_mbuf_pool"],os_mbuf_pool_init:[90,3,1,"c.os_mbuf_pool_init"],os_mbuf_prepend:[90,3,1,"c.os_mbuf_prepend"],os_mbuf_prepend_pullup:[90,3,1,"c.os_mbuf_prepend_pullup"],os_mbuf_pullup:[90,3,1,"c.os_mbuf_pullup"],os_mbuf_trim_front:[90,3,1,"c.os_mbuf_trim_front"],os_memblock:[91,7,1,"_CPPv311os_memblock"],os_memblock_from:[91,3,1,"c.os_memblock_from"],os_memblock_get:[91,3,1,"c.os_memblock_get"],os_memblock_put:[91,3,1,"c.os_memblock_put"],os_memblock_put_from_cb:[91,3,1,"c.os_memblock_put_from_cb"],os_membuf_t:[91,4,1,"c.os_membuf_t"],os_mempool:[91,7,1,"_CPPv310os_mempool"],os_mempool_clear:[91,3,1,"c.os_mempool_clear"],os_mempool_ext_init:[91,3,1,"c.os_mempool_ext_init"],os_mempool_info:[91,7,1,"_CPPv315os_mempool_info"],os_mempool_info_get_next:[91,3,1,"c.os_mempool_info_get_next"],os_mempool_init:[91,3,1,"c.os_mempool_init"],os_mempool_is_sane:[91,3,1,"c.os_mempool_is_sane"],os_mempool_put_fn:[91,4,1,"c.os_mempool_put_fn"],os_mqueue:[90,7,1,"_CPPv39os_mqueue"],os_mqueue_get:[90,3,1,"c.os_mqueue_get"],os_mqueue_init:[90,3,1,"c.os_mqueue_init"],os_mqueue_put:[90,3,1,"c.os_mqueue_put"],os_msys_count:[90,3,1,"c.os_msys_count"],os_msys_get:[90,3,1,"c.os_msys_get"],os_msys_get_pkthdr:[90,3,1,"c.os_msys_get_pkthdr"],os_msys_num_free:[90,3,1,"c.os_msys_num_free"],os_msys_register:[90,3,1,"c.os_msys_register"],os_msys_reset:[90,3,1,"c.os_msys_reset"],os_mutex:[92,7,1,"_CPPv38os_mutex"],os_mutex_init:[92,3,1,"c.os_mutex_init"],os_mutex_pend:[92,3,1,"c.os_mutex_pend"],os_mutex_release:[92,3,1,"c.os_mutex_release"],os_sanity_check:[98,7,1,"_CPPv315os_sanity_check"],os_sanity_check_func_t:[98,4,1,"c.os_sanity_check_func_t"],os_sanity_check_init:[98,3,1,"c.os_sanity_check_init"],os_sanity_check_register:[98,3,1,"c.os_sanity_check_register"],os_sanity_check_reset:[98,3,1,"c.os_sanity_check_reset"],os_sanity_task_checkin:[98,3,1,"c.os_sanity_task_checkin"],os_sched:[86,3,1,"c.os_sched"],os_sched_get_current_task:[86,3,1,"c.os_sched_get_current_task"],os_sched_next_task:[86,3,1,"c.os_sched_next_task"],os_sched_set_current_task:[86,3,1,"c.os_sched_set_current_task"],os_sem:[99,7,1,"_CPPv36os_sem"],os_sem_get_count:[99,3,1,"c.os_sem_get_count"],os_sem_init:[99,3,1,"c.os_sem_init"],os_sem_pend:[99,3,1,"c.os_sem_pend"],os_sem_release:[99,3,1,"c.os_sem_release"],os_settimeofday:[101,3,1,"c.os_settimeofday"],os_stime_t:[101,4,1,"c.os_stime_t"],os_task:[100,7,1,"_CPPv37os_task"],os_task_count:[100,3,1,"c.os_task_count"],os_task_func_t:[100,4,1,"c.os_task_func_t"],os_task_info:[100,7,1,"_CPPv312os_task_info"],os_task_info_get_next:[100,3,1,"c.os_task_info_get_next"],os_task_init:[100,3,1,"c.os_task_init"],os_task_remove:[100,3,1,"c.os_task_remove"],os_task_state_t:[100,4,1,"c.os_task_state_t"],os_tick_idle:[190,3,1,"c.os_tick_idle"],os_tick_init:[190,3,1,"c.os_tick_init"],os_time_advance:[101,3,1,"c.os_time_advance"],os_time_delay:[101,3,1,"c.os_time_delay"],os_time_get:[101,3,1,"c.os_time_get"],os_time_ms_to_ticks32:[101,3,1,"c.os_time_ms_to_ticks32"],os_time_ms_to_ticks:[101,3,1,"c.os_time_ms_to_ticks"],os_time_t:[101,4,1,"c.os_time_t"],os_time_ticks_to_ms32:[101,3,1,"c.os_time_ticks_to_ms32"],os_time_ticks_to_ms:[101,3,1,"c.os_time_ticks_to_ms"],os_timeradd:[101,0,1,"c.os_timeradd"],os_timersub:[101,0,1,"c.os_timersub"],os_timeval:[101,7,1,"_CPPv310os_timeval"],os_timezone:[101,7,1,"_CPPv311os_timezone"]}},objnames:{"0":["c","define","define"],"1":["c","enumvalue","enumvalue"],"2":["c","enum","enum"],"3":["c","function","C function"],"4":["c","typedef","typedef"],"5":["c","variable","variable"],"6":["c","struct","struct"],"7":["cpp","class","C++ class"]},objtypes:{"0":"c:define","1":"c:enumvalue","2":"c:enum","3":"c:function","4":"c:typedef","5":"c:variable","6":"c:struct","7":"cpp:class"},terms:{"000s":[259,261,264,278],"008s":[259,261,264,278],"00z":269,"01t22":69,"02d":14,"02t22":269,"04x":21,"05t02":269,"093s":[259,261,264,278],"0b1000110":188,"0mb":11,"0ubuntu5":6,"0x0":[256,263,277,278],"0x00":[21,263,264,277],"0x0000":[247,277],"0x00000000":[180,223,225,226],"0x00000001":129,"0x00000002":[129,263],"0x00000004":129,"0x00000008":129,"0x00000010":129,"0x000000b8":256,"0x000000d8":[291,292],"0x000000dc":[246,284,291,292],"0x00004000":[223,225,226],"0x00008000":[94,223,225,226],"0x00009ef4":263,"0x0000fca6":256,"0x00023800":223,"0x0003f000":223,"0x0003f800":223,"0x0006":[30,277],"0x0007d000":[14,226],"0x000a":277,"0x000e0000":225,"0x0010":28,"0x01":[21,28,31,129,264,277],"0x0100":28,"0x01000000":262,"0x0101":21,"0x0102":21,"0x0103":21,"0x0104":21,"0x0105":21,"0x0106":21,"0x0107":21,"0x0108":21,"0x0109":21,"0x010a":21,"0x010b":21,"0x010c":21,"0x010d":21,"0x010e":21,"0x010f":21,"0x0110":21,"0x0111":21,"0x02":[21,28,31,129,264,277],"0x0201":21,"0x0202":21,"0x0203":21,"0x0204":21,"0x0205":21,"0x0206":21,"0x0207":21,"0x0208":21,"0x0209":21,"0x020a":21,"0x020b":21,"0x020c":21,"0x020d":21,"0x020e":21,"0x020f":21,"0x0210":21,"0x0211":21,"0x0212":21,"0x0213":21,"0x0214":21,"0x0215":21,"0x0216":21,"0x0217":21,"0x0218":21,"0x0219":21,"0x021a":21,"0x021b":21,"0x021c":21,"0x021d":21,"0x021e":21,"0x021f":21,"0x0220":21,"0x0221":21,"0x0222":21,"0x0223":21,"0x0224":21,"0x0225":21,"0x0226":21,"0x0227":21,"0x0228":21,"0x0229":21,"0x022a":21,"0x022c":21,"0x022d":21,"0x022e":21,"0x022f":21,"0x0230":21,"0x0232":21,"0x0234":21,"0x0235":21,"0x0236":21,"0x0237":21,"0x0238":21,"0x0239":21,"0x023a":21,"0x023b":21,"0x023c":21,"0x023d":21,"0x023e":21,"0x023f":21,"0x0240":21,"0x03":[21,31,129,277],"0x0300":[21,28],"0x0301":21,"0x0302":21,"0x04":[21,28],"0x0401":21,"0x0402":21,"0x0403":21,"0x0404":21,"0x0405":21,"0x0406":21,"0x0407":21,"0x0408":21,"0x0409":21,"0x040a":21,"0x040b":21,"0x040c":21,"0x040d":21,"0x040e":21,"0x0483":260,"0x05":21,"0x0501":21,"0x0502":21,"0x0503":21,"0x0504":21,"0x0505":21,"0x0506":21,"0x0507":21,"0x0508":21,"0x0509":21,"0x050a":21,"0x050b":21,"0x050c":21,"0x050d":21,"0x050e":21,"0x06":[21,247,277],"0x07":[21,277],"0x08":[21,28,277],"0x08000000":262,"0x08000020":262,"0x08000250":262,"0x08021e90":260,"0x09":[21,277],"0x0a":[21,277],"0x0b":21,"0x0bc11477":256,"0x0c":21,"0x0c80":30,"0x0d":21,"0x0e":21,"0x0f":[21,277,280],"0x0f505235":129,"0x0fffffff":180,"0x1":[278,280,282,284],"0x10":[21,256,263,264,280],"0x100":21,"0x1000":[90,280,282],"0x10000":94,"0x10000000":180,"0x10010000":262,"0x10036413":262,"0x10076413":260,"0x1010":90,"0x103":21,"0x11":[21,24,255,264,277],"0x12":21,"0x13":21,"0x14":21,"0x1400":277,"0x15":[21,276,278,280],"0x16":21,"0x17":21,"0x18":[21,277],"0x1800":31,"0x1808":31,"0x180a":31,"0x19":[21,208],"0x1a":21,"0x1b":21,"0x1c":[21,276,278],"0x1d":21,"0x1e":21,"0x1f":21,"0x2":[280,282],"0x20":[21,33,94,256,263,276,277,278],"0x200":[21,280,282],"0x2000":[280,282],"0x20000":278,"0x20000000":94,"0x20002290":260,"0x20002408":256,"0x20008000":256,"0x21":[21,33],"0x21000000":256,"0x22":[21,24,33,264],"0x23":[21,33],"0x24":21,"0x25":[21,277],"0x26":21,"0x27":21,"0x28":21,"0x2800":277,"0x29":21,"0x2a":21,"0x2ba01477":263,"0x2c":21,"0x2d":[21,277],"0x2e":21,"0x2f":21,"0x30":[21,256,263,277],"0x300":21,"0x311":280,"0x32":[21,280],"0x33":24,"0x34":21,"0x35":21,"0x36":21,"0x37":21,"0x374b":260,"0x38":21,"0x39":21,"0x3a":21,"0x3a000":94,"0x3b":21,"0x3c":21,"0x3c00":277,"0x3d":21,"0x3e":21,"0x3f":21,"0x4":[280,282],"0x40":[21,256,263,276,278],"0x400":21,"0x4000":[280,282],"0x40007000":278,"0x4001e504":263,"0x4001e50c":263,"0x40number":188,"0x41000000":260,"0x42000":62,"0x44":[24,277],"0x4400":277,"0x46":188,"0x4f":[276,278],"0x50":[256,263],"0x500":21,"0x5000":277,"0x55":24,"0x6":277,"0x60":[256,263,277],"0x61":[276,278],"0x62":277,"0x65":277,"0x66":24,"0x68":277,"0x69":277,"0x6c":277,"0x6c00":277,"0x6d":277,"0x6e":277,"0x70":[256,263,277],"0x72":[276,277,278],"0x7800":277,"0x7fefd260":129,"0x7fff8000":278,"0x7fffffff":180,"0x8":277,"0x80":[276,278],"0x8000":62,"0x8000000":262,"0x80000000":180,"0x8079b62c":129,"0x81":188,"0x8801":277,"0x8c":188,"0x8d":188,"0x90":[276,278],"0x96f3b83c":129,"0x9c01":277,"0x9f":277,"0xa":277,"0xa0":280,"0xa001":277,"0xa7":[276,278],"0xaf":[276,278],"0xb3":[276,278],"0xb401":277,"0xb5":[276,278],"0xbead":[276,278],"0xcc01":277,"0xd2":[276,278],"0xd801":277,"0xdead":[276,278],"0xe401":277,"0xe7":[276,278],"0xf":277,"0xf001":277,"0xf395c277":129,"0xfb":280,"0xfe":277,"0xff":[129,180],"0xffff":[30,191,277],"0xfffffffe":180,"0xffffffff":[92,99,129,180,207,256],"0xffffffff0xffffffff0xffffffff0xffffffff":263,"100kb":102,"1024kbyte":[260,262],"103kb":223,"10m":28,"110kb":223,"128hz":14,"128kb":[9,225],"12c":[259,261,264,278],"12kb":[14,226],"12mhz":9,"132425ssb":31,"132428ssb":31,"132433ssb":31,"132437ssb":31,"132441ssb":31,"14e":291,"14h":[284,291],"1503a0":270,"16kb":[9,225,226],"16kbram":54,"16mb":9,"190a192":277,"1_amd64":[58,61,81,84],"1c15":[276,278],"1d11":287,"1d13":[270,290],"1d560":223,"1eec4":223,"1kb":223,"1mhz":14,"1ms":14,"1st":[14,69],"1ubuntu1":6,"1wx":263,"200mhz":9,"2015q2":[4,12],"2022609336ssb":250,"2022687456ssb":250,"2022789012ssb":250,"2022851508ssb":250,"2042859320ssb":250,"2042937440ssb":250,"248m":6,"250m":[240,265],"256kb":256,"262s":[259,261,264,278],"28a29":277,"28t22":269,"291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682":241,"296712s":262,"2a24":49,"2d5217f":82,"2m_interval_max":28,"2m_interval_min":28,"2m_latenc":28,"2m_max_conn_event_len":28,"2m_min_conn_event_len":28,"2m_scan_interv":28,"2m_scan_window":28,"2m_timeout":28,"2msym":22,"300v":[259,261,264,278],"30j":277,"32kb":[226,256],"32mb":9,"32wx":[256,263],"363s":[259,261,264,278],"3_1":37,"3mb":82,"46872ssb":277,"4_9":4,"4fa7":[276,278],"500m":[240,265],"512kb":94,"54684ssb":277,"575c":223,"5kb":102,"5ms":14,"6lowpan":22,"73d77f":72,"78e4d263eeb5af5635705b7cae026cc184f14aa6c6c59c6e80616035cd2efc8f":223,"7b3w9m4n2mg3sqmgw2q1b9p80000gn":56,"7kb":223,"8ab6433f8971b05c2a9c3341533e8ddb754e404":273,"948f118966f7989628f8f3be28840fd23a200fc219bb72acdfe9096f06c4b39b":223,"9cf8af22b1b573909a8290a90c066d4e190407e97680b7a32243960ec2bf3a7f":290,"9mb":59,"abstract":[9,21,96,97,135,152,163,166,174,181,207,209,210,240,265,277,294],"boolean":[200,226],"break":[21,90,137,235,251,277],"byte":[14,20,24,28,47,67,72,74,90,91,100,129,130,131,133,141,142,154,158,159,161,164,169,170,171,172,173,174,175,180,183,188,191,194,200,223,228,241,243,254,255,264],"case":[2,6,7,14,21,22,31,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,93,94,98,99,100,101,129,135,174,180,184,223,224,226,228,229,230,231,232,233,235,237,243,247,251,252,254,255,256,269,270,276,277,278,292],"catch":21,"char":[91,93,98,100,130,131,135,139,140,153,155,156,157,160,161,162,163,165,167,170,172,173,177,178,180,192,194,198,199,200,201,203,206,215,216,220,221,222,224,226,234,240,243,251,254,255,258,265,269,277,282,284],"class":[135,264],"const":[88,90,91,94,100,129,130,131,136,153,155,156,157,158,159,160,161,162,163,165,166,167,170,171,172,173,177,178,181,183,185,186,192,200,205,206,209,215,220,222,224,251,253,254,255,269,276,277,278],"default":[1,2,4,6,7,8,12,14,21,25,27,28,29,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,92,93,94,95,97,98,100,131,132,134,135,136,152,176,191,200,206,207,208,209,210,212,213,214,215,217,222,223,224,225,226,237,238,240,241,247,249,251,254,255,256,257,264,265,271,276,277,278,280,281,283,284,286,291],"enum":[100,130,187,192,194,200,207,276,277],"export":[1,11,24,61,62,81,83,84,88,130,131,135,137,206,207,208,209,210,238,279,280,282],"final":[8,56,90,92,94,129,143,180,182,202,223,242,243,246,249,276,278],"float":[65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,102,200,207,279],"function":[1,7,9,15,21,24,32,62,85,86,87,88,89,90,91,93,95,96,97,98,100,129,130,131,135,136,137,139,147,151,152,153,154,155,156,157,159,161,162,163,165,167,168,169,170,172,174,175,177,180,181,182,184,187,188,189,190,191,192,193,194,197,199,201,202,203,204,205,206,208,210,213,215,216,217,218,220,221,223,227,228,229,230,231,232,234,235,237,238,240,241,246,249,250,252,254,255,257,258,264,265,269,271,276,277,278,280,284,289,291,292,294],"goto":[98,160,205,209,218,219,276,277,278],"i\u00b2c":188,"import":[11,56,58,81,90,94,101,102,188,243,246,249,252,278],"int":[1,14,21,27,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,85,87,88,90,91,93,98,100,101,130,131,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,160,161,162,163,164,165,166,167,169,170,171,172,173,177,178,179,181,183,184,185,187,188,190,191,192,193,194,195,198,199,200,201,202,203,204,205,208,209,215,216,218,219,220,221,222,224,226,228,229,230,232,233,234,240,242,243,249,251,252,253,254,255,258,265,269,276,277,278,282,284],"long":[3,14,22,25,29,90,93,99,102,152,170,180,188,223,263,284],"new":[2,3,4,6,10,11,14,22,24,25,28,31,32,35,40,42,46,47,51,54,58,59,60,62,86,90,94,97,100,129,131,141,142,143,152,153,162,167,174,177,178,182,188,196,215,223,224,226,237,241,243,245,246,247,252,253,254,255,256,259,260,261,262,263,264,269,270,271,277,278,279,281,294],"null":[85,86,87,88,90,91,92,93,94,98,99,100,130,131,136,153,157,161,164,172,174,180,186,191,205,206,208,209,215,220,222,225,226,240,243,249,252,253,254,255,258,265,276,277,278,279,282,284],"public":[20,26,28,30,31,33,58,67,81,85,88,90,91,92,98,99,100,101,129,130,131,188,191,193,254,255],"return":[19,27,85,86,87,88,90,91,92,93,94,98,99,100,101,130,131,136,141,153,183,186,187,188,191,192,193,194,195,200,208,209,212,226,240,243,249,251,252,253,256,258,264,265,269,276,277,278,280,282,284,288],"short":[90,92,215,243],"static":[20,27,67,85,88,91,93,94,98,99,130,131,136,140,181,199,201,202,204,205,206,208,209,216,218,219,220,221,222,228,237,240,247,249,251,252,253,254,255,258,265,276,277,278,279,282,284],"switch":[10,12,21,59,72,78,82,86,93,94,100,129,182,196,215,238,246,247,251,252,276,277,278,284,291],"transient":252,"true":[8,12,14,87,91,98,101,205,223,228,241,269,278,287,290],"try":[2,14,21,22,24,90,153,180,188,237,242,246,247,250,256,257,258,259,260,261,263,270,272,277,278,280,284,286,291],"var":[51,56,66,67,98,130,167],"void":[21,27,85,86,87,88,90,91,93,98,100,101,130,131,135,136,137,139,151,153,154,158,160,161,163,164,167,169,170,171,172,173,179,181,183,184,185,187,188,190,191,192,193,194,195,197,199,200,206,208,209,211,216,217,218,220,221,222,226,228,229,230,232,233,234,235,240,243,249,251,252,253,254,255,258,265,276,277,278,279,282,284],"while":[4,6,7,8,22,24,27,50,56,62,90,91,93,94,98,100,102,131,137,139,153,155,156,157,162,165,180,194,200,205,209,223,226,228,233,238,240,243,254,255,258,265,267,269,276,277,278,282,284,291,292],AES:23,ANS:248,Adding:[57,80,294],And:[62,129,141,223,225,242,243,245,250,276,277,278],Are:14,But:[14,278],CTS:[194,247],FOR:4,For:[2,3,5,6,7,8,11,12,14,21,23,24,25,30,31,35,38,40,51,54,56,58,59,60,61,62,63,67,84,85,90,93,94,97,101,102,129,135,136,153,171,174,175,180,181,184,187,188,191,200,206,207,208,209,210,211,221,223,224,225,226,233,235,237,240,241,246,251,252,253,254,255,256,258,260,261,262,264,265,269,270,271,272,278,280,282,284,287,290,291,292,294],IDE:[5,12],IDs:129,Its:[95,101,102,237,272],NOT:[157,188,193,278],Not:[7,21,30,87,90,180,182,187,191,223,278],One:[6,21,93,102,180,223,237,249,270],PCs:8,QoS:[21,22],RTS:[194,247],Such:[180,254,255,272],TMS:256,That:[2,14,21,62,141,180,226,254,255,256,264,270,271,277,278],The:[1,2,3,4,5,6,7,8,10,11,12,14,15,16,17,18,19,20,21,22,23,24,25,27,28,30,31,32,34,35,38,44,46,47,48,51,56,58,59,60,62,64,65,67,71,72,73,74,76,77,78,79,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,129,130,131,132,133,134,135,136,137,141,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,173,174,175,176,177,178,180,181,182,183,184,185,186,187,188,190,191,192,193,194,195,196,198,199,200,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,223,224,225,226,228,231,233,235,236,237,238,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,260,261,262,263,264,265,267,269,270,271,272,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,294],Then:[10,14,34,64,129,141,180,223,237,247,269,277,278,291],There:[4,8,14,23,24,29,58,62,81,85,90,92,94,95,99,100,101,102,130,131,135,161,180,182,187,206,207,212,215,223,224,251,256,264,269,273,278,284,291,292],These:[5,21,28,51,62,90,94,95,97,99,129,130,135,180,188,207,210,211,212,215,225,238,245,249,253,254,255,256,257,262,271,272,279,280],Use:[1,7,8,11,28,29,51,58,59,60,63,72,81,82,83,94,133,141,143,223,237,251,254,255,256,259,264,270,271,277,278,279,281,289],Used:[94,191,194,229,230,232],Uses:[32,43,134,225],Using:[21,50,92,258,289,294],Was:264,Will:21,With:[9,14,21,22,31,90,93,97,129,223,225,242,243,246,291,292,294],Yes:[10,14,20,90,129,134,244],__arg:98,__asm:260,__builtin_offsetof:224,__etext:262,__ev:88,__f:98,__hdr:90,__itvl:98,__n:90,__name:100,__om:90,__omp:90,__sc:98,__size:100,__t1:[87,101],__t2:[87,101],__type:90,__wfi:260,_access:251,_adc:278,_addr:254,_addr_:[254,255],_app:254,_build:[34,64],_cfg:[208,209],_cli:[209,210,280],_cnt:141,_config:[207,208,209,282],_file:153,_gatt_ac:251,_imghdr_siz:94,_init:[207,208,209],_log:209,_name:226,_nrf52_adc_h_:278,_object:200,_ofb:[208,210,280],_onb:[208,210,284],_pad1:129,_pad2:129,_pad3:129,_pad:[92,129],_param:215,_rea:200,_reserv:207,_resource_t:279,_sbrk:183,_senseair_h_:277,_sensor:208,_set:254,_shell_init:[209,280],_stage:226,_stat:209,a600anj1:223,abbrevi:249,abc:269,abil:[6,23,32,56,90,243],abl:[2,14,90,94,135,136,238,244,250,254,255,256,271,277,278],abort:[50,191,216,220,225,226,228,269,282],about:[1,3,10,14,24,30,41,58,59,60,63,65,81,82,83,91,93,94,98,100,101,141,142,146,180,200,211,223,224,236,237,240,243,249,252,253,254,255,259,263,264,265,272,278],abov:[9,14,15,20,90,93,98,101,129,153,161,180,188,191,215,223,224,225,226,238,246,249,251,254,255,258,264,269,271,276,278],absent:[129,180],absolut:[90,193],abstrat:141,acc:280,accel:[280,284],accel_rev:280,acceleromet:[207,209,279,280,281,284],accept:[14,21,28,137,161,180,188,194,196,237,256,260,262,264,271],access:[8,16,21,22,28,60,62,65,71,81,82,83,87,89,90,92,93,94,99,135,136,137,141,153,161,168,170,174,181,182,188,196,206,207,209,210,223,226,233,240,246,253,256,265,269,277],access_:253,access_cb:[251,253,276,278],access_fla:161,access_flag:[161,163],accgyro:280,accommod:[25,90,97,129,180,254],accompani:14,accomplish:[9,14,56,174,180,251],accord:[14,94,129,233,234],accordingli:[25,94,100],account:[10,62,90,129],accur:262,achiev:[27,180,254,255],ack_rxd:264,acknowledg:264,acl:21,acquir:[27,92,99,180,188],acquisit:188,across:[31,32,56,62,63,135,180,182],act:[23,31,196,223],action:[9,14,28,63,237,243,249,253,264,278],activ:[12,14,17,18,22,48,72,94,100,130,191,196,223,237,241,249,264,287,290,291,292],actual:[2,7,14,35,78,90,94,100,129,157,164,172,180,184,195,223,225,228,236,243,246,254,255,256,271,272,273,278],ad_fil:153,adafruit:[8,278,280],adapt:[22,97,256,259,260,270,284],adapter_nsrst_delai:[256,260],adaptor:262,adc0:278,adc:[9,14,54,135],adc_0:278,adc_buf_read:278,adc_buf_releas:278,adc_buf_s:278,adc_buf_set:278,adc_chan_config:278,adc_config:278,adc_dev:278,adc_event_handler_set:278,adc_evq:278,adc_hw_impl:54,adc_init:278,adc_number_channel:278,adc_number_sampl:278,adc_read:278,adc_read_ev:278,adc_result:278,adc_result_mv:278,adc_sampl:278,adc_sns_str:278,adc_sns_typ:278,adc_sns_val:278,adc_stack:278,adc_stack_s:278,adc_stm32f4:135,adc_task:278,adc_task_handl:278,adc_task_prio:278,add:[1,2,4,6,7,11,12,14,28,38,40,51,56,58,59,60,62,63,81,88,90,93,97,99,101,102,131,132,141,153,182,188,208,209,216,224,226,237,238,240,241,242,243,246,247,250,256,257,258,265,267,269,270,271,278,280,281,282,283,285,287,288,289,290,294],added:[10,12,33,54,56,82,90,94,99,100,129,131,136,138,153,188,215,240,241,256,258,265,270,272,276,277,287,288,290,294],adding:[2,14,32,38,56,90,94,95,101,141,224,246,258,269,271,272,276,277,278],addit:[1,12,14,22,30,44,56,62,63,90,94,95,97,129,135,153,180,188,206,223,226,228,231,237,238,243,246,249,256,257,259,260,262,263,264,277,278,288],addition:63,addr:[28,31,136,200,205,247,254,255,280],addr_typ:[28,31],address:[14,21,22,23,26,28,30,32,33,56,67,90,91,93,129,135,136,137,152,180,185,188,191,200,207,209,223,241,247,251,264,270,284,291],aditihilbert:4,adjust:[14,21,90,94,240,242,265],admin:[4,247],administr:[11,13],adress:28,adsertis:28,adv:[14,22,28,31,32],adv_channel_map:277,adv_data:28,adv_field:[249,254],adv_filter_polici:277,adv_itvl_max:277,adv_itvl_min:277,adv_param:[249,252,254,255],advanc:[60,169,180,291,292],advantag:[252,278],advantang:249,adverb:63,adverti:[254,255],advertis:[16,21,22,25,27,32,33,67,241,248,250,252,276,277,278,279],advertise_128bit_uuid:279,advertise_16bit_uuid:279,advertising_interv:[28,30],advic:[95,96],advinterv:30,aes:[256,259,261,263,270,287,288,290],aesni:[287,288],af80:[276,278],affect:[129,169,174,175,181,206,223,246,267],aflag:[1,51,62],after:[4,8,11,14,23,27,31,42,51,56,58,59,62,81,82,87,90,91,95,100,101,129,130,135,139,143,147,153,174,180,188,191,194,209,223,225,231,237,238,241,243,244,247,249,251,252,253,256,257,270,271,280,284],afterward:277,again:[8,14,21,27,58,60,81,94,100,129,141,223,224,243,249,256,259,260,261,262,263,264,278,290],against:[14,23,90,93,101],agnost:153,agre:[277,278],agreement:[277,278],ahead:101,aid:[62,209],aim:[21,136,153,248,294],ain0:278,ain1:278,air:[21,90,223,238,264,285,294],air_q:277,air_qual:[276,277],albeit:245,alert:248,algorithm:[22,86],align:[90,91,141,243],all201612161220:76,all:[1,2,3,6,7,8,9,10,12,15,16,17,18,19,21,22,23,25,27,28,29,30,31,32,36,41,42,44,50,51,52,53,54,56,62,67,73,76,90,92,93,94,95,97,98,100,101,129,130,131,135,141,145,151,153,160,161,164,166,167,170,172,174,176,178,180,181,182,184,191,200,206,207,208,209,210,211,212,213,215,220,223,224,225,226,231,233,236,237,238,242,244,246,247,248,249,250,251,252,253,254,255,258,260,262,264,267,269,271,272,273,274,276,277,278,280,282,284,287,290],alloc:[74,78,88,89,90,91,152,180,220,249,251],allow:[2,3,4,6,8,9,12,14,21,22,28,32,40,51,56,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,92,93,97,99,129,131,135,153,174,180,183,188,191,192,206,210,211,212,214,215,223,224,226,230,234,237,238,240,243,247,249,252,254,258,259,264,265,270,278,280,284,286],almost:[8,243],alon:[14,234],along:[14,62,90,91,100,218,277],alongsid:[243,254],alphabet:[180,226],alreadi:[6,7,8,11,14,21,25,32,44,59,60,82,83,87,96,97,129,136,147,154,160,161,166,167,168,173,180,187,193,237,242,245,246,256,258,259,260,261,262,263,264,270,276,278,279,287,290,291,292],also:[1,3,5,6,7,8,11,12,14,22,24,25,28,35,38,41,56,58,59,60,61,62,67,81,84,90,91,93,94,97,99,100,101,129,130,131,132,135,136,141,153,174,180,191,194,196,206,207,208,209,211,213,215,223,224,225,226,237,238,240,243,246,249,252,253,257,258,264,265,267,269,270,271,272,276,277,278,280,281,282,283,284,287,288,290],alt:290,altern:[6,129,141,223,251],although:271,altogeth:[85,276],alwai:[8,14,62,94,101,129,157,159,161,162,169,171,180,184,245,251,254,255,262,269,271,272,277,294],ambigu:21,ambiti:246,amd64:[58,81],amend:[1,14,33,51,63,241,267,291,292],amg:280,among:[86,94,129,177,223],amongst:90,amount:[25,90,91,96,153,172,206,223,243,249],analog:[135,285],analyz:[12,292],android:[279,281,283,286],ani:[1,4,8,10,14,15,22,23,28,34,50,51,60,62,64,65,67,74,77,78,81,82,83,85,87,88,90,91,92,93,94,96,98,99,100,101,129,131,136,137,153,160,170,174,175,176,177,179,180,191,194,206,209,210,215,223,224,226,234,237,238,241,247,249,258,259,264,272,276,277,278,284,289,294],announc:[249,254,255],annoy:[251,273],anonym:28,anoth:[10,14,22,27,28,31,62,90,92,93,94,95,96,99,100,101,131,187,196,223,225,237,243,249,251,264,277,278,288,291,292],ans:[277,278],answer:93,anymor:[90,243],anyon:14,anyth:[1,8,24,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,223,237,242,246,254,255,257,272,278],apach:[1,2,6,7,10,11,12,14,22,33,34,38,39,40,44,45,51,52,54,56,58,59,60,62,63,64,81,82,83,85,94,129,131,134,135,153,184,223,224,226,227,237,244,246,247,248,250,254,256,257,258,259,260,261,262,263,264,269,270,271,272,277,278,279,280,281,284,286,287,288,289,290,291,292,294],apart:101,api:[1,17,18,19,20,21,22,54,56,62,93,97,135,136,163,182,186,209,210,215,224,255,260,279,283],app:[1,7,8,12,14,22,27,30,33,35,38,39,43,44,46,47,48,49,51,54,56,63,74,77,78,94,129,131,135,153,182,192,224,225,226,237,238,240,241,242,243,246,248,249,252,253,254,255,256,258,259,260,261,262,263,265,269,270,276,277,279,280,281,282,283,287,288,289,290,291,294],app_log_init:206,appear:[14,28,30,97,188,243,251,253],append:[90,141,159,169,171,180,269],append_loc:[142,143],append_test:269,appl:[256,284,286,291,292],appli:[12,14,25,101,129,130,131,174,175,180,194,206,223,226,264,269],applic:[1,2,4,5,6,8,9,11,13,14,15,19,21,22,24,25,26,27,29,31,35,40,43,48,51,56,58,59,60,61,62,74,77,78,79,83,84,88,90,94,98,100,129,131,132,133,134,135,153,174,180,185,191,209,210,211,212,213,214,215,221,224,225,226,236,241,245,248,251,252,257,268,269,276,277,283,286,288,289,292,294],applicaton:1,applict:12,approach:[32,94,226],appropri:[63,90,94,97,100,133,135,180,188,191,226,237,242,246,249,252,254,255,257,278,283],approv:10,apps_air_qu:277,apps_bleprph:223,apps_blinki:[56,62],apps_my_sensor_app:284,apr:[8,259,261,264,278],apropo:[256,284,291,292],apt:[4,6,7,57,61,80,84,247],arbitrari:[129,237,247,256,259,260,261,262,263,264,270,278,280,287,288,290],arbitrarili:[129,180,255],arc4:256,arch:[62,94,97,233,259,260,261,262,263,264,284],arch_sim:[258,284],architectur:[58,81,86,91,94,96,97,101,129,135,152,182,187,243],archiv:[4,7,58,60,62,167,237,238,246,256,258,259,260,261,262,263,264,270,277,278,280,284,287,288,290],arduino:[12,243,257,268,271,277,294],arduino_101:54,arduino_blinki:[12,243,256],arduino_boot:[12,256],arduino_mkr1000:270,arduino_primo_nrf52:[54,259],arduino_zero:256,arduino_zero_debug:256,arduinowifi:270,area:[14,90,94,129,130,141,151,175,177,178,183,226],area_cnt:183,area_desc:[177,178],aren:[14,102],arg:[12,87,90,91,93,98,100,135,151,185,187,191,193,194,206,209,218,228,240,243,251,252,265,276,277,278,284],argc:[93,100,130,139,140,177,178,198,215,216,220,221,222,226,234,240,243,254,255,258,265,269,277,282,284],argument:[11,12,14,21,46,51,56,63,85,88,90,91,98,100,101,131,168,184,187,188,191,193,200,206,209,211,215,221,243,249,252,253,254,255,259,261,271,272,284],argv:[100,130,139,140,177,178,198,215,216,220,221,222,226,234,240,243,254,255,258,265,269,277,282,284],arm:[5,6,7,12,85,94,102,256,262,284,290,291,292],around:[31,90,129,278,279,281],arrai:[24,88,130,140,141,151,174,175,177,178,191,200,201,202,204,205,215,220,226,242,243,249,253],arrang:[94,223],arriv:90,articl:273,artifact:[36,40,51,56,58,59,60,271],ascii:180,asf:[1,271,277,278],ask:[10,14,93,130,194,207,243,262,271,272],aspect:[28,90,129,243],assembl:[1,62,94,97,259,260,261,262,263,264,284],assert:[14,68,90,98,131,158,171,177,178,191,208,224,228,240,243,251,252,253,254,255,258,265,276,277,278,282,284],assign:[10,14,20,22,24,30,38,51,54,67,91,93,94,100,141,180,181,226,237,251,256,259,260,261,262,263,264,270,278,280,287,290],associ:[23,25,88,90,98,100,129,193,226,228,249,252],assum:[7,12,14,31,44,60,61,83,84,88,90,94,100,129,136,191,196,226,237,238,240,242,245,246,258,264,265,276,278,279,281,283,284,291,292],assumpt:14,asynchron:194,at45db:[14,136],at45db_default_config:136,at45db_dev:136,at45db_erase_sector:136,at45db_init:136,at45db_read:136,at45db_sector_info:136,at45db_writ:136,at45dbxxx:136,at91samd21g18:256,at91samd:256,ate_m:207,atmel:[2,256,270],atop:[135,182],att:[19,22,29,251],attach:[8,12,90,94,187,192,246,259,264,278,284,291,292],attempt:[21,24,28,90,91,92,100,129,164,172,177,178,179,180,188,226,251,252,253,264],attempt_stat:224,attent:3,attr:[29,31,205],attr_handl:[250,251,252,276,278],attribit:200,attribut:[15,17,18,21,22,29,51,54,63,67,91,95,97,200,205,226,248,251],auth:[14,28,273],authent:[21,23,31,129,250],author:[1,14,21,44,62,131,269,277,278],auto:[30,136],autocomplet:56,autoconf:56,autom:32,automat:[1,10,22,25,26,43,56,62,95,197,215,224,226,231,238,246,248,249,256,259,260,262,263,269,271,277,278,279,294],autoselect:256,avaial:264,avail:[1,2,3,4,7,9,14,21,22,24,25,30,31,32,33,48,58,59,60,63,65,74,81,82,83,88,90,91,92,98,99,102,129,131,133,135,141,153,164,174,194,196,207,215,223,226,233,236,238,254,258,264,272,283,291,292],avail_queu:131,avoid:[62,90,92,93,98,243,279],awai:[21,94,130,251,278],await:3,awar:[249,254,255],b0_0:262,b0_1:262,b1_0:262,b1_1:262,b5729002b340:[276,278],b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2:241,bab:206,back:[8,59,65,70,81,82,83,90,91,101,102,129,130,131,188,213,238,253,262,263,277,283,287,288,290],backend:130,backward:[22,129,131,180,215],bad:[129,223,272],badli:93,bake:14,band:[22,23,28],bank:262,bar:[12,130,294],bare:[85,248,254,255,294],base64:[7,130,131,264,284],base:[1,2,4,6,7,12,14,21,22,25,32,35,40,56,58,59,60,62,90,102,133,135,137,169,182,183,188,225,243,247,253,256,259,260,262,263,270,279,280,284],baselibc:[7,14,49,94],baselin:134,bash:[2,12,56,60,94],bash_complet:37,bash_profil:[11,59,61,82,84],bashrc:56,basi:[9,20,23,100,272,277,278],basic:[1,14,15,22,30,31,32,62,90,94,100,102,135,153,183,185,187,194,223,238,241,246,247,264,271,273,275,276,286,288,289],batch:94,batteri:[9,25,32,97,254],baud:[67,131,247],baudrat:[136,191,194],bbno055_cli:280,bc_acc_bw:[209,282],bc_acc_rang:[209,282],bc_mask:[209,282],bc_opr_mod:[209,282],bc_placement:209,bc_pwr_mode:[209,282],bc_unit:[209,282],bc_use_ext_xt:282,bcfg:282,bd_addr:21,be9699809a049:72,beacon:[15,245,246,257],bearer:[14,22,33],becaus:[8,12,14,21,23,27,31,51,88,129,170,180,181,188,191,207,209,212,216,223,225,243,269,271,273,277,279,280,281,284],becom:[23,32,129,249,252],been:[4,10,14,21,27,37,44,56,59,60,62,78,82,83,89,90,91,100,129,130,139,141,153,154,166,174,180,191,194,223,226,244,247,252,256,259,264,270,276,277,278],befor:[2,4,7,8,12,14,21,42,51,58,62,81,85,87,89,90,92,93,94,98,100,101,102,129,130,131,141,147,174,175,179,191,193,194,195,200,211,212,215,217,223,224,226,233,234,238,240,243,246,247,248,249,251,254,255,257,258,260,264,265,269,270,278,283,286,289],begin:[14,27,90,100,130,141,149,194,247,250,252,254,255,269,271],beginn:294,behav:[21,31,93,254,255,269],behavior:[60,93,97,162,163,174,243,251,253,269,270,292],behaviour:90,behind:[90,101],being:[14,21,90,91,93,98,100,101,129,130,136,153,180,187,188,189,198,199,223,228,243,250,252,269,294],bell:99,belong:[15,91,129,180,253],below:[1,2,4,6,8,12,14,19,21,23,24,25,31,44,63,90,93,94,95,99,100,129,131,133,136,154,161,164,180,181,193,209,223,237,243,246,251,253,256,259,260,262,263,264,267,269,271,272,273,278,279,280,282,286,294],benefit:[10,93,180,226,236,240,265],best:[14,90,94,161,200,272],beta:135,better:[14,129,224],between:[7,12,22,27,28,32,38,47,56,99,101,131,180,187,188,198,200,210,223,225,226,238,240,247,259,264,265,272,278,280,284],beyond:[90,180],bhd:67,big:[24,62,90,264,272],bigger:223,bin:[2,4,7,11,12,14,35,36,38,39,44,47,49,51,56,58,59,60,61,62,81,82,83,84,94,169,170,223,226,237,238,241,242,246,247,250,256,258,259,260,261,262,263,264,269,270,277,278,280,284,287,288,290,291,292],bin_basenam:62,binari:[4,7,11,14,35,38,40,56,59,61,62,80,82,84,102,133,188,258],binutil:4,bit:[7,15,24,26,28,30,58,59,60,67,82,83,87,90,91,100,101,102,129,180,188,189,191,194,207,209,211,212,223,224,243,246,251,252,253,254,255,270,272,276,278,279,284,291,292],bitbang:189,bitmap:91,bitmask:100,bits0x00:28,bl_rev:280,bla:206,blank:14,ble:[15,19,20,24,27,31,32,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,129,133,134,223,226,238,241,245,247,249,251,252,253,257,275,276,277,281,283,286,294],ble_:251,ble_addr_t:[254,255],ble_addr_type_publ:252,ble_app:[246,254,255],ble_app_advertis:[254,255],ble_app_on_sync:[254,255],ble_app_set_addr:[254,255],ble_att:[77,238,251],ble_att_err_attr_not_found:21,ble_att_err_attr_not_long:21,ble_att_err_insufficient_authen:21,ble_att_err_insufficient_author:21,ble_att_err_insufficient_enc:21,ble_att_err_insufficient_key_sz:21,ble_att_err_insufficient_r:[21,276,278],ble_att_err_invalid_attr_value_len:[21,251],ble_att_err_invalid_handl:21,ble_att_err_invalid_offset:21,ble_att_err_invalid_pdu:21,ble_att_err_prepare_queue_ful:21,ble_att_err_read_not_permit:21,ble_att_err_req_not_support:21,ble_att_err_unlik:[21,276,278],ble_att_err_unsupported_group:21,ble_att_err_write_not_permit:21,ble_att_svr_entry_pool:74,ble_att_svr_prep_entry_pool:74,ble_eddystone_set_adv_data_uid:254,ble_eddystone_set_adv_data_url:254,ble_eddystone_url_scheme_http:254,ble_eddystone_url_suffix_org:254,ble_err_acl_conn_exist:21,ble_err_auth_fail:21,ble_err_chan_class:21,ble_err_cmd_disallow:21,ble_err_coarse_clk_adj:21,ble_err_conn_accept_tmo:21,ble_err_conn_establish:21,ble_err_conn_limit:21,ble_err_conn_parm:21,ble_err_conn_rej_bd_addr:21,ble_err_conn_rej_channel:21,ble_err_conn_rej_resourc:21,ble_err_conn_rej_secur:21,ble_err_conn_spvn_tmo:21,ble_err_conn_term_loc:21,ble_err_conn_term_m:21,ble_err_ctlr_busi:21,ble_err_diff_trans_col:21,ble_err_dir_adv_tmo:21,ble_err_encryption_mod:21,ble_err_host_busy_pair:21,ble_err_hw_fail:21,ble_err_inq_rsp_too_big:21,ble_err_instant_pass:21,ble_err_insufficient_sec:21,ble_err_inv_hci_cmd_parm:21,ble_err_inv_lmp_ll_parm:21,ble_err_link_key_chang:21,ble_err_lmp_collis:21,ble_err_lmp_ll_rsp_tmo:21,ble_err_lmp_pdu:21,ble_err_mac_conn_fail:21,ble_err_mem_capac:21,ble_err_no_pair:21,ble_err_no_role_chang:21,ble_err_page_tmo:21,ble_err_parm_out_of_rang:21,ble_err_pending_role_sw:21,ble_err_pinkey_miss:21,ble_err_qos_parm:21,ble_err_qos_reject:21,ble_err_rd_conn_term_pwroff:21,ble_err_rd_conn_term_resrc:21,ble_err_rem_user_conn_term:21,ble_err_repeated_attempt:21,ble_err_reserved_slot:21,ble_err_role_sw_fail:21,ble_err_sco_air_mod:21,ble_err_sco_itvl:21,ble_err_sco_offset:21,ble_err_sec_simple_pair:21,ble_err_synch_conn_limit:21,ble_err_unit_key_pair:21,ble_err_unk_conn_id:21,ble_err_unk_lmp:21,ble_err_unknown_hci_cmd:21,ble_err_unspecifi:21,ble_err_unsupp_lmp_ll_parm:21,ble_err_unsupp_qo:21,ble_err_unsupp_rem_featur:21,ble_err_unsupport:21,ble_ext_adv:14,ble_ext_adv_max_s:14,ble_ga:253,ble_gap:[14,77],ble_gap_adv_param:[254,255],ble_gap_adv_set_field:249,ble_gap_adv_start:[249,252,254,255],ble_gap_chr_uuid16_appear:[251,253],ble_gap_chr_uuid16_device_nam:[251,253],ble_gap_chr_uuid16_periph_pref_conn_param:251,ble_gap_chr_uuid16_periph_priv_flag:251,ble_gap_chr_uuid16_reconnect_addr:251,ble_gap_conn_desc:252,ble_gap_conn_find:252,ble_gap_conn_fn:249,ble_gap_conn_mode_und:[249,252],ble_gap_disc_mode_gen:[249,252],ble_gap_ev:252,ble_gap_event_conn_upd:252,ble_gap_event_connect:252,ble_gap_event_disconnect:252,ble_gap_event_enc_chang:252,ble_gap_event_fn:[254,255],ble_gap_event_subscrib:252,ble_gap_svc_uuid16:[251,253],ble_gap_upd:74,ble_gap_update_param:14,ble_gatt:77,ble_gatt_access_ctxt:[251,276,278],ble_gatt_access_op_read_chr:[251,276,278],ble_gatt_access_op_write_chr:[251,276,278],ble_gatt_chr_def:[251,253,276,278],ble_gatt_chr_f_notifi:[276,278],ble_gatt_chr_f_read:[251,253,276,278],ble_gatt_chr_f_read_enc:[276,278],ble_gatt_chr_f_writ:[276,278],ble_gatt_chr_f_write_enc:[276,278],ble_gatt_register_fn:253,ble_gatt_svc_def:[251,253,276,278],ble_gatt_svc_type_primari:[251,253,276,278],ble_gattc:77,ble_gattc_proc_pool:74,ble_gatts_chr_upd:[276,278],ble_gatts_clt_cfg_pool:74,ble_gatts_find_chr:[276,278],ble_gatts_register_svc:253,ble_h:[14,15,16,17,18,20,21,24,27,77,254,255,276],ble_hci_ram_evt_hi_pool:74,ble_hci_ram_evt_lo_pool:74,ble_hci_uart_baud:247,ble_hs_:253,ble_hs_adv_field:[249,254],ble_hs_att_err:21,ble_hs_cfg:[27,254,255],ble_hs_conn_pool:74,ble_hs_eagain:21,ble_hs_ealreadi:21,ble_hs_eapp:21,ble_hs_eauthen:21,ble_hs_eauthor:21,ble_hs_ebaddata:21,ble_hs_ebusi:21,ble_hs_econtrol:21,ble_hs_edon:21,ble_hs_eencrypt:21,ble_hs_eencrypt_key_sz:21,ble_hs_einv:[14,21],ble_hs_emsgs:21,ble_hs_eno:21,ble_hs_enoaddr:21,ble_hs_enomem:21,ble_hs_enomem_evt:21,ble_hs_enotconn:21,ble_hs_enotsup:21,ble_hs_enotsync:21,ble_hs_eo:21,ble_hs_ereject:21,ble_hs_erol:21,ble_hs_err_sm_peer_bas:21,ble_hs_err_sm_us_bas:21,ble_hs_estore_cap:21,ble_hs_estore_fail:21,ble_hs_etimeout:21,ble_hs_etimeout_hci:21,ble_hs_eunknown:21,ble_hs_ev_tx_notif:88,ble_hs_event_tx_notifi:88,ble_hs_forev:[252,254,255],ble_hs_hci_cmd_send:277,ble_hs_hci_err:21,ble_hs_hci_ev_pool:74,ble_hs_id:24,ble_hs_id_gen_rnd:[24,254,255],ble_hs_id_set_rnd:[20,24,254,255],ble_hs_l2c_err:21,ble_hs_reset_fn:27,ble_hs_sm_peer_err:21,ble_hs_sm_us_err:21,ble_hs_sync_fn:27,ble_ibeacon_set_adv_data:255,ble_l2cap:77,ble_l2cap_chan_pool:74,ble_l2cap_sig_err_cmd_not_understood:21,ble_l2cap_sig_err_invalid_cid:21,ble_l2cap_sig_err_mtu_exceed:21,ble_l2cap_sig_proc_pool:74,ble_ll:[77,78],ble_ll_cfg_feat_le_encrypt:223,ble_ll_conn:77,ble_ll_prio:226,ble_lp_clock:25,ble_max_connect:[279,281],ble_mesh_dev_uuid:33,ble_mesh_pb_gatt:33,ble_own:[254,255],ble_own_addr_random:[254,255],ble_phi:77,ble_public_dev_addr:24,ble_rigado:48,ble_role_broadcast:281,ble_role_peripher:281,ble_sm_err_alreadi:21,ble_sm_err_authreq:21,ble_sm_err_cmd_not_supp:21,ble_sm_err_confirm_mismatch:21,ble_sm_err_cross_tran:21,ble_sm_err_dhkei:21,ble_sm_err_enc_key_sz:21,ble_sm_err_inv:21,ble_sm_err_numcmp:21,ble_sm_err_oob:21,ble_sm_err_pair_not_supp:21,ble_sm_err_passkei:21,ble_sm_err_rep:21,ble_sm_err_unspecifi:21,ble_sm_legaci:223,ble_store_config:14,ble_svc_gap_device_name_set:278,ble_tgt:[246,254,255],ble_uu:253,ble_uuid128_init:[276,278],ble_uuid128_t:[276,278],ble_uuid16:[251,253],ble_uuid16_declar:[276,278],ble_uuid:[276,278],ble_uuid_128_to_16:251,ble_uuid_u16:[276,278],ble_xtal_settle_tim:25,blecent:[7,62],blehci:[7,62],blehciproj:247,blehostd:67,blemesh:[22,33],blenano:54,bleprph:[7,14,22,62,67,223,241,248,249,250,251,252,253,276,277,278,279,292],bleprph_advertis:[249,252],bleprph_appear:251,bleprph_device_nam:[249,251],bleprph_le_phy_support:278,bleprph_log:[249,252,276,278],bleprph_oic:[7,62,283],bleprph_oic_sensor:279,bleprph_on_connect:249,bleprph_pref_conn_param:251,bleprph_print_conn_desc:252,bleprph_privacy_flag:251,bleprph_reconnect_addr:251,blesplit:[7,62],bletest:[7,62],bletini:[38,39,46,47,51,62,72],bletiny_chr_pool:74,bletiny_dsc_pool:74,bletiny_svc_pool:74,bletoh:90,bleuart:[7,62],bleuartx000:14,blink:[1,7,62,94,100,240,242,243,256,257,259,260,261,262,263,265,278,294],blink_nord:292,blink_rigado:48,blinki:[1,12,14,35,44,45,49,56,62,94,243,246,247,264,265,270,277,278,286,287,288,290,291,292,294],blinky_callout:258,blinky_sim:62,blksize:91,blksz:[74,288],blob:[21,184],block:[21,30,74,87,88,90,91,99,135,141,144,174,175,176,177,178,188,191,193,194,240,265,277,288],block_addr:91,block_siz:91,blocks_siz:91,blue:263,bluetooth:[1,9,21,23,24,25,28,30,33,90,223,241,248,249,254,255,257,277,294],bmd300eval:[49,54,261,278],bmd:[261,278],bmp280:14,bno055:[208,209,279,281,282],bno055_0:[208,280,282],bno055_acc_cfg_bw_125hz:282,bno055_acc_cfg_rng_16g:282,bno055_acc_unit_ms2:282,bno055_angrate_unit_dp:282,bno055_cfg:[209,282],bno055_cli:[280,281],bno055_config:[209,282],bno055_default_cfg:209,bno055_do_format_android:282,bno055_err:209,bno055_euler_unit_deg:282,bno055_get_chip_id:209,bno055_id:209,bno055_info:209,bno055_init:[208,209],bno055_ofb:[208,279,280,281],bno055_opr_mode_ndof:282,bno055_pwr_mode_norm:282,bno055_sensor_get_config:209,bno055_sensor_read:209,bno055_shel:280,bno055_shell_init:280,bno055_stat_sect:209,bno055_temp_unit_degc:282,board:[1,2,4,5,7,12,14,24,25,31,40,43,48,54,56,58,59,60,62,93,94,135,182,183,188,209,210,214,223,225,226,237,238,240,241,242,243,247,250,254,255,257,258,265,276,277,282,283,284,286,289,291,292,294],bodi:[129,282],bold:[237,244],bond:[23,28,30,31,250],bondabl:28,bone:[85,248,254,255,294],bookkeep:141,bool:[91,200],boot:[7,44,62,94,101,102,131,196,237,238,241,247,256,259,260,261,262,263,264,270,277,278,280,284,287,288,290],boot_boot_serial_test:7,boot_bootutil:223,boot_build_statu:129,boot_build_status_on:129,boot_clear_statu:129,boot_copy_area:129,boot_copy_imag:129,boot_erase_area:129,boot_fill_slot:129,boot_find_image_area_idx:129,boot_find_image_part:129,boot_find_image_slot:129,boot_go:129,boot_img_mag:129,boot_init_flash:129,boot_load:94,boot_mag:129,boot_move_area:129,boot_nrf52dk:277,boot_olimex:262,boot_read_image_head:129,boot_read_statu:129,boot_select_image_slot:129,boot_seri:[7,14,131],boot_serial_setup:7,boot_slot_addr:129,boot_slot_to_area_idx:129,boot_swap_area:129,boot_test:7,boot_vect_delete_main:129,boot_vect_delete_test:129,boot_vect_read_main:129,boot_vect_read_on:129,boot_vect_read_test:129,boot_write_statu:129,bootabl:[223,241,287,290],bootload:[1,12,44,48,94,97,102,131,192,196,237,241,243,257,258,277,278,279,281,289],bootutil:[7,14,102,129,131,256,259,260,261,262,263,264,270,277,278,280,287,288,290],bootutil_misc:[7,256,259,260,261,263,280,287,288,290],both:[6,9,11,14,15,21,23,28,30,40,56,58,59,60,63,90,92,94,99,129,130,132,135,174,180,188,191,200,206,223,225,226,236,256,258,264,269,270,273,278],bottl:[59,82],bottom:[12,94,98,100,250],bound:[90,94,153],boundari:[90,91,94],box:[12,292],bps:194,branch:[1,4,7,10,11,14,56,57,58,60,61,80,81,83,84,129,244,256,270,271,272],branchnam:10,brand:263,bread:278,breadboard:278,breakdown:223,breakpoint:[256,260],breviti:[223,237,288],brew:[3,4,7,11,37,56,59,61,82,84],brick:129,bridg:180,brief:[14,20,187,254,255,264],briefli:94,bring:[12,94,182,280,283,286],broad:294,broadca:[254,255],broadcast:[14,15,28,32,249,254,255],brows:[250,259,271],browser:244,bsd:102,bsp:[1,7,14,25,33,35,38,39,43,44,46,48,51,56,62,63,93,130,135,174,175,177,178,182,186,187,193,194,207,208,209,210,212,223,226,237,240,246,247,250,256,258,259,260,261,262,263,264,265,270,277,278,279,280,281,282,284,287,288,290,291,292,294],bsp_arduino_zero:256,bsp_arduino_zero_pro:[256,270],bsp_flash_dev:175,bsp_timer:193,bsppackag:94,bss:[14,49,94,223],bssnz_t:[276,278],bt_mesh_provis:14,btattach:247,btmesh_shel:14,btshell:[7,22,30,238,250],buad:67,buf:[130,136,154,155,156,157,161,162,164,165,169,172,200],buf_len:[90,130],buffer:[14,21,90,91,93,97,98,130,131,135,157,164,170,172,180,188,191,200,206,225,255,278],buffer_len:278,buffer_size_down:291,bug:[4,7,11,161,162,256,260,284,291,292],bui:278,build:[1,2,3,4,5,6,11,32,33,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,81,83,93,94,95,97,129,135,182,188,199,206,210,223,224,225,226,233,240,241,248,249,250,257,265,269,276,277,286,289,294],build_arduino_blinki:12,build_arduino_boot:12,build_numb:198,build_profil:[1,33,38,39,44,51,54,62,94,223,237,246,247,250,256,259,260,261,262,263,264,270,277,278,279,280,281,284,287,288,290],buildabl:7,builder:244,built:[1,4,7,8,9,14,22,34,35,39,40,43,44,56,58,59,60,61,62,64,82,83,84,90,129,191,206,223,233,237,238,244,246,247,250,254,255,256,257,258,259,260,261,262,263,264,269,270,276,277,278,279,280,284,287,288,290],bundl:[14,56,102,153],burn:[14,254,255],bus:[2,188],buse:[135,182],busi:[21,91,92,243,277],button1_pin:[240,265],button:[2,4,10,12,14,99,240,256,259,265],bytes_read:[154,161,164,169,172],bytyp:212,c_ev:85,c_evq:85,c_tick:85,cabl:[238,240,241,243,247,256,257,259,260,261,262,264,265,270,278,284,286,287,289,290],cach:[59,82,135,174,176,182],cache_large_file_test:269,calcul:[21,30,49,91,101,129,141],calendar:9,call:[6,7,9,11,20,22,24,27,37,62,85,86,87,88,89,90,91,92,93,94,98,99,100,101,102,129,130,131,132,133,135,136,139,141,142,143,144,146,147,151,159,162,166,169,172,173,176,177,179,180,181,184,187,188,190,191,192,193,194,195,197,200,206,207,208,209,211,212,213,215,217,218,221,224,226,229,230,231,232,233,234,235,238,240,243,245,246,249,250,251,252,253,254,255,256,258,264,265,269,271,277,278,279,280,284,289],callback:[21,27,87,88,90,91,131,141,146,151,187,191,193,194,207,208,209,211,213,226,240,249,251,253,254,255,258,265,277,284],caller:[90,91,131,141,193,199,200,216,220],callout:[88,93,98,212,258,284],callout_l:[240,265],callout_reset:130,came:247,can:[1,2,3,4,5,6,7,8,9,11,12,14,20,21,22,23,24,25,28,31,32,34,35,36,43,46,51,56,58,59,60,61,62,63,64,65,67,73,77,81,82,83,84,85,86,87,88,90,91,92,93,94,95,97,98,99,100,102,129,130,131,132,135,136,137,138,141,142,144,146,147,151,152,153,162,166,167,170,172,174,175,177,180,181,182,187,189,190,191,193,194,195,196,200,206,207,208,209,210,211,212,215,216,220,221,222,223,224,225,226,229,230,232,233,236,237,238,240,241,242,243,244,246,247,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,269,270,271,272,276,277,278,279,280,281,282,284,286,287,288,290,291,292,294],cancel:[21,28,85],candid:271,cannot:[4,14,20,21,72,87,89,92,93,99,129,152,170,180,183,191,193,226,238,256,270,271,272,273],cap:14,capabl:[14,21,23,28,30,96,131,135,206,223,243,258,291],capac:21,captian:82,captur:180,carbon:276,card:[137,152],care:[14,90,93,100,164,172,254,255,271,272,276],carri:90,cascad:[1,62],cast:[90,91,251],cat:[14,81,277,278],catastroph:27,categor:94,categori:[14,97],caus:[91,93,99,154,161,162,167,170,180,188,192,225,228,241,243,278,291],caveat:[14,129],cb_arg:[151,193,249,253,254,255],cb_func:193,cbmem:[7,206,228],cbmem_buf:206,cbmem_entry_hdr:228,cbmem_init:206,cbmem_read:228,cbmem_test_case_1_walk:228,cbor:[133,134],cborattr:7,cccd:28,ccm:23,cdc:259,cell:23,cellar:[4,6,11,37,59,61,82,84],central:[14,21,31,248,249,250,252],certain:[1,22,90,91,93,94,135,247,272],certainli:[14,278],cess_op_:251,cfg:[71,172,173,188,191,193,194,208,209,260],cflag:[1,14,51,62,94],cgi:102,ch_commit:130,ch_export:130,ch_get:130,ch_get_handler_t:130,ch_name:130,ch_set:130,chain:[90,91,200],challeng:267,chanc:[93,100],chang:[1,4,6,7,10,11,14,20,21,22,23,25,29,31,47,50,51,53,58,62,63,81,90,94,95,129,130,180,187,191,207,208,215,223,225,226,237,238,240,242,243,244,247,250,252,254,255,256,260,265,276,277,279,280,281,284,286,291,292],channel:[14,21,22,30,135,278],channel_map:28,chapter:[2,22,97,133],charact:[131,140,157,160,174,180,194,198,199,200,201,202,203,204,215,220,226,253,270,277,284,291],character:25,characteri:[251,253],characterist:[9,17,18,22,28,29,129,250,253,276,278],check:[4,6,8,11,14,21,23,56,57,80,85,88,91,100,101,130,180,200,209,223,225,226,237,241,246,247,248,259,262,264,269,272,280,282,289],checkbox:60,checkin:[78,98,100],checkout:[10,81,83,257],checksum:[141,143],child:[91,155,156,157,162,165,180],children:180,chip:[4,97,135,136,182,187,191,192,207,209,256,257,259,260,263,270,271,280],chip_id:280,chipset:[135,182,256,270],choic:[2,10,174,247,280],choos:[6,7,10,14,90,100,102,223,224,238,243,246,249,258,259,261,276,278],chose:224,chosen:[90,94,129,152,180,278],chr:[251,276,278],chr_access:251,chr_val_handl:[276,278],chunk:[14,90],ci40:54,cid:250,circuit:188,circular:[14,206,225,226],circularli:272,clang:6,clarif:10,clarifi:135,clariti:137,classif:21,clean:[1,11,34,40,51,58,59,60,64,82,160,178,243,264],cleanli:226,clear:[73,85,90,91,100,129,180],clearli:[8,21],cli:131,click:[2,4,10,12,244,250,254,255,256,259,260,262,290],client:[12,14,18,19,21,22,28,32,153,181,210,254,276],clk:191,clobber:167,clock:[21,26,87,192,256,260,280],clock_freq:87,clone:[10,11,46,51,56,59,82],close:[2,60,135,153,154,155,156,157,158,161,162,164,165,169,170,171,172,173,194,208,256,259,260,262,263,282],closest:193,clue:14,cmake:1,cmd:[56,62,94,185,277,280],cmd_len:277,cmd_pkt:277,cmd_queue:131,cmd_read_co2:277,cmp:277,cmsi:[2,7,14,49,256,259,260,261,262,263,284],cmsis_nvic:[259,260,261,262,263,284],cn4:237,cnt:[74,131,177,178,191,288],co2:[276,277],co2_evq:276,co2_read_ev:276,co2_sns_str:276,co2_sns_typ:276,co2_sns_val:276,co2_stack:276,co2_stack_s:276,co2_task:276,co2_task_handl:276,co2_task_prio:276,coap:[134,210,213,279,283],coars:21,coc:28,code:[1,5,7,9,10,11,13,19,22,25,27,28,30,56,86,90,91,93,96,97,98,101,102,129,130,131,133,135,137,140,153,154,155,156,157,158,160,161,162,164,165,167,169,170,171,172,173,177,178,179,180,181,182,183,187,188,191,193,194,196,206,208,209,210,223,226,228,229,230,232,233,234,238,240,243,248,249,251,252,253,256,257,258,264,265,268,270,271,277,278,279,282,283,284,286,288,289,294],codebas:[256,270],coded_interval_max:28,coded_interval_min:28,coded_lat:28,coded_max_conn_event_len:28,coded_min_conn_event_len:28,coded_scan_interv:28,coded_scan_window:28,coded_timeout:28,codepag:152,coding_standard:7,coexist:129,collect:[1,7,44,56,62,90,91,133,141,181,200,223,237,271],collis:21,colon:67,color:242,column:20,com11:8,com1:67,com3:[8,258,270,280,287,290],com6:8,com:[8,10,11,12,34,56,58,59,60,64,81,82,83,102,184,237,247,258,270,271,273,280,287,288,290],combin:[1,21,23,27,44,62,93,94,188,246,254,255,271,272],combo:223,come:[3,22,31,56,62,94,102,131,135,206,256,262,263,270,277,278,290],comm:[237,257],comma:[52,67],comman:221,command:[1,2,4,7,8,11,21,31,35,36,37,38,39,41,42,43,45,46,47,48,49,50,52,53,54,55,58,59,60,61,62,68,69,71,72,73,76,77,79,81,82,83,84,94,97,129,132,134,137,139,188,196,197,206,210,216,220,221,222,223,224,225,226,233,237,239,241,242,243,246,254,255,256,258,259,260,261,262,263,264,267,269,270,271,273,274,278,279,280,281,282,284,287,290,291,292],comment:[3,10,14,94,236,294],commerci:277,commit:[10,11,130,278],common:[56,62,88,90,97,99,100,135,136,182,187,209,210,223,253,260],commonli:[99,191,254],commun:[9,14,22,27,28,32,67,79,131,133,137,188,191,207,208,209,237,240,241,242,243,247,249,252,257,264,265,270,271,278,280,284,287,288,289,290,294],compani:30,compar:[10,21,90,161,243,259,260,261,264,274,278],comparison:[21,23,90,101],compat:[4,14,22,56,129,131,136,215,216,223,256,264,270,277,280,282,284,291],compens:101,compil:[1,4,5,6,7,8,11,21,35,48,54,56,59,62,82,90,93,94,97,102,135,215,224,233,236,237,238,240,246,256,259,260,261,262,263,264,265,270,277,278,279,280,284,287,288,290],complaint:22,complementari:32,complet:[9,12,21,23,28,30,31,34,56,60,64,94,96,97,100,129,131,141,155,156,157,162,165,180,182,188,191,194,206,223,231,235,236,240,243,247,249,254,255,260,265,271,277,278,279,282,283,284,287,288,290],completion_cb:131,complex:[9,32,93,94,135,182,243,245],compli:22,complianc:[277,278],compliant:22,complic:[56,93,223],compon:[1,7,12,19,40,49,56,58,59,60,62,86,94,97,130,135,182,188,191,223,224,238,240,241,247,254,255,257,265,270,277,286,289],compos:[40,58,59,60,236],composit:200,comprehens:236,compress:[56,82,174,254],compris:[7,129,174,175],comput:[3,4,6,8,12,14,32,57,59,60,80,82,131,143,152,241,243,246,247,256,257,259,260,261,262,263,279,281,286,287,289,290],concept:[12,23,90,93,161,215,226,241,243,245,246,248,256,257,270,286,289],conceptu:14,concern:[3,90,180],concis:133,conclud:[254,255,278],concurr:[1,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,85,89,248,249],condit:[4,21,129,180,188,208,215,225,228,269,277,278],condition:[56,208,225,226,280],conduct:[129,133],conf:264,conf_bytes_from_str:130,conf_commit:130,conf_commit_handler_t:130,conf_export_func_t:130,conf_export_handler_t:130,conf_export_persist:130,conf_export_show:130,conf_export_tgt:130,conf_export_tgt_t:130,conf_fcb_dst:130,conf_fcb_src:130,conf_file_dst:130,conf_file_src:130,conf_get_handler_t:130,conf_get_valu:130,conf_handl:130,conf_init:[130,234],conf_int8:130,conf_load:[130,278],conf_regist:[130,228],conf_sav:130,conf_save_on:130,conf_save_tre:130,conf_set_handler_t:130,conf_set_valu:130,conf_store_init:130,conf_str_from_byt:130,conf_str_from_bytes_len:130,conf_str_from_valu:130,conf_typ:130,conf_value_from_str:130,conf_value_set:130,confidenti:23,config:[1,7,14,33,51,62,63,65,79,81,82,83,132,136,152,154,158,161,164,171,193,225,226,234,238,246,277,278,280],config_:208,config__sensor:208,config_bno055_sensor:[208,282],config_cli:130,config_fcb:[130,225],config_fcb_flash_area:[225,226],config_lis2dh12_sensor:208,config_newtmgr:[51,238],config_nff:[130,153,225],config_pkg_init:226,config_test_al:234,config_test_handl:228,config_test_insert:[228,229],configur:[6,7,9,14,20,21,26,27,32,33,51,56,58,59,60,62,63,87,91,93,94,95,97,129,131,133,135,153,174,176,180,182,183,187,188,191,193,194,195,210,211,213,223,227,240,243,246,249,253,256,259,262,263,264,265,267,273,277,278,280,283,284,286,288,291,292],configuraton:152,confirm:[8,14,21,28,72,129,223,241,264,287,290],confirmbe9699809a049:72,conflict:[62,225,272],confluenc:10,confus:[271,278],congratul:[7,237,250,276,277,278],conifgur:130,conjunct:[32,211],conn:[14,28,29,31,65,66,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,241,252,254,255,287,288,290],conn_handl:[21,250,251,252,276,278],conn_interval_max:30,conn_interval_min:30,conn_itvl:[31,250],conn_lat:[31,250],conn_mod:252,conn_profil:[66,67,68,69,70,71,72,73,74,75,76,77,78],conn_upd:252,connect:[4,7,8,9,12,16,21,22,23,25,27,29,30,32,39,43,44,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,97,131,133,134,135,182,187,188,191,192,223,237,240,248,249,250,251,252,254,255,257,265,276,277,286,289],connect_don:270,connectable_mod:249,connection_profil:72,connectionless:28,connector:[4,238,247,259,262,264,290],connextra:14,connintervalmax:30,connintervalmin:30,connstr:[14,67,241,287,288,290],conntyp:14,consecut:98,consequ:[21,129,223],conserv:[9,90,97],consid:[8,22,63,90,93,99,143,188,228,253,271],consider:228,consist:[1,22,32,62,99,100,129,130,133,135,163,180,191,223,225,226,233,253],consol:[1,7,8,12,14,27,56,62,97,102,130,138,155,156,157,162,165,172,194,206,219,226,240,246,247,250,254,255,257,265,269,277,278,288],console_append_char_cb:131,console_blocking_mod:131,console_compat:131,console_echo:131,console_handle_char:131,console_init:131,console_input:131,console_is_init:131,console_is_midlin:131,console_max_input_len:131,console_non_blocking_mod:131,console_out:131,console_pkg_init:226,console_printf:[14,21,27,131,154,155,156,157,161,162,164,165,169,172,228,276,277,278,284],console_read:131,console_rtt:[131,277,284,291],console_rx_cb:131,console_set_completion_cb:131,console_set_queu:131,console_tick:131,console_uart:[131,277,284,291],console_uart_baud:131,console_uart_dev:131,console_uart_flow_control:131,console_uart_tx_buf_s:131,console_writ:[131,228],consolid:180,consortium:133,constant:[14,191],constantli:[249,270,278,294],constitu:[44,180],constrain:[9,56,134,267],constraint:256,construct:[11,14,90,99],consult:[153,182],consum:[88,99,194],consumpt:23,contact:[95,96,237],contain:[1,3,7,11,14,30,32,35,51,56,62,85,90,91,94,96,97,99,100,101,129,130,131,133,135,138,141,154,157,158,161,164,167,168,169,171,177,180,183,187,194,196,198,199,200,211,219,223,224,226,228,231,233,236,246,247,249,251,253,254,255,264,269,271,272,280,294],content:[12,14,50,62,81,90,94,129,141,142,143,155,156,157,162,165,172,180,193,200,223,234,237,243,249,253,254,255,262,264,269,272,273,280,282],context:[14,56,78,86,87,88,93,100,131,135,140,191,193,215,217,226,238,240,252,258,265],contigu:[90,129,141,180],continu:[6,14,94,99,130,180,215,223,238,240,242,243,244,247,256,257,262,265,270,278,281,282,283,284,286,288,289,291],contrast:226,contribut:[13,23,58,59,60,81,82,83,245,269,278,286],contributor:[182,277,278],control:[8,9,14,19,20,21,22,23,24,26,27,30,32,56,67,97,131,135,141,161,174,182,184,191,194,206,209,215,226,246,260,262,271,272,277,283],contruct:250,convei:90,conveni:[12,21,90,130,172,180,199,228],convent:[264,269,280,284],convers:[101,102,135,251],convert:[1,8,21,72,85,87,90,101,130,135,175,177,178,180,191,200,226,251,253,278],cooper:14,coordin:[279,281],copi:[1,4,46,50,51,63,81,83,90,95,96,129,130,141,180,200,208,223,224,241,249,252,256,277,278,282,284,291,292],copy_don:129,copyright:[4,256,262,277,278,284,291,292],core:[1,6,7,12,22,30,33,38,39,44,49,51,52,54,56,62,63,72,89,94,96,98,133,135,153,182,184,223,224,227,237,243,246,247,248,249,250,256,257,258,259,260,261,262,263,264,269,270,271,272,277,278,279,280,281,284,286,287,288,289,290,291,292,294],core_cminstr:260,core_cmx:14,core_o:[14,131],core_path:62,coreconvert:72,coredownload:72,coredump:[7,183],coredump_flash_area:226,coreeras:72,corelist:72,corner:262,corp:[2,256],correct:[1,2,4,42,91,94,101,129,174,223,226,243,247,260,261,262,264,269,278,280],correctli:[2,14,90,242,247,256,260,269,277,279],correspo:253,correspond:[12,21,87,90,91,94,129,163,176,180,181,206,207,249,251,254,255,272,278],corrupt:[91,168,180],corrupt_block_test:269,corrupt_scratch_test:269,cortex:[4,102,259,261,264,270,278,284],cortex_m0:62,cortex_m4:[62,94,259,260,261,262,263,264,284],cortex_m:256,cost:9,could:[14,21,90,99,180,198,251],couldn:[228,249],count:[14,56,82,90,99,100,129,130,180,227],counter:[86,90,224,264],countri:22,coupl:[1,14,262,278],cours:[14,276],cover:[8,62,135,180,226,227,236,243,253],cpha:191,cpol:191,cpptool:12,cpu:[14,86,94,96,135,182,183,190,243,256,260],cputim:[14,25,87,280,284],cputime_geq:87,cputime_gt:87,cputime_leq:87,cputime_lt:87,crank:278,crash:[65,79,81,82,83,98,129,132,192,194,238],crash_test:[7,132,238],crash_test_newtmgr:238,crc16:180,crc:[7,131,137,277],creat:[1,2,3,4,5,6,8,10,11,12,14,23,28,33,35,40,42,44,45,46,47,48,51,56,58,59,60,62,63,67,72,81,82,83,88,91,92,93,96,98,99,100,102,131,135,144,158,160,161,162,167,170,171,173,174,177,180,206,207,209,210,212,213,217,223,224,225,226,233,235,240,242,243,248,253,257,258,271,273,276,282,283,286,289,294],create_arduino_blinki:12,create_mbuf_pool:90,create_path:160,creation:[48,135,237,264,278],creator:[207,208,209,210,212,279,280,282,284],credenti:273,criteria:21,critic:3,cross:[5,6,7,9,97],crt0:49,crti:49,crtn:49,crw:8,crypto:[7,14,256,259,261,263,270,287,288,290],crypto_mbedtl:223,cryptograph:[23,129],cryptographi:23,crystal:26,csrk:28,css:244,cssv6:30,csw:[78,287,290],ctlr_name:67,ctlr_path:67,ctrl:[12,246,280,291],ctxt:[251,252,276,278],cur_ind:252,cur_notifi:252,curi:[250,252],curiou:[3,244],curl:[11,59],curn:[250,252],curr:270,currantlab:[82,83],current:[11,14,25,28,32,40,41,42,45,46,47,51,52,58,59,60,61,72,82,83,84,85,86,87,90,91,92,93,94,98,99,100,101,129,130,131,135,136,137,138,140,141,152,153,158,159,160,161,171,173,180,187,188,191,193,196,207,215,224,225,228,231,235,237,238,241,243,254,256,257,260,262,264,267,271,272,274,280,284],custom:[14,24,72,91,163,181,183,206,226],cvs:[256,262,284,291,292],cwd:12,cycl:[20,22,32,180],cylind:278,daemon:[2,247],dai:[101,215],dap:[2,256,259,263],darwin10:[256,284,291,292],darwin:6,data:[9,14,15,21,22,28,29,31,32,44,49,65,70,81,82,83,85,87,90,91,93,94,97,100,129,130,131,133,134,142,143,144,145,146,147,151,154,158,160,161,163,164,169,170,171,172,173,176,179,189,191,194,205,208,210,213,214,218,220,223,226,227,243,251,252,254,255,276,277,286,292,294],data_len:277,data_mod:191,data_ord:191,databas:29,databit:194,databuf:[90,284],datagram:218,datalen:28,datasheet:94,date:[11,69,152,264,269,277],datetim:[7,65,79,81,82,83,131,132,134,238,269],datetime_pars:269,daunt:249,daylight:101,dbm:[22,28,30],deactiv:223,deal:[90,93,94,135],deb:[58,61,81,84],debian:[4,6],debug:[1,2,4,5,6,7,14,40,44,48,51,56,58,59,60,63,95,209,210,225,237,241,246,247,256,258,259,260,261,262,263,270,277,278,279,280,281,284,287,288,290,291,292],debug_arduino_blinki:12,debug_arduinoblinki:12,debugg:[5,14,39,40,56,58,59,60,62,192,256,259,260,262,263,264,290,291,292],dec:[49,223],decemb:23,decid:[56,86,97,243],decim:[23,188],decis:188,declar:[12,92,100,130,184,193,208,220,230,232,240,265,269,271,282,284],decod:[130,215,218],decompress:254,dedic:[88,94,97,215,223,238,240,251,265,291,292],deep:183,deeper:[90,237,264,278],def:[7,208,225,226,284],defaultdevic:83,defin:[1,6,14,20,21,22,25,28,29,30,32,35,43,44,48,51,54,62,85,87,88,90,91,93,98,100,129,130,132,134,135,177,178,183,184,186,187,191,206,207,208,210,211,212,213,214,215,221,223,225,226,228,229,231,233,237,240,243,245,247,249,251,257,264,265,269,271,272,276,277,278,279,280,283,284,287,289,290,291],defininig:32,defininit:199,definit:[1,12,30,36,38,43,51,62,85,90,91,94,129,215,224,233,247,251,253,271,276],defint:[90,225],del:28,delai:[27,87,101,193,242,243,264],deleg:223,delet:[1,6,10,12,28,36,40,46,50,51,56,58,59,60,62,63,154,170,174,180,242,267,282,284],delimit:[51,130],deliv:[85,152],delta:[56,82,237],demo:276,demonstr:[21,27,90,160,167,172,264,280,284],denable_trac:14,denot:90,dep:[1,51,56,62,63,94,131,136,137,152,153,181,182,206,208,215,224,226,238,240,246,258,265,269,277,278,279,284],depend:[1,4,6,8,14,21,23,25,28,40,42,50,51,53,56,58,59,60,63,67,85,90,96,102,129,131,152,153,161,180,187,188,191,201,206,208,215,224,226,228,231,233,235,243,246,256,269,270,271,274,277,278,280,287,289,290],depict:182,deploi:[44,223,258],deploy:32,deprec:226,depth:[4,96],dequeu:[88,240,265],deriv:[21,180],desc:[177,178,252],descend:[129,170],describ:[1,2,7,10,11,12,25,29,34,64,91,93,94,95,97,100,129,130,133,141,147,152,174,180,187,189,191,192,200,205,207,208,209,215,223,225,226,233,237,238,244,246,248,253,254,260,263,264,271,277,278,279,280,282,286],descript:[1,7,10,14,20,28,29,31,56,62,90,94,95,96,130,137,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,167,168,169,170,171,172,173,177,178,198,199,201,202,203,204,205,206,207,208,211,212,216,217,218,219,220,221,222,224,225,226,228,229,230,231,232,237,264,267,269,271,272,277,278,292],descriptor:[17,18,28,29,62,161,162,175,177,178,180,251],design:[22,23,24,56,97,98,101,129,174,180,215,223,235,243,253,269],desir:[87,90,99,193,208,269,274],desktop:10,destin:[4,14,32,90,157,164,167,172,180,188,199,206],detail:[1,10,12,14,22,23,30,56,93,100,129,130,153,174,188,191,207,208,209,211,212,223,237,238,246,249,251,253,254,255,256,264,271,284,291,292],detect:[21,56,91,141,153,174,177,178,192,218,225,226,247],determin:[21,88,90,91,100,129,141,180,193,215,223,226,236,249,252,271,282],determinist:14,dev:[1,2,3,4,7,8,10,11,12,14,49,62,67,83,131,135,136,208,209,226,236,237,241,242,246,247,250,256,258,259,260,261,262,263,264,270,271,272,273,277,278,279,280,282,284,287,288,290,294],dev_found:247,develop:[3,5,6,7,8,9,13,14,21,56,60,62,83,90,91,93,95,96,97,100,133,135,210,213,215,226,236,241,243,247,248,251,254,256,257,259,262,263,271,272,277,278,283,286,290,291,292,294],devic:[3,4,8,9,15,20,21,22,23,26,29,30,32,33,44,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,97,129,131,133,134,135,136,137,153,175,182,184,187,188,191,210,211,212,213,223,224,225,226,227,238,245,246,248,249,250,251,253,254,255,256,258,259,260,261,262,263,264,270,276,278,283,284,287,288,289,290,291,292,294],device_id:184,deviceaddr:24,deviceaddrtyp:24,dflt:200,dhcp:270,dhkei:21,diag:194,diagram:[133,243,260,262],dialog:[12,60,292],dictat:[11,63],did:[14,223],diff:277,differ:[4,6,7,8,11,12,21,25,28,31,46,56,58,81,85,90,92,93,94,95,96,97,100,130,135,174,182,187,194,208,223,224,225,226,230,238,240,241,243,246,247,258,259,260,262,265,267,269,270,271,272,274,277,280,282,284,290,292],differenti:[90,271],difficult:[22,96,129,225],dig:[7,248],digit:[23,135,187,278],dioxid:276,dir:[28,137,153,155,156,157,162,163,165],direct:[10,21,28,188,215,224,272],direct_addr:[254,255],directli:[7,8,11,15,19,37,153,193,194,206,223,226,254,256,267,269,270,279,282],directori:[1,4,6,7,8,10,11,12,14,35,36,38,42,44,46,51,56,58,60,61,81,83,84,89,94,95,96,135,137,155,156,157,160,161,162,165,166,167,168,170,172,173,190,192,233,237,242,246,247,256,257,259,260,261,262,263,269,270,271,272,277,278,279,280,284,286,287,289,290,292,294],dirent:[137,155,156,157,162,163,165],dirnam:[155,156,157,162,165],dirti:237,disabl:[6,14,21,23,25,31,86,87,131,152,180,187,191,194,206,208,209,215,223,225,226,238,252,267,270,278,279,280,281,284,291],disable_auto_eras:136,disallow:[21,174],disbl:215,disc_mod:[252,277],discard:[180,270],disciplin:247,disclaim:[7,11,56,246],disconnec:28,disconnect:[28,252],discontigu:129,discov:[14,23,28,29,247],discover:[14,28,30,134,213,249,283],discoverable_mod:249,discoveri:[14,29,133,135,137,247,252,257],discret:[174,175],discuss:[10,90,95,208,223,249,280],disjoint:21,disk:[7,129,141,153,154,168,170,174,175],disk_nam:153,disk_op:137,disk_regist:[137,153],dispatch:[93,226,240,265],displai:[1,6,14,23,28,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,62,63,65,67,70,72,73,74,77,78,81,82,83,130,135,182,226,247,262,264,279,281,286,287,290],displayonli:28,displayyesno:28,dist:[58,81],distanc:[22,224],distinct:23,distinguish:14,distribut:[1,4,6,21,22,28,56,102,129,271,277,278],distro:6,div0:68,dive:90,divid:[19,21,68,130,132,174,175,223],dle:28,dll:[259,261,264,278],dm00063382:237,dma:135,dndebug:51,dnrf52:94,do_task:224,doc:[4,6,7,10,24,34,64,244,256,257,260],docker:[3,7,256,294],dockertest:2,document:[1,4,8,12,15,19,21,24,26,60,63,65,94,98,102,138,152,153,163,181,182,184,223,233,237,241,243,248,251,253,254,255,256,259,261,269,270,271,280,284,287,288,291,292],doe:[7,14,21,23,36,51,62,67,72,88,90,91,93,94,95,100,101,129,130,131,133,135,141,158,162,170,171,174,175,177,180,188,191,196,206,208,209,211,221,224,225,226,238,240,241,243,246,249,256,259,260,261,263,264,265,267,273,284,289],doesn:[8,14,21,33,98,129,137,158,170,171,223,228,242,243,246,247,249],doing:[14,89,101,135,243,251,258],domain:2,don:[1,10,14,32,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,88,90,130,138,141,164,172,237,251,253,254,255,271,277,278],done:[6,7,8,14,24,26,56,82,92,93,94,101,129,131,141,142,161,162,176,195,196,212,229,230,232,237,238,241,243,247,253,254,255,256,259,260,261,264,270,278,284,291,292],dont:291,doorbel:56,dop:153,doubl:[2,200,262],doubli:180,doubt:[14,253],down:[1,12,62,81,83,187,223,238,260,262,290],downgrad:[6,7],download:[1,2,4,7,10,12,14,30,40,42,43,56,59,60,61,71,72,82,83,84,153,196,244,246,247,256,259,260,261,262,263,269,270,273,284,286,287,288,290,291,292],doxygen:[4,7,89,256,260],doxygengroup:89,dpidr:263,dpkg:[58,61,81,84],drag:21,drain:25,draw:25,drive:[9,14,62,101,135,188],driver:[7,56,136,137,153,182,186,187,189,191,193,194,208,210,212,224,246,256,259,260,261,262,263,270,280,284,290,291],drop:[12,14,27,180,194,260,262,290],dsc:251,dsize:90,dst:[14,46,51,71,90,172,185,199],dsym:[56,62],dtest:51,due:[14,21,91,129,136,141,152,192,256,260,262],dummi:180,dump:[14,130,291],dumpreg:280,duplex:22,duplic:[28,90],durat:[14,20,28,31,101,251,280],duration_m:[254,255],dure:[14,21,23,72,86,94,98,100,129,131,162,180,197,208,223,226,233,243,246,251,258,279,282],duti:[22,32],dwarf:62,dylib:4,dynam:[89,91],e407:[262,290],e407_:262,e407_devboard:[54,262,290],e407_devboard_download:262,e407_sch:290,e761d2af:[276,278],e_gatt:253,eabi:[4,7,12,94,102,256,284,291,292],each:[1,2,10,11,12,14,20,21,22,23,24,29,33,44,49,50,51,62,63,65,67,74,78,88,90,91,93,94,99,101,129,131,135,155,156,157,162,163,165,167,174,175,176,180,182,187,206,207,209,210,211,212,213,215,219,220,223,224,226,238,240,243,251,252,253,254,255,256,265,269,271,280,282,283,284,294],ead:153,eager:3,earlier:[10,31,58,59,60,81,82,83,130,170,251,254,255,277,278,291],eas:136,easi:[1,2,3,8,9,135,182,188,224,225,228,244,259,278,279],easier:[14,25,94,277],easili:[9,172,210,226,284],east:101,eavesdropp:20,ecdsa256:129,ecdsa:129,echo:[12,14,61,65,79,81,82,83,84,131,132,134,238,270,287,288,290],echocommand:12,eclips:12,ectabl:[254,255],edbg:[2,256],eddyston:[28,257],eddystone_url:[28,30],edg:187,edit:[7,95,152,237,242,264,267,271,282],editign:244,editor:[60,62,237,242,260],ediv:28,edr:[21,30,247],edu:[259,291],ee02:264,eeprom:136,effect:[99,101,130,153,174,175,278],effici:[14,22,32,90,91,180,256],effort:278,eid:254,eight:[133,169],einval:87,eir:30,eir_len:247,either:[1,4,6,8,11,14,22,28,30,31,58,60,62,81,85,86,88,90,91,100,130,131,132,138,141,167,187,188,191,192,223,226,228,231,232,238,254,255,264,277,278,286],elaps:[21,87,101],electron:294,element:[40,54,56,58,59,60,90,91,100,129,130,140,141,142,143,146,148,149,180,200,215,243],elev:92,elf:[7,12,35,39,49,56,62,72,223,237,238,246,247,250,256,258,259,260,261,262,263,264,269,270,277,278,280,284,287,288,290,291,292],elfifi:72,elicit:223,els:[24,86,98,129,155,156,157,162,165,180,209,223,276,277,278,291],elsewher:[248,251,271],emac:277,email:[3,236,294],emb:136,embed:[1,3,4,12,14,40,56,58,59,60,102,129,174,191,236,237,256,262,284,291,292],emit:[56,62],emploi:22,empti:[51,90,100,141,168,180,226,231,245,253,269],emptiv:9,emul:[264,270,282],enabl:[1,8,9,25,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,63,74,77,78,79,88,94,130,131,132,133,135,136,152,182,187,191,195,206,208,209,210,212,213,214,220,225,226,237,240,241,246,249,252,257,265,268,275,276,277,278,282,286,289,291,292,294],enc:[199,201,202,204],enc_chang:252,encapsul:22,encod:[7,52,130,131,133,134,201,202,203,204,213,215,219,264,269,279,283,284],encoding_cborattr:223,encoding_tinycbor:223,encompass:[15,21],encount:[7,14,21,58,90,130,151,180,243],encourag:135,encrypt:[21,23,28,31,174,250,252],encrypt_connect:21,end:[9,21,29,31,56,90,129,141,159,169,171,180,188,205,226,235,245,246,264,277],endian:[24,62,90,129,191,264],endif:[220,224,226,234,235,258,269,277,278,284],energi:[9,22,23,90,257,294],english:129,enjoi:278,enough:[56,90,97,101,129,157,196,199],enqueu:[90,193],ensur:[11,12,22,60,90,94,98,101,102,157,182,188,223,224,225,226,238,240,241,243,247,251,257,265,270,271,272,280,283,286,289],entail:223,enter:[12,23,48,94,215,221,222,224,243,256,258,260,280,284],entir:[2,14,90,91,94,129,174,175,180,243,253,277],entireti:172,entiti:[44,248],entri:[14,21,23,73,130,141,142,143,146,149,151,155,156,157,162,165,172,174,175,180,205,209,215,220,223,253,281],enumer:[129,184,192,207],environ:[3,4,9,12,14,56,59,60,62,83,97,102,135,191,235,247,288],eof:[58,81],ephemer:254,epoch:101,equal:[14,30,73,90,180,206,225,226,228],equat:30,equival:[47,62,136,161,182,278,294],eras:[14,72,129,136,137,141,150,174,175,178,180,185,256,260,261,262,264,278],erase_sector:262,err:[98,160,205,209,218,219,224,276,278],error:[1,2,4,6,7,21,22,27,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,81,83,87,90,92,93,94,98,99,130,136,137,154,155,156,157,158,160,161,162,164,165,167,168,169,170,171,172,173,174,177,178,179,183,187,188,191,193,194,209,223,226,249,251,252,253,256,259,260,262,263,264,269,270,272,276,277,278,279,282,284,290],error_rsp_rx:[77,238],error_rsp_tx:[77,238],error_stat:224,escap:[270,277,284,291],especi:[14,101],essenti:[44,62,226,243],establish:[21,28,79,238,240,249,250,252,259,261,264,265,278],estim:90,etc:[1,14,22,25,27,37,44,58,81,90,91,93,96,97,129,133,135,182,183,194,198,243,245,252,278],ethernet:[135,182],etyp:278,eui:264,eul:280,euler:280,ev_arg:[85,88,98,131],ev_cb:[85,88,90,131,240,265],ev_queu:88,eval:[261,278],evalu:[12,87,101,225,226,261,264,271,278],evalut:101,even:[4,10,14,87,90,97,129,152,180,194,200,212,223,276,278,282],event:[14,21,25,26,28,85,90,93,98,100,131,135,206,212,215,217,224,226,238,243,247,249,250,254,255,266,276,278,282,284,294],event_q:278,event_queu:131,eventq:[90,276,278],eventq_exampl:[240,265],eventu:[4,100,101,180,277],ever:[90,91,129,141],everi:[1,14,33,62,98,99,100,135,151,180,191,252,254,256,258,272,284],everyon:[10,243],everyth:[1,94,98,130,223,243,269,270,277],evq:[85,88,90,217],evq_own:88,evq_task:88,exact:[97,129,187,193,224],exactli:[90,94,99,158,171,226],examin:[193,249,251,288],exampl:[1,2,3,6,7,9,12,14,23,24,25,26,31,32,56,58,59,60,61,62,63,65,81,83,84,86,90,91,92,94,95,97,98,99,100,101,102,129,131,134,153,174,175,181,184,187,188,189,206,208,209,210,211,215,220,223,224,236,237,238,243,245,247,248,252,256,258,260,264,269,270,271,272,273,279,280,281,282,283,284,287,288,290,291,292,294],example1:90,example2:90,exce:[180,216,220,291],exceed:21,except:[7,52,88,129,224,249,254,255,277,278],excerpt:[131,207,208,209,220,225,226,251,253,282],exchang:[15,22,23,28,29],excit:[7,237,246],exclud:[52,129,223,280],exclus:[23,92,99,207],exe:[12,60,61,83,84],exec:14,exec_write_req_rx:[77,238],exec_write_req_tx:[77,238],exec_write_rsp_rx:[77,238],exec_write_rsp_tx:[77,238],execut:[1,2,7,11,12,14,31,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,68,81,83,86,88,91,93,94,97,100,102,134,137,138,140,191,196,217,226,231,233,234,238,243,249,251,252,253,254,255,258,269],exhaust:[21,98,141,180],exisit:28,exist:[2,14,21,25,30,42,47,50,51,72,95,141,147,152,158,160,161,162,167,168,170,171,173,174,177,178,180,187,207,209,214,226,230,242,250,256,259,260,261,262,263,270,272,278,279,281,282,283,284,286,287,289,290,291,292,294],exit:[8,81,259,261,264,278,291],expect:[6,14,21,44,62,85,93,98,130,131,135,223,228,229,230,231,232,243,247,254,255,264,269],experi:[14,23,267,280],experienc:14,experiment:100,expertis:271,expir:[85,87,88,193,195,240,265],expire_msec:195,expire_sec:195,expiri:[85,193],explain:[4,12,14,99,238,245,246,247,254,255,257,270,272,286,289,294],explan:[35,36,38,39,40,44,45,46,47,48,49,51,52,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,153,249],explanatori:[31,95,254,255],explic:280,explicit:269,explicitli:249,explor:[129,223,251,286],export_func:130,expos:[1,14,15,22,93,134,174,175,176,210,215,226,248,253],express:[24,169,226,228,253,277,278],ext:[12,14,260],ext_bynam:212,ext_bytyp:212,extend:[21,30,31,90,91,281,283],extended_dur:28,extended_period:28,extens:[14,22,31,138,264],extent:[256,284,291,292],extern:[8,12,30,41,94,98,135,136,176,182,187,206,224,233,271,272,291,292],extra:[14,39,43,48,90,135,153,191,241,244,249,284,291],extra_gdb_cmd:62,extract:[4,11,59,60,61,83,84,191,237,259],extrajtagcmd:[39,43,48],extrem:9,eyes:228,f401re:54,f411a55d7a5f54eb8880d380bf47521d8c41ed77fd0a7bd5373b0ae87ddabd42:287,f4discoveri:260,f_activ:141,f_active_id:141,f_align:141,f_close:[163,181],f_closedir:[163,181],f_dirent_is_dir:[163,181],f_dirent_nam:[163,181],f_filelen:[163,181],f_getpo:[163,181],f_magic:141,f_mkdir:[163,181],f_mtx:141,f_name:[163,181],f_oldest:141,f_open:[163,181],f_opendir:[163,181],f_read:[163,181],f_readdir:[163,181],f_renam:[163,181],f_scratch:141,f_scratch_cnt:141,f_sector:141,f_sector_cnt:141,f_seek:[163,181],f_unlink:[163,181],f_version:141,f_write:[163,181],face:223,facil:[20,102,233,240,265],fact:[14,136,271],factor:9,factori:263,fail:[14,21,43,58,81,90,98,141,144,161,162,174,180,228,229,230,232,246,252,259,260,263,264,269,271,278,291],fail_msg:228,failov:223,failur:[21,85,90,98,100,101,129,130,137,142,143,144,146,147,149,150,151,153,154,155,157,158,160,161,164,167,168,169,170,171,172,173,177,178,179,183,187,188,191,193,194,195,216,218,219,220,228,234,235,251,252,253,269],fair:90,fairli:[25,56,62,90,99],fall:[97,102,187,294],fallback:28,fals:[91,223,225,228],famili:[4,102,136,152,247],familiar:[3,12,226,237,238,245,246,248,278,284,291,294],famliar:277,fanci:100,faq:[11,13],far:[246,284],fashion:[93,141,180,237],fast:14,fat2n:[7,62],fatf:[7,137,152,153],fault:131,favorit:[237,242],fcb:[7,130,142,143,144,145,146,147,148,149,150,151,206],fcb_append:[141,143,144],fcb_append_finish:[141,142],fcb_append_to_scratch:142,fcb_entri:[141,142,143,146,151],fcb_err_nospac:142,fcb_err_novar:146,fcb_getnext:141,fcb_init:141,fcb_log:206,fcb_rotat:[141,142],fcb_walk:141,fcb_walk_cb:151,fda_id:180,fe80:291,fe_area:[141,146,151],fe_data_:141,fe_data_len:[141,146,151],fe_data_off:[141,146,151],fe_elem_:141,fe_elem_off:141,feat:278,feather:14,featur:[1,3,11,14,20,21,31,91,97,100,141,153,174,215,223,226,236,249,264,280,286],feedback:[237,242,257,278],feel:3,femal:290,fetch:[1,12,14,41,58,81,238,240,241,247,257,265,271,272,277,286,289],few:[1,6,14,15,22,26,32,56,62,91,94,95,224,246,251,254,264,269,278,294],ffconf:152,ffffffff:262,ffs2nativ:[7,62],fhss:22,ficr:24,fictiti:[271,272],fie_child_list:180,field:[14,21,28,85,86,90,94,129,131,176,188,201,203,207,208,209,215,220,223,224,226,249,251,253,254,255,271,272,278,280,282],fifo:141,figur:[90,129,130,141],file:[1,2,4,6,7,10,11,12,35,37,38,42,44,47,49,51,56,58,59,60,61,62,65,71,72,81,82,83,84,95,96,97,102,129,130,131,135,174,184,187,189,196,206,207,208,211,212,215,223,225,226,231,233,237,238,240,242,244,246,247,253,256,258,259,260,262,263,264,265,267,269,270,271,273,276,277,278,280,288,292],file_nam:62,filenam:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,71,72,94,152,157,161,163,167,170,174,180,223,247],filesystem:[56,130,152,196],fill:[10,49,96,100,130,141,142,144,146,147,183,199,200,246,251,254,255,269,277,278],filter:[2,14,23,28,31,73,256],filter_dupl:14,filter_polici:14,find:[1,2,3,14,21,29,35,56,62,89,90,95,97,130,147,182,212,224,225,230,236,237,246,247,256,259,260,263,270,284,287,290,291,292,294],find_info_req_rx:[77,238],find_info_req_tx:[77,238],find_info_rsp_rx:[77,238],find_info_rsp_tx:[77,238],find_type_value_req_rx:[77,238],find_type_value_req_tx:77,find_type_value_rsp_rx:77,find_type_value_rsp_tx:77,fine:[9,14,254,255],finish:[4,99,100,142,180,194,264,277],fip:22,fire:[85,193,195,243,250,284],firmwar:[129,153,238,259,261,264,270,278,291,292],first:[2,3,6,8,12,14,22,23,30,34,58,59,60,61,64,83,84,85,88,90,91,92,94,100,101,102,129,130,141,169,174,175,180,181,184,191,198,200,212,215,223,226,237,238,243,245,248,249,250,251,253,254,255,257,258,264,270,276,277,278,280,284,286,289,294],fit:[4,90,101,172,180,249,250,267],five:[21,22,23,158,171,238],fix:[6,11,14,91,101,129,273],fl_area:142,fl_data_off:142,flag:[1,6,12,14,28,30,56,58,59,60,62,63,65,81,82,83,90,95,100,129,161,223,241,247,251,253,276,278,280,287,290],flash0:153,flash:[1,9,14,40,44,49,56,58,59,60,62,96,97,130,135,142,143,147,153,175,177,178,181,182,186,187,189,196,206,223,226,238,256,260,261,262,264,267,278],flash_area:[141,151],flash_area_bootload:[94,129,177,178,225,226],flash_area_image_0:[94,129,177,178],flash_area_image_1:[94,129,177,178,226],flash_area_image_scratch:[94,129,177,178,225],flash_area_nff:[177,178,225,226],flash_area_noexist:225,flash_area_read:[141,146,151],flash_area_reboot_log:[225,226],flash_area_to_nffs_desc:[177,178],flash_area_writ:[141,142],flash_area_x:141,flash_id:[136,183,185],flash_map:[7,130,177,178,183,225,226],flash_map_init:226,flash_own:[225,226],flash_spi_chip_select:187,flash_test:[7,131],flat:[90,200,206],flavor:256,flexibl:[90,97,236,249,271,272],flicker:14,flight:90,float_us:279,flood:32,flow:[22,131,194,247,254,255],flow_ctl:194,fly:191,fmt:131,focu:243,folder:[4,10,12,34,56,60,64,242,259],follow:[1,2,3,4,6,7,8,11,12,14,20,21,22,24,25,27,28,30,31,32,33,38,39,44,51,52,56,58,59,60,61,62,65,67,68,72,73,74,78,79,81,82,83,84,90,92,94,95,97,99,100,101,102,129,131,132,134,135,136,137,141,153,161,168,169,170,174,175,176,180,181,182,188,190,191,201,203,206,207,208,209,210,212,213,223,224,225,226,228,229,230,231,232,233,237,238,240,241,242,243,246,247,248,249,251,253,254,255,256,257,258,259,260,261,262,263,264,265,269,270,271,272,273,276,277,278,279,280,281,282,283,284,286,287,289,290],foo:130,foo_callout:130,foo_conf_export:130,foo_conf_set:130,foo_val:130,footer:[129,258],footprint:[9,133,135],fop:166,fopen:161,forc:[42,50,53,90,223],forev:[88,92,99,100,161,162,235],forgeri:23,forget:[81,161,162,237,276,278],fork:10,form:[1,20,23,24,27,67,90,100,180,226,251,252,254,264,269,271],formal:[7,21],format:[8,30,51,67,69,72,73,90,130,131,133,152,153,174,177,178,198,199,200,207,224,226,228,231,247,254,258,270,271,272,280,287,290],former:180,formula:[3,61,84],forth:[130,200],fortun:56,forver:28,forward:[14,101,249],found:[1,14,21,34,56,64,91,94,149,174,180,200,247,252,253,254,256,260,262,290],foundat:[4,22,32,133,256,262,271,277,278,284,291,292],four:[20,23,48,129,169,173],fraction:[101,269],frame:[215,218,219,243,264],framerwork:132,framework:[22,29,98,133,207,213,214,233,234,247,279,280,281,284,285,286],frdm:54,free:[2,4,74,89,90,91,141,180,216,220,223,250,252,256,262,284,288,291,292],freebsd:102,freed:[90,91,180],freedom:[252,254,255],freq_hz:193,frequenc:[14,22,25,87,94,98,101,135,182,190,193,195,224,243,264],frequent:[10,14,20,22,23,98,254,255,284],freshli:90,friend:32,friendli:[14,135],from:[1,4,6,7,8,9,10,11,12,14,20,21,23,24,27,28,31,32,33,36,37,39,40,42,44,45,46,47,48,50,51,52,56,57,61,62,63,65,66,67,69,70,71,72,73,74,77,78,80,84,85,86,87,88,89,90,91,93,94,95,96,97,100,101,102,129,130,132,133,134,136,137,138,140,141,147,153,154,155,156,157,161,162,163,164,165,167,169,170,172,177,178,180,181,183,187,188,191,193,194,196,199,200,206,207,208,209,210,211,212,213,214,215,217,218,223,224,225,226,228,229,230,232,233,235,237,238,240,241,243,245,246,247,248,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,269,270,271,272,277,278,280,284,286,287,288,290,291,292],front:[90,180],fs_access_append:161,fs_access_read:[154,161,164,169],fs_access_trunc:[158,161,167,170,171],fs_access_writ:[158,161,167,170,171],fs_cli:7,fs_cli_init:216,fs_close:[158,161,164,167,169,170,171,172,173],fs_closedir:[137,162],fs_dir:[153,155,156,157,162,163,165],fs_dirent:[7,153,155,156,157,162,163,165],fs_dirent_is_dir:[155,157,162,165],fs_dirent_nam:[137,155,156,162,165],fs_eaccess:168,fs_ecorrupt:[168,177,178],fs_eempti:168,fs_eexist:[166,168,173],fs_eful:168,fs_ehw:168,fs_einval:168,fs_enoent:[137,155,156,157,162,165,167,168],fs_enomem:168,fs_eo:168,fs_eoffset:168,fs_eok:168,fs_eunexp:168,fs_euninit:168,fs_fcb:223,fs_file:[7,153,154,158,159,161,163,164,167,169,170,171],fs_filelen:171,fs_if:[163,181],fs_ls_cmd:216,fs_ls_struct:216,fs_mkdir:[7,173],fs_mount:7,fs_name:153,fs_nmgr:7,fs_op:[166,181],fs_open:[154,158,164,167,169,170,171,172,173],fs_opendir:[137,155,156,157,165],fs_read:[154,161,169,172],fs_readdir:[137,155,156,157,162],fs_regist:181,fs_unlink:160,fs_write:[158,167,173],fssl:[11,59],fsutil:[7,153],fsutil_r:153,fsutil_w:153,ftdichip:247,fulfil:251,full:[1,7,8,14,21,22,29,31,49,56,94,129,130,136,142,157,161,167,168,180,183,196,206,215,223,225,226,238,242,246,249,252,253,258,277,278,280,284,294],fuller:180,fulli:[9,22,129,174,175,180,223,246,255,271,272,278],fun:[237,277],func:[90,98,100,130,188,193,195],fundament:[1,294],funtion:200,further:[6,94,98,188],furthermor:[93,129,174,175,180,223,243,254,255],fuse:56,futur:[85,90,180,188,207,215,226,264,271,272,273],fyi:14,g_bno055_sensor_driv:209,g_bno055stat:209,g_led_pin:[242,243,258],g_mbuf_buff:90,g_mbuf_mempool:90,g_mbuf_pool:90,g_mystat:224,g_nmgr_shell_transport:218,g_os_run_list:86,g_os_sleep_list:86,g_stats_map_my_stat_sect:224,g_task1_loop:258,gain:[92,99,181,246,278],gap:[19,20,21,22,31,180,248,251,253,277,278,279],garbag:141,gatewai:264,gatt:[14,15,19,22,28,31,32,33,248,251,253,277,278,279],gatt_acc:251,gatt_adc_v:278,gatt_co2_v:276,gatt_co2_val_len:276,gatt_svr:[253,276,278,280],gatt_svr_chr_access_gap:[251,253],gatt_svr_chr_access_sec_test:[253,276,278],gatt_svr_chr_sec_test_rand_uuid:[253,276,278],gatt_svr_chr_sec_test_static_uuid:[253,276,278],gatt_svr_chr_writ:[276,278],gatt_svr_register_cb:253,gatt_svr_sns_access:[276,278],gatt_svr_svc:[251,253,276,278],gatt_svr_svc_adc_uuid:278,gatt_svr_svc_co2_uuid:276,gatt_svr_svc_sec_test_uuid:[253,276,278],gaussian:22,gavin:59,gc_on_oom_test:269,gc_test:269,gcc:[4,7,58,102],gcc_startup_:94,gcc_startup_myboard:94,gcc_startup_myboard_split:94,gcc_startup_nrf52:[94,259,261,284],gcc_startup_nrf52_split:[259,261,263,264,284],gdb:[4,7,12,14,39,48,62,63,94,243,246,256,258,259,260,262,263,278,284,291,292],gdb_arduino_blinki:12,gdbmacro:7,gdbpath:12,gdbserver:6,gear:102,gen:[28,31],gen_task:[240,265],gen_task_ev:[240,265],gen_task_prio:[240,265],gen_task_stack:[240,265],gen_task_stack_sz:[240,265],gen_task_str:[240,265],gener:[1,11,14,16,17,18,19,20,21,22,24,28,29,30,32,35,36,44,56,62,63,88,90,91,92,94,100,129,137,174,175,187,200,223,225,229,230,232,237,238,241,242,243,244,246,247,249,250,253,254,255,256,257,258,259,260,261,262,263,264,269,270,271,276,277,278,280,284,287,290,291,292],get:[2,4,6,7,8,9,10,11,14,24,56,57,59,60,61,62,65,77,80,82,83,84,86,88,90,91,92,93,94,96,97,98,99,100,101,129,130,134,135,141,151,158,161,164,167,172,180,183,187,191,193,200,207,211,213,223,226,228,237,240,242,243,245,247,249,251,253,254,255,256,257,259,260,262,263,264,265,269,270,276,277,278,283,284,290,294],gettng:267,gfsk:22,ggdb:6,ghz:[22,270],gist:[135,187],gister_li:211,git:[11,56,59,81,82,83,102,256,270,271,272,273],github:[1,7,10,11,34,56,58,59,60,64,81,82,83,102,184,237,256,270,271,272,273,277,278,286],githublogin:273,githubpassword:273,githubusercont:[11,58,59,60,81,82,83],give:[14,56,187,223,237,243,246,254,255,264,271,272,277,278],given:[12,14,21,43,85,87,88,90,91,97,100,101,129,137,140,146,147,153,183,187,191,193,194,200,207,211,212,243,272],glanc:249,glibc:58,global:[1,30,63,90,91,92,176,206,207,209,224,233,251],gmt:101,gnd:[8,264,278,280,290],gnu:[3,4,12,14,39,48,256,260,262,263,284,291,292],goal:[56,102,289],gobjcopi:6,gobjdump:6,gobl:82,goe:[14,62,233,269],going:[14,97,130,223,254,258,277,278],golang:[11,60,83],gone:250,good:[7,9,14,23,56,92,94,98,129,152,223,246,249,255,264],googl:[254,286],gopath:[11,58,59,60,61,81,82,83,84],got:[14,276,277,278],govern:[277,278],gpg:[58,81],gpio:[8,14,97,135,189,191,194,240,265],gpio_ev:[240,265],gpio_l:[240,265],gpl:[4,256,260,262,263,284,291,292],gplv3:[256,262,284,291,292],gpo:182,gpregret:14,grab:89,gracefulli:235,graduat:278,grain:9,grant:92,granular:101,graph:[1,51,63],graviti:280,great:[8,22,129,225,242,278],greater:[22,30,90,180,225],greatest:[129,180],green:[2,10,12,256,260,261,270,280,287],grid:56,ground:[278,280],group:[2,21,77,132,135,215,224,226,238,264],grow:[54,243],guarante:[14,90,91],guard:93,guid:[7,8,11,12,19,60,63,65,83,209,210,226,238,240,243,248,253,255,265,267,269,271,287,290],guinea:244,gyro:280,gyro_rev:280,gyroscop:[207,280],h_mynewt_syscfg_:226,hack:[7,9,12,14,237,242,278],had:[90,93,129,223],hal:[1,7,9,14,49,56,62,87,96,135,136,177,178,181,182,188,191,193,194,209,240,246,256,260,262,265,278,280,284,294],hal_bsp:[7,14,94,135,186,208,256,259,260,262,282],hal_bsp_core_dump:183,hal_bsp_flash_dev:[94,136,183,186],hal_bsp_get_nvic_prior:183,hal_bsp_hw_id:183,hal_bsp_init:[183,208],hal_bsp_max_id_len:183,hal_bsp_mem_dump:183,hal_bsp_power_deep_sleep:183,hal_bsp_power_off:183,hal_bsp_power_on:183,hal_bsp_power_perus:183,hal_bsp_power_sleep:183,hal_bsp_power_st:183,hal_bsp_power_wfi:183,hal_common:[7,246,260,262],hal_debugger_connect:192,hal_flash:[7,94,136,153,183,186,256,260,262],hal_flash_align:185,hal_flash_eras:185,hal_flash_erase_sector:185,hal_flash_init:185,hal_flash_ioctl:185,hal_flash_read:185,hal_flash_writ:185,hal_gpio:[7,137,184,187,240,265],hal_gpio_init_in:187,hal_gpio_init_out:[100,187,240,242,243,258,265],hal_gpio_irq_dis:187,hal_gpio_irq_en:[187,240,265],hal_gpio_irq_handler_t:187,hal_gpio_irq_init:[187,240,265],hal_gpio_irq_releas:187,hal_gpio_irq_trig_t:187,hal_gpio_irq_trigg:187,hal_gpio_mode_:187,hal_gpio_mode_in:187,hal_gpio_mode_nc:187,hal_gpio_mode_out:187,hal_gpio_mode_t:187,hal_gpio_pul:187,hal_gpio_pull_down:187,hal_gpio_pull_non:187,hal_gpio_pull_t:187,hal_gpio_pull_up:[187,240,265],hal_gpio_read:187,hal_gpio_toggl:[100,187,240,242,258,265],hal_gpio_trig_both:187,hal_gpio_trig_fal:187,hal_gpio_trig_high:187,hal_gpio_trig_low:187,hal_gpio_trig_non:187,hal_gpio_trig_ris:[187,240,265],hal_gpio_writ:[14,184,187,243],hal_i2c_begin:188,hal_i2c_end:188,hal_i2c_init:188,hal_i2c_master_data:188,hal_i2c_master_prob:188,hal_i2c_master_read:188,hal_i2c_master_writ:188,hal_i2c_prob:188,hal_i2c_read:188,hal_i2c_writ:188,hal_os_tick:[190,259,284],hal_reset_brownout:192,hal_reset_caus:[192,282],hal_reset_cause_str:192,hal_reset_pin:192,hal_reset_por:192,hal_reset_reason:192,hal_reset_request:192,hal_reset_soft:192,hal_reset_watchdog:192,hal_rtc:152,hal_spi:[137,191],hal_spi_abort:191,hal_spi_config:191,hal_spi_data_mode_breakout:191,hal_spi_dis:191,hal_spi_en:191,hal_spi_init:[137,191],hal_spi_lsb_first:191,hal_spi_mod:191,hal_spi_mode0:191,hal_spi_mode1:191,hal_spi_mode2:191,hal_spi_mode3:191,hal_spi_moden:191,hal_spi_msb_first:191,hal_spi_set:[136,191],hal_spi_set_txrx_cb:191,hal_spi_slave_set_def_tx_v:191,hal_spi_tx_v:191,hal_spi_txrx:191,hal_spi_txrx_cb:191,hal_spi_txrx_noblock:191,hal_spi_type_mast:191,hal_spi_type_slav:191,hal_spi_word_size_8bit:191,hal_spi_word_size_9bit:191,hal_system:192,hal_system_clock_start:192,hal_system_reset:192,hal_system_restart:192,hal_system_start:192,hal_tim:[87,193],hal_timer_cb:[87,193],hal_timer_config:193,hal_timer_deinit:193,hal_timer_delai:193,hal_timer_get_resolut:193,hal_timer_init:[14,193],hal_timer_read:193,hal_timer_set_cb:193,hal_timer_start:193,hal_timer_start_at:193,hal_timer_stop:193,hal_uart:277,hal_uart_blocking_tx:194,hal_uart_clos:194,hal_uart_config:[194,277],hal_uart_flow_ctl:194,hal_uart_flow_ctl_non:[194,277],hal_uart_flow_ctl_rts_ct:194,hal_uart_init:194,hal_uart_init_cb:[194,277],hal_uart_par:194,hal_uart_parity_even:194,hal_uart_parity_non:[194,277],hal_uart_parity_odd:194,hal_uart_rx_char:194,hal_uart_start_rx:194,hal_uart_start_tx:[194,277],hal_uart_tx_char:194,hal_uart_tx_don:194,hal_watchdog_en:195,hal_watchdog_init:195,hal_watchdog_tickl:195,hal_xxxx:182,half:[17,18,94,101],halfwai:129,halgpio:187,halsystem:192,halt:[93,190,191,256,260,262],haluart:194,hand:[223,237,243,269],handbook:[259,263],handi:[14,94,278],handl:[14,18,21,28,29,31,62,90,102,135,136,137,153,154,155,156,157,161,162,165,170,171,172,173,180,206,210,211,215,238,240,250,251,252,265,276,278,284],handler:[14,88,93,94,132,187,211,213,216,218,220,221,240,243,265,276,278,279],happen:[9,14,21,27,130,141,180,250,253,254,255,256,270,272],happi:[7,9],har:290,hard:[98,131],hardcod:[26,28],hardwar:[2,3,5,6,7,9,14,21,22,25,26,32,35,87,94,96,97,129,135,174,175,180,183,184,185,186,187,188,190,192,193,194,195,209,223,226,240,243,246,247,254,255,256,258,259,260,261,265,267,270,271,277,284,294],harm:129,has:[2,3,4,7,10,11,12,14,21,23,25,27,31,35,37,44,51,56,58,59,60,62,63,78,81,82,83,86,87,88,89,90,91,93,94,97,98,99,100,129,130,131,133,135,139,141,153,154,166,170,174,180,187,188,191,193,194,196,209,211,223,224,226,233,235,238,241,243,244,251,252,253,256,258,259,260,264,269,270,271,272,276,277,278,283,284,291,292,294],hash:[35,38,44,47,72,129,180,223,241,287,290],have:[1,2,3,6,7,8,9,10,11,12,14,20,21,23,25,31,33,44,51,53,55,56,58,59,60,61,62,63,65,81,82,83,84,85,88,90,91,93,94,96,97,98,99,100,102,129,131,133,135,136,138,141,144,174,175,180,182,186,187,193,194,215,221,223,224,225,226,236,237,238,240,241,242,244,245,246,247,250,251,253,254,255,256,257,258,259,260,261,262,263,264,265,269,270,271,272,274,276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,294],haven:[3,14,137,236,272,278,294],hci1:247,hci:[14,22,245],hci_adv_param:249,hci_common:238,hdr:[129,228],hdr_ver:198,head:[11,59,81,82,83,88,90,211,244],header:[1,14,38,40,47,56,58,59,60,62,94,129,133,141,142,180,184,187,206,208,226,233,238,258,276,277,278],heading1:244,heading2:244,heading5:244,headless:2,health:254,heap:[91,93,94],heart:243,held:271,hello:[12,14,70,158,171,194,238,257,270,287,288,290,294],help:[1,8,12,14,32,35,36,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,68,69,70,71,72,73,74,75,76,77,78,81,82,83,93,95,96,101,135,200,220,223,225,243,244,245,246,249,256,258,259,261,264,267,269,270,273,277,278,280,284,291,292],helper:[1,62,90,95,136,254,255],henc:[129,236],her:93,here:[1,3,8,10,11,14,30,33,56,74,77,78,85,88,90,91,94,95,98,100,130,131,141,157,158,161,164,172,174,187,191,200,206,207,209,215,223,224,225,226,234,236,237,240,244,247,251,253,254,255,256,258,259,260,263,264,265,269,270,271,272,277,278,288,294],hertz:87,hex:[7,38,44,49,72,188,223,262,264,276,284],hexidecim:67,hfxo:25,hidapi:4,hidraw:4,hierarchi:[153,226,233],high:[9,14,19,22,65,87,99,135,187,240,243,265,291],high_duti:28,higher:[11,14,15,21,22,56,59,60,73,81,82,83,92,93,99,100,182,206,212,225,226,236,243,247,269,272],highest:[86,92,93,100,225,226,243],highli:236,highlight:[2,6,31,102,237,256,259,261,263,270,278,279,284],hint:56,his:93,histori:225,hit:[37,258],hl_line:[208,209],hmac:14,hog:243,hold:[34,44,64,90,91,157,188,199,209,215,237,243,264,271,278],hole:[180,278],home:[7,11,60,94,223,246,258,269,273,277],homebrew:[4,6,7,11,37,57,61,80,84],homepag:[1,14,44,62,131,269,277,278],honor:14,hook:[98,262,277,290],hop:[22,135],hope:14,host:[7,9,14,22,23,24,27,30,31,67,71,72,85,88,90,129,213,244,246,247,251,252,253,256,269,270,276,277,278,279,283,284,291,292],hotkei:291,hour:101,how:[2,3,4,5,6,7,8,11,12,14,21,22,24,31,56,58,59,60,61,67,81,82,83,84,90,92,94,97,101,129,130,131,141,147,149,167,174,188,191,201,206,208,209,220,223,224,227,228,231,233,236,237,238,241,242,243,244,245,246,247,250,251,252,254,255,256,257,258,259,260,261,262,263,264,268,269,270,276,277,280,281,283,284,286,287,288,289,290,294],how_to_edit_doc:244,howev:[3,14,58,81,90,97,100,102,129,131,174,180,187,224,241,259,271],htm:247,html:[4,34,64,153,256,260,262,284,291,292],http:[1,4,10,11,12,14,34,40,56,58,59,60,62,64,81,82,83,102,131,138,184,237,247,254,256,259,260,262,263,269,271,273,277,278,284,290,291,292],httperror404:[58,81],hub:270,human:[247,271],hw_bsp_nativ:62,hw_drivers_nimble_nrf51:223,hw_hal:56,hw_mcu_nordic_nrf51xxx:223,hypothet:21,i2c:[8,135,136,182,280,281,284],i2c_0:[279,280,281,284],i2c_0_itf_bno:208,i2c_0_itf_li:208,i2c_num:188,i2s:256,i2s_callback:256,i386:[4,6],iOS:[250,276,278,279,281,283,286],ibeacon:[24,246,257,294],icloud:14,icon:[10,12,14],id16:253,id3:[34,64],id_init:226,idcod:256,idea:[14,62,90,92,98,249],ideal:22,ident:[14,19,21,23,24,28,31,67,90,102,134,223,224,233],identifi:[1,8,14,20,21,28,30,35,72,94,100,129,130,180,183,188,254,255,259,261,264,270,278,287,290],idl:[28,78,98,243,246,287,290],idx:[28,136,180],ietf:200,if_rw:134,ifdef:[223,226,234,258,284],ifndef:[226,277,278],ignor:[6,14,28,83,91,153,167,174,226,291],ih_flag:129,ih_hdr_siz:129,ih_img_s:129,ih_key_id:129,ih_mag:129,ih_tlv_siz:129,ih_ver:129,iii:129,illustr:[12,90,92,93,129,243,278,284],imag:[2,6,7,12,32,35,39,40,43,44,48,56,58,59,60,62,65,79,81,82,83,94,95,97,102,131,132,197,198,199,201,202,204,224,225,236,246,250,256,257,258,267,276,277,288,289,291,292,294],image_ec256:[256,259,260,261,262,263,264,270,280,287,288,290],image_ec:[7,256,259,260,261,262,263,264,270,280,287,288,290],image_f_ecdsa224_sha256:129,image_f_non_boot:129,image_f_p:129,image_f_pkcs15_rsa2048_sha256:129,image_f_sha256:129,image_head:129,image_header_s:129,image_mag:129,image_magic_non:129,image_ok:129,image_rsa:[7,256,259,260,261,262,263,264,270,280,287,288,290],image_tlv:129,image_tlv_:129,image_tlv_ecdsa224:129,image_tlv_rsa2048:129,image_tlv_sha256:129,image_valid:[7,256,260,261,263,270,280,287,288,290],image_vers:[129,198,199],img:[14,38,47,72,237,238,241,242,246,247,250,256,259,260,261,262,263,264,270,277,280,284,287,290,291,292],img_data:205,img_start:192,imgmgr:[7,131,132,153,196,226,238,277,278],imgmgr_max_ver_str:199,imgmgr_module_init:226,imgr_list:[201,202,204],imgr_upload:205,imgr_ver_jsonstr:199,immedi:[27,88,94,129,170,180,191,193,244,249,254,255],impact:[25,180],impl:62,implemen:67,implement:[9,10,14,22,33,62,67,88,90,91,94,96,97,129,130,131,132,152,153,174,180,182,184,186,187,188,189,190,191,192,196,200,207,208,210,212,214,215,221,226,233,240,248,251,253,254,264,265,269,278,279,280,284],impli:[14,254,255,269,272,277,278],implicit:269,impos:[129,174,175,180],imposs:[20,176],impract:253,impress:278,improv:258,imuplu:280,inc:[4,256,262,284,291,292],includ:[1,4,7,9,10,14,15,16,17,18,20,21,22,23,27,28,29,32,44,51,60,62,85,88,90,91,92,94,96,97,98,99,100,101,129,130,131,134,135,136,137,139,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,188,191,193,194,196,206,207,208,211,212,213,215,223,225,226,227,233,237,238,240,241,243,247,248,249,251,254,255,259,265,269,271,272,276,277,278,279,280,282,283,284,289,291],include_tx_pow:28,incom:[21,88,194,196,215,216,218,240,265],incompat:[58,81,271],incomplet:[30,94,160],incomplete_block_test:269,incorrect:[43,101],incr:183,increas:[22,23,90,180,215,216,220,226,243,291],increasin:141,increment:[90,101,130,180,224],incub:[7,56,184,226,237,278],inde:[93,262],indefini:[254,255],indent:6,independ:[23,97,129,135,182,183,185,187,188,190,192,193,194,195,226],indetermin:269,index:[32,73,129,247],indian:101,indic:[7,14,20,21,27,29,30,31,88,91,94,98,129,131,133,153,159,161,168,180,187,188,193,205,212,215,220,223,225,226,241,251,253,256,259,260,263,269,270,284,286],indirect:278,individu:[11,100,129,130,135,187,226,232,238,271],industri:[22,152],ineffici:180,infinit:[88,91,93,226,243,258],info:[14,40,58,59,60,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,91,100,130,141,142,146,220,241,252,256,260,262,263,270,276,278],inform:[1,6,7,12,14,21,23,24,28,30,35,38,40,41,58,59,60,62,63,65,67,72,81,82,83,88,90,91,94,96,97,100,101,129,133,134,146,180,206,207,209,210,220,223,224,226,236,237,240,241,243,246,249,252,253,254,255,256,258,264,265,271,272,273,277,278,280,284,287,290,292],infrastructur:246,ing:[135,254,255],inher:[1,24,251],inherit:[1,4,60,92,176,207],ininclud:224,init:[51,56,208,212,226,277,278],init_app_task:93,init_func_nam:226,init_funct:226,init_stag:226,init_task:[240,243,265],init_tim:[258,284],initi:[14,17,20,22,24,26,27,28,29,62,85,87,88,90,91,92,93,94,98,99,100,130,131,135,139,147,153,168,177,178,179,180,182,183,185,187,188,191,193,194,197,200,204,206,208,211,212,213,215,216,220,233,234,238,240,242,247,248,252,254,255,258,265,269,276,277,278,279,280,284],initialis:[209,256],inod:[174,176],inoper:[27,254,255],input:[21,23,28,101,135,182,187,191,240,262,265,269,291],inquiri:[21,30],insert:[100,180],insid:[14,25,90,93,162,183,258,262,269],insight:[135,243],inspect:[14,49,129,130,252],instal:[3,7,9,34,40,55,56,64,79,93,94,95,137,211,238,240,241,242,243,245,246,247,256,257,259,260,261,262,263,265,269,270,272,274,277,279,280,281,283,284,286,287,288,289,290,291,294],instanc:[2,3,9,14,28,63,90,176,177,178,180,206,224,249,254,255,256],instant:21,instantan:243,instanti:[93,135],instantli:99,instead:[7,8,11,12,14,25,88,91,99,129,131,223,226,238,240,250,256,258,259,260,261,262,263,265,269,273,276,277,278,279,282],instruct:[3,4,7,8,11,56,58,63,81,86,97,238,240,256,259,263,265,279,280,281,282,284,288,291,292],insuffici:[21,90,168],insur:[91,100],int16_t:101,int32_max:28,int32_t:[85,101,194,254,255],int64_t:101,int8:130,int_max:90,integ:[14,200,207,224,226],integr:[12,14,23,91,180,188,224,278],intellig:182,intend:[14,25,30,37,177,178,188,236],inter:[180,188,240,265],interact:[2,8,131,133,196,250,258,267,291],interchang:200,interconnect:[9,133],interdepend:[130,226],interest:[7,15,19,90,94,182,223,242,246,249,254,294],interfac:[4,19,22,31,32,90,100,129,134,135,136,137,152,153,182,183,185,187,188,190,191,192,194,195,206,209,210,237,245,247,248,256,260,262,277,280,281,284,290],interleav:14,intermedi:[160,161,167],intern:[7,14,21,90,93,94,98,135,136,141,168,177,178,179,186,193,195,196,200,216,220,256,278],internet:[7,12,22,238,240,241,247,257,265,270,286,289],interoper:[133,134],interpret:[138,140,207,211],interrupt:[14,86,87,88,94,129,183,187,190,191,193,194],interv:[14,21,28,30,98,100,207,211,212,240,265,280,284],interval_max:28,interval_min:28,intervent:97,intial:220,intiat:94,introduc:[1,31,180,225,226],introduct:[243,294],introductori:286,intuit:129,invalid:[21,87,129,137,143,153,154,168,172,173,180,191,193,251,269],invers:[92,99],invert:99,invoc:[6,253],invok:[2,269,273,284],involv:[17,18,20,23,94,97,182,188,269],io_cap:28,ioctl:153,iot:22,iotiv:279,ipsp:22,ipv6:22,irk:[20,28],irq:[14,187],irq_num:183,irq_prio:[136,137],isbuildcommand:12,ism:22,ismylaptop:277,isn:[14,94,180,246],isol:[94,223],isr:14,isshellcommand:12,issu:[1,6,10,31,56,67,93,99,129,133,153,174,180,188,238,259,260,261,263,264,274,277,278],ist:101,it_len:129,it_typ:129,ital:244,ite_chr:251,item:[1,88,94,130,181,211,255],iter:[91,100,129,155,156,157,162,165,180,212],itf:209,its:[7,8,10,11,14,19,20,21,56,62,86,88,90,91,92,93,94,97,98,100,129,131,136,141,159,169,172,174,175,180,187,188,191,206,223,224,225,226,228,233,237,241,242,243,244,245,246,249,251,252,253,254,255,264,271,277,282,288,294],itself:[14,27,62,90,91,100,129,135,139,141,181,196,201,212,226,227,237,259,269,277,278],itvl:14,iv_build_num:129,iv_major:129,iv_minor:129,iv_revis:129,jan:[101,277],javascript:56,jb_read_next:200,jb_read_prev:200,jb_readn:200,je_arg:200,je_encode_buf:200,je_wr_comma:200,je_writ:200,jira:10,jlink:[62,94,241,259,261,270,280,284,287],jlink_debug:62,jlink_dev:62,jlinkex:[259,261,264,278],jlinkgdbserv:[284,291],jlinkgdbserverclex:277,job:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,86,93,94,215,251],join:[3,135,236,270,294],json:[7,12,35,38,52,56,62,202,203,204,205,237,238,242,269],json_array_t:200,json_attr_t:[200,205],json_buff:[200,205],json_buffer_read_next_byte_t:200,json_buffer_read_prev_byte_t:200,json_buffer_readn_t:200,json_decod:[205,269],json_encod:[199,200,201,202,203,204,269],json_encode_object_entri:[202,203,204],json_encode_object_finish:[201,204],json_encode_object_start:[201,202,203],json_enum_t:200,json_read:200,json_read_object:200,json_simple_decod:269,json_simple_encod:269,json_typ:200,json_valu:[200,201,202,203,204],json_value_int:[200,203],json_value_str:200,json_value_stringn:200,json_write_func_t:200,jtag:[4,39,43,48,256,259,260,262,270,284,290],jul:81,jump0:68,jump:[129,223],jumper:[8,237,262,277,278,290],just:[1,7,8,14,21,23,24,63,85,88,94,95,100,101,129,136,137,152,167,172,223,237,250,251,254,255,256,258,264,273,274,277,278],jv_len:200,jv_pad1:200,jv_type:200,jv_val:200,k30:[276,277],k64f:54,keep:[9,14,23,25,93,129,131,135,141,180,191,208,215,216,220,223,237,242,243,269,278],keg:[61,84],kei:[8,20,21,22,32,38,47,58,81,94,129,130,180,199,200,201,203,226,251,264,270,280],kept:[86,129,141],kernel:[1,7,9,14,52,56,62,94,131,135,182,212,223,226,227,240,246,247,265,277,278,279,280,282,284],kernel_o:223,keyboard:[12,23,131],keyboarddisplai:28,keyboardonli:28,keychain:[58,81],keystor:28,keyword:[1,62,95,131,269,271,277,278],khz:[191,256,260],kick:[98,254,255],kilobyt:97,kind:[32,135,277,278,291],kit:[8,48,62,237,241,242,257,259,277,278,291,292,294],klibc:102,know:[1,8,12,14,31,62,131,207,211,224,225,243,251,252,254,255,257,258,270,277,278,289,294],known:[22,56,101,161,162,180,243,249],kw41z:14,l13:259,l2cap:22,lab:33,label:[8,94,262,278],lack:[141,152,223],lag:253,languag:[11,12,56,97,138,277,278],laptop:[3,8,237,238,240,242,247,264,265,278],larg:[21,25,32,90,100,101,223,224,243],large_system_test:269,large_unlink_test:269,large_write_test:269,larger:[14,32,90,228],largest:[90,244],las_app_port:264,las_app_tx:264,las_join:264,las_link_chk:264,las_rd_app_eui:264,las_rd_app_kei:264,las_rd_dev_eui:264,las_rd_mib:264,las_wr_app_eui:264,las_wr_app_kei:264,las_wr_dev_eui:264,las_wr_mib:264,last:[14,21,27,73,78,90,91,98,100,129,149,180,194,202,207,215,220,226,249,253,254,255,256,264,270,278,280,282,284],last_checkin:[78,287,290],last_n_off:149,last_op:188,last_read_tim:209,latenc:28,later:[7,8,14,73,85,90,129,233,242,246,252,256,264,269,278,284,291,292],latest:[1,2,4,7,11,14,50,53,56,57,61,80,84,130,237,256,270,271,272,277,278],latex:[174,180],latter:[21,90,133,174],launch:12,launchpad:4,law:[256,277,278,284,291,292],layer:[9,21,22,90,91,96,97,135,153,163,166,174,181,194,209,210,226,240,248,265,278,294],layout:[97,129,175,290],lc_f:208,lc_pull_up_disc:208,lc_rate:208,lc_s_mask:208,ld4:260,ldebug:[14,225],ldflag:51,ldr:262,le_elem_off:146,le_scan_interv:14,le_scan_window:14,lead:[90,93,252,278],leadingspac:90,leak:[161,162],learn:[7,27,62,237,242,257,286],least:[23,90,98,129,180,191,193,238,258,264,278,294],leav:[90,136,149,223],led1:[240,261,265],led2:[240,265],led3:[240,265],led:[1,7,14,62,94,97,100,135,182,187,238,240,243,247,256,257,258,259,260,261,262,263,265,270,278,280,287,290,294],led_blink_pin:[94,100,242,243,258],led_blink_pin_1:242,led_blink_pin_2:242,led_blink_pin_3:242,led_blink_pin_4:242,led_blink_pin_5:242,led_blink_pin_6:242,led_blink_pin_7:242,led_blink_pin_8:242,led_pin:242,left:[87,91,100,146,199,223,262,276,284,294],legaci:[14,31,152,226,243],len:[90,130,136,141,142,163,164,171,172,173,188,191,200,205,251,264,277],length:[21,22,28,90,94,129,130,131,141,157,158,177,180,183,199,251,264],less:[14,93,102,129,180,253,254,255],lesser:180,lesson:[243,294],let:[4,8,56,90,94,206,223,224,237,243,246,248,249,250,251,252,253,254,255,258,262,269,271,272,276,277,278,284],level:[1,2,9,14,15,19,21,24,28,30,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,92,94,132,135,136,153,174,175,182,209,225,226,236,250,251,254,255,256,260,264,269,270,272,276,277,278],level_list:73,leverag:[133,135,245,278],lflag:[1,51,62],lib:[1,4,46,54,56,83,102,131,153,181,225,226,277,278],libc6:6,libc:[7,94,102],libc_baselibc:[223,262],libftdi1:4,libftdi:4,libg:49,libgcc:[49,223],libhidapi:4,librari:[1,4,14,49,51,56,59,82,88,90,94,95,97,102,129,131,135,153,161,181,182,196,223,224,233,246,269,271,272,277,278,279],libusb:4,libusb_error_access:260,libusb_open:260,licens:[4,7,11,56,62,102,135,246,256,260,262,263,270,271,277,278,284,291,292],lieu:67,life:[25,254],light:[9,32,182,207,237,240,242,257,260,261,262,263,265,279,280,287,290],lightblu:[250,276,278],lightweight:152,like:[2,3,5,8,12,14,32,56,59,60,63,82,83,90,93,94,97,98,99,102,129,131,135,141,182,188,224,237,242,246,256,260,262,269,271,277,278,279,281,282,284,286,290,291,292],likewis:[63,180],limit:[3,14,21,28,30,100,102,130,136,152,216,220,223,238,249,254,277,278,291],limt:224,line:[2,6,7,12,14,37,39,40,48,63,94,102,131,187,224,231,237,242,247,253,258,260,261,271,273,278,279,280,284,291],linear:180,linearacc:280,lines_queu:131,link:[2,3,7,14,21,22,23,28,35,39,43,61,62,82,84,86,90,180,193,215,223,226,233,236,237,246,247,250,255,256,258,259,260,261,262,263,264,270,277,278,280,284,287,288,290,291,292,294],linker:[1,62,95,102,223,246,262],linkerscript:[62,94],linux:[5,7,9,12,57,67,79,80,136,241,247,256,258,259,260,262,263,270,280,287,288,289,290],liquid:278,lis2dh12:[208,284],lis2dh12_0:[208,284],lis2dh12_cfg:208,lis2dh12_config:208,lis2dh12_data_rate_hn_1344hz_l_5376hz:208,lis2dh12_fs_2g:208,lis2dh12_init:208,lis2dh12_onb:284,list:[3,6,7,8,12,14,23,28,30,35,36,49,51,52,54,58,60,62,67,72,73,74,76,77,78,79,81,86,88,90,91,94,95,96,100,129,131,132,135,137,180,181,193,206,215,224,226,228,231,236,237,241,242,246,249,252,253,256,257,258,259,260,261,262,263,264,271,272,277,278,282,287,288,290,294],listen:[2,14,15,31,32,67,90,207,212,223,249],listener_cb:284,lit:[238,242,243,247],littl:[6,21,24,90,129,237,242,246,253,264,272,277],live:[135,237,252,253,256,270,271,272],lma:262,lmp:21,load:[2,4,5,7,12,14,35,40,44,48,56,58,59,60,62,94,129,130,192,223,237,240,241,242,243,250,257,258,264,265,272,276,277,278,291,292],load_arduino_blinki:12,load_arduino_boot:12,loader:[14,44,51,94,129,131,192,256,259,260,261,263,270,280,287,288,290],loc:[142,146,151],local:[1,4,6,7,10,11,21,28,29,37,41,50,56,59,61,72,82,84,95,100,101,244,249,256,270,282],localhost:[67,277,284,291],locat:[1,8,11,20,32,62,90,94,129,141,146,180,188,233,243,253,258,262,270,271,277,280,287,288,290],lock:[9,89,93,99,141,207,212,240,265],log:[1,7,10,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,74,75,76,77,78,79,81,82,83,129,132,133,151,160,167,181,182,215,223,225,226,227,237,238,246,256,259,260,262,263,267,277,278,282,284,288,291],log_:14,log_cbm_handl:206,log_cbmem_handl:206,log_cli:[215,267],log_console_handl:[206,209],log_debug:206,log_error:209,log_fcb:226,log_fcb_handl:206,log_handl:206,log_info:209,log_init:226,log_level:[51,206,226,241,267],log_level_debug:206,log_level_error:206,log_module_bno055:209,log_module_default:206,log_nam:73,log_newmgr:225,log_newtmgr:[51,225,226,238],log_nmgr_register_group:226,log_regist:[206,209],log_shel:237,log_syslevel:[206,209],logic:[1,22,24,30,129,175,194,264,277],login:273,loglevel:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83],logxi:82,long_filename_test:269,longer:[3,8,11,14,22,25,91,211,225,247,277,279],longjmp:235,longrange_interv:28,longrange_pass:28,longrange_window:28,look:[8,14,25,56,62,94,96,100,102,129,131,132,188,200,205,223,224,237,242,243,244,249,251,252,253,269,272,274,276,277,278,282,284,294],lookup:[212,221,251,284],loop:[14,85,88,93,100,155,156,157,162,165,226,238,243,246,258,276,278],lora:264,lora_app_shel:264,lora_app_shell_telee02:264,lora_app_shell_telee0:264,lora_mac_timer_num:264,lose:27,loss:[27,30,183],lost:[98,180],lost_found_test:269,lot:[7,14,223,225,249,269,278],low:[9,14,21,22,23,32,87,90,94,99,136,153,182,187,191,192,209,243,251,254,255,256,257,260,270,294],lower:[14,21,87,92,93,99,100,225,226,241,243,248,258,262],lowest:[74,86,91,100,180,226,243],lowpow:280,lru:180,lrwxr:[4,82],lsb:188,lst:[35,56,62],ltbase:226,ltd:28,ltk:28,ltk_sc:28,ltrequir:226,lua:[138,139,140],lua_cmd:140,m32:6,m4g:280,mac:[3,5,7,9,12,14,21,56,57,79,80,237,241,242,247,250,256,258,259,260,262,263,264,270,276,278,280,287,288,289,290],machin:[2,3,7,8,95,247,294],maco:[4,8,14,67],macro:[14,21,90,91,94,98,200,207,209,224,226,233,243,253,269,278],made:[2,10,11,21,56,72,86,100,129,188,243,244,264,278],mag:280,mag_rev:280,maggyro:280,magic:[62,129,141,180],magnet:[207,280],magnetomet:209,mai:[2,4,6,7,8,12,14,23,28,30,31,32,52,54,58,59,63,81,82,83,86,88,90,91,93,94,97,102,129,131,133,135,162,180,182,187,188,193,206,207,208,209,211,212,223,224,225,226,228,231,233,238,243,246,247,256,258,259,260,261,262,263,264,270,271,277,278,280,284,287,290,291],mail:[3,10,135,236,237,242,246,257,278,294],main:[7,12,27,32,58,62,78,81,88,90,93,96,100,129,131,139,177,178,198,207,212,215,217,222,226,232,234,238,240,242,246,249,254,255,256,259,260,261,262,263,265,269,276,277,278,280,287,288,290],mainli:223,maintain:[4,50,86,129,135,180,207,212,226,269,271,272],mainten:[133,224],major:[14,56,62,97,198,243,255,271,272],major_num:[271,272],make:[1,2,3,7,8,9,14,20,21,22,25,31,32,34,56,58,64,72,86,90,91,94,129,135,141,142,174,180,182,199,206,223,224,237,241,242,243,245,246,247,249,251,252,254,255,256,258,262,264,269,271,276,277,278,279,284,294],makerbeacon:238,malloc:[89,91,94,102,243,278],man:[6,28,102],manag:[6,8,14,17,18,22,28,32,40,46,58,59,60,62,65,67,69,72,73,74,77,78,81,82,83,88,91,93,94,95,97,100,129,131,135,182,197,200,207,209,210,211,223,226,227,241,258,259,267,270,272,280,284,287,289,290,294],mandatori:[21,94,228,253,254,255],mani:[14,21,32,56,62,90,96,129,141,149,161,162,182,193,251,256,271],manifest:[35,38,44,56,62,237,238,242],manipul:[1,40,46,90],manner:[28,30,90,93,129,182],manual:[22,26,61,84,91,93,100,102,174,223,231,237,256,262,284,290,291,292],manufactur:[20,28,30,40,44,58,59,60,67,223,249,256,270],many_children_test:269,map:[2,3,8,21,28,29,62,97,135,136,161,182,186,187,194,200,223,225,226,251,258,270,271,272,280,287,290,291],mar:[101,259,261,264,278,284],march:69,mark:[28,29,72,94,262],marker:94,market:[32,261],mask:[28,207,209,211,212,282,284],mass:[247,260],mass_eras:[259,260],master:[1,7,11,28,57,58,60,61,80,81,83,84,135,182,184,188,191,244,256,270,271,272,278],match:[2,7,14,21,94,95,97,129,211,212,223,256,260,270,271,272],materi:14,matter:10,max:[14,157,199,200],max_cbmem_buf:206,max_conn_event_len:28,max_ev:28,max_len:[157,163,183],max_protohdr:90,maxim:9,maximum:[14,22,28,30,90,129,130,131,174,176,180,183,199,215,216,220,269,291],maxlen:130,mayb:[291,292],mb_crc:277,mb_crc_check:277,mb_crc_tbl:277,mbed:[259,263],mbedtl:[7,256,259,261,263,270,287,288,290],mblehciproj:247,mblen:90,mbuf:[93,200,281],mbuf_buf_s:90,mbuf_memblock_overhead:90,mbuf_memblock_s:90,mbuf_mempool_s:90,mbuf_num_mbuf:90,mbuf_payload_s:90,mbuf_pkthdr_overhead:90,mbuf_pool:90,mbuf_usage_example1:90,mbuf_usage_example2:90,mcu:[7,9,54,95,98,135,136,182,187,190,191,192,193,194,196,237,242,243,256,259,270,278,284],mcu_dcdc_en:14,mcu_gpio_porta:136,mcu_sim_parse_arg:[258,284],mcuboot:14,mdw:262,mean:[2,12,14,21,90,92,98,99,100,101,129,136,176,191,202,204,226,235,253,260,272],meaning:[139,194],meant:[1,98,130],measur:[9,243,264],mechan:[1,23,93,223,226,240,265,271,273,277,278],medic:[22,56],medium:[14,168],meet:[208,241,247,256,257,259,260,261,262,263,280,282,283,284,286,287,288,289,290],mem:[7,226],member:[85,88,90,91,92,98,99,100,101,130,131,188,191,193,249,251,278],membuf:91,memcmp:90,memcpi:251,memori:[9,21,49,74,88,89,90,93,94,97,98,102,129,133,135,136,152,168,174,175,179,180,182,183,185,188,216,220,225,238,240,243,251,262,264,265,267,288,291],mempool:[65,81,82,83,90,91,215],memset:[208,249,252,255,278],mention:[12,180,207,278],menu:[12,60,260,262,290],merchant:4,merci:91,merg:244,mesh:33,messag:[2,4,23,32,43,58,59,60,76,131,133,134,167,215,218,219,228,240,256,260,264,265,270],messi:278,messsag:63,met:[21,238,240,265,270],meta:[8,270,280],metadata:[14,44,129,168],meter:22,method:[26,90,100,134,174,184,187,191,206,215,224,251,271],mfg:[7,14,40,58,59,60,71,226],mfg_data:[14,30],mfg_init:226,mgmt:[7,131,133,191,197,215,225,226,238,277,278],mgmt_evq_set:238,mgmt_group_id_config:132,mgmt_group_id_crash:132,mgmt_group_id_default:132,mgmt_group_id_imag:132,mgmt_group_id_log:132,mgmt_group_id_runtest:132,mgmt_group_id_stat:132,mgmt_imgmgr:223,mgmt_newtmgr_nmgr_o:223,mgutz:82,mhz:[22,25],mib:[56,82,264],mic:21,micro:[14,56,241,243,256,257,259,261,262,264,270,278,280,286,287,289,290,291,292],microcontrol:[9,102,129,262,290],microsecond:[25,87,101],microsoft:12,mid:[15,129,260],middl:[28,129,180,278],might:[1,2,14,19,21,62,94,97,130,131,135,180,182,188,209,223,225,246,248,249,254,255,256,260,271,272,274,284,291,292],migrat:[180,226],milisecond:28,millisecond:[28,101,264],millivolt:278,min:[73,74,129,270,288],min_conn_event_len:28,mind:[14,98,246],mine:276,mingw32:60,mingw64:60,mingw:[4,7,8,12,57,83,258,270,280,287,290],mini:260,minicom:[8,258,270,280],minim:[94,135,152,153,174,180,209,246],minimum:[28,30,73,90,91,129,180,246],minor:[198,255,271,272],minor_num:[271,272],minu:90,minut:[82,101,254,269],mip:[7,62],mirror:[1,10,11,271,277,278],misc:280,mislead:6,mismatch:[21,90],miso:191,miso_pin:[136,137],miss:[14,21,58,94,225,237,242,246,257,278],misspel:225,mitm:28,mk64f12:[135,182],mkdir:[11,44,81,83,94,237,256,259,260,261,262,263,264,270,271,277,278],mkdir_test:269,mkdoc:244,mkr1000:268,mkr1000_boot:270,mkr1000_wifi:270,mlme:264,mman:58,mmc0:[137,153],mmc:152,mmc_addr_error:137,mmc_card_error:137,mmc_crc_error:137,mmc_device_error:137,mmc_erase_error:137,mmc_init:137,mmc_invalid_command:137,mmc_ok:137,mmc_op:[137,153],mmc_param_error:137,mmc_read_error:137,mmc_response_error:137,mmc_timeout:137,mmc_voltage_error:137,mmc_write_error:137,mn_socket:7,mobil:32,mod:[31,250,277],modbu:277,mode:[9,14,21,23,28,30,135,159,161,168,169,171,182,183,187,191,194,209,223,249,256,260,262,269,280],model:[14,22,23,33,88,196,259],modern:[8,152],modif:[11,237,269,279],modifi:[6,63,90,94,101,134,193,242,243,277,278,283,286],modul:[73,87,91,93,102,133,138,206,216,220,222,258,264,290],module_list:73,module_nam:[220,222],modulo:101,moment:[14,136,188,196,251,272],mon:[256,259,260],monitor:[90,131,133,141,213,224,262,279,286,294],monolith:253,month:269,more:[1,4,7,9,10,12,14,21,22,23,30,31,35,36,40,44,52,54,58,59,60,62,63,65,81,82,83,86,88,90,93,94,99,100,101,102,129,130,135,142,146,153,164,165,180,191,194,200,206,207,208,209,210,215,223,226,228,241,242,243,246,249,253,254,255,256,258,259,264,269,270,272,276,277,278,280,284,287,290,291,294],moreov:[14,277],mosi:191,mosi_pin:[136,137],most:[1,8,14,15,20,22,24,25,26,62,90,94,95,100,102,129,180,184,191,223,225,243,249,269,276,278,280,282,284],mostli:[6,9,223,254,255],motor:9,mou:244,mount:[166,278],mous:[135,182],move:[8,46,58,59,60,82,86,93,101,129,167,183,223,258,262,278,279,281,284],mp_block_siz:91,mp_flag:91,mp_membuf_addr:91,mp_min_fre:91,mp_num_block:91,mp_num_fre:91,mpe:91,mpool:[220,264,277],mpstat:[65,79,81,82,83,132,134,238,288],mq_ev:90,mqeueue:90,ms5837:14,msb:188,msdo:94,msec:[14,28,195],msg:231,msg_data:28,msp:[256,262],msy:60,msys2:57,msys2_path_typ:60,msys64:60,msys_1:[74,288],msys_1_block_count:[279,281],msys_1_block_s:[279,281],mtd:136,mtu:[14,21,28,29,250],mu_level:92,mu_own:92,mu_prio:92,much:[14,90,94,99,102,147,180,277],multi:[1,9,51,63,97,100,188],multilib:[6,7,58],multipl:[4,14,24,28,30,35,36,51,52,56,85,92,93,98,102,130,133,135,182,191,212,226,249,253,254,271],multiplex:[14,22],multiplexor:97,multipli:[91,243],multitask:[93,243],must:[1,2,4,5,7,8,9,11,12,15,23,25,26,34,38,42,47,54,56,58,60,62,64,67,69,72,81,86,87,88,90,91,93,94,97,98,100,129,130,131,137,141,149,153,160,161,163,167,174,175,176,177,179,180,181,188,191,193,194,198,199,200,206,207,208,209,211,212,213,215,216,217,220,224,225,226,234,237,238,241,243,246,249,251,258,261,262,264,270,271,272,278,280,281,282,283,284,287,290,291],mutex:[89,93,99,100],mutual:92,my_at45db_dev:136,my_blinki:51,my_blinky_sim:[7,35,36,44,56,62,246,247,259,260,277],my_blocking_enc_proc:21,my_callout:[240,265],my_conf:130,my_config_nam:226,my_driv:[277,278],my_ev_cb:[240,265],my_eventq:238,my_gpio_irq:[240,265],my_interrupt_ev_cb:[240,265],my_memory_buff:91,my_new_target:51,my_newt_target:51,my_packag:206,my_package_log:206,my_pool:91,my_proj1:246,my_proj:246,my_project:[1,256,270,271,278],my_protocol_head:90,my_protocol_typ:90,my_result_mv:278,my_sensor:284,my_sensor_devic:284,my_sensor_poll_tim:284,my_stack_s:100,my_stat:224,my_stat_sect:224,my_target1:63,my_task:100,my_task_evq:90,my_task_func:100,my_task_handl:90,my_task_pri:100,my_task_prio:100,my_task_rx_data_func:90,my_task_stack:100,my_timer_ev_cb:[240,265],my_timer_interrupt_eventq:[240,265],my_timer_interrupt_task:[240,265],my_timer_interrupt_task_prio:[240,265],my_timer_interrupt_task_stack:[240,265],my_timer_interrupt_task_stack_sz:[240,265],my_timer_interrupt_task_str:[240,265],my_uart:194,myadc:278,myapp1:291,myapp:224,myapp_cmd:221,myapp_cmd_handl:221,myapp_console_buf:131,myapp_console_ev:131,myapp_init:131,myapp_process_input:131,myapp_shell_init:221,mybl:[35,36,47,51,67,74,77,78,238],myble2:[38,39,247],myblehostd:67,mybleprph:[67,241],mybletyp:67,myboard:[46,94],myboard_debug:94,myboard_download:94,mycmd:222,myconn:238,mycor:72,mydata:90,mydata_length:90,mylora:264,mymcu:96,mymfg:71,mymodul:98,mymodule_has_buff:98,mymodule_perform_sanity_check:98,mymodule_register_sanity_check:98,mynewt:[1,3,4,5,6,10,11,13,21,22,26,31,33,38,39,40,44,45,51,52,54,56,57,58,60,61,62,63,72,79,80,81,83,84,85,87,88,89,98,99,100,101,102,129,133,134,135,152,153,174,181,182,183,184,187,188,191,194,206,209,215,217,223,224,225,226,227,233,236,237,238,240,241,243,245,247,248,250,254,255,256,257,258,259,260,261,262,263,264,265,267,269,270,272,277,278,280,283,284,287,288,289,290,291,292,294],mynewt_0_8_0_b2_tag:[271,272],mynewt_0_8_0_tag:271,mynewt_0_9_0_tag:271,mynewt_1_0_0_b1_tag:271,mynewt_1_0_0_b2_tag:271,mynewt_1_0_0_rc1_tag:271,mynewt_1_0_0_tag:271,mynewt_1_3_0_tag:[58,60,81,83],mynewt_arduino_zero:[256,270,271],mynewt_nord:278,mynewt_stm32f3:237,mynewt_v:[215,220,224,226,269,278],mynewt_val_:226,mynewt_val_log_level:226,mynewt_val_log_newtmgr:226,mynewt_val_msys_1_block_count:226,mynewt_val_msys_1_block_s:226,mynewt_val_my_config_nam:226,mynewtl:279,mynewtsan:76,myperiph:[241,250],mypool:91,myproj2:223,myproj:[2,7,12,94,237,241,242,256,258,259,260,261,262,263,271,277,279,280,284,292],myriad:9,myself:14,myseri:[74,77,78],myserial01:67,myserial02:67,myserial03:67,mytarget:14,mytask:243,mytask_handl:243,mytask_prio:243,mytask_stack:243,mytask_stack_s:243,myudp5683:67,myvar:66,n_sampl:280,nad_flash_id:175,nad_length:175,nad_offset:175,nak:188,name1:51,name2:51,name:[1,2,4,7,8,10,11,12,14,21,22,28,30,35,36,38,39,43,44,45,46,48,49,51,52,54,56,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,91,94,95,96,98,100,101,102,130,131,135,153,155,156,157,160,161,162,165,181,182,187,199,200,201,203,205,206,207,208,209,210,212,216,220,221,222,223,225,229,230,232,237,238,240,243,246,249,251,253,254,255,256,258,259,260,261,262,263,265,269,270,271,272,273,277,278,279,280,281,284,287,288,290,291],name_is_complet:249,name_len:[155,156,157,162,165,249],namespac:[89,215,254],nano2:[44,54,94,263],nano2_debug:[94,263],nano:[257,294],nanosecond:[87,193],nativ:[2,3,7,12,44,51,54,56,60,62,67,130,191,225,226,237,240,247,259,260,265,270,277,278,288,294],natur:[94,180],navig:[10,294],nb_data_len:180,nb_hash_entri:180,nb_inode_entri:180,nb_prev:180,nb_seq:180,nbuf:90,nc_num_block:176,nc_num_cache_block:176,nc_num_cache_inod:176,nc_num_fil:176,nc_num_inod:176,ncb_block:180,ncb_file_offset:180,ncb_link:180,nci_block_list:180,nci_file_s:180,nci_inod:180,nci_link:180,nda_gc_seq:180,nda_id:180,nda_length:180,nda_mag:180,nda_ver:180,ndb_crc16:180,ndb_data_len:180,ndb_id:180,ndb_inode_id:180,ndb_magic:180,ndb_prev_id:180,ndb_seq:180,ndi_crc16:180,ndi_filename_len:180,ndi_id:180,ndi_mag:180,ndi_parent_id:180,ndi_seq:180,nding:253,ndof:280,ndof_fmc_off:280,nearest:259,nearli:14,neatli:249,necessari:[6,25,40,48,58,59,60,90,129,153,180,235,237,246,251,256,264,269,278],need:[4,5,6,7,8,9,10,11,12,14,15,24,25,33,44,51,53,56,58,59,60,61,62,65,67,81,82,84,85,86,89,90,91,92,93,94,96,97,98,99,100,129,131,136,141,142,143,153,180,192,195,206,207,209,210,211,212,215,221,223,224,225,226,231,238,240,241,243,246,247,249,251,252,253,254,255,256,258,259,260,261,262,263,265,269,270,272,273,276,277,278,279,281,284,287,288,290],neg:[90,101,180,253],neither:90,ness:191,nest:[92,160],net:[4,7,14,25,52,213,226,246,247,251,253,270,277,278,279,281,283],net_nimble_control:223,net_nimble_host:223,network:[1,9,14,24,28,32,33,56,90,93,223,243,264,270],never:[20,93,98,100,167,180,226,243,246,251],nevq:88,new_bletini:46,new_pool:90,new_slinki:46,newer:6,newest:[141,225,243],newli:[1,10,20,44,129,161,247,254,255,271],newlib:102,newlin:131,newt:[1,3,5,6,7,13,33,57,62,63,74,77,78,81,82,83,84,93,94,95,97,135,223,224,225,226,233,237,239,240,241,242,243,245,246,247,250,254,255,256,257,258,259,260,261,262,263,264,265,267,269,270,271,272,273,274,277,278,279,280,281,282,284,286,287,288,289,290,291,292,294],newt_1:[58,61],newt_1_1_0_windows_amd64:61,newt_1_3_0_windows_amd64:60,newt_group:2,newt_host:2,newt_us:2,newtgmr:[82,83,84],newtmgr:[1,7,9,13,58,59,60,64,65,79,80,131,132,134,196,206,218,219,223,225,226,240,265,277,278,289,294],newtmgr_1:[81,84],newtmgr_1_1_0_windows_amd64:84,newtmgr_1_3_0_windows_amd64:83,newtmgr_shel:215,newtron:[153,181,225,226],newtvm:11,next:[7,8,25,31,72,78,83,86,90,91,100,129,131,133,141,146,155,156,157,162,165,180,196,200,207,211,212,223,226,235,241,242,243,244,246,249,253,254,255,256,259,262,272,276,277,278],next_checkin:[78,287,290],next_t:86,nff:[7,102,136,153,175,176,177,178,179,181,189,225,226,233,269],nffs_area_desc:[14,174,177,178,228],nffs_area_mag:180,nffs_area_max:[177,178],nffs_block:180,nffs_block_cache_entri:180,nffs_block_cache_list:180,nffs_block_mag:180,nffs_cache_block:180,nffs_cache_block_list:180,nffs_cache_inod:180,nffs_close:181,nffs_closedir:181,nffs_detect:[178,180],nffs_detect_fail:[153,174],nffs_dirent_is_dir:181,nffs_dirent_nam:181,nffs_disk_area:180,nffs_disk_block:180,nffs_disk_inod:180,nffs_file_len:181,nffs_flash:189,nffs_flash_area:[14,225,226],nffs_format:[177,180,228],nffs_getpo:181,nffs_hash_entri:180,nffs_id_non:180,nffs_init:[176,177,178,181],nffs_inod:180,nffs_inode_entri:180,nffs_inode_list:180,nffs_inode_mag:180,nffs_intern:174,nffs_mkdir:181,nffs_op:181,nffs_open:181,nffs_opendir:181,nffs_pkg_init:14,nffs_read:181,nffs_readdir:181,nffs_renam:181,nffs_seek:181,nffs_short_filename_len:180,nffs_test:269,nffs_test_debug:269,nffs_test_priv:269,nffs_test_system_01:269,nffs_test_unlink:228,nffs_test_util:269,nffs_unlink:181,nffs_write:181,nhe_flash_loc:180,nhe_id:180,nhe_next:180,ni_filenam:180,ni_filename_len:180,ni_inode_entri:180,ni_par:180,ni_seq:180,nice:[224,276],nie_child_list:180,nie_hash_entri:180,nie_last_block_entri:180,nie_refcnt:180,nie_sibling_next:180,nil:68,nim:253,nimbl:[7,24,25,27,30,67,226,238,241,245,248,249,250,251,252,253,276,277,278,279,281],nimble_max_connect:14,njb:[201,202,203,204,205],njb_buf:205,njb_enc:203,nlip:218,nmgr:134,nmgr_def_taskstat_read:203,nmgr_err_eok:203,nmgr_jbuf:[201,202,203,204,205],nmgr_o:132,nmgr_shell:[131,226,238],nmgr_shell_in:218,nmgr_shell_out:219,nmgr_shell_pkg_init:226,nmgr_task_init:218,nmgr_transport:219,nmgr_uart:238,nmgr_urart_spe:238,nmxact:11,no_of_sampl:280,no_rsp:29,no_wl:[28,31],no_wl_inita:28,node:[14,22,33,56,155,156,157,162,165,180],nodefault:[200,205],nodup:28,nogdb:[39,48],noinputnooutput:28,non:[7,14,19,20,22,25,28,32,33,85,90,91,100,101,130,145,149,151,180,183,187,188,191,192,193,194,216,218,219,220,223,226,254,255,264,271,284],none:[4,7,8,12,21,28,31,83,88,94,102,129,180,217,221,222,223,228,231,237,256,260,264,284,291,292],nonexist:[161,180],nonsens:269,nonzero:[90,142,143,144,146,147,150,151,191,229,230,232,234,235,252,269],nor:23,nordic:[14,24,94,135,182,186,190,192,240,241,259,261,265,277,278,280,284,289,294],nordicsemi:[259,261,264,277,278,284],normal:[2,99,180,231,233,276,280],notat:[56,262],note:[1,2,4,6,7,10,11,12,14,22,23,24,25,30,33,44,48,51,58,59,60,61,62,67,69,72,81,82,83,84,86,87,88,90,91,92,93,94,95,100,129,130,131,137,174,188,191,193,196,207,208,209,210,212,215,216,220,223,225,226,237,238,241,243,244,246,247,249,251,253,254,255,256,258,259,260,261,262,263,264,267,270,271,272,273,278,279,280,281,282,284,286,287,288,290,291,294],noth:[11,180,228,254,255,278],notic:[7,11,56,62,93,94,181,223,243,246,272,277,278],notif:[10,14,28,29,88,131,211,248,276,278],notifi:[10,29,211,252,253],notnul:226,nov:8,novelbit:14,now:[2,8,9,14,60,85,87,90,91,92,94,99,100,129,152,154,158,161,164,167,169,171,180,187,194,223,237,238,241,242,243,246,248,249,250,252,253,254,255,256,259,264,269,271,276,277,278,280,284,288,291,292],nreset:256,nrf51:[25,54,94,135,182,267],nrf51dk:[54,223],nrf51xxx:190,nrf52840pdk:33,nrf52:[4,25,62,94,135,182,186,192,208,240,241,247,257,258,259,264,265,277,279,281,284,289,291,292,294],nrf52_bleprph_oic_bno055:279,nrf52_blinki:[258,261,263,291],nrf52_bno055_oic_test:[279,281],nrf52_bno055_test:[280,282],nrf52_boot:[238,247,261,278,279,280,281,287],nrf52_hal:94,nrf52_slinki:287,nrf52_thingi:208,nrf52dk:[38,39,54,62,63,94,226,240,246,247,250,258,261,265,276,277,278,279,280,281,287],nrf52dk_debug:[62,94,258],nrf52dk_download:94,nrf52k_flash_dev:[94,186],nrf52pdk:247,nrf52serial:287,nrf52xxx:[49,94,192,259,284],nrf5x:25,nrf:[26,278],nrf_saadc:278,nrf_saadc_channel_config_t:278,nrf_saadc_gain1_6:278,nrf_saadc_input_ain1:278,nrf_saadc_reference_intern:278,nrf_saadc_typ:278,nrfx:278,nrfx_config:278,nrfx_saadc:278,nrfx_saadc_config_t:278,nrfx_saadc_default_channel_config_s:278,nrfx_saadc_default_config:278,nrpa:[20,254,255],nsampl:280,nsec:87,nth:180,ntoh:90,ntohl:90,ntrst:256,nucleo:54,nul:180,num_block:91,num_byt:185,number:[1,8,9,10,14,23,28,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,84,85,87,88,90,91,92,93,94,99,100,101,102,129,130,140,141,142,152,158,164,169,171,172,173,174,175,176,180,183,187,188,190,191,193,194,196,198,199,200,207,215,216,220,224,225,226,231,238,240,241,243,247,253,254,255,256,258,262,264,265,270,271,272,276,277,278,280,281,287,290,291],numer:[14,21,23,86,94,129],nvm:256,nxp:[14,135,182],objcopi:[6,14],objdump:6,object:[4,11,49,56,62,82,87,93,94,97,100,133,167,200,202,203,204,209,211,212,252,269,280,283],objsiz:[6,49,223],observ:[15,28,213,247,283],obtain:[14,28,90,92,99,100,180,193,271,277,278],obvious:54,oc_add_devic:279,oc_add_resourc:279,oc_app_resourc:[279,281],oc_get:279,oc_if_rw:279,oc_init_platform:279,oc_main_init:[213,279],oc_new_resourc:279,oc_put:279,oc_resource_bind_resource_interfac:279,oc_resource_bind_resource_typ:279,oc_resource_set_default_interfac:279,oc_resource_set_discover:279,oc_resource_set_periodic_observ:279,oc_resource_set_request_handl:279,oc_serv:[213,238,279,281,283],oc_transport_gatt:238,oc_transport_ip:238,oc_transport_seri:238,occasion:90,occur:[27,28,90,92,101,187,188,191,225,251,252,254,255],occurr:226,ocf:[133,277],ocf_sampl:[7,62],ocimgr:132,ock:212,octet:[28,30,32,129],od_init:135,od_nam:209,odd:194,odditi:14,off:[2,14,21,22,32,33,85,88,90,97,98,100,131,135,141,182,183,188,205,207,209,210,214,238,240,241,242,246,247,254,255,258,262,265,279,281,282,283,284,286,294],off_attr:205,offer:[1,22,133,135,152,185,278],offset1:90,offset2:90,offset:[21,29,72,90,94,101,129,141,149,153,159,163,168,169,171,172,173,175,180,200,223,225,226,280],often:[9,56,94,180,188,191],ogf:277,ohm:278,oic:[7,14,52,67,133,210,211,284,294],oic_bhd:67,oic_bl:67,oic_seri:67,oic_udp:67,oic_udpconnstr:67,oicmgr:[7,67,132,133,134],okai:14,old:[46,141],older:[14,60,83,260],oldest:[141,146,150,225],olimex:[257,277,289,294],olimex_blinki:262,olimex_stm32:[54,262,290],om1:90,om2:90,om_data:90,om_databuf:90,om_flag:90,om_len:90,om_omp:90,om_pkthdr_len:90,ome:91,omgr:134,omi_block_s:91,omi_min_fre:91,omi_nam:91,omi_num_block:91,omi_num_fre:91,omit:[14,48,225],omp:90,omp_databuf_len:90,omp_flag:90,omp_len:90,omp_next:90,omp_pool:90,on_reset:27,on_sync:27,onboard:[8,209,210,282,286,291,292,294],onc:[20,30,56,58,62,81,85,87,90,91,92,93,100,129,144,182,191,193,235,237,238,241,242,249,254,257,258,264,271,277,278],one:[1,4,7,8,10,11,12,14,20,21,22,23,24,28,30,31,32,35,36,40,44,46,51,52,54,58,59,60,62,68,86,88,90,92,93,94,97,99,100,129,130,131,137,138,141,153,166,167,174,175,177,178,180,183,188,191,196,206,207,211,212,221,223,224,225,226,242,243,244,246,247,253,254,255,256,257,258,259,260,261,262,263,264,269,270,271,272,273,276,277,278,280,286,287,290,294],ones:[15,90,99,135,182,206,247,294],ongo:28,onli:[1,2,7,8,10,11,12,14,15,20,21,25,28,30,32,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,62,63,67,73,81,84,87,88,90,91,93,94,97,98,99,101,129,130,131,132,135,136,137,139,151,153,155,156,157,159,162,165,166,168,169,174,175,180,188,191,196,206,207,209,210,212,215,220,223,224,225,226,230,231,233,234,236,238,241,242,243,244,249,251,254,256,258,264,267,269,270,271,272,273,277,278,279,280,283,284,288],onlin:[256,284,291,292],onto:[1,21,43,44,48,85,88,90,94,257,259,260,261,262,263,276,277,280,287,290],oob:[14,21,28,30],opaqu:[153,193,206,207,209,211,284],open:[4,8,9,10,12,14,21,22,39,40,48,56,58,59,60,62,97,133,135,153,154,158,159,161,162,164,165,168,169,170,171,172,173,176,180,208,254,256,259,260,262,263,269,277,282,288],open_test:269,openocd:[12,94,256,259,260,262,263,290],openocd_debug:259,oper:[1,9,12,16,19,21,22,27,32,40,58,59,60,85,90,97,98,99,100,101,131,133,135,153,161,162,163,168,170,174,175,179,180,181,182,183,185,187,194,207,212,224,226,227,236,246,247,251,252,253,254,255,256,264,269,270,272,273,276,277,278,280,284],oppos:[32,90,273],opt:4,optim:[1,25,33,38,39,44,51,62,90,94,95,102,135,223,237,243,246,247,250,256,259,260,261,262,263,264,270,277,278,280,284,287,290],optimis:32,option:[2,3,4,6,7,8,12,14,23,24,28,37,38,47,52,56,63,67,73,85,86,88,91,94,129,133,135,151,152,198,207,209,210,215,223,225,226,228,233,244,246,247,253,256,260,262,264,270,271,272,277,280,290],orang:[259,263],order:[1,9,14,23,34,56,62,64,86,88,90,91,92,98,100,102,129,130,133,180,191,207,225,226,238,242,243,264,269,272,274,277,278,284,291,292],org:[1,4,10,11,14,40,58,59,60,62,81,83,102,131,138,254,256,259,260,262,263,269,277,278,284,291,292],organ:[11,135,224,269,271],origin:[11,47,94,129,262],os_align:[90,91],os_arch:[62,91,101],os_bad_mutex:92,os_callout:[62,85,98,130,240,258,265,284],os_callout_func:[85,90],os_callout_func_init:85,os_callout_init:[85,98,240,258,265,284],os_callout_queu:85,os_callout_remaining_tick:85,os_callout_reset:[85,98,240,258,265,284],os_callout_stop:85,os_cfg:62,os_cli:226,os_cputim:[14,62],os_cputime_delay_nsec:87,os_cputime_delay_tick:87,os_cputime_delay_usec:87,os_cputime_freq:25,os_cputime_freq_pwr2:87,os_cputime_get32:87,os_cputime_init:87,os_cputime_nsecs_to_tick:87,os_cputime_ticks_to_nsec:87,os_cputime_ticks_to_usec:87,os_cputime_timer_init:87,os_cputime_timer_num:[25,87],os_cputime_timer_rel:87,os_cputime_timer_start:87,os_cputime_timer_stop:87,os_cputime_usecs_to_tick:87,os_dev:[62,135,207,208,209,282],os_dev_clos:[208,282],os_dev_cr:[135,207,208,209,212],os_dev_init_func_t:[135,209],os_dev_init_primari:208,os_dev_open:[208,278,282],os_einv:[90,101,205],os_eno:130,os_error_t:[86,91,92,99],os_ev:[85,88,90,98,130,131,240,258,265,284],os_event_fn:[85,88,90],os_event_queu:88,os_event_t_mqueue_data:90,os_event_t_tim:85,os_eventq:[62,85,88,90,98,131,217,240,265,276,278],os_eventq_dflt_get:[27,88,93,100,131,226,240,254,255,258,265,282,284],os_eventq_get:[88,98],os_eventq_get_no_wait:88,os_eventq_init:[88,90,98,131,240,265,276,278],os_eventq_pol:88,os_eventq_put:[88,131,240,265],os_eventq_remov:88,os_eventq_run:[27,88,90,93,100,226,240,254,255,258,265,282,284],os_exit_crit:86,os_fault:62,os_get_uptim:101,os_get_uptime_usec:101,os_gettimeofdai:101,os_heap:62,os_init:[87,100],os_invalid_parm:[92,99],os_main_task_prio:[226,243],os_main_task_stack_s:226,os_malloc:[62,89],os_mbuf:[62,90,218,219],os_mbuf_adj:90,os_mbuf_append:[90,276,278],os_mbuf_appendfrom:90,os_mbuf_cmpf:90,os_mbuf_cmpm:90,os_mbuf_concat:90,os_mbuf_copydata:90,os_mbuf_copyinto:90,os_mbuf_count:90,os_mbuf_data:90,os_mbuf_dup:90,os_mbuf_extend:90,os_mbuf_f_:90,os_mbuf_f_mask:90,os_mbuf_fre:90,os_mbuf_free_chain:90,os_mbuf_get:90,os_mbuf_get_pkthdr:90,os_mbuf_is_pkthdr:90,os_mbuf_leadingspac:90,os_mbuf_off:90,os_mbuf_pkthdr:90,os_mbuf_pkthdr_to_mbuf:90,os_mbuf_pktlen:90,os_mbuf_pool:90,os_mbuf_pool_init:90,os_mbuf_prepend:90,os_mbuf_prepend_pullup:90,os_mbuf_pullup:90,os_mbuf_trailingspac:90,os_mbuf_trim_front:90,os_mbuf_usrhdr:90,os_mbuf_usrhdr_len:90,os_memblock:91,os_memblock_from:91,os_memblock_get:91,os_memblock_put:91,os_memblock_put_from_cb:91,os_membuf_t:[90,91],os_mempool:[62,90,91],os_mempool_byt:91,os_mempool_clear:91,os_mempool_ext:91,os_mempool_ext_init:91,os_mempool_f_:91,os_mempool_f_ext:91,os_mempool_info:91,os_mempool_info_get_next:91,os_mempool_info_name_len:91,os_mempool_init:[90,91],os_mempool_is_san:91,os_mempool_put_fn:91,os_mempool_s:[90,91],os_mqueu:90,os_mqueue_get:90,os_mqueue_init:90,os_mqueue_put:90,os_msys_count:90,os_msys_get:90,os_msys_get_pkthdr:90,os_msys_num_fre:90,os_msys_regist:90,os_msys_reset:90,os_mutex:[62,86,92,141,207],os_mutex_init:92,os_mutex_pend:92,os_mutex_releas:[86,92],os_ok:[86,92,99],os_pkg_init:226,os_san:[62,98],os_sanity_check:[98,100],os_sanity_check_func_t:98,os_sanity_check_init:98,os_sanity_check_regist:98,os_sanity_check_reset:98,os_sanity_check_setfunc:98,os_sanity_task_checkin:98,os_sch:[62,86],os_sched_get_current_t:243,os_sched_get_current_task:[86,98,243],os_sched_next_task:86,os_sched_set_current_task:86,os_sem:[62,93,99,277],os_sem_get_count:99,os_sem_init:[14,93,99,277],os_sem_pend:[14,93,99,277],os_sem_releas:[14,93,99,277],os_sem_test_bas:232,os_sem_test_case_1:232,os_sem_test_case_2:232,os_sem_test_case_3:232,os_sem_test_case_4:232,os_sem_test_suit:232,os_settimeofdai:101,os_stack_align:[243,276,278],os_stack_t:[98,100,218,240,243,265,276,278],os_start:100,os_stime_t:101,os_sysview:292,os_task:[62,86,88,92,93,98,100,240,243,265,276,278],os_task_count:100,os_task_flag_evq_wait:100,os_task_flag_mutex_wait:100,os_task_flag_no_timeout:100,os_task_flag_sem_wait:100,os_task_func_t:[98,100],os_task_info:100,os_task_info_get_next:100,os_task_init:[93,98,100,240,243,265,276,278],os_task_max_name_len:100,os_task_pri_highest:100,os_task_pri_lowest:100,os_task_readi:100,os_task_remov:100,os_task_sleep:100,os_task_st:100,os_task_stack_defin:100,os_task_state_t:100,os_test:62,os_test_restart:235,os_tick_idl:[190,256,259,284],os_tick_init:190,os_tick_per_sec:14,os_ticks_per_sec:[14,85,98,101,130,190,209,240,243,258,265,276,277,278,284],os_tim:[62,101,269],os_time_adv:101,os_time_delai:[14,100,101,209,240,242,243,265,276,278],os_time_get:101,os_time_max:101,os_time_ms_to_tick:101,os_time_ms_to_ticks32:101,os_time_t:[85,88,98,100,101,190,207,209],os_time_tick_geq:101,os_time_tick_gt:101,os_time_tick_lt:101,os_time_ticks_to_m:101,os_time_ticks_to_ms32:101,os_timeout:[92,99,277],os_timeout_nev:[93,101,208,282,284],os_timeradd:101,os_timersub:101,os_timev:[101,269],os_timezon:[101,269],os_wait_forev:[88,93,100,240,243,265,276,278],osmalloc:89,ostask:100,ostick:101,osx:[237,242],ota:238,otg1:262,otg2:[262,290],other:[1,6,8,10,11,14,21,23,25,30,32,51,56,62,87,88,90,91,93,94,95,98,99,100,101,129,130,131,135,153,154,162,165,170,174,175,177,180,185,188,206,209,211,215,223,224,226,237,240,243,246,247,248,249,251,252,256,257,258,259,265,267,269,271,276,277,278,279,280,281,284,286,291,292],otherwis:[14,90,91,93,100,143,145,148,187,191,271,272],oti:100,oti_cswcnt:100,oti_last_checkin:100,oti_nam:100,oti_next_checkin:100,oti_prio:100,oti_runtim:100,oti_st:100,oti_stks:100,oti_stkusag:100,oti_taskid:100,oui:[20,264],our:[14,21,56,90,94,223,224,237,238,242,243,246,249,254,255,257,258,269,272,276,278,287,290],our_id_addr:[31,250],our_id_addr_typ:250,our_key_dist:28,our_ota_addr:[31,250],our_ota_addr_typ:[31,250],out:[8,9,11,21,22,23,24,27,28,62,81,82,83,85,90,96,100,129,131,137,141,142,145,147,161,162,174,181,182,183,199,201,202,203,204,223,228,235,246,248,250,254,255,257,262,270,289],out_cpha:191,out_cpol:191,out_data:[163,164],out_dir:[162,163,165],out_fil:[161,163],out_id_addr_typ:31,out_len:[158,163,164,172],out_m:101,out_nam:[137,157,163],out_name_l:157,out_name_len:[157,163],out_off:90,out_tick:101,outdat:59,outfil:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63],outgo:219,outlin:5,output:[1,7,12,14,22,23,28,31,35,36,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,55,58,59,60,63,70,74,76,77,78,82,89,94,100,101,129,182,187,194,206,223,225,228,237,240,256,258,259,260,262,263,264,265,269,270,277,280,284,288,291],outsid:[21,22,90,227],outweigh:90,over:[14,21,22,23,24,28,30,32,66,67,68,69,70,71,72,73,74,75,76,77,78,90,129,134,135,137,141,143,151,188,194,206,223,238,243,251,257,258,260,264,270,276,277,279,280,281,283,286,289,291,294],overal:[10,14,25,90,100,174],overflow:101,overhead:90,overlap:[21,180],overrid:[51,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,94,206,223,224,238,247,278],overridden:[24,226,247],overview:[129,280,281,284],overwrit:[6,50,51,60,61,83,84,94,131,180,256,267,270],overwrite_many_test:269,overwrite_one_test:269,overwrite_three_test:269,overwrite_two_test:269,overwritten:[129,173,180],own:[2,11,14,20,21,40,58,59,60,62,88,92,93,97,99,100,136,180,191,206,223,224,244,245,246,278],own_addr_t:[254,255],own_addr_typ:[28,67,254,255,277],owner:[88,92,273],ownership:[92,180,277,278],pacakg:246,pacif:101,pack:[4,56,82,90,241,259,261,270,280,284,287],packag:[6,9,11,14,24,25,27,35,40,41,42,44,46,51,52,53,54,56,57,59,60,61,80,84,88,93,95,100,129,130,132,133,135,138,139,153,163,174,182,183,196,197,200,208,209,212,213,214,215,223,224,232,233,234,237,240,247,257,258,259,264,265,268,271,272,278,281,282,283,294],package1:206,package1_log:206,package2:206,package2_log:206,packet:[21,22,28,30,188,215,219,254,264],packet_data:90,pacman:[7,60],pad:[90,129],page:[1,4,5,6,7,8,10,21,23,58,59,61,81,82,84,94,102,136,181,188,189,207,208,209,210,237,242,244,246,248,252,254,255,257,278],page_s:136,pair:[21,22,23,28,67,129,130,180,200,205,226,250,252],pakcag:215,panel:12,paradigm:90,param:[28,215,220,252],param_nam:215,paramet:[1,14,21,27,28,29,31,62,67,73,85,86,87,88,90,91,92,98,99,100,101,130,137,141,151,183,187,188,190,191,193,194,195,206,208,209,215,226,238,249,251,252,253,254,255,269],parameter_nam:226,parameter_valu:226,parent:[91,155,156,157,162,165,167,173,180],parenthes:90,pariti:194,parlanc:11,parmaet:28,parmet:[28,29],pars:[56,198,215,228,231,254,269],part:[14,23,30,90,96,129,141,169,174,175,180,181,223,249,250,253,277,278,283],parti:[254,256,270],partial:[65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,129,174,175],particular:[4,14,21,48,62,90,93,94,97,98,129,131,135,153,182,191,193,200,235,252,254,255],particularli:267,partit:[21,94,129,174,180,223],partner:14,pass:[1,7,12,14,21,28,62,85,87,88,90,91,92,98,99,100,130,131,135,136,140,141,151,161,164,172,180,187,188,191,193,194,200,207,208,209,211,215,218,229,230,231,232,249,253,254,255,269,284],passiv:[14,28],passkei:[14,21,23,28],password:[11,59,81,247,273],past:[21,90],patch:[259,260,263],path:[2,4,6,11,12,14,30,51,58,59,60,61,62,67,81,82,83,84,94,95,153,160,161,162,163,167,170,172,173,226,271,277,278],pathloss:30,pattern:[28,94,243],payload:[14,90,133,134,188],pc6:290,pc7:290,pca100040:247,pca:[241,261,277,278],pcb:277,pci:[135,182],pcmcia:[135,182],pdata:188,pdf:[237,290],pdt:[101,269],pdu:[14,21,28],peek:243,peer:[10,23,29,67,191,241,251,253,254,255],peer_addr:[28,31,67,249],peer_addr_typ:[28,31,67,249],peer_id:67,peer_id_addr:250,peer_id_addr_typ:250,peer_nam:[14,67,241],peer_ota_addr:250,peer_ota_addr_typ:250,pem:[38,47],pencil:10,pend:[21,85,88,92,99,129,188,241],per:[11,14,20,90,92,129,130,174,183,187,191,194,224,243,269,272],perfom:129,perform:[3,4,5,9,11,12,14,21,23,26,28,37,58,59,60,65,81,82,83,86,90,91,93,94,98,100,102,129,131,136,152,153,167,180,188,193,212,223,226,237,241,251,256,258,259,264,272,276,278,279,280,281,284],perhap:271,period:[9,14,20,23,28,85,98,190,195,240,243,265],peripher:[9,14,21,22,25,27,30,31,94,97,135,182,183,188,191,224,241,245,246,249,252,253,254,276,277,278],perman:[72,129,180,223,241,249,252],permiss:[277,278],permit:[21,253,256,284,291,292],persist:[14,129,152],perspect:223,pertain:252,petteriaimonen:102,phdr:90,phone:[14,23,32],php:56,phy:[22,28],phy_init:278,phy_opt:28,physic:[22,28,30,67,131,184,187,194],pick:[86,93,206,254,255],pictur:[237,259],pid:260,piec:[22,94,277],pig:244,pin:[7,8,21,94,97,100,135,182,184,187,188,191,192,194,207,237,240,258,259,262,264,265,270,277,278,280,284,290],ping:93,pinout:96,pipe:14,piqu:294,pitfal:90,pkcs15:129,pkg1:225,pkg2:225,pkg:[1,7,11,40,44,51,54,56,58,59,60,62,95,96,102,131,135,136,137,152,153,181,182,206,208,215,224,225,226,238,240,246,258,265,269,277,278,279,284],pkg_init_func1_nam:226,pkg_init_func1_stag:226,pkg_init_func2_nam:226,pkg_init_func2_stag:226,pkg_init_func:226,pkg_init_funcn_nam:226,pkg_init_funcn_stag:226,pkg_test:234,pkga_syscfg_nam:226,pkga_syscfg_name1:226,pkga_syscfg_name2:226,pkgn_syscfg_name1:226,pkt:277,pkthdr_len:90,pkts_rxd:90,place:[3,56,62,88,101,102,129,141,169,188,191,223,226,233,238,242,243,246,247,253,254,255,262,272,286],plai:[12,14,22,286],plain:[223,260,272],plan:[2,14,135,215],platform:[2,7,9,11,12,24,25,58,59,60,67,81,82,83,85,93,94,95,97,135,183,188,191,193,227,233,241,243,246,256,258,259,260,262,263,270,277,278,280,287,288,289,290],pleas:[14,40,58,59,60,95,96,207,211,212,224,237,242,256,257,271,278,284,291,292],plenti:243,plist:62,plu:[90,157,180,188],plug:[8,181,237,262,263,278],plumb:276,pmode:280,point:[2,4,6,14,32,86,90,92,94,96,100,102,129,130,131,135,142,143,144,145,146,148,149,150,151,162,163,165,180,191,207,246,251,252,254,255,278,279],pointer:[68,85,86,87,88,90,91,92,94,99,100,101,130,131,135,141,142,143,151,154,156,157,158,159,161,163,164,169,171,172,173,180,181,183,188,191,193,198,199,200,206,207,208,209,212,215,216,217,220,221,228,243,251,252],poke:278,polici:[28,271],poll:[14,88,93,211,280,284],poll_du:280,poll_dur:280,poll_interv:280,poll_itvl:280,poller:[207,211,212,284],pong:93,pool:[74,81,93,264,281,288],popul:[1,7,12,51,63,101,176,180,233,257,270,286,289,294],port:[2,12,67,93,131,135,187,194,206,224,238,247,256,258,259,260,261,262,263,270,277,280,284,287,288,289,290,294],portabl:[135,182],portingto:95,portion:[129,147,188,278],posit:[90,101,129,159,169,172,195,262],posix:60,possibilti:[291,292],possibl:[14,22,23,25,28,29,31,33,37,54,90,92,101,129,135,153,174,175,180,182,183,206,223,224,253,271,280,291],post:[50,85,90,135,240,246,265],potenti:[97,223,272],pour:[59,82],power:[2,9,14,21,22,23,28,30,32,56,94,97,131,135,182,183,191,192,209,238,241,247,256,261,262,264,270,279,280,281,282,284,287,290],ppa:4,pre:[4,9,206,224,271,272,277,278],precaut:251,prece:90,preced:24,precis:[6,21],predict:243,preempt:[92,93,99,100],preemptiv:[93,100,243],prefer:[3,28,30,139,241,251,277],preference0x01:28,prefix:[62,180,210,226,278],preload:191,prepar:[21,259,261,264,278],prepend:90,preprocessor:[215,224],prerequisit:12,presenc:[94,180,249,254,255,271],present:[1,14,90,94,129,131,180,196,208,223,247,262,269],preserv:90,press:[8,12,14,99,240,243,246,265,270,280,292],presum:[90,264],pretti:[14,278],prev:[100,180],prev_ind:252,prev_notifi:252,prevent:[92,93,129,170,251],previ:[250,252],preview:[244,247],previou:[22,57,58,59,60,79,80,81,82,83,100,129,180,192,200,225,226,246,247,258,271,276],previous:[6,12,58,59,60,61,81,82,83,84,191,238,250,274,278,280],prevn:[250,252],pri:[78,183,287,290],primari:[28,94,129,133,167,241,253,255,276],primarili:102,primary_phi:28,primo:[257,277],primo_boot:259,primo_debug:259,primoblinki:259,print:[49,58,59,60,63,130,131,137,155,156,157,162,165,172,194,215,225,228],print_statu:172,print_usag:198,printabl:199,printf:[102,137,228,231],prio:[98,100,190,218],prior:[23,25,50,90,93,129,167,176,180,191,193,264],prioriti:[14,78,86,88,92,93,99,100,135,174,183,190,226,240,247,265,294],priv:28,privaci:[20,22,28],privat:[20,23,33,38,47,58,67,81,129,254,255],privileg:2,prng:14,pro:[14,243,256,259],probabl:[7,14,94,248,273,277],probe:[188,259,270,284],problem:[7,99,129,162,223,225],proce:[3,6,11,129,235,256,259,260,261,262,263,269,270,287,290],procedur:[6,11,17,20,21,23,28,29,65,76,81,82,83,129,180,181,223,277,280,283],proceed:[7,248,254,255],process:[3,6,9,10,14,21,23,27,28,32,62,85,86,88,90,94,100,129,131,132,180,212,213,217,223,224,226,237,238,240,243,254,255,265,277,279,282,283,284,291,292],process_data:170,process_rx_data_queu:90,processor:[4,9,90,100,135,182,183,187,243,256,262,284,291,292],produc:[99,129,224,231,260],product:[14,56,97,175,187,210,247,277,290],profil:[15,16,17,18,22,28,29,32,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,246,256,287,289,290],profile01:[66,68,69,70,71,72,73,74,75,76,77,78],profile0:78,program:[4,6,8,12,24,86,129,131,189,192,237,243,256,258,259,261,264,270,278],programat:131,programm:[260,291,292],programmat:[138,284],progress:[7,14,21,129,135,136,180,191,245],prohibit:168,project:[3,6,8,11,34,35,40,41,42,45,50,51,53,56,58,59,60,62,64,89,100,102,129,131,136,137,139,152,177,178,182,196,206,224,232,233,240,242,243,244,250,269,273,274,279,280,284,285,286,291,294],prompt:[7,8,11,12,48,59,60,94,246,256,258,259,260,261,262,263,280,284],prone:253,proper:[135,277],properli:[25,62,93,98,243,247,251,276,278],properti:[12,20,32,60,94,129,134,174,175,180,206,237,248,259],proport:180,propos:10,prot_length:90,prot_tif:90,prot_typ:90,protcol:90,protect:[23,89,129,141],protocol:[14,15,21,22,29,62,67,90,129,133,134,188,281,283,286,289],prototyp:[97,194,226,254,255],provid:[1,2,7,8,9,11,12,14,20,21,22,23,28,31,32,38,40,46,51,58,59,60,67,71,72,73,76,81,85,87,89,90,91,92,93,94,96,97,98,100,101,129,131,135,136,137,141,152,153,174,182,187,188,191,193,198,207,210,212,213,215,224,233,236,238,248,254,255,256,264,269,270,271,272,277,278,283],provis:[14,22,33],provision:[14,32],proxi:[22,32],pseln:278,pselp:278,pset:191,psm:[14,28],psp:[256,260],pst:[69,101,269],pth:262,ptr:194,public_id:28,public_id_addr:31,public_target_address:30,publish:[14,23],pull:[11,14,50,81,83,88,90,135,187,240,258,262,265],pulldown:187,pullup:[90,187],purpos:[4,8,14,23,51,56,94,98,129,182,187,206,209,211,223,224,243,251,264,278,284],push:[10,14,244],put:[1,2,7,44,62,81,83,88,90,91,92,94,99,100,101,134,183,243,249,254,255,269,278],putti:[8,258,270,280],pwd:[2,11],pwm:[9,14],pwr:[260,262],px4:4,python:[34,64],qualifi:251,qualiti:285,quat:280,queri:[9,20,51,56,58,59,60,62,63,90,134,156,157,158,159,172,180,207,209,224,249,280,288],question:246,queu:[21,85,88,194,240,265],queue:[27,62,85,87,90,93,98,99,100,131,180,193,212,215,217,219,226,238,254,255,266,276,282,284,286,294],quick:[2,3],quickli:[101,182,243,278,280,283,284,286],quickstart:[2,243],quiet:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63],quit:[20,94,246,249,254,255,256,259,260,262,263,291],quot:67,r_find_n:212,r_lock:212,r_match_:212,r_regist:212,r_unlock:212,radio:[22,25,247],raff:82,rais:92,ram:[49,94,96,174,183,223,246,256,277,279],ram_siz:94,ran:[14,98],rand:[14,28],random:[20,21,26,28,31,67,247,253,254,255,276,278],random_id:28,random_id_addr:31,randomli:20,rang:[9,21,22,30,90,102,180,198,264],rare:90,rate:[14,67,85,131,212,213,247,264,280,283,284],rather:[14,15,21,94,101,102,129,153,167,223,278],raw:[11,58,59,60,81,82,83,131,174,180,226,228,278],rb_bletini:51,rb_blinki:[44,51],rb_blinky_rsa:44,rb_boot:44,rbnano2_blinki:263,rbnano2_boot:263,rdy:86,reach:[98,193],read:[4,6,7,11,12,15,19,20,21,24,28,29,56,62,65,66,69,74,77,78,81,82,83,88,90,100,129,130,131,135,136,137,141,143,146,147,151,153,154,155,156,157,159,161,162,164,165,169,170,172,180,185,187,188,193,200,205,206,211,212,213,214,226,228,237,238,240,241,243,250,252,253,254,255,256,257,260,263,264,265,269,270,271,276,277,278,279,280,281,283,286,289,291,292],read_acceleromet:284,read_cb:284,read_chr:251,read_config:[154,161,164],read_part1_middl:169,read_rsp_rx:77,read_rsp_tx:77,read_sensor_interv:284,read_test:269,read_type_req_rx:77,read_type_req_tx:[77,238],read_type_rsp_rx:[77,238],read_type_rsp_tx:[77,238],readabl:[247,273],readdesc:7,readdir_test:269,reader:[269,276,278],readi:[10,86,88,100,131,194,200,243,256,277,291],readili:135,readm:[7,11,56,62,94,246,269],readnow:62,real:[1,7,9,14,88,93,101,131,180,200,236,240,246,253,265,277,284,291],realist:269,realli:[14,90,278],rearm:85,rearrang:90,reason:[14,21,27,28,90,91,129,192,243,250,252,264,269,271],reassembl:22,rebas:11,reboot:[7,14,72,129,192,223,225,241,279,281],reboot_log:73,reboot_log_flash_area:[225,226],reboot_start:282,rebuild:[14,33,62,83,282],rec0:129,rec1:129,rec2:129,recal:[251,271],receiv:[10,14,15,21,28,30,32,56,82,90,131,132,137,188,191,194,207,212,215,218,221,238,249,252,253,260,264,284,287,290],recent:[180,259,278],recip:6,recipi:30,reclaim:180,recogn:[56,180,278],recommend:[3,4,7,12,14,58,59,81,82,90,131,189,208,209,215,225,226,238,240,249,253,259,263,265,267,280,286,291],reconfigur:[191,194,282],reconnect:251,record:[129,180,209,224,233,292],recov:129,recover:129,recreat:272,recur:195,recurs:[56,62,91,170],red:[28,29,237,260,262,290],redbear:[257,294],redefin:225,redistribut:[56,256,271,284,291,292],redo:14,reduc:[9,23,25,32,88,102,133,206,238,240,265,268],redund:223,reenter:267,ref0:68,refer:[7,8,10,14,19,23,24,30,56,68,94,167,170,180,191,210,216,220,223,244,249,254,255,256,258,262,270,278,280,290],referenc:[1,180,187],reflect:250,reformat:180,refrain:27,refresh:[2,50,244,256],refus:[284,291],regard:[174,175,269,277,278],regardless:42,region:[14,90,94,129,168,174,175,180],regist:[14,24,76,86,90,95,130,132,135,139,153,163,166,182,183,188,197,206,207,211,213,216,218,220,221,222,226,243,251,253,277,278,284],register_:211,registr:[18,130,181,224,251,284],registri:[90,209],regress:[229,230,232,233,234],regular:[90,156,269],reject:[21,269],rel:[14,90,93,149],relai:[22,32],relat:[10,28,32,44,136,223,249,252,256,264,284,291,292],relationship:[28,99],releas:[3,4,7,32,50,57,79,80,90,91,92,93,99,135,187,188,215,226,256,270,271,272,278],release_not:[7,11],relev:[96,129,135,187],reli:[1,7,56,226],reliabl:[14,22,129,152,174,254,255,272],reload:14,remain:[85,94,164,170,180,223,228,231,243,251],remaind:[94,180,231,249,269,271],rememb:[2,42,81,83,92,256],remind:256,remot:[1,7,9,12,21,28,29,50,56,67,79,81,82,83,133,188,237,238,240,241,247,256,257,258,265,270,277,284,286,288,289,294],remov:[2,4,6,28,36,46,61,84,87,88,90,91,99,100,131,137,180,223,251,256,284],renam:[14,167],rename_test:269,repeat:[2,11,21,188,242,251],repeatedli:[30,129],replac:[4,6,94,96,102,196,223,226,228,231,242,256,258,287,290],repli:28,repo814721459:56,repo:[1,6,7,10,11,14,42,56,58,62,81,94,135,153,223,237,244,246,256,258,259,260,261,262,263,264,269,270,273,277,279,280,284,287,288,290,291,292],repop:7,report:[1,4,6,10,14,21,94,183,194,224,228,231,256,260,269,277,284,291,292],reposistori:7,reposit:169,repositori:[1,4,11,12,41,42,45,50,52,53,58,62,81,135,237,244,245,246,248,256,257,264,270,274,277,278,286,289,294],repres:[1,8,12,14,62,88,90,99,101,129,131,160,180,207,209,211,212,215,243,253],represent:[129,133],reproduc:[1,62,129,181,254,255],req_api:[62,131,206],req_len:90,request:[12,14,21,28,67,68,75,79,90,92,94,99,129,133,134,137,141,164,180,192,210,211,213,215,223,238,250,251,256,260,262,264,271,272,276,278,279,283,284,287,290],requir:[1,2,4,6,9,11,14,21,25,31,32,54,60,62,67,81,83,88,90,91,93,95,96,97,99,129,131,133,136,153,163,174,175,180,193,206,208,215,223,224,225,226,230,237,238,240,243,246,249,251,256,259,263,264,265,269,271,272,276,277,280,282,283,284,294],res:279,resch:86,reserv:[21,90,94,97,142,144,180,207,243,264],reserved16:180,reserved8:180,reset:[26,65,79,81,82,83,85,98,132,133,192,223,235,238,246,247,250,259,260,261,263,278,280,284,291,292],reset_cb:27,reset_config:256,reset_handl:[94,262],resid:[97,129,175,180,242,253,277],resign:[58,59,60],resist:278,resistor:[240,265,278],resolut:[23,87,193,224],resolv:[1,14,20,21,23,28,33,56,67,82,225,237,254,255,271],resourc:[9,21,30,62,89,92,99,134,210,211,213,215,237,240,256,265,278,279,281,283,284,290,291,292],respect:101,respond:[18,26,223,249,251,253,276,277],respons:[14,16,21,29,30,70,86,91,93,131,133,137,213,223,243,249,251,270,277,283,287,288,290],rest:[1,14,47,62,90,180,198,200,228],restart:[2,129,130,141,180,192,256],restor:[14,130,174,177,178,180,259,261,264,278],restrict:[129,141,174,175,180,215,226,251,252],restructuredtext:10,result:[12,14,21,59,63,90,101,161,162,175,180,199,207,224,226,231,233,253,260,269,276,277,278],resum:[22,100,129,180,249,252],resynchron:50,retain:[129,180,226,252],retent:183,retransmit:32,retreiv:134,retri:[263,264],retriev:[58,81,88,90,101,133,153,155,156,157,158,159,162,164,165,172,175,207,209,246,286],reus:[56,82,129,226],reusabl:56,rev:280,revdep:[1,51,63],revers:[1,24,51,63,129,180,251,262],revert:[129,241],review:[10,223,249,269],revis:[4,198,280],revision_num:[271,272],revisit:[246,252],rewrit:180,rewritten:180,rfc:[69,200,269],ribbon:[262,290],rigado:[49,261,278],right:[2,3,10,14,56,62,130,244,249,262,278],rimari:253,ring:99,rise:187,ristic:253,rite_fil:153,robust:152,role:[14,21,22,31,32,99,251],room:[90,180,243],root:[2,4,8,32,81,137,166,180,237,271],rotat:167,rotate_log:167,routin:[86,102,130,141,142,144,163,181,200,232,277],rpa:[20,28],rpa_pub:[28,67],rpa_rnd:[28,67],rsa2048:129,rsa:129,rsp:[14,28],rssi:[28,30,247],rtc:9,rto:[56,93,243],rtt:[8,14,131,277,293,294],rtt_buffer_size_down:291,rubi:[11,56,59],rule:[226,260,269],run:[2,3,4,5,6,8,9,11,24,25,31,35,40,42,44,51,53,56,58,59,60,61,62,65,67,68,78,79,81,82,83,84,85,86,87,88,90,92,93,94,97,98,99,100,129,130,132,133,136,137,153,161,162,180,193,213,215,221,223,225,234,235,236,237,238,241,242,243,246,247,254,255,257,259,260,261,262,263,264,269,270,277,278,279,280,281,282,284,287,289,290,294],runner:12,runtest:[7,132,238],runtest_newtmgr:238,runtim:[26,78,100,256,270,287,290],runtimeco:[58,59,60,81,82,83,237,256,270,271],rwx:94,rwxr:[81,83],rx_cb:131,rx_data:277,rx_func:194,rx_off:277,rx_phys_mask:28,rx_power:28,rxbuf:191,rxpkt:90,rxpkt_q:90,s_cnt:224,s_dev:207,s_func:207,s_hdr:224,s_itf:207,s_listener_list:207,s_lock:207,s_map:224,s_map_cnt:224,s_mask:207,s_name:224,s_next:[207,224],s_next_run:207,s_pad1:224,s_poll_rat:207,s_size:224,s_st:[207,284],s_type:207,sad:284,sad_i:284,sad_x:284,sad_x_is_valid:284,sad_y_is_valid:284,sad_z:284,sad_z_is_valid:284,safe:[91,153],safeguard:93,safeti:251,sai:[14,62,90,100,256,270,271,272],said:[187,278],sam0:256,sam3u128:[259,261,264,277,278,284],samd21:[256,270],samd21g18a:256,samd21xx:256,samd:256,same:[6,10,12,14,23,30,35,38,48,52,60,62,79,90,92,94,95,99,129,130,131,152,174,180,188,212,223,224,225,226,228,237,240,242,243,249,251,252,257,259,261,264,265,271,272,273,278,279],sampl:[1,12,22,31,62,90,95,135,213,223,226,278,279,281,283,284,289],sample_buffer1:278,sample_buffer2:278,sample_cmd:222,sample_cmd_handl:222,sample_command:220,sample_modul:[220,222],sample_module_command:220,sample_module_init:220,sample_mpool:220,sample_mpool_help:220,sample_mpool_param:220,sample_target:54,sample_tasks_help:220,sample_tasks_param:220,sane:100,saniti:[78,93,100,246],sanity_interv:98,sanity_itvl:[98,100],sanity_task:98,sanity_task_interv:98,satisfactori:271,satisfi:[180,272],sattempt_stat:224,save:[12,32,50,51,72,101,130,131,188,209,243,251],saw:252,sbrk:[94,259,260,261,262,263],sc_arg:98,sc_checkin_itvl:98,sc_checkin_last:98,sc_cmd:[215,216,220,221,222,277],sc_cmd_f:215,sc_cmd_func:[215,216,220,221,222,277],sc_cmd_func_t:215,sc_func:98,sc_next:153,sc_valtyp:207,scalabl:[152,180],scale:32,scan:[14,16,22,25,27,28,30,180,247,249,279,281],scan_interv:28,scan_req:28,scan_req_notif:28,scan_result:270,scan_rsp:28,scan_window:28,scannabl:[14,28,31],scenario:[23,99,196],scene:32,schedul:[9,14,25,85,88,93,97,100,101,243],schemat:[94,290],scheme:[14,20,30,94],scientif:22,sck_pin:[136,137],scl:[188,280],sco:21,scope:[12,90,243],scratch:[94,129,141,142,144,223],screen:[8,264],script:[7,43,62,138,140,262],scroll:[12,238,250],sd_get_config:[207,209],sd_read:[207,209],sda:[188,280],sdcard:137,sdk:[46,54,226],search:[12,88,95,135,177,180,212,246,256,262,271,279,284,291,292],searchabl:135,sec000:129,sec125:129,sec126:129,sec127:129,sec:[280,284],second:[14,23,27,28,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,85,90,91,94,98,100,101,129,141,195,215,223,237,242,243,249,254,255,258,262,269,276,278,280,284],secondar:253,secondari:[28,72,94,129,241,253],secondary_phi:28,secret:[23,28],section:[1,5,6,7,11,12,14,15,25,26,30,31,62,90,93,94,100,129,130,180,209,223,225,226,227,238,241,243,245,249,252,253,256,257,270,271,272,278,286,288,289],sector:[129,141,142,147,149,150,151,180,185,262],sector_address:[136,185],secur:[14,22,129,223,253,273,276,278],see:[2,4,5,6,7,8,10,11,12,14,22,23,24,25,34,37,44,56,58,59,60,62,64,65,67,81,82,83,88,90,92,93,94,97,100,129,130,138,148,161,182,188,191,200,206,207,208,209,210,211,212,213,214,215,224,225,226,237,238,241,242,243,244,246,247,249,250,251,253,254,255,256,257,258,259,260,261,262,263,264,267,270,271,272,273,276,277,278,279,280,281,283,284,286,287,289,290,291,292],seek:[90,169,180],seem:[14,249,278],seen:[91,186,189,271,294],segger:[8,131,241,259,261,264,270,277,278,280,284,287,293,294],segger_rtt:14,segger_rtt_conf:291,segment:[22,90,279],sel:290,select:[4,12,14,20,22,56,60,180,187,191,207,215,256,258,259,260,262,279,281,290,292],selector:207,self:[3,31,95,254,255,269],selftest:269,sem:99,sem_token:99,sema:277,semant:252,semaphor:[14,93,100,277],send:[3,14,15,21,28,29,32,39,43,48,65,67,68,70,75,79,81,82,83,90,131,133,134,188,191,194,213,236,237,242,249,257,276,278,283,288,294],send_pkt:90,sender:249,sens:[21,129,223,278],senseair:[276,277],senseair_cmd:277,senseair_co2:[276,277],senseair_init:277,senseair_read:[276,277],senseair_read_typ:[276,277],senseair_rx_char:277,senseair_shell_func:277,senseair_tx:277,senseair_tx_char:277,sensi:279,sensibl:226,sensor:[9,14,32,135,224,294],sensor_accel_data:284,sensor_callout:284,sensor_cfg:[207,209],sensor_cli:[214,280,281,284],sensor_cr:[208,280,282],sensor_data_func_t:[209,211],sensor_data_funct_t:209,sensor_dev_cr:208,sensor_devic:207,sensor_driv:[207,209],sensor_ftostr:284,sensor_g:207,sensor_get_config_func_t:[207,209],sensor_get_itf:209,sensor_in:207,sensor_init:[207,209],sensor_itf:[207,208,209],sensor_itf_i2c:[207,208],sensor_itf_spi:207,sensor_itf_uart:207,sensor_listen:[207,211,284],sensor_lo:207,sensor_mg:212,sensor_mgr_find_next_bydevnam:[212,284],sensor_mgr_find_next_bytyp:212,sensor_mgr_l:212,sensor_mgr_lock:212,sensor_mgr_match_bytyp:212,sensor_mgr_regist:[207,209,212],sensor_mgr_unlock:212,sensor_mgr_wakeup_r:[212,284],sensor_nam:280,sensor_o:[213,279,280,281,283,284],sensor_offset:280,sensor_oic_init:[213,279],sensor_oic_obs_r:[213,283],sensor_r:[207,211],sensor_read:[207,211],sensor_read_func_t:[207,209],sensor_register_listen:[211,284],sensor_s:207,sensor_set_driv:[207,209],sensor_set_interfac:[207,209],sensor_set_poll_rate_m:[207,212,284],sensor_set_type_mask:[207,209],sensor_shel:280,sensor_timestamp:207,sensor_type_acceleromet:[207,208,209,282,284],sensor_type_al:207,sensor_type_eul:[209,282],sensor_type_grav:[209,282],sensor_type_gyroscop:[207,209,282],sensor_type_light:207,sensor_type_linear_accel:[209,282],sensor_type_magnetic_field:[207,209,282],sensor_type_non:207,sensor_type_rotation_vector:[209,282],sensor_type_t:[207,209,211,212,284],sensor_type_temperatur:[207,209],sensor_type_user_defined_6:207,sensor_un:[207,211],sensor_unregister_listen:[211,284],sensor_value_type_float:[207,209],sensor_value_type_float_triplet:[207,209],sensor_value_type_int32:207,sensor_value_type_int32_triplet:207,sensor_value_type_opaqu:207,sensor_value_type_temperatur:209,sensornam:[207,208,209,210,280,282,284],sensorname_cli:209,sensorname_ofb:280,sensors_o:281,sensors_test:[279,280,282,283],sensors_test_config_bno055:282,sent:[21,30,131,180,188,191,194,215,251,253,264],sentenc:[63,244],sep:[4,82,83],separ:[21,27,35,36,51,52,67,129,135,177,180,198,206,223,224,251,254,255,256,259,260,262,263,264],seper:291,sequenc:[93,129,131,174,180,228,231],sequenti:[174,175,180],seri:[129,160,192,253,294],serial:[67,88,129,130,131,133,134,135,141,183,188,191,224,238,240,241,259,263,264,265,277,279,280,281,288,289],serror_stat:224,serv:[19,56,94,141,210,223,279],server:[12,14,15,19,21,22,28,32,134,210,211,213,223,244,253,264,276,279,281,283,284],servic:[14,17,18,22,28,29,30,32,93,97,135,182,236,249,250,251,252,270,272,277,279],service_data_uuid128:[28,30],service_data_uuid16:30,service_data_uuid32:[28,30],sesnor:284,session:[12,39,40,48,56,58,59,60,62,94,256,259,260,262,263,291],set:[1,2,7,8,9,10,12,20,21,24,25,28,29,30,32,33,35,37,38,40,51,54,56,57,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,82,83,85,86,87,90,97,98,99,100,101,129,130,131,135,136,146,153,154,158,161,163,164,168,171,174,176,177,178,180,182,187,188,190,191,193,194,195,200,208,210,212,213,214,215,216,220,221,222,223,224,233,237,240,241,243,247,250,251,254,255,256,257,259,260,261,262,263,264,265,267,269,270,271,272,273,276,278,280,281,283,284,286,287,289,290,291],setting1:225,setting2:225,settl:26,setup:[11,58,60,61,72,81,83,84,209,223,238,241,246,247,257,258,276,277,278,280,284,286,287,288,289,290],sever:[3,14,21,22,24,28,62,94,95,97,101,129,180,223,226,235,236,253,254,255,261,262,271],sha256:129,sha:129,shadow:130,shall:[14,25,28,30],share:[4,14,23,89,90,92,93,99,223,240,265,271],sheet:209,shell:[1,7,8,14,22,31,56,60,81,97,130,131,138,139,206,210,216,217,218,219,220,221,222,224,225,226,237,238,243,257,264,267,277,279,280,281,286,291],shell_cmd:[215,216,220,221,222,277],shell_cmd_argc_max:[215,264],shell_cmd_func_t:215,shell_cmd_h:215,shell_cmd_help:[215,220,267],shell_cmd_regist:[215,221,277],shell_compat:215,shell_complet:215,shell_init:226,shell_max_compat_command:[215,216],shell_max_input_len:139,shell_max_modul:[215,220],shell_modul:215,shell_newtmgr:[215,238],shell_nlip_input_func_t:218,shell_nlip_input_regist:215,shell_os_modul:[215,267],shell_param:[215,220],shell_prompt_modul:[215,258],shell_regist:[215,222],shell_sample_mpool_display_cmd:220,shell_sample_tasks_display_cmd:220,shell_stack:139,shell_task:[215,225,226,238,258,267,277,280,284],shell_task_init:139,shell_task_prio:139,shell_task_prior:225,shell_task_stack_s:139,shield:93,shift:[12,22],ship:[6,14],shortcut:12,shorten:249,shorter:[180,242],shorthand:[90,271],shot:264,should:[4,8,10,12,14,20,27,31,33,56,58,60,62,82,85,86,87,88,90,91,94,97,98,99,100,101,129,130,131,135,138,139,141,147,151,153,157,158,161,171,174,180,182,183,188,191,193,194,195,198,200,209,212,215,224,226,231,233,237,242,243,247,249,250,251,252,254,255,256,258,259,260,261,262,263,264,269,270,271,274,277,278,279,280,282,284,287,290,291,292],show:[1,4,5,6,7,8,11,12,14,28,29,32,37,40,41,44,51,54,58,59,60,61,62,63,73,81,82,83,84,90,100,130,131,194,206,220,223,225,226,233,236,237,238,240,241,243,244,247,253,256,257,258,259,260,261,262,263,264,265,270,276,277,278,279,280,281,282,283,284,286,287,288,290,291,292,294],shown:[6,7,12,44,56,62,90,93,129,136,193,209,224,237,251,256,259,264,269,271,273,278,280,282,284,288],si_addr:[207,208],si_cs_pin:207,si_num:[207,208],si_typ:[207,208],sibl:[11,272],sid:28,side:[12,14,22,31,130,277],sierra:[59,82],sig:[21,30,32],sign:[6,10,38,47,48,58,59,60,81,207,242,247,257],signal:[21,22,27,30,100,191,252],signatuar:12,signatur:[28,47,129],signed_imag:129,signifi:188,signific:[20,90,191,223,264],significantli:[14,32],signigic:90,silent:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,226],silicon:33,sim1:[287,288,290],sim:[6,7,62,95,277,287,289,290],sim_slinki:[225,288],similar:[1,8,12,14,93,94,208,247,264,269,278],similarli:[90,206],simpl:[12,21,22,62,86,90,93,94,99,100,102,130,133,135,152,182,224,237,243,248,249,254,255,258,278,284,286],simplehttpserv:[34,64],simpler:[94,253],simplest:[90,287,290],simpli:[6,10,88,90,91,99,100,131,182,223,237,243,245,250,256,276,277],simplic:[129,254,255],simplifi:[14,21,88,91,188],simul:[2,3,5,6,51,235,243,284,288],simultaen:90,simultan:[14,28,30,31],simultaneosli:153,sinc:[3,14,21,25,33,62,90,93,94,99,101,129,191,215,224,241,242,243,246,247,254,255,256,258,270,271,276,277,278,279],singl:[2,3,7,14,23,40,48,56,58,59,60,88,90,99,100,129,130,135,153,172,174,175,180,209,224,226,248,249,253,254,269,271],singli:180,sissu:192,sit:[15,19,135,182,223],site:[248,259,263],situat:[93,223],six:[23,24],size:[9,21,28,30,40,56,58,59,60,62,74,78,88,90,91,94,100,101,102,129,130,131,133,136,157,174,175,176,180,191,205,206,223,224,225,226,228,236,238,243,256,260,262,264,268,281],size_t:[157,163,200],sizeof:[90,130,137,154,155,156,157,161,162,164,165,172,205,208,228,243,249,251,252,255,276,277,278],skelet:247,skeleton:[7,45,51,237,246,247,256,259,260,261,262,263,264,270,278,287,288,290],skip:[6,11,48,60,129,141,143,256,259,260,261,262,263,270,287,290],sl_arg:[211,284],sl_func:[211,284],sl_next:211,sl_sensor_typ:[211,284],slash:180,slave:[28,30,188,191],slave_interval_rang:30,sleep:[9,86,88,90,92,99,100,101,183,240,243,258,265],slightli:[97,223],slink:[287,288,290],slinki:[7,46,62,131,153,177,178,223,225,226],slinky_o:[7,62],slinky_sim:225,slinky_task_prior:225,slist_entri:[153,180,207,211],slist_head:[92,207],slot0:129,slot1:129,slot:[7,14,21,62,72,196,223,241,247,250,256,258,259,260,261,262,263,264,267,270,277,280,284,287,290,291,292],slower:[3,97,98],small:[21,25,90,101,131,135,172,223,224,253,260,269,278],smaller:[14,90,133,195,223,244,256],smallest:[90,180],smart:[22,32,56,62,277,283],smarter:272,smp:[21,22],snapshot:[44,259,263,272],snip:[1,37,44,56,62,238,246,247,278],snippet:251,soc:[14,97],socket:2,soft:[65,81,82,83,192],softwar:[1,3,4,6,22,39,43,48,51,97,98,129,182,236,241,256,259,261,262,270,271,277,278,280,284,287,291],solder:277,solut:[56,182,254,255],solv:[129,223],some:[1,8,12,14,31,65,77,90,91,93,94,97,99,100,102,129,131,137,141,152,153,154,161,164,174,175,183,191,194,206,220,225,233,237,238,243,248,249,250,251,252,254,255,258,259,260,263,264,267,269,270,271,277,284,287,290,291,292,294],somebodi:[130,277],somehow:62,someon:[10,86,278],someth:[14,21,237,246,247,270,273,276,291],sometim:[130,256,270,291],somewhat:[93,129,180],somewher:[14,129,180,223,278],soon:[22,272],sooner:195,sophist:243,sort:[180,250],sound:14,sourc:[1,4,9,22,25,51,57,59,61,62,80,82,84,90,97,129,130,135,167,180,209,210,226,233,240,248,256,259,260,262,265,270,271,272,278,284,286,290],space:[12,22,35,36,51,52,67,90,97,141,142,157,174,175,188,196,199,215,223,224,246,254,257,270,286,289,294],spare:14,spec:[14,21],specfi:280,special:[8,90,97,136,223,228,231,253,254,255,269,270,271,272,280],specif:[11,14,21,22,23,24,30,32,58,59,60,62,63,86,88,90,91,93,94,96,97,101,129,133,135,151,153,174,175,182,187,188,190,191,192,193,194,196,206,207,209,223,226,228,232,233,238,243,247,249,251,252,254,255,256,262,264,269,270,271,277,278,287,290],specifi:[1,4,6,7,11,12,14,21,28,31,35,36,38,40,42,44,46,47,51,52,54,56,58,59,60,62,66,67,68,69,70,71,72,73,74,75,76,77,78,85,87,88,90,91,94,97,98,100,101,102,131,133,134,151,153,154,155,156,157,158,159,160,161,162,164,165,167,168,169,170,171,172,173,175,177,178,180,183,187,188,206,207,208,209,210,211,212,213,214,215,216,217,220,225,228,231,233,238,241,246,249,251,252,253,254,255,256,261,262,267,270,271,272,273,278,280,283,284,287,290,291],spectrum:22,speed:[9,22,180,194,256,259,260,261,264,278,291],spew:270,sphinx:[34,64],spi:[8,14,22,97,135,136,137,187],spi_cfg:[136,137],spi_miso_pin:[136,137],spi_mosi_pin:[136,137],spi_num:[136,137,191],spi_sck_pin:[136,137],spi_ss_pin:[136,137],spi_typ:191,spilt:14,spitest:[7,62],split:[7,14,72,94,180,192,225,241,277,278,287,288,290],split_app:7,split_app_init:226,split_config:[287,288],split_elf_nam:62,split_file_test:269,split_load:226,splitti:[7,62,223,225],spot:94,spread:22,spuriou:269,squar:188,sram:262,src:[6,7,11,14,46,51,56,62,71,81,83,90,94,96,135,177,178,181,182,185,189,190,192,198,226,233,242,243,246,256,259,260,261,262,263,264,269,270,276,277,278,280,282,284,287,288,290],src_off:90,ss_op_wr:251,ss_pin:[136,137],ssec:28,st_cputim:284,st_ostv:284,stabil:[271,272],stabl:[1,7,58,59,81,82,271,272],stack:[1,9,14,19,22,25,27,28,31,56,78,86,88,90,93,100,223,226,245,246,247,248,249,251,252,253,264,277],stack_bottom:100,stack_len:218,stack_ptr:218,stack_siz:[98,100],staff:[81,82],stage:[98,129,135,208,223,226],stai:[14,161,162],stailq_entri:224,stale:[2,256],stand:[14,90,234],standalon:[14,223],standard:[7,22,32,101,133,134,135,136,152,153,161,182,249,254,255,264,276,277],standbi:[22,196],start:[2,4,8,9,10,12,14,27,28,29,31,39,48,60,63,72,83,87,89,90,91,92,93,94,96,100,129,135,138,141,142,144,147,153,160,161,169,172,175,180,188,189,191,192,193,194,195,204,212,223,226,235,237,243,244,245,246,249,256,257,258,259,260,262,263,264,269,271,276,277,278,279,280,281,282,284,288,292,294],starter:242,startup:[20,22,27,31,129,223,226,243,254,255],startup_stm32f40x:[260,262],stash:50,stat:[1,7,14,65,79,81,82,83,132,133,226,238,246,264,267,277,278,284,291],state:[6,14,22,27,32,53,56,86,88,94,98,100,101,134,141,177,178,182,183,187,200,240,241,243,256,262,265,272,274],statement:[11,226,238],statist:[1,49,65,74,77,78,81,82,83,227,264,287,288,290,291],stats_cli:[1,267],stats_hdr:[209,224],stats_inc:224,stats_incn:224,stats_init:[209,224],stats_init_and_reg:224,stats_module_init:226,stats_my_stat_sect:224,stats_nam:[1,38,39,77,209,224],stats_name_end:[209,224],stats_name_init_parm:[209,224],stats_name_map:224,stats_name_start:[209,224],stats_newtmgr:[1,225,226,238],stats_regist:[209,224],stats_sect_decl:[209,224],stats_sect_end:[209,224],stats_sect_entri:[209,224],stats_sect_start:[209,224],stats_size_16:224,stats_size_32:[209,224],stats_size_64:224,stats_size_init_parm:[209,224],statu:[10,11,21,137,172,223,241,250,252,254,256,264,277,287,288,290],stdarg:[228,231],stderr:198,stener:211,step:[2,4,6,7,12,48,56,58,60,81,83,93,94,95,129,131,188,208,223,224,244,246,247,254,255,256,259,260,261,262,263,264,270,271,278,287,288,290],sterli:272,sterlinghugh:272,stic:[251,253],still:[5,14,60,67,87,97,98,250,278,286,291],stitch:1,stksz:[78,287,290],stkuse:[78,287,290],stlink:260,stm32:[260,262,290],stm32_boot:290,stm32_slinki:290,stm32f2x:260,stm32f303vc:[237,242],stm32f3discoveri:237,stm32f4:[135,136,137,257],stm32f4_adc_dev_init:135,stm32f4_hal_spi_cfg:[136,137],stm32f4disc_blinki:260,stm32f4disc_boot:260,stm32f4discoveri:[54,260],stm32f4discovery_debug:260,stm32f4x:260,stm32f4xx:187,stm32f4xxi:187,stm32l072czy6tr_boot:14,stm32serial:290,stm32x:260,stm34f4xx:187,stm:290,stmf303:237,stmf32f4xx:187,stmf3:237,stmf3_blinki:[237,242],stmf3_boot:[237,242],stop:[2,28,85,87,141,151,188,189,193,194,249,270,280],stopbit:194,storag:[14,21,130,141,168,247,271],store:[1,11,14,23,28,32,35,36,38,51,56,58,60,62,81,86,88,90,101,130,131,141,148,180,191,196,199,200,218,224,246,249,251,252,271,277,278,279,284,286],stori:90,str:[130,131,194,200],straight:[249,277],straightforward:[246,278],strategi:243,strcmp:[130,277],stream:[22,200,205,206,218],strength:30,strict:[251,256],strictli:[174,175,180,278],string:[1,14,28,30,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,102,130,131,134,140,161,172,192,198,199,200,205,215,216,220,224,226,228,231,254,255,269,271,272,276,277,278,288],strip:[47,90],strlen:[249,251],strongli:153,struct:[85,86,87,88,90,91,92,93,94,98,99,100,101,129,130,131,135,136,137,141,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,161,162,164,165,166,167,169,170,171,174,177,178,180,181,183,186,188,191,193,198,199,200,201,202,203,204,205,206,207,208,209,211,212,215,216,217,218,219,220,221,222,224,228,233,234,240,243,249,251,252,253,254,255,258,265,269,276,277,278,282,284],structur:[7,11,12,19,29,56,62,79,85,88,90,91,92,93,94,99,100,129,130,131,135,137,147,163,176,179,188,193,198,199,206,208,209,210,216,220,221,224,251,257,269,270,277,278,282,286,289,294],struggl:14,strutur:90,stub:[14,62,102,206,240,254,255,258,265,269,277,278],studio:[5,13],stuff:271,style:[131,244],sub:[29,44,46,51,71,72,73,76,77,135,156,255,274],subcmd1:221,subcmd2:221,subcommand:[46,51,63,65,67,71,72,73,76,77,221],subcompon:22,subdirectori:[2,233,269],subfold:259,subject:180,submit:11,subrang:21,subscrib:[14,29,250,252,278],subsequ:[14,22,23,129,161,162,223,249,252,269],subset:[23,177,207,209,212,280],substitut:[6,244,246,247],subsystem:[31,60,88,130,131,136,137,215],subtract:[99,101],subtre:130,succe:[177,269],succesfulli:[241,242,246,247,250,256,258,259,260,261,262,263,264,270,277,280,284,287,290,291,292],success:[3,21,56,85,87,90,93,98,100,101,130,137,142,143,144,145,146,147,149,150,151,153,154,155,157,158,160,161,162,164,165,166,167,168,169,170,171,172,173,177,178,179,180,183,187,188,191,193,194,195,198,201,202,203,204,205,216,218,219,220,231,234,235,237,242,251,253,262,264,269],successfuli:[94,269,284],successfulli:[7,14,21,56,91,94,98,223,237,238,241,242,246,247,250,252,254,255,256,259,260,261,262,263,264,270,277,278,279,280,281,284,287,288,290],sudo:[4,6,7,11,58,59,61,81,84,247],suffici:[14,90,91,180],suffix:269,suggest:[3,6,14,212,236,267,294],suit:[6,56,230,232,233,246,268],suitabl:[14,21,94,174],summar:[94,223],summari:[6,11,20,37,215,220,255],supersed:180,supervision_timeout:[31,250],supplement:[30,249],supplementari:94,suppli:[153,171,173,177,192,269],support:[1,3,4,6,7,12,15,20,21,22,23,30,31,33,54,59,67,82,87,93,94,96,102,129,131,133,134,135,136,137,152,180,183,187,191,200,206,207,208,209,212,215,216,220,221,223,224,226,240,241,246,247,248,249,253,254,256,257,259,265,270,271,272,277,281,286,288,289,294],suppos:[14,44,92,99,187,224],suppress:288,suppresstasknam:12,sure:[2,7,8,14,58,90,199,246,247,249,251,256,258,264,269,271,276,278],suspend:280,svc:253,sw_rev:280,swap:[2,86,94,174,181,223,256,291],swclk:256,swd:[256,259,260,261,262,263,264,270,278,284],swdio:256,sweep:180,swim:260,swo:[259,270,284],symbol:[4,7,12,62,223,256,260,284,291,292],symlink:[61,84],sync:[21,26,40,58,59,60],sync_cb:[27,254,255],synchron:[21,40,50,58,59,60,97,99,135,191],syntax:[226,244,264,267,280],synthes:25,sys:[1,7,14,56,58,62,130,131,132,181,206,215,224,225,226,234,238,240,246,258,265,269,270,277,278,280,284,292],sys_config:223,sys_config_test:7,sys_console_ful:223,sys_einv:[209,284],sys_enodev:209,sys_flash_map:[260,262],sys_log:223,sys_mfg:[7,256,259,260,261,262,280,287,290],sys_shel:223,sys_stat:223,sys_sysinit:[7,256,259,260,261,262,263,280,287,290],syscfg:[14,24,25,33,38,39,51,62,94,98,130,131,153,174,208,209,210,212,213,214,215,216,220,224,225,238,241,247,256,258,259,264,267,269,270,277,278,280,281,283,284,291,292],sysclock:14,sysconfig:[130,238],sysflash:[256,262],sysinit:[7,26,27,93,100,131,197,208,226,240,254,255,256,258,264,265,269,270,277,278,284],sysinit_assert_act:226,sysinit_panic_assert:[208,209,226],sysresetreq:256,system:[1,3,6,8,9,26,40,51,58,59,60,62,63,87,90,91,94,97,98,100,101,102,129,130,131,132,141,155,156,157,161,162,163,165,166,168,174,176,177,178,180,183,187,191,194,196,197,206,220,223,224,235,236,243,246,247,256,258,259,262,264,267,270,271,272,277,284,292],system_l:187,system_stm32f4xx:[260,262],systemview:294,sysview:[292,293],sysview_mynewt:292,sytem:189,syuu:60,t_arg:100,t_ctx_sw_cnt:100,t_dev:207,t_driver:207,t_flag:100,t_func:[100,243],t_interfa:207,t_itf:207,t_name:100,t_next_wakeup:100,t_obj:100,t_poll_r:207,t_prio:[86,100],t_run_tim:100,t_sanity_check:100,t_stackptr:100,t_stacksiz:100,t_stacktop:100,t_string:205,t_taskid:100,t_type_m:207,t_uinteg:205,tab:[31,37],tabl:[14,20,21,94,129,132,152,161,180,226,251,253,264,280],tag:272,tail:[90,180],tailq_entri:[180,193],tailq_head:180,take:[6,7,14,24,46,51,56,63,90,93,130,142,199,212,223,224,243,249,251,252,253,254,255,269,276,278],taken:[7,14,62,88,93,251,271,272,276],talk:[14,247,249,288],tap:[4,57,80],tar:[4,58,59,60,61,82,83,84],tarbal:4,target:[3,4,5,7,12,14,26,30,33,35,36,37,38,39,40,43,44,47,48,49,54,56,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,97,130,196,223,224,225,226,233,241,243,245,254,255,257,267,269,277,279,281,283,289],target_nam:35,targetin:[254,255],task1:[93,98,287,290],task1_evq:98,task1_handl:93,task1_init:93,task1_prio:93,task1_sanity_checkin_itvl:98,task1_sem:93,task1_stack:93,task1_stack_s:93,task2:[93,287,290],task2_handl:93,task2_init:93,task2_prio:93,task2_sem:93,task2_stack:93,task2_stack_s:93,task:[9,11,56,65,78,81,82,83,85,86,88,90,91,92,93,94,96,97,99,101,131,135,140,170,203,212,215,217,220,226,235,238,251,258,264,276,277,279,282,284,287,288,290,294],task_l:[240,265],task_prior:[225,226],tasknam:12,taskstat:[65,79,81,82,83,132,134,238,287,290],tbd:253,tc_case_fail_arg:233,tc_case_fail_cb:233,tc_case_init_arg:233,tc_case_init_cb:233,tc_case_pass_arg:233,tc_case_pass_cb:233,tc_print_result:[233,234],tc_restart_arg:233,tc_restart_cb:233,tc_suite_init_arg:233,tc_suite_init_cb:233,tc_system_assert:233,tck:256,tcp:[256,260],tdi:256,tdo:256,teach:243,team:[4,182,244],technic:[10,237],technolog:[22,136],tee:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63],telee02:264,telee02_boot:264,telemetri:254,telenor:264,teli:[254,255],tell:[14,31,56,141,156,194,196,200,223,224,226,237,249,251,254,255,262,272,276],telnet:[270,277,284,291],tem:280,temperatur:[160,207,280],templat:[7,46,246,269,276,277,284],temporari:[21,98,129,180],temporarili:[92,98],ten:191,term:[3,129,135,153,187,190,271],termin:[2,4,7,8,10,12,14,21,22,28,60,83,130,131,155,156,157,161,162,165,172,174,175,177,180,247,249,252,253,256,258,259,260,261,262,263,264,270,277,282,284,291],terminato:157,termintor:157,terribl:[7,246],test:[4,6,12,14,40,51,58,59,60,62,65,68,72,76,81,82,83,129,131,132,182,209,210,223,226,228,229,230,231,232,233,234,235,238,241,247,253,254,255,256,258,259,261,268,271,276,278,288,291,294],test_assert:[229,230,232,269],test_assert_fat:[228,269],test_cas:[228,269],test_case_1:230,test_case_2:230,test_case_3:230,test_case_nam:[229,230],test_datetime_parse_simpl:269,test_datetime_suit:269,test_json:269,test_json_util:269,test_project:45,test_suit:[229,230,269],test_suite_nam:232,testbench:[7,62],testcas:[7,269],testnam:76,testutil:[7,181,269],text:[40,49,70,90,131,172,215,223,231,260,287,290],textual:1,tgt:130,tgz:4,than:[3,7,14,15,21,30,73,90,92,93,94,97,99,100,101,102,129,133,153,164,167,180,191,195,212,215,223,225,228,230,243,247,253,254,255,259,278,284,291],thank:31,thee:97,thei:[1,6,14,21,30,31,62,85,88,90,91,93,94,99,100,129,130,135,170,180,193,223,224,226,233,236,242,249,250,251,253,254,255,264,267,269,271,272,274,276,280],their_key_dist:28,them:[2,9,14,56,90,94,99,100,161,178,180,196,223,224,226,243,247,249,254,255,256,269,270,271,278,279,294],themselv:[90,93,253],theori:[14,56,226],therebi:[99,141],therefor:[21,91,129,149,153,161,243,273],thi:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,19,21,22,23,24,25,26,27,28,30,31,32,33,34,35,42,44,53,54,56,58,59,60,61,62,64,65,67,72,73,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,129,130,131,133,135,136,137,138,139,141,142,143,144,147,153,155,156,157,159,160,161,162,163,165,167,169,170,172,173,174,175,176,177,179,180,181,182,183,184,186,187,188,189,191,193,194,195,196,197,200,201,202,203,204,205,206,207,208,209,210,211,212,213,215,216,217,218,220,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,269,270,271,272,273,276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,294],thing:[1,14,22,25,27,56,62,91,94,97,98,135,188,207,223,254,255,269,272,276,277,278,282,284],thingi:[208,291,292],thingy_boot:284,thingy_debug:[284,291,292],thingy_my_sensor:284,think:[10,14,129,278],third:[6,20,101,247,249,256,270,278],thorough:272,those:[1,14,32,33,40,56,58,59,60,62,94,97,129,138,142,223,236,272,276,277,278],though:[14,90,129,180,188,212,223],thought:[14,278],thread:[9,246,256,260,262],three:[2,11,20,60,62,90,129,131,167,206,223,224,226,240,243,246,248,249,255,256,262,264,265],through:[8,14,22,24,62,63,90,100,129,134,141,147,152,155,156,157,162,165,174,175,182,191,200,212,238,248,250,252,255,256,258,262,269,270,276,278,281,283,286],throughout:[1,94,269],throughput:[14,22],thrown:6,thu:[90,94,99,129,135,174,175,187,188,191,243],tick:[14,85,87,92,97,98,99,101,131,188,193,215,243,258,259,284],ticker:85,ticket:10,tickl:[98,195],tid:[78,287,290],tie:223,tied:[14,153],ties:[90,246],time:[1,7,9,11,12,20,21,22,23,26,28,32,35,44,58,59,60,61,62,78,83,84,85,88,90,93,94,97,98,99,100,129,131,137,141,152,161,162,180,182,195,207,215,223,224,236,240,242,243,246,249,251,253,254,255,259,261,264,265,269,270,276,277,278,280,284,286,291],time_datetim:[223,284],time_datetime_test:269,time_in_flight:90,timelin:14,timeout:[21,28,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,92,99,188,241,277],timer:[14,25,85,87,88,94,98,182,190,195,212,284],timer_0:25,timer_4:264,timer_5:25,timer_ev_cb:[258,284],timer_interrupt_task:[240,265],timer_num:193,timestamp:[73,207],timev:101,timezon:[101,269],timo:88,timo_func:85,timtest:[7,62],ting:[254,255],tini:[262,290],tinycbor:[7,279],tinycrypt:[7,14],tinyprintf:102,tip:98,titl:[8,289],tlm:254,tlv:[28,129],tmp:[58,60,81,83,170,223],tmpstr:284,tmr:193,todo:[62,180,254,255],togeth:[1,44,56,62,90,138,180,223,250,262,278],togetherth:14,toggl:[7,100,187,240,243,258,265],token:[76,93,99,215,273],told:196,too:[21,90,93,101,135,161,162,180,183,225],took:260,tool:[1,2,3,5,6,7,9,12,13,14,40,55,58,59,62,63,64,67,79,80,81,82,93,94,95,97,134,135,224,225,226,233,237,238,240,241,245,246,247,256,257,262,264,265,267,269,270,271,272,273,278,279,284,286,288,289,291,292,294],toolbox:2,toolchain:[2,3,5,7,12,14,34,60,64,238,241,247,257,270,286,289,294],toolkit:3,tools_1:[58,59,60,82,83],top:[1,10,12,36,62,90,100,135,174,188,225,247,254,255,269,278],topic:1,total:[9,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,100,102,129,180,259,261,264,278],tour:248,track:[20,22,23,101,129,180],tradeoff:223,trail:[90,129],trailer:129,transact:[21,188,191],transfer:[23,191,277],transform:180,transit:129,translat:[187,254],transmiss:[21,28,191,194,219,264],transmit:[14,30,32,131,188,191,264],transmitt:194,transport:[21,22,28,81,131,134,226,241,246,247,256,260,277,278,279,281,283,286],travers:[90,155,156,157,162,165],traverse_dir:[155,156,157,162,165],treat:[141,201],tree:[1,6,7,14,51,56,62,94,160,246],tri:[3,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,130,137,225,264],trial:94,tricki:100,trig:187,trigger:[6,10,88,187],trim:90,trip:98,triplet:207,troubleshoot:[224,225],truncat:[158,170,171,173],truncate_test:269,trust:[23,28,277],tt_chr_f:253,tt_svc_type_p:253,ttl:[247,290],tty:[8,258,270,280,287,290],ttys002:67,ttys003:67,ttys005:288,ttys012:[287,290],ttys10:8,ttys2:[8,258,270,280,287,290],ttys5:8,ttyusb0:[14,67,247],ttyusb2:[8,270,287,290],ttyusb:[8,258,270,280,287,290],tu_any_fail:[234,269],tu_case_init_fn_t:233,tu_case_report_fn_t:233,tu_config:[233,234],tu_init:233,tu_restart_fn_t:233,tu_suite_init_fn_t:233,tupl:101,turn:[14,25,135,182,183,187,223,238,246,247,257,258,261,271,272,280,287],tutiori:[74,77],tutori:[2,3,6,7,8,12,14,22,24,60,78,208,209,213,214,215,233,237,238,240,241,243,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,265,269,270,277,278,279,280,281,282,283,284,287,288,290],tv_sec:[101,269,284],tv_usec:[101,269,284],tvp:101,tweak:152,two:[2,3,12,14,19,20,22,23,24,28,32,44,46,51,56,62,67,90,91,92,93,94,96,100,101,129,131,133,174,180,188,206,207,215,221,223,224,225,226,237,238,240,243,246,247,249,251,254,255,256,258,259,260,261,262,263,264,265,269,270,271,272,273,274,278,279,280,283,284,287,290],tx_data:277,tx_done:194,tx_func:194,tx_len:277,tx_off:277,tx_phys_mask:28,tx_power_level:[28,30],tx_time_on_air:264,txbuf:191,txd:264,txpower:264,txrx:191,txrx_cb:191,txt:[14,71,154,158,161,164,171,172,173,292],type:[1,7,8,10,12,14,20,21,24,28,30,31,32,40,44,46,47,54,56,58,59,60,62,67,85,90,91,94,97,100,129,130,131,134,161,162,177,178,180,187,191,194,200,201,205,206,208,211,213,215,218,225,226,228,229,230,231,232,237,240,241,243,246,247,249,250,251,252,253,254,256,259,260,261,262,264,265,269,270,271,272,273,276,277,278,282,283,284,287,288,290,291,292],typedef:[27,88,91,98,100,101,130,131,151,187,191,193,194,200,207,215],typic:[3,9,22,27,32,56,62,90,93,94,95,98,129,131,135,174,175,182,184,187,188,191,206,207,223,224,226,233,249,254,255,269],tz_dsttime:[101,269],tz_minuteswest:[101,269],u8_len:137,uart0:[131,288],uart:[7,8,14,22,56,97,131,135,189,218,238,246,247,259,260,261,262,263,264,277,284,291],uart_bitbang:[189,259],uart_flow_control_non:131,uart_hal:[7,260,261,262],uart_rx_char:194,uartno:277,ubuntu:[4,6,7,58,81],uci:24,udev:260,udp:67,uext:290,uicr:24,uid:254,uint16:[28,29],uint16_max:28,uint16_t:[21,90,91,92,98,99,100,129,136,141,142,180,188,191,200,207,218,224,251,276,277,278],uint32:[28,72],uint32_max:28,uint32_t:[85,87,90,91,92,99,100,101,129,136,141,149,153,154,158,159,161,163,164,169,172,173,175,176,180,183,185,188,190,191,193,195,206,207,209,224],uint64:28,uint64_t:200,uint8:28,uint8_max:28,uint8_t:[24,33,88,90,91,92,94,98,100,129,131,135,136,141,149,153,154,155,156,157,161,162,163,164,165,169,172,175,180,183,185,186,188,191,194,200,206,207,209,218,224,249,251,254,255,277,278],uint_max:205,uinteg:[200,205],ultim:251,umbrella:223,unabl:[2,180,256,259,260,263],unaccept:21,unadorn:21,unam:2,unc_t:215,unchang:[94,180],unconfirm:264,und:[28,31],undefin:[83,183,226],under:[4,7,10,11,12,14,21,27,35,56,62,72,102,130,135,215,253,256,260,261,263,277,278],underli:[97,135,141,153,161,162,181,182,191,207],underlin:244,understand:[7,14,101,207,223,236,237,241,264,271,278],understood:[161,228],underwai:129,undesir:93,undirect:[28,249],unexpect:[21,155,156,157,162,165,168],unexpectedli:[21,269],unfortun:14,unicast:32,unicod:152,unidirect:28,unifi:135,uniform:[30,60],uniformli:63,uninstal:7,unint32:72,uninterpret:226,union:[180,200,251],uniqu:[9,20,33,94,180,183,206,224,225,226,254,264],unit:[1,7,14,21,28,40,52,58,59,60,85,100,129,226,269,294],unittest:[7,46,56,62,226,246,269,277],univers:[14,194],unix:[2,60,153,237],unknown:[21,225],unlabel:277,unless:[28,100,129,174,188,196,226,277,278],unlicens:22,unlik:[21,91,269],unlink:[59,61,82,84,154,162,167,170],unlink_test:269,unlock:[207,212],unmet:94,unpack:[58,60],unplug:263,unpredict:162,unprovis:32,unrecogn:14,unregist:211,unresolv:[182,269],unrespons:21,unset:[51,129],unsign:[100,200,224,263,284],unspecifi:[21,43],unstabl:[58,59,81,82],unsuccess:188,unsupport:[21,253],unsur:180,unsync:27,untar:4,until:[14,21,27,62,87,88,90,93,99,131,141,180,188,191,194,249,254,255,264,271],unuesd:252,unus:[72,276,278],unwritten:129,updat:[2,4,14,16,21,28,31,37,38,50,53,58,59,60,61,81,82,84,90,129,143,180,226,250,252,258,259,267,269,276,278,279,284],upgrad:[2,40,57,60,80,94,129,131,237,238,247,256,270,278,291,294],uplink:264,uplink_cntr:264,uplink_freq:264,upload:[14,44,71,72,153,196,223,241,259],upon:[1,3,10,27,56,90,129,180,224,252],upper:[24,180,194,226],uppercas:210,upstream:133,uri:[28,30,134],url:[28,254,269,271],url_bodi:254,url_body_len:254,url_schem:254,url_suffix:254,usabl:[1,91,94,246,254],usag:[1,9,58,59,60,63,81,82,83,90,100,135,136,153,174,180,188,207,215,220,224,226,243,264,277,288],usart6_rx:290,usart6_tx:290,usb:[2,3,14,22,43,67,238,240,241,243,247,256,257,259,260,261,262,263,264,265,270,278,280,286,287,289,290],usbmodem1411:8,usbmodem14211:67,usbmodem14221:67,usbmodem401322:8,usbmodem:8,usbseri:[8,258,270,280,287,290],usbttlseri:247,use:[1,4,5,6,7,8,11,12,14,15,20,21,22,23,25,28,31,33,42,46,51,52,56,57,59,60,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,82,83,85,87,88,94,95,97,99,100,129,130,131,132,135,137,141,142,152,153,166,167,170,174,177,178,180,181,188,191,193,200,201,202,203,204,205,206,207,208,209,210,211,212,215,216,217,220,221,223,224,225,226,233,237,238,239,240,241,242,243,245,246,247,249,250,251,252,254,255,256,257,258,259,262,264,265,267,269,270,272,273,276,277,278,279,280,283,284,286,287,288,289,290,291,292],use_wl:28,use_wl_inita:28,usec:[87,280,284],used:[6,7,11,12,14,20,21,23,24,25,28,30,31,32,35,47,50,62,67,73,85,87,90,91,92,94,99,100,101,102,129,130,131,136,137,141,144,152,153,157,180,185,188,189,191,193,195,200,207,208,209,215,223,224,225,226,228,229,230,231,232,235,236,237,242,243,247,249,251,252,253,254,255,256,264,269,270,271,272,276,277,279,280],useful:[3,14,21,93,172,209,246,271],user:[1,2,4,6,7,8,9,19,21,23,25,49,56,59,60,62,79,81,82,83,85,88,90,91,94,95,98,129,131,132,135,136,141,147,153,174,183,191,192,193,194,214,223,224,225,226,234,237,240,253,256,262,264,265,270,271,272,273,277,278,284,290],user_defined_head:90,user_hdr:90,user_hdr_len:90,user_id:[225,226],user_manu:237,user_pkthdr_len:90,usernam:[10,49,60,271],uses:[2,4,6,7,8,12,15,21,22,23,24,25,31,33,56,66,67,68,69,70,71,72,73,74,75,76,77,78,79,87,88,94,98,101,102,129,131,132,133,134,135,137,141,152,153,180,182,187,188,206,207,208,209,211,212,215,217,221,225,226,233,235,238,240,241,251,252,253,256,258,261,265,270,271,273,279,280,281,284,287,290],using:[1,2,4,6,7,8,10,11,12,20,21,22,25,27,28,29,30,32,34,37,38,44,45,58,59,60,61,62,64,67,77,81,82,83,84,85,87,88,90,92,93,95,96,97,98,99,100,101,102,129,130,135,141,144,146,151,152,153,161,180,182,187,188,190,191,193,195,200,209,210,212,215,223,224,226,229,230,232,233,237,238,240,241,243,244,246,247,253,255,256,257,258,259,260,261,262,263,264,265,269,270,277,278,279,281,284,288,289,291,292],usr:[4,6,11,37,58,59,60,61,81,82,83,84],usu:96,usual:[14,25,90,91,102,135,204,206],utc:[69,101,269],utctim:101,utf:30,util:[7,11,21,22,32,93,102,131,152,153,189,191,206,226,238,269,278],util_cbmem:284,util_cbmem_test:7,util_crc:[284,288,290],util_mem:[7,256,258,259,260,261,262,263,264,270,280,284,287,288,290],util_pars:[264,280,284],uuid128:[28,30,251,253,255],uuid128_is_complet:[28,30],uuid16:[28,29,30,251,276,278],uuid16_is_complet:[28,30],uuid32:[28,30],uuid32_is_complet:[28,30],uuid:[28,29,30,31,33,67,251,253,255,276,278,279],uvp:101,v10:284,v14:260,v25:260,va_arg:209,va_list:[228,231],val:[24,25,40,51,58,59,60,62,94,130,184,187,191,201,206,224,225,226,238,254,255,258,264,277,278,279],val_len_max:130,val_str:130,valid:[21,40,51,54,58,59,60,62,67,73,90,129,136,141,151,153,170,177,178,180,188,191,207,251,269,277,278],valu:[1,4,7,12,21,24,25,28,29,30,31,38,40,43,47,51,54,58,59,60,62,63,65,66,67,69,72,73,76,81,82,83,86,90,91,94,99,100,101,129,130,135,175,176,180,183,187,188,191,192,193,194,195,200,206,208,210,212,215,223,224,238,240,241,247,250,251,252,253,254,255,265,267,271,272,276,277,278,280,281,283,284,286,291],valuabl:271,value1:[51,226],value2:[51,226],valuen:226,vanilla:152,vari:[9,90,97,129],variabl:[1,4,11,14,25,35,38,51,60,62,63,66,90,91,100,130,131,174,200,206,207,208,209,212,220,223,228,231,237,243,249,251,264,271,272,279,280,281,284],variant:[23,96,187],variat:12,varieti:[4,252],variou:[24,25,62,90,129,133,135,182,252,257,264],vdd:14,vector:280,vendor:271,ver:[1,7,56,198,199,237,247,256,270,271,272,273,277,278],ver_len:199,ver_str:199,verb:63,verbos:[1,7,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,256,270],veri:[1,9,32,56,90,100,102,129,180,208,244,245,253,258,259,271,278,279,291],verif:23,verifi:[23,58,60,81,83,129,180,182,209,223,241,243,259,260,261,263,264,269,277,278,279],versa:[8,223],version:[1,2,4,6,7,11,12,14,22,23,35,38,40,42,44,48,56,57,61,80,84,85,131,141,180,196,198,199,206,223,226,237,238,241,247,255,256,258,259,260,261,262,263,264,270,274,277,280,284,287,290,291,292],via:[8,14,21,27,43,56,90,91,129,131,135,153,155,156,157,162,165,174,175,177,180,181,182,188,212,215,223,224,226,241,247,248,249,251,259,261,264,271,277,280,281,283,286],vice:[8,223],vid:260,view:[1,7,10,12,31,51,63,67,210,214,215,223,224,226,271,276,283,292],vim:60,vin:280,violat:21,viper:11,virtual:[14,67,184,187],virtualbox:256,visibl:[2,29],visit:[14,40,58,59,60],visual:[5,13,292],visualstudio:12,vol:23,volatil:260,voltag:[135,137,182,192,260,278],volum:[30,152],vp_len:130,vscode:12,vtref:[259,261,264,278],vvp:101,wai:[2,3,9,14,22,31,32,60,62,85,88,93,100,101,131,153,187,188,189,206,223,225,244,271,272,273,277,278],wait:[14,85,86,87,88,90,92,93,99,100,137,183,188,191,226,240,243,262,264,265,276,277,278,286],waitin:92,wake:[14,86,90,93,99,100,183,212,243],wakeup:[100,212],walk:[90,100,147,151,180,206,278],wall:6,wallclock:[85,101],wanda:82,want:[1,3,11,14,19,51,58,59,60,61,62,81,84,85,86,90,91,92,93,98,99,100,129,130,131,151,153,170,187,206,207,208,211,224,236,238,242,246,248,249,251,253,254,255,256,257,259,260,261,262,264,267,269,271,277,278,281,291,294],warn:[1,6,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,225,251,259],warranti:[4,256,277,278,284,291,292],wasn:14,watch:246,watchdog:[93,98,192],watchpoint:[256,260],wdog:68,wear:246,wear_level_test:269,wearabl:9,web:[237,244],webfreak:12,websit:244,weird:14,welcom:[8,135,245,270,280],well:[8,14,23,41,56,90,91,97,99,129,130,135,196,228,236,250,264,276,278],were:[30,74,86,90,129,182,223,272,277],werror:[6,51],wes:264,west:101,wfi:260,wget:[58,60,81,83],what:[7,8,14,21,42,56,97,99,136,141,174,175,180,208,209,223,226,239,243,249,252,253,254,255,269,272,276,277,278],whatev:[24,99,270,278],wheel:[8,237],when:[1,2,6,7,8,10,12,14,15,21,23,24,25,27,30,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,67,73,82,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,129,130,131,132,135,141,142,143,146,152,153,155,156,157,161,162,163,165,170,172,174,175,180,187,188,191,193,194,196,200,203,207,208,209,211,212,213,215,218,221,223,224,225,226,231,233,235,238,240,241,243,244,246,247,248,249,252,253,254,255,256,259,260,262,263,265,269,271,272,273,277,278,279,280,281,282,283,284,288,291],whenev:[22,27,91,135,180,200,211,251,253,284],where:[8,9,10,11,14,23,30,32,36,38,51,56,60,61,62,84,90,91,94,96,97,100,101,129,130,131,141,142,143,146,149,151,180,187,190,191,194,199,200,206,223,225,226,238,243,253,254,255,258,259,264,270,278,280,287,290],wherea:[90,272],whether:[10,12,14,23,85,88,91,101,129,141,156,188,191,192,208,209,210,212,213,214,215,224,226,235,249,251,253,269,280,282,283,284],which:[1,2,4,8,11,14,15,20,21,22,31,33,35,40,56,58,59,60,62,63,67,81,82,83,85,86,87,90,91,93,94,97,98,99,100,101,102,129,130,135,136,138,141,151,152,153,180,183,184,187,188,191,193,196,200,207,209,223,224,225,228,231,234,235,237,241,243,249,250,251,252,253,254,255,256,264,269,270,271,272,277,278,288,291],white:[23,28],whitelist:28,who:10,whole:[14,136],whose:[62,63,180,212],why:[10,14,243],wide:[22,223],wifi:[7,270],wifi_connect:270,wifi_init:270,wifi_request_scan:270,wikipedia:[188,191],winc1500_wifi:270,window:[5,6,7,9,12,14,28,57,67,79,80,94,131,241,247,256,258,259,260,261,262,263,264,270,280,287,290,291],winusb:[260,262,290],wipe:145,wire:[8,188,191,264,277,278,290],wireless:22,wish:[6,10,174,175,188,243,271,289],withdraw:10,within:[1,12,21,32,42,56,90,94,95,97,129,135,141,146,149,151,174,175,180,182,187,198,200,206,209,210,211,215,224,233,243,252,262,269,271,277],without:[6,10,14,23,25,29,31,91,129,153,162,174,175,180,181,206,215,222,223,224,226,241,256,269,277,278,282],wno:6,won:[8,14,223,278],word:[6,56,90,93,99,129,180,191,251,256,271,284,291,292],word_siz:191,work:[2,4,8,10,11,14,23,25,56,62,63,86,90,92,93,94,96,97,99,100,129,131,135,136,161,182,224,237,238,242,243,246,247,250,256,258,264,269,274,276,277,278,281,283,286],work_stack:243,work_stack_s:243,work_task:243,work_task_handl:243,work_task_prio:243,workaround:14,workspac:[1,2,11,40,58,59,60,61,81,83,84],workspaceroot:12,world:[12,22,194,249,254,255,257,273,294],worri:93,worth:[1,95],would:[5,12,14,59,60,82,83,85,90,93,99,129,130,131,138,141,182,187,188,191,203,221,223,224,233,243,246,262,264,269,271,272,277,278,286,290],wrap:[101,224,258],wrapper:88,write:[1,9,14,15,21,29,62,65,66,81,82,83,95,129,130,131,135,136,137,141,142,143,147,152,153,158,159,169,171,173,174,175,182,185,187,188,194,196,198,201,202,203,204,206,219,224,231,240,243,245,250,252,253,264,265,268,277,278,279,286],write_cmd_rx:[77,238],write_cmd_tx:[77,238],write_config:[158,171],write_id:173,write_req_rx:[77,238],write_req_tx:[77,238],write_rsp_rx:[77,238],write_rsp_tx:[77,238],written:[11,14,21,24,60,83,93,129,141,142,143,146,151,157,158,161,164,170,171,172,174,175,180,188,191,251,253,258,272],wrong:[14,43,278],wsl:[12,60],www:[14,102,237,247,256,277,278,284,290,291,292],x03:277,x86:[4,12],x86_64:[256,284,291,292],xml:[7,89],xpf:4,xpsr:[256,260,262],xtal_32768:94,xtal_32768_synth:25,xxx:[6,94,100,136],xxx_branch_0_8_0:[271,272],xxx_branch_1_0_0:[271,272],xxx_branch_1_0_2:[271,272],xxx_branch_1_1_0:[271,272],xxx_branch_1_1_2:[271,272],xxx_branch_1_2_0:[271,272],xxx_branch_1_2_1:[271,272],xxxx:182,xzf:[58,60,61,83,84],yai:277,yaml:11,year:32,yes:[23,264],yesno:28,yet:[7,14,93,97,130,241,246,271,272,278],yield:93,yml:[1,6,7,42,44,51,53,54,56,62,95,96,102,130,131,136,137,153,174,181,206,208,215,223,224,225,226,237,238,240,246,247,256,258,264,265,267,269,270,271,273,274,277,279,280,284],you:[1,3,4,5,6,7,8,9,10,11,12,14,19,20,31,34,35,36,40,42,44,46,47,48,51,52,53,54,55,56,58,59,60,61,62,64,65,67,69,77,81,82,83,84,85,93,94,95,96,97,102,129,130,131,132,133,135,138,139,141,142,143,147,156,161,162,164,170,172,174,175,181,182,184,187,188,190,200,203,206,207,208,210,211,212,215,216,217,220,221,222,223,224,225,226,227,233,236,238,240,241,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,269,270,271,272,273,276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,294],your:[1,3,4,6,8,10,14,20,31,40,51,53,56,57,59,60,61,62,71,72,80,82,83,84,85,93,94,95,96,97,98,100,132,133,134,135,136,137,139,141,152,174,182,206,208,215,221,223,225,226,233,240,241,242,244,245,246,247,248,249,250,252,253,254,255,257,258,264,265,267,272,276,277,278,279,281,282,286,287,289,290,291,292,294],your_target:14,yourself:[2,10,14,31,93,94,248,277,294],ype:[254,255],yym:6,zadig:[260,262,290],zero:[12,25,85,90,91,94,100,101,130,145,149,151,158,170,171,176,183,187,188,191,192,193,194,200,216,218,219,220,226,243,253,254,255,257,264,269,270,271,284,294],zillion:14,zip:[4,259],zone:101},titles:["&lt;no title&gt;","Concepts","Everything You Need in a Docker Container","Setup &amp; Get Started","Installing the Cross Tools for ARM","Native Installation","Installing Native Toolchain","Creating Your First Mynewt Project","Using the Serial Port with Mynewt OS","Mynewt Documentation","FAQ - Administrative","Contributing to Newt or Newtmgr Tools","Developing Mynewt Applications with Visual Studio Code","Appendix","Mynewt OS related FAQ","NimBLE Host ATT Client Reference","NimBLE Host GAP Reference","NimBLE Host GATT Client Reference","NimBLE Host GATT Server Reference","NimBLE Host","NimBLE Host Identity Reference","NimBLE Host Return Codes","BLE User Guide","NimBLE Security","Configure device address","Configure clock for controller","NimBLE Setup","Respond to <em>sync</em> and <em>reset</em> events","GAP API for btshell","GATT feature API for btshell","Advertisement Data Fields","API for btshell app","Bluetooth Mesh","Sample application","Mynewt Newt Tool Documentation","newt build","newt clean","newt complete","newt create-image","newt debug","newt help","newt info","newt install","newt load","newt mfg","newt new","newt pkg","newt resign-image","newt run","newt size","newt sync","newt target","newt test","newt upgrade","newt vals","newt version","Newt Tool Guide","Install","Installing Newt on Linux","Installing Newt on Mac OS","Installing Newt on Windows","Installing Previous Releases of Newt","Theory of Operations","Command Structure","Mynewt Newt Manager Documentation","Command List","newtmgr config","newtmgr conn","newtmgr crash","newtmgr datetime","newtmgr echo","newtmgr fs","newtmgr image","newtmgr log","newtmgr mpstat","newtmgr reset","newtmgr run","newtmgr stat","newtmgr taskstat","Newt Manager Guide","Install","Installing Newtmgr on Linux","Installing Newtmgr on Mac OS","Installing Newtmgr on Windows","Installing Previous Releases of Newtmgr","Callout","Scheduler","CPU Time","Event Queues","Heap","Mbufs","Memory Pools","Mutex","Apache Mynewt Operating System Kernel","BSP Porting","Porting Mynewt to a new CPU Architecture","Porting Mynewt to a new MCU","Porting Mynewt OS","Sanity","Semaphore","Task","OS Time","Baselibc","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","Bootloader","Config","Console","Customizing Newt Manager Usage with mgmt","Newt Manager","Using the OIC Framework","Drivers","flash","mmc","elua","lua_init","lua_main","Flash Circular Buffer (FCB)","fcb_append","fcb_append_finish","fcb_append_to_scratch","fcb_clear","fcb_getnext","fcb_init","fcb_is_empty","fcb_offset_last_n","fcb_rotate","fcb_walk","The FAT File System","File System Abstraction","fs_close","fs_closedir","fs_dirent_is_dir","fs_dirent_name","fs_filelen","fs_getpos","fs_mkdir","fs_open","fs_opendir","struct fs_ops","fs_read","fs_readdir","fs_register","fs_rename","fs/fs Return Codes","fs_seek","fs_unlink","fs_write","fsutil_read_file","fsutil_write_file","Newtron Flash Filesystem (nffs)","struct nffs_area_desc","struct nffs_config","nffs_detect","nffs_format","nffs_init","Internals of nffs","Other File Systems","Hardware Abstraction Layer","BSP","Creating New HAL Interfaces","Flash","hal_flash_int","GPIO","I2C","Using HAL in Your Libraries","OS Tick","SPI","System","Timer","UART","Watchdog","Image Manager","imgmgr_module_init","imgr_ver_parse","imgr_ver_str","JSON","json_encode_object_entry","json_encode_object_finish","json_encode_object_key","json_encode_object_start","json_read_object","Logging","Sensor API","Creating and Configuring a Sensor Device","Sensor Device Driver","Mynewt Sensor Framework Overview","Sensor Listener API","Sensor Manager API","OIC Sensor Support","Sensor Shell Command","Shell","shell_cmd_register","shell_evq_set","shell_nlip_input_register","shell_nlip_output","shell_register","shell_register_app_cmd_handler","shell_register_default_module","Split Images","Statistics Module","Validation and Error Messages","Compile-Time Configuration and Initialization","System Modules","TEST_ASSERT","TEST_CASE","TEST_CASE_DECL","TEST_PASS","TEST_SUITE","testutil","tu_init","tu_restart","OS User Guide","Blinky, your \u201cHello World!\u201d, on STM32F303 Discovery","Enabling Newt Manager in Your Application","How to Define a Target","How to Use Event Queues to Manage Multiple Events","Over-the-Air Image Upgrade","Pin Wheel Modifications to \u201cBlinky\u201d on STM32F3 Discovery","Tasks and Priority Management","Try Markdown","Bluetooth Low Energy","Set up a bare bones NimBLE application","Use HCI access to NimBLE controller","BLE Peripheral Project","Advertising","BLE Peripheral App","Characteristic Access","GAP Event callbacks","Service Registration","BLE Eddystone","BLE iBeacon","Blinky, your \u201cHello World!\u201d, on Arduino Zero","Project Blinky","Enabling The Console and Shell for Blinky","Blinky, your \u201cHello World!\u201d, on Arduino Primo","Blinky, your \u201cHello World!\u201d, on STM32F4-Discovery","Blinky, your \u201cHello World!\u201d, on a nRF52 Development Kit","Blinky, your \u201cHello World!\u201d, on Olimex","Blinky, your \u201cHello World!\u201d, on RedBear Nano 2","LoRaWAN App","How to Use Event Queues to Manage Multiple Events","&lt;no title&gt;","How to Reduce Application Code Size","Other","Write a Test Suite for a Package","Enable Wi-Fi on Arduino MKR1000","Adding Repositories to your Project","Create a Repo out of a Project","Accessing a private repository","Upgrade a repo","Air Quality Sensor Project","Air Quality Sensor Project via Bluetooth","Air Quality Sensor Project","Adding an Analog Sensor on nRF52","Adding OIC Sensor Support to the bleprph_oic Application","Enabling an Off-Board Sensor in an Existing Application","Enabling OIC Sensor Data Monitoring in the sensors_test Application","Changing the Default Configuration for a Sensor","Enabling OIC Sensor Data Monitoring","Developing an Application for an Onboard Sensor","Sensors","Sensor Tutorials Overview","Project Slinky using the Nordic nRF52 Board","Project Sim Slinky","Project Slinky","Project Slinky Using Olimex Board","SEGGER RTT Console","SEGGER SystemView","Tooling","Tutorials"],titleterms:{"abstract":[153,182],"default":[243,258,282],"function":[14,94,101,102,138,141,196,200,207,209,211,212,226,233,243,251,253,279,282],"import":237,"new":[7,45,95,96,180,184,250,282,284,287,288,290],"public":24,"return":[21,137,139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,177,178,179,197,198,199,201,202,203,204,205,216,217,218,219,220,221,222,228,229,230,231,232,234,235],"switch":[102,243],"try":[244,269],Adding:[59,82,224,271,278,279,282,284],For:[4,277],One:14,The:[152,258],Use:[2,238,240,247,258,265,284,287,290],Used:207,Uses:206,Using:[8,58,81,90,131,134,189,277,280,284,290],acceleromet:282,access:[247,251,273],adafruit:14,adc:278,add:[67,94,254,255,276,277,279,284],addit:271,address:[20,24,31,254,255],administr:10,advertis:[14,28,30,31,249,254,255],air:[241,275,276,277],all:[14,240,265],altern:14,ambigu:225,analog:278,apach:[9,32,93],api:[14,28,29,31,85,86,87,88,89,90,91,92,98,99,100,101,130,131,152,153,174,181,183,184,185,187,188,190,191,192,193,194,195,206,207,211,212,284],app:[9,31,62,223,247,250,264,278,284,286,292],app_get_light:279,app_set_light:279,appendix:[13,94],applic:[7,12,33,93,206,207,208,223,237,238,240,243,246,247,254,255,256,258,259,260,261,262,263,264,265,267,270,278,279,280,281,282,284,287,290],apt:[58,81],architectur:95,arduino:[8,256,259,270],area:[174,180,225],argument:[139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,169,170,171,172,173,177,178,197,198,199,201,202,203,204,205,216,217,218,219,220,222,228,229,230,231,232,234,235],arm:[4,14],artifact:62,assert:269,assign:225,associ:12,att:[15,21],attach:247,attribut:[31,253],autocomplet:37,avail:[28,29,40,44,51,257,271,286,289],bare:246,baselibc:102,bash:37,basic:93,beacon:[254,255],bearer:32,begin:[31,249],being:251,belong:31,between:[14,270],binari:[58,60,81,83],bit:6,bitbang:14,ble:[14,22,246,248,250,254,255,278,279],ble_gap_disc_param:14,blehci:247,blemesh:14,bleprph_gap_ev:252,bleprph_oic:279,blink:237,blink_rigado:49,blinki:[7,237,242,256,257,258,259,260,261,262,263],block:[14,180],bluetooth:[14,22,32,245,247,276,278],bluez:247,bno055:280,bno055_log:209,bno055_stat:209,board:[8,97,208,256,259,260,261,262,263,264,270,278,279,280,281,287,290],bone:246,boot:[14,129,223],bootload:[14,129,247,256,259,260,261,262,263,264,270,280,284,287,290],branch:[59,82],breakout:8,brew:6,bsp:[54,94,97,183,225],btmgmt:247,btmon:247,btshell:[14,28,29,31],buffer:141,bug:10,build:[7,9,12,14,35,56,62,237,238,242,243,246,247,256,258,259,260,261,262,263,264,270,278,279,280,281,282,284,287,288,290],cach:180,call:[14,282],callback:252,callout:[85,240,265],can:10,cannot:282,categori:294,chang:[34,64,278,282],channel:28,characterist:[31,248,251],check:[58,59,60,81,82,83,94,98,129,212],choos:269,circular:141,clean:36,clear:263,cli:[130,277],client:[15,17],clock:25,close:264,cmsis_nvic:14,code:[12,14,21,94,95,168,224,267,269],collect:180,command:[12,14,28,29,40,44,51,63,65,67,133,209,214,215,238,247,277,288],committ:10,commun:[8,238,258],compil:[14,95,226],complet:[37,215],compon:[22,271],comput:[58,81,270,280,284],concept:[1,223],conclus:[246,254,255,278],condit:226,config:[66,130],configur:[1,12,24,25,28,29,31,130,152,206,207,208,209,212,225,226,237,238,254,255,258,282],conflict:226,congratul:269,conn:67,connect:[14,28,31,238,241,247,256,258,259,260,261,262,263,264,270,278,279,280,281,284,287,288,290,291],consider:243,consol:[131,215,224,258,270,280,284,291],contain:2,content:[34,64],context:243,contribut:11,control:[25,247,254,255,279,280,281,286],copi:[94,279],core:[14,21,93,97],correct:14,cpu:[87,95,97],crash:68,creat:[7,38,90,94,95,184,208,237,238,241,246,247,250,254,255,256,259,260,261,262,263,264,265,269,270,272,277,278,279,280,281,284,287,288,290],creation:93,cross:4,crystal:25,current:223,custom:[98,132,238],data:[30,101,138,141,153,174,180,188,196,200,207,209,211,212,215,233,249,264,278,279,280,281,282,283,284],datetim:69,debian:[58,81],debug:[12,39,62,94],debugg:[4,12],declar:224,decod:200,defin:[12,94,209,224,239],definit:[186,225,226],delai:14,delet:[67,279],depend:[7,62,94,97,136,137,181,182,237,238,258,272,279,284],descript:[35,36,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,66,67,68,69,70,71,72,73,74,75,76,77,78,85,86,87,88,89,91,92,97,98,99,100,101,102,131,135,138,141,152,153,174,182,183,185,186,187,188,190,191,192,193,194,195,196,200,215,223,233,280],descriptor:[31,248,253,271],design:[135,182],detail:224,detect:[14,180],determin:251,develop:[12,261,284],devic:[2,14,24,28,31,130,207,208,209,241,247,279,280,281,282,286],differ:14,direct:31,directori:[62,180],disabl:28,discov:31,discoveri:[28,237,242,260],disk:180,disk_op:153,displai:31,docker:2,document:[10,14,34,64],doe:271,download:[11,58,62,81,94,237,242,264,278],driver:[14,135,207,209,277,278,282],duplic:225,eabi:14,earli:14,echo:70,eddyston:254,edit:10,editor:10,elf:14,elua:138,empti:[254,255],emul:280,enabl:[2,14,28,37,215,223,224,238,258,270,279,280,281,283,284],encod:200,end:14,endif:[208,209],energi:245,enhanc:174,enter:246,environ:11,equip:243,eras:259,error:[14,225],establish:[31,247,270],etap:278,event:[27,88,240,252,258,265],everyth:[2,264,278],exactli:14,exampl:[8,21,22,27,35,36,38,39,40,44,45,46,47,48,49,51,52,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,88,93,130,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,160,161,162,164,165,167,169,170,171,172,173,177,178,182,186,194,198,199,201,202,203,204,205,216,218,219,221,222,225,226,228,229,230,232,233,234,235,240,265],execut:[6,237,242,259,260,261,263,264,278,288,291,292],exist:[238,258,271,280],explor:7,express:225,extend:[14,28,284],extens:[2,12],extern:[237,256,270],faq:[10,14],fat:152,fcb:141,fcb_append:142,fcb_append_finish:143,fcb_append_to_scratch:144,fcb_clear:145,fcb_getnext:146,fcb_init:147,fcb_is_empti:148,fcb_offset_last_n:149,fcb_rotat:150,fcb_walk:151,featur:[7,10,22,23,29,32,93],fetch:[7,256,270],field:30,file:[14,94,136,137,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,180,181,224,230,272,279,282,284],filesystem:[153,174],fill:94,find:271,firmwar:14,first:[7,9],flag:[35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78],flash:[94,129,136,141,174,180,185,225,259,263],forget:14,format:[14,129,180],framework:[134,209,210,238,283],from:[58,59,60,81,82,83,131,279,281,282],fs_close:154,fs_closedir:155,fs_dirent_is_dir:156,fs_dirent_nam:157,fs_filelen:158,fs_getpo:159,fs_mkdir:160,fs_op:163,fs_open:161,fs_opendir:162,fs_read:164,fs_readdir:165,fs_regist:166,fs_renam:167,fs_seek:169,fs_unlink:170,fs_write:171,fsutil_read_fil:172,fsutil_write_fil:173,ft232h:8,full:131,futur:174,gap:[16,28,252],garbag:180,gatt:[17,18,29,276],gcc:[6,14],gdb:6,gener:[23,31,135,182,226,240,265],get:[3,58,81,209],git:[10,60],global:[35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78],gpio:187,grei:14,group:14,guarante:252,guid:[22,56,79,236],hal:[97,184,189,277],hal_flash_int:186,hal_i2c:188,handler:[130,206,215],hardcod:24,hardwar:[24,182,237,264,278,280,291,292],hci:[21,247],header:[15,16,17,18,20,21,90,136,137,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,181,224,279,282],heading3:244,heading4:244,heap:89,hello:[237,256,259,260,261,262,263],help:[40,215],high:129,hold:224,homebrew:[59,82],host:[15,16,17,18,19,20,21,254,255],how:[10,102,226,239,240,265,267,271,279,282],i2c:188,iOS:14,ibeacon:255,ident:20,identifi:271,ignor:225,imag:[14,38,47,72,129,196,223,237,238,241,242,247,259,260,261,262,263,264,270,278,279,280,281,282,284,287,290],imgmgr_module_init:197,imgr_ver_pars:198,imgr_ver_str:199,immedi:14,implement:[95,135,206,209,224],includ:[31,209,224,253],indefinit:[254,255],info:41,inform:215,initi:[31,136,137,174,207,209,224,226,243,282],inod:180,input:[131,215],instal:[2,4,5,6,11,12,14,37,42,57,58,59,60,61,80,81,82,83,84,237,264,278],instead:284,integr:129,interfac:[181,184,207],intern:[174,180],interrupt:[240,265],introduct:[9,15,16,17,18,19,20,21,32,56,94,240,248,265,269],invalid:225,invert:14,invok:133,issu:14,join:264,json:200,json_encode_object_entri:201,json_encode_object_finish:202,json_encode_object_kei:203,json_encode_object_start:204,json_read_object:205,kei:[14,23,28],kernel:93,kit:261,l2cap:[14,21,28],laptop:10,latest:[58,59,60,81,82,83],launch:292,layer:182,lead:14,led:[237,242],legaci:28,level:[129,206,241],libc:6,librari:[189,237],like:10,limit:129,line:215,link:4,linker:94,linux:[2,4,6,8,11,58,61,81,84],lis2dh12_onb:208,list:[10,65,102,138,141,196,200,207,211,212,223,233,244,254,255,280,284],listen:[211,284],load:[43,238,247,256,259,260,261,262,263,270,279,280,281,282,284,287,290],loader:223,log:[73,206,209,241],look:212,lorawan:264,low:245,lua_init:139,lua_main:140,mac:[2,4,6,8,11,59,61,82,84],macro:101,main:[243,258,279,282,284],make:10,manag:[9,21,56,64,79,132,133,196,212,238,240,243,265],manual:[58,81],map:[94,129],markdown:244,master:[59,82],mbuf:90,mcu:[14,94,96,97],measur:174,memori:[91,263],merg:10,mesh:[14,22,32],messag:[14,225],method:[24,58,81],mfg:44,mfghash:14,mgmt:132,mingw:60,minim:131,miscellan:[14,174],mkr1000:270,mmc:137,model:32,modif:242,modifi:[238,258,279,284],modul:[14,215,224,227],monitor:[247,281,283],more:[56,237],move:180,mpstat:74,mqueue:90,msy:90,msys2:60,multicast:14,multipl:[12,153,224,225,240,265],mutex:92,my_sensor_app:284,mynewt:[2,7,8,9,12,14,24,32,34,59,64,82,93,94,95,96,97,131,210,246,271,279,281,286],mynewt_v:[208,209],name:[31,215,224,226],nano:263,nativ:[5,6],need:[2,237,242,264,271,280,291,292],newt:[2,9,11,12,14,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,64,79,132,133,238],newtmgr:[11,14,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,84,133,215,224,238,241,287,288,290],newtron:174,next:[6,280],nfc:14,nff:[14,174,180],nffs_area_desc:175,nffs_config:176,nffs_detect:177,nffs_format:178,nffs_init:179,nimbl:[14,15,16,17,18,19,20,21,22,23,26,246,247,254,255],nmp:14,node:32,none:14,nordic:[8,287],normal:90,note:[56,101,138,139,140,142,143,144,145,146,147,148,149,150,151,154,157,159,160,161,162,166,167,169,171,172,175,176,197,198,199,217,224,228,231],notnul:225,nrf52840:14,nrf52:[14,261,278,280,287],nrf52_adc:278,nrf52dk:[8,14],nrf:24,object:[180,207,237,242,257,264,291,292],off:[208,280],oic:[134,213,279,281,283,286],oicmgr:238,olimex:[262,290],omgr_app_init:279,onboard:[208,284],onto:[256,270],open:[247,264],openocd:4,oper:[14,56,62,93,129,188,191,223],option:[238,259],orient:28,ota:264,other:[7,12,181,238,268,272],out:[14,269,271,272],output:[49,54,131],over:[215,241],overrid:[225,226],overview:[65,210,248,249,250,252,257,279,282,283,286,289],own:10,pack:2,packag:[1,7,58,62,81,94,97,131,181,206,207,210,225,226,238,246,256,269,270,277,279,280,284],packet:90,passiv:31,patch:10,peer:[21,31],perform:31,peripher:[248,250],persist:130,pin:[14,242],pkg:[14,46,94],platform:[8,182],poll:[207,212],pool:[90,91],port:[8,14,94,95,96,97,264],precis:14,preempt:243,prerequisit:[7,238,240,241,243,247,250,256,257,258,259,260,261,262,263,265,270,277,279,280,281,282,283,284,286,287,288,289,290,294],preview:[34,64],previou:[61,84],primo:259,principl:[135,182],printf:14,prioriti:[225,243],privaci:23,privat:273,pro:8,process:[215,258],produc:[6,62],profil:[14,238,241,288],project:[1,7,10,12,14,22,237,238,246,247,248,256,257,258,259,260,261,262,263,264,265,270,271,272,275,276,277,278,287,288,289,290],prompt:215,protect:263,protocol:[215,238,254,255],provis:32,pull:[2,10],put:[240,265],qualiti:[275,276,277],queri:[287,290],question:[10,14],queue:[88,240,258,265],radio:14,ram:180,random:[14,24],rate:207,rational:56,read:[31,207,209,251,282,284],reboot:282,rebuild:[11,284],reconfigur:208,recoveri:129,redbear:263,reduc:[14,241,267],refer:[15,16,17,18,20,21,226],referenc:226,regist:[98,181,209,212,215,224,280],registr:253,relat:14,releas:[58,59,60,61,81,82,83,84],remot:278,renam:180,repo:[271,272,274,278],repositori:[7,10,56,271,272,273],represent:180,request:10,requir:[94,278],reset:[27,75,129],resign:47,resolut:272,resolv:[62,226,272],respond:27,restart:14,restrict:225,retriev:[223,224],review:[243,251],round:242,rtt:[284,291],run:[7,12,14,48,76,256,258,288,291,292],runtim:[24,130],safeti:153,sampl:[33,280,282],saniti:98,satisfi:94,scale:269,scan:31,schedul:86,scratch:180,script:[2,94],section:224,secur:[21,23,28],segger:[4,291,292],select:2,semant:14,semaphor:99,semiconductor:8,send:[31,247,264],sensor:[207,208,209,210,211,212,213,214,275,276,277,278,279,280,281,282,283,284,285,286],sensor_read:284,sensors_test:281,sequenc:223,serial:[8,14,215,247,258,270,287,290],server:18,servic:[31,248,253,276,278],set:[6,11,14,31,58,81,94,206,207,209,225,226,238,246,249,253,258,277,279,282,288],settl:25,setup:[3,8,14,26,270,291,292],shell:[209,214,215,258,284],shell_cmd_regist:216,shell_evq_set:217,shell_nlip_input_regist:218,shell_nlip_output:219,shell_regist:220,shell_register_app_cmd_handl:221,shell_register_default_modul:222,should:272,show:[31,67],sign:[129,237,259,260,261,262,263,264,270,278,287,290],signatur:251,sim:288,simul:7,singl:223,size:[14,49,267],skeleton:284,slinki:[287,288,289,290],slot:129,smart:[279,281,286],softwar:292,some:10,sourc:[7,11,56,58,60,81,83,238,254,255,277,279],space:180,special:101,specif:[95,272],specifi:[181,226],spi:191,split:223,stack:[243,254,255],start:[3,247,270],startup:94,stat:[77,209,224],state:[129,130,223],statist:224,statu:129,step:[11,241,257,279,280,281,282,284,289],stm32f303:237,stm32f3:[237,242],stm32f4:260,storag:28,struct:[153,163,175,176],structur:[63,101,138,141,153,174,180,196,200,207,211,212,215,233],stub:131,studio:12,sub:67,submit:10,suit:269,summari:21,support:[2,14,32,62,97,153,182,210,213,237,238,279,280,283,284],swap:129,sync:[14,27,50,254,255],syntax:14,syscfg:[206,223,226,279],sysinit_app:226,system:[14,25,56,93,152,153,181,192,225,226,227],systemview:292,tabl:224,talk:270,tap:[59,82],target:[1,24,51,62,94,237,238,239,242,246,247,250,256,258,259,260,261,262,263,264,270,278,280,284,287,288,290,291,292],task:[12,14,98,100,225,240,243,265,278],taskstat:78,tcp:270,templat:94,termin:280,test:[7,52,94,269,277],test_assert:228,test_cas:[229,230],test_case_decl:230,test_pass:231,test_suit:232,testutil:233,theori:[62,188,191,223],thingi:284,thread:153,through:224,tick:190,time:[14,25,87,101,226],timer:[193,240,258,265],togeth:[240,265],tool:[4,11,34,56,60,83,293],toolchain:[4,6],topolog:32,trace:14,transceiv:14,transport:[215,238],tree:277,trigger:14,troubleshoot:14,tu_init:234,tu_restart:235,tutori:[223,257,286,289,294],type:[207,209,212,280],uart:194,undefin:225,under:269,undirect:31,unifi:223,unlink:180,unsatisfi:14,updat:11,upgrad:[14,53,58,59,81,82,223,241,274],upload:258,usag:[35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,132,141],usb2:2,usb:8,use:[10,58,81,90,93,271],user:[22,236],using:[14,56,287,290],val:54,valid:225,valu:[14,137,139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,169,170,171,172,173,177,178,179,197,198,199,201,202,203,204,205,207,209,216,217,218,219,220,221,222,225,226,228,229,230,231,232,234,235,279,282],variabl:224,vector:129,verif:[129,282],verifi:282,version:[55,58,59,60,81,82,83,271,272,278],via:[270,276,278,284],view:[278,279,280,281,284],violat:225,virtualbox:2,visual:12,wait:[254,255],want:[10,237],watch:[237,242],watchdog:195,water:278,welcom:9,what:[10,237,242,271],wheel:242,where:272,why:[90,93,271],window:[2,4,8,11,60,61,83,84],work:12,workspac:12,world:[237,256,259,260,261,262,263],would:10,wrapper:2,write:[31,34,64,180,251,263,269],yml:[14,94,272,278],you:[2,237,242],your:[2,7,9,11,12,58,81,181,189,224,237,238,243,256,259,260,261,262,263,269,270,271,280,284,288],zero:[14,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","mynewt_faq","network/ble/ble_hs/ble_att","network/ble/ble_hs/ble_gap","network/ble/ble_hs/ble_gattc","network/ble/ble_hs/ble_gatts","network/ble/ble_hs/ble_hs","network/ble/ble_hs/ble_hs_id","network/ble/ble_hs/ble_hs_return_codes","network/ble/ble_intro","network/ble/ble_sec","network/ble/ble_setup/ble_addr","network/ble/ble_setup/ble_lp_clock","network/ble/ble_setup/ble_setup_intro","network/ble/ble_setup/ble_sync_cb","network/ble/btshell/btshell_GAP","network/ble/btshell/btshell_GATT","network/ble/btshell/btshell_advdata","network/ble/btshell/btshell_api","network/ble/mesh/index","network/ble/mesh/sample","newt/README","newt/command_list/newt_build","newt/command_list/newt_clean","newt/command_list/newt_complete","newt/command_list/newt_create_image","newt/command_list/newt_debug","newt/command_list/newt_help","newt/command_list/newt_info","newt/command_list/newt_install","newt/command_list/newt_load","newt/command_list/newt_mfg","newt/command_list/newt_new","newt/command_list/newt_pkg","newt/command_list/newt_resign_image","newt/command_list/newt_run","newt/command_list/newt_size","newt/command_list/newt_sync","newt/command_list/newt_target","newt/command_list/newt_test","newt/command_list/newt_upgrade","newt/command_list/newt_vals","newt/command_list/newt_version","newt/index","newt/install/index","newt/install/newt_linux","newt/install/newt_mac","newt/install/newt_windows","newt/install/prev_releases","newt/newt_operation","newt/newt_ops","newtmgr/README","newtmgr/command_list/index","newtmgr/command_list/newtmgr_config","newtmgr/command_list/newtmgr_conn","newtmgr/command_list/newtmgr_crash","newtmgr/command_list/newtmgr_datetime","newtmgr/command_list/newtmgr_echo","newtmgr/command_list/newtmgr_fs","newtmgr/command_list/newtmgr_image","newtmgr/command_list/newtmgr_logs","newtmgr/command_list/newtmgr_mpstats","newtmgr/command_list/newtmgr_reset","newtmgr/command_list/newtmgr_run","newtmgr/command_list/newtmgr_stat","newtmgr/command_list/newtmgr_taskstats","newtmgr/index","newtmgr/install/index","newtmgr/install/install_linux","newtmgr/install/install_mac","newtmgr/install/install_windows","newtmgr/install/prev_releases","os/core_os/callout/callout","os/core_os/context_switch/context_switch","os/core_os/cputime/os_cputime","os/core_os/event_queue/event_queue","os/core_os/heap/heap","os/core_os/mbuf/mbuf","os/core_os/memory_pool/memory_pool","os/core_os/mutex/mutex","os/core_os/mynewt_os","os/core_os/porting/port_bsp","os/core_os/porting/port_cpu","os/core_os/porting/port_mcu","os/core_os/porting/port_os","os/core_os/sanity/sanity","os/core_os/semaphore/semaphore","os/core_os/task/task","os/core_os/time/os_time","os/modules/baselibc","os/modules/bootloader/boot_build_status","os/modules/bootloader/boot_build_status_one","os/modules/bootloader/boot_clear_status","os/modules/bootloader/boot_copy_area","os/modules/bootloader/boot_copy_image","os/modules/bootloader/boot_erase_area","os/modules/bootloader/boot_fill_slot","os/modules/bootloader/boot_find_image_area_idx","os/modules/bootloader/boot_find_image_part","os/modules/bootloader/boot_find_image_slot","os/modules/bootloader/boot_go","os/modules/bootloader/boot_init_flash","os/modules/bootloader/boot_move_area","os/modules/bootloader/boot_read_image_header","os/modules/bootloader/boot_read_image_headers","os/modules/bootloader/boot_read_status","os/modules/bootloader/boot_select_image_slot","os/modules/bootloader/boot_slot_addr","os/modules/bootloader/boot_slot_to_area_idx","os/modules/bootloader/boot_swap_areas","os/modules/bootloader/boot_vect_delete_main","os/modules/bootloader/boot_vect_delete_test","os/modules/bootloader/boot_vect_read_main","os/modules/bootloader/boot_vect_read_one","os/modules/bootloader/boot_vect_read_test","os/modules/bootloader/boot_write_status","os/modules/bootloader/bootloader","os/modules/config/config","os/modules/console/console","os/modules/devmgmt/customize_newtmgr","os/modules/devmgmt/newtmgr","os/modules/devmgmt/oicmgr","os/modules/drivers/driver","os/modules/drivers/flash","os/modules/drivers/mmc","os/modules/elua/elua","os/modules/elua/lua_init","os/modules/elua/lua_main","os/modules/fcb/fcb","os/modules/fcb/fcb_append","os/modules/fcb/fcb_append_finish","os/modules/fcb/fcb_append_to_scratch","os/modules/fcb/fcb_clear","os/modules/fcb/fcb_getnext","os/modules/fcb/fcb_init","os/modules/fcb/fcb_is_empty","os/modules/fcb/fcb_offset_last_n","os/modules/fcb/fcb_rotate","os/modules/fcb/fcb_walk","os/modules/fs/fatfs","os/modules/fs/fs/fs","os/modules/fs/fs/fs_close","os/modules/fs/fs/fs_closedir","os/modules/fs/fs/fs_dirent_is_dir","os/modules/fs/fs/fs_dirent_name","os/modules/fs/fs/fs_filelen","os/modules/fs/fs/fs_getpos","os/modules/fs/fs/fs_mkdir","os/modules/fs/fs/fs_open","os/modules/fs/fs/fs_opendir","os/modules/fs/fs/fs_ops","os/modules/fs/fs/fs_read","os/modules/fs/fs/fs_readdir","os/modules/fs/fs/fs_register","os/modules/fs/fs/fs_rename","os/modules/fs/fs/fs_return_codes","os/modules/fs/fs/fs_seek","os/modules/fs/fs/fs_unlink","os/modules/fs/fs/fs_write","os/modules/fs/fs/fsutil_read_file","os/modules/fs/fs/fsutil_write_file","os/modules/fs/nffs/nffs","os/modules/fs/nffs/nffs_area_desc","os/modules/fs/nffs/nffs_config","os/modules/fs/nffs/nffs_detect","os/modules/fs/nffs/nffs_format","os/modules/fs/nffs/nffs_init","os/modules/fs/nffs/nffs_internals","os/modules/fs/otherfs","os/modules/hal/hal","os/modules/hal/hal_bsp/hal_bsp","os/modules/hal/hal_creation","os/modules/hal/hal_flash/hal_flash","os/modules/hal/hal_flash/hal_flash_int","os/modules/hal/hal_gpio/hal_gpio","os/modules/hal/hal_i2c/hal_i2c","os/modules/hal/hal_in_libraries","os/modules/hal/hal_os_tick/hal_os_tick","os/modules/hal/hal_spi/hal_spi","os/modules/hal/hal_system/hal_sys","os/modules/hal/hal_timer/hal_timer","os/modules/hal/hal_uart/hal_uart","os/modules/hal/hal_watchdog/hal_watchdog","os/modules/imgmgr/imgmgr","os/modules/imgmgr/imgmgr_module_init","os/modules/imgmgr/imgr_ver_parse","os/modules/imgmgr/imgr_ver_str","os/modules/json/json","os/modules/json/json_encode_object_entry","os/modules/json/json_encode_object_finish","os/modules/json/json_encode_object_key","os/modules/json/json_encode_object_start","os/modules/json/json_read_object","os/modules/logs/logs","os/modules/sensor_framework/sensor_api","os/modules/sensor_framework/sensor_create","os/modules/sensor_framework/sensor_driver","os/modules/sensor_framework/sensor_framework_overview","os/modules/sensor_framework/sensor_listener_api","os/modules/sensor_framework/sensor_mgr_api","os/modules/sensor_framework/sensor_oic","os/modules/sensor_framework/sensor_shell","os/modules/shell/shell","os/modules/shell/shell_cmd_register","os/modules/shell/shell_evq_set","os/modules/shell/shell_nlip_input_register","os/modules/shell/shell_nlip_output","os/modules/shell/shell_register","os/modules/shell/shell_register_app_cmd_handler","os/modules/shell/shell_register_default_module","os/modules/split/split","os/modules/stats/stats","os/modules/sysinitconfig/sysconfig_error","os/modules/sysinitconfig/sysinitconfig","os/modules/system_modules","os/modules/testutil/test_assert","os/modules/testutil/test_case","os/modules/testutil/test_decl","os/modules/testutil/test_pass","os/modules/testutil/test_suite","os/modules/testutil/testutil","os/modules/testutil/tu_init","os/modules/testutil/tu_restart","os/os_user_guide","os/tutorials/STM32F303","os/tutorials/add_newtmgr","os/tutorials/define_target","os/tutorials/event_queue","os/tutorials/ota_upgrade_nrf52","os/tutorials/pin-wheel-mods","os/tutorials/tasks_lesson","os/tutorials/try_markdown","tutorials/ble/ble","tutorials/ble/ble_bare_bones","tutorials/ble/blehci_project","tutorials/ble/bleprph/bleprph","tutorials/ble/bleprph/bleprph-sections/bleprph-adv","tutorials/ble/bleprph/bleprph-sections/bleprph-app","tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access","tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event","tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg","tutorials/ble/eddystone","tutorials/ble/ibeacon","tutorials/blinky/arduino_zero","tutorials/blinky/blinky","tutorials/blinky/blinky_console","tutorials/blinky/blinky_primo","tutorials/blinky/blinky_stm32f4disc","tutorials/blinky/nRF52","tutorials/blinky/olimex","tutorials/blinky/rbnano2","tutorials/devmgmt/add_newtmgr","tutorials/devmgmt/devmgmt","tutorials/devmgmt/ota_upgrade_nrf52","tutorials/lora/lorawanapp","tutorials/os_fundamentals/event_queue","tutorials/os_fundamentals/os_fundamentals","tutorials/os_fundamentals/tasks_lesson","tutorials/other/codesize","tutorials/other/other","tutorials/other/unit_test","tutorials/other/wi-fi_on_arduino","tutorials/repo/add_repos","tutorials/repo/create_repo","tutorials/repo/private_repo","tutorials/repo/upgrade_repo","tutorials/sensors/air_quality","tutorials/sensors/air_quality_ble","tutorials/sensors/air_quality_sensor","tutorials/sensors/nrf52_adc","tutorials/sensors/sensor_bleprph_oic","tutorials/sensors/sensor_nrf52_bno055","tutorials/sensors/sensor_nrf52_bno055_oic","tutorials/sensors/sensor_offboard_config","tutorials/sensors/sensor_oic_overview","tutorials/sensors/sensor_thingy_lis2dh12_onb","tutorials/sensors/sensors","tutorials/sensors/sensors_framework","tutorials/slinky/project-nrf52-slinky","tutorials/slinky/project-sim-slinky","tutorials/slinky/project-slinky","tutorials/slinky/project-stm32-slinky","tutorials/tooling/segger_rtt","tutorials/tooling/segger_sysview","tutorials/tooling/tooling","tutorials/tutorials"],envversion:52,filenames:["_static/common.rst","concepts.rst","get_started/docker.rst","get_started/index.rst","get_started/native_install/cross_tools.rst","get_started/native_install/index.rst","get_started/native_install/native_tools.rst","get_started/project_create.rst","get_started/serial_access.rst","index.rst","misc/faq.rst","misc/go_env.rst","misc/ide.rst","misc/index.rst","mynewt_faq.rst","network/ble/ble_hs/ble_att.rst","network/ble/ble_hs/ble_gap.rst","network/ble/ble_hs/ble_gattc.rst","network/ble/ble_hs/ble_gatts.rst","network/ble/ble_hs/ble_hs.rst","network/ble/ble_hs/ble_hs_id.rst","network/ble/ble_hs/ble_hs_return_codes.rst","network/ble/ble_intro.rst","network/ble/ble_sec.rst","network/ble/ble_setup/ble_addr.rst","network/ble/ble_setup/ble_lp_clock.rst","network/ble/ble_setup/ble_setup_intro.rst","network/ble/ble_setup/ble_sync_cb.rst","network/ble/btshell/btshell_GAP.rst","network/ble/btshell/btshell_GATT.rst","network/ble/btshell/btshell_advdata.rst","network/ble/btshell/btshell_api.rst","network/ble/mesh/index.rst","network/ble/mesh/sample.rst","newt/README.rst","newt/command_list/newt_build.rst","newt/command_list/newt_clean.rst","newt/command_list/newt_complete.rst","newt/command_list/newt_create_image.rst","newt/command_list/newt_debug.rst","newt/command_list/newt_help.rst","newt/command_list/newt_info.rst","newt/command_list/newt_install.rst","newt/command_list/newt_load.rst","newt/command_list/newt_mfg.rst","newt/command_list/newt_new.rst","newt/command_list/newt_pkg.rst","newt/command_list/newt_resign_image.rst","newt/command_list/newt_run.rst","newt/command_list/newt_size.rst","newt/command_list/newt_sync.rst","newt/command_list/newt_target.rst","newt/command_list/newt_test.rst","newt/command_list/newt_upgrade.rst","newt/command_list/newt_vals.rst","newt/command_list/newt_version.rst","newt/index.rst","newt/install/index.rst","newt/install/newt_linux.rst","newt/install/newt_mac.rst","newt/install/newt_windows.rst","newt/install/prev_releases.rst","newt/newt_operation.rst","newt/newt_ops.rst","newtmgr/README.rst","newtmgr/command_list/index.rst","newtmgr/command_list/newtmgr_config.rst","newtmgr/command_list/newtmgr_conn.rst","newtmgr/command_list/newtmgr_crash.rst","newtmgr/command_list/newtmgr_datetime.rst","newtmgr/command_list/newtmgr_echo.rst","newtmgr/command_list/newtmgr_fs.rst","newtmgr/command_list/newtmgr_image.rst","newtmgr/command_list/newtmgr_logs.rst","newtmgr/command_list/newtmgr_mpstats.rst","newtmgr/command_list/newtmgr_reset.rst","newtmgr/command_list/newtmgr_run.rst","newtmgr/command_list/newtmgr_stat.rst","newtmgr/command_list/newtmgr_taskstats.rst","newtmgr/index.rst","newtmgr/install/index.rst","newtmgr/install/install_linux.rst","newtmgr/install/install_mac.rst","newtmgr/install/install_windows.rst","newtmgr/install/prev_releases.rst","os/core_os/callout/callout.rst","os/core_os/context_switch/context_switch.rst","os/core_os/cputime/os_cputime.rst","os/core_os/event_queue/event_queue.rst","os/core_os/heap/heap.rst","os/core_os/mbuf/mbuf.rst","os/core_os/memory_pool/memory_pool.rst","os/core_os/mutex/mutex.rst","os/core_os/mynewt_os.rst","os/core_os/porting/port_bsp.rst","os/core_os/porting/port_cpu.rst","os/core_os/porting/port_mcu.rst","os/core_os/porting/port_os.rst","os/core_os/sanity/sanity.rst","os/core_os/semaphore/semaphore.rst","os/core_os/task/task.rst","os/core_os/time/os_time.rst","os/modules/baselibc.rst","os/modules/bootloader/boot_build_status.rst","os/modules/bootloader/boot_build_status_one.rst","os/modules/bootloader/boot_clear_status.rst","os/modules/bootloader/boot_copy_area.rst","os/modules/bootloader/boot_copy_image.rst","os/modules/bootloader/boot_erase_area.rst","os/modules/bootloader/boot_fill_slot.rst","os/modules/bootloader/boot_find_image_area_idx.rst","os/modules/bootloader/boot_find_image_part.rst","os/modules/bootloader/boot_find_image_slot.rst","os/modules/bootloader/boot_go.rst","os/modules/bootloader/boot_init_flash.rst","os/modules/bootloader/boot_move_area.rst","os/modules/bootloader/boot_read_image_header.rst","os/modules/bootloader/boot_read_image_headers.rst","os/modules/bootloader/boot_read_status.rst","os/modules/bootloader/boot_select_image_slot.rst","os/modules/bootloader/boot_slot_addr.rst","os/modules/bootloader/boot_slot_to_area_idx.rst","os/modules/bootloader/boot_swap_areas.rst","os/modules/bootloader/boot_vect_delete_main.rst","os/modules/bootloader/boot_vect_delete_test.rst","os/modules/bootloader/boot_vect_read_main.rst","os/modules/bootloader/boot_vect_read_one.rst","os/modules/bootloader/boot_vect_read_test.rst","os/modules/bootloader/boot_write_status.rst","os/modules/bootloader/bootloader.rst","os/modules/config/config.rst","os/modules/console/console.rst","os/modules/devmgmt/customize_newtmgr.rst","os/modules/devmgmt/newtmgr.rst","os/modules/devmgmt/oicmgr.rst","os/modules/drivers/driver.rst","os/modules/drivers/flash.rst","os/modules/drivers/mmc.rst","os/modules/elua/elua.rst","os/modules/elua/lua_init.rst","os/modules/elua/lua_main.rst","os/modules/fcb/fcb.rst","os/modules/fcb/fcb_append.rst","os/modules/fcb/fcb_append_finish.rst","os/modules/fcb/fcb_append_to_scratch.rst","os/modules/fcb/fcb_clear.rst","os/modules/fcb/fcb_getnext.rst","os/modules/fcb/fcb_init.rst","os/modules/fcb/fcb_is_empty.rst","os/modules/fcb/fcb_offset_last_n.rst","os/modules/fcb/fcb_rotate.rst","os/modules/fcb/fcb_walk.rst","os/modules/fs/fatfs.rst","os/modules/fs/fs/fs.rst","os/modules/fs/fs/fs_close.rst","os/modules/fs/fs/fs_closedir.rst","os/modules/fs/fs/fs_dirent_is_dir.rst","os/modules/fs/fs/fs_dirent_name.rst","os/modules/fs/fs/fs_filelen.rst","os/modules/fs/fs/fs_getpos.rst","os/modules/fs/fs/fs_mkdir.rst","os/modules/fs/fs/fs_open.rst","os/modules/fs/fs/fs_opendir.rst","os/modules/fs/fs/fs_ops.rst","os/modules/fs/fs/fs_read.rst","os/modules/fs/fs/fs_readdir.rst","os/modules/fs/fs/fs_register.rst","os/modules/fs/fs/fs_rename.rst","os/modules/fs/fs/fs_return_codes.rst","os/modules/fs/fs/fs_seek.rst","os/modules/fs/fs/fs_unlink.rst","os/modules/fs/fs/fs_write.rst","os/modules/fs/fs/fsutil_read_file.rst","os/modules/fs/fs/fsutil_write_file.rst","os/modules/fs/nffs/nffs.rst","os/modules/fs/nffs/nffs_area_desc.rst","os/modules/fs/nffs/nffs_config.rst","os/modules/fs/nffs/nffs_detect.rst","os/modules/fs/nffs/nffs_format.rst","os/modules/fs/nffs/nffs_init.rst","os/modules/fs/nffs/nffs_internals.rst","os/modules/fs/otherfs.rst","os/modules/hal/hal.rst","os/modules/hal/hal_bsp/hal_bsp.rst","os/modules/hal/hal_creation.rst","os/modules/hal/hal_flash/hal_flash.rst","os/modules/hal/hal_flash/hal_flash_int.rst","os/modules/hal/hal_gpio/hal_gpio.rst","os/modules/hal/hal_i2c/hal_i2c.rst","os/modules/hal/hal_in_libraries.rst","os/modules/hal/hal_os_tick/hal_os_tick.rst","os/modules/hal/hal_spi/hal_spi.rst","os/modules/hal/hal_system/hal_sys.rst","os/modules/hal/hal_timer/hal_timer.rst","os/modules/hal/hal_uart/hal_uart.rst","os/modules/hal/hal_watchdog/hal_watchdog.rst","os/modules/imgmgr/imgmgr.rst","os/modules/imgmgr/imgmgr_module_init.rst","os/modules/imgmgr/imgr_ver_parse.rst","os/modules/imgmgr/imgr_ver_str.rst","os/modules/json/json.rst","os/modules/json/json_encode_object_entry.rst","os/modules/json/json_encode_object_finish.rst","os/modules/json/json_encode_object_key.rst","os/modules/json/json_encode_object_start.rst","os/modules/json/json_read_object.rst","os/modules/logs/logs.rst","os/modules/sensor_framework/sensor_api.rst","os/modules/sensor_framework/sensor_create.rst","os/modules/sensor_framework/sensor_driver.rst","os/modules/sensor_framework/sensor_framework_overview.rst","os/modules/sensor_framework/sensor_listener_api.rst","os/modules/sensor_framework/sensor_mgr_api.rst","os/modules/sensor_framework/sensor_oic.rst","os/modules/sensor_framework/sensor_shell.rst","os/modules/shell/shell.rst","os/modules/shell/shell_cmd_register.rst","os/modules/shell/shell_evq_set.rst","os/modules/shell/shell_nlip_input_register.rst","os/modules/shell/shell_nlip_output.rst","os/modules/shell/shell_register.rst","os/modules/shell/shell_register_app_cmd_handler.rst","os/modules/shell/shell_register_default_module.rst","os/modules/split/split.rst","os/modules/stats/stats.rst","os/modules/sysinitconfig/sysconfig_error.rst","os/modules/sysinitconfig/sysinitconfig.rst","os/modules/system_modules.rst","os/modules/testutil/test_assert.rst","os/modules/testutil/test_case.rst","os/modules/testutil/test_decl.rst","os/modules/testutil/test_pass.rst","os/modules/testutil/test_suite.rst","os/modules/testutil/testutil.rst","os/modules/testutil/tu_init.rst","os/modules/testutil/tu_restart.rst","os/os_user_guide.rst","os/tutorials/STM32F303.rst","os/tutorials/add_newtmgr.rst","os/tutorials/define_target.rst","os/tutorials/event_queue.rst","os/tutorials/ota_upgrade_nrf52.rst","os/tutorials/pin-wheel-mods.rst","os/tutorials/tasks_lesson.rst","os/tutorials/try_markdown.rst","tutorials/ble/ble.rst","tutorials/ble/ble_bare_bones.rst","tutorials/ble/blehci_project.rst","tutorials/ble/bleprph/bleprph.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-adv.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-app.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.rst","tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.rst","tutorials/ble/eddystone.rst","tutorials/ble/ibeacon.rst","tutorials/blinky/arduino_zero.rst","tutorials/blinky/blinky.rst","tutorials/blinky/blinky_console.rst","tutorials/blinky/blinky_primo.rst","tutorials/blinky/blinky_stm32f4disc.rst","tutorials/blinky/nRF52.rst","tutorials/blinky/olimex.rst","tutorials/blinky/rbnano2.rst","tutorials/devmgmt/add_newtmgr.rst","tutorials/devmgmt/devmgmt.rst","tutorials/devmgmt/ota_upgrade_nrf52.rst","tutorials/lora/lorawanapp.rst","tutorials/os_fundamentals/event_queue.rst","tutorials/os_fundamentals/os_fundamentals.rst","tutorials/os_fundamentals/tasks_lesson.rst","tutorials/other/codesize.rst","tutorials/other/other.rst","tutorials/other/unit_test.rst","tutorials/other/wi-fi_on_arduino.rst","tutorials/repo/add_repos.rst","tutorials/repo/create_repo.rst","tutorials/repo/private_repo.rst","tutorials/repo/upgrade_repo.rst","tutorials/sensors/air_quality.rst","tutorials/sensors/air_quality_ble.rst","tutorials/sensors/air_quality_sensor.rst","tutorials/sensors/nrf52_adc.rst","tutorials/sensors/sensor_bleprph_oic.rst","tutorials/sensors/sensor_nrf52_bno055.rst","tutorials/sensors/sensor_nrf52_bno055_oic.rst","tutorials/sensors/sensor_offboard_config.rst","tutorials/sensors/sensor_oic_overview.rst","tutorials/sensors/sensor_thingy_lis2dh12_onb.rst","tutorials/sensors/sensors.rst","tutorials/sensors/sensors_framework.rst","tutorials/slinky/project-nrf52-slinky.rst","tutorials/slinky/project-sim-slinky.rst","tutorials/slinky/project-slinky.rst","tutorials/slinky/project-stm32-slinky.rst","tutorials/tooling/segger_rtt.rst","tutorials/tooling/segger_sysview.rst","tutorials/tooling/tooling.rst","tutorials/tutorials.rst"],objects:{"":{"HALGpio::HAL_GPIO_MODE_IN":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_IN"],"HALGpio::HAL_GPIO_MODE_NC":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_NC"],"HALGpio::HAL_GPIO_MODE_OUT":[187,1,1,"c.HALGpio::HAL_GPIO_MODE_OUT"],"HALGpio::HAL_GPIO_PULL_DOWN":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_DOWN"],"HALGpio::HAL_GPIO_PULL_NONE":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_NONE"],"HALGpio::HAL_GPIO_PULL_UP":[187,1,1,"c.HALGpio::HAL_GPIO_PULL_UP"],"HALGpio::HAL_GPIO_TRIG_BOTH":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_BOTH"],"HALGpio::HAL_GPIO_TRIG_FALLING":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_FALLING"],"HALGpio::HAL_GPIO_TRIG_HIGH":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_HIGH"],"HALGpio::HAL_GPIO_TRIG_LOW":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_LOW"],"HALGpio::HAL_GPIO_TRIG_NONE":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_NONE"],"HALGpio::HAL_GPIO_TRIG_RISING":[187,1,1,"c.HALGpio::HAL_GPIO_TRIG_RISING"],"HALGpio::hal_gpio_irq_trigger":[187,2,1,"c.HALGpio::hal_gpio_irq_trigger"],"HALGpio::hal_gpio_mode_e":[187,2,1,"c.HALGpio::hal_gpio_mode_e"],"HALGpio::hal_gpio_pull":[187,2,1,"c.HALGpio::hal_gpio_pull"],"HALSystem::HAL_RESET_BROWNOUT":[192,1,1,"c.HALSystem::HAL_RESET_BROWNOUT"],"HALSystem::HAL_RESET_PIN":[192,1,1,"c.HALSystem::HAL_RESET_PIN"],"HALSystem::HAL_RESET_POR":[192,1,1,"c.HALSystem::HAL_RESET_POR"],"HALSystem::HAL_RESET_REQUESTED":[192,1,1,"c.HALSystem::HAL_RESET_REQUESTED"],"HALSystem::HAL_RESET_SOFT":[192,1,1,"c.HALSystem::HAL_RESET_SOFT"],"HALSystem::HAL_RESET_WATCHDOG":[192,1,1,"c.HALSystem::HAL_RESET_WATCHDOG"],"HALSystem::hal_reset_reason":[192,2,1,"c.HALSystem::hal_reset_reason"],"HALUart::HAL_UART_FLOW_CTL_NONE":[194,1,1,"c.HALUart::HAL_UART_FLOW_CTL_NONE"],"HALUart::HAL_UART_FLOW_CTL_RTS_CTS":[194,1,1,"c.HALUart::HAL_UART_FLOW_CTL_RTS_CTS"],"HALUart::HAL_UART_PARITY_EVEN":[194,1,1,"c.HALUart::HAL_UART_PARITY_EVEN"],"HALUart::HAL_UART_PARITY_NONE":[194,1,1,"c.HALUart::HAL_UART_PARITY_NONE"],"HALUart::HAL_UART_PARITY_ODD":[194,1,1,"c.HALUart::HAL_UART_PARITY_ODD"],"HALUart::hal_uart_flow_ctl":[194,2,1,"c.HALUart::hal_uart_flow_ctl"],"HALUart::hal_uart_parity":[194,2,1,"c.HALUart::hal_uart_parity"],"OSTask::OS_TASK_READY":[100,1,1,"c.OSTask::OS_TASK_READY"],"OSTask::OS_TASK_SLEEP":[100,1,1,"c.OSTask::OS_TASK_SLEEP"],"OSTask::os_task_state":[100,2,1,"c.OSTask::os_task_state"],"SysConfig::CONF_EXPORT_PERSIST":[130,1,1,"c.SysConfig::CONF_EXPORT_PERSIST"],"SysConfig::CONF_EXPORT_SHOW":[130,1,1,"c.SysConfig::CONF_EXPORT_SHOW"],"SysConfig::conf_export_tgt":[130,2,1,"c.SysConfig::conf_export_tgt"],"SysConfig::conf_type":[130,2,1,"c.SysConfig::conf_type"],"conf_handler::ch_commit":[130,5,1,"c.conf_handler::ch_commit"],"conf_handler::ch_export":[130,5,1,"c.conf_handler::ch_export"],"conf_handler::ch_get":[130,5,1,"c.conf_handler::ch_get"],"conf_handler::ch_name":[130,5,1,"c.conf_handler::ch_name"],"conf_handler::ch_set":[130,5,1,"c.conf_handler::ch_set"],"console_input::line":[131,5,1,"c.console_input::line"],"hal_i2c_master_data::address":[188,5,1,"c.hal_i2c_master_data::address"],"hal_i2c_master_data::buffer":[188,5,1,"c.hal_i2c_master_data::buffer"],"hal_spi_settings::baudrate":[191,5,1,"c.hal_spi_settings::baudrate"],"hal_spi_settings::data_mode":[191,5,1,"c.hal_spi_settings::data_mode"],"hal_spi_settings::data_order":[191,5,1,"c.hal_spi_settings::data_order"],"hal_spi_settings::word_size":[191,5,1,"c.hal_spi_settings::word_size"],"hal_timer::bsp_timer":[193,5,1,"c.hal_timer::bsp_timer"],"hal_timer::cb_arg":[193,5,1,"c.hal_timer::cb_arg"],"hal_timer::cb_func":[193,5,1,"c.hal_timer::cb_func"],"hal_timer::expiry":[193,5,1,"c.hal_timer::expiry"],"os_callout::c_ev":[85,5,1,"c.os_callout::c_ev"],"os_callout::c_evq":[85,5,1,"c.os_callout::c_evq"],"os_callout::c_ticks":[85,5,1,"c.os_callout::c_ticks"],"os_event::ev_arg":[88,5,1,"c.os_event::ev_arg"],"os_event::ev_cb":[88,5,1,"c.os_event::ev_cb"],"os_event::ev_queued":[88,5,1,"c.os_event::ev_queued"],"os_eventq::evq_owner":[88,5,1,"c.os_eventq::evq_owner"],"os_eventq::evq_task":[88,5,1,"c.os_eventq::evq_task"],"os_mbuf::om_data":[90,5,1,"c.os_mbuf::om_data"],"os_mbuf::om_flags":[90,5,1,"c.os_mbuf::om_flags"],"os_mbuf::om_len":[90,5,1,"c.os_mbuf::om_len"],"os_mbuf::om_omp":[90,5,1,"c.os_mbuf::om_omp"],"os_mbuf::om_pkthdr_len":[90,5,1,"c.os_mbuf::om_pkthdr_len"],"os_mbuf_pkthdr::omp_flags":[90,5,1,"c.os_mbuf_pkthdr::omp_flags"],"os_mbuf_pkthdr::omp_len":[90,5,1,"c.os_mbuf_pkthdr::omp_len"],"os_mbuf_pool::omp_databuf_len":[90,5,1,"c.os_mbuf_pool::omp_databuf_len"],"os_mbuf_pool::omp_pool":[90,5,1,"c.os_mbuf_pool::omp_pool"],"os_mempool::mp_block_size":[91,5,1,"c.os_mempool::mp_block_size"],"os_mempool::mp_flags":[91,5,1,"c.os_mempool::mp_flags"],"os_mempool::mp_membuf_addr":[91,5,1,"c.os_mempool::mp_membuf_addr"],"os_mempool::mp_min_free":[91,5,1,"c.os_mempool::mp_min_free"],"os_mempool::mp_num_blocks":[91,5,1,"c.os_mempool::mp_num_blocks"],"os_mempool::mp_num_free":[91,5,1,"c.os_mempool::mp_num_free"],"os_mempool::name":[91,5,1,"c.os_mempool::name"],"os_mempool_info::omi_block_size":[91,5,1,"c.os_mempool_info::omi_block_size"],"os_mempool_info::omi_min_free":[91,5,1,"c.os_mempool_info::omi_min_free"],"os_mempool_info::omi_num_blocks":[91,5,1,"c.os_mempool_info::omi_num_blocks"],"os_mempool_info::omi_num_free":[91,5,1,"c.os_mempool_info::omi_num_free"],"os_mqueue::mq_ev":[90,5,1,"c.os_mqueue::mq_ev"],"os_mutex::SLIST_HEAD":[92,3,1,"c.os_mutex::SLIST_HEAD"],"os_mutex::_pad":[92,5,1,"c.os_mutex::_pad"],"os_mutex::mu_level":[92,5,1,"c.os_mutex::mu_level"],"os_mutex::mu_owner":[92,5,1,"c.os_mutex::mu_owner"],"os_mutex::mu_prio":[92,5,1,"c.os_mutex::mu_prio"],"os_sanity_check::sc_arg":[98,5,1,"c.os_sanity_check::sc_arg"],"os_sanity_check::sc_checkin_itvl":[98,5,1,"c.os_sanity_check::sc_checkin_itvl"],"os_sanity_check::sc_checkin_last":[98,5,1,"c.os_sanity_check::sc_checkin_last"],"os_sanity_check::sc_func":[98,5,1,"c.os_sanity_check::sc_func"],"os_sem::sem_tokens":[99,5,1,"c.os_sem::sem_tokens"],"os_task::t_arg":[100,5,1,"c.os_task::t_arg"],"os_task::t_ctx_sw_cnt":[100,5,1,"c.os_task::t_ctx_sw_cnt"],"os_task::t_flags":[100,5,1,"c.os_task::t_flags"],"os_task::t_func":[100,5,1,"c.os_task::t_func"],"os_task::t_name":[100,5,1,"c.os_task::t_name"],"os_task::t_next_wakeup":[100,5,1,"c.os_task::t_next_wakeup"],"os_task::t_obj":[100,5,1,"c.os_task::t_obj"],"os_task::t_prio":[100,5,1,"c.os_task::t_prio"],"os_task::t_run_time":[100,5,1,"c.os_task::t_run_time"],"os_task::t_sanity_check":[100,5,1,"c.os_task::t_sanity_check"],"os_task::t_stackptr":[100,5,1,"c.os_task::t_stackptr"],"os_task::t_stacksize":[100,5,1,"c.os_task::t_stacksize"],"os_task::t_stacktop":[100,5,1,"c.os_task::t_stacktop"],"os_task::t_taskid":[100,5,1,"c.os_task::t_taskid"],"os_task_info::oti_cswcnt":[100,5,1,"c.os_task_info::oti_cswcnt"],"os_task_info::oti_last_checkin":[100,5,1,"c.os_task_info::oti_last_checkin"],"os_task_info::oti_next_checkin":[100,5,1,"c.os_task_info::oti_next_checkin"],"os_task_info::oti_prio":[100,5,1,"c.os_task_info::oti_prio"],"os_task_info::oti_runtime":[100,5,1,"c.os_task_info::oti_runtime"],"os_task_info::oti_state":[100,5,1,"c.os_task_info::oti_state"],"os_task_info::oti_stksize":[100,5,1,"c.os_task_info::oti_stksize"],"os_task_info::oti_stkusage":[100,5,1,"c.os_task_info::oti_stkusage"],"os_task_info::oti_taskid":[100,5,1,"c.os_task_info::oti_taskid"],"os_timezone::tz_dsttime":[101,5,1,"c.os_timezone::tz_dsttime"],"os_timezone::tz_minuteswest":[101,5,1,"c.os_timezone::tz_minuteswest"],CONF_STR_FROM_BYTES_LEN:[130,0,1,"c.CONF_STR_FROM_BYTES_LEN"],CONF_VALUE_SET:[130,0,1,"c.CONF_VALUE_SET"],CPUTIME_GEQ:[87,0,1,"c.CPUTIME_GEQ"],CPUTIME_GT:[87,0,1,"c.CPUTIME_GT"],CPUTIME_LEQ:[87,0,1,"c.CPUTIME_LEQ"],CPUTIME_LT:[87,0,1,"c.CPUTIME_LT"],HAL_BSP_MAX_ID_LEN:[183,0,1,"c.HAL_BSP_MAX_ID_LEN"],HAL_BSP_POWER_DEEP_SLEEP:[183,0,1,"c.HAL_BSP_POWER_DEEP_SLEEP"],HAL_BSP_POWER_OFF:[183,0,1,"c.HAL_BSP_POWER_OFF"],HAL_BSP_POWER_ON:[183,0,1,"c.HAL_BSP_POWER_ON"],HAL_BSP_POWER_PERUSER:[183,0,1,"c.HAL_BSP_POWER_PERUSER"],HAL_BSP_POWER_SLEEP:[183,0,1,"c.HAL_BSP_POWER_SLEEP"],HAL_BSP_POWER_WFI:[183,0,1,"c.HAL_BSP_POWER_WFI"],HAL_SPI_LSB_FIRST:[191,0,1,"c.HAL_SPI_LSB_FIRST"],HAL_SPI_MODE0:[191,0,1,"c.HAL_SPI_MODE0"],HAL_SPI_MODE1:[191,0,1,"c.HAL_SPI_MODE1"],HAL_SPI_MODE2:[191,0,1,"c.HAL_SPI_MODE2"],HAL_SPI_MODE3:[191,0,1,"c.HAL_SPI_MODE3"],HAL_SPI_MSB_FIRST:[191,0,1,"c.HAL_SPI_MSB_FIRST"],HAL_SPI_TYPE_MASTER:[191,0,1,"c.HAL_SPI_TYPE_MASTER"],HAL_SPI_TYPE_SLAVE:[191,0,1,"c.HAL_SPI_TYPE_SLAVE"],HAL_SPI_WORD_SIZE_8BIT:[191,0,1,"c.HAL_SPI_WORD_SIZE_8BIT"],HAL_SPI_WORD_SIZE_9BIT:[191,0,1,"c.HAL_SPI_WORD_SIZE_9BIT"],OS_EVENT_QUEUED:[88,0,1,"c.OS_EVENT_QUEUED"],OS_MBUF_DATA:[90,0,1,"c.OS_MBUF_DATA"],OS_MBUF_F_MASK:[90,0,1,"c.OS_MBUF_F_MASK"],OS_MBUF_IS_PKTHDR:[90,0,1,"c.OS_MBUF_IS_PKTHDR"],OS_MBUF_LEADINGSPACE:[90,0,1,"c.OS_MBUF_LEADINGSPACE"],OS_MBUF_PKTHDR:[90,0,1,"c.OS_MBUF_PKTHDR"],OS_MBUF_PKTHDR_TO_MBUF:[90,0,1,"c.OS_MBUF_PKTHDR_TO_MBUF"],OS_MBUF_PKTLEN:[90,0,1,"c.OS_MBUF_PKTLEN"],OS_MBUF_TRAILINGSPACE:[90,0,1,"c.OS_MBUF_TRAILINGSPACE"],OS_MBUF_USRHDR:[90,0,1,"c.OS_MBUF_USRHDR"],OS_MBUF_USRHDR_LEN:[90,0,1,"c.OS_MBUF_USRHDR_LEN"],OS_MEMPOOL_BYTES:[91,0,1,"c.OS_MEMPOOL_BYTES"],OS_MEMPOOL_F_EXT:[91,0,1,"c.OS_MEMPOOL_F_EXT"],OS_MEMPOOL_INFO_NAME_LEN:[91,0,1,"c.OS_MEMPOOL_INFO_NAME_LEN"],OS_MEMPOOL_SIZE:[91,0,1,"c.OS_MEMPOOL_SIZE"],OS_SANITY_CHECK_SETFUNC:[98,0,1,"c.OS_SANITY_CHECK_SETFUNC"],OS_TASK_FLAG_EVQ_WAIT:[100,0,1,"c.OS_TASK_FLAG_EVQ_WAIT"],OS_TASK_FLAG_MUTEX_WAIT:[100,0,1,"c.OS_TASK_FLAG_MUTEX_WAIT"],OS_TASK_FLAG_NO_TIMEOUT:[100,0,1,"c.OS_TASK_FLAG_NO_TIMEOUT"],OS_TASK_FLAG_SEM_WAIT:[100,0,1,"c.OS_TASK_FLAG_SEM_WAIT"],OS_TASK_MAX_NAME_LEN:[100,0,1,"c.OS_TASK_MAX_NAME_LEN"],OS_TASK_PRI_HIGHEST:[100,0,1,"c.OS_TASK_PRI_HIGHEST"],OS_TASK_PRI_LOWEST:[100,0,1,"c.OS_TASK_PRI_LOWEST"],OS_TASK_STACK_DEFINE:[100,0,1,"c.OS_TASK_STACK_DEFINE"],OS_TIMEOUT_NEVER:[101,0,1,"c.OS_TIMEOUT_NEVER"],OS_TIME_MAX:[101,0,1,"c.OS_TIME_MAX"],OS_TIME_TICK_GEQ:[101,0,1,"c.OS_TIME_TICK_GEQ"],OS_TIME_TICK_GT:[101,0,1,"c.OS_TIME_TICK_GT"],OS_TIME_TICK_LT:[101,0,1,"c.OS_TIME_TICK_LT"],_sbrk:[183,3,1,"c._sbrk"],completion_cb:[131,4,1,"c.completion_cb"],conf_bytes_from_str:[130,3,1,"c.conf_bytes_from_str"],conf_commit:[130,3,1,"c.conf_commit"],conf_commit_handler_t:[130,4,1,"c.conf_commit_handler_t"],conf_export_func_t:[130,4,1,"c.conf_export_func_t"],conf_export_handler_t:[130,4,1,"c.conf_export_handler_t"],conf_export_tgt_t:[130,4,1,"c.conf_export_tgt_t"],conf_get_handler_t:[130,4,1,"c.conf_get_handler_t"],conf_get_value:[130,3,1,"c.conf_get_value"],conf_handler:[130,7,1,"_CPPv312conf_handler"],conf_init:[130,3,1,"c.conf_init"],conf_load:[130,3,1,"c.conf_load"],conf_register:[130,3,1,"c.conf_register"],conf_save:[130,3,1,"c.conf_save"],conf_save_one:[130,3,1,"c.conf_save_one"],conf_save_tree:[130,3,1,"c.conf_save_tree"],conf_set_handler_t:[130,4,1,"c.conf_set_handler_t"],conf_set_value:[130,3,1,"c.conf_set_value"],conf_store_init:[130,3,1,"c.conf_store_init"],conf_str_from_bytes:[130,3,1,"c.conf_str_from_bytes"],conf_str_from_value:[130,3,1,"c.conf_str_from_value"],conf_value_from_str:[130,3,1,"c.conf_value_from_str"],console_append_char_cb:[131,4,1,"c.console_append_char_cb"],console_blocking_mode:[131,3,1,"c.console_blocking_mode"],console_echo:[131,3,1,"c.console_echo"],console_handle_char:[131,3,1,"c.console_handle_char"],console_init:[131,3,1,"c.console_init"],console_input:[131,6,1,"c.console_input"],console_is_init:[131,3,1,"c.console_is_init"],console_is_midline:[131,5,1,"c.console_is_midline"],console_non_blocking_mode:[131,3,1,"c.console_non_blocking_mode"],console_out:[131,3,1,"c.console_out"],console_printf:[131,3,1,"c.console_printf"],console_read:[131,3,1,"c.console_read"],console_rx_cb:[131,4,1,"c.console_rx_cb"],console_set_completion_cb:[131,3,1,"c.console_set_completion_cb"],console_set_queues:[131,3,1,"c.console_set_queues"],console_write:[131,3,1,"c.console_write"],hal_bsp_core_dump:[183,3,1,"c.hal_bsp_core_dump"],hal_bsp_flash_dev:[183,3,1,"c.hal_bsp_flash_dev"],hal_bsp_get_nvic_priority:[183,3,1,"c.hal_bsp_get_nvic_priority"],hal_bsp_hw_id:[183,3,1,"c.hal_bsp_hw_id"],hal_bsp_init:[183,3,1,"c.hal_bsp_init"],hal_bsp_power_state:[183,3,1,"c.hal_bsp_power_state"],hal_debugger_connected:[192,3,1,"c.hal_debugger_connected"],hal_flash_align:[185,3,1,"c.hal_flash_align"],hal_flash_erase:[185,3,1,"c.hal_flash_erase"],hal_flash_erase_sector:[185,3,1,"c.hal_flash_erase_sector"],hal_flash_init:[185,3,1,"c.hal_flash_init"],hal_flash_ioctl:[185,3,1,"c.hal_flash_ioctl"],hal_flash_read:[185,3,1,"c.hal_flash_read"],hal_flash_write:[185,3,1,"c.hal_flash_write"],hal_gpio_init_in:[187,3,1,"c.hal_gpio_init_in"],hal_gpio_init_out:[187,3,1,"c.hal_gpio_init_out"],hal_gpio_irq_disable:[187,3,1,"c.hal_gpio_irq_disable"],hal_gpio_irq_enable:[187,3,1,"c.hal_gpio_irq_enable"],hal_gpio_irq_handler_t:[187,4,1,"c.hal_gpio_irq_handler_t"],hal_gpio_irq_init:[187,3,1,"c.hal_gpio_irq_init"],hal_gpio_irq_release:[187,3,1,"c.hal_gpio_irq_release"],hal_gpio_irq_trig_t:[187,4,1,"c.hal_gpio_irq_trig_t"],hal_gpio_mode_t:[187,4,1,"c.hal_gpio_mode_t"],hal_gpio_pull_t:[187,4,1,"c.hal_gpio_pull_t"],hal_gpio_read:[187,3,1,"c.hal_gpio_read"],hal_gpio_toggle:[187,3,1,"c.hal_gpio_toggle"],hal_gpio_write:[187,3,1,"c.hal_gpio_write"],hal_i2c_init:[188,3,1,"c.hal_i2c_init"],hal_i2c_master_data:[188,7,1,"_CPPv319hal_i2c_master_data"],hal_i2c_master_probe:[188,3,1,"c.hal_i2c_master_probe"],hal_i2c_master_read:[188,3,1,"c.hal_i2c_master_read"],hal_i2c_master_write:[188,3,1,"c.hal_i2c_master_write"],hal_reset_cause:[192,3,1,"c.hal_reset_cause"],hal_reset_cause_str:[192,3,1,"c.hal_reset_cause_str"],hal_spi_abort:[191,3,1,"c.hal_spi_abort"],hal_spi_config:[191,3,1,"c.hal_spi_config"],hal_spi_data_mode_breakout:[191,3,1,"c.hal_spi_data_mode_breakout"],hal_spi_disable:[191,3,1,"c.hal_spi_disable"],hal_spi_enable:[191,3,1,"c.hal_spi_enable"],hal_spi_init:[191,3,1,"c.hal_spi_init"],hal_spi_set_txrx_cb:[191,3,1,"c.hal_spi_set_txrx_cb"],hal_spi_settings:[191,7,1,"_CPPv316hal_spi_settings"],hal_spi_slave_set_def_tx_val:[191,3,1,"c.hal_spi_slave_set_def_tx_val"],hal_spi_tx_val:[191,3,1,"c.hal_spi_tx_val"],hal_spi_txrx:[191,3,1,"c.hal_spi_txrx"],hal_spi_txrx_cb:[191,4,1,"c.hal_spi_txrx_cb"],hal_spi_txrx_noblock:[191,3,1,"c.hal_spi_txrx_noblock"],hal_system_clock_start:[192,3,1,"c.hal_system_clock_start"],hal_system_reset:[192,3,1,"c.hal_system_reset"],hal_system_restart:[192,3,1,"c.hal_system_restart"],hal_system_start:[192,3,1,"c.hal_system_start"],hal_timer:[193,7,1,"_CPPv39hal_timer"],hal_timer_cb:[193,4,1,"c.hal_timer_cb"],hal_timer_config:[193,3,1,"c.hal_timer_config"],hal_timer_deinit:[193,3,1,"c.hal_timer_deinit"],hal_timer_delay:[193,3,1,"c.hal_timer_delay"],hal_timer_get_resolution:[193,3,1,"c.hal_timer_get_resolution"],hal_timer_init:[193,3,1,"c.hal_timer_init"],hal_timer_read:[193,3,1,"c.hal_timer_read"],hal_timer_set_cb:[193,3,1,"c.hal_timer_set_cb"],hal_timer_start:[193,3,1,"c.hal_timer_start"],hal_timer_start_at:[193,3,1,"c.hal_timer_start_at"],hal_timer_stop:[193,3,1,"c.hal_timer_stop"],hal_uart_blocking_tx:[194,3,1,"c.hal_uart_blocking_tx"],hal_uart_close:[194,3,1,"c.hal_uart_close"],hal_uart_config:[194,3,1,"c.hal_uart_config"],hal_uart_init:[194,3,1,"c.hal_uart_init"],hal_uart_init_cbs:[194,3,1,"c.hal_uart_init_cbs"],hal_uart_rx_char:[194,4,1,"c.hal_uart_rx_char"],hal_uart_start_rx:[194,3,1,"c.hal_uart_start_rx"],hal_uart_start_tx:[194,3,1,"c.hal_uart_start_tx"],hal_uart_tx_char:[194,4,1,"c.hal_uart_tx_char"],hal_uart_tx_done:[194,4,1,"c.hal_uart_tx_done"],hal_watchdog_enable:[195,3,1,"c.hal_watchdog_enable"],hal_watchdog_init:[195,3,1,"c.hal_watchdog_init"],hal_watchdog_tickle:[195,3,1,"c.hal_watchdog_tickle"],os_callout:[85,7,1,"_CPPv310os_callout"],os_callout_init:[85,3,1,"c.os_callout_init"],os_callout_queued:[85,3,1,"c.os_callout_queued"],os_callout_remaining_ticks:[85,3,1,"c.os_callout_remaining_ticks"],os_callout_reset:[85,3,1,"c.os_callout_reset"],os_callout_stop:[85,3,1,"c.os_callout_stop"],os_cputime_delay_nsecs:[87,3,1,"c.os_cputime_delay_nsecs"],os_cputime_delay_ticks:[87,3,1,"c.os_cputime_delay_ticks"],os_cputime_delay_usecs:[87,3,1,"c.os_cputime_delay_usecs"],os_cputime_get32:[87,3,1,"c.os_cputime_get32"],os_cputime_init:[87,3,1,"c.os_cputime_init"],os_cputime_nsecs_to_ticks:[87,3,1,"c.os_cputime_nsecs_to_ticks"],os_cputime_ticks_to_nsecs:[87,3,1,"c.os_cputime_ticks_to_nsecs"],os_cputime_ticks_to_usecs:[87,3,1,"c.os_cputime_ticks_to_usecs"],os_cputime_timer_init:[87,3,1,"c.os_cputime_timer_init"],os_cputime_timer_relative:[87,3,1,"c.os_cputime_timer_relative"],os_cputime_timer_start:[87,3,1,"c.os_cputime_timer_start"],os_cputime_timer_stop:[87,3,1,"c.os_cputime_timer_stop"],os_cputime_usecs_to_ticks:[87,3,1,"c.os_cputime_usecs_to_ticks"],os_event:[88,7,1,"_CPPv38os_event"],os_event_fn:[88,4,1,"c.os_event_fn"],os_eventq:[88,7,1,"_CPPv39os_eventq"],os_eventq_dflt_get:[88,3,1,"c.os_eventq_dflt_get"],os_eventq_get:[88,3,1,"c.os_eventq_get"],os_eventq_get_no_wait:[88,3,1,"c.os_eventq_get_no_wait"],os_eventq_init:[88,3,1,"c.os_eventq_init"],os_eventq_inited:[88,3,1,"c.os_eventq_inited"],os_eventq_poll:[88,3,1,"c.os_eventq_poll"],os_eventq_put:[88,3,1,"c.os_eventq_put"],os_eventq_remove:[88,3,1,"c.os_eventq_remove"],os_eventq_run:[88,3,1,"c.os_eventq_run"],os_get_uptime:[101,3,1,"c.os_get_uptime"],os_get_uptime_usec:[101,3,1,"c.os_get_uptime_usec"],os_gettimeofday:[101,3,1,"c.os_gettimeofday"],os_mbuf:[90,7,1,"_CPPv37os_mbuf"],os_mbuf_adj:[90,3,1,"c.os_mbuf_adj"],os_mbuf_append:[90,3,1,"c.os_mbuf_append"],os_mbuf_appendfrom:[90,3,1,"c.os_mbuf_appendfrom"],os_mbuf_cmpf:[90,3,1,"c.os_mbuf_cmpf"],os_mbuf_cmpm:[90,3,1,"c.os_mbuf_cmpm"],os_mbuf_concat:[90,3,1,"c.os_mbuf_concat"],os_mbuf_copydata:[90,3,1,"c.os_mbuf_copydata"],os_mbuf_copyinto:[90,3,1,"c.os_mbuf_copyinto"],os_mbuf_dup:[90,3,1,"c.os_mbuf_dup"],os_mbuf_extend:[90,3,1,"c.os_mbuf_extend"],os_mbuf_free:[90,3,1,"c.os_mbuf_free"],os_mbuf_free_chain:[90,3,1,"c.os_mbuf_free_chain"],os_mbuf_get:[90,3,1,"c.os_mbuf_get"],os_mbuf_get_pkthdr:[90,3,1,"c.os_mbuf_get_pkthdr"],os_mbuf_off:[90,3,1,"c.os_mbuf_off"],os_mbuf_pkthdr:[90,7,1,"_CPPv314os_mbuf_pkthdr"],os_mbuf_pool:[90,7,1,"_CPPv312os_mbuf_pool"],os_mbuf_pool_init:[90,3,1,"c.os_mbuf_pool_init"],os_mbuf_prepend:[90,3,1,"c.os_mbuf_prepend"],os_mbuf_prepend_pullup:[90,3,1,"c.os_mbuf_prepend_pullup"],os_mbuf_pullup:[90,3,1,"c.os_mbuf_pullup"],os_mbuf_trim_front:[90,3,1,"c.os_mbuf_trim_front"],os_memblock:[91,7,1,"_CPPv311os_memblock"],os_memblock_from:[91,3,1,"c.os_memblock_from"],os_memblock_get:[91,3,1,"c.os_memblock_get"],os_memblock_put:[91,3,1,"c.os_memblock_put"],os_memblock_put_from_cb:[91,3,1,"c.os_memblock_put_from_cb"],os_membuf_t:[91,4,1,"c.os_membuf_t"],os_mempool:[91,7,1,"_CPPv310os_mempool"],os_mempool_clear:[91,3,1,"c.os_mempool_clear"],os_mempool_ext_init:[91,3,1,"c.os_mempool_ext_init"],os_mempool_info:[91,7,1,"_CPPv315os_mempool_info"],os_mempool_info_get_next:[91,3,1,"c.os_mempool_info_get_next"],os_mempool_init:[91,3,1,"c.os_mempool_init"],os_mempool_is_sane:[91,3,1,"c.os_mempool_is_sane"],os_mempool_put_fn:[91,4,1,"c.os_mempool_put_fn"],os_mqueue:[90,7,1,"_CPPv39os_mqueue"],os_mqueue_get:[90,3,1,"c.os_mqueue_get"],os_mqueue_init:[90,3,1,"c.os_mqueue_init"],os_mqueue_put:[90,3,1,"c.os_mqueue_put"],os_msys_count:[90,3,1,"c.os_msys_count"],os_msys_get:[90,3,1,"c.os_msys_get"],os_msys_get_pkthdr:[90,3,1,"c.os_msys_get_pkthdr"],os_msys_num_free:[90,3,1,"c.os_msys_num_free"],os_msys_register:[90,3,1,"c.os_msys_register"],os_msys_reset:[90,3,1,"c.os_msys_reset"],os_mutex:[92,7,1,"_CPPv38os_mutex"],os_mutex_init:[92,3,1,"c.os_mutex_init"],os_mutex_pend:[92,3,1,"c.os_mutex_pend"],os_mutex_release:[92,3,1,"c.os_mutex_release"],os_sanity_check:[98,7,1,"_CPPv315os_sanity_check"],os_sanity_check_func_t:[98,4,1,"c.os_sanity_check_func_t"],os_sanity_check_init:[98,3,1,"c.os_sanity_check_init"],os_sanity_check_register:[98,3,1,"c.os_sanity_check_register"],os_sanity_check_reset:[98,3,1,"c.os_sanity_check_reset"],os_sanity_task_checkin:[98,3,1,"c.os_sanity_task_checkin"],os_sched:[86,3,1,"c.os_sched"],os_sched_get_current_task:[86,3,1,"c.os_sched_get_current_task"],os_sched_next_task:[86,3,1,"c.os_sched_next_task"],os_sched_set_current_task:[86,3,1,"c.os_sched_set_current_task"],os_sem:[99,7,1,"_CPPv36os_sem"],os_sem_get_count:[99,3,1,"c.os_sem_get_count"],os_sem_init:[99,3,1,"c.os_sem_init"],os_sem_pend:[99,3,1,"c.os_sem_pend"],os_sem_release:[99,3,1,"c.os_sem_release"],os_settimeofday:[101,3,1,"c.os_settimeofday"],os_stime_t:[101,4,1,"c.os_stime_t"],os_task:[100,7,1,"_CPPv37os_task"],os_task_count:[100,3,1,"c.os_task_count"],os_task_func_t:[100,4,1,"c.os_task_func_t"],os_task_info:[100,7,1,"_CPPv312os_task_info"],os_task_info_get_next:[100,3,1,"c.os_task_info_get_next"],os_task_init:[100,3,1,"c.os_task_init"],os_task_remove:[100,3,1,"c.os_task_remove"],os_task_state_t:[100,4,1,"c.os_task_state_t"],os_tick_idle:[190,3,1,"c.os_tick_idle"],os_tick_init:[190,3,1,"c.os_tick_init"],os_time_advance:[101,3,1,"c.os_time_advance"],os_time_delay:[101,3,1,"c.os_time_delay"],os_time_get:[101,3,1,"c.os_time_get"],os_time_ms_to_ticks32:[101,3,1,"c.os_time_ms_to_ticks32"],os_time_ms_to_ticks:[101,3,1,"c.os_time_ms_to_ticks"],os_time_t:[101,4,1,"c.os_time_t"],os_time_ticks_to_ms32:[101,3,1,"c.os_time_ticks_to_ms32"],os_time_ticks_to_ms:[101,3,1,"c.os_time_ticks_to_ms"],os_timeradd:[101,0,1,"c.os_timeradd"],os_timersub:[101,0,1,"c.os_timersub"],os_timeval:[101,7,1,"_CPPv310os_timeval"],os_timezone:[101,7,1,"_CPPv311os_timezone"]}},objnames:{"0":["c","define","define"],"1":["c","enumvalue","enumvalue"],"2":["c","enum","enum"],"3":["c","function","C function"],"4":["c","typedef","typedef"],"5":["c","variable","variable"],"6":["c","struct","struct"],"7":["cpp","class","C++ class"]},objtypes:{"0":"c:define","1":"c:enumvalue","2":"c:enum","3":"c:function","4":"c:typedef","5":"c:variable","6":"c:struct","7":"cpp:class"},terms:{"000s":[259,261,267,282],"008s":[259,261,267,282],"00z":273,"01t22":69,"02d":14,"02t22":273,"04x":21,"05t02":273,"093s":[259,261,267,282],"0b1000110":188,"0mb":11,"0ubuntu5":6,"0x0":[256,263,281,282],"0x00":[21,263,267,281],"0x0000":[247,281],"0x00000000":[180,223,225,226],"0x00000001":129,"0x00000002":[129,263],"0x00000004":129,"0x00000008":129,"0x00000010":129,"0x000000b8":256,"0x000000d8":[295,296],"0x000000dc":[246,288,295,296],"0x00004000":[223,225,226],"0x00008000":[94,223,225,226],"0x00009ef4":263,"0x0000fca6":256,"0x00023800":223,"0x0003f000":223,"0x0003f800":223,"0x0006":[30,281],"0x0007d000":[14,226],"0x000a":281,"0x000e0000":225,"0x0010":28,"0x01":[21,28,31,129,267,281],"0x0100":28,"0x01000000":262,"0x0101":21,"0x0102":21,"0x0103":21,"0x0104":21,"0x0105":21,"0x0106":21,"0x0107":21,"0x0108":21,"0x0109":21,"0x010a":21,"0x010b":21,"0x010c":21,"0x010d":21,"0x010e":21,"0x010f":21,"0x0110":21,"0x0111":21,"0x02":[21,28,31,129,267,281],"0x0201":21,"0x0202":21,"0x0203":21,"0x0204":21,"0x0205":21,"0x0206":21,"0x0207":21,"0x0208":21,"0x0209":21,"0x020a":21,"0x020b":21,"0x020c":21,"0x020d":21,"0x020e":21,"0x020f":21,"0x0210":21,"0x0211":21,"0x0212":21,"0x0213":21,"0x0214":21,"0x0215":21,"0x0216":21,"0x0217":21,"0x0218":21,"0x0219":21,"0x021a":21,"0x021b":21,"0x021c":21,"0x021d":21,"0x021e":21,"0x021f":21,"0x0220":21,"0x0221":21,"0x0222":21,"0x0223":21,"0x0224":21,"0x0225":21,"0x0226":21,"0x0227":21,"0x0228":21,"0x0229":21,"0x022a":21,"0x022c":21,"0x022d":21,"0x022e":21,"0x022f":21,"0x0230":21,"0x0232":21,"0x0234":21,"0x0235":21,"0x0236":21,"0x0237":21,"0x0238":21,"0x0239":21,"0x023a":21,"0x023b":21,"0x023c":21,"0x023d":21,"0x023e":21,"0x023f":21,"0x0240":21,"0x03":[21,31,129,281],"0x0300":[21,28],"0x0301":21,"0x0302":21,"0x04":[21,28],"0x0401":21,"0x0402":21,"0x0403":21,"0x0404":21,"0x0405":21,"0x0406":21,"0x0407":21,"0x0408":21,"0x0409":21,"0x040a":21,"0x040b":21,"0x040c":21,"0x040d":21,"0x040e":21,"0x0483":260,"0x05":21,"0x0501":21,"0x0502":21,"0x0503":21,"0x0504":21,"0x0505":21,"0x0506":21,"0x0507":21,"0x0508":21,"0x0509":21,"0x050a":21,"0x050b":21,"0x050c":21,"0x050d":21,"0x050e":21,"0x06":[21,247,281],"0x07":[21,281],"0x08":[21,28,281],"0x08000000":262,"0x08000020":262,"0x08000250":262,"0x08021e90":260,"0x09":[21,281],"0x0a":[21,281],"0x0b":21,"0x0bc11477":256,"0x0c":21,"0x0c80":30,"0x0d":21,"0x0e":21,"0x0f":[21,281,284],"0x0f505235":129,"0x0fffffff":180,"0x1":[282,284,286,288],"0x10":[21,256,263,267,284],"0x100":21,"0x1000":[90,284,286],"0x10000":94,"0x10000000":180,"0x10010000":262,"0x10036413":262,"0x10076413":260,"0x1010":90,"0x103":21,"0x11":[21,24,255,267,281],"0x12":21,"0x13":21,"0x14":21,"0x1400":281,"0x15":[21,280,282,284],"0x16":21,"0x17":21,"0x18":[21,281],"0x1800":31,"0x1808":31,"0x180a":31,"0x19":[21,208],"0x1a":21,"0x1b":21,"0x1c":[21,280,282],"0x1d":21,"0x1e":21,"0x1f":21,"0x2":[284,286],"0x20":[21,33,94,256,263,280,281,282],"0x200":[21,284,286],"0x2000":[284,286],"0x20000":282,"0x20000000":94,"0x20002290":260,"0x20002408":256,"0x20008000":256,"0x21":[21,33],"0x21000000":256,"0x22":[21,24,33,267],"0x23":[21,33],"0x24":21,"0x25":[21,281],"0x26":21,"0x27":21,"0x28":21,"0x2800":281,"0x29":21,"0x2a":21,"0x2ba01477":263,"0x2c":21,"0x2d":[21,281],"0x2e":21,"0x2f":21,"0x30":[21,256,263,281],"0x300":21,"0x311":284,"0x32":[21,284],"0x33":24,"0x34":21,"0x35":21,"0x36":21,"0x37":21,"0x374b":260,"0x38":21,"0x39":21,"0x3a":21,"0x3a000":94,"0x3b":21,"0x3c":21,"0x3c00":281,"0x3d":21,"0x3e":21,"0x3f":21,"0x4":[284,286],"0x40":[21,256,263,280,282],"0x400":21,"0x4000":[284,286],"0x40007000":282,"0x4001e504":263,"0x4001e50c":263,"0x40number":188,"0x41000000":260,"0x42000":62,"0x44":[24,281],"0x4400":281,"0x46":188,"0x4f":[280,282],"0x50":[256,263],"0x500":21,"0x5000":281,"0x55":24,"0x6":281,"0x60":[256,263,281],"0x61":[280,282],"0x62":281,"0x65":281,"0x66":24,"0x68":281,"0x69":281,"0x6c":281,"0x6c00":281,"0x6d":281,"0x6e":281,"0x70":[256,263,281],"0x72":[280,281,282],"0x7800":281,"0x7fefd260":129,"0x7fff8000":282,"0x7fffffff":180,"0x8":281,"0x80":[280,282],"0x8000":62,"0x8000000":262,"0x80000000":180,"0x8079b62c":129,"0x81":188,"0x8801":281,"0x8c":188,"0x8d":188,"0x90":[280,282],"0x96f3b83c":129,"0x9c01":281,"0x9f":281,"0xa":281,"0xa0":284,"0xa001":281,"0xa7":[280,282],"0xaf":[280,282],"0xb3":[280,282],"0xb401":281,"0xb5":[280,282],"0xbead":[280,282],"0xcc01":281,"0xd2":[280,282],"0xd801":281,"0xdead":[280,282],"0xe401":281,"0xe7":[280,282],"0xf":281,"0xf001":281,"0xf395c277":129,"0xfb":284,"0xfe":281,"0xff":[129,180],"0xffff":[30,191,281],"0xfffffffe":180,"0xffffffff":[92,99,129,180,207,256],"0xffffffff0xffffffff0xffffffff0xffffffff":263,"100kb":102,"1024kbyte":[260,262],"103kb":223,"10m":28,"110kb":223,"128hz":14,"128kb":[9,225],"12c":[259,261,267,282],"12kb":[14,226],"12mhz":9,"132425ssb":31,"132428ssb":31,"132433ssb":31,"132437ssb":31,"132441ssb":31,"14e":295,"14h":[288,295],"1503a0":274,"16kb":[9,225,226],"16kbram":54,"16mb":9,"190a192":281,"1_amd64":[58,61,81,84],"1c15":[280,282],"1d11":291,"1d13":[274,294],"1d560":223,"1eec4":223,"1kb":223,"1mhz":14,"1ms":14,"1st":[14,69],"1ubuntu1":6,"1wx":263,"200mhz":9,"2015q2":[4,12],"2022609336ssb":250,"2022687456ssb":250,"2022789012ssb":250,"2022851508ssb":250,"2042859320ssb":250,"2042937440ssb":250,"248m":6,"250m":[240,268],"256kb":256,"262s":[259,261,267,282],"28a29":281,"28t22":273,"291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682":[241,266],"296712s":262,"2a24":49,"2d5217f":82,"2m_interval_max":28,"2m_interval_min":28,"2m_latenc":28,"2m_max_conn_event_len":28,"2m_min_conn_event_len":28,"2m_scan_interv":28,"2m_scan_window":28,"2m_timeout":28,"2msym":22,"300v":[259,261,267,282],"30j":281,"32kb":[226,256],"32mb":9,"32wx":[256,263],"363s":[259,261,267,282],"3_1":37,"3mb":82,"46872ssb":281,"4_9":4,"4fa7":[280,282],"500m":[240,268],"512kb":94,"54684ssb":281,"575c":223,"5kb":102,"5ms":14,"6lowpan":22,"73d77f":72,"78e4d263eeb5af5635705b7cae026cc184f14aa6c6c59c6e80616035cd2efc8f":223,"7b3w9m4n2mg3sqmgw2q1b9p80000gn":56,"7kb":223,"8ab6433f8971b05c2a9c3341533e8ddb754e404":277,"948f118966f7989628f8f3be28840fd23a200fc219bb72acdfe9096f06c4b39b":223,"9cf8af22b1b573909a8290a90c066d4e190407e97680b7a32243960ec2bf3a7f":294,"9mb":59,"abstract":[9,21,96,97,135,152,163,166,174,181,207,209,210,240,268,281,298],"boolean":[200,226],"break":[21,90,137,235,251,281],"byte":[14,20,24,28,47,67,72,74,90,91,100,129,130,131,133,141,142,154,158,159,161,164,169,170,171,172,173,174,175,180,183,188,191,194,200,223,228,241,243,254,255,266,267,270],"case":[2,6,7,14,21,22,31,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,93,94,98,99,100,101,129,135,174,180,184,223,224,226,228,229,230,231,232,233,235,237,243,247,251,252,254,255,256,270,273,274,280,281,282,296],"catch":21,"char":[91,93,98,100,130,131,135,139,140,153,155,156,157,160,161,162,163,165,167,170,172,173,177,178,180,192,194,198,199,200,201,203,206,215,216,220,221,222,224,226,234,240,243,251,254,255,258,268,270,273,281,286,288],"class":[135,267],"const":[88,90,91,94,100,129,130,131,136,153,155,156,157,158,159,160,161,162,163,165,166,167,170,171,172,173,177,178,181,183,185,186,192,200,205,206,209,215,220,222,224,251,253,254,255,273,280,281,282],"default":[1,2,4,6,7,8,12,14,21,25,27,28,29,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,92,93,94,95,97,98,100,131,132,134,135,136,152,176,191,200,206,207,208,209,210,212,213,214,215,217,222,223,224,225,226,237,238,240,241,247,249,251,254,255,256,257,264,266,267,268,275,280,281,282,284,285,287,288,290,295],"enum":[100,130,187,192,194,200,207,280,281],"export":[1,11,24,61,62,81,83,84,88,130,131,135,137,206,207,208,209,210,238,264,283,284,286],"final":[8,56,90,92,94,129,143,180,182,202,223,242,243,246,249,270,280,282],"float":[65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,102,200,207,283],"function":[1,7,9,15,21,24,32,62,85,86,87,88,89,90,91,93,95,96,97,98,100,129,130,131,135,136,137,139,147,151,152,153,154,155,156,157,159,161,162,163,165,167,168,169,170,172,174,175,177,180,181,182,184,187,188,189,190,191,192,193,194,197,199,201,202,203,204,205,206,208,210,213,215,216,217,218,220,221,223,227,228,229,230,231,232,234,235,237,238,240,241,246,249,250,252,254,255,257,258,264,266,267,268,273,275,280,281,282,284,288,293,295,296,298],"goto":[98,160,205,209,218,219,280,281,282],"i\u00b2c":188,"import":[11,56,58,81,90,94,101,102,188,243,246,249,252,270,282],"int":[1,14,21,27,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,85,87,88,90,91,93,98,100,101,130,131,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,160,161,162,163,164,165,166,167,169,170,171,172,173,177,178,179,181,183,184,185,187,188,190,191,192,193,194,195,198,199,200,201,202,203,204,205,208,209,215,216,218,219,220,221,222,224,226,228,229,230,232,233,234,240,242,243,249,251,252,253,254,255,258,268,270,273,280,281,282,286,288],"long":[3,14,22,25,29,90,93,99,102,152,170,180,188,223,263,288],"new":[2,3,4,6,10,11,14,22,24,25,28,31,32,35,40,42,46,47,51,54,58,59,60,62,86,90,94,97,100,129,131,141,142,143,152,153,162,167,174,177,178,182,188,196,215,223,224,226,237,241,243,245,246,247,252,253,254,255,256,259,260,261,262,263,266,267,273,274,275,281,282,283,285,298],"null":[85,86,87,88,90,91,92,93,94,98,99,100,130,131,136,153,157,161,164,172,174,180,186,191,205,206,208,209,215,220,222,225,226,240,243,249,252,253,254,255,258,268,270,280,281,282,283,286,288],"public":[20,26,28,30,31,33,58,67,81,85,88,90,91,92,98,99,100,101,129,130,131,188,191,193,254,255],"return":[19,27,85,86,87,88,90,91,92,93,94,98,99,100,101,130,131,136,141,153,183,186,187,188,191,192,193,194,195,200,208,209,212,226,240,243,249,251,252,253,256,258,267,268,270,273,280,281,282,284,286,288,292],"short":[90,92,215,243,270],"static":[20,27,67,85,88,91,93,94,98,99,130,131,136,140,181,199,201,202,204,205,206,208,209,216,218,219,220,221,222,228,237,240,247,249,251,252,253,254,255,258,268,280,281,282,283,286,288],"switch":[10,12,21,59,72,78,82,86,93,94,100,129,182,196,215,238,246,247,251,252,264,280,281,282,288,295],"transient":252,"true":[8,12,14,87,91,98,101,205,223,228,241,266,273,282,291,294],"try":[2,14,21,22,24,90,153,180,188,237,242,246,247,250,256,257,258,259,260,261,263,274,276,281,282,284,288,290,295],"var":[51,56,66,67,98,130,167],"void":[21,27,85,86,87,88,90,91,93,98,100,101,130,131,135,136,137,139,151,153,154,158,160,161,163,164,167,169,170,171,172,173,179,181,183,184,185,187,188,190,191,192,193,194,195,197,199,200,206,208,209,211,216,217,218,220,221,222,226,228,229,230,232,233,234,235,240,243,249,251,252,253,254,255,258,268,270,280,281,282,283,286,288],"while":[4,6,7,8,22,24,27,50,56,62,90,91,93,94,98,100,102,131,137,139,153,155,156,157,162,165,180,194,200,205,209,223,226,228,233,238,240,243,254,255,258,264,268,270,271,273,280,281,282,286,288,295,296],AES:23,ANS:248,Adding:[57,80,298],And:[62,129,141,223,225,242,243,245,250,270,280,281,282],Are:14,But:[14,282],CTS:[194,247],FOR:4,For:[2,3,5,6,7,8,11,12,14,21,23,24,25,30,31,35,38,40,51,54,56,58,59,60,61,62,63,67,84,85,90,93,94,97,101,102,129,135,136,153,171,174,175,180,181,184,187,188,191,200,206,207,208,209,210,211,221,223,224,225,226,233,235,237,240,241,246,251,252,253,254,255,256,258,260,261,262,266,267,268,273,274,275,276,282,284,286,288,291,294,295,296,298],IDE:[5,12],IDs:129,Its:[95,101,102,237,276],NOT:[157,188,193,282],Not:[7,21,30,87,90,180,182,187,191,223,282],One:[6,21,93,102,180,223,237,249,274],PCs:8,QoS:[21,22],RTS:[194,247],Such:[180,254,255,276],TMS:256,That:[2,14,21,62,141,180,226,254,255,256,267,274,275,281,282],The:[1,2,3,4,5,6,7,8,10,11,12,14,15,16,17,18,19,20,21,22,23,24,25,27,28,30,31,32,34,35,38,44,46,47,48,51,56,58,59,60,62,64,65,67,71,72,73,74,76,77,78,79,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,129,130,131,132,133,134,135,136,137,141,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,173,174,175,176,177,178,180,181,182,183,184,185,186,187,188,190,191,192,193,194,195,196,198,199,200,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,223,224,225,226,228,231,233,235,236,237,238,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,260,261,262,263,264,265,266,267,268,270,271,273,274,275,276,281,282,283,284,285,286,287,288,290,291,292,293,294,295,296,298],Then:[10,14,34,64,129,141,180,223,237,247,273,281,282,295],There:[4,8,14,23,24,29,58,62,81,85,90,92,94,95,99,100,101,102,130,131,135,161,180,182,187,206,207,212,215,223,224,251,256,267,273,277,282,288,295,296],These:[5,21,28,51,62,90,94,95,97,99,129,130,135,180,188,207,210,211,212,215,225,238,245,249,253,254,255,256,257,262,264,275,276,283,284],Use:[1,7,8,11,28,29,51,58,59,60,63,72,81,82,83,94,133,141,143,223,237,251,254,255,256,259,267,274,275,281,282,283,285,293],Used:[94,191,194,229,230,232],Uses:[32,43,134,225],Using:[21,50,92,258,293,298],Was:267,Will:21,With:[9,14,21,22,31,90,93,97,129,223,225,242,243,246,270,295,296,298],Yes:[10,14,20,90,129,134,244],__arg:98,__asm:260,__builtin_offsetof:224,__etext:262,__ev:88,__f:98,__hdr:90,__itvl:98,__n:90,__name:100,__om:90,__omp:90,__sc:98,__size:100,__t1:[87,101],__t2:[87,101],__type:90,__wfi:260,_access:251,_adc:282,_addr:254,_addr_:[254,255],_app:254,_build:[34,64],_cfg:[208,209],_cli:[209,210,284],_cnt:141,_config:[207,208,209,286],_file:153,_gatt_ac:251,_imghdr_siz:94,_init:[207,208,209],_log:209,_name:226,_nrf52_adc_h_:282,_object:200,_ofb:[208,210,284],_onb:[208,210,288],_pad1:129,_pad2:129,_pad3:129,_pad:[92,129],_param:215,_rea:200,_reserv:207,_resource_t:283,_sbrk:183,_senseair_h_:281,_sensor:208,_set:254,_shell_init:[209,284],_stage:226,_stat:209,a600anj1:223,abbrevi:249,abc:273,abil:[6,23,32,56,90,243,270],abl:[2,14,90,94,135,136,238,244,250,254,255,256,264,275,281,282],abort:[50,191,216,220,225,226,228,273,286],about:[1,3,10,14,24,30,41,58,59,60,63,65,81,82,83,91,93,94,98,100,101,141,142,146,180,200,211,223,224,236,237,240,243,249,252,253,254,255,259,263,267,268,270,276,282],abov:[9,14,15,20,90,93,98,101,129,153,161,180,188,191,215,223,224,225,226,238,246,249,251,254,255,258,264,267,273,275,280,282],absent:[129,180],absolut:[90,193],abstrat:141,acc:284,accel:[284,288],accel_rev:284,acceleromet:[207,209,283,284,285,288],accept:[14,21,28,137,161,180,188,194,196,237,256,260,262,267,275],access:[8,16,21,22,28,60,62,65,71,81,82,83,87,89,90,92,93,94,99,135,136,137,141,153,161,168,170,174,181,182,188,196,206,207,209,210,223,226,233,240,246,253,256,268,273,281],access_:253,access_cb:[251,253,280,282],access_fla:161,access_flag:[161,163],accgyro:284,accommod:[25,90,97,129,180,254],accompani:14,accomplish:[9,14,56,174,180,251],accord:[14,94,129,233,234],accordingli:[25,94,100],account:[10,62,90,129],accur:262,achiev:[27,180,254,255],ack_rxd:267,acknowledg:267,acl:21,acquir:[27,92,99,180,188],acquisit:188,across:[31,32,56,62,63,135,180,182],act:[23,31,196,223],action:[9,14,28,63,237,243,249,253,267,270,282],activ:[12,14,17,18,22,48,72,94,100,130,191,196,223,237,241,249,266,267,291,294,295,296],actual:[2,7,14,35,78,90,94,100,129,157,164,172,180,184,195,223,225,228,236,243,246,254,255,256,270,275,276,277,282],ad_fil:153,adafruit:[8,282,284],adapt:[22,97,256,259,260,274,288],adapter_nsrst_delai:[256,260],adaptor:262,adc0:282,adc:[9,14,54,135],adc_0:282,adc_buf_read:282,adc_buf_releas:282,adc_buf_s:282,adc_buf_set:282,adc_chan_config:282,adc_config:282,adc_dev:282,adc_event_handler_set:282,adc_evq:282,adc_hw_impl:54,adc_init:282,adc_number_channel:282,adc_number_sampl:282,adc_read:282,adc_read_ev:282,adc_result:282,adc_result_mv:282,adc_sampl:282,adc_sns_str:282,adc_sns_typ:282,adc_sns_val:282,adc_stack:282,adc_stack_s:282,adc_stm32f4:135,adc_task:282,adc_task_handl:282,adc_task_prio:282,add:[1,2,4,6,7,11,12,14,28,38,40,51,56,58,59,60,62,63,81,88,90,93,97,99,101,102,131,132,141,153,182,188,208,209,216,224,226,237,238,240,241,242,243,246,247,250,256,257,258,264,266,268,270,271,273,274,275,282,284,285,286,287,289,291,292,293,294,298],added:[10,12,33,54,56,82,90,94,99,100,129,131,136,138,153,188,215,240,241,256,258,266,268,274,276,280,281,291,292,294,298],adding:[2,14,32,38,56,90,94,95,101,141,224,246,258,273,275,276,280,281,282],addit:[1,12,14,22,30,44,56,62,63,90,94,95,97,129,135,153,180,188,206,223,226,228,231,237,238,243,246,249,256,257,259,260,262,263,264,267,270,281,282,292],addition:63,addr:[28,31,136,200,205,247,254,255,284],addr_typ:[28,31],address:[14,21,22,23,26,28,30,32,33,56,67,90,91,93,129,135,136,137,152,180,185,188,191,200,207,209,223,241,247,251,266,267,274,288,295],aditihilbert:4,adjust:[14,21,90,94,240,242,268],admin:[4,247],administr:[11,13],adress:28,adsertis:28,adv:[14,22,28,31,32],adv_channel_map:281,adv_data:28,adv_field:[249,254],adv_filter_polici:281,adv_itvl_max:281,adv_itvl_min:281,adv_param:[249,252,254,255],advanc:[60,169,180,295,296],advantag:[252,282],advantang:249,adverb:63,adverti:[254,255],advertis:[16,21,22,25,27,32,33,67,241,248,250,252,266,280,281,282,283],advertise_128bit_uuid:283,advertise_16bit_uuid:283,advertising_interv:[28,30],advic:[95,96],advinterv:30,aes:[256,259,261,263,274,291,292,294],aesni:[291,292],af80:[280,282],affect:[129,169,174,175,181,206,223,246,271],aflag:[1,51,62],after:[4,8,11,14,23,27,31,42,51,56,58,59,62,81,82,87,90,91,95,100,101,129,130,135,139,143,147,153,174,180,188,191,194,209,223,225,231,237,238,241,243,244,247,249,251,252,253,256,257,264,266,270,274,275,284,288],afterward:281,again:[8,14,21,27,58,60,81,94,100,129,141,223,224,243,249,256,259,260,261,262,263,267,270,282,294],against:[14,23,90,93,101],agnost:153,agre:[281,282],agreement:[281,282],ahead:101,aid:[62,209],aim:[21,136,153,248,298],ain0:282,ain1:282,air:[21,90,223,238,264,265,267,289,298],air_q:281,air_qual:[280,281],albeit:245,alert:248,algorithm:[22,86],align:[90,91,141,243,270],all201612161220:76,all:[1,2,3,6,7,8,9,10,12,15,16,17,18,19,21,22,23,25,27,28,29,30,31,32,36,41,42,44,50,51,52,53,54,56,62,67,73,76,90,92,93,94,95,97,98,100,101,129,130,131,135,141,145,151,153,160,161,164,166,167,170,172,174,176,178,180,181,182,184,191,200,206,207,208,209,210,211,212,213,215,220,223,224,225,226,231,233,236,237,238,242,244,246,247,248,249,250,251,252,253,254,255,258,260,262,264,267,271,273,275,276,277,278,280,281,282,284,286,288,291,294],alloc:[74,78,88,89,90,91,152,180,220,249,251],allow:[2,3,4,6,8,9,12,14,21,22,28,32,40,51,56,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,92,93,97,99,129,131,135,153,174,180,183,188,191,192,206,210,211,212,214,215,223,224,226,230,234,237,238,240,243,247,249,252,254,258,259,264,267,268,270,274,282,284,288,290],almost:[8,243,270],alon:[14,234],along:[14,62,90,91,100,218,281],alongsid:[243,254,270],alphabet:[180,226],alreadi:[6,7,8,11,14,21,25,32,44,59,60,82,83,87,96,97,129,136,147,154,160,161,166,167,168,173,180,187,193,237,242,245,246,256,258,259,260,261,262,263,267,274,280,282,283,291,294,295,296],also:[1,3,5,6,7,8,11,12,14,22,24,25,28,35,38,41,56,58,59,60,61,62,67,81,84,90,91,93,94,97,99,100,101,129,130,131,132,135,136,141,153,174,180,191,194,196,206,207,208,209,211,213,215,223,224,225,226,237,238,240,243,246,249,252,253,257,258,264,267,268,270,271,273,274,275,276,280,281,282,284,285,286,287,288,291,292,294],alt:294,altern:[6,129,141,223,251],although:275,altogeth:[85,280],alwai:[8,14,62,94,101,129,157,159,161,162,169,171,180,184,245,251,254,255,262,273,275,276,281,298],ambigu:21,ambiti:246,amd64:[58,81],amend:[1,14,33,51,63,241,266,271,295,296],amg:284,among:[86,94,129,177,223],amongst:90,amount:[25,90,91,96,153,172,206,223,243,249,270],analog:[135,289],analyz:[12,296],android:[283,285,287,290],ani:[1,4,8,10,14,15,22,23,28,34,50,51,60,62,64,65,67,74,77,78,81,82,83,85,87,88,90,91,92,93,94,96,98,99,100,101,129,131,136,137,153,160,170,174,175,176,177,179,180,191,194,206,209,210,215,223,224,226,234,237,238,241,247,249,258,259,264,265,266,267,276,280,281,282,288,293,298],announc:[249,254,255],annoy:[251,277],anonym:28,anoth:[10,14,22,27,28,31,62,90,92,93,94,95,96,99,100,101,131,187,196,223,225,237,243,249,251,267,270,281,282,292,295,296],ans:[281,282],answer:93,anymor:[90,243,270],anyon:14,anyth:[1,8,24,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,223,237,242,246,254,255,257,276,282],apach:[1,2,6,7,10,11,12,14,22,33,34,38,39,40,44,45,51,52,54,56,58,59,60,62,63,64,81,82,83,85,94,129,131,134,135,153,184,223,224,226,227,237,244,246,247,248,250,254,256,257,258,259,260,261,262,263,267,273,274,275,276,281,282,283,284,285,288,290,291,292,293,294,295,296,298],apart:101,api:[1,17,18,19,20,21,22,54,56,62,93,97,135,136,163,182,186,209,210,215,224,255,260,283,287],app:[1,7,8,12,14,22,27,30,33,35,38,39,43,44,46,47,48,49,51,54,56,63,74,77,78,94,129,131,135,153,182,192,224,225,226,237,238,240,241,242,243,246,248,249,252,253,254,255,256,258,259,260,261,262,263,264,265,266,268,270,273,274,280,281,283,284,285,286,287,291,292,293,294,295,298],app_log_init:206,appear:[14,28,30,97,188,243,251,253,270],append:[90,141,159,169,171,180,273],append_loc:[142,143],append_test:273,appl:[256,288,290,295,296],appli:[12,14,25,101,129,130,131,174,175,180,194,206,223,226,267,273],applic:[1,2,4,5,6,8,9,11,13,14,15,19,21,22,24,25,26,27,29,31,35,40,43,48,51,56,58,59,60,61,62,74,77,78,79,83,84,88,90,94,98,100,129,131,132,133,134,135,153,174,180,185,191,209,210,211,212,213,214,215,221,224,225,226,236,241,245,248,251,252,257,266,272,273,280,281,287,290,292,293,296,298],applicaton:1,applict:12,approach:[32,94,226],appropri:[63,90,94,97,100,133,135,180,188,191,226,237,242,246,249,252,254,255,257,282,287],approv:10,apps_air_qu:281,apps_bleprph:223,apps_blinki:[56,62],apps_my_sensor_app:288,apr:[8,259,261,267,282],apropo:[256,288,295,296],apt:[4,6,7,57,61,80,84,247],arbitrari:[129,237,247,256,259,260,261,262,263,267,274,282,284,291,292,294],arbitrarili:[129,180,255],arc4:256,arch:[62,94,97,233,259,260,261,262,263,267,288],arch_sim:[258,288],architectur:[58,81,86,91,94,96,97,101,129,135,152,182,187,243,270],archiv:[4,7,58,60,62,167,237,238,246,256,258,259,260,261,262,263,264,267,274,281,282,284,288,291,292,294],arduino:[12,243,257,270,272,275,281,298],arduino_101:54,arduino_blinki:[12,243,256,270],arduino_boot:[12,256],arduino_mkr1000:274,arduino_primo_nrf52:[54,259],arduino_zero:256,arduino_zero_debug:256,arduinowifi:274,area:[14,90,94,129,130,141,151,175,177,178,183,226],area_cnt:183,area_desc:[177,178],aren:[14,102],arg:[12,87,90,91,93,98,100,135,151,185,187,191,193,194,206,209,218,228,240,243,251,252,268,270,280,281,282,288],argc:[93,100,130,139,140,177,178,198,215,216,220,221,222,226,234,240,243,254,255,258,268,270,273,281,286,288],argument:[11,12,14,21,46,51,56,63,85,88,90,91,98,100,101,131,168,184,187,188,191,193,200,206,209,211,215,221,243,249,252,253,254,255,259,261,270,275,276,288],argv:[100,130,139,140,177,178,198,215,216,220,221,222,226,234,240,243,254,255,258,268,270,273,281,286,288],arm:[5,6,7,12,85,94,102,256,262,288,294,295,296],around:[31,90,129,282,283,285],arrai:[24,88,130,140,141,151,174,175,177,178,191,200,201,202,204,205,215,220,226,242,243,249,253,270],arrang:[94,223],arriv:90,articl:277,artifact:[36,40,51,56,58,59,60,275],ascii:180,asf:[1,275,281,282],ask:[10,14,93,130,194,207,243,262,270,275,276],aspect:[28,90,129,243,270],assembl:[1,62,94,97,259,260,261,262,263,267,288],assert:[14,68,90,98,131,158,171,177,178,191,208,224,228,240,243,251,252,253,254,255,258,268,270,280,281,282,286,288],assign:[10,14,20,22,24,30,38,51,54,67,91,93,94,100,141,180,181,226,237,251,256,259,260,261,262,263,267,274,282,284,291,294],associ:[23,25,88,90,98,100,129,193,226,228,249,252],assum:[7,12,14,31,44,60,61,83,84,88,90,94,100,129,136,191,196,226,237,238,240,242,245,246,258,264,267,268,280,282,283,285,287,288,295,296],assumpt:14,asynchron:194,at45db:[14,136],at45db_default_config:136,at45db_dev:136,at45db_erase_sector:136,at45db_init:136,at45db_read:136,at45db_sector_info:136,at45db_writ:136,at45dbxxx:136,at91samd21g18:256,at91samd:256,ate_m:207,atmel:[2,256,274],atop:[135,182],att:[19,22,29,251],attach:[8,12,90,94,187,192,246,259,267,282,288,295,296],attempt:[21,24,28,90,91,92,100,129,164,172,177,178,179,180,188,226,251,252,253,267],attempt_stat:224,attent:3,attr:[29,31,205],attr_handl:[250,251,252,280,282],attribit:200,attribut:[15,17,18,21,22,29,51,54,63,67,91,95,97,200,205,226,248,251],auth:[14,28,277],authent:[21,23,31,129,250],author:[1,14,21,44,62,131,273,281,282],auto:[30,136],autocomplet:56,autoconf:56,autom:32,automat:[1,10,22,25,26,43,56,62,95,197,215,224,226,231,238,246,248,249,256,259,260,262,263,264,273,275,281,282,283,298],autoselect:256,avaial:267,avail:[1,2,3,4,7,9,14,21,22,24,25,30,31,32,33,48,58,59,60,63,65,74,81,82,83,88,90,91,92,98,99,102,129,131,133,135,141,153,164,174,194,196,207,215,223,226,233,236,238,254,258,264,267,276,287,295,296],avail_queu:131,avoid:[62,90,92,93,98,243,270,283],awai:[21,94,130,251,282],await:3,awar:[249,254,255],b0_0:262,b0_1:262,b1_0:262,b1_1:262,b5729002b340:[280,282],b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2:[241,266],bab:206,back:[8,59,65,70,81,82,83,90,91,101,102,129,130,131,188,213,238,253,262,263,264,281,287,291,292,294],backend:130,backward:[22,129,131,180,215],bad:[129,223,276],badli:93,bake:14,band:[22,23,28],bank:262,bar:[12,130,298],bare:[85,248,254,255,298],base64:[7,130,131,267,288],base:[1,2,4,6,7,12,14,21,22,25,32,35,40,56,58,59,60,62,90,102,133,135,137,169,182,183,188,225,243,247,253,256,259,260,262,263,270,274,283,284,288],baselibc:[7,14,49,94],baselin:134,bash:[2,12,56,60,94],bash_complet:37,bash_profil:[11,59,61,82,84],bashrc:56,basi:[9,20,23,100,276,281,282],basic:[1,14,15,22,30,31,32,62,90,94,100,102,135,153,183,185,187,194,223,238,241,246,247,264,267,275,277,279,280,290,292,293],batch:94,batteri:[9,25,32,97,254],baud:[67,131,247],baudrat:[136,191,194],bbno055_cli:284,bc_acc_bw:[209,286],bc_acc_rang:[209,286],bc_mask:[209,286],bc_opr_mod:[209,286],bc_placement:209,bc_pwr_mode:[209,286],bc_unit:[209,286],bc_use_ext_xt:286,bcfg:286,bd_addr:21,be9699809a049:72,beacon:[15,245,246,257],bearer:[14,22,33],becaus:[8,12,14,21,23,27,31,51,88,129,170,180,181,188,191,207,209,212,216,223,225,243,270,273,275,277,281,283,284,285,288],becom:[23,32,129,249,252],been:[4,10,14,21,27,37,44,56,59,60,62,78,82,83,89,90,91,100,129,130,139,141,153,154,166,174,180,191,194,223,226,244,247,252,256,259,267,274,280,281,282],befor:[2,4,7,8,12,14,21,42,51,58,62,81,85,87,89,90,92,93,94,98,100,101,102,129,130,131,141,147,174,175,179,191,193,194,195,200,211,212,215,217,223,224,226,233,234,238,240,243,246,247,248,249,251,254,255,257,258,260,264,267,268,270,273,274,282,287,290,293],begin:[14,27,90,100,130,141,149,194,247,250,252,254,255,273,275],beginn:298,behav:[21,31,93,254,255,273],behavior:[60,93,97,162,163,174,243,251,253,270,273,274,296],behaviour:90,behind:[90,101],being:[14,21,90,91,93,98,100,101,129,130,136,153,180,187,188,189,198,199,223,228,243,250,252,270,273,298],bell:99,belong:[15,91,129,180,253],below:[1,2,4,6,8,12,14,19,21,23,24,25,31,44,63,90,93,94,95,99,100,129,131,133,136,154,161,164,180,181,193,209,223,237,243,246,251,253,256,259,260,262,263,267,270,271,273,275,276,277,282,283,284,286,290,298],benefit:[10,93,180,226,236,240,268],best:[14,90,94,161,200,276],beta:135,better:[14,129,224],between:[7,12,22,27,28,32,38,47,56,99,101,131,180,187,188,198,200,210,223,225,226,238,240,247,259,264,267,268,276,282,284,288],beyond:[90,180],bhd:67,big:[24,62,90,267,276],bigger:223,bin:[2,4,7,11,12,14,35,36,38,39,44,47,49,51,56,58,59,60,61,62,81,82,83,84,94,169,170,223,226,237,238,241,242,246,247,250,256,258,259,260,261,262,263,264,266,267,273,274,281,282,284,288,291,292,294,295,296],bin_basenam:62,binari:[4,7,11,14,35,38,40,56,59,61,62,80,82,84,102,133,188,258],binutil:4,bit:[7,15,24,26,28,30,58,59,60,67,82,83,87,90,91,100,101,102,129,180,188,189,191,194,207,209,211,212,223,224,243,246,251,252,253,254,255,270,274,276,280,282,283,288,295,296],bitbang:189,bitmap:91,bitmask:100,bits0x00:28,bl_rev:284,bla:206,blank:14,ble:[15,19,20,24,27,31,32,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,90,129,133,134,223,226,238,241,245,247,249,251,252,253,257,264,266,279,280,281,285,287,290,298],ble_:251,ble_addr_t:[254,255],ble_addr_type_publ:252,ble_app:[246,254,255],ble_app_advertis:[254,255],ble_app_on_sync:[254,255],ble_app_set_addr:[254,255],ble_att:[77,238,251,264],ble_att_err_attr_not_found:21,ble_att_err_attr_not_long:21,ble_att_err_insufficient_authen:21,ble_att_err_insufficient_author:21,ble_att_err_insufficient_enc:21,ble_att_err_insufficient_key_sz:21,ble_att_err_insufficient_r:[21,280,282],ble_att_err_invalid_attr_value_len:[21,251],ble_att_err_invalid_handl:21,ble_att_err_invalid_offset:21,ble_att_err_invalid_pdu:21,ble_att_err_prepare_queue_ful:21,ble_att_err_read_not_permit:21,ble_att_err_req_not_support:21,ble_att_err_unlik:[21,280,282],ble_att_err_unsupported_group:21,ble_att_err_write_not_permit:21,ble_att_svr_entry_pool:74,ble_att_svr_prep_entry_pool:74,ble_eddystone_set_adv_data_uid:254,ble_eddystone_set_adv_data_url:254,ble_eddystone_url_scheme_http:254,ble_eddystone_url_suffix_org:254,ble_err_acl_conn_exist:21,ble_err_auth_fail:21,ble_err_chan_class:21,ble_err_cmd_disallow:21,ble_err_coarse_clk_adj:21,ble_err_conn_accept_tmo:21,ble_err_conn_establish:21,ble_err_conn_limit:21,ble_err_conn_parm:21,ble_err_conn_rej_bd_addr:21,ble_err_conn_rej_channel:21,ble_err_conn_rej_resourc:21,ble_err_conn_rej_secur:21,ble_err_conn_spvn_tmo:21,ble_err_conn_term_loc:21,ble_err_conn_term_m:21,ble_err_ctlr_busi:21,ble_err_diff_trans_col:21,ble_err_dir_adv_tmo:21,ble_err_encryption_mod:21,ble_err_host_busy_pair:21,ble_err_hw_fail:21,ble_err_inq_rsp_too_big:21,ble_err_instant_pass:21,ble_err_insufficient_sec:21,ble_err_inv_hci_cmd_parm:21,ble_err_inv_lmp_ll_parm:21,ble_err_link_key_chang:21,ble_err_lmp_collis:21,ble_err_lmp_ll_rsp_tmo:21,ble_err_lmp_pdu:21,ble_err_mac_conn_fail:21,ble_err_mem_capac:21,ble_err_no_pair:21,ble_err_no_role_chang:21,ble_err_page_tmo:21,ble_err_parm_out_of_rang:21,ble_err_pending_role_sw:21,ble_err_pinkey_miss:21,ble_err_qos_parm:21,ble_err_qos_reject:21,ble_err_rd_conn_term_pwroff:21,ble_err_rd_conn_term_resrc:21,ble_err_rem_user_conn_term:21,ble_err_repeated_attempt:21,ble_err_reserved_slot:21,ble_err_role_sw_fail:21,ble_err_sco_air_mod:21,ble_err_sco_itvl:21,ble_err_sco_offset:21,ble_err_sec_simple_pair:21,ble_err_synch_conn_limit:21,ble_err_unit_key_pair:21,ble_err_unk_conn_id:21,ble_err_unk_lmp:21,ble_err_unknown_hci_cmd:21,ble_err_unspecifi:21,ble_err_unsupp_lmp_ll_parm:21,ble_err_unsupp_qo:21,ble_err_unsupp_rem_featur:21,ble_err_unsupport:21,ble_ext_adv:14,ble_ext_adv_max_s:14,ble_ga:253,ble_gap:[14,77],ble_gap_adv_param:[254,255],ble_gap_adv_set_field:249,ble_gap_adv_start:[249,252,254,255],ble_gap_chr_uuid16_appear:[251,253],ble_gap_chr_uuid16_device_nam:[251,253],ble_gap_chr_uuid16_periph_pref_conn_param:251,ble_gap_chr_uuid16_periph_priv_flag:251,ble_gap_chr_uuid16_reconnect_addr:251,ble_gap_conn_desc:252,ble_gap_conn_find:252,ble_gap_conn_fn:249,ble_gap_conn_mode_und:[249,252],ble_gap_disc_mode_gen:[249,252],ble_gap_ev:252,ble_gap_event_conn_upd:252,ble_gap_event_connect:252,ble_gap_event_disconnect:252,ble_gap_event_enc_chang:252,ble_gap_event_fn:[254,255],ble_gap_event_subscrib:252,ble_gap_svc_uuid16:[251,253],ble_gap_upd:74,ble_gap_update_param:14,ble_gatt:77,ble_gatt_access_ctxt:[251,280,282],ble_gatt_access_op_read_chr:[251,280,282],ble_gatt_access_op_write_chr:[251,280,282],ble_gatt_chr_def:[251,253,280,282],ble_gatt_chr_f_notifi:[280,282],ble_gatt_chr_f_read:[251,253,280,282],ble_gatt_chr_f_read_enc:[280,282],ble_gatt_chr_f_writ:[280,282],ble_gatt_chr_f_write_enc:[280,282],ble_gatt_register_fn:253,ble_gatt_svc_def:[251,253,280,282],ble_gatt_svc_type_primari:[251,253,280,282],ble_gattc:77,ble_gattc_proc_pool:74,ble_gatts_chr_upd:[280,282],ble_gatts_clt_cfg_pool:74,ble_gatts_find_chr:[280,282],ble_gatts_register_svc:253,ble_h:[14,15,16,17,18,20,21,24,27,77,254,255,280],ble_hci_ram_evt_hi_pool:74,ble_hci_ram_evt_lo_pool:74,ble_hci_uart_baud:247,ble_hs_:253,ble_hs_adv_field:[249,254],ble_hs_att_err:21,ble_hs_cfg:[27,254,255],ble_hs_conn_pool:74,ble_hs_eagain:21,ble_hs_ealreadi:21,ble_hs_eapp:21,ble_hs_eauthen:21,ble_hs_eauthor:21,ble_hs_ebaddata:21,ble_hs_ebusi:21,ble_hs_econtrol:21,ble_hs_edon:21,ble_hs_eencrypt:21,ble_hs_eencrypt_key_sz:21,ble_hs_einv:[14,21],ble_hs_emsgs:21,ble_hs_eno:21,ble_hs_enoaddr:21,ble_hs_enomem:21,ble_hs_enomem_evt:21,ble_hs_enotconn:21,ble_hs_enotsup:21,ble_hs_enotsync:21,ble_hs_eo:21,ble_hs_ereject:21,ble_hs_erol:21,ble_hs_err_sm_peer_bas:21,ble_hs_err_sm_us_bas:21,ble_hs_estore_cap:21,ble_hs_estore_fail:21,ble_hs_etimeout:21,ble_hs_etimeout_hci:21,ble_hs_eunknown:21,ble_hs_ev_tx_notif:88,ble_hs_event_tx_notifi:88,ble_hs_forev:[252,254,255],ble_hs_hci_cmd_send:281,ble_hs_hci_err:21,ble_hs_hci_ev_pool:74,ble_hs_id:24,ble_hs_id_gen_rnd:[24,254,255],ble_hs_id_set_rnd:[20,24,254,255],ble_hs_l2c_err:21,ble_hs_reset_fn:27,ble_hs_sm_peer_err:21,ble_hs_sm_us_err:21,ble_hs_sync_fn:27,ble_ibeacon_set_adv_data:255,ble_l2cap:77,ble_l2cap_chan_pool:74,ble_l2cap_sig_err_cmd_not_understood:21,ble_l2cap_sig_err_invalid_cid:21,ble_l2cap_sig_err_mtu_exceed:21,ble_l2cap_sig_proc_pool:74,ble_ll:[77,78],ble_ll_cfg_feat_le_encrypt:223,ble_ll_conn:77,ble_ll_prio:226,ble_lp_clock:25,ble_max_connect:[283,285],ble_mesh_dev_uuid:33,ble_mesh_pb_gatt:33,ble_own:[254,255],ble_own_addr_random:[254,255],ble_phi:77,ble_public_dev_addr:24,ble_rigado:48,ble_role_broadcast:285,ble_role_peripher:285,ble_sm_err_alreadi:21,ble_sm_err_authreq:21,ble_sm_err_cmd_not_supp:21,ble_sm_err_confirm_mismatch:21,ble_sm_err_cross_tran:21,ble_sm_err_dhkei:21,ble_sm_err_enc_key_sz:21,ble_sm_err_inv:21,ble_sm_err_numcmp:21,ble_sm_err_oob:21,ble_sm_err_pair_not_supp:21,ble_sm_err_passkei:21,ble_sm_err_rep:21,ble_sm_err_unspecifi:21,ble_sm_legaci:223,ble_store_config:14,ble_svc_gap_device_name_set:282,ble_tgt:[246,254,255],ble_uu:253,ble_uuid128_init:[280,282],ble_uuid128_t:[280,282],ble_uuid16:[251,253],ble_uuid16_declar:[280,282],ble_uuid:[280,282],ble_uuid_128_to_16:251,ble_uuid_u16:[280,282],ble_xtal_settle_tim:25,blecent:[7,62],blehci:[7,62],blehciproj:247,blehostd:67,blemesh:[22,33],blenano:54,bleprph:[7,14,22,62,67,223,241,248,249,250,251,252,253,266,280,281,282,283,296],bleprph_advertis:[249,252],bleprph_appear:251,bleprph_device_nam:[249,251],bleprph_le_phy_support:282,bleprph_log:[249,252,280,282],bleprph_oic:[7,62,287],bleprph_oic_sensor:283,bleprph_on_connect:249,bleprph_pref_conn_param:251,bleprph_print_conn_desc:252,bleprph_privacy_flag:251,bleprph_reconnect_addr:251,blesplit:[7,62],bletest:[7,62],bletini:[38,39,46,47,51,62,72],bletiny_chr_pool:74,bletiny_dsc_pool:74,bletiny_svc_pool:74,bletoh:90,bleuart:[7,62],bleuartx000:14,blink:[1,7,62,94,100,240,242,243,256,257,259,260,261,262,263,268,270,282,298],blink_nord:296,blink_rigado:48,blinki:[1,12,14,35,44,45,49,56,62,94,243,246,247,267,268,270,274,281,282,290,291,292,294,295,296,298],blinky_callout:258,blinky_sim:62,blksize:91,blksz:[74,292],blob:[21,184],block:[21,30,74,87,88,90,91,99,135,141,144,174,175,176,177,178,188,191,193,194,240,268,281,292],block_addr:91,block_siz:91,blocks_siz:91,blue:263,bluetooth:[1,9,21,23,24,25,28,30,33,90,223,241,248,249,254,255,257,266,281,298],bmd300eval:[49,54,261,282],bmd:[261,282],bmp280:14,bno055:[208,209,283,285,286],bno055_0:[208,284,286],bno055_acc_cfg_bw_125hz:286,bno055_acc_cfg_rng_16g:286,bno055_acc_unit_ms2:286,bno055_angrate_unit_dp:286,bno055_cfg:[209,286],bno055_cli:[284,285],bno055_config:[209,286],bno055_default_cfg:209,bno055_do_format_android:286,bno055_err:209,bno055_euler_unit_deg:286,bno055_get_chip_id:209,bno055_id:209,bno055_info:209,bno055_init:[208,209],bno055_ofb:[208,283,284,285],bno055_opr_mode_ndof:286,bno055_pwr_mode_norm:286,bno055_sensor_get_config:209,bno055_sensor_read:209,bno055_shel:284,bno055_shell_init:284,bno055_stat_sect:209,bno055_temp_unit_degc:286,board:[1,2,4,5,7,12,14,24,25,31,40,43,48,54,56,58,59,60,62,93,94,135,182,183,188,209,210,214,223,225,226,237,238,240,241,242,243,247,250,254,255,257,258,264,266,268,270,280,281,286,287,288,290,293,295,296,298],bodi:[129,286],bold:[237,244],bond:[23,28,30,31,250],bondabl:28,bone:[85,248,254,255,298],bookkeep:141,bool:[91,200],boot:[7,44,62,94,101,102,131,196,237,238,241,247,256,259,260,261,262,263,264,266,267,274,281,282,284,288,291,292,294],boot_boot_serial_test:7,boot_bootutil:223,boot_build_statu:129,boot_build_status_on:129,boot_clear_statu:129,boot_copy_area:129,boot_copy_imag:129,boot_erase_area:129,boot_fill_slot:129,boot_find_image_area_idx:129,boot_find_image_part:129,boot_find_image_slot:129,boot_go:129,boot_img_mag:129,boot_init_flash:129,boot_load:94,boot_mag:129,boot_move_area:129,boot_nrf52dk:281,boot_olimex:262,boot_read_image_head:129,boot_read_statu:129,boot_select_image_slot:129,boot_seri:[7,14,131],boot_serial_setup:7,boot_slot_addr:129,boot_slot_to_area_idx:129,boot_swap_area:129,boot_test:7,boot_vect_delete_main:129,boot_vect_delete_test:129,boot_vect_read_main:129,boot_vect_read_on:129,boot_vect_read_test:129,boot_write_statu:129,bootabl:[223,241,266,291,294],bootload:[1,12,44,48,94,97,102,131,192,196,237,241,243,257,258,266,270,281,282,283,285,293],bootutil:[7,14,102,129,131,256,259,260,261,262,263,267,274,281,282,284,291,292,294],bootutil_misc:[7,256,259,260,261,263,284,291,292,294],both:[6,9,11,14,15,21,23,28,30,40,56,58,59,60,63,90,92,94,99,129,130,132,135,174,180,188,191,200,206,223,225,226,236,256,258,267,273,274,277,282],bottl:[59,82],bottom:[12,94,98,100,250],bound:[90,94,153],boundari:[90,91,94],box:[12,296],bps:194,branch:[1,4,7,10,11,14,56,57,58,60,61,80,81,83,84,129,244,256,274,275,276],branchnam:10,brand:263,bread:282,breadboard:282,breakdown:223,breakpoint:[256,260],breviti:[223,237,292],brew:[3,4,7,11,37,56,59,61,82,84],brick:129,bridg:180,brief:[14,20,187,254,255,267],briefli:94,bring:[12,94,182,284,287,290],broad:298,broadca:[254,255],broadcast:[14,15,28,32,249,254,255],brows:[250,259,275],browser:244,bsd:102,bsp:[1,7,14,25,33,35,38,39,43,44,46,48,51,56,62,63,93,130,135,174,175,177,178,182,186,187,193,194,207,208,209,210,212,223,226,237,240,246,247,250,256,258,259,260,261,262,263,267,268,274,281,282,283,284,285,286,288,291,292,294,295,296,298],bsp_arduino_zero:256,bsp_arduino_zero_pro:[256,274],bsp_flash_dev:175,bsp_timer:193,bsppackag:94,bss:[14,49,94,223],bssnz_t:[280,282],bt_mesh_provis:14,btattach:247,btmesh_shel:14,btshell:[7,22,30,238,250,264],buad:67,buf:[130,136,154,155,156,157,161,162,164,165,169,172,200],buf_len:[90,130],buffer:[14,21,90,91,93,97,98,130,131,135,157,164,170,172,180,188,191,200,206,225,255,282],buffer_len:282,buffer_size_down:295,bug:[4,7,11,161,162,256,260,288,295,296],bui:282,build:[1,2,3,4,5,6,11,32,33,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,81,83,93,94,95,97,129,135,182,188,199,206,210,223,224,225,226,233,240,241,248,249,250,257,266,268,273,280,281,290,293,298],build_arduino_blinki:12,build_arduino_boot:12,build_numb:198,build_profil:[1,33,38,39,44,51,54,62,94,223,237,246,247,250,256,259,260,261,262,263,267,274,281,282,283,284,285,288,291,292,294],buildabl:7,builder:244,built:[1,4,7,8,9,14,22,34,35,39,40,43,44,56,58,59,60,61,62,64,82,83,84,90,129,191,206,223,233,237,238,244,246,247,250,254,255,256,257,258,259,260,261,262,263,264,267,273,274,280,281,282,283,284,288,291,292,294],bundl:[14,56,102,153],burn:[14,254,255],bus:[2,188],buse:[135,182],busi:[21,91,92,243,270,281],button1_pin:[240,268],button:[2,4,10,12,14,99,240,256,259,268],bytes_read:[154,161,164,169,172],bytyp:212,c_ev:85,c_evq:85,c_tick:85,cabl:[238,240,241,243,247,256,257,259,260,261,262,264,266,267,268,270,274,282,288,290,291,293,294],cach:[59,82,135,174,176,182],cache_large_file_test:273,calcul:[21,30,49,91,101,129,141],calendar:9,call:[6,7,9,11,20,22,24,27,37,62,85,86,87,88,89,90,91,92,93,94,98,99,100,101,102,129,130,131,132,133,135,136,139,141,142,143,144,146,147,151,159,162,166,169,172,173,176,177,179,180,181,184,187,188,190,191,192,193,194,195,197,200,206,207,208,209,211,212,213,215,217,218,221,224,226,229,230,231,232,233,234,235,238,240,243,245,246,249,250,251,252,253,254,255,256,258,264,267,268,270,273,275,281,282,283,284,288,293],callback:[21,27,87,88,90,91,131,141,146,151,187,191,193,194,207,208,209,211,213,226,240,249,251,253,254,255,258,268,281,288],caller:[90,91,131,141,193,199,200,216,220],callout:[88,93,98,212,258,288],callout_l:[240,268],callout_reset:130,came:247,can:[1,2,3,4,5,6,7,8,9,11,12,14,20,21,22,23,24,25,28,31,32,34,35,36,43,46,51,56,58,59,60,61,62,63,64,65,67,73,77,81,82,83,84,85,86,87,88,90,91,92,93,94,95,97,98,99,100,102,129,130,131,132,135,136,137,138,141,142,144,146,147,151,152,153,162,166,167,170,172,174,175,177,180,181,182,187,189,190,191,193,194,195,196,200,206,207,208,209,210,211,212,215,216,220,221,222,223,224,225,226,229,230,232,233,236,237,238,240,241,242,243,244,246,247,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,270,271,273,274,275,276,280,281,282,283,284,285,286,288,290,291,292,294,295,296,298],cancel:[21,28,85],candid:275,cannot:[4,14,20,21,72,87,89,92,93,99,129,152,170,180,183,191,193,226,238,256,264,274,275,276,277],cap:14,capabl:[14,21,23,28,30,96,131,135,206,223,243,258,270,295],capac:21,captian:82,captur:180,carbon:280,card:[137,152],care:[14,90,93,100,164,172,254,255,275,276,280],carri:90,cascad:[1,62],cast:[90,91,251],cat:[14,81,281,282],catastroph:27,categor:94,categori:[14,97],caus:[91,93,99,154,161,162,167,170,180,188,192,225,228,241,243,266,270,282,295],caveat:[14,129],cb_arg:[151,193,249,253,254,255],cb_func:193,cbmem:[7,206,228],cbmem_buf:206,cbmem_entry_hdr:228,cbmem_init:206,cbmem_read:228,cbmem_test_case_1_walk:228,cbor:[133,134],cborattr:7,cccd:28,ccm:23,cdc:259,cell:23,cellar:[4,6,11,37,59,61,82,84],central:[14,21,31,248,249,250,252],certain:[1,22,90,91,93,94,135,247,276],certainli:[14,282],cess_op_:251,cfg:[71,172,173,188,191,193,194,208,209,260],cflag:[1,14,51,62,94],cgi:102,ch_commit:130,ch_export:130,ch_get:130,ch_get_handler_t:130,ch_name:130,ch_set:130,chain:[90,91,200],challeng:271,chanc:[93,100],chang:[1,4,6,7,10,11,14,20,21,22,23,25,29,31,47,50,51,53,58,62,63,81,90,94,95,129,130,180,187,191,207,208,215,223,225,226,237,238,240,242,243,244,247,250,252,254,255,256,260,264,268,270,280,281,283,284,285,288,290,295,296],channel:[14,21,22,30,135,282],channel_map:28,chapter:[2,22,97,133],charact:[131,140,157,160,174,180,194,198,199,200,201,202,203,204,215,220,226,253,274,281,288,295],character:25,characteri:[251,253],characterist:[9,17,18,22,28,29,129,250,253,280,282],check:[4,6,8,11,14,21,23,56,57,80,85,88,91,100,101,130,180,200,209,223,225,226,237,241,246,247,248,259,262,266,267,273,276,284,286,293],checkbox:60,checkin:[78,98,100],checkout:[10,81,83,257],checksum:[141,143],child:[91,155,156,157,162,165,180],children:180,chip:[4,97,135,136,182,187,191,192,207,209,256,257,259,260,263,274,275,284],chip_id:284,chipset:[135,182,256,274],choic:[2,10,174,247,284],choos:[6,7,10,14,90,100,102,223,224,238,243,246,249,258,259,261,264,270,280,282],chose:224,chosen:[90,94,129,152,180,282],chr:[251,280,282],chr_access:251,chr_val_handl:[280,282],chunk:[14,90],ci40:54,cid:250,circuit:188,circular:[14,206,225,226],circularli:276,clang:6,clarif:10,clarifi:135,clariti:137,classif:21,clean:[1,11,34,40,51,58,59,60,64,82,160,178,243,267,270],cleanli:226,clear:[73,85,90,91,100,129,180],clearli:[8,21],cli:131,click:[2,4,10,12,244,250,254,255,256,259,260,262,294],client:[12,14,18,19,21,22,28,32,153,181,210,254,280],clk:191,clobber:167,clock:[21,26,87,192,256,260,284],clock_freq:87,clone:[10,11,46,51,56,59,82],close:[2,60,135,153,154,155,156,157,158,161,162,164,165,169,170,171,172,173,194,208,256,259,260,262,263,286],closest:193,clue:14,cmake:1,cmd:[56,62,94,185,281,284],cmd_len:281,cmd_pkt:281,cmd_queue:131,cmd_read_co2:281,cmp:281,cmsi:[2,7,14,49,256,259,260,261,262,263,288],cmsis_nvic:[259,260,261,262,263,288],cn4:237,cnt:[74,131,177,178,191,292],co2:[280,281],co2_evq:280,co2_read_ev:280,co2_sns_str:280,co2_sns_typ:280,co2_sns_val:280,co2_stack:280,co2_stack_s:280,co2_task:280,co2_task_handl:280,co2_task_prio:280,coap:[134,210,213,283,287],coars:21,coc:28,code:[1,5,7,9,10,11,13,19,22,25,27,28,30,56,86,90,91,93,96,97,98,101,102,129,130,131,133,135,137,140,153,154,155,156,157,158,160,161,162,164,165,167,169,170,171,172,173,177,178,179,180,181,182,183,187,188,191,193,194,196,206,208,209,210,223,226,228,229,230,232,233,234,238,240,243,248,249,251,252,253,256,257,258,264,267,268,270,272,274,275,281,282,283,286,287,288,290,292,293,298],codebas:[256,274],coded_interval_max:28,coded_interval_min:28,coded_lat:28,coded_max_conn_event_len:28,coded_min_conn_event_len:28,coded_scan_interv:28,coded_scan_window:28,coded_timeout:28,codepag:152,coding_standard:7,coexist:129,collect:[1,7,44,56,62,90,91,133,141,181,200,223,237,275],collis:21,colon:67,color:242,column:20,com11:8,com1:67,com3:[8,258,274,284,291,294],com6:8,com:[8,10,11,12,34,56,58,59,60,64,81,82,83,102,184,237,247,258,274,275,277,284,291,292,294],combin:[1,21,23,27,44,62,93,94,188,246,254,255,275,276],combo:223,come:[3,22,31,56,62,94,102,131,135,206,256,262,263,274,281,282,294],comm:[237,257],comma:[52,67],comman:221,command:[1,2,4,7,8,11,21,31,35,36,37,38,39,41,42,43,45,46,47,48,49,50,52,53,54,55,58,59,60,61,62,68,69,71,72,73,76,77,79,81,82,83,84,94,97,129,132,134,137,139,188,196,197,206,210,216,220,221,222,223,224,225,226,233,237,239,241,242,243,246,254,255,256,258,259,260,261,262,263,266,267,270,271,273,274,275,277,278,282,283,284,285,286,288,291,294,295,296],comment:[3,10,14,94,236,298],commerci:281,commit:[10,11,130,282],common:[56,62,88,90,97,99,100,135,136,182,187,209,210,223,253,260],commonli:[99,191,254],commun:[9,14,22,27,28,32,67,79,131,133,137,188,191,207,208,209,237,240,241,242,243,247,249,252,257,266,267,268,270,274,275,282,284,288,291,292,293,294,298],compani:30,compar:[10,21,90,161,243,259,260,261,267,270,278,282],comparison:[21,23,90,101],compat:[4,14,22,56,129,131,136,215,216,223,256,267,274,281,284,286,288,295],compens:101,compil:[1,4,5,6,7,8,11,21,35,48,54,56,59,62,82,90,93,94,97,102,135,215,224,233,236,237,238,240,246,256,259,260,261,262,263,264,267,268,274,281,282,283,284,288,291,292,294],complaint:22,complementari:32,complet:[9,12,21,23,28,30,31,34,56,60,64,94,96,97,100,129,131,141,155,156,157,162,165,180,182,188,191,194,206,223,231,235,236,240,243,247,249,254,255,260,268,270,275,281,282,283,286,287,288,291,292,294],completion_cb:131,complex:[9,32,93,94,135,182,243,245,270],compli:22,complianc:[281,282],compliant:22,complic:[56,93,223],compon:[1,7,12,19,40,49,56,58,59,60,62,86,94,97,130,135,182,188,191,223,224,238,240,241,247,254,255,257,264,266,268,274,281,290,293],compos:[40,58,59,60,236],composit:200,comprehens:236,compress:[56,82,174,254],compris:[7,129,174,175],comput:[3,4,6,8,12,14,32,57,59,60,80,82,131,143,152,241,243,246,247,256,257,259,260,261,262,263,266,270,283,285,290,291,293,294],concept:[12,23,90,93,161,215,226,241,243,245,246,248,256,257,266,270,274,290,293],conceptu:14,concern:[3,90,180],concis:133,conclud:[254,255,282],concurr:[1,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,85,89,248,249],condit:[4,21,129,180,188,208,215,225,228,273,281,282],condition:[56,208,225,226,284],conduct:[129,133],conf:267,conf_bytes_from_str:130,conf_commit:130,conf_commit_handler_t:130,conf_export_func_t:130,conf_export_handler_t:130,conf_export_persist:130,conf_export_show:130,conf_export_tgt:130,conf_export_tgt_t:130,conf_fcb_dst:130,conf_fcb_src:130,conf_file_dst:130,conf_file_src:130,conf_get_handler_t:130,conf_get_valu:130,conf_handl:130,conf_init:[130,234],conf_int8:130,conf_load:[130,282],conf_regist:[130,228],conf_sav:130,conf_save_on:130,conf_save_tre:130,conf_set_handler_t:130,conf_set_valu:130,conf_store_init:130,conf_str_from_byt:130,conf_str_from_bytes_len:130,conf_str_from_valu:130,conf_typ:130,conf_value_from_str:130,conf_value_set:130,confidenti:23,config:[1,7,14,33,51,62,63,65,79,81,82,83,132,136,152,154,158,161,164,171,193,225,226,234,238,246,264,281,282,284],config_:208,config__sensor:208,config_bno055_sensor:[208,286],config_cli:130,config_fcb:[130,225],config_fcb_flash_area:[225,226],config_lis2dh12_sensor:208,config_newtmgr:[51,238,264],config_nff:[130,153,225],config_pkg_init:226,config_test_al:234,config_test_handl:228,config_test_insert:[228,229],configur:[6,7,9,14,20,21,26,27,32,33,51,56,58,59,60,62,63,87,91,93,94,95,97,129,131,133,135,153,174,176,180,182,183,187,188,191,193,194,195,210,211,213,223,227,240,243,246,249,253,256,259,262,263,267,268,270,271,277,281,282,284,287,288,290,292,295,296],configuraton:152,confirm:[8,14,21,28,72,129,223,241,267,291,294],confirmbe9699809a049:72,conflict:[62,225,276],confluenc:10,confus:[275,282],congratul:[7,237,250,280,281,282],conifgur:130,conjunct:[32,211],conn:[14,28,29,31,65,66,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,241,252,254,255,266,291,292,294],conn_handl:[21,250,251,252,280,282],conn_interval_max:30,conn_interval_min:30,conn_itvl:[31,250],conn_lat:[31,250],conn_mod:252,conn_profil:[66,67,68,69,70,71,72,73,74,75,76,77,78],conn_upd:252,connect:[4,7,8,9,12,16,21,22,23,25,27,29,30,32,39,43,44,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,97,131,133,134,135,182,187,188,191,192,223,237,240,248,249,250,251,252,254,255,257,268,280,281,290,293],connect_don:274,connectable_mod:249,connection_profil:72,connectionless:28,connector:[4,238,247,259,262,264,267,294],connextra:14,connintervalmax:30,connintervalmin:30,connstr:[14,67,241,266,291,292,294],conntyp:14,consecut:98,consequ:[21,129,223],conserv:[9,90,97],consid:[8,22,63,90,93,99,143,188,228,253,275],consider:228,consist:[1,22,32,62,99,100,129,130,133,135,163,180,191,223,225,226,233,253],consol:[1,7,8,12,14,27,56,62,97,102,130,138,155,156,157,162,165,172,194,206,219,226,240,246,247,250,254,255,257,268,273,281,282,292],console_append_char_cb:131,console_blocking_mod:131,console_compat:131,console_echo:131,console_handle_char:131,console_init:131,console_input:131,console_is_init:131,console_is_midlin:131,console_max_input_len:131,console_non_blocking_mod:131,console_out:131,console_pkg_init:226,console_printf:[14,21,27,131,154,155,156,157,161,162,164,165,169,172,228,280,281,282,288],console_read:131,console_rtt:[131,281,288,295],console_rx_cb:131,console_set_completion_cb:131,console_set_queu:131,console_tick:131,console_uart:[131,281,288,295],console_uart_baud:131,console_uart_dev:131,console_uart_flow_control:131,console_uart_tx_buf_s:131,console_writ:[131,228],consolid:180,consortium:133,constant:[14,191],constantli:[249,274,282,298],constitu:[44,180],constrain:[9,56,134,271],constraint:256,construct:[11,14,90,99],consult:[153,182],consum:[88,99,194],consumpt:23,contact:[95,96,237],contain:[1,3,7,11,14,30,32,35,51,56,62,85,90,91,94,96,97,99,100,101,129,130,131,133,135,138,141,154,157,158,161,164,167,168,169,171,177,180,183,187,194,196,198,199,200,211,219,223,224,226,228,231,233,236,246,247,249,251,253,254,255,267,273,275,276,284,298],content:[12,14,50,62,81,90,94,129,141,142,143,155,156,157,162,165,172,180,193,200,223,234,237,243,249,253,254,255,262,267,270,273,276,277,284,286],context:[14,56,78,86,87,88,93,100,131,135,140,191,193,215,217,226,238,240,252,258,264,268],contigu:[90,129,141,180],continu:[6,14,94,99,130,180,215,223,238,240,242,243,244,247,256,257,262,264,268,270,274,282,285,286,287,288,290,292,293,295],contrast:226,contribut:[13,23,58,59,60,81,82,83,245,273,282,290],contributor:[182,281,282],control:[8,9,14,19,20,21,22,23,24,26,27,30,32,56,67,97,131,135,141,161,174,182,184,191,194,206,209,215,226,246,260,262,275,276,281,287],contruct:250,convei:90,conveni:[12,21,90,130,172,180,199,228],convent:[267,273,284,288],convers:[101,102,135,251],convert:[1,8,21,72,85,87,90,101,130,135,175,177,178,180,191,200,226,251,253,282],cooper:14,coordin:[283,285],copi:[1,4,46,50,51,63,81,83,90,95,96,129,130,141,180,200,208,223,224,241,249,252,256,266,281,282,286,288,295,296],copy_don:129,copyright:[4,256,262,281,282,288,295,296],core:[1,6,7,12,22,30,33,38,39,44,49,51,52,54,56,62,63,72,89,94,96,98,133,135,153,182,184,223,224,227,237,243,246,247,248,249,250,256,257,258,259,260,261,262,263,267,270,273,274,275,276,281,282,283,284,285,288,290,291,292,293,294,295,296,298],core_cminstr:260,core_cmx:14,core_o:[14,131],core_path:62,coreconvert:72,coredownload:72,coredump:[7,183],coredump_flash_area:226,coreeras:72,corelist:72,corner:262,corp:[2,256],correct:[1,2,4,42,91,94,101,129,174,223,226,243,247,260,261,262,267,270,273,282,284],correctli:[2,14,90,242,247,256,260,273,281,283],correspo:253,correspond:[12,21,87,90,91,94,129,163,176,180,181,206,207,249,251,254,255,276,282],corrupt:[91,168,180],corrupt_block_test:273,corrupt_scratch_test:273,cortex:[4,102,259,261,267,274,282,288],cortex_m0:62,cortex_m4:[62,94,259,260,261,262,263,267,288],cortex_m:256,cost:9,could:[14,21,90,99,180,198,251],couldn:[228,249],count:[14,56,82,90,99,100,129,130,180,227],counter:[86,90,224,267],countri:22,coupl:[1,14,262,282],cours:[14,280],cover:[8,62,135,180,226,227,236,243,253,270],cpha:191,cpol:191,cpptool:12,cpu:[14,86,94,96,135,182,183,190,243,256,260,270],cputim:[14,25,87,284,288],cputime_geq:87,cputime_gt:87,cputime_leq:87,cputime_lt:87,crank:282,crash:[65,79,81,82,83,98,129,132,192,194,238,264],crash_test:[7,132,238,264],crash_test_newtmgr:[238,264],crc16:180,crc:[7,131,137,281],creat:[1,2,3,4,5,6,8,10,11,12,14,23,28,33,35,40,42,44,45,46,47,48,51,56,58,59,60,62,63,67,72,81,82,83,88,91,92,93,96,98,99,100,102,131,135,144,158,160,161,162,167,170,171,173,174,177,180,206,207,209,210,212,213,217,223,224,225,226,233,235,240,242,243,248,253,257,258,275,277,280,286,287,290,293,298],create_arduino_blinki:12,create_mbuf_pool:90,create_path:160,creation:[48,135,237,267,282],creator:[207,208,209,210,212,283,284,286,288],credenti:277,criteria:21,critic:3,cross:[5,6,7,9,97],crt0:49,crti:49,crtn:49,crw:8,crypto:[7,14,256,259,261,263,274,291,292,294],crypto_mbedtl:223,cryptograph:[23,129],cryptographi:23,crystal:26,csrk:28,css:244,cssv6:30,csw:[78,291,294],ctlr_name:67,ctlr_path:67,ctrl:[12,246,284,295],ctxt:[251,252,280,282],cur_ind:252,cur_notifi:252,curi:[250,252],curiou:[3,244],curl:[11,59],curn:[250,252],curr:274,currantlab:[82,83],current:[11,14,25,28,32,40,41,42,45,46,47,51,52,58,59,60,61,72,82,83,84,85,86,87,90,91,92,93,94,98,99,100,101,129,130,131,135,136,137,138,140,141,152,153,158,159,160,161,171,173,180,187,188,191,193,196,207,215,224,225,228,231,235,237,238,241,243,254,256,257,260,262,264,266,267,270,271,275,276,278,284,288],custom:[14,24,72,91,163,181,183,206,226],cvs:[256,262,288,295,296],cwd:12,cycl:[20,22,32,180],cylind:282,daemon:[2,247],dai:[101,215],dap:[2,256,259,263],darwin10:[256,288,295,296],darwin:6,data:[9,14,15,21,22,28,29,31,32,44,49,65,70,81,82,83,85,87,90,91,93,94,97,100,129,130,131,133,134,142,143,144,145,146,147,151,154,158,160,161,163,164,169,170,171,172,173,176,179,189,191,194,205,208,210,213,214,218,220,223,226,227,243,251,252,254,255,270,280,281,290,296,298],data_len:281,data_mod:191,data_ord:191,databas:29,databit:194,databuf:[90,288],datagram:218,datalen:28,datasheet:94,date:[11,69,152,267,273,281],datetim:[7,65,79,81,82,83,131,132,134,238,264,273],datetime_pars:273,daunt:249,daylight:101,dbm:[22,28,30],deactiv:223,deal:[90,93,94,135],deb:[58,61,81,84],debian:[4,6],debug:[1,2,4,5,6,7,14,40,44,48,51,56,58,59,60,63,95,209,210,225,237,241,246,247,256,258,259,260,261,262,263,266,274,281,282,283,284,285,288,291,292,294,295,296],debug_arduino_blinki:12,debug_arduinoblinki:12,debugg:[5,14,39,40,56,58,59,60,62,192,256,259,260,262,263,267,294,295,296],dec:[49,223],decemb:23,decid:[56,86,97,243,270],decim:[23,188],decis:188,declar:[12,92,100,130,184,193,208,220,230,232,240,268,273,275,286,288],decod:[130,215,218],decompress:254,dedic:[88,94,97,215,223,238,240,251,264,268,295,296],deep:183,deeper:[90,237,267,282],def:[7,208,225,226,288],defaultdevic:83,defin:[1,6,14,20,21,22,25,28,29,30,32,35,43,44,48,51,54,62,85,87,88,90,91,93,98,100,129,130,132,134,135,177,178,183,184,186,187,191,206,207,208,210,211,212,213,214,215,221,223,225,226,228,229,231,233,237,240,243,245,247,249,251,257,267,268,270,273,275,276,280,281,282,283,284,287,288,291,293,294,295],defininig:32,defininit:199,definit:[1,12,30,36,38,43,51,62,85,90,91,94,129,215,224,233,247,251,253,275,280],defint:[90,225],del:28,delai:[27,87,101,193,242,243,267,270],deleg:223,delet:[1,6,10,12,28,36,40,46,50,51,56,58,59,60,62,63,154,170,174,180,242,271,286,288],delimit:[51,130],deliv:[85,152],delta:[56,82,237],demo:280,demonstr:[21,27,90,160,167,172,267,284,288],denable_trac:14,denot:90,dep:[1,51,56,62,63,94,131,136,137,152,153,181,182,206,208,215,224,226,238,240,246,258,264,268,273,281,282,283,288],depend:[1,4,6,8,14,21,23,25,28,40,42,50,51,53,56,58,59,60,63,67,85,90,96,102,129,131,152,153,161,180,187,188,191,201,206,208,215,224,226,228,231,233,235,243,246,256,270,273,274,275,278,281,282,284,291,293,294],depict:182,deploi:[44,223,258],deploy:32,deprec:226,depth:[4,96],dequeu:[88,240,268],deriv:[21,180],desc:[177,178,252],descend:[129,170],describ:[1,2,7,10,11,12,25,29,34,64,91,93,94,95,97,100,129,130,133,141,147,152,174,180,187,189,191,192,200,205,207,208,209,215,223,225,226,233,237,238,244,246,248,253,254,260,263,264,267,275,281,282,283,284,286,290],descript:[1,7,10,14,20,28,29,31,56,62,90,94,95,96,130,137,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,167,168,169,170,171,172,173,177,178,198,199,201,202,203,204,205,206,207,208,211,212,216,217,218,219,220,221,222,224,225,226,228,229,230,231,232,237,267,271,273,275,276,281,282,296],descriptor:[17,18,28,29,62,161,162,175,177,178,180,251],design:[22,23,24,56,97,98,101,129,174,180,215,223,235,243,253,270,273],desir:[87,90,99,193,208,273,278],desktop:10,destin:[4,14,32,90,157,164,167,172,180,188,199,206],detail:[1,10,12,14,22,23,30,56,93,100,129,130,153,174,188,191,207,208,209,211,212,223,237,238,246,249,251,253,254,255,256,264,267,275,288,295,296],detect:[21,56,91,141,153,174,177,178,192,218,225,226,247],determin:[21,88,90,91,100,129,141,180,193,215,223,226,236,249,252,275,286],determinist:14,dev:[1,2,3,4,7,8,10,11,12,14,49,62,67,83,131,135,136,208,209,226,236,237,241,242,246,247,250,256,258,259,260,261,262,263,266,267,274,275,276,277,281,282,283,284,286,288,291,292,294,298],dev_found:247,develop:[3,5,6,7,8,9,13,14,21,56,60,62,83,90,91,93,95,96,97,100,133,135,210,213,215,226,236,241,243,247,248,251,254,256,257,259,262,263,266,270,275,276,281,282,287,290,294,295,296,298],devic:[3,4,8,9,15,20,21,22,23,26,29,30,32,33,44,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,97,129,131,133,134,135,136,137,153,175,182,184,187,188,191,210,211,212,213,223,224,225,226,227,238,245,246,248,249,250,251,253,254,255,256,258,259,260,261,262,263,264,267,274,280,282,287,288,291,292,293,294,295,296,298],device_id:184,deviceaddr:24,deviceaddrtyp:24,dflt:200,dhcp:274,dhkei:21,diag:194,diagram:[133,243,260,262,270],dialog:[12,60,296],dictat:[11,63],did:[14,223],diff:281,differ:[4,6,7,8,11,12,21,25,28,31,46,56,58,81,85,90,92,93,94,95,96,97,100,130,135,174,182,187,194,208,223,224,225,226,230,238,240,241,243,246,247,258,259,260,262,264,266,268,270,271,273,274,275,276,278,281,284,286,288,294,296],differenti:[90,275],difficult:[22,96,129,225],dig:[7,248],digit:[23,135,187,282],dioxid:280,dir:[28,137,153,155,156,157,162,163,165],direct:[10,21,28,188,215,224,276],direct_addr:[254,255],directli:[7,8,11,15,19,37,153,193,194,206,223,226,254,256,271,273,274,283,286],directori:[1,4,6,7,8,10,11,12,14,35,36,38,42,44,46,51,56,58,60,61,81,83,84,89,94,95,96,135,137,155,156,157,160,161,162,165,166,167,168,170,172,173,190,192,233,237,242,246,247,256,257,259,260,261,262,263,273,274,275,276,281,282,283,284,288,290,291,293,294,296,298],dirent:[137,155,156,157,162,163,165],dirnam:[155,156,157,162,165],dirti:237,disabl:[6,14,21,23,25,31,86,87,131,152,180,187,191,194,206,208,209,215,223,225,226,238,252,264,271,274,282,283,284,285,288,295],disable_auto_eras:136,disallow:[21,174],disbl:215,disc_mod:[252,281],discard:[180,274],disciplin:247,disclaim:[7,11,56,246],disconnec:28,disconnect:[28,252],discontigu:129,discov:[14,23,28,29,247],discover:[14,28,30,134,213,249,287],discoverable_mod:249,discoveri:[14,29,133,135,137,247,252,257],discret:[174,175],discuss:[10,90,95,208,223,249,284],disjoint:21,disk:[7,129,141,153,154,168,170,174,175],disk_nam:153,disk_op:137,disk_regist:[137,153],dispatch:[93,226,240,268],displai:[1,6,14,23,28,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,62,63,65,67,70,72,73,74,77,78,81,82,83,130,135,182,226,247,262,267,283,285,290,291,294],displayonli:28,displayyesno:28,dist:[58,81],distanc:[22,224],distinct:23,distinguish:14,distribut:[1,4,6,21,22,28,56,102,129,275,281,282],distro:6,div0:68,dive:90,divid:[19,21,68,130,132,174,175,223],dle:28,dll:[259,261,267,282],dm00063382:237,dma:135,dndebug:51,dnrf52:94,do_task:224,doc:[4,6,7,10,24,34,64,244,256,260],docker:[3,7,256,298],dockertest:2,document:[1,4,8,12,15,19,21,24,26,60,63,65,94,98,102,138,152,153,163,181,182,184,223,233,237,241,243,248,251,253,254,255,256,259,261,266,270,273,274,275,284,288,291,292,295,296],doe:[7,14,21,23,36,51,62,67,72,88,90,91,93,94,95,100,101,129,130,131,133,135,141,158,162,170,171,174,175,177,180,188,191,196,206,208,209,211,221,224,225,226,238,240,241,243,246,249,256,259,260,261,263,264,266,267,268,270,271,277,288,293],doesn:[8,14,21,33,98,129,137,158,170,171,223,228,242,243,246,247,249,270],doing:[14,89,101,135,243,251,258,270],domain:2,don:[1,10,14,32,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,88,90,130,138,141,164,172,237,251,253,254,255,275,281,282],done:[6,7,8,14,24,26,56,82,92,93,94,101,129,131,141,142,161,162,176,195,196,212,229,230,232,237,238,241,243,247,253,254,255,256,259,260,261,264,266,267,270,274,282,288,295,296],dont:295,doorbel:56,dop:153,doubl:[2,200,262],doubli:180,doubt:[14,253],down:[1,12,62,81,83,187,223,238,260,262,264,294],downgrad:[6,7],download:[1,2,4,7,10,12,14,30,40,42,43,56,59,60,61,71,72,82,83,84,153,196,244,246,247,256,259,260,261,262,263,273,274,277,288,290,291,292,294,295,296],doxygen:[4,7,89,256,260],doxygengroup:89,dpidr:263,dpkg:[58,61,81,84],drag:21,drain:25,draw:25,drive:[9,14,62,101,135,188],driver:[7,56,136,137,153,182,186,187,189,191,193,194,208,210,212,224,246,256,259,260,261,262,263,274,284,288,294,295],drop:[12,14,27,180,194,260,262,294],dsc:251,dsize:90,dst:[14,46,51,71,90,172,185,199],dsym:[56,62],dtest:51,due:[14,21,91,129,136,141,152,192,256,260,262],dummi:180,dump:[14,130,295],dumpreg:284,duplex:22,duplic:[28,90],durat:[14,20,28,31,101,251,284],duration_m:[254,255],dure:[14,21,23,72,86,94,98,100,129,131,162,180,197,208,223,226,233,243,246,251,258,270,283,286],duti:[22,32],dwarf:62,dylib:4,dynam:[89,91],e407:[262,294],e407_:262,e407_devboard:[54,262,294],e407_devboard_download:262,e407_sch:294,e761d2af:[280,282],e_gatt:253,eabi:[4,7,12,94,102,256,288,295,296],each:[1,2,10,11,12,14,20,21,22,23,24,29,33,44,49,50,51,62,63,65,67,74,78,88,90,91,93,94,99,101,129,131,135,155,156,157,162,163,165,167,174,175,176,180,182,187,206,207,209,210,211,212,213,215,219,220,223,224,226,238,240,243,251,252,253,254,255,256,264,268,270,273,275,284,286,287,288,298],ead:153,eager:3,earlier:[10,31,58,59,60,81,82,83,130,170,251,254,255,281,282,295],eas:136,easi:[1,2,3,8,9,135,182,188,224,225,228,244,259,282,283],easier:[14,25,94,281],easili:[9,172,210,226,288],east:101,eavesdropp:20,ecdsa256:129,ecdsa:129,echo:[12,14,61,65,79,81,82,83,84,131,132,134,238,264,274,291,292,294],echocommand:12,eclips:12,ectabl:[254,255],edbg:[2,256],eddyston:[28,257],eddystone_url:[28,30],edg:187,edit:[7,95,152,237,242,267,271,275,286],editign:244,editor:[60,62,237,242,260],ediv:28,edr:[21,30,247],edu:[259,295],ee02:267,eeprom:136,effect:[99,101,130,153,174,175,282],effici:[14,22,32,90,91,180,256],effort:282,eid:254,eight:[133,169],einval:87,eir:30,eir_len:247,either:[1,4,6,8,11,14,22,28,30,31,58,60,62,81,85,86,88,90,91,100,130,131,132,138,141,167,187,188,191,192,223,226,228,231,232,238,254,255,264,267,281,282,290],elaps:[21,87,101],electron:298,element:[40,54,56,58,59,60,90,91,100,129,130,140,141,142,143,146,148,149,180,200,215,243,270],elev:92,elf:[7,12,35,39,49,56,62,72,223,237,238,246,247,250,256,258,259,260,261,262,263,264,267,273,274,281,282,284,288,291,292,294,295,296],elfifi:72,elicit:223,els:[24,86,98,129,155,156,157,162,165,180,209,223,280,281,282,295],elsewher:[248,251,275],emac:281,email:[3,236,298],emb:136,embed:[1,3,4,12,14,40,56,58,59,60,102,129,174,191,236,237,256,262,288,295,296],emit:[56,62],emploi:22,empti:[51,90,100,141,168,180,226,231,245,253,273],emptiv:9,emul:[267,274,286],enabl:[1,8,9,25,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,63,74,77,78,79,88,94,130,131,132,133,135,136,152,182,187,191,195,206,208,209,210,212,213,214,220,225,226,237,240,241,246,249,252,257,265,266,268,272,279,280,281,282,286,290,293,295,296,298],enc:[199,201,202,204],enc_chang:252,encapsul:22,encod:[7,52,130,131,133,134,201,202,203,204,213,215,219,267,273,283,287,288],encoding_cborattr:223,encoding_tinycbor:223,encompass:[15,21],encount:[7,14,21,58,90,130,151,180,243,270],encourag:135,encrypt:[21,23,28,31,174,250,252],encrypt_connect:21,end:[9,21,29,31,56,90,129,141,159,169,171,180,188,205,226,235,245,246,267,281],endian:[24,62,90,129,191,267],endif:[220,224,226,234,235,258,273,281,282,288],energi:[9,22,23,90,257,298],english:129,enjoi:282,enough:[56,90,97,101,129,157,196,199],enqueu:[90,193],ensur:[11,12,22,60,90,94,98,101,102,157,182,188,223,224,225,226,238,240,241,243,247,251,257,264,266,268,270,274,275,276,284,287,290,293],entail:223,enter:[12,23,48,94,215,221,222,224,243,256,258,260,270,284,288],entir:[2,14,90,91,94,129,174,175,180,243,253,270,281],entireti:172,entiti:[44,248],entri:[14,21,23,73,130,141,142,143,146,149,151,155,156,157,162,165,172,174,175,180,205,209,215,220,223,253,285],enumer:[129,184,192,207],environ:[3,4,9,12,14,56,59,60,62,83,97,102,135,191,235,247,292],eof:[58,81],ephemer:254,epoch:101,equal:[14,30,73,90,180,206,225,226,228],equat:30,equival:[47,62,136,161,182,282,298],eras:[14,72,129,136,137,141,150,174,175,178,180,185,256,260,261,262,267,282],erase_sector:262,err:[98,160,205,209,218,219,224,280,282],error:[1,2,4,6,7,21,22,27,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,81,83,87,90,92,93,94,98,99,130,136,137,154,155,156,157,158,160,161,162,164,165,167,168,169,170,171,172,173,174,177,178,179,183,187,188,191,193,194,209,223,226,249,251,252,253,256,259,260,262,263,267,273,274,276,280,281,282,283,286,288,294],error_rsp_rx:[77,238,264],error_rsp_tx:[77,238,264],error_stat:224,escap:[274,281,288,295],especi:[14,101],essenti:[44,62,226,243,270],establish:[21,28,79,238,240,249,250,252,259,261,264,267,268,282],estim:90,etc:[1,14,22,25,27,37,44,58,81,90,91,93,96,97,129,133,135,182,183,194,198,243,245,252,270,282],ethernet:[135,182],etyp:282,eui:267,eul:284,euler:284,ev_arg:[85,88,98,131],ev_cb:[85,88,90,131,240,268],ev_queu:88,eval:[261,282],evalu:[12,87,101,225,226,261,267,275,282],evalut:101,even:[4,10,14,87,90,97,129,152,180,194,200,212,223,280,282,286],event:[14,21,25,26,28,85,90,93,98,100,131,135,206,212,215,217,224,226,238,243,247,249,250,254,255,264,269,270,280,282,286,288,298],event_q:282,event_queu:131,eventq:[90,280,282],eventq_exampl:[240,268],eventu:[4,100,101,180,281],ever:[90,91,129,141],everi:[1,14,33,62,98,99,100,135,151,180,191,252,254,256,258,276,288],everyon:[10,243,270],everyth:[1,94,98,130,223,243,270,273,274,281],evq:[85,88,90,217],evq_own:88,evq_task:88,exact:[97,129,187,193,224],exactli:[90,94,99,158,171,226],examin:[193,249,251,292],exampl:[1,2,3,6,7,9,12,14,23,24,25,26,31,32,56,58,59,60,61,62,63,65,81,83,84,86,90,91,92,94,95,97,98,99,100,101,102,129,131,134,153,174,175,181,184,187,188,189,206,208,209,210,211,215,220,223,224,236,237,238,243,245,247,248,252,256,258,260,264,267,270,273,274,275,276,277,283,284,285,286,287,288,291,292,294,295,296,298],example1:90,example2:90,exce:[180,216,220,295],exceed:21,except:[7,52,88,129,224,249,254,255,281,282],excerpt:[131,207,208,209,220,225,226,251,253,286],exchang:[15,22,23,28,29],excit:[7,237,246],exclud:[52,129,223,284],exclus:[23,92,99,207],exe:[12,60,61,83,84],exec:14,exec_write_req_rx:[77,238,264],exec_write_req_tx:[77,238,264],exec_write_rsp_rx:[77,238,264],exec_write_rsp_tx:[77,238,264],execut:[1,2,7,11,12,14,31,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,68,81,83,86,88,91,93,94,97,100,102,134,137,138,140,191,196,217,226,231,233,234,238,243,249,251,252,253,254,255,258,264,270,273],exhaust:[21,98,141,180],exisit:28,exist:[2,14,21,25,30,42,47,50,51,72,95,141,147,152,158,160,161,162,167,168,170,171,173,174,177,178,180,187,207,209,214,226,230,242,250,256,259,260,261,262,263,274,276,282,283,285,286,287,288,290,291,293,294,295,296,298],exit:[8,81,259,261,267,282,295],expect:[6,14,21,44,62,85,93,98,130,131,135,223,228,229,230,231,232,243,247,254,255,267,270,273],experi:[14,23,271,284],experienc:14,experiment:100,expertis:275,expir:[85,87,88,193,195,240,268],expire_msec:195,expire_sec:195,expiri:[85,193],explain:[4,12,14,99,238,245,246,247,254,255,257,264,274,276,290,293,298],explan:[35,36,38,39,40,44,45,46,47,48,49,51,52,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,153,249],explanatori:[31,95,254,255],explic:284,explicit:273,explicitli:249,explor:[129,223,251,290],export_func:130,expos:[1,14,15,22,93,134,174,175,176,210,215,226,248,253],express:[24,169,226,228,253,281,282],ext:[12,14,260],ext_bynam:212,ext_bytyp:212,extend:[21,30,31,90,91,285,287],extended_dur:28,extended_period:28,extens:[14,22,31,138,267],extent:[256,288,295,296],extern:[8,12,30,41,94,98,135,136,176,182,187,206,224,233,275,276,295,296],extra:[14,39,43,48,90,135,153,191,241,244,249,266,288,295],extra_gdb_cmd:62,extract:[4,11,59,60,61,83,84,191,237,259],extrajtagcmd:[39,43,48],extrem:9,eyes:228,f401re:54,f411a55d7a5f54eb8880d380bf47521d8c41ed77fd0a7bd5373b0ae87ddabd42:291,f4discoveri:260,f_activ:141,f_active_id:141,f_align:141,f_close:[163,181],f_closedir:[163,181],f_dirent_is_dir:[163,181],f_dirent_nam:[163,181],f_filelen:[163,181],f_getpo:[163,181],f_magic:141,f_mkdir:[163,181],f_mtx:141,f_name:[163,181],f_oldest:141,f_open:[163,181],f_opendir:[163,181],f_read:[163,181],f_readdir:[163,181],f_renam:[163,181],f_scratch:141,f_scratch_cnt:141,f_sector:141,f_sector_cnt:141,f_seek:[163,181],f_unlink:[163,181],f_version:141,f_write:[163,181],face:223,facil:[20,102,233,240,268],fact:[14,136,275],factor:9,factori:263,fail:[14,21,43,58,81,90,98,141,144,161,162,174,180,228,229,230,232,246,252,259,260,263,267,273,275,282,295],fail_msg:228,failov:223,failur:[21,85,90,98,100,101,129,130,137,142,143,144,146,147,149,150,151,153,154,155,157,158,160,161,164,167,168,169,170,171,172,173,177,178,179,183,187,188,191,193,194,195,216,218,219,220,228,234,235,251,252,253,273],fair:90,fairli:[25,56,62,90,99],fall:[97,102,187,298],fallback:28,fals:[91,223,225,228],famili:[4,102,136,152,247],familiar:[3,12,226,237,238,245,246,248,264,282,288,295,298],famliar:281,fanci:100,faq:[11,13],far:[246,288],fashion:[93,141,180,237],fast:14,fat2n:[7,62],fatf:[7,137,152,153],fault:131,favorit:[237,242],fcb:[7,130,142,143,144,145,146,147,148,149,150,151,206],fcb_append:[141,143,144],fcb_append_finish:[141,142],fcb_append_to_scratch:142,fcb_entri:[141,142,143,146,151],fcb_err_nospac:142,fcb_err_novar:146,fcb_getnext:141,fcb_init:141,fcb_log:206,fcb_rotat:[141,142],fcb_walk:141,fcb_walk_cb:151,fda_id:180,fe80:295,fe_area:[141,146,151],fe_data_:141,fe_data_len:[141,146,151],fe_data_off:[141,146,151],fe_elem_:141,fe_elem_off:141,feat:282,feather:14,featur:[1,3,11,14,20,21,31,91,97,100,141,153,174,215,223,226,236,249,267,284,290],feedback:[237,242,257,282],feel:3,femal:294,fetch:[1,12,14,41,58,81,238,240,241,247,257,264,266,268,275,276,281,290,293],few:[1,6,14,15,22,26,32,56,62,91,94,95,224,246,251,254,267,273,282,298],ffconf:152,ffffffff:262,ffs2nativ:[7,62],fhss:22,ficr:24,fictiti:[275,276],fie_child_list:180,field:[14,21,28,85,86,90,94,129,131,176,188,201,203,207,208,209,215,220,223,224,226,249,251,253,254,255,275,276,282,284,286],fifo:141,figur:[90,129,130,141],file:[1,2,4,6,7,10,11,12,35,37,38,42,44,47,49,51,56,58,59,60,61,62,65,71,72,81,82,83,84,95,96,97,102,129,130,131,135,174,184,187,189,196,206,207,208,211,212,215,223,225,226,231,233,237,238,240,242,244,246,247,253,256,258,259,260,262,263,264,267,268,271,273,274,275,277,280,281,282,284,292,296],file_nam:62,filenam:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,71,72,94,152,157,161,163,167,170,174,180,223,247],filesystem:[56,130,152,196],fill:[10,49,96,100,130,141,142,144,146,147,183,199,200,246,251,254,255,273,281,282],filter:[2,14,23,28,31,73,256],filter_dupl:14,filter_polici:14,find:[1,2,3,14,21,29,35,56,62,89,90,95,97,130,147,182,212,224,225,230,236,237,246,247,256,259,260,263,274,288,291,294,295,296,298],find_info_req_rx:[77,238,264],find_info_req_tx:[77,238,264],find_info_rsp_rx:[77,238,264],find_info_rsp_tx:[77,238,264],find_type_value_req_rx:[77,238,264],find_type_value_req_tx:77,find_type_value_rsp_rx:77,find_type_value_rsp_tx:77,fine:[9,14,254,255],finish:[4,99,100,142,180,194,267,281],fip:22,fire:[85,193,195,243,250,270,288],firmwar:[129,153,238,259,261,264,267,274,282,295,296],first:[2,3,6,8,12,14,22,23,30,34,58,59,60,61,64,83,84,85,88,90,91,92,94,100,101,102,129,130,141,169,174,175,180,181,184,191,198,200,212,215,223,226,237,238,243,245,248,249,250,251,253,254,255,257,258,264,267,270,274,280,281,282,284,288,290,293,298],fit:[4,90,101,172,180,249,250,271],five:[21,22,23,158,171,238,264],fix:[6,11,14,91,101,129,277],fl_area:142,fl_data_off:142,flag:[1,6,12,14,28,30,56,58,59,60,62,63,65,81,82,83,90,95,100,129,161,223,241,247,251,253,266,280,282,284,291,294],flash0:153,flash:[1,9,14,40,44,49,56,58,59,60,62,96,97,130,135,142,143,147,153,175,177,178,181,182,186,187,189,196,206,223,226,238,256,260,261,262,264,267,271,282],flash_area:[141,151],flash_area_bootload:[94,129,177,178,225,226],flash_area_image_0:[94,129,177,178],flash_area_image_1:[94,129,177,178,226],flash_area_image_scratch:[94,129,177,178,225],flash_area_nff:[177,178,225,226],flash_area_noexist:225,flash_area_read:[141,146,151],flash_area_reboot_log:[225,226],flash_area_to_nffs_desc:[177,178],flash_area_writ:[141,142],flash_area_x:141,flash_id:[136,183,185],flash_map:[7,130,177,178,183,225,226],flash_map_init:226,flash_own:[225,226],flash_spi_chip_select:187,flash_test:[7,131],flat:[90,200,206],flavor:256,flexibl:[90,97,236,249,275,276],flicker:14,flight:90,float_us:283,flood:32,flow:[22,131,194,247,254,255],flow_ctl:194,fly:191,fmt:131,focu:[243,270],folder:[4,10,12,34,56,60,64,242,259],follow:[1,2,3,4,6,7,8,11,12,14,20,21,22,24,25,27,28,30,31,32,33,38,39,44,51,52,56,58,59,60,61,62,65,67,68,72,73,74,78,79,81,82,83,84,90,92,94,95,97,99,100,101,102,129,131,132,134,135,136,137,141,153,161,168,169,170,174,175,176,180,181,182,188,190,191,201,203,206,207,208,209,210,212,213,223,224,225,226,228,229,230,231,232,233,237,238,240,241,242,243,246,247,248,249,251,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,270,273,274,275,276,277,280,281,282,283,284,285,286,287,288,290,291,293,294],foo:130,foo_callout:130,foo_conf_export:130,foo_conf_set:130,foo_val:130,footer:[129,258],footprint:[9,133,135],fop:166,fopen:161,forc:[42,50,53,90,223],forev:[88,92,99,100,161,162,235],forgeri:23,forget:[81,161,162,237,280,282],fork:10,form:[1,20,23,24,27,67,90,100,180,226,251,252,254,267,273,275],formal:[7,21],format:[8,30,51,67,69,72,73,90,130,131,133,152,153,174,177,178,198,199,200,207,224,226,228,231,247,254,258,274,275,276,284,291,294],former:180,formula:[3,61,84],forth:[130,200],fortun:56,forver:28,forward:[14,101,249],found:[1,14,21,34,56,64,91,94,149,174,180,200,247,252,253,254,256,260,262,294],foundat:[4,22,32,133,256,262,275,281,282,288,295,296],four:[20,23,48,129,169,173],fraction:[101,273],frame:[215,218,219,243,267,270],framerwork:132,framework:[22,29,98,133,207,213,214,233,234,247,283,284,285,288,289,290],frdm:54,free:[2,4,74,89,90,91,141,180,216,220,223,250,252,256,262,288,292,295,296],freebsd:102,freed:[90,91,180],freedom:[252,254,255],freq_hz:193,frequenc:[14,22,25,87,94,98,101,135,182,190,193,195,224,243,267,270],frequent:[10,14,20,22,23,98,254,255,288],freshli:90,friend:32,friendli:[14,135],from:[1,4,6,7,8,9,10,11,12,14,20,21,23,24,27,28,31,32,33,36,37,39,40,42,44,45,46,47,48,50,51,52,56,57,61,62,63,65,66,67,69,70,71,72,73,74,77,78,80,84,85,86,87,88,89,90,91,93,94,95,96,97,100,101,102,129,130,132,133,134,136,137,138,140,141,147,153,154,155,156,157,161,162,163,164,165,167,169,170,172,177,178,180,181,183,187,188,191,193,194,196,199,200,206,207,208,209,210,211,212,213,214,215,217,218,223,224,225,226,228,229,230,232,233,235,237,238,240,241,243,245,246,247,248,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,270,273,274,275,276,281,282,284,288,290,291,292,294,295,296],front:[90,180],fs_access_append:161,fs_access_read:[154,161,164,169],fs_access_trunc:[158,161,167,170,171],fs_access_writ:[158,161,167,170,171],fs_cli:7,fs_cli_init:216,fs_close:[158,161,164,167,169,170,171,172,173],fs_closedir:[137,162],fs_dir:[153,155,156,157,162,163,165],fs_dirent:[7,153,155,156,157,162,163,165],fs_dirent_is_dir:[155,157,162,165],fs_dirent_nam:[137,155,156,162,165],fs_eaccess:168,fs_ecorrupt:[168,177,178],fs_eempti:168,fs_eexist:[166,168,173],fs_eful:168,fs_ehw:168,fs_einval:168,fs_enoent:[137,155,156,157,162,165,167,168],fs_enomem:168,fs_eo:168,fs_eoffset:168,fs_eok:168,fs_eunexp:168,fs_euninit:168,fs_fcb:223,fs_file:[7,153,154,158,159,161,163,164,167,169,170,171],fs_filelen:171,fs_if:[163,181],fs_ls_cmd:216,fs_ls_struct:216,fs_mkdir:[7,173],fs_mount:7,fs_name:153,fs_nmgr:7,fs_op:[166,181],fs_open:[154,158,164,167,169,170,171,172,173],fs_opendir:[137,155,156,157,165],fs_read:[154,161,169,172],fs_readdir:[137,155,156,157,162],fs_regist:181,fs_unlink:160,fs_write:[158,167,173],fssl:[11,59],fsutil:[7,153],fsutil_r:153,fsutil_w:153,ftdichip:247,fulfil:251,full:[1,7,8,14,21,22,29,31,49,56,94,129,130,136,142,157,161,167,168,180,183,196,206,215,223,225,226,238,242,246,249,252,253,258,264,281,282,284,288,298],fuller:180,fulli:[9,22,129,174,175,180,223,246,255,275,276,282],fun:[237,281],func:[90,98,100,130,188,193,195],fundament:[1,298],funtion:200,further:[6,94,98,188],furthermor:[93,129,174,175,180,223,243,254,255,270],fuse:56,futur:[85,90,180,188,207,215,226,267,275,276,277],fyi:14,g_bno055_sensor_driv:209,g_bno055stat:209,g_led_pin:[242,243,258,270],g_mbuf_buff:90,g_mbuf_mempool:90,g_mbuf_pool:90,g_mystat:224,g_nmgr_shell_transport:218,g_os_run_list:86,g_os_sleep_list:86,g_stats_map_my_stat_sect:224,g_task1_loop:258,gain:[92,99,181,246,282],gap:[19,20,21,22,31,180,248,251,253,281,282,283],garbag:141,gatewai:267,gatt:[14,15,19,22,28,31,32,33,248,251,253,281,282,283],gatt_acc:251,gatt_adc_v:282,gatt_co2_v:280,gatt_co2_val_len:280,gatt_svr:[253,280,282,284],gatt_svr_chr_access_gap:[251,253],gatt_svr_chr_access_sec_test:[253,280,282],gatt_svr_chr_sec_test_rand_uuid:[253,280,282],gatt_svr_chr_sec_test_static_uuid:[253,280,282],gatt_svr_chr_writ:[280,282],gatt_svr_register_cb:253,gatt_svr_sns_access:[280,282],gatt_svr_svc:[251,253,280,282],gatt_svr_svc_adc_uuid:282,gatt_svr_svc_co2_uuid:280,gatt_svr_svc_sec_test_uuid:[253,280,282],gaussian:22,gavin:59,gc_on_oom_test:273,gc_test:273,gcc:[4,7,58,102],gcc_startup_:94,gcc_startup_myboard:94,gcc_startup_myboard_split:94,gcc_startup_nrf52:[94,259,261,288],gcc_startup_nrf52_split:[259,261,263,267,288],gdb:[4,7,12,14,39,48,62,63,94,243,246,256,258,259,260,262,263,270,282,288,295,296],gdb_arduino_blinki:12,gdbmacro:7,gdbpath:12,gdbserver:6,gear:102,gen:[28,31],gen_task:[240,268],gen_task_ev:[240,268],gen_task_prio:[240,268],gen_task_stack:[240,268],gen_task_stack_sz:[240,268],gen_task_str:[240,268],gener:[1,11,14,16,17,18,19,20,21,22,24,28,29,30,32,35,36,44,56,62,63,88,90,91,92,94,100,129,137,174,175,187,200,223,225,229,230,232,237,238,241,242,243,244,246,247,249,250,253,254,255,256,257,258,259,260,261,262,263,264,266,267,270,273,274,275,280,281,282,284,288,291,294,295,296],get:[2,4,6,7,8,9,10,11,14,24,56,57,59,60,61,62,65,77,80,82,83,84,86,88,90,91,92,93,94,96,97,98,99,100,101,129,130,134,135,141,151,158,161,164,167,172,180,183,187,191,193,200,207,211,213,223,226,228,237,240,242,243,245,247,249,251,253,254,255,256,257,259,260,262,263,266,267,268,270,273,274,280,281,282,287,288,294,298],gettng:271,gfsk:22,ggdb:6,ghz:[22,274],gist:[135,187],gister_li:211,git:[11,56,59,81,82,83,102,256,274,275,276,277],github:[1,7,10,11,34,56,58,59,60,64,81,82,83,102,184,237,256,274,275,276,277,281,282,290],githublogin:277,githubpassword:277,githubusercont:[11,58,59,60,81,82,83],give:[14,56,187,223,237,243,246,254,255,267,270,275,276,281,282],given:[12,14,21,43,85,87,88,90,91,97,100,101,129,137,140,146,147,153,183,187,191,193,194,200,207,211,212,243,270,276],glanc:249,glibc:58,global:[1,30,63,90,91,92,176,206,207,209,224,233,251],gmt:101,gnd:[8,267,282,284,294],gnu:[3,4,12,14,39,48,256,260,262,263,288,295,296],goal:[56,102,293],gobjcopi:6,gobjdump:6,gobl:82,goe:[14,62,233,273],going:[14,97,130,223,254,258,281,282],golang:[11,60,83],gone:250,good:[7,9,14,23,56,92,94,98,129,152,223,246,249,255,267],googl:[254,290],gopath:[11,58,59,60,61,81,82,83,84],got:[14,280,281,282],govern:[281,282],gpg:[58,81],gpio:[8,14,97,135,189,191,194,240,268],gpio_ev:[240,268],gpio_l:[240,268],gpl:[4,256,260,262,263,288,295,296],gplv3:[256,262,288,295,296],gpo:182,gpregret:14,grab:89,gracefulli:235,graduat:282,grain:9,grant:92,granular:101,graph:[1,51,63],graviti:284,great:[8,22,129,225,242,282],greater:[22,30,90,180,225],greatest:[129,180],green:[2,10,12,256,260,261,274,284,291],grid:56,ground:[282,284],group:[2,21,77,132,135,215,224,226,238,264,267],grow:[54,243,270],guarante:[14,90,91],guard:93,guid:[7,8,11,12,19,60,63,65,83,209,210,226,238,240,243,248,253,255,264,268,270,271,273,275,291,294],guinea:244,gyro:284,gyro_rev:284,gyroscop:[207,284],h_mynewt_syscfg_:226,hack:[7,9,12,14,237,242,282],had:[90,93,129,223],hal:[1,7,9,14,49,56,62,87,96,135,136,177,178,181,182,188,191,193,194,209,240,246,256,260,262,268,282,284,288,298],hal_bsp:[7,14,94,135,186,208,256,259,260,262,286],hal_bsp_core_dump:183,hal_bsp_flash_dev:[94,136,183,186],hal_bsp_get_nvic_prior:183,hal_bsp_hw_id:183,hal_bsp_init:[183,208],hal_bsp_max_id_len:183,hal_bsp_mem_dump:183,hal_bsp_power_deep_sleep:183,hal_bsp_power_off:183,hal_bsp_power_on:183,hal_bsp_power_perus:183,hal_bsp_power_sleep:183,hal_bsp_power_st:183,hal_bsp_power_wfi:183,hal_common:[7,246,260,262],hal_debugger_connect:192,hal_flash:[7,94,136,153,183,186,256,260,262],hal_flash_align:185,hal_flash_eras:185,hal_flash_erase_sector:185,hal_flash_init:185,hal_flash_ioctl:185,hal_flash_read:185,hal_flash_writ:185,hal_gpio:[7,137,184,187,240,268],hal_gpio_init_in:187,hal_gpio_init_out:[100,187,240,242,243,258,268,270],hal_gpio_irq_dis:187,hal_gpio_irq_en:[187,240,268],hal_gpio_irq_handler_t:187,hal_gpio_irq_init:[187,240,268],hal_gpio_irq_releas:187,hal_gpio_irq_trig_t:187,hal_gpio_irq_trigg:187,hal_gpio_mode_:187,hal_gpio_mode_in:187,hal_gpio_mode_nc:187,hal_gpio_mode_out:187,hal_gpio_mode_t:187,hal_gpio_pul:187,hal_gpio_pull_down:187,hal_gpio_pull_non:187,hal_gpio_pull_t:187,hal_gpio_pull_up:[187,240,268],hal_gpio_read:187,hal_gpio_toggl:[100,187,240,242,258,268],hal_gpio_trig_both:187,hal_gpio_trig_fal:187,hal_gpio_trig_high:187,hal_gpio_trig_low:187,hal_gpio_trig_non:187,hal_gpio_trig_ris:[187,240,268],hal_gpio_writ:[14,184,187,243,270],hal_i2c_begin:188,hal_i2c_end:188,hal_i2c_init:188,hal_i2c_master_data:188,hal_i2c_master_prob:188,hal_i2c_master_read:188,hal_i2c_master_writ:188,hal_i2c_prob:188,hal_i2c_read:188,hal_i2c_writ:188,hal_os_tick:[190,259,288],hal_reset_brownout:192,hal_reset_caus:[192,286],hal_reset_cause_str:192,hal_reset_pin:192,hal_reset_por:192,hal_reset_reason:192,hal_reset_request:192,hal_reset_soft:192,hal_reset_watchdog:192,hal_rtc:152,hal_spi:[137,191],hal_spi_abort:191,hal_spi_config:191,hal_spi_data_mode_breakout:191,hal_spi_dis:191,hal_spi_en:191,hal_spi_init:[137,191],hal_spi_lsb_first:191,hal_spi_mod:191,hal_spi_mode0:191,hal_spi_mode1:191,hal_spi_mode2:191,hal_spi_mode3:191,hal_spi_moden:191,hal_spi_msb_first:191,hal_spi_set:[136,191],hal_spi_set_txrx_cb:191,hal_spi_slave_set_def_tx_v:191,hal_spi_tx_v:191,hal_spi_txrx:191,hal_spi_txrx_cb:191,hal_spi_txrx_noblock:191,hal_spi_type_mast:191,hal_spi_type_slav:191,hal_spi_word_size_8bit:191,hal_spi_word_size_9bit:191,hal_system:192,hal_system_clock_start:192,hal_system_reset:192,hal_system_restart:192,hal_system_start:192,hal_tim:[87,193],hal_timer_cb:[87,193],hal_timer_config:193,hal_timer_deinit:193,hal_timer_delai:193,hal_timer_get_resolut:193,hal_timer_init:[14,193],hal_timer_read:193,hal_timer_set_cb:193,hal_timer_start:193,hal_timer_start_at:193,hal_timer_stop:193,hal_uart:281,hal_uart_blocking_tx:194,hal_uart_clos:194,hal_uart_config:[194,281],hal_uart_flow_ctl:194,hal_uart_flow_ctl_non:[194,281],hal_uart_flow_ctl_rts_ct:194,hal_uart_init:194,hal_uart_init_cb:[194,281],hal_uart_par:194,hal_uart_parity_even:194,hal_uart_parity_non:[194,281],hal_uart_parity_odd:194,hal_uart_rx_char:194,hal_uart_start_rx:194,hal_uart_start_tx:[194,281],hal_uart_tx_char:194,hal_uart_tx_don:194,hal_watchdog_en:195,hal_watchdog_init:195,hal_watchdog_tickl:195,hal_xxxx:182,half:[17,18,94,101],halfwai:129,halgpio:187,halsystem:192,halt:[93,190,191,256,260,262],haluart:194,hand:[223,237,243,270,273],handbook:[259,263],handi:[14,94,282],handl:[14,18,21,28,29,31,62,90,102,135,136,137,153,154,155,156,157,161,162,165,170,171,172,173,180,206,210,211,215,238,240,250,251,252,264,268,280,282,288],handler:[14,88,93,94,132,187,211,213,216,218,220,221,240,243,268,270,280,282,283],happen:[9,14,21,27,130,141,180,250,253,254,255,256,274,276],happi:[7,9],har:294,hard:[98,131],hardcod:[26,28],hardwar:[2,3,5,6,7,9,14,21,22,25,26,32,35,87,94,96,97,129,135,174,175,180,183,184,185,186,187,188,190,192,193,194,195,209,223,226,240,243,246,247,254,255,256,258,259,260,261,268,270,271,274,275,281,288,298],harm:129,has:[2,3,4,7,10,11,12,14,21,23,25,27,31,35,37,44,51,56,58,59,60,62,63,78,81,82,83,86,87,88,89,90,91,93,94,97,98,99,100,129,130,131,133,135,139,141,153,154,166,170,174,180,187,188,191,193,194,196,209,211,223,224,226,233,235,238,241,243,244,251,252,253,256,258,259,260,264,266,267,270,273,274,275,276,280,281,282,287,288,295,296,298],hash:[35,38,44,47,72,129,180,223,241,266,291,294],have:[1,2,3,6,7,8,9,10,11,12,14,20,21,23,25,31,33,44,51,53,55,56,58,59,60,61,62,63,65,81,82,83,84,85,88,90,91,93,94,96,97,98,99,100,102,129,131,133,135,136,138,141,144,174,175,180,182,186,187,193,194,215,221,223,224,225,226,236,237,238,240,241,242,244,245,246,247,250,251,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,273,274,275,276,278,280,281,282,283,284,285,286,287,288,290,291,292,293,294,295,296,298],haven:[3,14,137,236,276,282,298],hci1:247,hci:[14,22,245],hci_adv_param:249,hci_common:[238,264],hdr:[129,228],hdr_ver:198,head:[11,59,81,82,83,88,90,211,244],header:[1,14,38,40,47,56,58,59,60,62,94,129,133,141,142,180,184,187,206,208,226,233,238,258,264,280,281,282],heading1:244,heading2:244,heading5:244,headless:2,health:254,heap:[91,93,94],heart:[243,270],held:275,hello:[12,14,70,158,171,194,238,257,264,274,291,292,294,298],help:[1,8,12,14,32,35,36,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,68,69,70,71,72,73,74,75,76,77,78,81,82,83,93,95,96,101,135,200,220,223,225,243,244,245,246,249,256,258,259,261,267,270,271,273,274,277,281,282,284,288,295,296],helper:[1,62,90,95,136,254,255],henc:[129,236],her:93,here:[1,3,8,10,11,14,30,33,56,74,77,78,85,88,90,91,94,95,98,100,130,131,141,157,158,161,164,172,174,187,191,200,206,207,209,215,223,224,225,226,234,236,237,240,244,247,251,253,254,255,256,258,259,260,263,267,268,273,274,275,276,281,282,292,298],hertz:87,hex:[7,38,44,49,72,188,223,262,267,280,288],hexidecim:67,hfxo:25,hidapi:4,hidraw:4,hierarchi:[153,226,233],high:[9,14,19,22,65,87,99,135,187,240,243,268,270,295],high_duti:28,higher:[11,14,15,21,22,56,59,60,73,81,82,83,92,93,99,100,182,206,212,225,226,236,243,247,270,273,276],highest:[86,92,93,100,225,226,243,270],highli:236,highlight:[2,6,31,102,237,256,259,261,263,274,282,283,288],hint:56,his:93,histori:225,hit:[37,258],hl_line:[208,209],hmac:14,hog:[243,270],hold:[34,44,64,90,91,157,188,199,209,215,237,243,267,270,275,282],hole:[180,282],home:[7,11,60,94,223,246,258,273,277,281],homebrew:[4,6,7,11,37,57,61,80,84],homepag:[1,14,44,62,131,273,281,282],honor:14,hook:[98,262,281,294],hop:[22,135],hope:14,host:[7,9,14,22,23,24,27,30,31,67,71,72,85,88,90,129,213,244,246,247,251,252,253,256,273,274,280,281,282,283,287,288,295,296],hotkei:295,hour:101,how:[2,3,4,5,6,7,8,11,12,14,21,22,24,31,56,58,59,60,61,67,81,82,83,84,90,92,94,97,101,129,130,131,141,147,149,167,174,188,191,201,206,208,209,220,223,224,227,228,231,233,236,237,238,241,242,243,244,245,246,247,250,251,252,254,255,256,257,258,259,260,261,262,263,264,266,267,270,272,273,274,280,281,284,285,287,288,290,291,292,293,294,298],how_to_edit_doc:244,howev:[3,14,58,81,90,97,100,102,129,131,174,180,187,224,241,259,266,275],htm:247,html:[4,34,64,153,256,260,262,288,295,296],http:[1,4,10,11,12,14,34,40,56,58,59,60,62,64,81,82,83,102,131,138,184,237,247,254,256,259,260,262,263,273,275,277,281,282,288,294,295,296],httperror404:[58,81],hub:274,human:[247,275],hw_bsp_nativ:62,hw_drivers_nimble_nrf51:223,hw_hal:56,hw_mcu_nordic_nrf51xxx:223,hypothet:21,i2c:[8,135,136,182,284,285,288],i2c_0:[283,284,285,288],i2c_0_itf_bno:208,i2c_0_itf_li:208,i2c_num:188,i2s:256,i2s_callback:256,i386:[4,6],iOS:[250,280,282,283,285,287,290],ibeacon:[24,246,257,298],icloud:14,icon:[10,12,14],id16:253,id3:[34,64],id_init:226,idcod:256,idea:[14,62,90,92,98,249],ideal:22,ident:[14,19,21,23,24,28,31,67,90,102,134,223,224,233],identifi:[1,8,14,20,21,28,30,35,72,94,100,129,130,180,183,188,254,255,259,261,267,274,282,291,294],idl:[28,78,98,243,246,270,291,294],idx:[28,136,180],ietf:200,if_rw:134,ifdef:[223,226,234,258,288],ifndef:[226,281,282],ignor:[6,14,28,83,91,153,167,174,226,295],ih_flag:129,ih_hdr_siz:129,ih_img_s:129,ih_key_id:129,ih_mag:129,ih_tlv_siz:129,ih_ver:129,iii:129,illustr:[12,90,92,93,129,243,270,282,288],imag:[2,6,7,12,32,35,39,40,43,44,48,56,58,59,60,62,65,79,81,82,83,94,95,97,102,131,132,197,198,199,201,202,204,224,225,236,246,250,256,257,258,265,271,280,281,292,293,295,296,298],image_ec256:[256,259,260,261,262,263,267,274,284,291,292,294],image_ec:[7,256,259,260,261,262,263,267,274,284,291,292,294],image_f_ecdsa224_sha256:129,image_f_non_boot:129,image_f_p:129,image_f_pkcs15_rsa2048_sha256:129,image_f_sha256:129,image_head:129,image_header_s:129,image_mag:129,image_magic_non:129,image_ok:129,image_rsa:[7,256,259,260,261,262,263,267,274,284,291,292,294],image_tlv:129,image_tlv_:129,image_tlv_ecdsa224:129,image_tlv_rsa2048:129,image_tlv_sha256:129,image_valid:[7,256,260,261,263,274,284,291,292,294],image_vers:[129,198,199],img:[14,38,47,72,237,238,241,242,246,247,250,256,259,260,261,262,263,264,266,267,274,281,284,288,291,294,295,296],img_data:205,img_start:192,imgmgr:[7,131,132,153,196,226,238,264,281,282],imgmgr_max_ver_str:199,imgmgr_module_init:226,imgr_list:[201,202,204],imgr_upload:205,imgr_ver_jsonstr:199,immedi:[27,88,94,129,170,180,191,193,244,249,254,255],impact:[25,180],impl:62,implemen:67,implement:[9,10,14,22,33,62,67,88,90,91,94,96,97,129,130,131,132,152,153,174,180,182,184,186,187,188,189,190,191,192,196,200,207,208,210,212,214,215,221,226,233,240,248,251,253,254,267,268,273,282,283,284,288],impli:[14,254,255,273,276,281,282],implicit:273,impos:[129,174,175,180],imposs:[20,176],impract:253,impress:282,improv:258,imuplu:284,inc:[4,256,262,288,295,296],includ:[1,4,7,9,10,14,15,16,17,18,20,21,22,23,27,28,29,32,44,51,60,62,85,88,90,91,92,94,96,97,98,99,100,101,129,130,131,134,135,136,137,139,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,188,191,193,194,196,206,207,208,211,212,213,215,223,225,226,227,233,237,238,240,241,243,247,248,249,251,254,255,259,264,266,268,270,273,275,276,280,281,282,283,284,286,287,288,293,295],include_tx_pow:28,incom:[21,88,194,196,215,216,218,240,268],incompat:[58,81,275],incomplet:[30,94,160],incomplete_block_test:273,incorrect:[43,101],incr:183,increas:[22,23,90,180,215,216,220,226,243,270,295],increasin:141,increment:[90,101,130,180,224],incub:[7,56,184,226,237,282],inde:[93,262],indefini:[254,255],indent:6,independ:[23,97,129,135,182,183,185,187,188,190,192,193,194,195,226],indetermin:273,index:[32,73,129,247],indian:101,indic:[7,14,20,21,27,29,30,31,88,91,94,98,129,131,133,153,159,161,168,180,187,188,193,205,212,215,220,223,225,226,241,251,253,256,259,260,263,266,273,274,288,290],indirect:282,individu:[11,100,129,130,135,187,226,232,238,264,275],industri:[22,152],ineffici:180,infinit:[88,91,93,226,243,258,270],info:[14,40,58,59,60,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,91,100,130,141,142,146,220,241,252,256,260,262,263,266,274,280,282],inform:[1,6,7,12,14,21,23,24,28,30,35,38,40,41,58,59,60,62,63,65,67,72,81,82,83,88,90,91,94,96,97,100,101,129,133,134,146,180,206,207,209,210,220,223,224,226,236,237,240,241,243,246,249,252,253,254,255,256,258,266,267,268,270,275,276,277,281,282,284,288,291,294,296],infrastructur:246,ing:[135,254,255],inher:[1,24,251],inherit:[1,4,60,92,176,207],ininclud:224,init:[51,56,208,212,226,281,282],init_app_task:93,init_func_nam:226,init_funct:226,init_stag:226,init_task:[240,243,268,270],init_tim:[258,288],initi:[14,17,20,22,24,26,27,28,29,62,85,87,88,90,91,92,93,94,98,99,100,130,131,135,139,147,153,168,177,178,179,180,182,183,185,187,188,191,193,194,197,200,204,206,208,211,212,213,215,216,220,233,234,238,240,242,247,248,252,254,255,258,264,268,273,280,281,282,283,284,288],initialis:[209,256],inod:[174,176],inoper:[27,254,255],input:[21,23,28,101,135,182,187,191,240,262,268,273,295],inquiri:[21,30],insert:[100,180],insid:[14,25,90,93,162,183,258,262,273],insight:[135,243,270],inspect:[14,49,129,130,252],instal:[3,7,9,34,40,55,56,64,79,93,94,95,137,211,238,240,241,242,243,245,246,247,256,257,259,260,261,262,263,264,266,268,270,273,274,276,278,281,283,284,285,287,288,290,291,292,293,294,295,298],instanc:[2,3,9,14,28,63,90,176,177,178,180,206,224,249,254,255,256],instant:21,instantan:[243,270],instanti:[93,135],instantli:99,instead:[7,8,11,12,14,25,88,91,99,129,131,223,226,238,240,250,256,258,259,260,261,262,263,264,268,273,277,280,281,282,283,286],instruct:[3,4,7,8,11,56,58,63,81,86,97,238,240,256,259,263,264,268,283,284,285,286,288,292,295,296],insuffici:[21,90,168],insur:[91,100],int16_t:101,int32_max:28,int32_t:[85,101,194,254,255],int64_t:101,int8:130,int_max:90,integ:[14,200,207,224,226],integr:[12,14,23,91,180,188,224,282],intellig:182,intend:[14,25,30,37,177,178,188,236],inter:[180,188,240,268],interact:[2,8,131,133,196,250,258,271,295],interchang:200,interconnect:[9,133],interdepend:[130,226],interest:[7,15,19,90,94,182,223,242,246,249,254,298],interfac:[4,19,22,31,32,90,100,129,134,135,136,137,152,153,182,183,185,187,188,190,191,192,194,195,206,209,210,237,245,247,248,256,260,262,281,284,285,288,294],interleav:14,intermedi:[160,161,167],intern:[7,14,21,90,93,94,98,135,136,141,168,177,178,179,186,193,195,196,200,216,220,256,282],internet:[7,12,22,238,240,241,247,257,264,266,268,274,290,293],interoper:[133,134],interpret:[138,140,207,211],interrupt:[14,86,87,88,94,129,183,187,190,191,193,194],interv:[14,21,28,30,98,100,207,211,212,240,268,284,288],interval_max:28,interval_min:28,intervent:97,intial:220,intiat:94,introduc:[1,31,180,225,226],introduct:[243,270,298],introductori:290,intuit:129,invalid:[21,87,129,137,143,153,154,168,172,173,180,191,193,251,273],invers:[92,99],invert:99,invoc:[6,253],invok:[2,273,277,288],involv:[17,18,20,23,94,97,182,188,273],io_cap:28,ioctl:153,iot:22,iotiv:283,ipsp:22,ipv6:22,irk:[20,28],irq:[14,187],irq_num:183,irq_prio:[136,137],isbuildcommand:12,ism:22,ismylaptop:281,isn:[14,94,180,246],isol:[94,223],isr:14,isshellcommand:12,issu:[1,6,10,31,56,67,93,99,129,133,153,174,180,188,238,259,260,261,263,264,267,278,281,282],ist:101,it_len:129,it_typ:129,ital:244,ite_chr:251,item:[1,88,94,130,181,211,255],iter:[91,100,129,155,156,157,162,165,180,212],itf:209,its:[7,8,10,11,14,19,20,21,56,62,86,88,90,91,92,93,94,97,98,100,129,131,136,141,159,169,172,174,175,180,187,188,191,206,223,224,225,226,228,233,237,241,242,243,244,245,246,249,251,252,253,254,255,266,267,270,275,281,286,292,298],itself:[14,27,62,90,91,100,129,135,139,141,181,196,201,212,226,227,237,259,273,281,282],itvl:14,iv_build_num:129,iv_major:129,iv_minor:129,iv_revis:129,jan:[101,281],javascript:56,jb_read_next:200,jb_read_prev:200,jb_readn:200,je_arg:200,je_encode_buf:200,je_wr_comma:200,je_writ:200,jira:10,jlink:[62,94,241,259,261,266,274,284,288,291],jlink_debug:62,jlink_dev:62,jlinkex:[259,261,267,282],jlinkgdbserv:[288,295],jlinkgdbserverclex:281,job:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,86,93,94,215,251],join:[3,135,236,274,298],json:[7,12,35,38,52,56,62,202,203,204,205,237,238,242,264,273],json_array_t:200,json_attr_t:[200,205],json_buff:[200,205],json_buffer_read_next_byte_t:200,json_buffer_read_prev_byte_t:200,json_buffer_readn_t:200,json_decod:[205,273],json_encod:[199,200,201,202,203,204,273],json_encode_object_entri:[202,203,204],json_encode_object_finish:[201,204],json_encode_object_start:[201,202,203],json_enum_t:200,json_read:200,json_read_object:200,json_simple_decod:273,json_simple_encod:273,json_typ:200,json_valu:[200,201,202,203,204],json_value_int:[200,203],json_value_str:200,json_value_stringn:200,json_write_func_t:200,jtag:[4,39,43,48,256,259,260,262,274,288,294],jul:81,jump0:68,jump:[129,223],jumper:[8,237,262,281,282,294],just:[1,7,8,14,21,23,24,63,85,88,94,95,100,101,129,136,137,152,167,172,223,237,250,251,254,255,256,258,267,277,278,281,282],jv_len:200,jv_pad1:200,jv_type:200,jv_val:200,k30:[280,281],k64f:54,keep:[9,14,23,25,93,129,131,135,141,180,191,208,215,216,220,223,237,242,243,270,273,282],keg:[61,84],kei:[8,20,21,22,32,38,47,58,81,94,129,130,180,199,200,201,203,226,251,267,274,284],kept:[86,129,141],kernel:[1,7,9,14,52,56,62,94,131,135,182,212,223,226,227,240,246,247,268,281,282,283,284,286,288],kernel_o:223,keyboard:[12,23,131],keyboarddisplai:28,keyboardonli:28,keychain:[58,81],keystor:28,keyword:[1,62,95,131,273,275,281,282],khz:[191,256,260],kick:[98,254,255],kilobyt:97,kind:[32,135,281,282,295],kit:[8,48,62,237,241,242,257,259,266,281,282,295,296,298],klibc:102,know:[1,8,12,14,31,62,131,207,211,224,225,243,251,252,254,255,257,258,270,274,281,282,293,298],known:[22,56,101,161,162,180,243,249,270],kw41z:14,l13:259,l2cap:22,lab:33,label:[8,94,262,282],lack:[141,152,223],lag:253,languag:[11,12,56,97,138,281,282],laptop:[3,8,237,238,240,242,247,264,267,268,282],larg:[21,25,32,90,100,101,223,224,243,270],large_system_test:273,large_unlink_test:273,large_write_test:273,larger:[14,32,90,228],largest:[90,244],las_app_port:267,las_app_tx:267,las_join:267,las_link_chk:267,las_rd_app_eui:267,las_rd_app_kei:267,las_rd_dev_eui:267,las_rd_mib:267,las_wr_app_eui:267,las_wr_app_kei:267,las_wr_dev_eui:267,las_wr_mib:267,last:[14,21,27,73,78,90,91,98,100,129,149,180,194,202,207,215,220,226,249,253,254,255,256,267,274,282,284,286,288],last_checkin:[78,291,294],last_n_off:149,last_op:188,last_read_tim:209,latenc:28,later:[7,8,14,73,85,90,129,233,242,246,252,256,267,273,282,288,295,296],latest:[1,2,4,7,11,14,50,53,56,57,61,80,84,130,237,256,274,275,276,281,282],latex:[174,180],latter:[21,90,133,174],launch:12,launchpad:4,law:[256,281,282,288,295,296],layer:[9,21,22,90,91,96,97,135,153,163,166,174,181,194,209,210,226,240,248,268,282,298],layout:[97,129,175,294],lc_f:208,lc_pull_up_disc:208,lc_rate:208,lc_s_mask:208,ld4:260,ldebug:[14,225],ldflag:51,ldr:262,le_elem_off:146,le_scan_interv:14,le_scan_window:14,lead:[90,93,252,282],leadingspac:90,leak:[161,162],learn:[7,27,62,237,242,257,290],least:[23,90,98,129,180,191,193,238,258,264,267,282,298],leav:[90,136,149,223],led1:[240,261,268],led2:[240,268],led3:[240,268],led:[1,7,14,62,94,97,100,135,182,187,238,240,243,247,256,257,258,259,260,261,262,263,264,268,270,274,282,284,291,294,298],led_blink_pin:[94,100,242,243,258,270],led_blink_pin_1:242,led_blink_pin_2:242,led_blink_pin_3:242,led_blink_pin_4:242,led_blink_pin_5:242,led_blink_pin_6:242,led_blink_pin_7:242,led_blink_pin_8:242,led_pin:242,left:[87,91,100,146,199,223,262,280,288,298],legaci:[14,31,152,226,243,270],len:[90,130,136,141,142,163,164,171,172,173,188,191,200,205,251,267,281],length:[21,22,28,90,94,129,130,131,141,157,158,177,180,183,199,251,267],less:[14,93,102,129,180,253,254,255],lesser:180,lesson:[243,270,298],let:[4,8,56,90,94,206,223,224,237,243,246,248,249,250,251,252,253,254,255,258,262,270,273,275,276,280,281,282,288],level:[1,2,9,14,15,19,21,24,28,30,31,32,33,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,92,94,132,135,136,153,174,175,182,209,225,226,236,250,251,254,255,256,260,267,273,274,276,280,281,282],level_list:73,leverag:[133,135,245,282],lflag:[1,51,62],lib:[1,4,46,54,56,83,102,131,153,181,225,226,281,282],libc6:6,libc:[7,94,102],libc_baselibc:[223,262],libftdi1:4,libftdi:4,libg:49,libgcc:[49,223],libhidapi:4,librari:[1,4,14,49,51,56,59,82,88,90,94,95,97,102,129,131,135,153,161,181,182,196,223,224,233,246,273,275,276,281,282,283],libusb:4,libusb_error_access:260,libusb_open:260,licens:[4,7,11,56,62,102,135,246,256,260,262,263,274,275,281,282,288,295,296],lieu:67,life:[25,254],light:[9,32,182,207,237,240,242,257,260,261,262,263,268,283,284,291,294],lightblu:[250,280,282],lightweight:152,like:[2,3,5,8,12,14,32,56,59,60,63,82,83,90,93,94,97,98,99,102,129,131,135,141,182,188,224,237,242,246,256,260,262,273,275,281,282,283,285,286,288,290,294,295,296],likewis:[63,180],limit:[3,14,21,28,30,100,102,130,136,152,216,220,223,238,249,254,264,281,282,295],limt:224,line:[2,6,7,12,14,37,39,40,48,63,94,102,131,187,224,231,237,242,247,253,258,260,261,275,277,282,283,284,288,295],linear:180,linearacc:284,lines_queu:131,link:[2,3,7,14,21,22,23,28,35,39,43,61,62,82,84,86,90,180,193,215,223,226,233,236,237,246,247,250,255,256,258,259,260,261,262,263,267,274,281,282,284,288,291,292,294,295,296,298],linker:[1,62,95,102,223,246,262],linkerscript:[62,94],linux:[5,7,9,12,57,67,79,80,136,241,247,256,258,259,260,262,263,266,274,284,291,292,293,294],liquid:282,lis2dh12:[208,288],lis2dh12_0:[208,288],lis2dh12_cfg:208,lis2dh12_config:208,lis2dh12_data_rate_hn_1344hz_l_5376hz:208,lis2dh12_fs_2g:208,lis2dh12_init:208,lis2dh12_onb:288,list:[3,6,7,8,12,14,23,28,30,35,36,49,51,52,54,58,60,62,67,72,73,74,76,77,78,79,81,86,88,90,91,94,95,96,100,129,131,132,135,137,180,181,193,206,215,224,226,228,231,236,237,241,242,246,249,252,253,256,257,258,259,260,261,262,263,266,267,275,276,281,282,286,291,292,294,298],listen:[2,14,15,31,32,67,90,207,212,223,249],listener_cb:288,lit:[238,242,243,247,264,270],littl:[6,21,24,90,129,237,242,246,253,267,276,281],live:[135,237,252,253,256,274,275,276],lma:262,lmp:21,load:[2,4,5,7,12,14,35,40,44,48,56,58,59,60,62,94,129,130,192,223,237,240,241,242,243,250,257,258,266,267,268,270,276,280,281,282,295,296],load_arduino_blinki:12,load_arduino_boot:12,loader:[14,44,51,94,129,131,192,256,259,260,261,263,274,284,291,292,294],loc:[142,146,151],local:[1,4,6,7,10,11,21,28,29,37,41,50,56,59,61,72,82,84,95,100,101,244,249,256,274,286],localhost:[67,281,288,295],locat:[1,8,11,20,32,62,90,94,129,141,146,180,188,233,243,253,258,262,270,274,275,281,284,291,292,294],lock:[9,89,93,99,141,207,212,240,268],log:[1,7,10,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,74,75,76,77,78,79,81,82,83,129,132,133,151,160,167,181,182,215,223,225,226,227,237,238,246,256,259,260,262,263,264,271,281,282,286,288,292,295],log_:14,log_cbm_handl:206,log_cbmem_handl:206,log_cli:[215,271],log_console_handl:[206,209],log_debug:206,log_error:209,log_fcb:226,log_fcb_handl:206,log_handl:206,log_info:209,log_init:226,log_level:[51,206,226,241,266,271],log_level_debug:206,log_level_error:206,log_module_bno055:209,log_module_default:206,log_nam:73,log_newmgr:225,log_newtmgr:[51,225,226,238,264],log_nmgr_register_group:226,log_regist:[206,209],log_shel:237,log_syslevel:[206,209],logic:[1,22,24,30,129,175,194,267,281],login:277,loglevel:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83],logxi:82,long_filename_test:273,longer:[3,8,11,14,22,25,91,211,225,247,281,283],longjmp:235,longrange_interv:28,longrange_pass:28,longrange_window:28,look:[8,14,25,56,62,94,96,100,102,129,131,132,188,200,205,223,224,237,242,243,244,249,251,252,253,270,273,276,278,280,281,282,286,288,298],lookup:[212,221,251,288],loop:[14,85,88,93,100,155,156,157,162,165,226,238,243,246,258,264,270,280,282],lora:267,lora_app_shel:267,lora_app_shell_telee02:267,lora_app_shell_telee0:267,lora_mac_timer_num:267,lose:27,loss:[27,30,183],lost:[98,180],lost_found_test:273,lot:[7,14,223,225,249,273,282],low:[9,14,21,22,23,32,87,90,94,99,136,153,182,187,191,192,209,243,251,254,255,256,257,260,270,274,298],lower:[14,21,87,92,93,99,100,225,226,241,243,248,258,262,266,270],lowest:[74,86,91,100,180,226,243,270],lowpow:284,lru:180,lrwxr:[4,82],lsb:188,lst:[35,56,62],ltbase:226,ltd:28,ltk:28,ltk_sc:28,ltrequir:226,lua:[138,139,140],lua_cmd:140,m32:6,m4g:284,mac:[3,5,7,9,12,14,21,56,57,79,80,237,241,242,247,250,256,258,259,260,262,263,266,267,274,280,282,284,291,292,293,294],machin:[2,3,7,8,95,247,298],maco:[4,8,14,67],macro:[14,21,90,91,94,98,200,207,209,224,226,233,243,253,270,273,282],made:[2,10,11,21,56,72,86,100,129,188,243,244,267,270,282],mag:284,mag_rev:284,maggyro:284,magic:[62,129,141,180],magnet:[207,284],magnetomet:209,mai:[2,4,6,7,8,12,14,23,28,30,31,32,52,54,58,59,63,81,82,83,86,88,90,91,93,94,97,102,129,131,133,135,162,180,182,187,188,193,206,207,208,209,211,212,223,224,225,226,228,231,233,238,243,246,247,256,258,259,260,261,262,263,264,267,270,274,275,281,282,284,288,291,294,295],mail:[3,10,135,236,237,242,246,257,282,298],main:[7,12,27,32,58,62,78,81,88,90,93,96,100,129,131,139,177,178,198,207,212,215,217,222,226,232,234,238,240,242,246,249,254,255,256,259,260,261,262,263,264,268,273,280,281,282,284,291,292,294],mainli:223,maintain:[4,50,86,129,135,180,207,212,226,273,275,276],mainten:[133,224],major:[14,56,62,97,198,243,255,270,275,276],major_num:[275,276],make:[1,2,3,7,8,9,14,20,21,22,25,31,32,34,56,58,64,72,86,90,91,94,129,135,141,142,174,180,182,199,206,223,224,237,241,242,243,245,246,247,249,251,252,254,255,256,258,262,266,267,270,273,275,280,281,282,283,288,298],makerbeacon:[238,264],malloc:[89,91,94,102,243,270,282],man:[6,28,102],manag:[6,8,14,17,18,22,28,32,40,46,58,59,60,62,65,67,69,72,73,74,77,78,81,82,83,88,91,93,94,95,97,100,129,131,135,182,197,200,207,209,210,211,223,226,227,241,258,259,266,269,271,274,276,284,288,291,293,294,298],mandatori:[21,94,228,253,254,255],mani:[14,21,32,56,62,90,96,129,141,149,161,162,182,193,251,256,275],manifest:[35,38,44,56,62,237,238,242,264],manipul:[1,40,46,90],manner:[28,30,90,93,129,182],manual:[22,26,61,84,91,93,100,102,174,223,231,237,256,262,288,294,295,296],manufactur:[20,28,30,40,44,58,59,60,67,223,249,256,274],many_children_test:273,map:[2,3,8,21,28,29,62,97,135,136,161,182,186,187,194,200,223,225,226,251,258,274,275,276,284,291,294,295],mar:[101,259,261,267,282,288],march:69,mark:[28,29,72,94,262],marker:94,market:[32,261],mask:[28,207,209,211,212,286,288],mass:[247,260],mass_eras:[259,260],master:[1,7,11,28,57,58,60,61,80,81,83,84,135,182,184,188,191,244,256,274,275,276,282],match:[2,7,14,21,94,95,97,129,211,212,223,256,260,274,275,276],materi:14,matter:10,max:[14,157,199,200],max_cbmem_buf:206,max_conn_event_len:28,max_ev:28,max_len:[157,163,183],max_protohdr:90,maxim:9,maximum:[14,22,28,30,90,129,130,131,174,176,180,183,199,215,216,220,273,295],maxlen:130,mayb:[295,296],mb_crc:281,mb_crc_check:281,mb_crc_tbl:281,mbed:[259,263],mbedtl:[7,256,259,261,263,274,291,292,294],mblehciproj:247,mblen:90,mbuf:[93,200,285],mbuf_buf_s:90,mbuf_memblock_overhead:90,mbuf_memblock_s:90,mbuf_mempool_s:90,mbuf_num_mbuf:90,mbuf_payload_s:90,mbuf_pkthdr_overhead:90,mbuf_pool:90,mbuf_usage_example1:90,mbuf_usage_example2:90,mcu:[7,9,54,95,98,135,136,182,187,190,191,192,193,194,196,237,242,243,256,259,270,274,282,288],mcu_dcdc_en:14,mcu_gpio_porta:136,mcu_sim_parse_arg:[258,288],mcuboot:14,mdw:262,mean:[2,12,14,21,90,92,98,99,100,101,129,136,176,191,202,204,226,235,253,260,276],meaning:[139,194],meant:[1,98,130],measur:[9,243,267,270],mechan:[1,23,93,223,226,240,268,275,277,281,282],medic:[22,56],medium:[14,168],meet:[208,241,247,256,257,259,260,261,262,263,266,284,286,287,288,290,291,292,293,294],mem:[7,226],member:[85,88,90,91,92,98,99,100,101,130,131,188,191,193,249,251,282],membuf:91,memcmp:90,memcpi:251,memori:[9,21,49,74,88,89,90,93,94,97,98,102,129,133,135,136,152,168,174,175,179,180,182,183,185,188,216,220,225,238,240,243,251,262,264,267,268,270,271,292,295],mempool:[65,81,82,83,90,91,215],memset:[208,249,252,255,282],mention:[12,180,207,282],menu:[12,60,260,262,294],merchant:4,merci:91,merg:244,mesh:33,messag:[2,4,23,32,43,58,59,60,76,131,133,134,167,215,218,219,228,240,256,260,267,268,274],messi:282,messsag:63,met:[21,238,240,264,268,274],meta:[8,274,284],metadata:[14,44,129,168],meter:22,method:[26,90,100,134,174,184,187,191,206,215,224,251,275],mfg:[7,14,40,58,59,60,71,226],mfg_data:[14,30],mfg_init:226,mgmt:[7,131,133,191,197,215,225,226,238,264,281,282],mgmt_evq_set:[238,264],mgmt_group_id_config:132,mgmt_group_id_crash:132,mgmt_group_id_default:132,mgmt_group_id_imag:132,mgmt_group_id_log:132,mgmt_group_id_runtest:132,mgmt_group_id_stat:132,mgmt_imgmgr:223,mgmt_newtmgr_nmgr_o:223,mgutz:82,mhz:[22,25],mib:[56,82,267],mic:21,micro:[14,56,241,243,256,257,259,261,262,266,267,270,274,282,284,290,291,293,294,295,296],microcontrol:[9,102,129,262,294],microsecond:[25,87,101],microsoft:12,mid:[15,129,260],middl:[28,129,180,282],might:[1,2,14,19,21,62,94,97,130,131,135,180,182,188,209,223,225,246,248,249,254,255,256,260,275,276,278,288,295,296],migrat:[180,226],milisecond:28,millisecond:[28,101,267],millivolt:282,min:[73,74,129,274,292],min_conn_event_len:28,mind:[14,98,246],mine:280,mingw32:60,mingw64:60,mingw:[4,7,8,12,57,83,258,274,284,291,294],mini:260,minicom:[8,258,274,284],minim:[94,135,152,153,174,180,209,246],minimum:[28,30,73,90,91,129,180,246],minor:[198,255,275,276],minor_num:[275,276],minu:90,minut:[82,101,254,273],mip:[7,62],mirror:[1,10,11,275,281,282],misc:284,mislead:6,mismatch:[21,90],miso:191,miso_pin:[136,137],miss:[14,21,58,94,225,237,242,246,257,282],misspel:225,mitm:28,mk64f12:[135,182],mkdir:[11,44,81,83,94,237,256,259,260,261,262,263,267,274,275,281,282],mkdir_test:273,mkdoc:244,mkr1000:272,mkr1000_boot:274,mkr1000_wifi:274,mlme:267,mman:58,mmc0:[137,153],mmc:152,mmc_addr_error:137,mmc_card_error:137,mmc_crc_error:137,mmc_device_error:137,mmc_erase_error:137,mmc_init:137,mmc_invalid_command:137,mmc_ok:137,mmc_op:[137,153],mmc_param_error:137,mmc_read_error:137,mmc_response_error:137,mmc_timeout:137,mmc_voltage_error:137,mmc_write_error:137,mn_socket:7,mobil:32,mod:[31,250,281],modbu:281,mode:[9,14,21,23,28,30,135,159,161,168,169,171,182,183,187,191,194,209,223,249,256,260,262,273,284],model:[14,22,23,33,88,196,259],modern:[8,152],modif:[11,237,273,283],modifi:[6,63,90,94,101,134,193,242,243,270,281,282,287,290],modul:[73,87,91,93,102,133,138,206,216,220,222,258,267,294],module_list:73,module_nam:[220,222],modulo:101,moment:[14,136,188,196,251,276],mon:[256,259,260],monitor:[90,131,133,141,213,224,262,283,290,298],monolith:253,month:273,more:[1,4,7,9,10,12,14,21,22,23,30,31,35,36,40,44,52,54,58,59,60,62,63,65,81,82,83,86,88,90,93,94,99,100,101,102,129,130,135,142,146,153,164,165,180,191,194,200,206,207,208,209,210,215,223,226,228,241,242,243,246,249,253,254,255,256,258,259,266,267,270,273,274,276,280,281,282,284,288,291,294,295,298],moreov:[14,281],mosi:191,mosi_pin:[136,137],most:[1,8,14,15,20,22,24,25,26,62,90,94,95,100,102,129,180,184,191,223,225,243,249,270,273,280,282,284,286,288],mostli:[6,9,223,254,255],motor:9,mou:244,mount:[166,282],mous:[135,182],move:[8,46,58,59,60,82,86,93,101,129,167,183,223,258,262,282,283,285,288],mp_block_siz:91,mp_flag:91,mp_membuf_addr:91,mp_min_fre:91,mp_num_block:91,mp_num_fre:91,mpe:91,mpool:[220,267,281],mpstat:[65,79,81,82,83,132,134,238,264,292],mq_ev:90,mqeueue:90,ms5837:14,msb:188,msdo:94,msec:[14,28,195],msg:231,msg_data:28,msp:[256,262],msy:60,msys2:57,msys2_path_typ:60,msys64:60,msys_1:[74,292],msys_1_block_count:[283,285],msys_1_block_s:[283,285],mtd:136,mtu:[14,21,28,29,250],mu_level:92,mu_own:92,mu_prio:92,much:[14,90,94,99,102,147,180,281],multi:[1,9,51,63,97,100,188],multilib:[6,7,58],multipl:[4,14,24,28,30,35,36,51,52,56,85,92,93,98,102,130,133,135,182,191,212,226,249,253,254,275],multiplex:[14,22],multiplexor:97,multipli:[91,243,270],multitask:[93,243,270],must:[1,2,4,5,7,8,9,11,12,15,23,25,26,34,38,42,47,54,56,58,60,62,64,67,69,72,81,86,87,88,90,91,93,94,97,98,100,129,130,131,137,141,149,153,160,161,163,167,174,175,176,177,179,180,181,188,191,193,194,198,199,200,206,207,208,209,211,212,213,215,216,217,220,224,225,226,234,237,238,241,243,246,249,251,258,261,262,264,266,267,270,274,275,276,282,284,285,286,287,288,291,294,295],mutex:[89,93,99,100],mutual:92,my_at45db_dev:136,my_blinki:51,my_blinky_sim:[7,35,36,44,56,62,246,247,259,260,281],my_blocking_enc_proc:21,my_callout:[240,268],my_conf:130,my_config_nam:226,my_driv:[281,282],my_ev_cb:[240,268],my_eventq:[238,264],my_gpio_irq:[240,268],my_interrupt_ev_cb:[240,268],my_memory_buff:91,my_new_target:51,my_newt_target:51,my_packag:206,my_package_log:206,my_pool:91,my_proj1:246,my_proj:246,my_project:[1,256,274,275,282],my_protocol_head:90,my_protocol_typ:90,my_result_mv:282,my_sensor:288,my_sensor_devic:288,my_sensor_poll_tim:288,my_stack_s:100,my_stat:224,my_stat_sect:224,my_target1:63,my_task:100,my_task_evq:90,my_task_func:100,my_task_handl:90,my_task_pri:100,my_task_prio:100,my_task_rx_data_func:90,my_task_stack:100,my_timer_ev_cb:[240,268],my_timer_interrupt_eventq:[240,268],my_timer_interrupt_task:[240,268],my_timer_interrupt_task_prio:[240,268],my_timer_interrupt_task_stack:[240,268],my_timer_interrupt_task_stack_sz:[240,268],my_timer_interrupt_task_str:[240,268],my_uart:194,myadc:282,myapp1:295,myapp:224,myapp_cmd:221,myapp_cmd_handl:221,myapp_console_buf:131,myapp_console_ev:131,myapp_init:131,myapp_process_input:131,myapp_shell_init:221,mybl:[35,36,47,51,67,74,77,78,238,264],myble2:[38,39,247],myblehostd:67,mybleprph:[67,241,266],mybletyp:67,myboard:[46,94],myboard_debug:94,myboard_download:94,mycmd:222,myconn:[238,264],mycor:72,mydata:90,mydata_length:90,mylora:267,mymcu:96,mymfg:71,mymodul:98,mymodule_has_buff:98,mymodule_perform_sanity_check:98,mymodule_register_sanity_check:98,mynewt:[1,3,4,5,6,10,11,13,21,22,26,31,33,38,39,40,44,45,51,52,54,56,57,58,60,61,62,63,72,79,80,81,83,84,85,87,88,89,98,99,100,101,102,129,133,134,135,152,153,174,181,182,183,184,187,188,191,194,206,209,215,217,223,224,225,226,227,233,236,237,238,240,241,243,245,247,248,250,254,255,256,257,258,259,260,261,262,263,264,266,267,268,270,271,273,274,276,281,282,284,287,288,291,292,293,294,295,296,298],mynewt_0_8_0_b2_tag:[275,276],mynewt_0_8_0_tag:275,mynewt_0_9_0_tag:275,mynewt_1_0_0_b1_tag:275,mynewt_1_0_0_b2_tag:275,mynewt_1_0_0_rc1_tag:275,mynewt_1_0_0_tag:275,mynewt_1_3_0_tag:[58,60,81,83],mynewt_arduino_zero:[256,274,275],mynewt_nord:282,mynewt_stm32f3:237,mynewt_v:[215,220,224,226,273,282],mynewt_val_:226,mynewt_val_log_level:226,mynewt_val_log_newtmgr:226,mynewt_val_msys_1_block_count:226,mynewt_val_msys_1_block_s:226,mynewt_val_my_config_nam:226,mynewtl:283,mynewtsan:76,myperiph:[241,250,266],mypool:91,myproj2:223,myproj:[2,7,12,94,237,241,242,256,258,259,260,261,262,263,266,275,281,283,284,288,296],myriad:9,myself:14,myseri:[74,77,78],myserial01:67,myserial02:67,myserial03:67,mytarget:14,mytask:[243,270],mytask_handl:[243,270],mytask_prio:[243,270],mytask_stack:[243,270],mytask_stack_s:[243,270],myudp5683:67,myvar:66,n_sampl:284,nad_flash_id:175,nad_length:175,nad_offset:175,nak:188,name1:51,name2:51,name:[1,2,4,7,8,10,11,12,14,21,22,28,30,35,36,38,39,43,44,45,46,48,49,51,52,54,56,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,91,94,95,96,98,100,101,102,130,131,135,153,155,156,157,160,161,162,165,181,182,187,199,200,201,203,205,206,207,208,209,210,212,216,220,221,222,223,225,229,230,232,237,238,240,243,246,249,251,253,254,255,256,258,259,260,261,262,263,264,268,270,273,274,275,276,277,281,282,283,284,285,288,291,292,294,295],name_is_complet:249,name_len:[155,156,157,162,165,249],namespac:[89,215,254],nano2:[44,54,94,263],nano2_debug:[94,263],nano:[257,298],nanosecond:[87,193],nativ:[2,3,7,12,44,51,54,56,60,62,67,130,191,225,226,237,240,247,259,260,268,274,281,282,292,298],natur:[94,180],navig:[10,298],nb_data_len:180,nb_hash_entri:180,nb_inode_entri:180,nb_prev:180,nb_seq:180,nbuf:90,nc_num_block:176,nc_num_cache_block:176,nc_num_cache_inod:176,nc_num_fil:176,nc_num_inod:176,ncb_block:180,ncb_file_offset:180,ncb_link:180,nci_block_list:180,nci_file_s:180,nci_inod:180,nci_link:180,nda_gc_seq:180,nda_id:180,nda_length:180,nda_mag:180,nda_ver:180,ndb_crc16:180,ndb_data_len:180,ndb_id:180,ndb_inode_id:180,ndb_magic:180,ndb_prev_id:180,ndb_seq:180,ndi_crc16:180,ndi_filename_len:180,ndi_id:180,ndi_mag:180,ndi_parent_id:180,ndi_seq:180,nding:253,ndof:284,ndof_fmc_off:284,nearest:259,nearli:14,neatli:249,necessari:[6,25,40,48,58,59,60,90,129,153,180,235,237,246,251,256,267,273,282],need:[4,5,6,7,8,9,10,11,12,14,15,24,25,33,44,51,53,56,58,59,60,61,62,65,67,81,82,84,85,86,89,90,91,92,93,94,96,97,98,99,100,129,131,136,141,142,143,153,180,192,195,206,207,209,210,211,212,215,221,223,224,225,226,231,238,240,241,243,246,247,249,251,252,253,254,255,256,258,259,260,261,262,263,264,266,268,270,273,274,276,277,280,281,282,283,285,288,291,292,294],neg:[90,101,180,253],neither:90,ness:191,nest:[92,160],net:[4,7,14,25,52,213,226,246,247,251,253,274,281,282,283,285,287],net_nimble_control:223,net_nimble_host:223,network:[1,9,14,24,28,32,33,56,90,93,223,243,267,270,274],never:[20,93,98,100,167,180,226,243,246,251,270],nevq:88,new_bletini:46,new_pool:90,new_slinki:46,newer:6,newest:[141,225,243,270],newli:[1,10,20,44,129,161,247,254,255,275],newlib:102,newlin:131,newt:[1,3,5,6,7,13,33,57,62,63,74,77,78,81,82,83,84,93,94,95,97,135,223,224,225,226,233,237,239,240,241,242,243,245,246,247,250,254,255,256,257,258,259,260,261,262,263,265,266,267,268,270,271,273,274,275,276,277,278,281,282,283,284,285,286,288,290,291,292,293,294,295,296,298],newt_1:[58,61],newt_1_1_0_windows_amd64:61,newt_1_3_0_windows_amd64:60,newt_group:2,newt_host:2,newt_us:2,newtgmr:[82,83,84],newtmgr:[1,7,9,13,58,59,60,64,65,79,80,131,132,134,196,206,218,219,223,225,226,240,268,281,282,293,298],newtmgr_1:[81,84],newtmgr_1_1_0_windows_amd64:84,newtmgr_1_3_0_windows_amd64:83,newtmgr_shel:215,newtron:[153,181,225,226],newtvm:11,next:[7,8,25,31,72,78,83,86,90,91,100,129,131,133,141,146,155,156,157,162,165,180,196,200,207,211,212,223,226,235,241,242,243,244,246,249,253,254,255,256,259,262,266,270,276,280,281,282],next_checkin:[78,291,294],next_t:86,nff:[7,102,136,153,175,176,177,178,179,181,189,225,226,233,273],nffs_area_desc:[14,174,177,178,228],nffs_area_mag:180,nffs_area_max:[177,178],nffs_block:180,nffs_block_cache_entri:180,nffs_block_cache_list:180,nffs_block_mag:180,nffs_cache_block:180,nffs_cache_block_list:180,nffs_cache_inod:180,nffs_close:181,nffs_closedir:181,nffs_detect:[178,180],nffs_detect_fail:[153,174],nffs_dirent_is_dir:181,nffs_dirent_nam:181,nffs_disk_area:180,nffs_disk_block:180,nffs_disk_inod:180,nffs_file_len:181,nffs_flash:189,nffs_flash_area:[14,225,226],nffs_format:[177,180,228],nffs_getpo:181,nffs_hash_entri:180,nffs_id_non:180,nffs_init:[176,177,178,181],nffs_inod:180,nffs_inode_entri:180,nffs_inode_list:180,nffs_inode_mag:180,nffs_intern:174,nffs_mkdir:181,nffs_op:181,nffs_open:181,nffs_opendir:181,nffs_pkg_init:14,nffs_read:181,nffs_readdir:181,nffs_renam:181,nffs_seek:181,nffs_short_filename_len:180,nffs_test:273,nffs_test_debug:273,nffs_test_priv:273,nffs_test_system_01:273,nffs_test_unlink:228,nffs_test_util:273,nffs_unlink:181,nffs_write:181,nhe_flash_loc:180,nhe_id:180,nhe_next:180,ni_filenam:180,ni_filename_len:180,ni_inode_entri:180,ni_par:180,ni_seq:180,nice:[224,280],nie_child_list:180,nie_hash_entri:180,nie_last_block_entri:180,nie_refcnt:180,nie_sibling_next:180,nil:68,nim:253,nimbl:[7,24,25,27,30,67,226,238,241,245,248,249,250,251,252,253,264,266,280,281,282,283,285],nimble_max_connect:14,njb:[201,202,203,204,205],njb_buf:205,njb_enc:203,nlip:218,nmgr:134,nmgr_def_taskstat_read:203,nmgr_err_eok:203,nmgr_jbuf:[201,202,203,204,205],nmgr_o:132,nmgr_shell:[131,226,238,264],nmgr_shell_in:218,nmgr_shell_out:219,nmgr_shell_pkg_init:226,nmgr_task_init:218,nmgr_transport:219,nmgr_uart:[238,264],nmgr_urart_spe:[238,264],nmxact:11,no_of_sampl:284,no_rsp:29,no_wl:[28,31],no_wl_inita:28,node:[14,22,33,56,155,156,157,162,165,180],nodefault:[200,205],nodup:28,nogdb:[39,48],noinputnooutput:28,non:[7,14,19,20,22,25,28,32,33,85,90,91,100,101,130,145,149,151,180,183,187,188,191,192,193,194,216,218,219,220,223,226,254,255,267,275,288],none:[4,7,8,12,21,28,31,83,88,94,102,129,180,217,221,222,223,228,231,237,256,260,267,288,295,296],nonexist:[161,180],nonsens:273,nonzero:[90,142,143,144,146,147,150,151,191,229,230,232,234,235,252,273],nor:23,nordic:[14,24,94,135,182,186,190,192,240,241,259,261,266,268,281,282,284,288,293,298],nordicsemi:[259,261,267,281,282,288],normal:[2,99,180,231,233,280,284],notat:[56,262],note:[1,2,4,6,7,10,11,12,14,22,23,24,25,30,33,44,48,51,58,59,60,61,62,67,69,72,81,82,83,84,86,87,88,90,91,92,93,94,95,100,129,130,131,137,174,188,191,193,196,207,208,209,210,212,215,216,220,223,225,226,237,238,241,243,244,246,247,249,251,253,254,255,256,258,259,260,261,262,263,264,266,267,270,271,274,275,276,277,282,283,284,285,286,288,290,291,292,294,295,298],noth:[11,180,228,254,255,282],notic:[7,11,56,62,93,94,181,223,243,246,270,276,281,282],notif:[10,14,28,29,88,131,211,248,280,282],notifi:[10,29,211,252,253],notnul:226,nov:8,novelbit:14,now:[2,8,9,14,60,85,87,90,91,92,94,99,100,129,152,154,158,161,164,167,169,171,180,187,194,223,237,238,241,242,243,246,248,249,250,252,253,254,255,256,259,264,266,267,270,273,275,280,281,282,284,288,292,295,296],nreset:256,nrf51:[25,54,94,135,182,271],nrf51dk:[54,223],nrf51xxx:190,nrf52840pdk:33,nrf52:[4,25,62,94,135,182,186,192,208,240,241,247,257,258,259,266,267,268,281,283,285,288,293,295,296,298],nrf52_bleprph_oic_bno055:283,nrf52_blinki:[258,261,263,295],nrf52_bno055_oic_test:[283,285],nrf52_bno055_test:[284,286],nrf52_boot:[238,247,261,264,282,283,284,285,291],nrf52_hal:94,nrf52_slinki:291,nrf52_thingi:208,nrf52dk:[38,39,54,62,63,94,226,240,246,247,250,258,261,268,280,281,282,283,284,285,291],nrf52dk_debug:[62,94,258],nrf52dk_download:94,nrf52k_flash_dev:[94,186],nrf52pdk:247,nrf52serial:291,nrf52xxx:[49,94,192,259,288],nrf5x:25,nrf:[26,282],nrf_saadc:282,nrf_saadc_channel_config_t:282,nrf_saadc_gain1_6:282,nrf_saadc_input_ain1:282,nrf_saadc_reference_intern:282,nrf_saadc_typ:282,nrfx:282,nrfx_config:282,nrfx_saadc:282,nrfx_saadc_config_t:282,nrfx_saadc_default_channel_config_s:282,nrfx_saadc_default_config:282,nrpa:[20,254,255],nsampl:284,nsec:87,nth:180,ntoh:90,ntohl:90,ntrst:256,nucleo:54,nul:180,num_block:91,num_byt:185,number:[1,8,9,10,14,23,28,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,84,85,87,88,90,91,92,93,94,99,100,101,102,129,130,140,141,142,152,158,164,169,171,172,173,174,175,176,180,183,187,188,190,191,193,194,196,198,199,200,207,215,216,220,224,225,226,231,238,240,241,243,247,253,254,255,256,258,262,264,266,267,268,270,274,275,276,280,281,282,284,285,291,294,295],numer:[14,21,23,86,94,129],nvm:256,nxp:[14,135,182],objcopi:[6,14],objdump:6,object:[4,11,49,56,62,82,87,93,94,97,100,133,167,200,202,203,204,209,211,212,252,273,284,287],objsiz:[6,49,223],observ:[15,28,213,247,287],obtain:[14,28,90,92,99,100,180,193,275,281,282],obvious:54,oc_add_devic:283,oc_add_resourc:283,oc_app_resourc:[283,285],oc_get:283,oc_if_rw:283,oc_init_platform:283,oc_main_init:[213,283],oc_new_resourc:283,oc_put:283,oc_resource_bind_resource_interfac:283,oc_resource_bind_resource_typ:283,oc_resource_set_default_interfac:283,oc_resource_set_discover:283,oc_resource_set_periodic_observ:283,oc_resource_set_request_handl:283,oc_serv:[213,238,264,283,285,287],oc_transport_gatt:[238,264],oc_transport_ip:[238,264],oc_transport_seri:[238,264],occasion:90,occur:[27,28,90,92,101,187,188,191,225,251,252,254,255],occurr:226,ocf:[133,281],ocf_sampl:[7,62],ocimgr:132,ock:212,octet:[28,30,32,129],od_init:135,od_nam:209,odd:194,odditi:14,off:[2,14,21,22,32,33,85,88,90,97,98,100,131,135,141,182,183,188,205,207,209,210,214,238,240,241,242,246,247,254,255,258,262,264,266,268,283,285,286,287,288,290,298],off_attr:205,offer:[1,22,133,135,152,185,282],offset1:90,offset2:90,offset:[21,29,72,90,94,101,129,141,149,153,159,163,168,169,171,172,173,175,180,200,223,225,226,284],often:[9,56,94,180,188,191],ogf:281,ohm:282,oic:[7,14,52,67,133,210,211,288,298],oic_bhd:67,oic_bl:67,oic_seri:67,oic_udp:67,oic_udpconnstr:67,oicmgr:[7,67,132,133,134],okai:14,old:[46,141],older:[14,60,83,260],oldest:[141,146,150,225],olimex:[257,281,293,298],olimex_blinki:262,olimex_stm32:[54,262,294],om1:90,om2:90,om_data:90,om_databuf:90,om_flag:90,om_len:90,om_omp:90,om_pkthdr_len:90,ome:91,omgr:134,omi_block_s:91,omi_min_fre:91,omi_nam:91,omi_num_block:91,omi_num_fre:91,omit:[14,48,225],omp:90,omp_databuf_len:90,omp_flag:90,omp_len:90,omp_next:90,omp_pool:90,on_reset:27,on_sync:27,onboard:[8,209,210,286,290,295,296,298],onc:[20,30,56,58,62,81,85,87,90,91,92,93,100,129,144,182,191,193,235,237,238,241,242,249,254,257,258,264,266,267,275,281,282],one:[1,4,7,8,10,11,12,14,20,21,22,23,24,28,30,31,32,35,36,40,44,46,51,52,54,58,59,60,62,68,86,88,90,92,93,94,97,99,100,129,130,131,137,138,141,153,166,167,174,175,177,178,180,183,188,191,196,206,207,211,212,221,223,224,225,226,242,243,244,246,247,253,254,255,256,257,258,259,260,261,262,263,267,270,273,274,275,276,277,280,281,282,284,290,291,294,298],ones:[15,90,99,135,182,206,247,298],ongo:28,onli:[1,2,7,8,10,11,12,14,15,20,21,25,28,30,32,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,62,63,67,73,81,84,87,88,90,91,93,94,97,98,99,101,129,130,131,132,135,136,137,139,151,153,155,156,157,159,162,165,166,168,169,174,175,180,188,191,196,206,207,209,210,212,215,220,223,224,225,226,230,231,233,234,236,238,241,242,243,244,249,251,254,256,258,264,266,267,270,271,273,274,275,276,277,281,282,283,284,287,288,292],onlin:[256,288,295,296],onto:[1,21,43,44,48,85,88,90,94,257,259,260,261,262,263,280,281,284,291,294],oob:[14,21,28,30],opaqu:[153,193,206,207,209,211,288],open:[4,8,9,10,12,14,21,22,39,40,48,56,58,59,60,62,97,133,135,153,154,158,159,161,162,164,165,168,169,170,171,172,173,176,180,208,254,256,259,260,262,263,273,281,286,292],open_test:273,openocd:[12,94,256,259,260,262,263,294],openocd_debug:259,oper:[1,9,12,16,19,21,22,27,32,40,58,59,60,85,90,97,98,99,100,101,131,133,135,153,161,162,163,168,170,174,175,179,180,181,182,183,185,187,194,207,212,224,226,227,236,246,247,251,252,253,254,255,256,267,273,274,276,277,280,281,282,284,288],oppos:[32,90,277],opt:4,optim:[1,25,33,38,39,44,51,62,90,94,95,102,135,223,237,243,246,247,250,256,259,260,261,262,263,267,270,274,281,282,284,288,291,294],optimis:32,option:[2,3,4,6,7,8,12,14,23,24,28,37,38,47,52,56,63,67,73,85,86,88,91,94,129,133,135,151,152,198,207,209,210,215,223,225,226,228,233,244,246,247,253,256,260,262,267,274,275,276,281,284,294],orang:[259,263],order:[1,9,14,23,34,56,62,64,86,88,90,91,92,98,100,102,129,130,133,180,191,207,225,226,238,242,243,264,267,270,273,276,278,281,282,288,295,296],org:[1,4,10,11,14,40,58,59,60,62,81,83,102,131,138,254,256,259,260,262,263,273,281,282,288,295,296],organ:[11,135,224,273,275],origin:[11,47,94,129,262],os_align:[90,91],os_arch:[62,91,101],os_bad_mutex:92,os_callout:[62,85,98,130,240,258,268,288],os_callout_func:[85,90],os_callout_func_init:85,os_callout_init:[85,98,240,258,268,288],os_callout_queu:85,os_callout_remaining_tick:85,os_callout_reset:[85,98,240,258,268,288],os_callout_stop:85,os_cfg:62,os_cli:226,os_cputim:[14,62],os_cputime_delay_nsec:87,os_cputime_delay_tick:87,os_cputime_delay_usec:87,os_cputime_freq:25,os_cputime_freq_pwr2:87,os_cputime_get32:87,os_cputime_init:87,os_cputime_nsecs_to_tick:87,os_cputime_ticks_to_nsec:87,os_cputime_ticks_to_usec:87,os_cputime_timer_init:87,os_cputime_timer_num:[25,87],os_cputime_timer_rel:87,os_cputime_timer_start:87,os_cputime_timer_stop:87,os_cputime_usecs_to_tick:87,os_dev:[62,135,207,208,209,286],os_dev_clos:[208,286],os_dev_cr:[135,207,208,209,212],os_dev_init_func_t:[135,209],os_dev_init_primari:208,os_dev_open:[208,282,286],os_einv:[90,101,205],os_eno:130,os_error_t:[86,91,92,99],os_ev:[85,88,90,98,130,131,240,258,268,288],os_event_fn:[85,88,90],os_event_queu:88,os_event_t_mqueue_data:90,os_event_t_tim:85,os_eventq:[62,85,88,90,98,131,217,240,268,280,282],os_eventq_dflt_get:[27,88,93,100,131,226,240,254,255,258,268,286,288],os_eventq_get:[88,98],os_eventq_get_no_wait:88,os_eventq_init:[88,90,98,131,240,268,280,282],os_eventq_pol:88,os_eventq_put:[88,131,240,268],os_eventq_remov:88,os_eventq_run:[27,88,90,93,100,226,240,254,255,258,268,286,288],os_exit_crit:86,os_fault:62,os_get_uptim:101,os_get_uptime_usec:101,os_gettimeofdai:101,os_heap:62,os_init:[87,100],os_invalid_parm:[92,99],os_main_task_prio:[226,243,270],os_main_task_stack_s:226,os_malloc:[62,89],os_mbuf:[62,90,218,219],os_mbuf_adj:90,os_mbuf_append:[90,280,282],os_mbuf_appendfrom:90,os_mbuf_cmpf:90,os_mbuf_cmpm:90,os_mbuf_concat:90,os_mbuf_copydata:90,os_mbuf_copyinto:90,os_mbuf_count:90,os_mbuf_data:90,os_mbuf_dup:90,os_mbuf_extend:90,os_mbuf_f_:90,os_mbuf_f_mask:90,os_mbuf_fre:90,os_mbuf_free_chain:90,os_mbuf_get:90,os_mbuf_get_pkthdr:90,os_mbuf_is_pkthdr:90,os_mbuf_leadingspac:90,os_mbuf_off:90,os_mbuf_pkthdr:90,os_mbuf_pkthdr_to_mbuf:90,os_mbuf_pktlen:90,os_mbuf_pool:90,os_mbuf_pool_init:90,os_mbuf_prepend:90,os_mbuf_prepend_pullup:90,os_mbuf_pullup:90,os_mbuf_trailingspac:90,os_mbuf_trim_front:90,os_mbuf_usrhdr:90,os_mbuf_usrhdr_len:90,os_memblock:91,os_memblock_from:91,os_memblock_get:91,os_memblock_put:91,os_memblock_put_from_cb:91,os_membuf_t:[90,91],os_mempool:[62,90,91],os_mempool_byt:91,os_mempool_clear:91,os_mempool_ext:91,os_mempool_ext_init:91,os_mempool_f_:91,os_mempool_f_ext:91,os_mempool_info:91,os_mempool_info_get_next:91,os_mempool_info_name_len:91,os_mempool_init:[90,91],os_mempool_is_san:91,os_mempool_put_fn:91,os_mempool_s:[90,91],os_mqueu:90,os_mqueue_get:90,os_mqueue_init:90,os_mqueue_put:90,os_msys_count:90,os_msys_get:90,os_msys_get_pkthdr:90,os_msys_num_fre:90,os_msys_regist:90,os_msys_reset:90,os_mutex:[62,86,92,141,207],os_mutex_init:92,os_mutex_pend:92,os_mutex_releas:[86,92],os_ok:[86,92,99],os_pkg_init:226,os_san:[62,98],os_sanity_check:[98,100],os_sanity_check_func_t:98,os_sanity_check_init:98,os_sanity_check_regist:98,os_sanity_check_reset:98,os_sanity_check_setfunc:98,os_sanity_task_checkin:98,os_sch:[62,86],os_sched_get_current_t:[243,270],os_sched_get_current_task:[86,98,243,270],os_sched_next_task:86,os_sched_set_current_task:86,os_sem:[62,93,99,281],os_sem_get_count:99,os_sem_init:[14,93,99,281],os_sem_pend:[14,93,99,281],os_sem_releas:[14,93,99,281],os_sem_test_bas:232,os_sem_test_case_1:232,os_sem_test_case_2:232,os_sem_test_case_3:232,os_sem_test_case_4:232,os_sem_test_suit:232,os_settimeofdai:101,os_stack_align:[243,270,280,282],os_stack_t:[98,100,218,240,243,268,270,280,282],os_start:100,os_stime_t:101,os_sysview:296,os_task:[62,86,88,92,93,98,100,240,243,268,270,280,282],os_task_count:100,os_task_flag_evq_wait:100,os_task_flag_mutex_wait:100,os_task_flag_no_timeout:100,os_task_flag_sem_wait:100,os_task_func_t:[98,100],os_task_info:100,os_task_info_get_next:100,os_task_init:[93,98,100,240,243,268,270,280,282],os_task_max_name_len:100,os_task_pri_highest:100,os_task_pri_lowest:100,os_task_readi:100,os_task_remov:100,os_task_sleep:100,os_task_st:100,os_task_stack_defin:100,os_task_state_t:100,os_test:62,os_test_restart:235,os_tick_idl:[190,256,259,288],os_tick_init:190,os_tick_per_sec:14,os_ticks_per_sec:[14,85,98,101,130,190,209,240,243,258,268,270,280,281,282,288],os_tim:[62,101,273],os_time_adv:101,os_time_delai:[14,100,101,209,240,242,243,268,270,280,282],os_time_get:101,os_time_max:101,os_time_ms_to_tick:101,os_time_ms_to_ticks32:101,os_time_t:[85,88,98,100,101,190,207,209],os_time_tick_geq:101,os_time_tick_gt:101,os_time_tick_lt:101,os_time_ticks_to_m:101,os_time_ticks_to_ms32:101,os_timeout:[92,99,281],os_timeout_nev:[93,101,208,286,288],os_timeradd:101,os_timersub:101,os_timev:[101,273],os_timezon:[101,273],os_wait_forev:[88,93,100,240,243,268,270,280,282],osmalloc:89,ostask:100,ostick:101,osx:[237,242],ota:[238,264],otg1:262,otg2:[262,294],other:[1,6,8,10,11,14,21,23,25,30,32,51,56,62,87,88,90,91,93,94,95,98,99,100,101,129,130,131,135,153,154,162,165,170,174,175,177,180,185,188,206,209,211,215,223,224,226,237,240,243,246,247,248,249,251,252,256,257,258,259,268,270,271,273,275,280,281,282,283,284,285,288,290,295,296],otherwis:[14,90,91,93,100,143,145,148,187,191,275,276],oti:100,oti_cswcnt:100,oti_last_checkin:100,oti_nam:100,oti_next_checkin:100,oti_prio:100,oti_runtim:100,oti_st:100,oti_stks:100,oti_stkusag:100,oti_taskid:100,oui:[20,267],our:[14,21,56,90,94,223,224,237,238,242,243,246,249,254,255,257,258,264,270,273,276,280,282,291,294],our_id_addr:[31,250],our_id_addr_typ:250,our_key_dist:28,our_ota_addr:[31,250],our_ota_addr_typ:[31,250],out:[8,9,11,21,22,23,24,27,28,62,81,82,83,85,90,96,100,129,131,137,141,142,145,147,161,162,174,181,182,183,199,201,202,203,204,223,228,235,246,248,250,254,255,257,262,274,293],out_cpha:191,out_cpol:191,out_data:[163,164],out_dir:[162,163,165],out_fil:[161,163],out_id_addr_typ:31,out_len:[158,163,164,172],out_m:101,out_nam:[137,157,163],out_name_l:157,out_name_len:[157,163],out_off:90,out_tick:101,outdat:59,outfil:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63],outgo:219,outlin:5,output:[1,7,12,14,22,23,28,31,35,36,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,55,58,59,60,63,70,74,76,77,78,82,89,94,100,101,129,182,187,194,206,223,225,228,237,240,256,258,259,260,262,263,267,268,273,274,281,284,288,292,295],outsid:[21,22,90,227],outweigh:90,over:[14,21,22,23,24,28,30,32,66,67,68,69,70,71,72,73,74,75,76,77,78,90,129,134,135,137,141,143,151,188,194,206,223,238,243,251,257,258,260,264,265,267,270,274,280,281,283,284,285,287,290,293,295,298],overal:[10,14,25,90,100,174],overflow:101,overhead:90,overlap:[21,180],overrid:[51,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,94,206,223,224,238,247,264,282],overridden:[24,226,247],overview:[129,284,285,288],overwrit:[6,50,51,60,61,83,84,94,131,180,256,271,274],overwrite_many_test:273,overwrite_one_test:273,overwrite_three_test:273,overwrite_two_test:273,overwritten:[129,173,180],own:[2,11,14,20,21,40,58,59,60,62,88,92,93,97,99,100,136,180,191,206,223,224,244,245,246,282],own_addr_t:[254,255],own_addr_typ:[28,67,254,255,281],owner:[88,92,277],ownership:[92,180,281,282],pacakg:246,pacif:101,pack:[4,56,82,90,241,259,261,266,274,284,288,291],packag:[6,9,11,14,24,25,27,35,40,41,42,44,46,51,52,53,54,56,57,59,60,61,80,84,88,93,95,100,129,130,132,133,135,138,139,153,163,174,182,183,196,197,200,208,209,212,213,214,215,223,224,232,233,234,237,240,247,257,258,259,267,268,272,275,276,282,285,286,287,298],package1:206,package1_log:206,package2:206,package2_log:206,packet:[21,22,28,30,188,215,219,254,267],packet_data:90,pacman:[7,60],pad:[90,129],page:[1,4,5,6,7,8,10,21,23,58,59,61,81,82,84,94,102,136,181,188,189,207,208,209,210,237,242,244,246,248,252,254,255,257,282],page_s:136,pair:[21,22,23,28,67,129,130,180,200,205,226,250,252],pakcag:215,panel:12,paradigm:90,param:[28,215,220,252],param_nam:215,paramet:[1,14,21,27,28,29,31,62,67,73,85,86,87,88,90,91,92,98,99,100,101,130,137,141,151,183,187,188,190,191,193,194,195,206,208,209,215,226,238,249,251,252,253,254,255,264,273],parameter_nam:226,parameter_valu:226,parent:[91,155,156,157,162,165,167,173,180],parenthes:90,pariti:194,parlanc:11,parmaet:28,parmet:[28,29],pars:[56,198,215,228,231,254,273],part:[14,23,30,90,96,129,141,169,174,175,180,181,223,249,250,253,281,282,287],parti:[254,256,274],partial:[65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,129,174,175],particular:[4,14,21,48,62,90,93,94,97,98,129,131,135,153,182,191,193,200,235,252,254,255],particularli:271,partit:[21,94,129,174,180,223],partner:14,pass:[1,7,12,14,21,28,62,85,87,88,90,91,92,98,99,100,130,131,135,136,140,141,151,161,164,172,180,187,188,191,193,194,200,207,208,209,211,215,218,229,230,231,232,249,253,254,255,273,288],passiv:[14,28],passkei:[14,21,23,28],password:[11,59,81,247,277],past:[21,90],patch:[259,260,263],path:[2,4,6,11,12,14,30,51,58,59,60,61,62,67,81,82,83,84,94,95,153,160,161,162,163,167,170,172,173,226,275,281,282],pathloss:30,pattern:[28,94,243,270],payload:[14,90,133,134,188],pc6:294,pc7:294,pca100040:247,pca:[241,261,266,281,282],pcb:281,pci:[135,182],pcmcia:[135,182],pdata:188,pdf:[237,294],pdt:[101,273],pdu:[14,21,28],peek:[243,270],peer:[10,23,29,67,191,241,251,253,254,255,266],peer_addr:[28,31,67,249],peer_addr_typ:[28,31,67,249],peer_id:67,peer_id_addr:250,peer_id_addr_typ:250,peer_nam:[14,67,241,266],peer_ota_addr:250,peer_ota_addr_typ:250,pem:[38,47],pencil:10,pend:[21,85,88,92,99,129,188,241,266],per:[11,14,20,90,92,129,130,174,183,187,191,194,224,243,270,273,276],perfom:129,perform:[3,4,5,9,11,12,14,21,23,26,28,37,58,59,60,65,81,82,83,86,90,91,93,94,98,100,102,129,131,136,152,153,167,180,188,193,212,223,226,237,241,251,256,258,259,266,267,276,280,282,283,284,285,288],perhap:275,period:[9,14,20,23,28,85,98,190,195,240,243,268,270],peripher:[9,14,21,22,25,27,30,31,94,97,135,182,183,188,191,224,241,245,246,249,252,253,254,266,280,281,282],perman:[72,129,180,223,241,249,252,266],permiss:[281,282],permit:[21,253,256,288,295,296],persist:[14,129,152],perspect:223,pertain:252,petteriaimonen:102,phdr:90,phone:[14,23,32],php:56,phy:[22,28],phy_init:282,phy_opt:28,physic:[22,28,30,67,131,184,187,194],pick:[86,93,206,254,255],pictur:[237,259],pid:260,piec:[22,94,281],pig:244,pin:[7,8,21,94,97,100,135,182,184,187,188,191,192,194,207,237,240,258,259,262,267,268,274,281,282,284,288,294],ping:93,pinout:96,pipe:14,piqu:298,pitfal:90,pkcs15:129,pkg1:225,pkg2:225,pkg:[1,7,11,40,44,51,54,56,58,59,60,62,95,96,102,131,135,136,137,152,153,181,182,206,208,215,224,225,226,238,240,246,258,264,268,273,281,282,283,288],pkg_init_func1_nam:226,pkg_init_func1_stag:226,pkg_init_func2_nam:226,pkg_init_func2_stag:226,pkg_init_func:226,pkg_init_funcn_nam:226,pkg_init_funcn_stag:226,pkg_test:234,pkga_syscfg_nam:226,pkga_syscfg_name1:226,pkga_syscfg_name2:226,pkgn_syscfg_name1:226,pkt:281,pkthdr_len:90,pkts_rxd:90,place:[3,56,62,88,101,102,129,141,169,188,191,223,226,233,238,242,243,246,247,253,254,255,262,264,270,276,290],plai:[12,14,22,290],plain:[223,260,276],plan:[2,14,135,215],platform:[2,7,9,11,12,24,25,58,59,60,67,81,82,83,85,93,94,95,97,135,183,188,191,193,227,233,241,243,246,256,258,259,260,262,263,266,270,274,281,282,284,291,292,293,294],pleas:[14,40,58,59,60,95,96,207,211,212,224,237,242,256,257,275,282,288,295,296],plenti:[243,270],plist:62,plu:[90,157,180,188],plug:[8,181,237,262,263,282],plumb:280,pmode:284,point:[2,4,6,14,32,86,90,92,94,96,100,102,129,130,131,135,142,143,144,145,146,148,149,150,151,162,163,165,180,191,207,246,251,252,254,255,282,283],pointer:[68,85,86,87,88,90,91,92,94,99,100,101,130,131,135,141,142,143,151,154,156,157,158,159,161,163,164,169,171,172,173,180,181,183,188,191,193,198,199,200,206,207,208,209,212,215,216,217,220,221,228,243,251,252,270],poke:282,polici:[28,275],poll:[14,88,93,211,284,288],poll_du:284,poll_dur:284,poll_interv:284,poll_itvl:284,poller:[207,211,212,288],pong:93,pool:[74,81,93,267,285,292],popul:[1,7,12,51,63,101,176,180,233,257,274,290,293,298],port:[2,12,67,93,131,135,187,194,206,224,238,247,256,258,259,260,261,262,263,264,274,281,284,288,291,292,293,294,298],portabl:[135,182],portingto:95,portion:[129,147,188,282],posit:[90,101,129,159,169,172,195,262],posix:60,possibilti:[295,296],possibl:[14,22,23,25,28,29,31,33,37,54,90,92,101,129,135,153,174,175,180,182,183,206,223,224,253,275,284,295],post:[50,85,90,135,240,246,268],potenti:[97,223,276],pour:[59,82],power:[2,9,14,21,22,23,28,30,32,56,94,97,131,135,182,183,191,192,209,238,241,247,256,261,262,264,266,267,274,283,284,285,286,288,291,294],ppa:4,pre:[4,9,206,224,275,276,281,282],precaut:251,prece:90,preced:24,precis:[6,21],predict:[243,270],preempt:[92,93,99,100],preemptiv:[93,100,243,270],prefer:[3,28,30,139,241,251,266,281],preference0x01:28,prefix:[62,180,210,226,282],preload:191,prepar:[21,259,261,267,282],prepend:90,preprocessor:[215,224],prerequisit:12,presenc:[94,180,249,254,255,275],present:[1,14,90,94,129,131,180,196,208,223,247,262,273],preserv:90,press:[8,12,14,99,240,243,246,268,270,274,284,296],presum:[90,267],pretti:[14,282],prev:[100,180],prev_ind:252,prev_notifi:252,prevent:[92,93,129,170,251],previ:[250,252],preview:[244,247],previou:[22,57,58,59,60,79,80,81,82,83,100,129,180,192,200,225,226,246,247,258,275,280],previous:[6,12,58,59,60,61,81,82,83,84,191,238,250,264,278,282,284],prevn:[250,252],pri:[78,183,291,294],primari:[28,94,129,133,167,241,253,255,266,280],primarili:102,primary_phi:28,primo:[257,281],primo_boot:259,primo_debug:259,primoblinki:259,print:[49,58,59,60,63,130,131,137,155,156,157,162,165,172,194,215,225,228],print_statu:172,print_usag:198,printabl:199,printf:[102,137,228,231],prio:[98,100,190,218],prior:[23,25,50,90,93,129,167,176,180,191,193,267],prioriti:[14,78,86,88,92,93,99,100,135,174,183,190,226,240,247,268,269,298],priv:28,privaci:[20,22,28],privat:[20,23,33,38,47,58,67,81,129,254,255],privileg:2,prng:14,pro:[14,243,256,259,270],probabl:[7,14,94,248,277,281],probe:[188,259,274,288],problem:[7,99,129,162,223,225],proce:[3,6,11,129,235,256,259,260,261,262,263,273,274,291,294],procedur:[6,11,17,20,21,23,28,29,65,76,81,82,83,129,180,181,223,281,284,287],proceed:[7,248,254,255],process:[3,6,9,10,14,21,23,27,28,32,62,85,86,88,90,94,100,129,131,132,180,212,213,217,223,224,226,237,238,240,243,254,255,264,268,270,281,283,286,287,288,295,296],process_data:170,process_rx_data_queu:90,processor:[4,9,90,100,135,182,183,187,243,256,262,270,288,295,296],produc:[99,129,224,231,260],product:[14,56,97,175,187,210,247,281,294],profil:[15,16,17,18,22,28,29,32,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,246,256,291,293,294],profile01:[66,68,69,70,71,72,73,74,75,76,77,78],profile0:78,program:[4,6,8,12,24,86,129,131,189,192,237,243,256,258,259,261,267,270,274,282],programat:131,programm:[260,295,296],programmat:[138,288],progress:[7,14,21,129,135,136,180,191,245],prohibit:168,project:[3,6,8,11,34,35,40,41,42,45,50,51,53,56,58,59,60,62,64,89,100,102,129,131,136,137,139,152,177,178,182,196,206,224,232,233,240,242,243,244,250,270,273,277,278,283,284,288,289,290,295,298],prompt:[7,8,11,12,48,59,60,94,246,256,258,259,260,261,262,263,284,288],prone:253,proper:[135,281],properli:[25,62,93,98,243,247,251,270,280,282],properti:[12,20,32,60,94,129,134,174,175,180,206,237,248,259],proport:180,propos:10,prot_length:90,prot_tif:90,prot_typ:90,protcol:90,protect:[23,89,129,141],protocol:[14,15,21,22,29,62,67,90,129,133,134,188,285,287,290,293],prototyp:[97,194,226,254,255],provid:[1,2,7,8,9,11,12,14,20,21,22,23,28,31,32,38,40,46,51,58,59,60,67,71,72,73,76,81,85,87,89,90,91,92,93,94,96,97,98,100,101,129,131,135,136,137,141,152,153,174,182,187,188,191,193,198,207,210,212,213,215,224,233,236,238,248,254,255,256,264,267,273,274,275,276,281,282,287],provis:[14,22,33],provision:[14,32],proxi:[22,32],pseln:282,pselp:282,pset:191,psm:[14,28],psp:[256,260],pst:[69,101,273],pth:262,ptr:194,public_id:28,public_id_addr:31,public_target_address:30,publish:[14,23],pull:[11,14,50,81,83,88,90,135,187,240,258,262,268],pulldown:187,pullup:[90,187],purpos:[4,8,14,23,51,56,94,98,129,182,187,206,209,211,223,224,243,251,267,270,282,288],push:[10,14,244],put:[1,2,7,44,62,81,83,88,90,91,92,94,99,100,101,134,183,243,249,254,255,270,273,282],putti:[8,258,274,284],pwd:[2,11],pwm:[9,14],pwr:[260,262],px4:4,python:[34,64],qualifi:251,qualiti:289,quat:284,queri:[9,20,51,56,58,59,60,62,63,90,134,156,157,158,159,172,180,207,209,224,249,284,292],question:246,queu:[21,85,88,194,240,268],queue:[27,62,85,87,90,93,98,99,100,131,180,193,212,215,217,219,226,238,254,255,264,269,280,286,288,290,298],quick:[2,3],quickli:[101,182,243,270,282,284,287,288,290],quickstart:[2,243,270],quiet:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63],quit:[20,94,246,249,254,255,256,259,260,262,263,295],quot:67,r_find_n:212,r_lock:212,r_match_:212,r_regist:212,r_unlock:212,radio:[22,25,247],raff:82,rais:92,ram:[49,94,96,174,183,223,246,256,281,283],ram_siz:94,ran:[14,98],rand:[14,28],random:[20,21,26,28,31,67,247,253,254,255,280,282],random_id:28,random_id_addr:31,randomli:20,rang:[9,21,22,30,90,102,180,198,267],rare:90,rate:[14,67,85,131,212,213,247,267,284,287,288],rather:[14,15,21,94,101,102,129,153,167,223,282],raw:[11,58,59,60,81,82,83,131,174,180,226,228,282],rb_bletini:51,rb_blinki:[44,51],rb_blinky_rsa:44,rb_boot:44,rbnano2_blinki:263,rbnano2_boot:263,rdy:86,reach:[98,193],read:[4,6,7,11,12,15,19,20,21,24,28,29,56,62,65,66,69,74,77,78,81,82,83,88,90,100,129,130,131,135,136,137,141,143,146,147,151,153,154,155,156,157,159,161,162,164,165,169,170,172,180,185,187,188,193,200,205,206,211,212,213,214,226,228,237,238,240,241,243,250,252,253,254,255,256,257,260,263,264,266,267,268,270,273,274,275,280,281,282,283,284,285,287,290,293,295,296],read_acceleromet:288,read_cb:288,read_chr:251,read_config:[154,161,164],read_part1_middl:169,read_rsp_rx:77,read_rsp_tx:77,read_sensor_interv:288,read_test:273,read_type_req_rx:77,read_type_req_tx:[77,238,264],read_type_rsp_rx:[77,238,264],read_type_rsp_tx:[77,238,264],readabl:[247,277],readdesc:7,readdir_test:273,reader:[273,280,282],readi:[10,86,88,100,131,194,200,243,256,270,281,295],readili:135,readm:[7,11,56,62,94,246,273],readnow:62,real:[1,7,9,14,88,93,101,131,180,200,236,240,246,253,268,281,288,295],realist:273,realli:[14,90,282],rearm:85,rearrang:90,reason:[14,21,27,28,90,91,129,192,243,250,252,267,270,273,275],reassembl:22,rebas:11,reboot:[7,14,72,129,192,223,225,241,266,283,285],reboot_log:73,reboot_log_flash_area:[225,226],reboot_start:286,rebuild:[14,33,62,83,286],rec0:129,rec1:129,rec2:129,recal:[251,275],receiv:[10,14,15,21,28,30,32,56,82,90,131,132,137,188,191,194,207,212,215,218,221,238,249,252,253,260,264,267,288,291,294],recent:[180,259,282],recip:6,recipi:30,reclaim:180,recogn:[56,180,282],recommend:[3,4,7,12,14,58,59,81,82,90,131,189,208,209,215,225,226,238,240,249,253,259,263,264,268,271,284,290,295],reconfigur:[191,194,286],reconnect:251,record:[129,180,209,224,233,296],recov:129,recover:129,recreat:276,recur:195,recurs:[56,62,91,170],red:[28,29,237,260,262,294],redbear:[257,298],redefin:225,redistribut:[56,256,275,288,295,296],redo:14,reduc:[9,23,25,32,88,102,133,206,238,240,264,268,272],redund:223,reenter:271,ref0:68,refer:[7,8,10,14,19,23,24,30,56,68,94,167,170,180,191,210,216,220,223,244,249,254,255,256,258,262,274,282,284,294],referenc:[1,180,187],reflect:250,reformat:180,refrain:27,refresh:[2,50,244,256],refus:[288,295],regard:[174,175,273,281,282],regardless:42,region:[14,90,94,129,168,174,175,180],regist:[14,24,76,86,90,95,130,132,135,139,153,163,166,182,183,188,197,206,207,211,213,216,218,220,221,222,226,243,251,253,270,281,282,288],register_:211,registr:[18,130,181,224,251,288],registri:[90,209],regress:[229,230,232,233,234],regular:[90,156,273],reject:[21,273],rel:[14,90,93,149],relai:[22,32],relat:[10,28,32,44,136,223,249,252,256,267,288,295,296],relationship:[28,99],releas:[3,4,7,32,50,57,79,80,90,91,92,93,99,135,187,188,215,226,256,274,275,276,282],release_not:[7,11],relev:[96,129,135,187],reli:[1,7,56,226],reliabl:[14,22,129,152,174,254,255,276],reload:14,remain:[85,94,164,170,180,223,228,231,243,251,270],remaind:[94,180,231,249,273,275],rememb:[2,42,81,83,92,256],remind:256,remot:[1,7,9,12,21,28,29,50,56,67,79,81,82,83,133,188,237,238,240,241,247,256,257,258,264,266,268,274,281,288,290,292,293,298],remov:[2,4,6,28,36,46,61,84,87,88,90,91,99,100,131,137,180,223,251,256,288],renam:[14,167],rename_test:273,repeat:[2,11,21,188,242,251],repeatedli:[30,129],replac:[4,6,94,96,102,196,223,226,228,231,242,256,258,291,294],repli:28,repo814721459:56,repo:[1,6,7,10,11,14,42,56,58,62,81,94,135,153,223,237,244,246,256,258,259,260,261,262,263,267,273,274,277,281,283,284,288,291,292,294,295,296],repop:7,report:[1,4,6,10,14,21,94,183,194,224,228,231,256,260,273,281,288,295,296],reposistori:7,reposit:169,repositori:[1,4,11,12,41,42,45,50,52,53,58,62,81,135,237,244,245,246,248,256,257,267,274,278,281,282,290,293,298],repres:[1,8,12,14,62,88,90,99,101,129,131,160,180,207,209,211,212,215,243,253,270],represent:[129,133],reproduc:[1,62,129,181,254,255],req_api:[62,131,206],req_len:90,request:[12,14,21,28,67,68,75,79,90,92,94,99,129,133,134,137,141,164,180,192,210,211,213,215,223,238,250,251,256,260,262,264,267,275,276,280,282,283,287,288,291,294],requir:[1,2,4,6,9,11,14,21,25,31,32,54,60,62,67,81,83,88,90,91,93,95,96,97,99,129,131,133,136,153,163,174,175,180,193,206,208,215,223,224,225,226,230,237,238,240,243,246,249,251,256,259,263,264,267,268,270,273,275,276,280,281,284,286,287,288,298],res:283,resch:86,reserv:[21,90,94,97,142,144,180,207,243,267,270],reserved16:180,reserved8:180,reset:[26,65,79,81,82,83,85,98,132,133,192,223,235,238,246,247,250,259,260,261,263,264,282,284,288,295,296],reset_cb:27,reset_config:256,reset_handl:[94,262],resid:[97,129,175,180,242,253,281],resign:[58,59,60],resist:282,resistor:[240,268,282],resolut:[23,87,193,224],resolv:[1,14,20,21,23,28,33,56,67,82,225,237,254,255,275],resourc:[9,21,30,62,89,92,99,134,210,211,213,215,237,240,256,268,282,283,285,287,288,294,295,296],respect:101,respond:[18,26,223,249,251,253,280,281],respons:[14,16,21,29,30,70,86,91,93,131,133,137,213,223,243,249,251,270,274,281,287,291,292,294],rest:[1,14,47,62,90,180,198,200,228],restart:[2,129,130,141,180,192,256],restor:[14,130,174,177,178,180,259,261,267,282],restrict:[129,141,174,175,180,215,226,251,252],restructuredtext:10,result:[12,14,21,59,63,90,101,161,162,175,180,199,207,224,226,231,233,253,260,273,280,281,282],resum:[22,100,129,180,249,252],resynchron:50,retain:[129,180,226,252],retent:183,retransmit:32,retreiv:134,retri:[263,267],retriev:[58,81,88,90,101,133,153,155,156,157,158,159,162,164,165,172,175,207,209,246,290],reus:[56,82,129,226],reusabl:56,rev:284,revdep:[1,51,63],revers:[1,24,51,63,129,180,251,262],revert:[129,241,266],review:[10,223,249,273],revis:[4,198,284],revision_num:[275,276],revisit:[246,252],rewrit:180,rewritten:180,rfc:[69,200,273],ribbon:[262,294],rigado:[49,261,282],right:[2,3,10,14,56,62,130,244,249,262,282],rimari:253,ring:99,rise:187,ristic:253,rite_fil:153,robust:152,role:[14,21,22,31,32,99,251],room:[90,180,243,270],root:[2,4,8,32,81,137,166,180,237,275],rotat:167,rotate_log:167,routin:[86,102,130,141,142,144,163,181,200,232,281],rpa:[20,28],rpa_pub:[28,67],rpa_rnd:[28,67],rsa2048:129,rsa:129,rsp:[14,28],rssi:[28,30,247],rtc:9,rto:[56,93,243,270],rtt:[8,14,131,281,297,298],rtt_buffer_size_down:295,rubi:[11,56,59],rule:[226,260,273],run:[2,3,4,5,6,8,9,11,24,25,31,35,40,42,44,51,53,56,58,59,60,61,62,65,67,68,78,79,81,82,83,84,85,86,87,88,90,92,93,94,97,98,99,100,129,130,132,133,136,137,153,161,162,180,193,213,215,221,223,225,234,235,236,237,238,241,242,243,246,247,254,255,257,259,260,261,262,263,264,266,267,270,273,274,281,282,283,284,285,286,288,291,293,294,298],runner:12,runtest:[7,132,238,264],runtest_newtmgr:[238,264],runtim:[26,78,100,256,274,291,294],runtimeco:[58,59,60,81,82,83,237,256,274,275],rwx:94,rwxr:[81,83],rx_cb:131,rx_data:281,rx_func:194,rx_off:281,rx_phys_mask:28,rx_power:28,rxbuf:191,rxpkt:90,rxpkt_q:90,s_cnt:224,s_dev:207,s_func:207,s_hdr:224,s_itf:207,s_listener_list:207,s_lock:207,s_map:224,s_map_cnt:224,s_mask:207,s_name:224,s_next:[207,224],s_next_run:207,s_pad1:224,s_poll_rat:207,s_size:224,s_st:[207,288],s_type:207,sad:288,sad_i:288,sad_x:288,sad_x_is_valid:288,sad_y_is_valid:288,sad_z:288,sad_z_is_valid:288,safe:[91,153],safeguard:93,safeti:251,sai:[14,62,90,100,256,274,275,276],said:[187,282],sam0:256,sam3u128:[259,261,267,281,282,288],samd21:[256,274],samd21g18a:256,samd21xx:256,samd:256,same:[6,10,12,14,23,30,35,38,48,52,60,62,79,90,92,94,95,99,129,130,131,152,174,180,188,212,223,224,225,226,228,237,240,242,243,249,251,252,257,259,261,267,268,270,275,276,277,282,283],sampl:[1,12,22,31,62,90,95,135,213,223,226,282,283,285,287,288,293],sample_buffer1:282,sample_buffer2:282,sample_cmd:222,sample_cmd_handl:222,sample_command:220,sample_modul:[220,222],sample_module_command:220,sample_module_init:220,sample_mpool:220,sample_mpool_help:220,sample_mpool_param:220,sample_target:54,sample_tasks_help:220,sample_tasks_param:220,sane:100,saniti:[78,93,100,246],sanity_interv:98,sanity_itvl:[98,100],sanity_task:98,sanity_task_interv:98,satisfactori:275,satisfi:[180,276],sattempt_stat:224,save:[12,32,50,51,72,101,130,131,188,209,243,251,270],saw:252,sbrk:[94,259,260,261,262,263],sc_arg:98,sc_checkin_itvl:98,sc_checkin_last:98,sc_cmd:[215,216,220,221,222,281],sc_cmd_f:215,sc_cmd_func:[215,216,220,221,222,281],sc_cmd_func_t:215,sc_func:98,sc_next:153,sc_valtyp:207,scalabl:[152,180],scale:32,scan:[14,16,22,25,27,28,30,180,247,249,283,285],scan_interv:28,scan_req:28,scan_req_notif:28,scan_result:274,scan_rsp:28,scan_window:28,scannabl:[14,28,31],scenario:[23,99,196],scene:32,schedul:[9,14,25,85,88,93,97,100,101,243,270],schemat:[94,294],scheme:[14,20,30,94],scientif:22,sck_pin:[136,137],scl:[188,284],sco:21,scope:[12,90,243,270],scratch:[94,129,141,142,144,223],screen:[8,267],script:[7,43,62,138,140,262],scroll:[12,238,250,264],sd_get_config:[207,209],sd_read:[207,209],sda:[188,284],sdcard:137,sdk:[46,54,226],search:[12,88,95,135,177,180,212,246,256,262,275,283,288,295,296],searchabl:135,sec000:129,sec125:129,sec126:129,sec127:129,sec:[284,288],second:[14,23,27,28,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,85,90,91,94,98,100,101,129,141,195,215,223,237,242,243,249,254,255,258,262,270,273,280,282,284,288],secondar:253,secondari:[28,72,94,129,241,253,266],secondary_phi:28,secret:[23,28],section:[1,5,6,7,11,12,14,15,25,26,30,31,62,90,93,94,100,129,130,180,209,223,225,226,227,238,241,243,245,249,252,253,256,257,264,266,270,274,275,276,282,290,292,293],sector:[129,141,142,147,149,150,151,180,185,262],sector_address:[136,185],secur:[14,22,129,223,253,266,277,280,282],see:[2,4,5,6,7,8,10,11,12,14,22,23,24,25,34,37,44,56,58,59,60,62,64,65,67,81,82,83,88,90,92,93,94,97,100,129,130,138,148,161,182,188,191,200,206,207,208,209,210,211,212,213,214,215,224,225,226,237,238,241,242,243,244,246,247,249,250,251,253,254,255,256,257,258,259,260,261,262,263,264,266,267,270,271,274,275,276,277,280,281,282,283,284,285,287,288,290,291,293,294,295,296],seek:[90,169,180],seem:[14,249,282],seen:[91,186,189,275,298],segger:[8,131,241,259,261,266,267,274,281,282,284,288,291,297,298],segger_rtt:14,segger_rtt_conf:295,segment:[22,90,283],sel:294,select:[4,12,14,20,22,56,60,180,187,191,207,215,256,258,259,260,262,283,285,294,296],selector:207,self:[3,31,95,254,255,273],selftest:273,sem:99,sem_token:99,sema:281,semant:252,semaphor:[14,93,100,281],send:[3,14,15,21,28,29,32,39,43,48,65,67,68,70,75,79,81,82,83,90,131,133,134,188,191,194,213,236,237,242,249,257,280,282,287,292,298],send_pkt:90,sender:249,sens:[21,129,223,282],senseair:[280,281],senseair_cmd:281,senseair_co2:[280,281],senseair_init:281,senseair_read:[280,281],senseair_read_typ:[280,281],senseair_rx_char:281,senseair_shell_func:281,senseair_tx:281,senseair_tx_char:281,sensi:283,sensibl:226,sensor:[9,14,32,135,224,298],sensor_accel_data:288,sensor_callout:288,sensor_cfg:[207,209],sensor_cli:[214,284,285,288],sensor_cr:[208,284,286],sensor_data_func_t:[209,211],sensor_data_funct_t:209,sensor_dev_cr:208,sensor_devic:207,sensor_driv:[207,209],sensor_ftostr:288,sensor_g:207,sensor_get_config_func_t:[207,209],sensor_get_itf:209,sensor_in:207,sensor_init:[207,209],sensor_itf:[207,208,209],sensor_itf_i2c:[207,208],sensor_itf_spi:207,sensor_itf_uart:207,sensor_listen:[207,211,288],sensor_lo:207,sensor_mg:212,sensor_mgr_find_next_bydevnam:[212,288],sensor_mgr_find_next_bytyp:212,sensor_mgr_l:212,sensor_mgr_lock:212,sensor_mgr_match_bytyp:212,sensor_mgr_regist:[207,209,212],sensor_mgr_unlock:212,sensor_mgr_wakeup_r:[212,288],sensor_nam:284,sensor_o:[213,283,284,285,287,288],sensor_offset:284,sensor_oic_init:[213,283],sensor_oic_obs_r:[213,287],sensor_r:[207,211],sensor_read:[207,211],sensor_read_func_t:[207,209],sensor_register_listen:[211,288],sensor_s:207,sensor_set_driv:[207,209],sensor_set_interfac:[207,209],sensor_set_poll_rate_m:[207,212,288],sensor_set_type_mask:[207,209],sensor_shel:284,sensor_timestamp:207,sensor_type_acceleromet:[207,208,209,286,288],sensor_type_al:207,sensor_type_eul:[209,286],sensor_type_grav:[209,286],sensor_type_gyroscop:[207,209,286],sensor_type_light:207,sensor_type_linear_accel:[209,286],sensor_type_magnetic_field:[207,209,286],sensor_type_non:207,sensor_type_rotation_vector:[209,286],sensor_type_t:[207,209,211,212,288],sensor_type_temperatur:[207,209],sensor_type_user_defined_6:207,sensor_un:[207,211],sensor_unregister_listen:[211,288],sensor_value_type_float:[207,209],sensor_value_type_float_triplet:[207,209],sensor_value_type_int32:207,sensor_value_type_int32_triplet:207,sensor_value_type_opaqu:207,sensor_value_type_temperatur:209,sensornam:[207,208,209,210,284,286,288],sensorname_cli:209,sensorname_ofb:284,sensors_o:285,sensors_test:[283,284,286,287],sensors_test_config_bno055:286,sent:[21,30,131,180,188,191,194,215,251,253,267],sentenc:[63,244],sep:[4,82,83],separ:[21,27,35,36,51,52,67,129,135,177,180,198,206,223,224,251,254,255,256,259,260,262,263,267],seper:295,sequenc:[93,129,131,174,180,228,231],sequenti:[174,175,180],seri:[129,160,192,253,298],serial:[67,88,129,130,131,133,134,135,141,183,188,191,224,238,240,241,259,263,264,266,267,268,281,283,284,285,292,293],serror_stat:224,serv:[19,56,94,141,210,223,283],server:[12,14,15,19,21,22,28,32,134,210,211,213,223,244,253,267,280,283,285,287,288],servic:[14,17,18,22,28,29,30,32,93,97,135,182,236,249,250,251,252,274,276,281,283],service_data_uuid128:[28,30],service_data_uuid16:30,service_data_uuid32:[28,30],sesnor:288,session:[12,39,40,48,56,58,59,60,62,94,256,259,260,262,263,295],set:[1,2,7,8,9,10,12,20,21,24,25,28,29,30,32,33,35,37,38,40,51,54,56,57,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,82,83,85,86,87,90,97,98,99,100,101,129,130,131,135,136,146,153,154,158,161,163,164,168,171,174,176,177,178,180,182,187,188,190,191,193,194,195,200,208,210,212,213,214,215,216,220,221,222,223,224,233,237,240,241,243,247,250,251,254,255,256,257,259,260,261,262,263,266,267,268,270,271,273,274,275,276,277,280,282,284,285,287,288,290,291,293,294,295],setting1:225,setting2:225,settl:26,setup:[11,58,60,61,72,81,83,84,209,223,238,241,246,247,257,258,264,266,280,281,282,284,288,290,291,292,293,294],sever:[3,14,21,22,24,28,62,94,95,97,101,129,180,223,226,235,236,253,254,255,261,262,275],sha256:129,sha:129,shadow:130,shall:[14,25,28,30],share:[4,14,23,89,90,92,93,99,223,240,268,275],sheet:209,shell:[1,7,8,14,22,31,56,60,81,97,130,131,138,139,206,210,216,217,218,219,220,221,222,224,225,226,237,238,243,257,264,267,270,271,281,283,284,285,290,295],shell_cmd:[215,216,220,221,222,281],shell_cmd_argc_max:[215,267],shell_cmd_func_t:215,shell_cmd_h:215,shell_cmd_help:[215,220,271],shell_cmd_regist:[215,221,281],shell_compat:215,shell_complet:215,shell_init:226,shell_max_compat_command:[215,216],shell_max_input_len:139,shell_max_modul:[215,220],shell_modul:215,shell_newtmgr:[215,238,264],shell_nlip_input_func_t:218,shell_nlip_input_regist:215,shell_os_modul:[215,271],shell_param:[215,220],shell_prompt_modul:[215,258],shell_regist:[215,222],shell_sample_mpool_display_cmd:220,shell_sample_tasks_display_cmd:220,shell_stack:139,shell_task:[215,225,226,238,258,264,271,281,284,288],shell_task_init:139,shell_task_prio:139,shell_task_prior:225,shell_task_stack_s:139,shield:93,shift:[12,22],ship:[6,14],shortcut:12,shorten:249,shorter:[180,242],shorthand:[90,275],shot:267,should:[4,8,10,12,14,20,27,31,33,56,58,60,62,82,85,86,87,88,90,91,94,97,98,99,100,101,129,130,131,135,138,139,141,147,151,153,157,158,161,171,174,180,182,183,188,191,193,194,195,198,200,209,212,215,224,226,231,233,237,242,243,247,249,250,251,252,254,255,256,258,259,260,261,262,263,267,270,273,274,275,278,281,282,283,284,286,288,291,294,295,296],show:[1,4,5,6,7,8,11,12,14,28,29,32,37,40,41,44,51,54,58,59,60,61,62,63,73,81,82,83,84,90,100,130,131,194,206,220,223,225,226,233,236,237,238,240,241,243,244,247,253,256,257,258,259,260,261,262,263,264,266,267,268,270,274,280,281,282,283,284,285,286,287,288,290,291,292,294,295,296,298],shown:[6,7,12,44,56,62,90,93,129,136,193,209,224,237,251,256,259,267,273,275,277,282,284,286,288,292],si_addr:[207,208],si_cs_pin:207,si_num:[207,208],si_typ:[207,208],sibl:[11,276],sid:28,side:[12,14,22,31,130,281],sierra:[59,82],sig:[21,30,32],sign:[6,10,38,47,48,58,59,60,81,207,242,247,257],signal:[21,22,27,30,100,191,252],signatuar:12,signatur:[28,47,129],signed_imag:129,signifi:188,signific:[20,90,191,223,267],significantli:[14,32],signigic:90,silent:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,226],silicon:33,sim1:[291,292,294],sim:[6,7,62,95,281,291,293,294],sim_slinki:[225,292],similar:[1,8,12,14,93,94,208,247,267,273,282],similarli:[90,206],simpl:[12,21,22,62,86,90,93,94,99,100,102,130,133,135,152,182,224,237,243,248,249,254,255,258,270,282,288,290],simplehttpserv:[34,64],simpler:[94,253],simplest:[90,291,294],simpli:[6,10,88,90,91,99,100,131,182,223,237,243,245,250,256,270,280,281],simplic:[129,254,255],simplifi:[14,21,88,91,188],simul:[2,3,5,6,51,235,243,270,288,292],simultaen:90,simultan:[14,28,30,31],simultaneosli:153,sinc:[3,14,21,25,33,62,90,93,94,99,101,129,191,215,224,241,242,243,246,247,254,255,256,258,266,270,274,275,280,281,282,283],singl:[2,3,7,14,23,40,48,56,58,59,60,88,90,99,100,129,130,135,153,172,174,175,180,209,224,226,248,249,253,254,273,275],singli:180,sissu:192,sit:[15,19,135,182,223],site:[248,259,263],situat:[93,223],six:[23,24],size:[9,21,28,30,40,56,58,59,60,62,74,78,88,90,91,94,100,101,102,129,130,131,133,136,157,174,175,176,180,191,205,206,223,224,225,226,228,236,238,243,256,260,262,264,267,270,272,285],size_t:[157,163,200],sizeof:[90,130,137,154,155,156,157,161,162,164,165,172,205,208,228,243,249,251,252,255,270,280,281,282],skelet:247,skeleton:[7,45,51,237,246,247,256,259,260,261,262,263,267,274,282,291,292,294],skip:[6,11,48,60,129,141,143,256,259,260,261,262,263,274,291,294],sl_arg:[211,288],sl_func:[211,288],sl_next:211,sl_sensor_typ:[211,288],slash:180,slave:[28,30,188,191],slave_interval_rang:30,sleep:[9,86,88,90,92,99,100,101,183,240,243,258,268,270],slightli:[97,223],slink:[291,292,294],slinki:[7,46,62,131,153,177,178,223,225,226],slinky_o:[7,62],slinky_sim:225,slinky_task_prior:225,slist_entri:[153,180,207,211],slist_head:[92,207],slot0:129,slot1:129,slot:[7,14,21,62,72,196,223,241,247,250,256,258,259,260,261,262,263,266,267,271,274,281,284,288,291,294,295,296],slower:[3,97,98],small:[21,25,90,101,131,135,172,223,224,253,260,273,282],smaller:[14,90,133,195,223,244,256],smallest:[90,180],smart:[22,32,56,62,281,287],smarter:276,smp:[21,22],snapshot:[44,259,263,276],snip:[1,37,44,56,62,238,246,247,264,282],snippet:251,soc:[14,97],socket:2,soft:[65,81,82,83,192],softwar:[1,3,4,6,22,39,43,48,51,97,98,129,182,236,241,256,259,261,262,266,274,275,281,282,284,288,291,295],solder:281,solut:[56,182,254,255],solv:[129,223],some:[1,8,12,14,31,65,77,90,91,93,94,97,99,100,102,129,131,137,141,152,153,154,161,164,174,175,183,191,194,206,220,225,233,237,238,243,248,249,250,251,252,254,255,258,259,260,263,264,267,270,271,273,274,275,281,288,291,294,295,296,298],somebodi:[130,281],somehow:62,someon:[10,86,282],someth:[14,21,237,246,247,274,277,280,295],sometim:[130,256,274,295],somewhat:[93,129,180],somewher:[14,129,180,223,282],soon:[22,276],sooner:195,sophist:[243,270],sort:[180,250],sound:14,sourc:[1,4,9,22,25,51,57,59,61,62,80,82,84,90,97,129,130,135,167,180,209,210,226,233,240,248,256,259,260,262,268,274,275,276,282,288,290,294],space:[12,22,35,36,51,52,67,90,97,141,142,157,174,175,188,196,199,215,223,224,246,254,257,274,290,293,298],spare:14,spec:[14,21],specfi:284,special:[8,90,97,136,223,228,231,253,254,255,273,274,275,276,284],specif:[11,14,21,22,23,24,30,32,58,59,60,62,63,86,88,90,91,93,94,96,97,101,129,133,135,151,153,174,175,182,187,188,190,191,192,193,194,196,206,207,209,223,226,228,232,233,238,243,247,249,251,252,254,255,256,262,264,267,270,273,274,275,281,282,291,294],specifi:[1,4,6,7,11,12,14,21,28,31,35,36,38,40,42,44,46,47,51,52,54,56,58,59,60,62,66,67,68,69,70,71,72,73,74,75,76,77,78,85,87,88,90,91,94,97,98,100,101,102,131,133,134,151,153,154,155,156,157,158,159,160,161,162,164,165,167,168,169,170,171,172,173,175,177,178,180,183,187,188,206,207,208,209,210,211,212,213,214,215,216,217,220,225,228,231,233,238,241,246,249,251,252,253,254,255,256,261,262,264,266,271,274,275,276,277,282,284,287,288,291,294,295],spectrum:22,speed:[9,22,180,194,256,259,260,261,267,282,295],spew:274,sphinx:[34,64],spi:[8,14,22,97,135,136,137,187],spi_cfg:[136,137],spi_miso_pin:[136,137],spi_mosi_pin:[136,137],spi_num:[136,137,191],spi_sck_pin:[136,137],spi_ss_pin:[136,137],spi_typ:191,spilt:14,spitest:[7,62],split:[7,14,72,94,180,192,225,241,266,281,282,291,292,294],split_app:7,split_app_init:226,split_config:[291,292],split_elf_nam:62,split_file_test:273,split_load:226,splitti:[7,62,223,225],spot:94,spread:22,spuriou:273,squar:188,sram:262,src:[6,7,11,14,46,51,56,62,71,81,83,90,94,96,135,177,178,181,182,185,189,190,192,198,226,233,242,243,246,256,259,260,261,262,263,267,270,273,274,280,281,282,284,286,288,291,292,294],src_off:90,ss_op_wr:251,ss_pin:[136,137],ssec:28,st_cputim:288,st_ostv:288,stabil:[275,276],stabl:[1,7,58,59,81,82,275,276],stack:[1,9,14,19,22,25,27,28,31,56,78,86,88,90,93,100,223,226,245,246,247,248,249,251,252,253,267,281],stack_bottom:100,stack_len:218,stack_ptr:218,stack_siz:[98,100],staff:[81,82],stage:[98,129,135,208,223,226],stai:[14,161,162],stailq_entri:224,stale:[2,256],stand:[14,90,234],standalon:[14,223],standard:[7,22,32,101,133,134,135,136,152,153,161,182,249,254,255,267,280,281],standbi:[22,196],start:[2,4,8,9,10,12,14,27,28,29,31,39,48,60,63,72,83,87,89,90,91,92,93,94,96,100,129,135,138,141,142,144,147,153,160,161,169,172,175,180,188,189,191,192,193,194,195,204,212,223,226,235,237,243,244,245,246,249,256,257,258,259,260,262,263,266,267,270,273,275,280,281,282,283,284,285,286,288,292,296,298],starter:242,startup:[20,22,27,31,129,223,226,243,254,255,270],startup_stm32f40x:[260,262],stash:50,stat:[1,7,14,65,79,81,82,83,132,133,226,238,246,264,267,271,281,282,288,295],state:[6,14,22,27,32,53,56,86,88,94,98,100,101,134,141,177,178,182,183,187,200,240,241,243,256,262,266,268,270,276,278],statement:[11,226,238,264],statist:[1,49,65,74,77,78,81,82,83,227,267,291,292,294,295],stats_cli:[1,271],stats_hdr:[209,224],stats_inc:224,stats_incn:224,stats_init:[209,224],stats_init_and_reg:224,stats_module_init:226,stats_my_stat_sect:224,stats_nam:[1,38,39,77,209,224],stats_name_end:[209,224],stats_name_init_parm:[209,224],stats_name_map:224,stats_name_start:[209,224],stats_newtmgr:[1,225,226,238,264],stats_regist:[209,224],stats_sect_decl:[209,224],stats_sect_end:[209,224],stats_sect_entri:[209,224],stats_sect_start:[209,224],stats_size_16:224,stats_size_32:[209,224],stats_size_64:224,stats_size_init_parm:[209,224],statu:[10,11,21,137,172,223,241,250,252,254,256,266,267,281,291,292,294],stdarg:[228,231],stderr:198,stener:211,step:[2,4,6,7,12,48,56,58,60,81,83,93,94,95,129,131,188,208,223,224,244,246,247,254,255,256,259,260,261,262,263,267,274,275,282,291,292,294],sterli:276,sterlinghugh:276,stic:[251,253],still:[5,14,60,67,87,97,98,250,282,290,295],stitch:1,stksz:[78,291,294],stkuse:[78,291,294],stlink:260,stm32:[260,262,294],stm32_boot:294,stm32_slinki:294,stm32f2x:260,stm32f303vc:[237,242],stm32f3discoveri:237,stm32f4:[135,136,137,257],stm32f4_adc_dev_init:135,stm32f4_hal_spi_cfg:[136,137],stm32f4disc_blinki:260,stm32f4disc_boot:260,stm32f4discoveri:[54,260],stm32f4discovery_debug:260,stm32f4x:260,stm32f4xx:187,stm32f4xxi:187,stm32l072czy6tr_boot:14,stm32serial:294,stm32x:260,stm34f4xx:187,stm:294,stmf303:237,stmf32f4xx:187,stmf3:237,stmf3_blinki:[237,242],stmf3_boot:[237,242],stop:[2,28,85,87,141,151,188,189,193,194,249,274,284],stopbit:194,storag:[14,21,130,141,168,247,275],store:[1,11,14,23,28,32,35,36,38,51,56,58,60,62,81,86,88,90,101,130,131,141,148,180,191,196,199,200,218,224,246,249,251,252,275,281,282,283,288,290],stori:90,str:[130,131,194,200],straight:[249,281],straightforward:[246,282],strategi:[243,270],strcmp:[130,281],stream:[22,200,205,206,218],strength:30,strict:[251,256],strictli:[174,175,180,282],string:[1,14,28,30,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,102,130,131,134,140,161,172,192,198,199,200,205,215,216,220,224,226,228,231,254,255,273,275,276,280,281,282,292],strip:[47,90],strlen:[249,251],strongli:153,struct:[85,86,87,88,90,91,92,93,94,98,99,100,101,129,130,131,135,136,137,141,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,161,162,164,165,166,167,169,170,171,174,177,178,180,181,183,186,188,191,193,198,199,200,201,202,203,204,205,206,207,208,209,211,212,215,216,217,218,219,220,221,222,224,228,233,234,240,243,249,251,252,253,254,255,258,268,270,273,280,281,282,286,288],structur:[7,11,12,19,29,56,62,79,85,88,90,91,92,93,94,99,100,129,130,131,135,137,147,163,176,179,188,193,198,199,206,208,209,210,216,220,221,224,251,257,273,274,281,282,286,290,293,298],struggl:14,strutur:90,stub:[14,62,102,206,240,254,255,258,268,273,281,282],studio:[5,13],stuff:275,style:[131,244],sub:[29,44,46,51,71,72,73,76,77,135,156,255,278],subcmd1:221,subcmd2:221,subcommand:[46,51,63,65,67,71,72,73,76,77,221],subcompon:22,subdirectori:[2,233,273],subfold:259,subject:180,submit:11,subrang:21,subscrib:[14,29,250,252,282],subsequ:[14,22,23,129,161,162,223,249,252,273],subset:[23,177,207,209,212,284],substitut:[6,244,246,247],subsystem:[31,60,88,130,131,136,137,215],subtract:[99,101],subtre:130,succe:[177,273],succesfulli:[241,242,246,247,250,256,258,259,260,261,262,263,266,267,274,281,284,288,291,294,295,296],success:[3,21,56,85,87,90,93,98,100,101,130,137,142,143,144,145,146,147,149,150,151,153,154,155,157,158,160,161,162,164,165,166,167,168,169,170,171,172,173,177,178,179,180,183,187,188,191,193,194,195,198,201,202,203,204,205,216,218,219,220,231,234,235,237,242,251,253,262,267,273],successfuli:[94,273,288],successfulli:[7,14,21,56,91,94,98,223,237,238,241,242,246,247,250,252,254,255,256,259,260,261,262,263,264,266,267,274,281,282,283,284,285,288,291,292,294],sudo:[4,6,7,11,58,59,61,81,84,247],suffici:[14,90,91,180],suffix:273,suggest:[3,6,14,212,236,271,298],suit:[6,56,230,232,233,246,272],suitabl:[14,21,94,174],summar:[94,223],summari:[6,11,20,37,215,220,255],supersed:180,supervision_timeout:[31,250],supplement:[30,249],supplementari:94,suppli:[153,171,173,177,192,273],support:[1,3,4,6,7,12,15,20,21,22,23,30,31,33,54,59,67,82,87,93,94,96,102,129,131,133,134,135,136,137,152,180,183,187,191,200,206,207,208,209,212,215,216,220,221,223,224,226,240,241,246,247,248,249,253,254,256,257,259,266,268,274,275,276,281,285,290,292,293,298],suppos:[14,44,92,99,187,224],suppress:292,suppresstasknam:12,sure:[2,7,8,14,58,90,199,246,247,249,251,256,258,267,273,275,280,282],suspend:284,svc:253,sw_rev:284,swap:[2,86,94,174,181,223,256,295],swclk:256,swd:[256,259,260,261,262,263,267,274,282,288],swdio:256,sweep:180,swim:260,swo:[259,274,288],symbol:[4,7,12,62,223,256,260,288,295,296],symlink:[61,84],sync:[21,26,40,58,59,60],sync_cb:[27,254,255],synchron:[21,40,50,58,59,60,97,99,135,191],syntax:[226,244,267,271,284],synthes:25,sys:[1,7,14,56,58,62,130,131,132,181,206,215,224,225,226,234,238,240,246,258,264,268,273,274,281,282,284,288,296],sys_config:223,sys_config_test:7,sys_console_ful:223,sys_einv:[209,288],sys_enodev:209,sys_flash_map:[260,262],sys_log:223,sys_mfg:[7,256,259,260,261,262,284,291,294],sys_shel:223,sys_stat:223,sys_sysinit:[7,256,259,260,261,262,263,284,291,294],syscfg:[14,24,25,33,38,39,51,62,94,98,130,131,153,174,208,209,210,212,213,214,215,216,220,224,225,238,241,247,256,258,259,264,266,267,271,273,274,281,282,284,285,287,288,295,296],sysclock:14,sysconfig:[130,238,264],sysflash:[256,262],sysinit:[7,26,27,93,100,131,197,208,226,240,254,255,256,258,267,268,273,274,281,282,288],sysinit_assert_act:226,sysinit_panic_assert:[208,209,226],sysresetreq:256,system:[1,3,6,8,9,26,40,51,58,59,60,62,63,87,90,91,94,97,98,100,101,102,129,130,131,132,141,155,156,157,161,162,163,165,166,168,174,176,177,178,180,183,187,191,194,196,197,206,220,223,224,235,236,243,246,247,256,258,259,262,267,270,271,274,275,276,281,288,296],system_l:187,system_stm32f4xx:[260,262],systemview:298,sysview:[296,297],sysview_mynewt:296,sytem:189,syuu:60,t_arg:100,t_ctx_sw_cnt:100,t_dev:207,t_driver:207,t_flag:100,t_func:[100,243,270],t_interfa:207,t_itf:207,t_name:100,t_next_wakeup:100,t_obj:100,t_poll_r:207,t_prio:[86,100],t_run_tim:100,t_sanity_check:100,t_stackptr:100,t_stacksiz:100,t_stacktop:100,t_string:205,t_taskid:100,t_type_m:207,t_uinteg:205,tab:[31,37],tabl:[14,20,21,94,129,132,152,161,180,226,251,253,267,284],tag:276,tail:[90,180],tailq_entri:[180,193],tailq_head:180,take:[6,7,14,24,46,51,56,63,90,93,130,142,199,212,223,224,243,249,251,252,253,254,255,270,273,280,282],taken:[7,14,62,88,93,251,275,276,280],talk:[14,247,249,292],tap:[4,57,80],tar:[4,58,59,60,61,82,83,84],tarbal:4,target:[3,4,5,7,12,14,26,30,33,35,36,37,38,39,40,43,44,47,48,49,54,56,58,59,60,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,97,130,196,223,224,225,226,233,241,243,245,254,255,257,266,270,271,273,281,283,285,287,293],target_nam:35,targetin:[254,255],task1:[93,98,291,294],task1_evq:98,task1_handl:93,task1_init:93,task1_prio:93,task1_sanity_checkin_itvl:98,task1_sem:93,task1_stack:93,task1_stack_s:93,task2:[93,291,294],task2_handl:93,task2_init:93,task2_prio:93,task2_sem:93,task2_stack:93,task2_stack_s:93,task:[9,11,56,65,78,81,82,83,85,86,88,90,91,92,93,94,96,97,99,101,131,135,140,170,203,212,215,217,220,226,235,238,251,258,264,267,269,280,281,283,286,288,291,292,294,298],task_l:[240,268],task_prior:[225,226],tasknam:12,taskstat:[65,79,81,82,83,132,134,238,264,291,294],tbd:253,tc_case_fail_arg:233,tc_case_fail_cb:233,tc_case_init_arg:233,tc_case_init_cb:233,tc_case_pass_arg:233,tc_case_pass_cb:233,tc_print_result:[233,234],tc_restart_arg:233,tc_restart_cb:233,tc_suite_init_arg:233,tc_suite_init_cb:233,tc_system_assert:233,tck:256,tcp:[256,260],tdi:256,tdo:256,teach:[243,270],team:[4,182,244],technic:[10,237],technolog:[22,136],tee:[1,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63],telee02:267,telee02_boot:267,telemetri:254,telenor:267,teli:[254,255],tell:[14,31,56,141,156,194,196,200,223,224,226,237,249,251,254,255,262,276,280],telnet:[274,281,288,295],tem:284,temperatur:[160,207,284],templat:[7,46,246,273,280,281,288],temporari:[21,98,129,180],temporarili:[92,98],ten:191,term:[3,129,135,153,187,190,275],termin:[2,4,7,8,10,12,14,21,22,28,60,83,130,131,155,156,157,161,162,165,172,174,175,177,180,247,249,252,253,256,258,259,260,261,262,263,267,274,281,286,288,295],terminato:157,termintor:157,terribl:[7,246],test:[4,6,12,14,40,51,58,59,60,62,65,68,72,76,81,82,83,129,131,132,182,209,210,223,226,228,229,230,231,232,233,234,235,238,241,247,253,254,255,256,258,259,261,264,272,275,280,282,292,295,298],test_assert:[229,230,232,273],test_assert_fat:[228,273],test_cas:[228,273],test_case_1:230,test_case_2:230,test_case_3:230,test_case_nam:[229,230],test_datetime_parse_simpl:273,test_datetime_suit:273,test_json:273,test_json_util:273,test_project:45,test_suit:[229,230,273],test_suite_nam:232,testbench:[7,62],testcas:[7,273],testnam:76,testutil:[7,181,273],text:[40,49,70,90,131,172,215,223,231,260,291,294],textual:1,tgt:130,tgz:4,than:[3,7,14,15,21,30,73,90,92,93,94,97,99,100,101,102,129,133,153,164,167,180,191,195,212,215,223,225,228,230,243,247,253,254,255,259,270,282,288,295],thank:31,thee:97,thei:[1,6,14,21,30,31,62,85,88,90,91,93,94,99,100,129,130,135,170,180,193,223,224,226,233,236,242,249,250,251,253,254,255,267,271,273,275,276,278,280,284],their_key_dist:28,them:[2,9,14,56,90,94,99,100,161,178,180,196,223,224,226,243,247,249,254,255,256,270,273,274,275,282,283,298],themselv:[90,93,253],theori:[14,56,226],therebi:[99,141],therefor:[21,91,129,149,153,161,243,270,277],thi:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,19,21,22,23,24,25,26,27,28,30,31,32,33,34,35,42,44,53,54,56,58,59,60,61,62,64,65,67,72,73,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,129,130,131,133,135,136,137,138,139,141,142,143,144,147,153,155,156,157,159,160,161,162,163,165,167,169,170,172,173,174,175,176,177,179,180,181,182,183,184,186,187,188,189,191,193,194,195,196,197,200,201,202,203,204,205,206,207,208,209,210,211,212,213,215,216,217,218,220,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,270,271,273,274,275,276,277,280,281,282,283,284,285,286,287,288,290,291,292,293,294,295,296,298],thing:[1,14,22,25,27,56,62,91,94,97,98,135,188,207,223,254,255,273,276,280,281,282,286,288],thingi:[208,295,296],thingy_boot:288,thingy_debug:[288,295,296],thingy_my_sensor:288,think:[10,14,129,282],third:[6,20,101,247,249,256,274,282],thorough:276,those:[1,14,32,33,40,56,58,59,60,62,94,97,129,138,142,223,236,276,280,281,282],though:[14,90,129,180,188,212,223],thought:[14,282],thread:[9,246,256,260,262],three:[2,11,20,60,62,90,129,131,167,206,223,224,226,240,243,246,248,249,255,256,262,267,268,270],through:[8,14,22,24,62,63,90,100,129,134,141,147,152,155,156,157,162,165,174,175,182,191,200,212,238,248,250,252,255,256,258,262,264,273,274,280,282,285,287,290],throughout:[1,94,273],throughput:[14,22],thrown:6,thu:[90,94,99,129,135,174,175,187,188,191,243,270],tick:[14,85,87,92,97,98,99,101,131,188,193,215,243,258,259,270,288],ticker:85,ticket:10,tickl:[98,195],tid:[78,291,294],tie:223,tied:[14,153],ties:[90,246],time:[1,7,9,11,12,20,21,22,23,26,28,32,35,44,58,59,60,61,62,78,83,84,85,88,90,93,94,97,98,99,100,129,131,137,141,152,161,162,180,182,195,207,215,223,224,236,240,242,243,246,249,251,253,254,255,259,261,267,268,270,273,274,280,281,282,284,288,290,295],time_datetim:[223,288],time_datetime_test:273,time_in_flight:90,timelin:14,timeout:[21,28,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,88,92,99,188,241,266,281],timer:[14,25,85,87,88,94,98,182,190,195,212,288],timer_0:25,timer_4:267,timer_5:25,timer_ev_cb:[258,288],timer_interrupt_task:[240,268],timer_num:193,timestamp:[73,207],timev:101,timezon:[101,273],timo:88,timo_func:85,timtest:[7,62],ting:[254,255],tini:[262,294],tinycbor:[7,283],tinycrypt:[7,14],tinyprintf:102,tip:98,titl:[8,293],tlm:254,tlv:[28,129],tmp:[58,60,81,83,170,223],tmpstr:288,tmr:193,todo:[62,180,254,255],togeth:[1,44,56,62,90,138,180,223,250,262,282],togetherth:14,toggl:[7,100,187,240,243,258,268,270],token:[76,93,99,215,277],told:196,too:[21,90,93,101,135,161,162,180,183,225],took:260,tool:[1,2,3,5,6,7,9,12,13,14,40,55,58,59,62,63,64,67,79,80,81,82,93,94,95,97,134,135,224,225,226,233,237,238,240,241,245,246,247,256,257,262,264,266,267,268,271,273,274,275,276,277,282,283,288,290,292,293,295,296,298],toolbox:2,toolchain:[2,3,5,7,12,14,34,60,64,238,241,247,257,264,266,274,290,293,298],toolkit:3,tools_1:[58,59,60,82,83],top:[1,10,12,36,62,90,100,135,174,188,225,247,254,255,273,282],topic:1,total:[9,56,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,90,100,102,129,180,259,261,267,282],tour:248,track:[20,22,23,101,129,180],tradeoff:223,trail:[90,129],trailer:129,transact:[21,188,191],transfer:[23,191,281],transform:180,transit:129,translat:[187,254],transmiss:[21,28,191,194,219,267],transmit:[14,30,32,131,188,191,267],transmitt:194,transport:[21,22,28,81,131,134,226,241,246,247,256,260,266,281,282,283,285,287,290],travers:[90,155,156,157,162,165],traverse_dir:[155,156,157,162,165],treat:[141,201],tree:[1,6,7,14,51,56,62,94,160,246],tri:[3,65,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,130,137,225,267],trial:94,tricki:100,trig:187,trigger:[6,10,88,187],trim:90,trip:98,triplet:207,troubleshoot:[224,225],truncat:[158,170,171,173],truncate_test:273,trust:[23,28,281],tt_chr_f:253,tt_svc_type_p:253,ttl:[247,294],tty:[8,258,274,284,291,294],ttys002:67,ttys003:67,ttys005:292,ttys012:[291,294],ttys10:8,ttys2:[8,258,274,284,291,294],ttys5:8,ttyusb0:[14,67,247],ttyusb2:[8,274,291,294],ttyusb:[8,258,274,284,291,294],tu_any_fail:[234,273],tu_case_init_fn_t:233,tu_case_report_fn_t:233,tu_config:[233,234],tu_init:233,tu_restart_fn_t:233,tu_suite_init_fn_t:233,tupl:101,turn:[14,25,135,182,183,187,223,238,246,247,257,258,261,264,275,276,284,291],tutiori:[74,77],tutori:[2,3,6,7,8,12,14,22,24,60,78,208,209,213,214,215,233,237,238,240,241,243,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,266,267,268,270,273,274,281,282,283,284,285,286,287,288,291,292,294],tv_sec:[101,273,288],tv_usec:[101,273,288],tvp:101,tweak:152,two:[2,3,12,14,19,20,22,23,24,28,32,44,46,51,56,62,67,90,91,92,93,94,96,100,101,129,131,133,174,180,188,206,207,215,221,223,224,225,226,237,238,240,243,246,247,249,251,254,255,256,258,259,260,261,262,263,264,267,268,270,273,274,275,276,277,278,282,283,284,287,288,291,294],tx_data:281,tx_done:194,tx_func:194,tx_len:281,tx_off:281,tx_phys_mask:28,tx_power_level:[28,30],tx_time_on_air:267,txbuf:191,txd:267,txpower:267,txrx:191,txrx_cb:191,txt:[14,71,154,158,161,164,171,172,173,296],type:[1,7,8,10,12,14,20,21,24,28,30,31,32,40,44,46,47,54,56,58,59,60,62,67,85,90,91,94,97,100,129,130,131,134,161,162,177,178,180,187,191,194,200,201,205,206,208,211,213,215,218,225,226,228,229,230,231,232,237,240,241,243,246,247,249,250,251,252,253,254,256,259,260,261,262,266,267,268,270,273,274,275,276,277,280,281,282,286,287,288,291,292,294,295,296],typedef:[27,88,91,98,100,101,130,131,151,187,191,193,194,200,207,215],typic:[3,9,22,27,32,56,62,90,93,94,95,98,129,131,135,174,175,182,184,187,188,191,206,207,223,224,226,233,249,254,255,273],tz_dsttime:[101,273],tz_minuteswest:[101,273],u8_len:137,uart0:[131,292],uart:[7,8,14,22,56,97,131,135,189,218,238,246,247,259,260,261,262,263,264,267,281,288,295],uart_bitbang:[189,259],uart_flow_control_non:131,uart_hal:[7,260,261,262],uart_rx_char:194,uartno:281,ubuntu:[4,6,7,58,81],uci:24,udev:260,udp:67,uext:294,uicr:24,uid:254,uint16:[28,29],uint16_max:28,uint16_t:[21,90,91,92,98,99,100,129,136,141,142,180,188,191,200,207,218,224,251,280,281,282],uint32:[28,72],uint32_max:28,uint32_t:[85,87,90,91,92,99,100,101,129,136,141,149,153,154,158,159,161,163,164,169,172,173,175,176,180,183,185,188,190,191,193,195,206,207,209,224],uint64:28,uint64_t:200,uint8:28,uint8_max:28,uint8_t:[24,33,88,90,91,92,94,98,100,129,131,135,136,141,149,153,154,155,156,157,161,162,163,164,165,169,172,175,180,183,185,186,188,191,194,200,206,207,209,218,224,249,251,254,255,281,282],uint_max:205,uinteg:[200,205],ultim:251,umbrella:223,unabl:[2,180,256,259,260,263],unaccept:21,unadorn:21,unam:2,unc_t:215,unchang:[94,180],unconfirm:267,und:[28,31],undefin:[83,183,226],under:[4,7,10,11,12,14,21,27,35,56,62,72,102,130,135,215,253,256,260,261,263,281,282],underli:[97,135,141,153,161,162,181,182,191,207],underlin:244,understand:[7,14,101,207,223,236,237,241,266,267,275,282],understood:[161,228],underwai:129,undesir:93,undirect:[28,249],unexpect:[21,155,156,157,162,165,168],unexpectedli:[21,273],unfortun:14,unicast:32,unicod:152,unidirect:28,unifi:135,uniform:[30,60],uniformli:63,uninstal:7,unint32:72,uninterpret:226,union:[180,200,251],uniqu:[9,20,33,94,180,183,206,224,225,226,254,267],unit:[1,7,14,21,28,40,52,58,59,60,85,100,129,226,273,298],unittest:[7,46,56,62,226,246,273,281],univers:[14,194],unix:[2,60,153,237],unknown:[21,225],unlabel:281,unless:[28,100,129,174,188,196,226,281,282],unlicens:22,unlik:[21,91,273],unlink:[59,61,82,84,154,162,167,170],unlink_test:273,unlock:[207,212],unmet:94,unpack:[58,60],unplug:263,unpredict:162,unprovis:32,unrecogn:14,unregist:211,unresolv:[182,273],unrespons:21,unset:[51,129],unsign:[100,200,224,263,288],unspecifi:[21,43],unstabl:[58,59,81,82],unsuccess:188,unsupport:[21,253],unsur:180,unsync:27,untar:4,until:[14,21,27,62,87,88,90,93,99,131,141,180,188,191,194,249,254,255,267,275],unuesd:252,unus:[72,280,282],unwritten:129,updat:[2,4,14,16,21,28,31,37,38,50,53,58,59,60,61,81,82,84,90,129,143,180,226,250,252,258,259,271,273,280,282,283,288],upgrad:[2,40,57,60,80,94,129,131,237,238,247,256,264,265,274,282,295,298],uplink:267,uplink_cntr:267,uplink_freq:267,upload:[14,44,71,72,153,196,223,241,259],upon:[1,3,10,27,56,90,129,180,224,252],upper:[24,180,194,226],uppercas:210,upstream:133,uri:[28,30,134],url:[28,254,273,275],url_bodi:254,url_body_len:254,url_schem:254,url_suffix:254,usabl:[1,91,94,246,254],usag:[1,9,58,59,60,63,81,82,83,90,100,135,136,153,174,180,188,207,215,220,224,226,243,267,270,281,292],usart6_rx:294,usart6_tx:294,usb:[2,3,14,22,43,67,238,240,241,243,247,256,257,259,260,261,262,263,264,266,267,268,270,274,282,284,290,291,293,294],usbmodem1411:8,usbmodem14211:67,usbmodem14221:67,usbmodem401322:8,usbmodem:8,usbseri:[8,258,274,284,291,294],usbttlseri:247,use:[1,4,5,6,7,8,11,12,14,15,20,21,22,23,25,28,31,33,42,46,51,52,56,57,59,60,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,82,83,85,87,88,94,95,97,99,100,129,130,131,132,135,137,141,142,152,153,166,167,170,174,177,178,180,181,188,191,193,200,201,202,203,204,205,206,207,208,209,210,211,212,215,216,217,220,221,223,224,225,226,233,237,238,239,240,241,242,243,245,246,247,249,250,251,252,254,255,256,257,258,259,262,264,266,267,268,270,271,273,274,276,277,280,281,282,283,284,287,288,290,291,292,293,294,295,296],use_wl:28,use_wl_inita:28,usec:[87,284,288],used:[6,7,11,12,14,20,21,23,24,25,28,30,31,32,35,47,50,62,67,73,85,87,90,91,92,94,99,100,101,102,129,130,131,136,137,141,144,152,153,157,180,185,188,189,191,193,195,200,207,208,209,215,223,224,225,226,228,229,230,231,232,235,236,237,242,243,247,249,251,252,253,254,255,256,267,270,273,274,275,276,280,281,283,284],useful:[3,14,21,93,172,209,246,275],user:[1,2,4,6,7,8,9,19,21,23,25,49,56,59,60,62,79,81,82,83,85,88,90,91,94,95,98,129,131,132,135,136,141,147,153,174,183,191,192,193,194,214,223,224,225,226,234,237,240,253,256,262,267,268,274,275,276,277,281,282,288,294],user_defined_head:90,user_hdr:90,user_hdr_len:90,user_id:[225,226],user_manu:237,user_pkthdr_len:90,usernam:[10,49,60,275],uses:[2,4,6,7,8,12,15,21,22,23,24,25,31,33,56,66,67,68,69,70,71,72,73,74,75,76,77,78,79,87,88,94,98,101,102,129,131,132,133,134,135,137,141,152,153,180,182,187,188,206,207,208,209,211,212,215,217,221,225,226,233,235,238,240,241,251,252,253,256,258,261,264,266,268,274,275,277,283,284,285,288,291,294],using:[1,2,4,6,7,8,10,11,12,20,21,22,25,27,28,29,30,32,34,37,38,44,45,58,59,60,61,62,64,67,77,81,82,83,84,85,87,88,90,92,93,95,96,97,98,99,100,101,102,129,130,135,141,144,146,151,152,153,161,180,182,187,188,190,191,193,195,200,209,210,212,215,223,224,226,229,230,232,233,237,238,240,241,243,244,246,247,253,255,256,257,258,259,260,261,262,263,264,266,267,268,270,273,274,281,282,283,285,288,292,293,295,296],usr:[4,6,11,37,58,59,60,61,81,82,83,84],usu:96,usual:[14,25,90,91,102,135,204,206],utc:[69,101,273],utctim:101,utf:30,util:[7,11,21,22,32,93,102,131,152,153,189,191,206,226,238,264,273,282],util_cbmem:288,util_cbmem_test:7,util_crc:[288,292,294],util_mem:[7,256,258,259,260,261,262,263,267,274,284,288,291,292,294],util_pars:[267,284,288],uuid128:[28,30,251,253,255],uuid128_is_complet:[28,30],uuid16:[28,29,30,251,280,282],uuid16_is_complet:[28,30],uuid32:[28,30],uuid32_is_complet:[28,30],uuid:[28,29,30,31,33,67,251,253,255,280,282,283],uvp:101,v10:288,v14:260,v25:260,va_arg:209,va_list:[228,231],val:[24,25,40,51,58,59,60,62,94,130,184,187,191,201,206,224,225,226,238,254,255,258,264,267,281,282,283],val_len_max:130,val_str:130,valid:[21,40,51,54,58,59,60,62,67,73,90,129,136,141,151,153,170,177,178,180,188,191,207,251,273,281,282],valu:[1,4,7,12,21,24,25,28,29,30,31,38,40,43,47,51,54,58,59,60,62,63,65,66,67,69,72,73,76,81,82,83,86,90,91,94,99,100,101,129,130,135,175,176,180,183,187,188,191,192,193,194,195,200,206,208,210,212,215,223,224,238,240,241,247,250,251,252,253,254,255,264,266,268,271,275,276,280,281,282,284,285,287,288,290,295],valuabl:275,value1:[51,226],value2:[51,226],valuen:226,vanilla:152,vari:[9,90,97,129],variabl:[1,4,11,14,25,35,38,51,60,62,63,66,90,91,100,130,131,174,200,206,207,208,209,212,220,223,228,231,237,243,249,251,267,270,275,276,283,284,285,288],variant:[23,96,187],variat:12,varieti:[4,252],variou:[24,25,62,90,129,133,135,182,252,257,267],vdd:14,vector:284,vendor:275,ver:[1,7,56,198,199,237,247,256,274,275,276,277,281,282],ver_len:199,ver_str:199,verb:63,verbos:[1,7,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,256,274],veri:[1,9,32,56,90,100,102,129,180,208,244,245,253,258,259,275,282,283,295],verif:23,verifi:[23,58,60,81,83,129,180,182,209,223,241,243,259,260,261,263,266,267,270,273,281,282,283],versa:[8,223],version:[1,2,4,6,7,11,12,14,22,23,35,38,40,42,44,48,56,57,61,80,84,85,131,141,180,196,198,199,206,223,226,237,238,241,247,255,256,258,259,260,261,262,263,264,266,267,274,278,281,284,288,291,294,295,296],via:[8,14,21,27,43,56,90,91,129,131,135,153,155,156,157,162,165,174,175,177,180,181,182,188,212,215,223,224,226,241,247,248,249,251,259,261,266,267,275,281,284,285,287,290],vice:[8,223],vid:260,view:[1,7,10,12,31,51,63,67,210,214,215,223,224,226,275,280,287,296],vim:60,vin:284,violat:21,viper:11,virtual:[14,67,184,187],virtualbox:256,visibl:[2,29],visit:[14,40,58,59,60],visual:[5,13,296],visualstudio:12,vol:23,volatil:260,voltag:[135,137,182,192,260,282],volum:[30,152],vp_len:130,vscode:12,vtref:[259,261,267,282],vvp:101,wai:[2,3,9,14,22,31,32,60,62,85,88,93,100,101,131,153,187,188,189,206,223,225,244,275,276,277,281,282],wait:[14,85,86,87,88,90,92,93,99,100,137,183,188,191,226,240,243,262,267,268,270,280,281,282,290],waitin:92,wake:[14,86,90,93,99,100,183,212,243,270],wakeup:[100,212],walk:[90,100,147,151,180,206,282],wall:6,wallclock:[85,101],wanda:82,want:[1,3,11,14,19,51,58,59,60,61,62,81,84,85,86,90,91,92,93,98,99,100,129,130,131,151,153,170,187,206,207,208,211,224,236,238,242,246,248,249,251,253,254,255,256,257,259,260,261,262,264,267,271,273,275,281,282,285,295,298],warn:[1,6,14,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,63,225,251,259],warranti:[4,256,281,282,288,295,296],wasn:14,watch:246,watchdog:[93,98,192],watchpoint:[256,260],wdog:68,wear:246,wear_level_test:273,wearabl:9,web:[237,244],webfreak:12,websit:244,weird:14,welcom:[8,135,245,274,284],well:[8,14,23,41,56,90,91,97,99,129,130,135,196,228,236,250,267,280,282],were:[30,74,86,90,129,182,223,276,281],werror:[6,51],wes:267,west:101,wfi:260,wget:[58,60,81,83],what:[7,8,14,21,42,56,97,99,136,141,174,175,180,208,209,223,226,239,243,249,252,253,254,255,270,273,276,280,281,282],whatev:[24,99,274,282],wheel:[8,237],when:[1,2,6,7,8,10,12,14,15,21,23,24,25,27,30,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,62,63,67,73,82,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,129,130,131,132,135,141,142,143,146,152,153,155,156,157,161,162,163,165,170,172,174,175,180,187,188,191,193,194,196,200,203,207,208,209,211,212,213,215,218,221,223,224,225,226,231,233,235,238,240,241,243,244,246,247,248,249,252,253,254,255,256,259,260,262,263,264,266,268,270,273,275,276,277,281,282,283,284,285,286,287,288,292,295],whenev:[22,27,91,135,180,200,211,251,253,288],where:[8,9,10,11,14,23,30,32,36,38,51,56,60,61,62,84,90,91,94,96,97,100,101,129,130,131,141,142,143,146,149,151,180,187,190,191,194,199,200,206,223,225,226,238,243,253,254,255,258,259,264,267,270,274,282,284,291,294],wherea:[90,276],whether:[10,12,14,23,85,88,91,101,129,141,156,188,191,192,208,209,210,212,213,214,215,224,226,235,249,251,253,273,284,286,287,288],which:[1,2,4,8,11,14,15,20,21,22,31,33,35,40,56,58,59,60,62,63,67,81,82,83,85,86,87,90,91,93,94,97,98,99,100,101,102,129,130,135,136,138,141,151,152,153,180,183,184,187,188,191,193,196,200,207,209,223,224,225,228,231,234,235,237,241,243,249,250,251,252,253,254,255,256,266,267,270,273,274,275,276,281,282,292,295],white:[23,28],whitelist:28,who:10,whole:[14,136],whose:[62,63,180,212],why:[10,14,243,270],wide:[22,223],wifi:[7,274],wifi_connect:274,wifi_init:274,wifi_request_scan:274,wikipedia:[188,191],winc1500_wifi:274,window:[5,6,7,9,12,14,28,57,67,79,80,94,131,241,247,256,258,259,260,261,262,263,266,267,274,284,291,294,295],winusb:[260,262,294],wipe:145,wire:[8,188,191,267,281,282,294],wireless:22,wish:[6,10,174,175,188,243,270,275,293],withdraw:10,within:[1,12,21,32,42,56,90,94,95,97,129,135,141,146,149,151,174,175,180,182,187,198,200,206,209,210,211,215,224,233,243,252,262,270,273,275,281],without:[6,10,14,23,25,29,31,91,129,153,162,174,175,180,181,206,215,222,223,224,226,241,256,266,273,281,282,286],wno:6,won:[8,14,223,282],word:[6,56,90,93,99,129,180,191,251,256,275,288,295,296],word_siz:191,work:[2,4,8,10,11,14,23,25,56,62,63,86,90,92,93,94,96,97,99,100,129,131,135,136,161,182,224,237,238,242,243,246,247,250,256,258,264,267,270,273,278,280,281,282,285,287,290],work_stack:[243,270],work_stack_s:[243,270],work_task:[243,270],work_task_handl:[243,270],work_task_prio:[243,270],workaround:14,workspac:[1,2,11,40,58,59,60,61,81,83,84],workspaceroot:12,world:[12,22,194,249,254,255,257,277,298],worri:93,worth:[1,95],would:[5,12,14,59,60,82,83,85,90,93,99,129,130,131,138,141,182,187,188,191,203,221,223,224,233,243,246,262,267,270,273,275,276,281,282,290,294],wrap:[101,224,258],wrapper:88,write:[1,9,14,15,21,29,62,65,66,81,82,83,95,129,130,131,135,136,137,141,142,143,147,152,153,158,159,169,171,173,174,175,182,185,187,188,194,196,198,201,202,203,204,206,219,224,231,240,243,245,250,252,253,267,268,270,272,281,282,283,290],write_cmd_rx:[77,238,264],write_cmd_tx:[77,238,264],write_config:[158,171],write_id:173,write_req_rx:[77,238,264],write_req_tx:[77,238,264],write_rsp_rx:[77,238,264],write_rsp_tx:[77,238,264],written:[11,14,21,24,60,83,93,129,141,142,143,146,151,157,158,161,164,170,171,172,174,175,180,188,191,251,253,258,276],wrong:[14,43,282],wsl:[12,60],www:[14,102,237,247,256,281,282,288,294,295,296],x03:281,x86:[4,12],x86_64:[256,288,295,296],xml:[7,89],xpf:4,xpsr:[256,260,262],xtal_32768:94,xtal_32768_synth:25,xxx:[6,94,100,136],xxx_branch_0_8_0:[275,276],xxx_branch_1_0_0:[275,276],xxx_branch_1_0_2:[275,276],xxx_branch_1_1_0:[275,276],xxx_branch_1_1_2:[275,276],xxx_branch_1_2_0:[275,276],xxx_branch_1_2_1:[275,276],xxxx:182,xzf:[58,60,61,83,84],yai:281,yaml:11,year:32,yes:[23,267],yesno:28,yet:[7,14,93,97,130,241,246,266,275,276,282],yield:93,yml:[1,6,7,42,44,51,53,54,56,62,95,96,102,130,131,136,137,153,174,181,206,208,215,223,224,225,226,237,238,240,246,247,256,258,264,267,268,271,273,274,275,277,278,281,283,284,288],you:[1,3,4,5,6,7,8,9,10,11,12,14,19,20,31,34,35,36,40,42,44,46,47,48,51,52,53,54,55,56,58,59,60,61,62,64,65,67,69,77,81,82,83,84,85,93,94,95,96,97,102,129,130,131,132,133,135,138,139,141,142,143,147,156,161,162,164,170,172,174,175,181,182,184,187,188,190,200,203,206,207,208,210,211,212,215,216,217,220,221,222,223,224,225,226,227,233,236,238,240,241,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,270,271,273,274,275,276,277,280,281,282,283,284,285,286,287,288,290,291,292,293,294,295,296,298],your:[1,3,4,6,8,10,14,20,31,40,51,53,56,57,59,60,61,62,71,72,80,82,83,84,85,93,94,95,96,97,98,100,132,133,134,135,136,137,139,141,152,174,182,206,208,215,221,223,225,226,233,240,241,242,244,245,246,247,248,249,250,252,253,254,255,257,258,266,267,268,271,276,280,281,282,283,285,286,290,291,293,294,295,296,298],your_target:14,yourself:[2,10,14,31,93,94,248,281,298],ype:[254,255],yym:6,zadig:[260,262,294],zero:[12,25,85,90,91,94,100,101,130,145,149,151,158,170,171,176,183,187,188,191,192,193,194,200,216,218,219,220,226,243,253,254,255,257,267,270,273,274,275,288,298],zillion:14,zip:[4,259],zone:101},titles:["&lt;no title&gt;","Concepts","Everything You Need in a Docker Container","Setup &amp; Get Started","Installing the Cross Tools for ARM","Native Installation","Installing Native Toolchain","Creating Your First Mynewt Project","Using the Serial Port with Mynewt OS","Mynewt Documentation","FAQ - Administrative","Contributing to Newt or Newtmgr Tools","Developing Mynewt Applications with Visual Studio Code","Appendix","Mynewt OS related FAQ","NimBLE Host ATT Client Reference","NimBLE Host GAP Reference","NimBLE Host GATT Client Reference","NimBLE Host GATT Server Reference","NimBLE Host","NimBLE Host Identity Reference","NimBLE Host Return Codes","BLE User Guide","NimBLE Security","Configure device address","Configure clock for controller","NimBLE Setup","Respond to <em>sync</em> and <em>reset</em> events","GAP API for btshell","GATT feature API for btshell","Advertisement Data Fields","API for btshell app","Bluetooth Mesh","Sample application","Mynewt Newt Tool Documentation","newt build","newt clean","newt complete","newt create-image","newt debug","newt help","newt info","newt install","newt load","newt mfg","newt new","newt pkg","newt resign-image","newt run","newt size","newt sync","newt target","newt test","newt upgrade","newt vals","newt version","Newt Tool Guide","Install","Installing Newt on Linux","Installing Newt on Mac OS","Installing Newt on Windows","Installing Previous Releases of Newt","Theory of Operations","Command Structure","Mynewt Newt Manager Documentation","Command List","newtmgr config","newtmgr conn","newtmgr crash","newtmgr datetime","newtmgr echo","newtmgr fs","newtmgr image","newtmgr log","newtmgr mpstat","newtmgr reset","newtmgr run","newtmgr stat","newtmgr taskstat","Newt Manager Guide","Install","Installing Newtmgr on Linux","Installing Newtmgr on Mac OS","Installing Newtmgr on Windows","Installing Previous Releases of Newtmgr","Callout","Scheduler","CPU Time","Event Queues","Heap","Mbufs","Memory Pools","Mutex","Apache Mynewt Operating System Kernel","BSP Porting","Porting Mynewt to a new CPU Architecture","Porting Mynewt to a new MCU","Porting Mynewt OS","Sanity","Semaphore","Task","OS Time","Baselibc","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","&lt;no title&gt;","Bootloader","Config","Console","Customizing Newt Manager Usage with mgmt","Newt Manager","Using the OIC Framework","Drivers","flash","mmc","elua","lua_init","lua_main","Flash Circular Buffer (FCB)","fcb_append","fcb_append_finish","fcb_append_to_scratch","fcb_clear","fcb_getnext","fcb_init","fcb_is_empty","fcb_offset_last_n","fcb_rotate","fcb_walk","The FAT File System","File System Abstraction","fs_close","fs_closedir","fs_dirent_is_dir","fs_dirent_name","fs_filelen","fs_getpos","fs_mkdir","fs_open","fs_opendir","struct fs_ops","fs_read","fs_readdir","fs_register","fs_rename","fs/fs Return Codes","fs_seek","fs_unlink","fs_write","fsutil_read_file","fsutil_write_file","Newtron Flash Filesystem (nffs)","struct nffs_area_desc","struct nffs_config","nffs_detect","nffs_format","nffs_init","Internals of nffs","Other File Systems","Hardware Abstraction Layer","BSP","Creating New HAL Interfaces","Flash","hal_flash_int","GPIO","I2C","Using HAL in Your Libraries","OS Tick","SPI","System","Timer","UART","Watchdog","Image Manager","imgmgr_module_init","imgr_ver_parse","imgr_ver_str","JSON","json_encode_object_entry","json_encode_object_finish","json_encode_object_key","json_encode_object_start","json_read_object","Logging","Sensor API","Creating and Configuring a Sensor Device","Sensor Device Driver","Mynewt Sensor Framework Overview","Sensor Listener API","Sensor Manager API","OIC Sensor Support","Sensor Shell Command","Shell","shell_cmd_register","shell_evq_set","shell_nlip_input_register","shell_nlip_output","shell_register","shell_register_app_cmd_handler","shell_register_default_module","Split Images","Statistics Module","Validation and Error Messages","Compile-Time Configuration and Initialization","System Modules","TEST_ASSERT","TEST_CASE","TEST_CASE_DECL","TEST_PASS","TEST_SUITE","testutil","tu_init","tu_restart","OS User Guide","Blinky, your \u201cHello World!\u201d, on STM32F303 Discovery","Enabling Newt Manager in Your Application","How to Define a Target","How to Use Event Queues to Manage Multiple Events","Over-the-Air Image Upgrade","Pin Wheel Modifications to \u201cBlinky\u201d on STM32F3 Discovery","Tasks and Priority Management","Try Markdown","Bluetooth Low Energy","Set up a bare bones NimBLE application","Use HCI access to NimBLE controller","BLE Peripheral Project","Advertising","BLE Peripheral App","Characteristic Access","GAP Event callbacks","Service Registration","BLE Eddystone","BLE iBeacon","Blinky, your \u201cHello World!\u201d, on Arduino Zero","Project Blinky","Enabling The Console and Shell for Blinky","Blinky, your \u201cHello World!\u201d, on Arduino Primo","Blinky, your \u201cHello World!\u201d, on STM32F4-Discovery","Blinky, your \u201cHello World!\u201d, on a nRF52 Development Kit","Blinky, your \u201cHello World!\u201d, on Olimex","Blinky, your \u201cHello World!\u201d, on RedBear Nano 2","Enabling Newt Manager in Your Application","Remote Device Management","Over-the-Air Image Upgrade","LoRaWAN App","How to Use Event Queues to Manage Multiple Events","OS Fundamentals","Tasks and Priority Management","How to Reduce Application Code Size","Other","Write a Test Suite for a Package","Enable Wi-Fi on Arduino MKR1000","Adding Repositories to your Project","Create a Repo out of a Project","Accessing a private repository","Upgrade a repo","Air Quality Sensor Project","Air Quality Sensor Project via Bluetooth","Air Quality Sensor Project","Adding an Analog Sensor on nRF52","Adding OIC Sensor Support to the bleprph_oic Application","Enabling an Off-Board Sensor in an Existing Application","Enabling OIC Sensor Data Monitoring in the sensors_test Application","Changing the Default Configuration for a Sensor","Enabling OIC Sensor Data Monitoring","Developing an Application for an Onboard Sensor","Sensors","Sensor Tutorials Overview","Project Slinky using the Nordic nRF52 Board","Project Sim Slinky","Project Slinky","Project Slinky Using Olimex Board","SEGGER RTT Console","SEGGER SystemView","Tooling","Tutorials"],titleterms:{"abstract":[153,182],"default":[243,258,270,286],"function":[14,94,101,102,138,141,196,200,207,209,211,212,226,233,243,251,253,270,283,286],"import":237,"new":[7,45,95,96,180,184,250,270,286,288,291,292,294],"public":24,"return":[21,137,139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,177,178,179,197,198,199,201,202,203,204,205,216,217,218,219,220,221,222,228,229,230,231,232,234,235],"switch":[102,243,270],"try":[244,273],Adding:[59,82,224,275,282,283,286,288],For:[4,281],One:14,The:[152,258],Use:[2,238,240,247,258,264,268,288,291,294],Used:207,Uses:206,Using:[8,58,81,90,131,134,189,281,284,288,294],acceleromet:286,access:[247,251,277],adafruit:14,adc:282,add:[67,94,254,255,280,281,283,288],addit:275,address:[20,24,31,254,255],administr:10,advertis:[14,28,30,31,249,254,255],air:[241,266,279,280,281],all:[14,240,268],altern:14,ambigu:225,analog:282,apach:[9,32,93],api:[14,28,29,31,85,86,87,88,89,90,91,92,98,99,100,101,130,131,152,153,174,181,183,184,185,187,188,190,191,192,193,194,195,206,207,211,212,288],app:[9,31,62,223,247,250,267,282,288,290,296],app_get_light:283,app_set_light:283,appendix:[13,94],applic:[7,12,33,93,206,207,208,223,237,238,240,243,246,247,254,255,256,258,259,260,261,262,263,264,267,268,270,271,274,282,283,284,285,286,288,291,294],apt:[58,81],architectur:95,arduino:[8,256,259,274],area:[174,180,225],argument:[139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,169,170,171,172,173,177,178,197,198,199,201,202,203,204,205,216,217,218,219,220,222,228,229,230,231,232,234,235],arm:[4,14],artifact:62,assert:273,assign:225,associ:12,att:[15,21],attach:247,attribut:[31,253],autocomplet:37,avail:[28,29,40,44,51,257,275,290,293],bare:246,baselibc:102,bash:37,basic:93,beacon:[254,255],bearer:32,begin:[31,249],being:251,belong:31,between:[14,274],binari:[58,60,81,83],bit:6,bitbang:14,ble:[14,22,246,248,250,254,255,282,283],ble_gap_disc_param:14,blehci:247,blemesh:14,bleprph_gap_ev:252,bleprph_oic:283,blink:237,blink_rigado:49,blinki:[7,237,242,256,257,258,259,260,261,262,263],block:[14,180],bluetooth:[14,22,32,245,247,280,282],bluez:247,bno055:284,bno055_log:209,bno055_stat:209,board:[8,97,208,256,259,260,261,262,263,267,274,282,283,284,285,291,294],bone:246,boot:[14,129,223],bootload:[14,129,247,256,259,260,261,262,263,267,274,284,288,291,294],branch:[59,82],breakout:8,brew:6,bsp:[54,94,97,183,225],btmgmt:247,btmon:247,btshell:[14,28,29,31],buffer:141,bug:10,build:[7,9,12,14,35,56,62,237,238,242,243,246,247,256,258,259,260,261,262,263,264,267,270,274,282,283,284,285,286,288,291,292,294],cach:180,call:[14,286],callback:252,callout:[85,240,268],can:10,cannot:286,categori:298,chang:[34,64,282,286],channel:28,characterist:[31,248,251],check:[58,59,60,81,82,83,94,98,129,212],choos:273,circular:141,clean:36,clear:263,cli:[130,281],client:[15,17],clock:25,close:267,cmsis_nvic:14,code:[12,14,21,94,95,168,224,271,273],collect:180,command:[12,14,28,29,40,44,51,63,65,67,133,209,214,215,238,247,264,281,292],committ:10,commun:[8,238,258,264],compil:[14,95,226],complet:[37,215],compon:[22,275],comput:[58,81,274,284,288],concept:[1,223],conclus:[246,254,255,282],condit:226,config:[66,130],configur:[1,12,24,25,28,29,31,130,152,206,207,208,209,212,225,226,237,238,254,255,258,264,286],confirm:266,conflict:226,congratul:273,conn:67,connect:[14,28,31,238,241,247,256,258,259,260,261,262,263,264,266,267,274,282,283,284,285,288,291,292,294,295],consider:[243,270],consol:[131,215,224,258,274,284,288,295],contain:2,content:[34,64],context:[243,270],contribut:11,control:[25,247,254,255,283,284,285,290],copi:[94,283],core:[14,21,93,97],correct:14,cpu:[87,95,97],crash:68,creat:[7,38,90,94,95,184,208,237,238,241,246,247,250,254,255,256,259,260,261,262,263,264,266,267,268,270,273,274,276,281,282,283,284,285,288,291,292,294],creation:93,cross:4,crystal:25,current:223,custom:[98,132,238,264],data:[30,101,138,141,153,174,180,188,196,200,207,209,211,212,215,233,249,267,282,283,284,285,286,287,288],datetim:69,debian:[58,81],debug:[12,39,62,94],debugg:[4,12],declar:224,decod:200,defin:[12,94,209,224,239],definit:[186,225,226],delai:14,delet:[67,283],depend:[7,62,94,97,136,137,181,182,237,238,258,264,276,283,288],descript:[35,36,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,66,67,68,69,70,71,72,73,74,75,76,77,78,85,86,87,88,89,91,92,97,98,99,100,101,102,131,135,138,141,152,153,174,182,183,185,186,187,188,190,191,192,193,194,195,196,200,215,223,233,284],descriptor:[31,248,253,275],design:[135,182],detail:224,detect:[14,180],determin:251,develop:[12,261,288],devic:[2,14,24,28,31,130,207,208,209,241,247,265,266,283,284,285,286,290],differ:14,direct:31,directori:[62,180],disabl:28,discov:31,discoveri:[28,237,242,260],disk:180,disk_op:153,displai:31,docker:2,document:[10,14,34,64],doe:275,download:[11,58,62,81,94,237,242,267,282],driver:[14,135,207,209,281,282,286],duplic:225,eabi:14,earli:14,echo:70,eddyston:254,edit:10,editor:10,elf:14,elua:138,empti:[254,255],emul:284,enabl:[2,14,28,37,215,223,224,238,258,264,274,283,284,285,287,288],encod:200,end:14,endif:[208,209],energi:245,enhanc:174,enter:246,environ:11,equip:[243,270],eras:259,error:[14,225],establish:[31,247,274],etap:282,event:[27,88,240,252,258,268],everyth:[2,267,282],exactli:14,exampl:[8,21,22,27,35,36,38,39,40,44,45,46,47,48,49,51,52,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,88,93,130,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,160,161,162,164,165,167,169,170,171,172,173,177,178,182,186,194,198,199,201,202,203,204,205,216,218,219,221,222,225,226,228,229,230,232,233,234,235,240,268],execut:[6,237,242,259,260,261,263,267,282,292,295,296],exist:[238,258,264,275,284],explor:7,express:225,extend:[14,28,288],extens:[2,12],extern:[237,256,274],faq:[10,14],fat:152,fcb:141,fcb_append:142,fcb_append_finish:143,fcb_append_to_scratch:144,fcb_clear:145,fcb_getnext:146,fcb_init:147,fcb_is_empti:148,fcb_offset_last_n:149,fcb_rotat:150,fcb_walk:151,featur:[7,10,22,23,29,32,93],fetch:[7,256,274],field:30,file:[14,94,136,137,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,180,181,224,230,276,283,286,288],filesystem:[153,174],fill:94,find:275,firmwar:14,first:[7,9],flag:[35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78],flash:[94,129,136,141,174,180,185,225,259,263],forget:14,format:[14,129,180],framework:[134,209,210,238,264,287],from:[58,59,60,81,82,83,131,283,285,286],fs_close:154,fs_closedir:155,fs_dirent_is_dir:156,fs_dirent_nam:157,fs_filelen:158,fs_getpo:159,fs_mkdir:160,fs_op:163,fs_open:161,fs_opendir:162,fs_read:164,fs_readdir:165,fs_regist:166,fs_renam:167,fs_seek:169,fs_unlink:170,fs_write:171,fsutil_read_fil:172,fsutil_write_fil:173,ft232h:8,full:131,fundament:269,futur:174,gap:[16,28,252],garbag:180,gatt:[17,18,29,280],gcc:[6,14],gdb:6,gener:[23,31,135,182,226,240,268],get:[3,58,81,209],git:[10,60],global:[35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78],gpio:187,grei:14,group:14,guarante:252,guid:[22,56,79,236],hal:[97,184,189,281],hal_flash_int:186,hal_i2c:188,handler:[130,206,215],hardcod:24,hardwar:[24,182,237,267,282,284,295,296],hci:[21,247],header:[15,16,17,18,20,21,90,136,137,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,181,224,283,286],heading3:244,heading4:244,heap:89,hello:[237,256,259,260,261,262,263],help:[40,215],high:129,hold:224,homebrew:[59,82],host:[15,16,17,18,19,20,21,254,255],how:[10,102,226,239,240,268,271,275,283,286],i2c:188,iOS:14,ibeacon:255,ident:20,identifi:275,ignor:225,imag:[14,38,47,72,129,196,223,237,238,241,242,247,259,260,261,262,263,264,266,267,274,282,283,284,285,286,288,291,294],imgmgr_module_init:197,imgr_ver_pars:198,imgr_ver_str:199,immedi:14,implement:[95,135,206,209,224],includ:[31,209,224,253],indefinit:[254,255],info:41,inform:215,initi:[31,136,137,174,207,209,224,226,243,270,286],inod:180,input:[131,215],instal:[2,4,5,6,11,12,14,37,42,57,58,59,60,61,80,81,82,83,84,237,267,282],instead:288,integr:129,interfac:[181,184,207],intern:[174,180],interrupt:[240,268],introduct:[9,15,16,17,18,19,20,21,32,56,94,240,248,268,273],invalid:225,invert:14,invok:133,issu:14,join:267,json:200,json_encode_object_entri:201,json_encode_object_finish:202,json_encode_object_kei:203,json_encode_object_start:204,json_read_object:205,kei:[14,23,28],kernel:93,kit:261,l2cap:[14,21,28],laptop:10,latest:[58,59,60,81,82,83],launch:296,layer:182,lead:14,led:[237,242],legaci:28,level:[129,206,241,266],libc:6,librari:[189,237],like:10,limit:129,line:215,link:4,linker:94,linux:[2,4,6,8,11,58,61,81,84],lis2dh12_onb:208,list:[10,65,102,138,141,196,200,207,211,212,223,233,244,254,255,284,288],listen:[211,288],load:[43,238,247,256,259,260,261,262,263,264,274,283,284,285,286,288,291,294],loader:223,log:[73,206,209,241,266],look:212,lorawan:267,low:245,lua_init:139,lua_main:140,mac:[2,4,6,8,11,59,61,82,84],macro:101,main:[243,258,270,283,286,288],make:10,manag:[9,21,56,64,79,132,133,196,212,238,240,243,264,265,268,270],manual:[58,81],map:[94,129],markdown:244,master:[59,82],mbuf:90,mcu:[14,94,96,97],measur:174,memori:[91,263],merg:10,mesh:[14,22,32],messag:[14,225],method:[24,58,81],mfg:44,mfghash:14,mgmt:132,mingw:60,minim:131,miscellan:[14,174],mkr1000:274,mmc:137,model:32,modif:242,modifi:[238,258,264,283,288],modul:[14,215,224,227],monitor:[247,285,287],more:[56,237],move:180,mpstat:74,mqueue:90,msy:90,msys2:60,multicast:14,multipl:[12,153,224,225,240,268],mutex:92,my_sensor_app:288,mynewt:[2,7,8,9,12,14,24,32,34,59,64,82,93,94,95,96,97,131,210,246,275,283,285,290],mynewt_v:[208,209],name:[31,215,224,226],nano:263,nativ:[5,6],need:[2,237,242,267,275,284,295,296],newt:[2,9,11,12,14,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,64,79,132,133,238,264],newtmgr:[11,14,66,67,68,69,70,71,72,73,74,75,76,77,78,81,82,83,84,133,215,224,238,241,264,266,291,292,294],newtron:174,next:[6,284],nfc:14,nff:[14,174,180],nffs_area_desc:175,nffs_config:176,nffs_detect:177,nffs_format:178,nffs_init:179,nimbl:[14,15,16,17,18,19,20,21,22,23,26,246,247,254,255],nmp:14,node:32,none:14,nordic:[8,291],normal:90,note:[56,101,138,139,140,142,143,144,145,146,147,148,149,150,151,154,157,159,160,161,162,166,167,169,171,172,175,176,197,198,199,217,224,228,231],notnul:225,nrf52840:14,nrf52:[14,261,282,284,291],nrf52_adc:282,nrf52dk:[8,14],nrf:24,object:[180,207,237,242,257,267,295,296],off:[208,284],oic:[134,213,283,285,287,290],oicmgr:[238,264],olimex:[262,294],omgr_app_init:283,onboard:[208,288],onto:[256,274],open:[247,267],openocd:4,oper:[14,56,62,93,129,188,191,223],option:[238,259,264],orient:28,ota:267,other:[7,12,181,238,264,272,276],out:[14,273,275,276],output:[49,54,131],over:[215,241,266],overrid:[225,226],overview:[65,210,248,249,250,252,257,283,286,287,290,293],own:10,pack:2,packag:[1,7,58,62,81,94,97,131,181,206,207,210,225,226,238,246,256,264,273,274,281,283,284,288],packet:90,passiv:31,patch:10,peer:[21,31],perform:31,peripher:[248,250],persist:130,pin:[14,242],pkg:[14,46,94],platform:[8,182],poll:[207,212],pool:[90,91],port:[8,14,94,95,96,97,267],precis:14,preempt:[243,270],prerequisit:[7,238,240,241,243,247,250,256,257,258,259,260,261,262,263,264,266,268,270,274,281,283,284,285,286,287,288,290,291,292,293,294,298],preview:[34,64],previou:[61,84],primo:259,principl:[135,182],printf:14,prioriti:[225,243,270],privaci:23,privat:277,pro:8,process:[215,258],produc:[6,62],profil:[14,238,241,264,266,292],project:[1,7,10,12,14,22,237,238,246,247,248,256,257,258,259,260,261,262,263,264,267,268,274,275,276,279,280,281,282,291,292,293,294],prompt:215,protect:263,protocol:[215,238,254,255,264],provis:32,pull:[2,10],put:[240,268],qualiti:[279,280,281],queri:[291,294],question:[10,14],queue:[88,240,258,268],radio:14,ram:180,random:[14,24],rate:207,rational:56,read:[31,207,209,251,286,288],reboot:286,rebuild:[11,288],reconfigur:208,recoveri:129,redbear:263,reduc:[14,241,266,271],refer:[15,16,17,18,20,21,226],referenc:226,regist:[98,181,209,212,215,224,284],registr:253,relat:14,releas:[58,59,60,61,81,82,83,84],remot:[265,282],renam:180,repo:[275,276,278,282],repositori:[7,10,56,275,276,277],represent:180,request:10,requir:[94,282],reset:[27,75,129],resign:47,resolut:276,resolv:[62,226,276],respond:27,restart:14,restrict:225,retriev:[223,224],review:[243,251,270],round:242,rtt:[288,295],run:[7,12,14,48,76,256,258,292,295,296],runtim:[24,130],safeti:153,sampl:[33,284,286],saniti:98,satisfi:94,scale:273,scan:31,schedul:86,scratch:180,script:[2,94],section:224,secur:[21,23,28],segger:[4,295,296],select:2,semant:14,semaphor:99,semiconductor:8,send:[31,247,267],sensor:[207,208,209,210,211,212,213,214,279,280,281,282,283,284,285,286,287,288,289,290],sensor_read:288,sensors_test:285,sequenc:223,serial:[8,14,215,247,258,274,291,294],server:18,servic:[31,248,253,280,282],set:[6,11,14,31,58,81,94,206,207,209,225,226,238,246,249,253,258,264,281,283,286,292],settl:25,setup:[3,8,14,26,274,295,296],shell:[209,214,215,258,288],shell_cmd_regist:216,shell_evq_set:217,shell_nlip_input_regist:218,shell_nlip_output:219,shell_regist:220,shell_register_app_cmd_handl:221,shell_register_default_modul:222,should:276,show:[31,67],sign:[129,237,259,260,261,262,263,267,274,282,291,294],signatur:251,sim:292,simul:7,singl:223,size:[14,49,271],skeleton:288,slinki:[291,292,293,294],slot:129,smart:[283,285,290],softwar:296,some:10,sourc:[7,11,56,58,60,81,83,238,254,255,264,281,283],space:180,special:101,specif:[95,276],specifi:[181,226],spi:191,split:223,stack:[243,254,255,270],start:[3,247,274],startup:94,stat:[77,209,224],state:[129,130,223],statist:224,statu:129,step:[11,241,257,266,283,284,285,286,288,293],stm32f303:237,stm32f3:[237,242],stm32f4:260,storag:28,struct:[153,163,175,176],structur:[63,101,138,141,153,174,180,196,200,207,211,212,215,233],stub:131,studio:12,sub:67,submit:10,suit:273,summari:21,support:[2,14,32,62,97,153,182,210,213,237,238,264,283,284,287,288],swap:129,sync:[14,27,50,254,255],syntax:14,syscfg:[206,223,226,283],sysinit_app:226,system:[14,25,56,93,152,153,181,192,225,226,227],systemview:296,tabl:224,talk:274,tap:[59,82],target:[1,24,51,62,94,237,238,239,242,246,247,250,256,258,259,260,261,262,263,264,267,274,282,284,288,291,292,294,295,296],task:[12,14,98,100,225,240,243,268,270,282],taskstat:78,tcp:274,templat:94,termin:284,test:[7,52,94,266,273,281],test_assert:228,test_cas:[229,230],test_case_decl:230,test_pass:231,test_suit:232,testutil:233,theori:[62,188,191,223],thingi:288,thread:153,through:224,tick:190,time:[14,25,87,101,226],timer:[193,240,258,268],togeth:[240,268],tool:[4,11,34,56,60,83,297],toolchain:[4,6],topolog:32,trace:14,transceiv:14,transport:[215,238,264],tree:281,trigger:14,troubleshoot:14,tu_init:234,tu_restart:235,tutori:[223,257,290,293,298],type:[207,209,212,284],uart:194,undefin:225,under:273,undirect:31,unifi:223,unlink:180,unsatisfi:14,updat:11,upgrad:[14,53,58,59,81,82,223,241,266,278],upload:[258,266],usag:[35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,66,67,68,69,70,71,72,73,74,75,76,77,78,132,141],usb2:2,usb:8,use:[10,58,81,90,93,275],user:[22,236],using:[14,56,291,294],val:54,valid:225,valu:[14,137,139,140,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,161,162,164,165,166,167,169,170,171,172,173,177,178,179,197,198,199,201,202,203,204,205,207,209,216,217,218,219,220,221,222,225,226,228,229,230,231,232,234,235,283,286],variabl:224,vector:129,verif:[129,286],verifi:286,version:[55,58,59,60,81,82,83,275,276,282],via:[274,280,282,288],view:[282,283,284,285,288],violat:225,virtualbox:2,visual:12,wait:[254,255],want:[10,237],watch:[237,242],watchdog:195,water:282,welcom:9,what:[10,237,242,275],wheel:242,where:276,why:[90,93,275],window:[2,4,8,11,60,61,83,84],work:12,workspac:12,world:[237,256,259,260,261,262,263],would:10,wrapper:2,write:[31,34,64,180,251,263,273],yml:[14,94,276,282],you:[2,237,242],your:[2,7,9,11,12,58,81,181,189,224,237,238,243,256,259,260,261,262,263,264,270,273,274,275,284,288,292],zero:[14,256]}})
\ No newline at end of file
diff --git a/develop/tutorials/ble/ble.html b/develop/tutorials/ble/ble.html
index 2149adaa6..a486d6faf 100644
--- a/develop/tutorials/ble/ble.html
+++ b/develop/tutorials/ble/ble.html
@@ -233,7 +233,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/ble_bare_bones.html b/develop/tutorials/ble/ble_bare_bones.html
index be65a95b9..cd4b53ddd 100644
--- a/develop/tutorials/ble/ble_bare_bones.html
+++ b/develop/tutorials/ble/ble_bare_bones.html
@@ -235,7 +235,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/blehci_project.html b/develop/tutorials/ble/blehci_project.html
index a11778bf4..9a867e296 100644
--- a/develop/tutorials/ble/blehci_project.html
+++ b/develop/tutorials/ble/blehci_project.html
@@ -235,7 +235,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
index cd15f1cf7..abb00623d 100644
--- a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
+++ b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-adv.html
@@ -244,7 +244,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
index d85655aa6..bc33e3745 100644
--- a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
+++ b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-app.html
@@ -244,7 +244,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
index 25c095b6b..219e87317 100644
--- a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
+++ b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-chr-access.html
@@ -244,7 +244,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
index 5837f5320..707dbeb7b 100644
--- a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
+++ b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-gap-event.html
@@ -244,7 +244,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
index 8505a4622..392edae0f 100644
--- a/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
+++ b/develop/tutorials/ble/bleprph/bleprph-sections/bleprph-svc-reg.html
@@ -244,7 +244,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/bleprph/bleprph.html b/develop/tutorials/ble/bleprph/bleprph.html
index 37d8e740f..60db5fd82 100644
--- a/develop/tutorials/ble/bleprph/bleprph.html
+++ b/develop/tutorials/ble/bleprph/bleprph.html
@@ -242,7 +242,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/eddystone.html b/develop/tutorials/ble/eddystone.html
index 24b1c7795..52d29c969 100644
--- a/develop/tutorials/ble/eddystone.html
+++ b/develop/tutorials/ble/eddystone.html
@@ -235,7 +235,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/ble/ibeacon.html b/develop/tutorials/ble/ibeacon.html
index f33f06d00..f2e11cd5c 100644
--- a/develop/tutorials/ble/ibeacon.html
+++ b/develop/tutorials/ble/ibeacon.html
@@ -235,7 +235,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/blinky/arduino_zero.html b/develop/tutorials/blinky/arduino_zero.html
index e28ff142e..68c4cc9a7 100644
--- a/develop/tutorials/blinky/arduino_zero.html
+++ b/develop/tutorials/blinky/arduino_zero.html
@@ -237,7 +237,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/blinky/blinky.html b/develop/tutorials/blinky/blinky.html
index 7610299d1..a77272436 100644
--- a/develop/tutorials/blinky/blinky.html
+++ b/develop/tutorials/blinky/blinky.html
@@ -235,7 +235,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
@@ -343,7 +344,7 @@ <h2><a class="toc-backref" href="#id4">Overview of Steps</a><a class="headerlink
 tutorials to enable additional functionality such as <a class="reference internal" href="../slinky/project-slinky.html"><span class="doc">remote
 comms</span></a> on the current board. If you have BLE
 (Bluetooth Low Energy) chip (e.g. nRF52) on your board, you can try
-turning it into an :doc`iBeacon &lt;../ble/ibeacon&gt;` or <a class="reference internal" href="../ble/eddystone.html"><span class="doc">Eddystone
+turning it into an <a class="reference internal" href="../ble/ibeacon.html"><span class="doc">iBeacon</span></a> or <a class="reference internal" href="../ble/eddystone.html"><span class="doc">Eddystone
 Beacon</span></a>!</p>
 <p>If you see anything missing or want to send us feedback, please sign up
 for appropriate mailing lists on our <a class="reference external" href="/community.html">Community
diff --git a/develop/tutorials/blinky/blinky_console.html b/develop/tutorials/blinky/blinky_console.html
index 7ef8748d8..a94d79d62 100644
--- a/develop/tutorials/blinky/blinky_console.html
+++ b/develop/tutorials/blinky/blinky_console.html
@@ -237,7 +237,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/blinky/blinky_primo.html b/develop/tutorials/blinky/blinky_primo.html
index 5ebc9ba42..8fad68e2b 100644
--- a/develop/tutorials/blinky/blinky_primo.html
+++ b/develop/tutorials/blinky/blinky_primo.html
@@ -237,7 +237,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/blinky/blinky_stm32f4disc.html b/develop/tutorials/blinky/blinky_stm32f4disc.html
index 36f58df50..5596ef97d 100644
--- a/develop/tutorials/blinky/blinky_stm32f4disc.html
+++ b/develop/tutorials/blinky/blinky_stm32f4disc.html
@@ -237,7 +237,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/blinky/nRF52.html b/develop/tutorials/blinky/nRF52.html
index 2f84c16b9..da3d1b6f5 100644
--- a/develop/tutorials/blinky/nRF52.html
+++ b/develop/tutorials/blinky/nRF52.html
@@ -237,7 +237,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/blinky/olimex.html b/develop/tutorials/blinky/olimex.html
index b1c09e6fe..334525c2c 100644
--- a/develop/tutorials/blinky/olimex.html
+++ b/develop/tutorials/blinky/olimex.html
@@ -237,7 +237,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/blinky/rbnano2.html b/develop/tutorials/blinky/rbnano2.html
index 8de64e4df..4e30fe587 100644
--- a/develop/tutorials/blinky/rbnano2.html
+++ b/develop/tutorials/blinky/rbnano2.html
@@ -237,7 +237,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/devmgmt/add_newtmgr.html b/develop/tutorials/devmgmt/add_newtmgr.html
new file mode 100644
index 000000000..9da3b96ab
--- /dev/null
+++ b/develop/tutorials/devmgmt/add_newtmgr.html
@@ -0,0 +1,647 @@
+
+
+<!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>Enabling Newt Manager in Your Application &mdash; Apache Mynewt 1.3.0 documentation</title>
+    
+
+    
+    
+      <link rel="shortcut icon" href="../../_static/mynewt-logo-only-newt32x32.png"/>
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
+
+    
+      <link rel="stylesheet" href="../../_static/css/sphinx_theme.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/bootstrap-3.0.3.min.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/v2.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/custom.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/restructuredtext.css" type="text/css" />
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
+          <link rel="index" title="Index"
+                href="../../genindex.html"/>
+          <link rel="search" title="Search" href="../../search.html"/>
+      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+          <link rel="up" title="Remote Device Management" href="devmgmt.html"/>
+          <link rel="next" title="Over-the-Air Image Upgrade" href="ota_upgrade_nrf52.html"/>
+          <link rel="prev" title="Remote Device Management" href="devmgmt.html"/> 
+
+    
+    <script src="../../_static/js/modernizr.min.js"></script>
+
+    
+    <script>
+    (function(i, s, o, g, r, a, m) {
+	i["GoogleAnalyticsObject"] = r;
+	(i[r] =
+		i[r] ||
+		function() {
+			(i[r].q = i[r].q || []).push(arguments);
+		}),
+		(i[r].l = 1 * new Date());
+	(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
+	a.async = 1;
+	a.src = g;
+	m.parentNode.insertBefore(a, m);
+})(window, document, "script", "//www.google-analytics.com/analytics.js", "ga");
+
+ga("create", "UA-72162311-1", "auto");
+ga("send", "pageview");
+</script>
+    
+
+  </head>
+
+  <body class="not-front page-documentation" role="document" >
+    <div id="wrapper">
+      <div class="container">
+    <div id="banner" class="row v2-main-banner">
+        <a class="logo-cell" href="/">
+            <img class="logo" src="../../_static/img/logo.png">
+        </a>
+        <div class="tagline-cell">
+            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
+        </div>
+        <div class="news-cell">
+            <div class="well">
+              <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (December 13, 2017)
+            </div>
+        </div>
+    </div>
+</div>
+      
+<header>
+    <nav id="navbar" class="navbar navbar-inverse" role="navigation">
+        <div class="container">
+            <!-- Collapsed navigation -->
+            <div class="navbar-header">
+                <!-- Expander button -->
+                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
+                    <span class="sr-only">Toggle navigation</span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                </button>
+
+            </div>
+
+            <!-- Expanded navigation -->
+            <div class="navbar-collapse collapse">
+                <!-- Main navigation -->
+                <ul class="nav navbar-nav navbar-right">
+                    <li>
+                        <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
+                    </li>
+                    <li class="important">
+                        <a href="/get_started/quick_start.html">Quick Start</a>
+                    </li>
+                    <li>
+                        <a href="/about/">About</a>
+                    </li>
+                    <li>
+                        <a href="/talks/">Talks</a>
+                    </li>
+                    <li class="active">
+                        <a href="/documentation/">Documentation</a>
+                    </li>
+                    <li>
+                        <a href="/download/">Download</a>
+                    </li>
+                    <li>
+                        <a href="/community/">Community</a>
+                    </li>
+                    <li>
+                        <a href="/events/">Events</a>
+                    </li>
+                </ul>
+
+                <!-- Search, Navigation and Repo links -->
+                <ul class="nav navbar-nav navbar-right">
+                    
+                </ul>
+            </div>
+        </div>
+    </nav>
+</header>
+      <!-- STARTS MAIN CONTENT -->
+      <div id="main-content">
+        
+
+
+
+
+
+<div id="breadcrumb">
+  <div class="container">
+    <a href="/documentation/">Docs</a> /
+    
+      <a href="../tutorials.html">Tutorials</a> /
+    
+      <a href="devmgmt.html">Remote Device Management</a> /
+    
+    Enabling Newt Manager in Your Application
+    
+  <div class="sourcelink">
+    <a href="https://github.com/apache/mynewt-documentation/edit/master/docs/tutorials/devmgmt/add_newtmgr.rst" class="icon icon-github"
+           rel="nofollow"> Edit on GitHub</a>
+</div>
+  </div>
+</div>
+        <!-- STARTS CONTAINER -->
+        <div class="container">
+          <!-- STARTS .content -->
+          <div id="content" class="row">
+            
+            <!-- STARTS .container-sidebar -->
+<div class="container-sidebar col-xs-12 col-sm-3">
+  <div id="docSidebar" class="sticky-container">
+    <div role="search" class="sphinx-search">
+  <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">
+    <input type="text" name="q" placeholder="Search documentation" class="search-documentation" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+    
+<!-- Note: only works when deployed -->
+<select class="form-control" onchange="if (this.value) window.location.href=this.value">
+    <option
+      value="/develop"
+      selected
+      >
+      Version: develop (latest - mynewt-documentation)
+    </option>
+    <option
+      value="/latest/os/introduction"
+      >
+      Version: master (latest - mynewt-site)
+    </option>
+    <option
+      value="/v1_2_0/os/introduction"
+      >
+      Version: 1.2.0
+    </option>
+    <option
+      value="/v1_1_0/os/introduction">
+      Version: 1.1.0
+    </option>
+    <option
+      value="/v1_0_0/os/introduction">
+      Version: 1.0.0
+    </option>
+    <option
+      value="/v0_9_0/os/introduction">
+      Version: 0_9_0
+    </option>
+</select>
+    <div class="region region-sidebar">
+      <div class="docs-menu">
+      
+        
+        
+            <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../../index.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../get_started/index.html">Setup &amp; Get Started</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../concepts.html">Concepts</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../tutorials.html">Tutorials</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../blinky/blinky.html">Project Blinky</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../repo/add_repos.html">Working with repositories</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2 current"><a class="reference internal" href="devmgmt.html">Remote Device Management</a><ul class="current">
+<li class="toctree-l3 current"><a class="current reference internal" href="#">Enable Newt Manager in Any App</a></li>
+<li class="toctree-l3"><a class="reference internal" href="ota_upgrade_nrf52.html">Upgrade an Image Over-The-Air</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../../os/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="../../mynewt_faq.html">Mynewt OS related FAQ</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../misc/index.html">Appendix</a></li>
+</ul>
+
+        
+      
+      </div>
+    </div>
+  </div>
+  <!-- ENDS STICKY CONTAINER -->
+</div>
+<!-- ENDS .container-sidebar -->
+
+            <div class="col-xs-12 col-sm-9">
+              <div class="alert alert-info" role="alert">
+  <p>
+    This is the development version of Apache Mynewt documentation. As such it may not be as complete as the latest
+    stable version of the documentation found <a href="/latest/os/introduction/">here</a>.
+  </p>
+  <p>
+    To improve this documentation please visit <a href="https://github.com/apache/mynewt-documentation">https://github.com/apache/mynewt-documentation</a>.
+  </p>
+</div>
+              
+              <div class="">
+                <div class="rst-content">
+                  <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+                   <div itemprop="articleBody">
+                    
+  <div class="section" id="enabling-newt-manager-in-your-application">
+<h1>Enabling Newt Manager in Your Application<a class="headerlink" href="#enabling-newt-manager-in-your-application" title="Permalink to this headline">¶</a></h1>
+<p>In order for your application to communicate with the newtmgr tool and
+process Newt Manager commands, you must enable Newt Manager device
+management and the support to process Newt Manager commands in your
+application. This tutorial explains how to add the support to your
+application.</p>
+<p>This tutorial assumes that you have read the <a class="reference internal" href="../../os/modules/devmgmt/newtmgr.html"><span class="doc">Device Management with
+Newt Manager</span></a> guide and are familiar
+with the <code class="docutils literal notranslate"><span class="pre">newtmgr</span></code> and <code class="docutils literal notranslate"><span class="pre">oicmgr</span></code> frameworks and all the options that
+are available to customize your application.</p>
+<p>This tutorial shows you how to configure your application to:</p>
+<ul class="simple">
+<li>Use the newtmgr framework.</li>
+<li>Use serial transport to communicate with the newtmgr tool.</li>
+<li>Support all Newt Manager commands.</li>
+</ul>
+<p>See <span class="xref std std-doc">Other Configuration Options</span> on
+how to customize your application.</p>
+<div class="contents local topic" id="contents">
+<ul class="simple">
+<li><a class="reference internal" href="#prerequisites" id="id1">Prerequisites</a></li>
+<li><a class="reference internal" href="#use-an-existing-project" id="id2">Use an Existing Project</a></li>
+<li><a class="reference internal" href="#modify-package-dependencies-and-configurations" id="id3">Modify Package Dependencies and Configurations</a></li>
+<li><a class="reference internal" href="#modify-the-source" id="id4">Modify the Source</a></li>
+<li><a class="reference internal" href="#build-the-targets" id="id5">Build the Targets</a></li>
+<li><a class="reference internal" href="#create-the-application-image" id="id6">Create the Application Image</a></li>
+<li><a class="reference internal" href="#load-the-image" id="id7">Load the Image</a></li>
+<li><a class="reference internal" href="#set-up-a-connection-profile" id="id8">Set Up a Connection Profile</a></li>
+<li><a class="reference internal" href="#communicate-with-your-application" id="id9">Communicate with Your Application</a></li>
+<li><a class="reference internal" href="#other-configuration-options" id="id10">Other Configuration Options</a><ul>
+<li><a class="reference internal" href="#newtmgr-framework-transport-protocol-options" id="id11">Newtmgr Framework Transport Protocol Options</a></li>
+<li><a class="reference internal" href="#oicmgr-framework-options" id="id12">Oicmgr Framework Options</a></li>
+<li><a class="reference internal" href="#customize-the-newt-manager-commands-that-your-application-supports" id="id13">Customize the Newt Manager Commands that Your Application Supports</a></li>
+</ul>
+</li>
+</ul>
+</div>
+<div class="section" id="prerequisites">
+<h2><a class="toc-backref" href="#id1">Prerequisites</a><a class="headerlink" href="#prerequisites" title="Permalink to this headline">¶</a></h2>
+<p>Ensure that you have met the following prerequisites before continuing
+with this tutorial:</p>
+<ul class="simple">
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a cable to establish a serial USB connection between the board
+and the laptop.</li>
+<li>Install the newt tool and toolchains (See <a class="reference internal" href="../../get_started/index.html"><span class="doc">Basic
+Setup</span></a>).</li>
+<li>Install the <span class="xref std std-doc">newtmgr tool</span>.</li>
+</ul>
+</div>
+<div class="section" id="use-an-existing-project">
+<h2><a class="toc-backref" href="#id2">Use an Existing Project</a><a class="headerlink" href="#use-an-existing-project" title="Permalink to this headline">¶</a></h2>
+<p>We assume that you have worked through at least some of the other
+tutorials and have an existing project. In this example, we modify the
+<code class="docutils literal notranslate"><span class="pre">btshell</span></code> app to enable Newt Manager support. We call our target
+<code class="docutils literal notranslate"><span class="pre">myble</span></code>. You can create the target using any name you choose.</p>
+</div>
+<div class="section" id="modify-package-dependencies-and-configurations">
+<h2><a class="toc-backref" href="#id3">Modify Package Dependencies and Configurations</a><a class="headerlink" href="#modify-package-dependencies-and-configurations" title="Permalink to this headline">¶</a></h2>
+<p>Add the following packages to the <code class="docutils literal notranslate"><span class="pre">pkg.deps</span></code> parameter in your target
+or application <code class="docutils literal notranslate"><span class="pre">pkg.yml</span></code> file:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="go">pkg.deps:</span>
+<span class="go">    - mgmt/newtmgr</span>
+<span class="go">    - mgmt/newtmgr/transport/nmgr_shell</span>
+<span class="go">    - mgmt/imgmgr</span>
+<span class="go">    - sys/log/full</span>
+<span class="go">    - sys/stats/full</span>
+<span class="go">    - sys/config</span>
+<span class="go">    - test/crash_test</span>
+<span class="go">    - test/runtest</span>
+</pre></div>
+</div>
+<p>Each package provides the following Newt Manager functionality:</p>
+<ul class="simple">
+<li><code class="docutils literal notranslate"><span class="pre">mgmt/newtmgr</span></code>: Supports the newtmgr framework and the Newt Manager
+<code class="docutils literal notranslate"><span class="pre">echo</span></code>, <code class="docutils literal notranslate"><span class="pre">taskstat</span></code> <code class="docutils literal notranslate"><span class="pre">mpstat</span></code>, <code class="docutils literal notranslate"><span class="pre">datetime</span></code>, and <code class="docutils literal notranslate"><span class="pre">reset</span></code>
+commands.</li>
+<li><code class="docutils literal notranslate"><span class="pre">mgmt/newtmgr/transport/nmgr_shell</span></code>: Supports serial transport.</li>
+<li><code class="docutils literal notranslate"><span class="pre">mgmt/imgmgr</span></code>: Supports the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">image</span></code> command</li>
+<li><code class="docutils literal notranslate"><span class="pre">sys/log/full</span></code> : Supports the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">log</span></code> command.</li>
+<li><code class="docutils literal notranslate"><span class="pre">sys/stats/full</span></code>: Supports the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">stat</span></code> command.</li>
+<li><code class="docutils literal notranslate"><span class="pre">sys/config</span></code>: Supports the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">config</span></code> command.</li>
+<li><code class="docutils literal notranslate"><span class="pre">test/crash_test</span></code>: Supports the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">crash</span></code> command.</li>
+<li><code class="docutils literal notranslate"><span class="pre">test/runtest</span></code>: Supports the <code class="docutils literal notranslate"><span class="pre">newt</span> <span class="pre">run</span></code> command.</li>
+</ul>
+<p>Add the following configuration setting values to the <code class="docutils literal notranslate"><span class="pre">syscfg.vals</span></code>
+parameter in the target or application <code class="docutils literal notranslate"><span class="pre">syscfg.yml</span></code> file:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="go">syscfg.vals:</span>
+<span class="go">    LOG_NEWTMGR: 1</span>
+<span class="go">    STATS_NEWTMGR: 1</span>
+<span class="go">    CONFIG_NEWTMGR: 1</span>
+<span class="go">    CRASH_TEST_NEWTMGR: 1</span>
+<span class="go">    RUNTEST_NEWTMGR: 1</span>
+<span class="go">    SHELL_TASK: 1</span>
+<span class="go">    SHELL_NEWTMGR: 1</span>
+</pre></div>
+</div>
+<p>The first five configuration settings enable support for the Newt
+Manager <code class="docutils literal notranslate"><span class="pre">log</span></code>, <code class="docutils literal notranslate"><span class="pre">stat</span></code>, <code class="docutils literal notranslate"><span class="pre">config</span></code>, <code class="docutils literal notranslate"><span class="pre">crash</span></code>, and <code class="docutils literal notranslate"><span class="pre">run</span></code> commands.
+The <code class="docutils literal notranslate"><span class="pre">SHELL_TASK</span></code> setting enables the shell for serial transport. The
+<code class="docutils literal notranslate"><span class="pre">SHELL_NEWTMGR</span></code> setting enables newtmgr support in the shell.</p>
+<p>Note that you may need to override additional configuration settings
+that are specific to each package to customize the package
+functionality.</p>
+</div>
+<div class="section" id="modify-the-source">
+<h2><a class="toc-backref" href="#id4">Modify the Source</a><a class="headerlink" href="#modify-the-source" title="Permalink to this headline">¶</a></h2>
+<p>By default, the <code class="docutils literal notranslate"><span class="pre">mgmt</span></code> package uses the Mynewt default event queue to
+receive request events from the newtmgr tool. These events are processed
+in the context of the application main task.</p>
+<p>You can specify a different event queue for the package to use. If you
+choose to use a dedicated event queue, you must create a task to process
+events from this event queue. The <code class="docutils literal notranslate"><span class="pre">mgmt</span></code> package executes and handles
+newtmgr request events in the context of this task. The <code class="docutils literal notranslate"><span class="pre">mgmt</span></code> package
+exports the <code class="docutils literal notranslate"><span class="pre">mgmt_evq_set()</span></code> function that allows you to specify an
+event queue.</p>
+<p>This example uses the Mynewt default event queue and you do not need to
+modify your application source.</p>
+<p>If you choose to use a different event queue, see <a class="reference internal" href="../os_fundamentals/event_queue.html"><span class="doc">Events and Event
+Queues</span></a> for details on how to initialize an event
+queue and create a task to process the events. You will also need to
+modify your <code class="docutils literal notranslate"><span class="pre">main.c</span></code> to add the call to the <code class="docutils literal notranslate"><span class="pre">mgmt_evq_set()</span></code>
+function as follows:</p>
+<p>Add the <code class="docutils literal notranslate"><span class="pre">mgmt/mgmt.h</span></code> header file:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="cp">#include</span> <span class="cpf">&lt;mgmt/mgmt.h&gt;</span><span class="cp"></span>
+</pre></div>
+</div>
+<p>Add the call to specify the event queue. In the <code class="docutils literal notranslate"><span class="pre">main()</span></code> function,
+scroll down to the <code class="docutils literal notranslate"><span class="pre">while</span> <span class="pre">(1)</span></code> loop and add the following statement
+above the loop:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="n">mgmt_evq_set</span><span class="p">(</span><span class="o">&amp;</span><span class="n">my_eventq</span><span class="p">)</span>
+</pre></div>
+</div>
+<p>where <code class="docutils literal notranslate"><span class="pre">my_eventq</span></code> is an event queue that you have initialized.</p>
+</div>
+<div class="section" id="build-the-targets">
+<h2><a class="toc-backref" href="#id5">Build the Targets</a><a class="headerlink" href="#build-the-targets" title="Permalink to this headline">¶</a></h2>
+<p>Build the two targets as follows:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newt build nrf52_boot
+<span class="go">&lt;snip&gt;</span>
+<span class="go">App successfully built: ./bin/nrf52_boot/apps/boot/boot.elf</span>
+<span class="gp">$</span> newt build myble
+<span class="go">Compiling hci_common.c</span>
+<span class="go">Compiling util.c</span>
+<span class="go">Archiving nimble.a</span>
+<span class="go">Compiling os.c</span>
+<span class="go">&lt;snip&gt;</span>
+</pre></div>
+</div>
+</div>
+<div class="section" id="create-the-application-image">
+<h2><a class="toc-backref" href="#id6">Create the Application Image</a><a class="headerlink" href="#create-the-application-image" title="Permalink to this headline">¶</a></h2>
+<p>Generate an application image for the <code class="docutils literal notranslate"><span class="pre">myble</span></code> target. You can use any
+version number you choose.</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newt create-image myble <span class="m">1</span>.0.0
+<span class="go">App image successfully generated: ./bin/makerbeacon/apps/btshell/btshell.img</span>
+<span class="go">Build manifest: ./bin/makerbeacon/apps/btshell/manifest.json</span>
+</pre></div>
+</div>
+</div>
+<div class="section" id="load-the-image">
+<h2><a class="toc-backref" href="#id7">Load the Image</a><a class="headerlink" href="#load-the-image" title="Permalink to this headline">¶</a></h2>
+<p>Ensure the USB connector is in place and the power LED on the board is
+lit. Turn the power switch on your board off, then back on to reset the
+board after loading the image.</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newt load nrf52_boot
+<span class="gp">$</span> newt load myble
+</pre></div>
+</div>
+</div>
+<div class="section" id="set-up-a-connection-profile">
+<h2><a class="toc-backref" href="#id8">Set Up a Connection Profile</a><a class="headerlink" href="#set-up-a-connection-profile" title="Permalink to this headline">¶</a></h2>
+<p>The newtmgr tool requires a connection profile in order to connect to
+your board. If you have not done so, follow the
+<a class="reference internal" href="../../newtmgr/command_list/newtmgr_conn.html"><span class="doc">instructions</span></a> for
+setting up your connection profile.</p>
+</div>
+<div class="section" id="communicate-with-your-application">
+<h2><a class="toc-backref" href="#id9">Communicate with Your Application</a><a class="headerlink" href="#communicate-with-your-application" title="Permalink to this headline">¶</a></h2>
+<p>Once you have a connection profile set up, you can connect to your
+device with <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">-c</span> <span class="pre">myconn</span> <span class="pre">&lt;command&gt;</span></code> to run commands in your
+application.</p>
+<p>Issue the <code class="docutils literal notranslate"><span class="pre">echo</span></code> command to ensure that your application is
+communicating with the newtmgr tool:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">  $</span> newtmgr -c myconn <span class="nb">echo</span> hello
+<span class="go">  hello</span>
+
+<span class="go">Test your application to ensure that it can process a Newt Manager</span>
+</pre></div>
+</div>
+<p>command that is supported by a different package. Issue the <code class="docutils literal notranslate"><span class="pre">stat</span></code>
+command to see the BLE stats.</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="go">stat group: ble_att</span>
+<span class="go">         0 error_rsp_rx</span>
+<span class="go">         0 error_rsp_tx</span>
+<span class="go">         0 exec_write_req_rx</span>
+<span class="go">         0 exec_write_req_tx</span>
+<span class="go">         0 exec_write_rsp_rx</span>
+<span class="go">         0 exec_write_rsp_tx</span>
+<span class="go">         0 find_info_req_rx</span>
+<span class="go">         0 find_info_req_tx</span>
+<span class="go">         0 find_info_rsp_rx</span>
+<span class="go">         0 find_info_rsp_tx</span>
+<span class="go">         0 find_type_value_req_rx</span>
+
+<span class="go">               ...</span>
+
+<span class="go">         0 read_type_req_tx</span>
+<span class="go">         0 read_type_rsp_rx</span>
+<span class="go">         0 read_type_rsp_tx</span>
+<span class="go">         0 write_cmd_rx</span>
+<span class="go">         0 write_cmd_tx</span>
+<span class="go">         0 write_req_rx</span>
+<span class="go">         0 write_req_tx</span>
+<span class="go">         0 write_rsp_rx</span>
+<span class="go">         0 write_rsp_tx</span>
+</pre></div>
+</div>
+<p>Your application is now able to communicate with the newtmgr tool.</p>
+</div>
+<div class="section" id="other-configuration-options">
+<h2><a class="toc-backref" href="#id10">Other Configuration Options</a><a class="headerlink" href="#other-configuration-options" title="Permalink to this headline">¶</a></h2>
+<p>This section explains how to customize your application to use other
+Newt Manager protocol options.</p>
+<div class="section" id="newtmgr-framework-transport-protocol-options">
+<h3><a class="toc-backref" href="#id11">Newtmgr Framework Transport Protocol Options</a><a class="headerlink" href="#newtmgr-framework-transport-protocol-options" title="Permalink to this headline">¶</a></h3>
+<p>The newtmgr framework currently supports BLE and serial transport
+protocols. To configure the transport protocols that are supported,
+modify the <code class="docutils literal notranslate"><span class="pre">pkg.yml</span></code> and <code class="docutils literal notranslate"><span class="pre">syscfg.yml</span></code> files as follows:</p>
+<ul class="simple">
+<li>Add the <code class="docutils literal notranslate"><span class="pre">mgmt/newtmgr/transport/ble</span></code> package to the <code class="docutils literal notranslate"><span class="pre">pkg.deps</span></code>
+parameter to enable BLE transport.</li>
+<li>Add the <code class="docutils literal notranslate"><span class="pre">mgmt/newtmgr/transport/nmgr_shell</span></code> package to the
+<code class="docutils literal notranslate"><span class="pre">pkg.deps</span></code> parameter, and add <code class="docutils literal notranslate"><span class="pre">SHELL_TASK:</span> <span class="pre">1</span></code> and
+<code class="docutils literal notranslate"><span class="pre">SHELL_NEWTMGR</span></code> to the <code class="docutils literal notranslate"><span class="pre">syscfg.vals</span></code> parameter to enable serial
+transport when your application also uses the
+<a class="reference internal" href="../../os/modules/shell/shell.html"><span class="doc">Shell</span></a>.</li>
+<li>Add the <code class="docutils literal notranslate"><span class="pre">mgmt/newtmgr/transport/nmgr_uart</span></code> package to the
+<code class="docutils literal notranslate"><span class="pre">pkg.deps</span></code> parameter to enable serial transport over a UART port.
+You can use this package instead of the <code class="docutils literal notranslate"><span class="pre">nmgr_shell</span></code> package when
+your application does not use the
+<a class="reference internal" href="../../os/modules/shell/shell.html"><span class="doc">Shell</span></a> or you want to use a dedicated
+UART port to communicate with newtmgr. You can change the
+<code class="docutils literal notranslate"><span class="pre">NMGR_UART</span></code> and <code class="docutils literal notranslate"><span class="pre">NMGR_URART_SPEED</span></code> sysconfig values to specify a
+different port.</li>
+</ul>
+</div>
+<div class="section" id="oicmgr-framework-options">
+<h3><a class="toc-backref" href="#id12">Oicmgr Framework Options</a><a class="headerlink" href="#oicmgr-framework-options" title="Permalink to this headline">¶</a></h3>
+<p>To use the oicmgr framework instead of the newtmgr framework, modify the
+<code class="docutils literal notranslate"><span class="pre">pkg.yml</span></code> and <code class="docutils literal notranslate"><span class="pre">syscfg.yml</span></code> files as follows:</p>
+<ul class="simple">
+<li>Add the <code class="docutils literal notranslate"><span class="pre">mgmt/oicmgr</span></code> package (instead of the <code class="docutils literal notranslate"><span class="pre">mgmt/newtmgr</span></code> and
+<code class="docutils literal notranslate"><span class="pre">mgmt/newtmgr/transport</span></code> packages as described previously) to the
+<code class="docutils literal notranslate"><span class="pre">pkg.deps</span></code> parameter.</li>
+<li>Add <code class="docutils literal notranslate"><span class="pre">OC_SERVER:</span> <span class="pre">1</span></code> to the <code class="docutils literal notranslate"><span class="pre">syscfg.vals</span></code> parameter.</li>
+</ul>
+<p>Oicmgr supports the IP, serial, and BLE transport protocols. To
+configure the transport protocols that are supported, set the
+configuration setting values in the <code class="docutils literal notranslate"><span class="pre">syscfg.vals</span></code> parameter as
+follows:</p>
+<ul class="simple">
+<li>Add <code class="docutils literal notranslate"><span class="pre">OC_TRANSPORT_IP:</span> <span class="pre">1</span></code> to enable IP transport.</li>
+<li>Add <code class="docutils literal notranslate"><span class="pre">OC_TRANSPORT_GATT:</span> <span class="pre">1</span></code> to enable BLE transport.</li>
+<li>Add <code class="docutils literal notranslate"><span class="pre">OC_TRANSPORT_SERIAL:</span> <span class="pre">1</span></code>, <code class="docutils literal notranslate"><span class="pre">SHELL_TASK:</span> <span class="pre">1</span></code>,
+<code class="docutils literal notranslate"><span class="pre">SHELL_NEWTMGR:1</span></code> to enable serial transport.</li>
+</ul>
+</div>
+<div class="section" id="customize-the-newt-manager-commands-that-your-application-supports">
+<h3><a class="toc-backref" href="#id13">Customize the Newt Manager Commands that Your Application Supports</a><a class="headerlink" href="#customize-the-newt-manager-commands-that-your-application-supports" title="Permalink to this headline">¶</a></h3>
+<p>We recommend that you only enable support for the Newt Manager commands
+that your application uses to reduce your application code size. To
+configure the commands that are supported, set the configuration setting
+values in the <code class="docutils literal notranslate"><span class="pre">syscfg.vals</span></code> parameter as follows:</p>
+<ul class="simple">
+<li>Add <code class="docutils literal notranslate"><span class="pre">LOG_NEWTMGR:</span> <span class="pre">1</span></code> to enable support for the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">log</span></code>
+command.</li>
+<li>Add <code class="docutils literal notranslate"><span class="pre">STATS_NEWTMGR:</span> <span class="pre">1</span></code> to enable support for the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">stat</span></code>
+command.</li>
+<li>Add <code class="docutils literal notranslate"><span class="pre">CONFIG_NEWTMGR:</span> <span class="pre">1</span></code> to enable support for the
+<code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">config</span></code> command.</li>
+<li>Add <code class="docutils literal notranslate"><span class="pre">CRASH_TEST_NEWTMGR:</span> <span class="pre">1</span></code> to enable support for the
+<code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">crash</span></code> command.</li>
+<li>Add <code class="docutils literal notranslate"><span class="pre">RUNTEST_NEWTMGR:</span> <span class="pre">1</span></code> to enable support for the
+<code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">crash</span></code> command.</li>
+</ul>
+<p>Notes:</p>
+<ul class="simple">
+<li>When you enable Newt Manager support, using either the newtmgr or
+oicmgr framework, your application automatically supports the Newt
+Manager <code class="docutils literal notranslate"><span class="pre">echo</span></code>, <code class="docutils literal notranslate"><span class="pre">taskstat</span></code>, <code class="docutils literal notranslate"><span class="pre">mpstat</span></code>, <code class="docutils literal notranslate"><span class="pre">datetime</span></code>, and
+<code class="docutils literal notranslate"><span class="pre">reset</span></code> commands. These commands cannot be configured individually.</li>
+<li>The <code class="docutils literal notranslate"><span class="pre">mgmt/imgmgr</span></code> package does not provide a configuration setting
+to enable or disable support for the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">image</span></code> command. Do
+not specify the package in the <code class="docutils literal notranslate"><span class="pre">pkg.deps</span></code> parameter if your device
+has limited flash memory and cannot support Over-The-Air (OTA)
+firmware upgrades.</li>
+</ul>
+</div>
+</div>
+</div>
+
+
+                   </div>
+                  </div>
+                  
+    <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
+      
+        <a href="ota_upgrade_nrf52.html" class="btn btn-neutral float-right" title="Over-the-Air Image Upgrade" accesskey="n">Next: Over-the-Air Image Upgrade <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="devmgmt.html" class="btn btn-neutral" title="Remote Device Management" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Remote Device Management</a>
+      
+    </div>
+
+                </div>
+              </div>
+            </div>
+            <!-- ENDS CONTENT SECTION -->
+          </div>
+          <!-- ENDS .content -->
+        </div>
+      </div>
+      <footer>
+  <div class="container">
+    <div class="row">
+      <div class="col-xs-12">
+          
+              <p class="copyright">Apache Mynewt is available under Apache License, version 2.0.</p>
+          
+      </div>
+      <div class="col-xs-12">
+          <div class="logos">
+              <img src="../../_static/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
+              <small class="footnote">
+                Apache Mynewt, Mynewt, Apache, the Apache feather logo, and the Apache Mynewt project logo are either
+                registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+              </small>
+              <a href="https://join.slack.com/mynewt/shared_invite/MTkwMTg1ODM1NTg5LTE0OTYxNzQ4NzQtZTU1YmNhYjhkMg">
+                <img src="../../_static/img/add_to_slack.png" alt="Slack Icon" title="Join our Slack Community" />
+              </a>
+          </div>
+      </div>
+    </div>
+  </div>
+</footer>
+    </div>
+    <!-- ENDS #wrapper -->
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'../../',
+            VERSION:'1.3.0',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true,
+            SOURCELINK_SUFFIX: '.txt'
+        };
+    </script>
+      <script type="text/javascript" src="../../_static/jquery.js"></script>
+      <script type="text/javascript" src="../../_static/underscore.js"></script>
+      <script type="text/javascript" src="../../_static/doctools.js"></script>
+      <script type="text/javascript" src="../../_static/js/bootstrap-3.0.3.min.js"></script>
+      <script type="text/javascript" src="../../_static/js/affix.js"></script>
+      <script type="text/javascript" src="../../_static/js/main.js"></script>
+
+   
+
+  </body>
+</html>
\ No newline at end of file
diff --git a/develop/tutorials/devmgmt/devmgmt.html b/develop/tutorials/devmgmt/devmgmt.html
new file mode 100644
index 000000000..6b01a061d
--- /dev/null
+++ b/develop/tutorials/devmgmt/devmgmt.html
@@ -0,0 +1,352 @@
+
+
+<!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>Remote Device Management &mdash; Apache Mynewt 1.3.0 documentation</title>
+    
+
+    
+    
+      <link rel="shortcut icon" href="../../_static/mynewt-logo-only-newt32x32.png"/>
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
+
+    
+      <link rel="stylesheet" href="../../_static/css/sphinx_theme.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/bootstrap-3.0.3.min.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/v2.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/custom.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/restructuredtext.css" type="text/css" />
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
+          <link rel="index" title="Index"
+                href="../../genindex.html"/>
+          <link rel="search" title="Search" href="../../search.html"/>
+      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+          <link rel="up" title="Tutorials" href="../tutorials.html"/>
+          <link rel="next" title="Enabling Newt Manager in Your Application" href="add_newtmgr.html"/>
+          <link rel="prev" title="Tasks and Priority Management" href="../os_fundamentals/tasks_lesson.html"/> 
+
+    
+    <script src="../../_static/js/modernizr.min.js"></script>
+
+    
+    <script>
+    (function(i, s, o, g, r, a, m) {
+	i["GoogleAnalyticsObject"] = r;
+	(i[r] =
+		i[r] ||
+		function() {
+			(i[r].q = i[r].q || []).push(arguments);
+		}),
+		(i[r].l = 1 * new Date());
+	(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
+	a.async = 1;
+	a.src = g;
+	m.parentNode.insertBefore(a, m);
+})(window, document, "script", "//www.google-analytics.com/analytics.js", "ga");
+
+ga("create", "UA-72162311-1", "auto");
+ga("send", "pageview");
+</script>
+    
+
+  </head>
+
+  <body class="not-front page-documentation" role="document" >
+    <div id="wrapper">
+      <div class="container">
+    <div id="banner" class="row v2-main-banner">
+        <a class="logo-cell" href="/">
+            <img class="logo" src="../../_static/img/logo.png">
+        </a>
+        <div class="tagline-cell">
+            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
+        </div>
+        <div class="news-cell">
+            <div class="well">
+              <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (December 13, 2017)
+            </div>
+        </div>
+    </div>
+</div>
+      
+<header>
+    <nav id="navbar" class="navbar navbar-inverse" role="navigation">
+        <div class="container">
+            <!-- Collapsed navigation -->
+            <div class="navbar-header">
+                <!-- Expander button -->
+                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
+                    <span class="sr-only">Toggle navigation</span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                </button>
+
+            </div>
+
+            <!-- Expanded navigation -->
+            <div class="navbar-collapse collapse">
+                <!-- Main navigation -->
+                <ul class="nav navbar-nav navbar-right">
+                    <li>
+                        <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
+                    </li>
+                    <li class="important">
+                        <a href="/get_started/quick_start.html">Quick Start</a>
+                    </li>
+                    <li>
+                        <a href="/about/">About</a>
+                    </li>
+                    <li>
+                        <a href="/talks/">Talks</a>
+                    </li>
+                    <li class="active">
+                        <a href="/documentation/">Documentation</a>
+                    </li>
+                    <li>
+                        <a href="/download/">Download</a>
+                    </li>
+                    <li>
+                        <a href="/community/">Community</a>
+                    </li>
+                    <li>
+                        <a href="/events/">Events</a>
+                    </li>
+                </ul>
+
+                <!-- Search, Navigation and Repo links -->
+                <ul class="nav navbar-nav navbar-right">
+                    
+                </ul>
+            </div>
+        </div>
+    </nav>
+</header>
+      <!-- STARTS MAIN CONTENT -->
+      <div id="main-content">
+        
+
+
+
+
+
+<div id="breadcrumb">
+  <div class="container">
+    <a href="/documentation/">Docs</a> /
+    
+      <a href="../tutorials.html">Tutorials</a> /
+    
+    Remote Device Management
+    
+  <div class="sourcelink">
+    <a href="https://github.com/apache/mynewt-documentation/edit/master/docs/tutorials/devmgmt/devmgmt.rst" class="icon icon-github"
+           rel="nofollow"> Edit on GitHub</a>
+</div>
+  </div>
+</div>
+        <!-- STARTS CONTAINER -->
+        <div class="container">
+          <!-- STARTS .content -->
+          <div id="content" class="row">
+            
+            <!-- STARTS .container-sidebar -->
+<div class="container-sidebar col-xs-12 col-sm-3">
+  <div id="docSidebar" class="sticky-container">
+    <div role="search" class="sphinx-search">
+  <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">
+    <input type="text" name="q" placeholder="Search documentation" class="search-documentation" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+    
+<!-- Note: only works when deployed -->
+<select class="form-control" onchange="if (this.value) window.location.href=this.value">
+    <option
+      value="/develop"
+      selected
+      >
+      Version: develop (latest - mynewt-documentation)
+    </option>
+    <option
+      value="/latest/os/introduction"
+      >
+      Version: master (latest - mynewt-site)
+    </option>
+    <option
+      value="/v1_2_0/os/introduction"
+      >
+      Version: 1.2.0
+    </option>
+    <option
+      value="/v1_1_0/os/introduction">
+      Version: 1.1.0
+    </option>
+    <option
+      value="/v1_0_0/os/introduction">
+      Version: 1.0.0
+    </option>
+    <option
+      value="/v0_9_0/os/introduction">
+      Version: 0_9_0
+    </option>
+</select>
+    <div class="region region-sidebar">
+      <div class="docs-menu">
+      
+        
+        
+            <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../../index.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../get_started/index.html">Setup &amp; Get Started</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../concepts.html">Concepts</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../tutorials.html">Tutorials</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../blinky/blinky.html">Project Blinky</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../repo/add_repos.html">Working with repositories</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">Remote Device Management</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="add_newtmgr.html">Enable Newt Manager in Any App</a></li>
+<li class="toctree-l3"><a class="reference internal" href="ota_upgrade_nrf52.html">Upgrade an Image Over-The-Air</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../../os/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="../../mynewt_faq.html">Mynewt OS related FAQ</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../misc/index.html">Appendix</a></li>
+</ul>
+
+        
+      
+      </div>
+    </div>
+  </div>
+  <!-- ENDS STICKY CONTAINER -->
+</div>
+<!-- ENDS .container-sidebar -->
+
+            <div class="col-xs-12 col-sm-9">
+              <div class="alert alert-info" role="alert">
+  <p>
+    This is the development version of Apache Mynewt documentation. As such it may not be as complete as the latest
+    stable version of the documentation found <a href="/latest/os/introduction/">here</a>.
+  </p>
+  <p>
+    To improve this documentation please visit <a href="https://github.com/apache/mynewt-documentation">https://github.com/apache/mynewt-documentation</a>.
+  </p>
+</div>
+              
+              <div class="">
+                <div class="rst-content">
+                  <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+                   <div itemprop="articleBody">
+                    
+  <div class="section" id="remote-device-management">
+<h1>Remote Device Management<a class="headerlink" href="#remote-device-management" title="Permalink to this headline">¶</a></h1>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="add_newtmgr.html">Enable Newt Manager in Any App</a></li>
+<li class="toctree-l1"><a class="reference internal" href="ota_upgrade_nrf52.html">Upgrade an Image Over-The-Air</a></li>
+</ul>
+</div>
+</div>
+
+
+                   </div>
+                  </div>
+                  
+    <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
+      
+        <a href="add_newtmgr.html" class="btn btn-neutral float-right" title="Enabling Newt Manager in Your Application" accesskey="n">Next: Enabling Newt Manager in Your Application <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="../os_fundamentals/tasks_lesson.html" class="btn btn-neutral" title="Tasks and Priority Management" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Tasks and Priority Management</a>
+      
+    </div>
+
+                </div>
+              </div>
+            </div>
+            <!-- ENDS CONTENT SECTION -->
+          </div>
+          <!-- ENDS .content -->
+        </div>
+      </div>
+      <footer>
+  <div class="container">
+    <div class="row">
+      <div class="col-xs-12">
+          
+              <p class="copyright">Apache Mynewt is available under Apache License, version 2.0.</p>
+          
+      </div>
+      <div class="col-xs-12">
+          <div class="logos">
+              <img src="../../_static/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
+              <small class="footnote">
+                Apache Mynewt, Mynewt, Apache, the Apache feather logo, and the Apache Mynewt project logo are either
+                registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+              </small>
+              <a href="https://join.slack.com/mynewt/shared_invite/MTkwMTg1ODM1NTg5LTE0OTYxNzQ4NzQtZTU1YmNhYjhkMg">
+                <img src="../../_static/img/add_to_slack.png" alt="Slack Icon" title="Join our Slack Community" />
+              </a>
+          </div>
+      </div>
+    </div>
+  </div>
+</footer>
+    </div>
+    <!-- ENDS #wrapper -->
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'../../',
+            VERSION:'1.3.0',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true,
+            SOURCELINK_SUFFIX: '.txt'
+        };
+    </script>
+      <script type="text/javascript" src="../../_static/jquery.js"></script>
+      <script type="text/javascript" src="../../_static/underscore.js"></script>
+      <script type="text/javascript" src="../../_static/doctools.js"></script>
+      <script type="text/javascript" src="../../_static/js/bootstrap-3.0.3.min.js"></script>
+      <script type="text/javascript" src="../../_static/js/affix.js"></script>
+      <script type="text/javascript" src="../../_static/js/main.js"></script>
+
+   
+
+  </body>
+</html>
\ No newline at end of file
diff --git a/develop/tutorials/devmgmt/ota_upgrade_nrf52.html b/develop/tutorials/devmgmt/ota_upgrade_nrf52.html
new file mode 100644
index 000000000..b105a95cf
--- /dev/null
+++ b/develop/tutorials/devmgmt/ota_upgrade_nrf52.html
@@ -0,0 +1,563 @@
+
+
+<!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>Over-the-Air Image Upgrade &mdash; Apache Mynewt 1.3.0 documentation</title>
+    
+
+    
+    
+      <link rel="shortcut icon" href="../../_static/mynewt-logo-only-newt32x32.png"/>
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
+
+    
+      <link rel="stylesheet" href="../../_static/css/sphinx_theme.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/bootstrap-3.0.3.min.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/v2.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/custom.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/restructuredtext.css" type="text/css" />
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
+          <link rel="index" title="Index"
+                href="../../genindex.html"/>
+          <link rel="search" title="Search" href="../../search.html"/>
+      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+          <link rel="up" title="Remote Device Management" href="devmgmt.html"/>
+          <link rel="next" title="Sensors" href="../sensors/sensors.html"/>
+          <link rel="prev" title="Enabling Newt Manager in Your Application" href="add_newtmgr.html"/> 
+
+    
+    <script src="../../_static/js/modernizr.min.js"></script>
+
+    
+    <script>
+    (function(i, s, o, g, r, a, m) {
+	i["GoogleAnalyticsObject"] = r;
+	(i[r] =
+		i[r] ||
+		function() {
+			(i[r].q = i[r].q || []).push(arguments);
+		}),
+		(i[r].l = 1 * new Date());
+	(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
+	a.async = 1;
+	a.src = g;
+	m.parentNode.insertBefore(a, m);
+})(window, document, "script", "//www.google-analytics.com/analytics.js", "ga");
+
+ga("create", "UA-72162311-1", "auto");
+ga("send", "pageview");
+</script>
+    
+
+  </head>
+
+  <body class="not-front page-documentation" role="document" >
+    <div id="wrapper">
+      <div class="container">
+    <div id="banner" class="row v2-main-banner">
+        <a class="logo-cell" href="/">
+            <img class="logo" src="../../_static/img/logo.png">
+        </a>
+        <div class="tagline-cell">
+            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
+        </div>
+        <div class="news-cell">
+            <div class="well">
+              <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (December 13, 2017)
+            </div>
+        </div>
+    </div>
+</div>
+      
+<header>
+    <nav id="navbar" class="navbar navbar-inverse" role="navigation">
+        <div class="container">
+            <!-- Collapsed navigation -->
+            <div class="navbar-header">
+                <!-- Expander button -->
+                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
+                    <span class="sr-only">Toggle navigation</span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                </button>
+
+            </div>
+
+            <!-- Expanded navigation -->
+            <div class="navbar-collapse collapse">
+                <!-- Main navigation -->
+                <ul class="nav navbar-nav navbar-right">
+                    <li>
+                        <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
+                    </li>
+                    <li class="important">
+                        <a href="/get_started/quick_start.html">Quick Start</a>
+                    </li>
+                    <li>
+                        <a href="/about/">About</a>
+                    </li>
+                    <li>
+                        <a href="/talks/">Talks</a>
+                    </li>
+                    <li class="active">
+                        <a href="/documentation/">Documentation</a>
+                    </li>
+                    <li>
+                        <a href="/download/">Download</a>
+                    </li>
+                    <li>
+                        <a href="/community/">Community</a>
+                    </li>
+                    <li>
+                        <a href="/events/">Events</a>
+                    </li>
+                </ul>
+
+                <!-- Search, Navigation and Repo links -->
+                <ul class="nav navbar-nav navbar-right">
+                    
+                </ul>
+            </div>
+        </div>
+    </nav>
+</header>
+      <!-- STARTS MAIN CONTENT -->
+      <div id="main-content">
+        
+
+
+
+
+
+<div id="breadcrumb">
+  <div class="container">
+    <a href="/documentation/">Docs</a> /
+    
+      <a href="../tutorials.html">Tutorials</a> /
+    
+      <a href="devmgmt.html">Remote Device Management</a> /
+    
+    Over-the-Air Image Upgrade
+    
+  <div class="sourcelink">
+    <a href="https://github.com/apache/mynewt-documentation/edit/master/docs/tutorials/devmgmt/ota_upgrade_nrf52.rst" class="icon icon-github"
+           rel="nofollow"> Edit on GitHub</a>
+</div>
+  </div>
+</div>
+        <!-- STARTS CONTAINER -->
+        <div class="container">
+          <!-- STARTS .content -->
+          <div id="content" class="row">
+            
+            <!-- STARTS .container-sidebar -->
+<div class="container-sidebar col-xs-12 col-sm-3">
+  <div id="docSidebar" class="sticky-container">
+    <div role="search" class="sphinx-search">
+  <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">
+    <input type="text" name="q" placeholder="Search documentation" class="search-documentation" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+    
+<!-- Note: only works when deployed -->
+<select class="form-control" onchange="if (this.value) window.location.href=this.value">
+    <option
+      value="/develop"
+      selected
+      >
+      Version: develop (latest - mynewt-documentation)
+    </option>
+    <option
+      value="/latest/os/introduction"
+      >
+      Version: master (latest - mynewt-site)
+    </option>
+    <option
+      value="/v1_2_0/os/introduction"
+      >
+      Version: 1.2.0
+    </option>
+    <option
+      value="/v1_1_0/os/introduction">
+      Version: 1.1.0
+    </option>
+    <option
+      value="/v1_0_0/os/introduction">
+      Version: 1.0.0
+    </option>
+    <option
+      value="/v0_9_0/os/introduction">
+      Version: 0_9_0
+    </option>
+</select>
+    <div class="region region-sidebar">
+      <div class="docs-menu">
+      
+        
+        
+            <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../../index.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../get_started/index.html">Setup &amp; Get Started</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../concepts.html">Concepts</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../tutorials.html">Tutorials</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../blinky/blinky.html">Project Blinky</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../repo/add_repos.html">Working with repositories</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2 current"><a class="reference internal" href="devmgmt.html">Remote Device Management</a><ul class="current">
+<li class="toctree-l3"><a class="reference internal" href="add_newtmgr.html">Enable Newt Manager in Any App</a></li>
+<li class="toctree-l3 current"><a class="current reference internal" href="#">Upgrade an Image Over-The-Air</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../../os/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="../../mynewt_faq.html">Mynewt OS related FAQ</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../misc/index.html">Appendix</a></li>
+</ul>
+
+        
+      
+      </div>
+    </div>
+  </div>
+  <!-- ENDS STICKY CONTAINER -->
+</div>
+<!-- ENDS .container-sidebar -->
+
+            <div class="col-xs-12 col-sm-9">
+              <div class="alert alert-info" role="alert">
+  <p>
+    This is the development version of Apache Mynewt documentation. As such it may not be as complete as the latest
+    stable version of the documentation found <a href="/latest/os/introduction/">here</a>.
+  </p>
+  <p>
+    To improve this documentation please visit <a href="https://github.com/apache/mynewt-documentation">https://github.com/apache/mynewt-documentation</a>.
+  </p>
+</div>
+              
+              <div class="">
+                <div class="rst-content">
+                  <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+                   <div itemprop="articleBody">
+                    
+  <div class="section" id="over-the-air-image-upgrade">
+<h1>Over-the-Air Image Upgrade<a class="headerlink" href="#over-the-air-image-upgrade" title="Permalink to this headline">¶</a></h1>
+<p>Mynewt OS supports over-the-air image upgrades. This tutorial shows you
+how to use the newtmgr tool to upgrade an image on a device over BLE
+communication.</p>
+<p>To support over-the-air image upgrade over BLE, a device must be running
+a Mynewt application that has newtmgr image management over BLE
+transport enabled. For this tutorial, we use the
+<span class="xref std std-doc">bleprph</span> application, which
+includes image management over BLE functionality, on an nRF52-DK board.
+If you prefer to use a different BLE application, see <a class="reference internal" href="../../os/tutorials/add_newtmgr.html"><span class="doc">Enable Newt
+Manager in any app</span></a> to enable newtmgr
+image management over BLE transport support in your application.</p>
+<p><strong>Note:</strong> Over-the-air upgrade via newtmgr BLE transport is supported on
+Mac OS and Linux. It is not supported on Windows platforms.</p>
+<div class="contents local topic" id="contents">
+<ul class="simple">
+<li><a class="reference internal" href="#prerequisites" id="id1">Prerequisites</a></li>
+<li><a class="reference internal" href="#reducing-the-log-level" id="id2">Reducing the Log Level</a></li>
+<li><a class="reference internal" href="#upgrading-an-image-on-a-device" id="id3">Upgrading an Image on a Device</a></li>
+<li><a class="reference internal" href="#step-1-creating-a-newtmgr-connection-profile" id="id4">Step 1: Creating a Newtmgr Connection Profile</a></li>
+<li><a class="reference internal" href="#step-2-uploading-an-image-to-the-device" id="id5">Step 2: Uploading an Image to the Device</a></li>
+<li><a class="reference internal" href="#step-3-testing-the-image" id="id6">Step 3: Testing the Image</a></li>
+<li><a class="reference internal" href="#step-4-confirming-the-image" id="id7">Step 4: Confirming the Image</a></li>
+</ul>
+</div>
+<div class="section" id="prerequisites">
+<h2><a class="toc-backref" href="#id1">Prerequisites</a><a class="headerlink" href="#prerequisites" title="Permalink to this headline">¶</a></h2>
+<p>Ensure that you meet the following prerequisites:</p>
+<ul class="simple">
+<li>Have Internet connectivity to fetch remote Mynewt components.</li>
+<li>Have a computer that supports Bluetooth to communicate with the board
+and to build a Mynewt application.</li>
+<li>Have a Micro-USB cable to connect the board and the computer.</li>
+<li>Have a Nordic nRF52-DK Development Kit - PCA 10040</li>
+<li>Install the <span class="xref std std-doc">Segger JLINK software and documentation
+pack</span>.</li>
+<li>Install the newt tool and toolchains (See <a class="reference internal" href="../../get_started/index.html"><span class="doc">Setup &amp; Get Started</span></a>).</li>
+<li>Read the Mynewt OS <a class="reference internal" href="../../concepts.html"><span class="doc">Concepts</span></a>
+section.</li>
+<li>Read the <a class="reference internal" href="../../os/modules/bootloader/bootloader.html"><span class="doc">Secure Bootloader</span></a> section
+and understand the Mynewt bootloader concepts.</li>
+<li>Build and load the <strong>bleprph</strong> application on to an nRF52-DK board
+via a serial connection. See <a class="reference internal" href="../ble/bleprph/bleprph.html"><span class="doc">BLE Peripheral
+App</span></a>.</li>
+</ul>
+</div>
+<div class="section" id="reducing-the-log-level">
+<h2><a class="toc-backref" href="#id2">Reducing the Log Level</a><a class="headerlink" href="#reducing-the-log-level" title="Permalink to this headline">¶</a></h2>
+<p>You need to build your application with log level set to INFO or lower.
+The default log level for the <strong>bleprph</strong> app is set to DEBUG. The extra
+logging causes the communication to timeout. Perform the following to
+reduce the log level to INFO, build, and load the application.</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newt target amend myperiph <span class="nv">syscfg</span><span class="o">=</span><span class="s2">&quot;LOG_LEVEL=1&quot;</span>
+<span class="gp">$</span> newt build myperiph
+<span class="gp">$</span> newt create-image myperiph <span class="m">1</span>.0.0
+<span class="gp">$</span> newt load myperiph
+</pre></div>
+</div>
+</div>
+<div class="section" id="upgrading-an-image-on-a-device">
+<h2><a class="toc-backref" href="#id3">Upgrading an Image on a Device</a><a class="headerlink" href="#upgrading-an-image-on-a-device" title="Permalink to this headline">¶</a></h2>
+<p>Once you have an application with
+newtmgr image management with BLE transport support running on a device,
+you can use the newtmgr tool to upgrade an image over-the-air.</p>
+<p>You must perform the following steps to upgrade an image:</p>
+<p>Step 1: Create a newtmgr connection profile to communicate with the
+device over BLE. Step 2: Upload the image to the secondary slot (slot 1)
+on the device. Step 3: Test the image. Step 4: Confirm and make the
+image permanent.</p>
+<p>See the <a class="reference internal" href="../../os/modules/bootloader/bootloader.html"><span class="doc">Secure Bootloader</span></a> section for
+more information on the bootloader, image slots, and boot states.</p>
+</div>
+<div class="section" id="step-1-creating-a-newtmgr-connection-profile">
+<h2><a class="toc-backref" href="#id4">Step 1: Creating a Newtmgr Connection Profile</a><a class="headerlink" href="#step-1-creating-a-newtmgr-connection-profile" title="Permalink to this headline">¶</a></h2>
+<p>The <strong>bleprph</strong> application sets and advertises <code class="docutils literal notranslate"><span class="pre">nimble-bleprph</span></code> as its bluetooth
+device address. Run the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">conn</span> <span class="pre">add</span></code> command to create a newtmgr
+connection profile that uses this peer address to communicate with the
+device over BLE:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newtmgr conn add mybleprph <span class="nv">type</span><span class="o">=</span>ble <span class="nv">connstring</span><span class="o">=</span><span class="s2">&quot;peer_name=nimble-bleprph&quot;</span>
+<span class="go">Connection profile mybleprph successfully added</span>
+</pre></div>
+</div>
+<p>Verify that the newtmgr tool can communicate with the device and check
+the image status on the device:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newtmgr image list -c mybleprph
+<span class="go">Images:</span>
+<span class="go"> slot=0</span>
+<span class="go">    version: 1.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags: active confirmed</span>
+<span class="go">    hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2</span>
+<span class="go">Split status: N/A (0)</span>
+</pre></div>
+</div>
+<p>The device only has an image loaded on the primary slot (slot 0). It
+does not have an image loaded on the secondary slot (slot 1).</p>
+</div>
+<div class="section" id="step-2-uploading-an-image-to-the-device">
+<h2><a class="toc-backref" href="#id5">Step 2: Uploading an Image to the Device</a><a class="headerlink" href="#step-2-uploading-an-image-to-the-device" title="Permalink to this headline">¶</a></h2>
+<p>We create an image with version 2.0.0 for the bleprph application from the <code class="docutils literal notranslate"><span class="pre">myperiph</span></code> target and
+upload the new image. You can upload a different image.</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newt create-image myperiph <span class="m">2</span>.0.0
+<span class="go">App image succesfully generated: ~/dev/myproj/bin/targets/myperiph/app/apps/bleprph/bleprph.img</span>
+</pre></div>
+</div>
+<p>Run the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">image</span> <span class="pre">upload</span></code> command to upload the image:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newtmgr image upload -c mybleprph ~/dev/myproj/bin/targets/myperiph/app/apps/bleprph/bleprph.img
+<span class="go">215</span>
+<span class="go">429</span>
+<span class="go">642</span>
+<span class="go">855</span>
+<span class="go">1068</span>
+<span class="go">1281</span>
+
+<span class="go">...</span>
+
+<span class="go">125953</span>
+<span class="go">126164</span>
+<span class="go">126375</span>
+<span class="go">126586</span>
+<span class="go">126704</span>
+<span class="go">Done</span>
+</pre></div>
+</div>
+<p>The numbers indicate the number of bytes that the newtmgr tool has
+uploaded.</p>
+<p>Verify that the image uploaded to the secondary slot on the device
+successfully:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newtmgr image list -c mybleprph
+<span class="go">Images:</span>
+<span class="go"> slot=0</span>
+<span class="go">    version: 1.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags: active confirmed</span>
+<span class="go">    hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2</span>
+<span class="go"> slot=1</span>
+<span class="go">    version: 2.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags:</span>
+<span class="go">    hash: 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682</span>
+<span class="go">Split status: N/A (0)</span>
+</pre></div>
+</div>
+<p>The device now has the uploaded image in the secondary slot (slot 1).</p>
+</div>
+<div class="section" id="step-3-testing-the-image">
+<h2><a class="toc-backref" href="#id6">Step 3: Testing the Image</a><a class="headerlink" href="#step-3-testing-the-image" title="Permalink to this headline">¶</a></h2>
+<p>The image is uploaded to the secondary
+slot but is not yet active. You must run the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">image</span> <span class="pre">test</span></code>
+command to set the image status to <strong>pending</strong> and reboot the device.
+When the device reboots, the bootloader copies this image to the primary
+slot and runs the image.</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newtmgr image <span class="nb">test</span> -c mybleprph 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682
+<span class="go">Images:</span>
+<span class="go"> slot=0</span>
+<span class="go">    version: 1.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags: active confirmed</span>
+<span class="go">    hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2</span>
+<span class="go"> slot=1</span>
+<span class="go">    version: 2.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags: pending</span>
+<span class="go">    hash: 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682</span>
+<span class="go">Split status: N/A (0)</span>
+</pre></div>
+</div>
+<p>The status of the image in the secondary slot is now set to <strong>pending</strong>.</p>
+<p>Power the device OFF and ON and run the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">image</span> <span class="pre">list</span></code> command
+to check the image status on the device after the reboot:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newtmgr image list -c mybleprph
+<span class="go">Images:</span>
+<span class="go"> slot=0</span>
+<span class="go">    version: 2.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags: active</span>
+<span class="go">    hash: 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682</span>
+<span class="go"> slot=1</span>
+<span class="go">    version: 1.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags: confirmed</span>
+<span class="go">    hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2</span>
+<span class="go">Split status: N/A (0)</span>
+</pre></div>
+</div>
+<p>The uploaded image is now active and running in the primary slot. The
+image, however, is not confirmed. The confirmed image is in the
+secondary slot. On the next reboot, the bootloader reverts to using the
+confirmed image. It copies the confirmed image to the primary slot and
+runs the image when the device reboots. You need to confirm and make the
+uploaded image in the primary slot permanent.</p>
+</div>
+<div class="section" id="step-4-confirming-the-image">
+<h2><a class="toc-backref" href="#id7">Step 4: Confirming the Image</a><a class="headerlink" href="#step-4-confirming-the-image" title="Permalink to this headline">¶</a></h2>
+<p>Run the <code class="docutils literal notranslate"><span class="pre">newtmgr</span> <span class="pre">image</span> <span class="pre">confirm</span></code> command to confirm and make the
+uploaded image permanent. Since the uploaded image is currently the
+active image, you can confirm the image setup without specifying the
+image hash value in the command:</p>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newtmgr image confirm -c mybleprph
+<span class="go">Images:</span>
+<span class="go"> slot=0</span>
+<span class="go">    version: 2.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags: active confirmed</span>
+<span class="go">    hash: 291ebc02a8c345911c96fdf4e7b9015a843697658fd6b5faa0eb257a23e93682</span>
+<span class="go"> slot=1</span>
+<span class="go">    version: 1.0.0</span>
+<span class="go">    bootable: true</span>
+<span class="go">    flags:</span>
+<span class="go">    hash: b8d17c77a03b37603cd9f89fdcfe0ba726f8ddff6eac63011dee2e959cc316c2</span>
+<span class="go">Split status: N/A (0)</span>
+</pre></div>
+</div>
+<p>The uploaded image is now the active and confirmed image. You have
+successfully upgraded an image over-the-air.</p>
+</div>
+</div>
+
+
+                   </div>
+                  </div>
+                  
+    <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
+      
+        <a href="../sensors/sensors.html" class="btn btn-neutral float-right" title="Sensors" accesskey="n">Next: Sensors <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="add_newtmgr.html" class="btn btn-neutral" title="Enabling Newt Manager in Your Application" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Enabling Newt Manager in Your Application</a>
+      
+    </div>
+
+                </div>
+              </div>
+            </div>
+            <!-- ENDS CONTENT SECTION -->
+          </div>
+          <!-- ENDS .content -->
+        </div>
+      </div>
+      <footer>
+  <div class="container">
+    <div class="row">
+      <div class="col-xs-12">
+          
+              <p class="copyright">Apache Mynewt is available under Apache License, version 2.0.</p>
+          
+      </div>
+      <div class="col-xs-12">
+          <div class="logos">
+              <img src="../../_static/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
+              <small class="footnote">
+                Apache Mynewt, Mynewt, Apache, the Apache feather logo, and the Apache Mynewt project logo are either
+                registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+              </small>
+              <a href="https://join.slack.com/mynewt/shared_invite/MTkwMTg1ODM1NTg5LTE0OTYxNzQ4NzQtZTU1YmNhYjhkMg">
+                <img src="../../_static/img/add_to_slack.png" alt="Slack Icon" title="Join our Slack Community" />
+              </a>
+          </div>
+      </div>
+    </div>
+  </div>
+</footer>
+    </div>
+    <!-- ENDS #wrapper -->
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'../../',
+            VERSION:'1.3.0',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true,
+            SOURCELINK_SUFFIX: '.txt'
+        };
+    </script>
+      <script type="text/javascript" src="../../_static/jquery.js"></script>
+      <script type="text/javascript" src="../../_static/underscore.js"></script>
+      <script type="text/javascript" src="../../_static/doctools.js"></script>
+      <script type="text/javascript" src="../../_static/js/bootstrap-3.0.3.min.js"></script>
+      <script type="text/javascript" src="../../_static/js/affix.js"></script>
+      <script type="text/javascript" src="../../_static/js/main.js"></script>
+
+   
+
+  </body>
+</html>
\ No newline at end of file
diff --git a/develop/tutorials/lora/lorawanapp.html b/develop/tutorials/lora/lorawanapp.html
index 662be25d3..60b9faacc 100644
--- a/develop/tutorials/lora/lorawanapp.html
+++ b/develop/tutorials/lora/lorawanapp.html
@@ -42,7 +42,7 @@
           <link rel="search" title="Search" href="../../search.html"/>
       <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
-          <link rel="next" title="&lt;no title&gt;" href="../os_fundamentals/os_fundamentals.html"/>
+          <link rel="next" title="OS Fundamentals" href="../os_fundamentals/os_fundamentals.html"/>
           <link rel="prev" title="Use HCI access to NimBLE controller" href="../ble/blehci_project.html"/> 
 
     
@@ -226,7 +226,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
@@ -596,7 +597,7 @@ <h2>Sending data<a class="headerlink" href="#sending-data" title="Permalink to t
                   
     <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
       
-        <a href="../os_fundamentals/os_fundamentals.html" class="btn btn-neutral float-right" title="&lt;no title&gt;" accesskey="n">Next: &lt;no title&gt; <span class="fa fa-arrow-circle-right"></span></a>
+        <a href="../os_fundamentals/os_fundamentals.html" class="btn btn-neutral float-right" title="OS Fundamentals" accesskey="n">Next: OS Fundamentals <span class="fa fa-arrow-circle-right"></span></a>
       
       
         <a href="../ble/blehci_project.html" class="btn btn-neutral" title="Use HCI access to NimBLE controller" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Use HCI access to NimBLE controller</a>
diff --git a/develop/tutorials/os_fundamentals/event_queue.html b/develop/tutorials/os_fundamentals/event_queue.html
index 3f9000530..a2f29491b 100644
--- a/develop/tutorials/os_fundamentals/event_queue.html
+++ b/develop/tutorials/os_fundamentals/event_queue.html
@@ -41,9 +41,9 @@
                 href="../../genindex.html"/>
           <link rel="search" title="Search" href="../../search.html"/>
       <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
-          <link rel="up" title="&lt;no title&gt;" href="os_fundamentals.html"/>
-          <link rel="next" title="Sensors" href="../sensors/sensors.html"/>
-          <link rel="prev" title="&lt;no title&gt;" href="os_fundamentals.html"/> 
+          <link rel="up" title="OS Fundamentals" href="os_fundamentals.html"/>
+          <link rel="next" title="Tasks and Priority Management" href="tasks_lesson.html"/>
+          <link rel="prev" title="OS Fundamentals" href="os_fundamentals.html"/> 
 
     
     <script src="../../_static/js/modernizr.min.js"></script>
@@ -156,7 +156,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
     
       <a href="../tutorials.html">Tutorials</a> /
     
-      <a href="os_fundamentals.html">&lt;no title&gt;</a> /
+      <a href="os_fundamentals.html">OS Fundamentals</a> /
     
     How to Use Event Queues to Manage Multiple Events
     
@@ -228,7 +228,12 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2 current"><a class="current reference internal" href="#">Events and Event Queues</a></li>
+<li class="toctree-l2 current"><a class="reference internal" href="os_fundamentals.html">OS Fundamentals</a><ul class="current">
+<li class="toctree-l3 current"><a class="current reference internal" href="#">Events and Event Queues</a></li>
+<li class="toctree-l3"><a class="reference internal" href="tasks_lesson.html">Task and Priority Management</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
@@ -786,10 +791,10 @@ <h3><a class="toc-backref" href="#id9">Putting It All Together</a><a class="head
                   
     <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
       
-        <a href="../sensors/sensors.html" class="btn btn-neutral float-right" title="Sensors" accesskey="n">Next: Sensors <span class="fa fa-arrow-circle-right"></span></a>
+        <a href="tasks_lesson.html" class="btn btn-neutral float-right" title="Tasks and Priority Management" accesskey="n">Next: Tasks and Priority Management <span class="fa fa-arrow-circle-right"></span></a>
       
       
-        <a href="os_fundamentals.html" class="btn btn-neutral" title="&lt;no title&gt;" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: &lt;no title&gt;</a>
+        <a href="os_fundamentals.html" class="btn btn-neutral" title="OS Fundamentals" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: OS Fundamentals</a>
       
     </div>
 
diff --git a/develop/tutorials/os_fundamentals/os_fundamentals.html b/develop/tutorials/os_fundamentals/os_fundamentals.html
index 9023d3f1d..42e38ebfe 100644
--- a/develop/tutorials/os_fundamentals/os_fundamentals.html
+++ b/develop/tutorials/os_fundamentals/os_fundamentals.html
@@ -10,7 +10,7 @@
     
 
     
-    <title>&lt;no title&gt; &mdash; Apache Mynewt 1.3.0 documentation</title>
+    <title>OS Fundamentals &mdash; Apache Mynewt 1.3.0 documentation</title>
     
 
     
@@ -156,7 +156,7 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
     
       <a href="../tutorials.html">Tutorials</a> /
     
-    &lt;no title&gt;
+    OS Fundamentals
     
   <div class="sourcelink">
     <a href="https://github.com/apache/mynewt-documentation/edit/master/docs/tutorials/os_fundamentals/os_fundamentals.rst" class="icon icon-github"
@@ -216,11 +216,27 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
       
         
         
-            <ul>
+            <ul class="current">
 <li class="toctree-l1"><a class="reference internal" href="../../index.html">Introduction</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../../get_started/index.html">Setup &amp; Get Started</a></li>
 <li class="toctree-l1"><a class="reference internal" href="../../concepts.html">Concepts</a></li>
-<li class="toctree-l1"><a class="reference internal" href="../tutorials.html">Tutorials</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../tutorials.html">Tutorials</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../blinky/blinky.html">Project Blinky</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../repo/add_repos.html">Working with repositories</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="#">OS Fundamentals</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l3"><a class="reference internal" href="tasks_lesson.html">Task and Priority Management</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
+</ul>
+</li>
 <li class="toctree-l1"><a class="reference internal" href="../../os/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>
@@ -254,10 +270,14 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
                   <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
                    <div itemprop="articleBody">
                     
-  <div class="toctree-wrapper compound">
+  <div class="section" id="os-fundamentals">
+<h1>OS Fundamentals<a class="headerlink" href="#os-fundamentals" title="Permalink to this headline">¶</a></h1>
+<div class="toctree-wrapper compound">
 <ul>
 <li class="toctree-l1"><a class="reference internal" href="event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l1"><a class="reference internal" href="tasks_lesson.html">Task and Priority Management</a></li>
 </ul>
+</div>
 </div>
 
 
diff --git a/develop/tutorials/os_fundamentals/tasks_lesson.html b/develop/tutorials/os_fundamentals/tasks_lesson.html
new file mode 100644
index 000000000..83761d475
--- /dev/null
+++ b/develop/tutorials/os_fundamentals/tasks_lesson.html
@@ -0,0 +1,635 @@
+
+
+<!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>Tasks and Priority Management &mdash; Apache Mynewt 1.3.0 documentation</title>
+    
+
+    
+    
+      <link rel="shortcut icon" href="../../_static/mynewt-logo-only-newt32x32.png"/>
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
+
+    
+      <link rel="stylesheet" href="../../_static/css/sphinx_theme.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/bootstrap-3.0.3.min.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/v2.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/custom.css" type="text/css" />
+    
+      <link rel="stylesheet" href="../../_static/css/restructuredtext.css" type="text/css" />
+    
+
+    
+
+    <link rel="stylesheet" href="../../_static/css/overrides.css" type="text/css" />
+          <link rel="index" title="Index"
+                href="../../genindex.html"/>
+          <link rel="search" title="Search" href="../../search.html"/>
+      <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
+          <link rel="up" title="OS Fundamentals" href="os_fundamentals.html"/>
+          <link rel="next" title="Remote Device Management" href="../devmgmt/devmgmt.html"/>
+          <link rel="prev" title="How to Use Event Queues to Manage Multiple Events" href="event_queue.html"/> 
+
+    
+    <script src="../../_static/js/modernizr.min.js"></script>
+
+    
+    <script>
+    (function(i, s, o, g, r, a, m) {
+	i["GoogleAnalyticsObject"] = r;
+	(i[r] =
+		i[r] ||
+		function() {
+			(i[r].q = i[r].q || []).push(arguments);
+		}),
+		(i[r].l = 1 * new Date());
+	(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
+	a.async = 1;
+	a.src = g;
+	m.parentNode.insertBefore(a, m);
+})(window, document, "script", "//www.google-analytics.com/analytics.js", "ga");
+
+ga("create", "UA-72162311-1", "auto");
+ga("send", "pageview");
+</script>
+    
+
+  </head>
+
+  <body class="not-front page-documentation" role="document" >
+    <div id="wrapper">
+      <div class="container">
+    <div id="banner" class="row v2-main-banner">
+        <a class="logo-cell" href="/">
+            <img class="logo" src="../../_static/img/logo.png">
+        </a>
+        <div class="tagline-cell">
+            <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4>
+        </div>
+        <div class="news-cell">
+            <div class="well">
+              <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (December 13, 2017)
+            </div>
+        </div>
+    </div>
+</div>
+      
+<header>
+    <nav id="navbar" class="navbar navbar-inverse" role="navigation">
+        <div class="container">
+            <!-- Collapsed navigation -->
+            <div class="navbar-header">
+                <!-- Expander button -->
+                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
+                    <span class="sr-only">Toggle navigation</span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                    <span class="icon-bar"></span>
+                </button>
+
+            </div>
+
+            <!-- Expanded navigation -->
+            <div class="navbar-collapse collapse">
+                <!-- Main navigation -->
+                <ul class="nav navbar-nav navbar-right">
+                    <li>
+                        <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a>
+                    </li>
+                    <li class="important">
+                        <a href="/get_started/quick_start.html">Quick Start</a>
+                    </li>
+                    <li>
+                        <a href="/about/">About</a>
+                    </li>
+                    <li>
+                        <a href="/talks/">Talks</a>
+                    </li>
+                    <li class="active">
+                        <a href="/documentation/">Documentation</a>
+                    </li>
+                    <li>
+                        <a href="/download/">Download</a>
+                    </li>
+                    <li>
+                        <a href="/community/">Community</a>
+                    </li>
+                    <li>
+                        <a href="/events/">Events</a>
+                    </li>
+                </ul>
+
+                <!-- Search, Navigation and Repo links -->
+                <ul class="nav navbar-nav navbar-right">
+                    
+                </ul>
+            </div>
+        </div>
+    </nav>
+</header>
+      <!-- STARTS MAIN CONTENT -->
+      <div id="main-content">
+        
+
+
+
+
+
+<div id="breadcrumb">
+  <div class="container">
+    <a href="/documentation/">Docs</a> /
+    
+      <a href="../tutorials.html">Tutorials</a> /
+    
+      <a href="os_fundamentals.html">OS Fundamentals</a> /
+    
+    Tasks and Priority Management
+    
+  <div class="sourcelink">
+    <a href="https://github.com/apache/mynewt-documentation/edit/master/docs/tutorials/os_fundamentals/tasks_lesson.rst" class="icon icon-github"
+           rel="nofollow"> Edit on GitHub</a>
+</div>
+  </div>
+</div>
+        <!-- STARTS CONTAINER -->
+        <div class="container">
+          <!-- STARTS .content -->
+          <div id="content" class="row">
+            
+            <!-- STARTS .container-sidebar -->
+<div class="container-sidebar col-xs-12 col-sm-3">
+  <div id="docSidebar" class="sticky-container">
+    <div role="search" class="sphinx-search">
+  <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">
+    <input type="text" name="q" placeholder="Search documentation" class="search-documentation" />
+    <input type="hidden" name="check_keywords" value="yes" />
+    <input type="hidden" name="area" value="default" />
+  </form>
+</div>
+    
+<!-- Note: only works when deployed -->
+<select class="form-control" onchange="if (this.value) window.location.href=this.value">
+    <option
+      value="/develop"
+      selected
+      >
+      Version: develop (latest - mynewt-documentation)
+    </option>
+    <option
+      value="/latest/os/introduction"
+      >
+      Version: master (latest - mynewt-site)
+    </option>
+    <option
+      value="/v1_2_0/os/introduction"
+      >
+      Version: 1.2.0
+    </option>
+    <option
+      value="/v1_1_0/os/introduction">
+      Version: 1.1.0
+    </option>
+    <option
+      value="/v1_0_0/os/introduction">
+      Version: 1.0.0
+    </option>
+    <option
+      value="/v0_9_0/os/introduction">
+      Version: 0_9_0
+    </option>
+</select>
+    <div class="region region-sidebar">
+      <div class="docs-menu">
+      
+        
+        
+            <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../../index.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../get_started/index.html">Setup &amp; Get Started</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../concepts.html">Concepts</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../tutorials.html">Tutorials</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../blinky/blinky.html">Project Blinky</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../repo/add_repos.html">Working with repositories</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
+<li class="toctree-l2 current"><a class="reference internal" href="os_fundamentals.html">OS Fundamentals</a><ul class="current">
+<li class="toctree-l3"><a class="reference internal" href="event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l3 current"><a class="current reference internal" href="#">Task and Priority Management</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../../os/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="../../mynewt_faq.html">Mynewt OS related FAQ</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../misc/index.html">Appendix</a></li>
+</ul>
+
+        
+      
+      </div>
+    </div>
+  </div>
+  <!-- ENDS STICKY CONTAINER -->
+</div>
+<!-- ENDS .container-sidebar -->
+
+            <div class="col-xs-12 col-sm-9">
+              <div class="alert alert-info" role="alert">
+  <p>
+    This is the development version of Apache Mynewt documentation. As such it may not be as complete as the latest
+    stable version of the documentation found <a href="/latest/os/introduction/">here</a>.
+  </p>
+  <p>
+    To improve this documentation please visit <a href="https://github.com/apache/mynewt-documentation">https://github.com/apache/mynewt-documentation</a>.
+  </p>
+</div>
+              
+              <div class="">
+                <div class="rst-content">
+                  <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+                   <div itemprop="articleBody">
+                    
+  <div class="section" id="tasks-and-priority-management">
+<h1>Tasks and Priority Management<a class="headerlink" href="#tasks-and-priority-management" title="Permalink to this headline">¶</a></h1>
+<p><strong>Target Platform: Arduino M0 Pro</strong> (or legacy Arduino Zero or Zero Pro,
+but not Arduino M0)</p>
+<p>This lesson is designed to teach core OS concepts and strategies
+encountered when building applications using Mynewt. Specifically, this
+lesson will cover tasks, simple multitasking, and priority management
+running on an Arduino M0 Pro.</p>
+<div class="contents local topic" id="contents">
+<ul class="simple">
+<li><a class="reference internal" href="#prerequisites" id="id2">Prerequisites</a></li>
+<li><a class="reference internal" href="#equipment" id="id3">Equipment</a></li>
+<li><a class="reference internal" href="#build-your-application" id="id4">Build Your Application</a></li>
+<li><a class="reference internal" href="#default-main-task" id="id5">Default Main Task</a></li>
+<li><a class="reference internal" href="#create-a-new-task" id="id6">Create a New Task</a></li>
+<li><a class="reference internal" href="#task-priority-preempting-and-context-switching" id="id7">Task Priority, Preempting, and Context Switching</a></li>
+</ul>
+</div>
+<div class="section" id="prerequisites">
+<h2><a class="toc-backref" href="#id2">Prerequisites</a><a class="headerlink" href="#prerequisites" title="Permalink to this headline">¶</a></h2>
+<p>Before starting, you should read about Mynewt in the
+<a class="reference internal" href="../../index.html"><span class="doc">Introduction</span></a> section and
+complete the
+<a class="reference internal" href="../../get_started/index.html"><span class="doc">QuickStart</span></a>
+guide and the
+<a class="reference internal" href="../blinky/arduino_zero.html"><span class="doc">Blinky</span></a>
+tutorial. Furthermore, it may be helpful to take a peek at the <a class="reference internal" href="../../os/core_os/task/task.html"><span class="doc">task
+documentation</span></a> for
+additional insights.</p>
+</div>
+<div class="section" id="equipment">
+<h2><a class="toc-backref" href="#id3">Equipment</a><a class="headerlink" href="#equipment" title="Permalink to this headline">¶</a></h2>
+<p>You will need the following equipment:</p>
+<ul class="simple">
+<li>Arduino M0 Pro (or legacy Arduino Zero or Zero Pro, but not Arduino
+M0)</li>
+<li>Computer with Mynewt installed</li>
+<li>USB to Micro USB Cable</li>
+</ul>
+</div>
+<div class="section" id="build-your-application">
+<h2><a class="toc-backref" href="#id4">Build Your Application</a><a class="headerlink" href="#build-your-application" title="Permalink to this headline">¶</a></h2>
+<p>To save time, we will simply modify the Blinky application. We’ll add
+the Task Management code to the Blinky application. Follow the <a class="reference internal" href="../blinky/arduino_zero.html"><span class="doc">Arduino
+Zero Blinky
+tutorial</span></a> to
+create a new project and build your bootloader and application. Finally,
+build and load the application to your Arduino to verify that everything
+is in order. Now let’s get started!</p>
+</div>
+<div class="section" id="default-main-task">
+<h2><a class="toc-backref" href="#id5">Default Main Task</a><a class="headerlink" href="#default-main-task" title="Permalink to this headline">¶</a></h2>
+<p>During Mynewt system startup, Mynewt creates a default main task and
+executes the application <code class="docutils literal notranslate"><span class="pre">main()</span></code> function in the context of this
+task. The main task priority defaults to 127 and can be configured with
+the <code class="docutils literal notranslate"><span class="pre">OS_MAIN_TASK_PRIO</span></code> system configuration setting.</p>
+<p>The blinky application only has the <code class="docutils literal notranslate"><span class="pre">main</span></code> task. The <code class="docutils literal notranslate"><span class="pre">main()</span></code>
+function executes an infinite loop that toggles the led and sleeps for
+one second.</p>
+</div>
+<div class="section" id="create-a-new-task">
+<h2><a class="toc-backref" href="#id6">Create a New Task</a><a class="headerlink" href="#create-a-new-task" title="Permalink to this headline">¶</a></h2>
+<p>The purpose of this section is to give an introduction to the important
+aspects of tasks and how to properly initialize them. First, let’s
+define a second task called <code class="docutils literal notranslate"><span class="pre">work_task</span></code> in main.c (located in
+apps/blinky/src):</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="k">struct</span> <span class="n">os_task</span> <span class="n">work_task</span><span class="p">;</span>
+</pre></div>
+</div>
+<p>A task is represented by the
+<span class="xref std std-doc">os_task</span>
+struct which will hold the task’s information (name, state, priority,
+etc.). A task is made up of two main elements, a task function (also
+known as a task handler) and a task stack.</p>
+<p>Next, let’s take a look at what is required to initialize our new task.</p>
+<div class="section" id="task-stack">
+<h3>Task Stack<a class="headerlink" href="#task-stack" title="Permalink to this headline">¶</a></h3>
+<p>The task stack is an array of type <code class="docutils literal notranslate"><span class="pre">os_stack_t</span></code> which holds the
+program stack frames. Mynewt gives us the ability to set the stack size
+for a task giving the application developer room to optimize memory
+usage. Since we’re not short on memory, our <code class="docutils literal notranslate"><span class="pre">work_stack</span></code> is plenty
+large for the purpose of this lesson. Notice that the elements in our
+task stack are of type <code class="docutils literal notranslate"><span class="pre">os_stack_t</span></code> which are generally 32 bits,
+making our entire stack 1024 Bytes.</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="cp">#define WORK_STACK_SIZE OS_STACK_ALIGN(256)</span>
+</pre></div>
+</div>
+<p>Note: The <code class="docutils literal notranslate"><span class="pre">OS_STACK_ALIGN</span></code> macro is used to align the stack based on
+the hardware architecture.</p>
+</div>
+<div class="section" id="task-function">
+<h3>Task Function<a class="headerlink" href="#task-function" title="Permalink to this headline">¶</a></h3>
+<p>A task function is essentially an infinite loop that waits for some
+“event” to wake it up. In general, the task function is where the
+majority of work is done by a task. Let’s write a task function for
+<code class="docutils literal notranslate"><span class="pre">work_task</span></code> called <code class="docutils literal notranslate"><span class="pre">work_task_handler()</span></code>:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="kt">void</span>
+<span class="nf">work_task_handler</span><span class="p">(</span><span class="kt">void</span> <span class="o">*</span><span class="n">arg</span><span class="p">)</span>
+<span class="p">{</span>
+    <span class="k">struct</span> <span class="n">os_task</span> <span class="o">*</span><span class="n">t</span><span class="p">;</span>
+
+    <span class="n">g_led_pin</span> <span class="o">=</span> <span class="n">LED_BLINK_PIN</span><span class="p">;</span>
+    <span class="n">hal_gpio_init_out</span><span class="p">(</span><span class="n">g_led_pin</span><span class="p">,</span> <span class="mi">1</span><span class="p">);</span>
+
+    <span class="k">while</span> <span class="p">(</span><span class="mi">1</span><span class="p">)</span> <span class="p">{</span>
+        <span class="n">t</span> <span class="o">=</span> <span class="n">os_sched_get_current_task</span><span class="p">();</span>
+        <span class="n">assert</span><span class="p">(</span><span class="n">t</span><span class="o">-&gt;</span><span class="n">t_func</span> <span class="o">==</span> <span class="n">work_task_handler</span><span class="p">);</span>
+        <span class="cm">/* Do work... */</span>
+    <span class="p">}</span>
+<span class="p">}</span>
+</pre></div>
+</div>
+<p>The task function is called when the task is initially put into the
+<em>running</em> state by the scheduler. We use an infinite loop to ensure that
+the task function never returns. Our assertion that the current task’s
+handler is the same as our task handler is for illustration purposes
+only and does not need to be in most task functions.</p>
+</div>
+<div class="section" id="task-priority">
+<h3>Task Priority<a class="headerlink" href="#task-priority" title="Permalink to this headline">¶</a></h3>
+<p>As a preemptive, multitasking RTOS, Mynewt decides which tasks to run
+based on which has a higher priority; the highest priority being 0 and
+the lowest 255. Thus, before initializing our task, we must choose a
+priority defined as a macro variable.</p>
+<p>Let’s set the priority of <code class="docutils literal notranslate"><span class="pre">work_task</span></code> to 0, because everyone knows
+that work is more important than blinking.</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="cp">#define WORK_TASK_PRIO (0)</span>
+</pre></div>
+</div>
+</div>
+<div class="section" id="initialization">
+<h3>Initialization<a class="headerlink" href="#initialization" title="Permalink to this headline">¶</a></h3>
+<p>To initialize a new task we use <code class="docutils literal notranslate"><span class="pre">os_task_init()</span></code>
+which takes a number of arguments including our new task function,
+stack, and priority.</p>
+<p>Add the <code class="docutils literal notranslate"><span class="pre">init_tasks()</span></code> function to initialize <code class="docutils literal notranslate"><span class="pre">work_task</span></code> to keep
+our main function clean.</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="kt">int</span>
+<span class="nf">init_tasks</span><span class="p">(</span><span class="kt">void</span><span class="p">)</span>
+<span class="p">{</span>
+    <span class="cm">/* … */</span>
+    <span class="n">os_stack_t</span> <span class="o">*</span><span class="n">work_stack</span><span class="p">;</span>
+    <span class="n">work_stack</span> <span class="o">=</span> <span class="n">malloc</span><span class="p">(</span><span class="k">sizeof</span><span class="p">(</span><span class="n">os_stack_t</span><span class="p">)</span><span class="o">*</span><span class="n">WORK_STACK_SIZE</span><span class="p">);</span>
+
+    <span class="n">assert</span><span class="p">(</span><span class="n">work_stack</span><span class="p">);</span>
+    <span class="n">os_task_init</span><span class="p">(</span><span class="o">&amp;</span><span class="n">work_task</span><span class="p">,</span> <span class="s">&quot;work&quot;</span><span class="p">,</span> <span class="n">work_task_handler</span><span class="p">,</span> <span class="nb">NULL</span><span class="p">,</span>
+            <span class="n">WORK_TASK_PRIO</span><span class="p">,</span> <span class="n">OS_WAIT_FOREVER</span><span class="p">,</span> <span class="n">work_stack</span><span class="p">,</span>
+            <span class="n">WORK_STACK_SIZE</span><span class="p">);</span>
+
+    <span class="k">return</span> <span class="mi">0</span><span class="p">;</span>
+<span class="p">}</span>
+</pre></div>
+</div>
+<p>Add the call to <code class="docutils literal notranslate"><span class="pre">init_tasks()</span></code> in <code class="docutils literal notranslate"><span class="pre">main()</span></code> before the <code class="docutils literal notranslate"><span class="pre">while</span></code>
+loop:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span>  int
+  main(int argc, char **argv)
+  {
+
+          ...
+
+      /* Initialize the work task */
+      init_tasks();
+
+      while (1) {
+           ...
+      }
+  }
+
+And that’s it! Now run your application using the newt run command.
+</pre></div>
+</div>
+<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> newt run arduino_blinky <span class="m">0</span>.0.0
+</pre></div>
+</div>
+<p>When GDB appears press C then Enter to continue and … <em>wait, why
+doesn’t our LED blink anymore?</em></p>
+<div class="section" id="review">
+<h4>Review<a class="headerlink" href="#review" title="Permalink to this headline">¶</a></h4>
+<p>Before we run our new app, let’s review what we need in
+order to create a task. This is a general case for a new task called
+mytask:</p>
+<p><strong>1)</strong> Define a new task, task stack, and priority:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="cm">/* My Task */</span>
+<span class="k">struct</span> <span class="n">os_task</span> <span class="n">mytask</span>
+<span class="cm">/* My Task Stack */</span>
+<span class="cp">#define MYTASK_STACK_SIZE OS_STACK_ALIGN(256)</span>
+<span class="n">os_stack_t</span> <span class="n">mytask_stack</span><span class="p">[</span><span class="n">MYTASK_STACK_SIZE</span><span class="p">];</span>
+<span class="cm">/* My Task Priority */</span>
+<span class="cp">#define MYTASK_PRIO (0)</span>
+</pre></div>
+</div>
+<p><strong>2)</strong> Define task function:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="kt">void</span>
+<span class="nf">mytask_handler</span><span class="p">(</span><span class="kt">void</span> <span class="o">*</span><span class="n">arg</span><span class="p">)</span>
+<span class="p">{</span>
+  <span class="k">while</span> <span class="p">(</span><span class="mi">1</span><span class="p">)</span> <span class="p">{</span>
+      <span class="cm">/* ... */</span>
+  <span class="p">}</span>
+<span class="p">}</span>
+</pre></div>
+</div>
+<p><strong>3)</strong> Initialize the task:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="n">os_task_init</span><span class="p">(</span><span class="o">&amp;</span><span class="n">mytask</span><span class="p">,</span> <span class="s">&quot;mytask&quot;</span><span class="p">,</span> <span class="n">mytask_handler</span><span class="p">,</span> <span class="nb">NULL</span><span class="p">,</span>
+            <span class="n">MYTASK_PRIO</span><span class="p">,</span> <span class="n">OS_WAIT_FOREVER</span><span class="p">,</span> <span class="n">mytask_stack</span><span class="p">,</span>
+            <span class="n">MYTASK_STACK_SIZE</span><span class="p">);</span>
+</pre></div>
+</div>
+</div>
+</div>
+</div>
+<div class="section" id="task-priority-preempting-and-context-switching">
+<h2><a class="toc-backref" href="#id7">Task Priority, Preempting, and Context Switching</a><a class="headerlink" href="#task-priority-preempting-and-context-switching" title="Permalink to this headline">¶</a></h2>
+<p>A preemptive RTOS is one in which a higher priority task that is <em>ready
+to run</em> will preempt (i.e.&nbsp;take the place of) the lower priority task
+which is <em>running</em>. When a lower priority task is preempted by a higher
+priority task, the lower priority task’s context data (stack pointer,
+registers, etc.) is saved and the new task is switched in.</p>
+<p>In our example, <code class="docutils literal notranslate"><span class="pre">work_task</span></code> (priority 0) has a higher priority than
+the <code class="docutils literal notranslate"><span class="pre">main</span></code> task (priority 127). Since <code class="docutils literal notranslate"><span class="pre">work_task</span></code> is never put into
+a <em>sleep</em> state, it holds the processor focus on its context.</p>
+<p>Let’s give <code class="docutils literal notranslate"><span class="pre">work_task</span></code> a delay and some simulated work to keep it
+busy. The delay is measured in os ticks and the actual number of ticks
+per second is dependent on the board. We multiply <code class="docutils literal notranslate"><span class="pre">OS_TICKS_PER_SEC</span></code>,
+which is defined in the MCU, by the number of seconds we wish to delay.</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span>  <span class="kt">void</span>
+  <span class="nf">work_task_handler</span><span class="p">(</span><span class="kt">void</span> <span class="o">*</span><span class="n">arg</span><span class="p">)</span>
+  <span class="p">{</span>
+      <span class="k">struct</span> <span class="n">os_task</span> <span class="o">*</span><span class="n">t</span><span class="p">;</span>
+
+      <span class="n">g_led_pin</span> <span class="o">=</span> <span class="n">LED_BLINK_PIN</span><span class="p">;</span>
+      <span class="n">hal_gpio_init_out</span><span class="p">(</span><span class="n">g_led_pin</span><span class="p">,</span> <span class="mi">1</span><span class="p">);</span>
+
+      <span class="k">while</span> <span class="p">(</span><span class="mi">1</span><span class="p">)</span> <span class="p">{</span>
+          <span class="n">t</span> <span class="o">=</span> <span class="nl">os_sched_get_current_t</span><span class="p">:</span><span class="n">ask</span><span class="p">();</span>
+          <span class="n">assert</span><span class="p">(</span><span class="n">t</span><span class="o">-&gt;</span><span class="n">t_func</span> <span class="o">==</span> <span class="n">work_task_handler</span><span class="p">);</span>
+          <span class="cm">/* Do work... */</span>
+          <span class="kt">int</span> <span class="n">i</span><span class="p">;</span>
+          <span class="k">for</span><span class="p">(</span><span class="n">i</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="n">i</span> <span class="o">&lt;</span> <span class="mi">1000000</span><span class="p">;</span> <span class="o">++</span><span class="n">i</span><span class="p">)</span> <span class="p">{</span>
+              <span class="cm">/* Simulate doing a noticeable amount of work */</span>
+              <span class="n">hal_gpio_write</span><span class="p">(</span><span class="n">g_led_pin</span><span class="p">,</span> <span class="mi">1</span><span class="p">);</span>
+          <span class="p">}</span>
+          <span class="n">os_time_delay</span><span class="p">(</span><span class="mi">3</span> <span class="o">*</span> <span class="n">OS_TICKS_PER_SEC</span><span class="p">);</span>
+      <span class="p">}</span>
+  <span class="p">}</span>
+
+<span class="n">In</span> <span class="n">order</span> <span class="n">to</span> <span class="n">notice</span> <span class="n">the</span> <span class="n">LED</span> <span class="n">changing</span><span class="p">,</span> <span class="n">modify</span> <span class="n">the</span> <span class="n">time</span> <span class="n">delay</span> <span class="n">in</span>
+</pre></div>
+</div>
+<p><code class="docutils literal notranslate"><span class="pre">main()</span></code> to blink at a higher frequency.</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span>  os_time_delay(OS_TICKS_PER_SEC/10);
+
+Before we run the app, let’s predict the behavior. With the newest
+</pre></div>
+</div>
+<p>additions to <code class="docutils literal notranslate"><span class="pre">work_task_handler()</span></code>, our first action will be to sleep
+for three seconds. This allows the <code class="docutils literal notranslate"><span class="pre">main</span></code> task, running <code class="docutils literal notranslate"><span class="pre">main()</span></code>, to
+take over the CPU and blink to its heart’s content. After three seconds,
+<code class="docutils literal notranslate"><span class="pre">work_task</span></code> will wake up and be made <em>ready to run</em>. This causes it to
+preempt the <code class="docutils literal notranslate"><span class="pre">main</span></code> task. The LED will then remain lit for a short
+period while <code class="docutils literal notranslate"><span class="pre">work_task</span></code> loops, then blink again for another three
+seconds while <code class="docutils literal notranslate"><span class="pre">work_task</span></code> sleeps.</p>
+<p>You should see that our prediction was correct!</p>
+<div class="section" id="priority-management-considerations">
+<h3>Priority Management Considerations<a class="headerlink" href="#priority-management-considerations" title="Permalink to this headline">¶</a></h3>
+<p>When projects grow in scope, from blinking LEDs into more sophisticated
+applications, the number of tasks needed increases alongside complexity.
+It remains important, then, that each of our tasks is capable of doing
+its work within a reasonable amount of time.</p>
+<p>Some tasks, such as the Shell task, execute quickly and require almost
+instantaneous response. Therefore, the Shell task should be given a high
+priority. On the other hand, tasks which may be communicating over a
+network, or processing data, should be given a low priority in order to
+not hog the CPU.</p>
+<p>The diagram below shows the different scheduling patterns we would
+expect when we set the <code class="docutils literal notranslate"><span class="pre">work_task</span></code> priority higher and lower than the
+<code class="docutils literal notranslate"><span class="pre">main</span></code> task priority.</p>
+<div class="figure" id="id1">
+<img alt="Task Scheduling" src="../../_images/task_lesson.png" />
+<p class="caption"><span class="caption-text">Task Scheduling</span></p>
+</div>
+<p>In the second case where the <code class="docutils literal notranslate"><span class="pre">main</span></code> task has a higher priority,
+<code class="docutils literal notranslate"><span class="pre">work_task</span></code> runs and executes “work” when the <code class="docutils literal notranslate"><span class="pre">main</span></code> task sleeps,
+saving us idle time compared to the first case.</p>
+<p><strong>Note:</strong> Defining the same priority for two tasks fires an assert in
+<code class="docutils literal notranslate"><span class="pre">os_task_init()</span></code> and must be avoided. Priority 127 is reserved for main
+task, 255 for idle task.</p>
+</div>
+</div>
+</div>
+
+
+                   </div>
+                  </div>
+                  
+    <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
+      
+        <a href="../devmgmt/devmgmt.html" class="btn btn-neutral float-right" title="Remote Device Management" accesskey="n">Next: Remote Device Management <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="event_queue.html" class="btn btn-neutral" title="How to Use Event Queues to Manage Multiple Events" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: How to Use Event Queues to Manage Multiple Events</a>
+      
+    </div>
+
+                </div>
+              </div>
+            </div>
+            <!-- ENDS CONTENT SECTION -->
+          </div>
+          <!-- ENDS .content -->
+        </div>
+      </div>
+      <footer>
+  <div class="container">
+    <div class="row">
+      <div class="col-xs-12">
+          
+              <p class="copyright">Apache Mynewt is available under Apache License, version 2.0.</p>
+          
+      </div>
+      <div class="col-xs-12">
+          <div class="logos">
+              <img src="../../_static/img/asf_logo_wide_small.png" alt="Apache" title="Apache">
+              <small class="footnote">
+                Apache Mynewt, Mynewt, Apache, the Apache feather logo, and the Apache Mynewt project logo are either
+                registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+              </small>
+              <a href="https://join.slack.com/mynewt/shared_invite/MTkwMTg1ODM1NTg5LTE0OTYxNzQ4NzQtZTU1YmNhYjhkMg">
+                <img src="../../_static/img/add_to_slack.png" alt="Slack Icon" title="Join our Slack Community" />
+              </a>
+          </div>
+      </div>
+    </div>
+  </div>
+</footer>
+    </div>
+    <!-- ENDS #wrapper -->
+
+  
+
+    <script type="text/javascript">
+        var DOCUMENTATION_OPTIONS = {
+            URL_ROOT:'../../',
+            VERSION:'1.3.0',
+            COLLAPSE_INDEX:false,
+            FILE_SUFFIX:'.html',
+            HAS_SOURCE:  true,
+            SOURCELINK_SUFFIX: '.txt'
+        };
+    </script>
+      <script type="text/javascript" src="../../_static/jquery.js"></script>
+      <script type="text/javascript" src="../../_static/underscore.js"></script>
+      <script type="text/javascript" src="../../_static/doctools.js"></script>
+      <script type="text/javascript" src="../../_static/js/bootstrap-3.0.3.min.js"></script>
+      <script type="text/javascript" src="../../_static/js/affix.js"></script>
+      <script type="text/javascript" src="../../_static/js/main.js"></script>
+
+   
+
+  </body>
+</html>
\ No newline at end of file
diff --git a/develop/tutorials/other/codesize.html b/develop/tutorials/other/codesize.html
index 59ac8eb83..ac7f14928 100644
--- a/develop/tutorials/other/codesize.html
+++ b/develop/tutorials/other/codesize.html
@@ -228,7 +228,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="other.html">Other</a><ul class="current">
diff --git a/develop/tutorials/other/other.html b/develop/tutorials/other/other.html
index 194c8b5e7..643eeff50 100644
--- a/develop/tutorials/other/other.html
+++ b/develop/tutorials/other/other.html
@@ -226,7 +226,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Other</a><ul>
diff --git a/develop/tutorials/other/unit_test.html b/develop/tutorials/other/unit_test.html
index 35817e5e1..53c87c1e0 100644
--- a/develop/tutorials/other/unit_test.html
+++ b/develop/tutorials/other/unit_test.html
@@ -228,7 +228,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="other.html">Other</a><ul class="current">
diff --git a/develop/tutorials/other/wi-fi_on_arduino.html b/develop/tutorials/other/wi-fi_on_arduino.html
index 6afaf64a6..0c72decdd 100644
--- a/develop/tutorials/other/wi-fi_on_arduino.html
+++ b/develop/tutorials/other/wi-fi_on_arduino.html
@@ -228,7 +228,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="other.html">Other</a><ul class="current">
diff --git a/develop/tutorials/repo/add_repos.html b/develop/tutorials/repo/add_repos.html
index 91104e906..96c93a490 100644
--- a/develop/tutorials/repo/add_repos.html
+++ b/develop/tutorials/repo/add_repos.html
@@ -231,7 +231,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/repo/create_repo.html b/develop/tutorials/repo/create_repo.html
index a125b626b..5437f77bf 100644
--- a/develop/tutorials/repo/create_repo.html
+++ b/develop/tutorials/repo/create_repo.html
@@ -233,7 +233,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/repo/private_repo.html b/develop/tutorials/repo/private_repo.html
index 300e05f31..c3c366712 100644
--- a/develop/tutorials/repo/private_repo.html
+++ b/develop/tutorials/repo/private_repo.html
@@ -233,7 +233,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/repo/upgrade_repo.html b/develop/tutorials/repo/upgrade_repo.html
index 6946abc04..f7d461e35 100644
--- a/develop/tutorials/repo/upgrade_repo.html
+++ b/develop/tutorials/repo/upgrade_repo.html
@@ -233,7 +233,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/sensors/air_quality.html b/develop/tutorials/sensors/air_quality.html
index 53702ca06..ad47ee1b5 100644
--- a/develop/tutorials/sensors/air_quality.html
+++ b/develop/tutorials/sensors/air_quality.html
@@ -228,7 +228,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a></li>
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Air Quality Sensor Project</a><ul>
diff --git a/develop/tutorials/sensors/air_quality_ble.html b/develop/tutorials/sensors/air_quality_ble.html
index 7f89e30a1..d5b532e97 100644
--- a/develop/tutorials/sensors/air_quality_ble.html
+++ b/develop/tutorials/sensors/air_quality_ble.html
@@ -230,7 +230,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a></li>
 <li class="toctree-l3 current"><a class="reference internal" href="air_quality.html">Air Quality Sensor Project</a><ul class="current">
diff --git a/develop/tutorials/sensors/air_quality_sensor.html b/develop/tutorials/sensors/air_quality_sensor.html
index 0eea1be1b..4ebbb4a27 100644
--- a/develop/tutorials/sensors/air_quality_sensor.html
+++ b/develop/tutorials/sensors/air_quality_sensor.html
@@ -230,7 +230,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a></li>
 <li class="toctree-l3 current"><a class="reference internal" href="air_quality.html">Air Quality Sensor Project</a><ul class="current">
@@ -294,7 +295,7 @@ <h1>Air Quality Sensor Project<a class="headerlink" href="#air-quality-sensor-pr
 <div class="section" id="prerequisites">
 <h2><a class="toc-backref" href="#id3">Prerequisites</a><a class="headerlink" href="#prerequisites" title="Permalink to this headline">¶</a></h2>
 <ul class="simple">
-<li>Complete one of the other tutorials (e.g. <span class="xref std std-doc">Project Blinky</span>) to famliarize yourself with Mynewt</li>
+<li>Complete one of the other tutorials (e.g. <a class="reference internal" href="../blinky/blinky.html"><span class="doc">Project Blinky</span></a>) to famliarize yourself with Mynewt</li>
 <li>Nordic nRF52 Development - PCA 10040</li>
 <li>Senseair K30 CO2 Sensor</li>
 </ul>
@@ -551,7 +552,7 @@ <h2><a class="toc-backref" href="#id6">Create Packages For Drivers</a><a class="
 </div>
 <div class="section" id="add-cli-commands-for-testing-drivers">
 <h2><a class="toc-backref" href="#id7">Add CLI Commands For Testing Drivers</a><a class="headerlink" href="#add-cli-commands-for-testing-drivers" title="Permalink to this headline">¶</a></h2>
-<p>While developing the driver, it would be helpful to issue operations from the console to verify the driver is responding correctly. Since the nRF52DK only has one UART, which will be used to connect to the CO2 sensor, the console we’ll use instead is the <span class="xref std std-doc">Segger RTT Console</span>. To configure this, make the following changes in your project’s <code class="docutils literal notranslate"><span class="pre">syscfg.yml</span></code> file:</p>
+<p>While developing the driver, it would be helpful to issue operations from the console to verify the driver is responding correctly. Since the nRF52DK only has one UART, which will be used to connect to the CO2 sensor, the console we’ll use instead is the <a class="reference internal" href="../tooling/segger_rtt.html"><span class="doc">Segger RTT Console</span></a>. To configure this, make the following changes in your project’s <code class="docutils literal notranslate"><span class="pre">syscfg.yml</span></code> file:</p>
 <div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">[user@IsMyLaptop:~/src/air_quality]$</span> cat targets/air_q/syscfg.yml
 <span class="go">syscfg.vals:</span>
 <span class="gp">    #</span> Enable the shell task.
diff --git a/develop/tutorials/sensors/nrf52_adc.html b/develop/tutorials/sensors/nrf52_adc.html
index 438ae49fa..ce070c3e2 100644
--- a/develop/tutorials/sensors/nrf52_adc.html
+++ b/develop/tutorials/sensors/nrf52_adc.html
@@ -228,7 +228,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a></li>
 <li class="toctree-l3"><a class="reference internal" href="air_quality.html">Air Quality Sensor Project</a></li>
@@ -302,7 +303,7 @@ <h2><a class="toc-backref" href="#id5">Required Hardware</a><a class="headerlink
 <li>Laptop running Mac OS</li>
 <li>It is assumed you have already installed newt tool.</li>
 <li>It is assumed you already installed native tools as described
-<span class="xref std std-doc">here</span></li>
+<a class="reference internal" href="../../get_started/native_install/native_tools.html"><span class="doc">here</span></a></li>
 </ul>
 </div>
 <div class="section" id="create-a-project">
@@ -1011,7 +1012,7 @@ <h2><a class="toc-backref" href="#id11">Conclusion</a><a class="headerlink" href
 device. That’s no small feat!</p>
 <p>If you see anything missing or want to send us feedback, please do so by
 signing up for appropriate mailing lists on our <span class="xref std std-doc">Community
-Page</span></p>
+Page</span>.</p>
 <p>Keep on hacking and sensing!</p>
 <p>Enjoy!</p>
 </div>
diff --git a/develop/tutorials/sensors/sensor_bleprph_oic.html b/develop/tutorials/sensors/sensor_bleprph_oic.html
index e544366c2..6f6085a5c 100644
--- a/develop/tutorials/sensors/sensor_bleprph_oic.html
+++ b/develop/tutorials/sensors/sensor_bleprph_oic.html
@@ -232,7 +232,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3 current"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a><ul class="current">
 <li class="toctree-l4"><a class="reference internal" href="sensor_nrf52_bno055.html">Enable an Off-Board Sensor in an Existing Application</a></li>
diff --git a/develop/tutorials/sensors/sensor_nrf52_bno055.html b/develop/tutorials/sensors/sensor_nrf52_bno055.html
index 21cacf938..1ca3660cf 100644
--- a/develop/tutorials/sensors/sensor_nrf52_bno055.html
+++ b/develop/tutorials/sensors/sensor_nrf52_bno055.html
@@ -230,7 +230,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3 current"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a><ul class="current">
 <li class="toctree-l4 current"><a class="current reference internal" href="#">Enable an Off-Board Sensor in an Existing Application</a></li>
diff --git a/develop/tutorials/sensors/sensor_nrf52_bno055_oic.html b/develop/tutorials/sensors/sensor_nrf52_bno055_oic.html
index 260ce292f..2684c33f9 100644
--- a/develop/tutorials/sensors/sensor_nrf52_bno055_oic.html
+++ b/develop/tutorials/sensors/sensor_nrf52_bno055_oic.html
@@ -232,7 +232,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3 current"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a><ul class="current">
 <li class="toctree-l4"><a class="reference internal" href="sensor_nrf52_bno055.html">Enable an Off-Board Sensor in an Existing Application</a></li>
diff --git a/develop/tutorials/sensors/sensor_offboard_config.html b/develop/tutorials/sensors/sensor_offboard_config.html
index 82413248b..8d74e9356 100644
--- a/develop/tutorials/sensors/sensor_offboard_config.html
+++ b/develop/tutorials/sensors/sensor_offboard_config.html
@@ -230,7 +230,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3 current"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a><ul class="current">
 <li class="toctree-l4"><a class="reference internal" href="sensor_nrf52_bno055.html">Enable an Off-Board Sensor in an Existing Application</a></li>
diff --git a/develop/tutorials/sensors/sensor_oic_overview.html b/develop/tutorials/sensors/sensor_oic_overview.html
index ece407995..52d1694d4 100644
--- a/develop/tutorials/sensors/sensor_oic_overview.html
+++ b/develop/tutorials/sensors/sensor_oic_overview.html
@@ -230,7 +230,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3 current"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a><ul class="current">
 <li class="toctree-l4"><a class="reference internal" href="sensor_nrf52_bno055.html">Enable an Off-Board Sensor in an Existing Application</a></li>
diff --git a/develop/tutorials/sensors/sensor_thingy_lis2dh12_onb.html b/develop/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
index bbe009679..572dc016d 100644
--- a/develop/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
+++ b/develop/tutorials/sensors/sensor_thingy_lis2dh12_onb.html
@@ -230,7 +230,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3 current"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a><ul class="current">
 <li class="toctree-l4"><a class="reference internal" href="sensor_nrf52_bno055.html">Enable an Off-Board Sensor in an Existing Application</a></li>
diff --git a/develop/tutorials/sensors/sensors.html b/develop/tutorials/sensors/sensors.html
index 1f054d7ae..d4058d861 100644
--- a/develop/tutorials/sensors/sensors.html
+++ b/develop/tutorials/sensors/sensors.html
@@ -43,7 +43,7 @@
       <link rel="top" title="Apache Mynewt 1.3.0 documentation" href="../../index.html"/>
           <link rel="up" title="Tutorials" href="../tutorials.html"/>
           <link rel="next" title="Sensor Tutorials Overview" href="sensors_framework.html"/>
-          <link rel="prev" title="How to Use Event Queues to Manage Multiple Events" href="../os_fundamentals/event_queue.html"/> 
+          <link rel="prev" title="Over-the-Air Image Upgrade" href="../devmgmt/ota_upgrade_nrf52.html"/> 
 
     
     <script src="../../_static/js/modernizr.min.js"></script>
@@ -226,7 +226,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Sensors</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="sensors_framework.html">Sensor Framework</a></li>
 <li class="toctree-l3"><a class="reference internal" href="air_quality.html">Air Quality Sensor Project</a></li>
@@ -290,7 +291,7 @@ <h1>Sensors<a class="headerlink" href="#sensors" title="Permalink to this headli
         <a href="sensors_framework.html" class="btn btn-neutral float-right" title="Sensor Tutorials Overview" accesskey="n">Next: Sensor Tutorials Overview <span class="fa fa-arrow-circle-right"></span></a>
       
       
-        <a href="../os_fundamentals/event_queue.html" class="btn btn-neutral" title="How to Use Event Queues to Manage Multiple Events" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: How to Use Event Queues to Manage Multiple Events</a>
+        <a href="../devmgmt/ota_upgrade_nrf52.html" class="btn btn-neutral" title="Over-the-Air Image Upgrade" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Over-the-Air Image Upgrade</a>
       
     </div>
 
diff --git a/develop/tutorials/sensors/sensors_framework.html b/develop/tutorials/sensors/sensors_framework.html
index b17724800..e985088a3 100644
--- a/develop/tutorials/sensors/sensors_framework.html
+++ b/develop/tutorials/sensors/sensors_framework.html
@@ -228,7 +228,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="sensors.html">Sensors</a><ul class="current">
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Sensor Framework</a><ul>
 <li class="toctree-l4"><a class="reference internal" href="sensor_nrf52_bno055.html">Enable an Off-Board Sensor in an Existing Application</a></li>
diff --git a/develop/tutorials/slinky/project-nrf52-slinky.html b/develop/tutorials/slinky/project-nrf52-slinky.html
index 213641470..bafe68e43 100644
--- a/develop/tutorials/slinky/project-nrf52-slinky.html
+++ b/develop/tutorials/slinky/project-nrf52-slinky.html
@@ -233,7 +233,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/slinky/project-sim-slinky.html b/develop/tutorials/slinky/project-sim-slinky.html
index 36c36a728..378b163b6 100644
--- a/develop/tutorials/slinky/project-sim-slinky.html
+++ b/develop/tutorials/slinky/project-sim-slinky.html
@@ -233,7 +233,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/slinky/project-slinky.html b/develop/tutorials/slinky/project-slinky.html
index de9ed1d51..435b4bc61 100644
--- a/develop/tutorials/slinky/project-slinky.html
+++ b/develop/tutorials/slinky/project-slinky.html
@@ -231,7 +231,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/slinky/project-stm32-slinky.html b/develop/tutorials/slinky/project-stm32-slinky.html
index e4597b82b..8e786e7dd 100644
--- a/develop/tutorials/slinky/project-stm32-slinky.html
+++ b/develop/tutorials/slinky/project-stm32-slinky.html
@@ -233,7 +233,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../other/other.html">Other</a></li>
diff --git a/develop/tutorials/tooling/segger_rtt.html b/develop/tutorials/tooling/segger_rtt.html
index 2c909b786..c1336d08e 100644
--- a/develop/tutorials/tooling/segger_rtt.html
+++ b/develop/tutorials/tooling/segger_rtt.html
@@ -228,7 +228,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="tooling.html">Tooling</a><ul class="current">
 <li class="toctree-l3 current"><a class="current reference internal" href="#">Segger RTT</a></li>
diff --git a/develop/tutorials/tooling/segger_sysview.html b/develop/tutorials/tooling/segger_sysview.html
index ca2caceb0..60200fe7b 100644
--- a/develop/tutorials/tooling/segger_sysview.html
+++ b/develop/tutorials/tooling/segger_sysview.html
@@ -228,7 +228,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2 current"><a class="reference internal" href="tooling.html">Tooling</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="segger_rtt.html">Segger RTT</a></li>
diff --git a/develop/tutorials/tooling/tooling.html b/develop/tutorials/tooling/tooling.html
index 8577135f5..4e0888a6e 100644
--- a/develop/tutorials/tooling/tooling.html
+++ b/develop/tutorials/tooling/tooling.html
@@ -226,7 +226,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="../slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="../sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Tooling</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="segger_rtt.html">Segger RTT</a></li>
diff --git a/develop/tutorials/tutorials.html b/develop/tutorials/tutorials.html
index 242f3ecbc..b8457798e 100644
--- a/develop/tutorials/tutorials.html
+++ b/develop/tutorials/tutorials.html
@@ -223,7 +223,8 @@ <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.3.0</a> released (Dece
 <li class="toctree-l2"><a class="reference internal" href="slinky/project-slinky.html">Project Slinky for Remote Comms</a></li>
 <li class="toctree-l2"><a class="reference internal" href="ble/ble.html">Bluetooth Low Energy</a></li>
 <li class="toctree-l2"><a class="reference internal" href="lora/lorawanapp.html">LoRa</a></li>
-<li class="toctree-l2"><a class="reference internal" href="os_fundamentals/event_queue.html">Events and Event Queues</a></li>
+<li class="toctree-l2"><a class="reference internal" href="os_fundamentals/os_fundamentals.html">OS Fundamentals</a></li>
+<li class="toctree-l2"><a class="reference internal" href="devmgmt/devmgmt.html">Remote Device Management</a></li>
 <li class="toctree-l2"><a class="reference internal" href="sensors/sensors.html">Sensors</a></li>
 <li class="toctree-l2"><a class="reference internal" href="tooling/tooling.html">Tooling</a></li>
 <li class="toctree-l2"><a class="reference internal" href="other/other.html">Other</a></li>
@@ -329,12 +330,12 @@ <h2><a class="toc-backref" href="#id3">Tutorial categories</a><a class="headerli
 </li>
 <li>OS Fundamentals<ul>
 <li><a class="reference internal" href="os_fundamentals/event_queue.html"><span class="doc">Events and Event Queues</span></a></li>
-<li><span class="xref std std-doc">Task and Priority Management</span></li>
+<li><a class="reference internal" href="os_fundamentals/tasks_lesson.html"><span class="doc">Task and Priority Management</span></a></li>
 </ul>
 </li>
 <li>Remote Device Management<ul>
-<li><span class="xref std std-doc">Enabling Newt Manager in Any App</span></li>
-<li><span class="xref std std-doc">Upgrading an Image Over-The-Air</span></li>
+<li><a class="reference internal" href="devmgmt/add_newtmgr.html"><span class="doc">Enabling Newt Manager in Any App</span></a></li>
+<li><a class="reference internal" href="devmgmt/ota_upgrade_nrf52.html"><span class="doc">Upgrading an Image Over-The-Air</span></a></li>
 </ul>
 </li>
 <li>Sensors<ul>
diff --git a/master/sitemap.xml b/master/sitemap.xml
index 89640589c..0a2f87c11 100644
--- a/master/sitemap.xml
+++ b/master/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -76,7 +76,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -85,7 +85,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -97,7 +97,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -133,7 +133,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -143,37 +143,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/sitemap.xml b/sitemap.xml
index 89640589c..0a2f87c11 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -76,7 +76,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -85,7 +85,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -97,7 +97,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -133,7 +133,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -143,37 +143,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v0_9_0/sitemap.xml b/v0_9_0/sitemap.xml
index 947d181ad..c85024349 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-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -12,7 +12,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -20,7 +20,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -53,7 +53,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -65,7 +65,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -101,7 +101,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -111,13 +111,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_0_0/sitemap.xml b/v1_0_0/sitemap.xml
index df1695fee..621f60482 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-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,7 +13,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -22,7 +22,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -30,7 +30,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -38,7 +38,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -46,7 +46,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -54,7 +54,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -62,7 +62,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -71,7 +71,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -83,7 +83,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -119,7 +119,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -129,25 +129,25 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_1_0/sitemap.xml b/v1_1_0/sitemap.xml
index 87c2332f2..8b247e8ba 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-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -125,7 +125,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -135,25 +135,25 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
diff --git a/v1_2_0/sitemap.xml b/v1_2_0/sitemap.xml
index 93fd5e7f3..3cdcf3480 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-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -125,7 +125,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -135,37 +135,37 @@
         
     <url>
      <loc>http://mynewt.apache.org/newt/install/prev_releases/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/newtmgr/prev_releases/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2018-05-23</lastmod>
+     <lastmod>2018-05-25</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