You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by gi...@apache.org on 2020/04/16 00:45:06 UTC

[mynewt-site] branch asf-site updated: asf-site update Thu Apr 16 00:45:01 UTC 2020

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/mynewt-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 7a150f6  asf-site update Thu Apr 16 00:45:01 UTC 2020
7a150f6 is described below

commit 7a150f69bf9403989308f76e5dda30f292a96e76
Author: jenkins <bu...@apache.org>
AuthorDate: Thu Apr 16 00:45:01 2020 +0000

    asf-site update Thu Apr 16 00:45:01 UTC 2020
---
 .../os/modules/drivers/chg_ctrl/chg_ctrl.rst.txt   | 145 ++++
 .../os/modules/drivers/chg_ctrl/sgm4056.rst.txt    | 101 +++
 master/_sources/os/modules/drivers/driver.rst.txt  |   5 +-
 master/objects.inv                                 | Bin 50746 -> 50798 bytes
 master/os/modules/devmgmt/newtmgr.html             |   4 +-
 master/os/modules/drivers/chg_ctrl/chg_ctrl.html   | 462 ++++++++++
 master/os/modules/drivers/chg_ctrl/sgm4056.html    | 431 ++++++++++
 master/os/modules/drivers/driver.html              |   8 +-
 master/os/modules/drivers/flash.html               |   1 +
 master/os/modules/drivers/mmc.html                 |   5 +-
 master/searchindex.js                              |   2 +-
 master/tutorials/other/chg_ctrl_on_pinetime.html   |   4 +-
 sitemap.xml                                        |  20 +-
 sitemap.xml.gz                                     | Bin 283 -> 284 bytes
 v0_9_0/sitemap.xml                                 | 574 ++++++-------
 v0_9_0/sitemap.xml.gz                              | Bin 2216 -> 2217 bytes
 v1_0_0/sitemap.xml                                 | 874 +++++++++----------
 v1_0_0/sitemap.xml.gz                              | Bin 3239 -> 3239 bytes
 v1_1_0/sitemap.xml                                 | 938 ++++++++++----------
 v1_1_0/sitemap.xml.gz                              | Bin 3464 -> 3464 bytes
 v1_2_0/sitemap.xml                                 | 944 ++++++++++-----------
 v1_2_0/sitemap.xml.gz                              | Bin 3487 -> 3487 bytes
 v1_3_0/sitemap.xml                                 | 942 ++++++++++----------
 v1_3_0/sitemap.xml.gz                              | Bin 3483 -> 3483 bytes
 24 files changed, 3302 insertions(+), 2158 deletions(-)

diff --git a/master/_sources/os/modules/drivers/chg_ctrl/chg_ctrl.rst.txt b/master/_sources/os/modules/drivers/chg_ctrl/chg_ctrl.rst.txt
new file mode 100644
index 0000000..e19d600
--- /dev/null
+++ b/master/_sources/os/modules/drivers/chg_ctrl/chg_ctrl.rst.txt
@@ -0,0 +1,145 @@
+..
+  #
+  # Copyright 2020 Casper Meijn <ca...@meijn.net>
+  #
+  # Licensed under the Apache License, Version 2.0 (the "License");
+  # you may not use this file except in compliance with the License.
+  # You may obtain a copy of the License at
+  #
+  #     http://www.apache.org/licenses/LICENSE-2.0
+  #
+  # Unless required by applicable law or agreed to in writing, software
+  # distributed under the License is distributed on an "AS IS" BASIS,
+  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  # See the License for the specific language governing permissions and
+  # limitations under the License.
+  #
+  
+Charge control drivers
+----------------------
+
+.. toctree::
+   :hidden:
+
+   SGM4056 <sgm4056>
+
+The charge control drivers provides support for various battery chargers. They 
+provide a abstract ``hw/charge-control`` Battery Charge Controller IC Interface.
+The available drivers are for:
+
+- ADP5061
+- BQ24040
+- DA1469x
+- :doc:`sgm4056`
+
+Initialization
+^^^^^^^^^^^^^^
+
+Most of the drivers need some driver-specific initialization. This is normally 
+done in the BSP by making a call to ``os_dev_create`` with a reference to the 
+driver init function and a driver-specific configuration.
+
+For the SGM4056 this will look this:
+
+.. code-block:: c
+
+    #include "sgm4056/sgm4056.h"
+
+    ...
+
+    static struct sgm4056_dev_config os_bsp_charger_config = {
+        .power_presence_pin = CHARGER_POWER_PRESENCE_PIN,
+        .charge_indicator_pin = CHARGER_CHARGE_PIN,
+    };
+
+    ...
+
+    rc = os_dev_create(&os_bsp_charger.dev, "charger",
+                       OS_DEV_INIT_KERNEL, OS_DEV_INIT_PRIO_DEFAULT,
+                       sgm4056_dev_init, &os_bsp_charger_config);
+
+
+Usage
+^^^^^
+
+After initialization the general charge control interface can be used to obtain 
+the data from the charger. First you need to obtain a reference to the charger.
+
+.. code-block:: c
+
+    #include "charge-control/charge_control.h"
+
+    ...
+
+    struct charge_control *charger;
+
+    charger = charge_control_mgr_find_next_bytype(CHARGE_CONTROL_TYPE_STATUS, NULL);
+    assert(charger);
+
+This will find any charger that has the abbility to report ``STATUS``. Then you 
+can obtain the status of the charger using ``charge_control_read``. This function
+will retreive the charger status and call a callback function. Lets first define 
+that callback function:
+
+.. code-block:: c
+
+    static int 
+    charger_data_callback(struct charge_control *chg_ctrl, void *arg,
+            void *data, charge_control_type_t type) 
+    {
+        if (type == CHARGE_CONTROL_TYPE_STATUS) {
+            charge_control_status_t charger_status = *(charge_control_status_t*)(data);
+
+            console_printf("Charger state is %i", charger_status);
+            console_flush();
+        }
+        return 0;
+    }
+
+The important arguments are the data pointer and the type of data. This function 
+prints the status to the console as an integer. You need to 
+extend it for your use-case. Now we can call the ``charge_control_read`` function:
+
+.. code-block:: c
+
+    rc = charge_control_read(charger, CHARGE_CONTROL_TYPE_STATUS, 
+        charger_data_callback, NULL, OS_TIMEOUT_NEVER);
+    assert(rc == 0);
+
+This causes the charge control code to obtain the status and call the callback. 
+
+Alternatively you can register a listener that will be called periodically and 
+on change. For this you need to define a ``charge_control_listener`` and 
+register it with charge control:
+
+.. code-block:: c
+
+    struct charge_control_listener charger_listener = {
+        .ccl_type = CHARGE_CONTROL_TYPE_STATUS,
+        .ccl_func = charger_data_callback,
+    };
+
+    ...
+
+    rc = charge_control_set_poll_rate_ms("charger", 10000);
+    assert(rc == 0);
+
+    rc = charge_control_register_listener(charger, &charger_listener);
+    assert(rc == 0);
+
+This sets the interval to 10 seconds and registers our callback as listener.
+This means that the callback will be called every 10 seconds and on interrupt 
+of the charger.
+
+Dependencies
+^^^^^^^^^^^^
+
+To include a charge control driver on a project, just include it as a
+dependency in your pkg.yml. This should be done in the BSP. For example:
+
+.. code-block:: yaml
+
+    pkg.deps:
+        - "@apache-mynewt-core/hw/drivers/chg_ctrl/sgm4056"
+
+
diff --git a/master/_sources/os/modules/drivers/chg_ctrl/sgm4056.rst.txt b/master/_sources/os/modules/drivers/chg_ctrl/sgm4056.rst.txt
new file mode 100644
index 0000000..7219cc4
--- /dev/null
+++ b/master/_sources/os/modules/drivers/chg_ctrl/sgm4056.rst.txt
@@ -0,0 +1,101 @@
+..
+  #
+  # Copyright 2020 Casper Meijn <ca...@meijn.net>
+  #
+  # Licensed under the Apache License, Version 2.0 (the "License");
+  # you may not use this file except in compliance with the License.
+  # You may obtain a copy of the License at
+  #
+  #     http://www.apache.org/licenses/LICENSE-2.0
+  #
+  # Unless required by applicable law or agreed to in writing, software
+  # distributed under the License is distributed on an "AS IS" BASIS,
+  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  # See the License for the specific language governing permissions and
+  # limitations under the License.
+  #
+  
+SGM4056 Charger
+===============
+
+The SGM4056 charger is able to report its status via two output pins. If 
+these pins are connected to GPIO inputs, then the ``sgm4056`` driver can 
+derive the charger status. 
+
+Initialization
+--------------
+
+Initialization of the ``sgm4056`` driver is normally done in the BSP. This is 
+done by creating a OS device using ``os_dev_create``. 
+
+.. code-block:: c
+
+    #include "sgm4056/sgm4056.h"
+
+    ...
+
+    static struct sgm4056_dev os_bsp_charger;
+    static struct sgm4056_dev_config os_bsp_charger_config = {
+        .power_presence_pin = CHARGER_POWER_PRESENCE_PIN,
+        .charge_indicator_pin = CHARGER_CHARGE_PIN,
+    };
+
+    void
+    hal_bsp_init(void)
+    {
+        int rc;
+
+        ...
+
+        /* Create charge controller */
+        rc = os_dev_create(&os_bsp_charger.dev, "charger",
+                        OS_DEV_INIT_KERNEL, OS_DEV_INIT_PRIO_DEFAULT,
+                        sgm4056_dev_init, &os_bsp_charger_config);
+        assert(rc == 0);
+    }
+
+First we create a instance of ``struct sgm4056_dev``, this will be initialised 
+later. Then we create a instance of ``struct sgm4056_dev_config``, which contains
+the pin numbers of the gpio connected to the charger. Then we call ``os_dev_create``
+with a pointer to the device, a device name, some defaults, the ``sgm4056_dev_init`` 
+initializor and a pointer to config. 
+
+Usage
+-----
+
+There a two ways to use the driver: directly or via :doc:`charge-control <chg_ctrl>`. 
+
+When using the driver directly, you need to open the OS device and then use the driver functions.
+
+.. code-block:: c
+
+    #include "sgm4056/sgm4056.h"
+
+    ...
+
+    int
+    main(int argc, char **argv)
+    {
+        struct sgm4056_dev *charger;
+
+        charger = (struct sgm4056_dev *) os_dev_open("charger", 0, 0);
+        assert(charger);
+
+        while (1) {
+            rc = sgm4056_get_charger_status(charger, &charger_status);
+            assert(rc == 0);
+
+            console_printf("Charger state = %i\n", charger_status);
+            console_flush();
+        }
+    }
+
+When using ``charge-control`` interface, you need to enable it in syscfg and 
+then follow the general instructions at :doc:`chg_ctrl`.
+
+.. code-block:: yaml
+
+    syscfg.vals:
+        # Enable charge control integration
+        SGM4056_USE_CHARGE_CONTROL: 1
+
diff --git a/master/_sources/os/modules/drivers/driver.rst.txt b/master/_sources/os/modules/drivers/driver.rst.txt
index 13ae89c..7cf1b11 100644
--- a/master/_sources/os/modules/drivers/driver.rst.txt
+++ b/master/_sources/os/modules/drivers/driver.rst.txt
@@ -2,10 +2,11 @@ Drivers
 =======
 
 .. toctree::
-   :maxdepth: 1
+   :hidden:
 
    flash <flash>
    mmc <mmc>
+   Charge Control <chg_ctrl/chg_ctrl>
 
 
 Description
@@ -154,3 +155,5 @@ includes:
 +----------------------------------------+--------------------------+
 | ``uart``                               | TODO: UART driver.       |
 +----------------------------------------+--------------------------+
+| ``chg_ctrl``                           | Charge control drivers.  |
++----------------------------------------+--------------------------+
diff --git a/master/objects.inv b/master/objects.inv
index b08b80a..eb5de08 100644
Binary files a/master/objects.inv and b/master/objects.inv differ
diff --git a/master/os/modules/devmgmt/newtmgr.html b/master/os/modules/devmgmt/newtmgr.html
index 0da7306..ea7e27f 100644
--- a/master/os/modules/devmgmt/newtmgr.html
+++ b/master/os/modules/devmgmt/newtmgr.html
@@ -43,7 +43,7 @@
       <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="OS User Guide" href="../../os_user_guide.html"/>
           <link rel="next" title="Using the OIC Framework" href="oicmgr.html"/>
-          <link rel="prev" title="mmc" href="../drivers/mmc.html"/> 
+          <link rel="prev" title="SGM4056 Charger" href="../drivers/chg_ctrl/sgm4056.html"/> 
 
     
     <script src="../../../_static/js/modernizr.min.js"></script>
@@ -339,7 +339,7 @@ oicmgr but does not support open connectivity.</p>
         <a href="oicmgr.html" class="btn btn-neutral float-right" title="Using the OIC Framework" accesskey="n">Next: Using the OIC Framework <span class="fa fa-arrow-circle-right"></span></a>
       
       
-        <a href="../drivers/mmc.html" class="btn btn-neutral" title="mmc" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: mmc</a>
+        <a href="../drivers/chg_ctrl/sgm4056.html" class="btn btn-neutral" title="SGM4056 Charger" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: SGM4056 Charger</a>
       
     </div>
 
diff --git a/master/os/modules/drivers/chg_ctrl/chg_ctrl.html b/master/os/modules/drivers/chg_ctrl/chg_ctrl.html
new file mode 100644
index 0000000..90c1893
--- /dev/null
+++ b/master/os/modules/drivers/chg_ctrl/chg_ctrl.html
@@ -0,0 +1,462 @@
+
+
+<!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>Charge control drivers &mdash; Apache Mynewt latest 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 latest documentation" href="../../../../index.html"/>
+          <link rel="up" title="Drivers" href="../driver.html"/>
+          <link rel="next" title="SGM4056 Charger" href="sgm4056.html"/>
+          <link rel="prev" title="mmc" href="../mmc.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.7.0, Apache NimBLE 1.2.0 </a> released (August 4, 2019)
+            </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="/quick-start/">Quick Start</a>
+                    </li>
+                    <li>
+                        <a href="/about/">About</a>
+                    </li>
+                    <li>
+                        <a href="/talks/">Talks</a>
+                    </li>
+                    <li class="active">
+                        <a href="/documentation/">Documentation</a>
+                    </li>
+                    <li>
+                        <a href="/download/">Download</a>
+                    </li>
+                    <li>
+                        <a href="/community/">Community</a>
+                    </li>
+                    <li>
+                        <a href="/events/">Events</a>
+                    </li>
+                </ul>
+
+                <!-- Search, Navigation and Repo links -->
+                <ul class="nav navbar-nav navbar-right">
+                    
+                </ul>
+            </div>
+        </div>
+    </nav>
+</header>
+      <!-- STARTS MAIN CONTENT -->
+      <div id="main-content">
+        
+
+
+
+
+
+<div id="breadcrumb">
+  <div class="container">
+    <a href="/documentation/">Docs</a> /
+    
+      <a href="../../../os_user_guide.html">OS User Guide</a> /
+    
+      <a href="../driver.html">Drivers</a> /
+    
+    Charge control drivers
+    
+  <div class="sourcelink">
+    <a href="https://github.com/apache/mynewt-core/edit/master/docs/os/modules/drivers/chg_ctrl/chg_ctrl.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="/latest" selected>
+    Version: latest
+  </option>
+  <option value="/v1_7_0" >
+    Version: 1.7.0
+  </option>
+  <option value="/v1_6_0" >
+    Version: 1.6.0
+  </option>
+  <option value="/v1_5_0" >
+    Version: 1.5.0
+  </option>
+  <option value="/v1_4_0" >
+    Version: 1.4.0
+  </option>
+  <option value="/v1_3_0/os/introduction" >
+    Version: 1.3.0
+  </option>
+  <option value="/v1_2_0/os/introduction" >
+    Version: 1.2.0
+  </option>
+  <option value="/v1_1_0/os/introduction" >
+    Version: 1.1.0
+  </option>
+  <option value="/v1_0_0/os/introduction" >
+    Version: 1.0.0
+  </option>
+  <option value="/v0_9_0/os/introduction" >
+    Version: 0.9.0
+  </option>
+</select>
+    <div class="region region-sidebar">
+      <div class="docs-menu">
+      
+        
+        
+            <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../../../../index.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../get_started/index.html">Setup &amp; Get Started</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../concepts.html">Concepts</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../external_links.html">Third-party Resources</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../hal/hal.html">Hardware Abstraction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../bootloader/bootloader.html">Secure Bootloader</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../split/split.html">Split Images</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../baselibc.html">Baselibc</a></li>
+<li class="toctree-l2 current"><a class="reference internal" href="../driver.html">Drivers</a><ul class="current">
+<li class="toctree-l3"><a class="reference internal" href="../flash.html">flash</a></li>
+<li class="toctree-l3"><a class="reference internal" href="../mmc.html">mmc</a></li>
+<li class="toctree-l3 current"><a class="current reference internal" href="#">Charge Control</a><ul>
+<li class="toctree-l4"><a class="reference internal" href="sgm4056.html">SGM4056</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../../devmgmt/newtmgr.html">Device Management with Newt Manager</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../mcumgr/mcumgr.html">Device Management with MCUmgr</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../imgmgr/imgmgr.html">Image Manager</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../fs/fs.html">File System</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../fcb/fcb.html">Flash Circular Buffer</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sensor_framework/sensor_framework.html">Sensor Framework</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../testutil/testutil.html">Test Utilities</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../json/json.html">JSON</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../mfg/mfg.html">Manufacturing support</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../bsp/index.html">Board support</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../network/index.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/index.html">Mynewt 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="">
+                <div class="rst-content">
+                  <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+                   <div itemprop="articleBody">
+                    
+  <div class="section" id="charge-control-drivers">
+<h1>Charge control drivers<a class="headerlink" href="#charge-control-drivers" title="Permalink to this headline">¶</a></h1>
+<div class="toctree-wrapper compound">
+</div>
+<p>The charge control drivers provides support for various battery chargers. They
+provide a abstract <code class="docutils literal notranslate"><span class="pre">hw/charge-control</span></code> Battery Charge Controller IC Interface.
+The available drivers are for:</p>
+<ul class="simple">
+<li>ADP5061</li>
+<li>BQ24040</li>
+<li>DA1469x</li>
+<li><a class="reference internal" href="sgm4056.html"><span class="doc">SGM4056 Charger</span></a></li>
+</ul>
+<div class="section" id="initialization">
+<h2>Initialization<a class="headerlink" href="#initialization" title="Permalink to this headline">¶</a></h2>
+<p>Most of the drivers need some driver-specific initialization. This is normally
+done in the BSP by making a call to <code class="docutils literal notranslate"><span class="pre">os_dev_create</span></code> with a reference to the
+driver init function and a driver-specific configuration.</p>
+<p>For the SGM4056 this will look this:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="cp">#include</span> <span class="cpf">&quot;sgm4056/sgm4056.h&quot;</span><span class="cp"></span>
+
+<span class="p">...</span>
+
+<span class="k">static</span> <span class="k">struct</span> <span class="n">sgm4056_dev_config</span> <span class="n">os_bsp_charger_config</span> <span class="o">=</span> <span class="p">{</span>
+    <span class="p">.</span><span class="n">power_presence_pin</span> <span class="o">=</span> <span class="n">CHARGER_POWER_PRESENCE_PIN</span><span class="p">,</span>
+    <span class="p">.</span><span class="n">charge_indicator_pin</span> <span class="o">=</span> <span class="n">CHARGER_CHARGE_PIN</span><span class="p">,</span>
+<span class="p">};</span>
+
+<span class="p">...</span>
+
+<span class="n">rc</span> <span class="o">=</span> <span class="n">os_dev_create</span><span class="p">(</span><span class="o">&amp;</span><span class="n">os_bsp_charger</span><span class="p">.</span><span class="n">dev</span><span class="p">,</span> <span class="s">&quot;charger&quot;</span><span class="p">,</span>
+                   <span class="n">OS_DEV_INIT_KERNEL</span><span class="p">,</span> <span class="n">OS_DEV_INIT_PRIO_DEFAULT</span><span class="p">,</span>
+                   <span class="n">sgm4056_dev_init</span><span class="p">,</span> <span class="o">&amp;</span><span class="n">os_bsp_charger_config</span><span class="p">);</span>
+</pre></div>
+</div>
+</div>
+<div class="section" id="usage">
+<h2>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
+<p>After initialization the general charge control interface can be used to obtain
+the data from the charger. First you need to obtain a reference to the charger.</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="cp">#include</span> <span class="cpf">&quot;charge-control/charge_control.h&quot;</span><span class="cp"></span>
+
+<span class="p">...</span>
+
+<span class="k">struct</span> <span class="n">charge_control</span> <span class="o">*</span><span class="n">charger</span><span class="p">;</span>
+
+<span class="n">charger</span> <span class="o">=</span> <span class="n">charge_control_mgr_find_next_bytype</span><span class="p">(</span><span class="n">CHARGE_CONTROL_TYPE_STATUS</span><span class="p">,</span> <span class="nb">NULL</span><span class="p">);</span>
+<span class="n">assert</span><span class="p">(</span><span class="n">charger</span><span class="p">);</span>
+</pre></div>
+</div>
+<p>This will find any charger that has the abbility to report <code class="docutils literal notranslate"><span class="pre">STATUS</span></code>. Then you
+can obtain the status of the charger using <code class="docutils literal notranslate"><span class="pre">charge_control_read</span></code>. This function
+will retreive the charger status and call a callback function. Lets first define
+that callback function:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="k">static</span> <span class="kt">int</span>
+<span class="nf">charger_data_callback</span><span class="p">(</span><span class="k">struct</span> <span class="n">charge_control</span> <span class="o">*</span><span class="n">chg_ctrl</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="kt">void</span> <span class="o">*</span><span class="n">data</span><span class="p">,</span> <span class="n">charge_control_type_t</span> <span class="n">type</span><span class="p">)</span>
+<span class="p">{</span>
+    <span class="k">if</span> <span class="p">(</span><span class="n">type</span> <span class="o">==</span> <span class="n">CHARGE_CONTROL_TYPE_STATUS</span><span class="p">)</span> <span class="p">{</span>
+        <span class="n">charge_control_status_t</span> <span class="n">charger_status</span> <span class="o">=</span> <span class="o">*</span><span class="p">(</span><span class="n">charge_control_status_t</span><span class="o">*</span><span class="p">)(</span><span class="n">data</span><span class="p">);</span>
+
+        <span class="n">console_printf</span><span class="p">(</span><span class="s">&quot;Charger state is %i&quot;</span><span class="p">,</span> <span class="n">charger_status</span><span class="p">);</span>
+        <span class="n">console_flush</span><span class="p">();</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>The important arguments are the data pointer and the type of data. This function
+prints the status to the console as an integer. You need to
+extend it for your use-case. Now we can call the <code class="docutils literal notranslate"><span class="pre">charge_control_read</span></code> function:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="n">rc</span> <span class="o">=</span> <span class="n">charge_control_read</span><span class="p">(</span><span class="n">charger</span><span class="p">,</span> <span class="n">CHARGE_CONTROL_TYPE_STATUS</span><span class="p">,</span>
+    <span class="n">charger_data_callback</span><span class="p">,</span> <span class="nb">NULL</span><span class="p">,</span> <span class="n">OS_TIMEOUT_NEVER</span><span class="p">);</span>
+<span class="n">assert</span><span class="p">(</span><span class="n">rc</span> <span class="o">==</span> <span class="mi">0</span><span class="p">);</span>
+</pre></div>
+</div>
+<p>This causes the charge control code to obtain the status and call the callback.</p>
+<p>Alternatively you can register a listener that will be called periodically and
+on change. For this you need to define a <code class="docutils literal notranslate"><span class="pre">charge_control_listener</span></code> and
+register it with charge control:</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="k">struct</span> <span class="n">charge_control_listener</span> <span class="n">charger_listener</span> <span class="o">=</span> <span class="p">{</span>
+    <span class="p">.</span><span class="n">ccl_type</span> <span class="o">=</span> <span class="n">CHARGE_CONTROL_TYPE_STATUS</span><span class="p">,</span>
+    <span class="p">.</span><span class="n">ccl_func</span> <span class="o">=</span> <span class="n">charger_data_callback</span><span class="p">,</span>
+<span class="p">};</span>
+
+<span class="p">...</span>
+
+<span class="n">rc</span> <span class="o">=</span> <span class="n">charge_control_set_poll_rate_ms</span><span class="p">(</span><span class="s">&quot;charger&quot;</span><span class="p">,</span> <span class="mi">10000</span><span class="p">);</span>
+<span class="n">assert</span><span class="p">(</span><span class="n">rc</span> <span class="o">==</span> <span class="mi">0</span><span class="p">);</span>
+
+<span class="n">rc</span> <span class="o">=</span> <span class="n">charge_control_register_listener</span><span class="p">(</span><span class="n">charger</span><span class="p">,</span> <span class="o">&amp;</span><span class="n">charger_listener</span><span class="p">);</span>
+<span class="n">assert</span><span class="p">(</span><span class="n">rc</span> <span class="o">==</span> <span class="mi">0</span><span class="p">);</span>
+</pre></div>
+</div>
+<p>This sets the interval to 10 seconds and registers our callback as listener.
+This means that the callback will be called every 10 seconds and on interrupt
+of the charger.</p>
+</div>
+<div class="section" id="dependencies">
+<h2>Dependencies<a class="headerlink" href="#dependencies" title="Permalink to this headline">¶</a></h2>
+<p>To include a charge control driver on a project, just include it as a
+dependency in your pkg.yml. This should be done in the BSP. For example:</p>
+<div class="highlight-yaml notranslate"><div class="highlight"><pre><span></span><span class="nt">pkg.deps</span><span class="p">:</span>
+    <span class="p p-Indicator">-</span> <span class="s">&quot;@apache-mynewt-core/hw/drivers/chg_ctrl/sgm4056&quot;</span>
+</pre></div>
+</div>
+</div>
+</div>
+
+
+                   </div>
+                  </div>
+                  
+    <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
+      
+        <a href="sgm4056.html" class="btn btn-neutral float-right" title="SGM4056 Charger" accesskey="n">Next: SGM4056 Charger <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="../mmc.html" class="btn btn-neutral" title="mmc" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: mmc</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="">
+                <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:'latest',
+            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/language_data.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/master/os/modules/drivers/chg_ctrl/sgm4056.html b/master/os/modules/drivers/chg_ctrl/sgm4056.html
new file mode 100644
index 0000000..aa6babb
--- /dev/null
+++ b/master/os/modules/drivers/chg_ctrl/sgm4056.html
@@ -0,0 +1,431 @@
+
+
+<!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>SGM4056 Charger &mdash; Apache Mynewt latest 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 latest documentation" href="../../../../index.html"/>
+          <link rel="up" title="Charge control drivers" href="chg_ctrl.html"/>
+          <link rel="next" title="Newt Manager" href="../../devmgmt/newtmgr.html"/>
+          <link rel="prev" title="Charge control drivers" href="chg_ctrl.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.7.0, Apache NimBLE 1.2.0 </a> released (August 4, 2019)
+            </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="/quick-start/">Quick Start</a>
+                    </li>
+                    <li>
+                        <a href="/about/">About</a>
+                    </li>
+                    <li>
+                        <a href="/talks/">Talks</a>
+                    </li>
+                    <li class="active">
+                        <a href="/documentation/">Documentation</a>
+                    </li>
+                    <li>
+                        <a href="/download/">Download</a>
+                    </li>
+                    <li>
+                        <a href="/community/">Community</a>
+                    </li>
+                    <li>
+                        <a href="/events/">Events</a>
+                    </li>
+                </ul>
+
+                <!-- Search, Navigation and Repo links -->
+                <ul class="nav navbar-nav navbar-right">
+                    
+                </ul>
+            </div>
+        </div>
+    </nav>
+</header>
+      <!-- STARTS MAIN CONTENT -->
+      <div id="main-content">
+        
+
+
+
+
+
+<div id="breadcrumb">
+  <div class="container">
+    <a href="/documentation/">Docs</a> /
+    
+      <a href="../../../os_user_guide.html">OS User Guide</a> /
+    
+      <a href="../driver.html">Drivers</a> /
+    
+      <a href="chg_ctrl.html">Charge control drivers</a> /
+    
+    SGM4056 Charger
+    
+  <div class="sourcelink">
+    <a href="https://github.com/apache/mynewt-core/edit/master/docs/os/modules/drivers/chg_ctrl/sgm4056.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="/latest" selected>
+    Version: latest
+  </option>
+  <option value="/v1_7_0" >
+    Version: 1.7.0
+  </option>
+  <option value="/v1_6_0" >
+    Version: 1.6.0
+  </option>
+  <option value="/v1_5_0" >
+    Version: 1.5.0
+  </option>
+  <option value="/v1_4_0" >
+    Version: 1.4.0
+  </option>
+  <option value="/v1_3_0/os/introduction" >
+    Version: 1.3.0
+  </option>
+  <option value="/v1_2_0/os/introduction" >
+    Version: 1.2.0
+  </option>
+  <option value="/v1_1_0/os/introduction" >
+    Version: 1.1.0
+  </option>
+  <option value="/v1_0_0/os/introduction" >
+    Version: 1.0.0
+  </option>
+  <option value="/v0_9_0/os/introduction" >
+    Version: 0.9.0
+  </option>
+</select>
+    <div class="region region-sidebar">
+      <div class="docs-menu">
+      
+        
+        
+            <ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../../../../index.html">Introduction</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../get_started/index.html">Setup &amp; Get Started</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../concepts.html">Concepts</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../tutorials/tutorials.html">Tutorials</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../external_links.html">Third-party Resources</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="../../../os_user_guide.html">OS User Guide</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="../../../core_os/mynewt_os.html">Kernel</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../system_modules.html">System</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../hal/hal.html">Hardware Abstraction</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../bootloader/bootloader.html">Secure Bootloader</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../split/split.html">Split Images</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../core_os/porting/port_os.html">Porting Guide</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../baselibc.html">Baselibc</a></li>
+<li class="toctree-l2 current"><a class="reference internal" href="../driver.html">Drivers</a><ul class="current">
+<li class="toctree-l3"><a class="reference internal" href="../flash.html">flash</a></li>
+<li class="toctree-l3"><a class="reference internal" href="../mmc.html">mmc</a></li>
+<li class="toctree-l3 current"><a class="reference internal" href="chg_ctrl.html">Charge Control</a><ul class="current">
+<li class="toctree-l4 current"><a class="current reference internal" href="#">SGM4056</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="../../devmgmt/newtmgr.html">Device Management with Newt Manager</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../mcumgr/mcumgr.html">Device Management with MCUmgr</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../imgmgr/imgmgr.html">Image Manager</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sysinitconfig/sysinitconfig.html">Compile-Time Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../fs/fs.html">File System</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../fcb/fcb.html">Flash Circular Buffer</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../sensor_framework/sensor_framework.html">Sensor Framework</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../testutil/testutil.html">Test Utilities</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../json/json.html">JSON</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../mfg/mfg.html">Manufacturing support</a></li>
+<li class="toctree-l2"><a class="reference internal" href="../../../bsp/index.html">Board support</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../../../../network/index.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/index.html">Mynewt 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="">
+                <div class="rst-content">
+                  <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
+                   <div itemprop="articleBody">
+                    
+  <div class="section" id="sgm4056-charger">
+<h1>SGM4056 Charger<a class="headerlink" href="#sgm4056-charger" title="Permalink to this headline">¶</a></h1>
+<p>The SGM4056 charger is able to report its status via two output pins. If
+these pins are connected to GPIO inputs, then the <code class="docutils literal notranslate"><span class="pre">sgm4056</span></code> driver can
+derive the charger status.</p>
+<div class="section" id="initialization">
+<h2>Initialization<a class="headerlink" href="#initialization" title="Permalink to this headline">¶</a></h2>
+<p>Initialization of the <code class="docutils literal notranslate"><span class="pre">sgm4056</span></code> driver is normally done in the BSP. This is
+done by creating a OS device using <code class="docutils literal notranslate"><span class="pre">os_dev_create</span></code>.</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="cp">#include</span> <span class="cpf">&quot;sgm4056/sgm4056.h&quot;</span><span class="cp"></span>
+
+<span class="p">...</span>
+
+<span class="k">static</span> <span class="k">struct</span> <span class="n">sgm4056_dev</span> <span class="n">os_bsp_charger</span><span class="p">;</span>
+<span class="k">static</span> <span class="k">struct</span> <span class="n">sgm4056_dev_config</span> <span class="n">os_bsp_charger_config</span> <span class="o">=</span> <span class="p">{</span>
+    <span class="p">.</span><span class="n">power_presence_pin</span> <span class="o">=</span> <span class="n">CHARGER_POWER_PRESENCE_PIN</span><span class="p">,</span>
+    <span class="p">.</span><span class="n">charge_indicator_pin</span> <span class="o">=</span> <span class="n">CHARGER_CHARGE_PIN</span><span class="p">,</span>
+<span class="p">};</span>
+
+<span class="kt">void</span>
+<span class="nf">hal_bsp_init</span><span class="p">(</span><span class="kt">void</span><span class="p">)</span>
+<span class="p">{</span>
+    <span class="kt">int</span> <span class="n">rc</span><span class="p">;</span>
+
+    <span class="p">...</span>
+
+    <span class="cm">/* Create charge controller */</span>
+    <span class="n">rc</span> <span class="o">=</span> <span class="n">os_dev_create</span><span class="p">(</span><span class="o">&amp;</span><span class="n">os_bsp_charger</span><span class="p">.</span><span class="n">dev</span><span class="p">,</span> <span class="s">&quot;charger&quot;</span><span class="p">,</span>
+                    <span class="n">OS_DEV_INIT_KERNEL</span><span class="p">,</span> <span class="n">OS_DEV_INIT_PRIO_DEFAULT</span><span class="p">,</span>
+                    <span class="n">sgm4056_dev_init</span><span class="p">,</span> <span class="o">&amp;</span><span class="n">os_bsp_charger_config</span><span class="p">);</span>
+    <span class="n">assert</span><span class="p">(</span><span class="n">rc</span> <span class="o">==</span> <span class="mi">0</span><span class="p">);</span>
+<span class="p">}</span>
+</pre></div>
+</div>
+<p>First we create a instance of <code class="docutils literal notranslate"><span class="pre">struct</span> <span class="pre">sgm4056_dev</span></code>, this will be initialised
+later. Then we create a instance of <code class="docutils literal notranslate"><span class="pre">struct</span> <span class="pre">sgm4056_dev_config</span></code>, which contains
+the pin numbers of the gpio connected to the charger. Then we call <code class="docutils literal notranslate"><span class="pre">os_dev_create</span></code>
+with a pointer to the device, a device name, some defaults, the <code class="docutils literal notranslate"><span class="pre">sgm4056_dev_init</span></code>
+initializor and a pointer to config.</p>
+</div>
+<div class="section" id="usage">
+<h2>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
+<p>There a two ways to use the driver: directly or via <a class="reference internal" href="chg_ctrl.html"><span class="doc">charge-control</span></a>.</p>
+<p>When using the driver directly, you need to open the OS device and then use the driver functions.</p>
+<div class="highlight-c notranslate"><div class="highlight"><pre><span></span><span class="cp">#include</span> <span class="cpf">&quot;sgm4056/sgm4056.h&quot;</span><span class="cp"></span>
+
+<span class="p">...</span>
+
+<span class="kt">int</span>
+<span class="n">main</span><span class="p">(</span><span class="kt">int</span> <span class="n">argc</span><span class="p">,</span> <span class="kt">char</span> <span class="o">**</span><span class="n">argv</span><span class="p">)</span>
+<span class="p">{</span>
+    <span class="k">struct</span> <span class="n">sgm4056_dev</span> <span class="o">*</span><span class="n">charger</span><span class="p">;</span>
+
+    <span class="n">charger</span> <span class="o">=</span> <span class="p">(</span><span class="k">struct</span> <span class="n">sgm4056_dev</span> <span class="o">*</span><span class="p">)</span> <span class="n">os_dev_open</span><span class="p">(</span><span class="s">&quot;charger&quot;</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="mi">0</span><span class="p">);</span>
+    <span class="n">assert</span><span class="p">(</span><span class="n">charger</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">rc</span> <span class="o">=</span> <span class="n">sgm4056_get_charger_status</span><span class="p">(</span><span class="n">charger</span><span class="p">,</span> <span class="o">&amp;</span><span class="n">charger_status</span><span class="p">);</span>
+        <span class="n">assert</span><span class="p">(</span><span class="n">rc</span> <span class="o">==</span> <span class="mi">0</span><span class="p">);</span>
+
+        <span class="n">console_printf</span><span class="p">(</span><span class="s">&quot;Charger state = %i</span><span class="se">\n</span><span class="s">&quot;</span><span class="p">,</span> <span class="n">charger_status</span><span class="p">);</span>
+        <span class="n">console_flush</span><span class="p">();</span>
+    <span class="p">}</span>
+<span class="p">}</span>
+</pre></div>
+</div>
+<p>When using <code class="docutils literal notranslate"><span class="pre">charge-control</span></code> interface, you need to enable it in syscfg and
+then follow the general instructions at <a class="reference internal" href="chg_ctrl.html"><span class="doc">Charge control drivers</span></a>.</p>
+<div class="highlight-yaml notranslate"><div class="highlight"><pre><span></span><span class="nt">syscfg.vals</span><span class="p">:</span>
+    <span class="c1"># Enable charge control integration</span>
+    <span class="nt">SGM4056_USE_CHARGE_CONTROL</span><span class="p">:</span> <span class="l l-Scalar l-Scalar-Plain">1</span>
+</pre></div>
+</div>
+</div>
+</div>
+
+
+                   </div>
+                  </div>
+                  
+    <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
+      
+        <a href="../../devmgmt/newtmgr.html" class="btn btn-neutral float-right" title="Newt Manager" accesskey="n">Next: Newt Manager <span class="fa fa-arrow-circle-right"></span></a>
+      
+      
+        <a href="chg_ctrl.html" class="btn btn-neutral" title="Charge control drivers" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: Charge control drivers</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="">
+                <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:'latest',
+            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/language_data.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/master/os/modules/drivers/driver.html b/master/os/modules/drivers/driver.html
index 2a6fb24..db726e4 100644
--- a/master/os/modules/drivers/driver.html
+++ b/master/os/modules/drivers/driver.html
@@ -234,6 +234,7 @@ ga("send", "pageview");
 <li class="toctree-l2 current"><a class="current reference internal" href="#">Drivers</a><ul>
 <li class="toctree-l3"><a class="reference internal" href="flash.html">flash</a></li>
 <li class="toctree-l3"><a class="reference internal" href="mmc.html">mmc</a></li>
+<li class="toctree-l3"><a class="reference internal" href="chg_ctrl/chg_ctrl.html">Charge Control</a></li>
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../devmgmt/newtmgr.html">Device Management with Newt Manager</a></li>
@@ -277,10 +278,6 @@ ga("send", "pageview");
   <div class="section" id="drivers">
 <h1>Drivers<a class="headerlink" href="#drivers" title="Permalink to this headline">¶</a></h1>
 <div class="toctree-wrapper compound">
-<ul>
-<li class="toctree-l1"><a class="reference internal" href="flash.html">flash</a></li>
-<li class="toctree-l1"><a class="reference internal" href="mmc.html">mmc</a></li>
-</ul>
 </div>
 <div class="section" id="description">
 <h2>Description<a class="headerlink" href="#description" title="Permalink to this headline">¶</a></h2>
@@ -431,6 +428,9 @@ includes:</p>
 <tr class="row-odd"><td><code class="docutils literal notranslate"><span class="pre">uart</span></code></td>
 <td>TODO: UART driver.</td>
 </tr>
+<tr class="row-even"><td><code class="docutils literal notranslate"><span class="pre">chg_ctrl</span></code></td>
+<td>Charge control drivers.</td>
+</tr>
 </tbody>
 </table>
 </div>
diff --git a/master/os/modules/drivers/flash.html b/master/os/modules/drivers/flash.html
index 433c780..f574410 100644
--- a/master/os/modules/drivers/flash.html
+++ b/master/os/modules/drivers/flash.html
@@ -236,6 +236,7 @@ ga("send", "pageview");
 <li class="toctree-l2 current"><a class="reference internal" href="driver.html">Drivers</a><ul class="current">
 <li class="toctree-l3 current"><a class="current reference internal" href="#">flash</a></li>
 <li class="toctree-l3"><a class="reference internal" href="mmc.html">mmc</a></li>
+<li class="toctree-l3"><a class="reference internal" href="chg_ctrl/chg_ctrl.html">Charge Control</a></li>
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../devmgmt/newtmgr.html">Device Management with Newt Manager</a></li>
diff --git a/master/os/modules/drivers/mmc.html b/master/os/modules/drivers/mmc.html
index 3af948a..7a117cd 100644
--- a/master/os/modules/drivers/mmc.html
+++ b/master/os/modules/drivers/mmc.html
@@ -42,7 +42,7 @@
           <link rel="search" title="Search" href="../../../search.html"/>
       <link rel="top" title="Apache Mynewt latest documentation" href="../../../index.html"/>
           <link rel="up" title="Drivers" href="driver.html"/>
-          <link rel="next" title="Newt Manager" href="../devmgmt/newtmgr.html"/>
+          <link rel="next" title="Charge control drivers" href="chg_ctrl/chg_ctrl.html"/>
           <link rel="prev" title="flash" href="flash.html"/> 
 
     
@@ -236,6 +236,7 @@ ga("send", "pageview");
 <li class="toctree-l2 current"><a class="reference internal" href="driver.html">Drivers</a><ul class="current">
 <li class="toctree-l3"><a class="reference internal" href="flash.html">flash</a></li>
 <li class="toctree-l3 current"><a class="current reference internal" href="#">mmc</a></li>
+<li class="toctree-l3"><a class="reference internal" href="chg_ctrl/chg_ctrl.html">Charge Control</a></li>
 </ul>
 </li>
 <li class="toctree-l2"><a class="reference internal" href="../devmgmt/newtmgr.html">Device Management with Newt Manager</a></li>
@@ -404,7 +405,7 @@ fs_closedir(dir);
                   
     <div class="rst-footer-buttons row" role="navigation" aria-label="footer navigation">
       
-        <a href="../devmgmt/newtmgr.html" class="btn btn-neutral float-right" title="Newt Manager" accesskey="n">Next: Newt Manager <span class="fa fa-arrow-circle-right"></span></a>
+        <a href="chg_ctrl/chg_ctrl.html" class="btn btn-neutral float-right" title="Charge control drivers" accesskey="n">Next: Charge control drivers <span class="fa fa-arrow-circle-right"></span></a>
       
       
         <a href="flash.html" class="btn btn-neutral" title="flash" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous: flash</a>
diff --git a/master/searchindex.js b/master/searchindex.js
index 425a768..5566f00 100644
--- a/master/searchindex.js
+++ b/master/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["concepts","external_links","get_started/debug","get_started/docker","get_started/index","get_started/native_install/cross_tools","get_started/native_install/index","get_started/native_install/native_tools","get_started/project_create","get_started/serial_access","index","misc/go_env","misc/ide","misc/index","mynewt_faq/admin_faq","mynewt_faq/bluetooth_faq","mynewt_faq/boot_faq","mynewt_faq/fs_faq","mynewt_faq/hardware_faq","mynewt_faq/index","mynewt_faq/module [...]
\ No newline at end of file
+Search.setIndex({docnames:["concepts","external_links","get_started/debug","get_started/docker","get_started/index","get_started/native_install/cross_tools","get_started/native_install/index","get_started/native_install/native_tools","get_started/project_create","get_started/serial_access","index","misc/go_env","misc/ide","misc/index","mynewt_faq/admin_faq","mynewt_faq/bluetooth_faq","mynewt_faq/boot_faq","mynewt_faq/fs_faq","mynewt_faq/hardware_faq","mynewt_faq/index","mynewt_faq/module [...]
\ No newline at end of file
diff --git a/master/tutorials/other/chg_ctrl_on_pinetime.html b/master/tutorials/other/chg_ctrl_on_pinetime.html
index 416f289..7a9aed7 100644
--- a/master/tutorials/other/chg_ctrl_on_pinetime.html
+++ b/master/tutorials/other/chg_ctrl_on_pinetime.html
@@ -313,7 +313,7 @@ charger can report it’s current charging state:</p>
 </div>
 <div class="section" id="sgm4056-driver">
 <h2><a class="toc-backref" href="#id3">SGM4056 Driver</a><a class="headerlink" href="#sgm4056-driver" title="Permalink to this headline">¶</a></h2>
-<p>Communication with the charger is done by the <span class="xref std std-doc">SGM4056 Driver</span>.
+<p>Communication with the charger is done by the <a class="reference internal" href="../../os/modules/drivers/chg_ctrl/sgm4056.html"><span class="doc">SGM4056 Driver</span></a>.
 This abstracts the hardware and provides a simple interface to the charger. The <a class="reference internal" href="../../os/bsp/pinetime.html"><span class="doc">PineTime BSP</span></a>
 already initializes the driver, so we can use it directly in our the application.
 Let’s extend the application with the following code:</p>
@@ -432,7 +432,7 @@ application. However I think we can do better.</p>
 <div class="section" id="charge-control">
 <h2><a class="toc-backref" href="#id4">Charge control</a><a class="headerlink" href="#charge-control" title="Permalink to this headline">¶</a></h2>
 <p>The code of the last section works great, however it is very specific to the
-SGM4056 driver. Luckily we can fix that using the <span class="xref std std-doc">Charge Control interface</span>.
+SGM4056 driver. Luckily we can fix that using the <a class="reference internal" href="../../os/modules/drivers/chg_ctrl/chg_ctrl.html"><span class="doc">Charge Control interface</span></a>.
 This is enabled by default for the SGM4056 driver, so we don’t need to do any
 configuration for using this new interface.</p>
 <p>Charge control works with callbacks for reporting the status. Let’s start with
diff --git a/sitemap.xml b/sitemap.xml
index b9ac1e1..5f85bf4 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,52 +2,52 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/documentation/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
 </urlset>
\ No newline at end of file
diff --git a/sitemap.xml.gz b/sitemap.xml.gz
index cd573ed..fa5a82c 100644
Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ
diff --git a/v0_9_0/sitemap.xml b/v0_9_0/sitemap.xml
index 837dc7a..95bf450 100644
--- a/v0_9_0/sitemap.xml
+++ b/v0_9_0/sitemap.xml
@@ -2,1437 +2,1437 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/get_started/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/docker/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/native_tools/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_mac/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_linux/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/cross_tools/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/project_create/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/tutorials/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/arduino_zero/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_primo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/olimex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/STM32F303/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/pin-wheel-mods/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/nRF52/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_sram_olimex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/add_repos/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/upgrade_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/create_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/unit_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/air_quality_sensor/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/event_queue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-target-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bletiny_project/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-svc-reg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-chr-access/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-adv/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-conn/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/ibeacon/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blehci_project/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/os_user_guide/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mynewt_os/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/os_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/os_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/os_started/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/context_switch/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_arch_ctx_sw/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_ctx_sw_hook/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_get_current_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_insert/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_next_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_os_timer_exp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_resort/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_set_current_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_sleep/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_wakeup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_delay/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_tick/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_gettimeofday/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_settimeofday/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_count/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_info_get_next/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/event_queue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/semaphore/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_pend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_release/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/mutex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_pend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_release/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/memory_pool/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_memblock_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_mempool_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_memblock_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/OS_MEMPOOL_BYTES/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/OS_MEMPOOL_SIZE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/heap/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_free/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_malloc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_realloc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/mbuf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTHDR/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTLEN/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_DATA/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_USRHDR/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_adj/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_append/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_concat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copydata/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copyinto/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_dup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_extend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_free_chain/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_get_pkthdr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_memcmp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_off/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_pool_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_prepend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_pullup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/msys/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_get_pkthdr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/mqueue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/sanity/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_task_checkin/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_task_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/callout/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_func_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_queued/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_os/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_bsp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_mcu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_cpu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_blocking_mode/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_echo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_is_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_printf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_task_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_cmd_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_nlip_input_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_nlip_output/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/bootloader/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_build_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_build_status_one/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_clear_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_copy_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_copy_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_erase_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_fill_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_area_idx/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_part/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_go/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_init_flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_move_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_image_header/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_image_headers/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_select_image_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_slot_addr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_slot_to_area_idx/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_swap_areas/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_delete_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_delete_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_one/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_write_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_return_codes/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_ops/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_close/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_closedir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_dirent_is_dir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_dirent_name/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_filelen/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_getpos/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_mkdir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_open/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_opendir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_readdir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_rename/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_seek/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_unlink/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fsutil_read_file/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fsutil_write_file/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_area_desc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_config/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_detect/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_format/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_internals/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/otherfs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_architecture/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_adc/hal_adc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_cputime/hal_cpu_timer/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_dac/hal_dac/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_flash/hal_flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_flash/hal_flash_int/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_flash/hal_flash_map/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_gpio/hal_gpio/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_i2c/hal_i2c/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_pwm/hal_pwm/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_spi/hal_spi/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_system/hal_sys/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_uart/hal_uart/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_in_libraries/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_creation/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/testutil/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/tu_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_assert/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_pass/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_suite/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_case/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_decl/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/tu_restart/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgmgr_module_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgr_ver_parse/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgr_ver_str/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/baselibc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/elua/elua/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/elua/lua_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/elua/lua_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_entry/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_finish/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_key/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_read_object/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/stats/stats/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/logs/logs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_sec/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/nimble_setup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_ini_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_add_cpu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_mempool/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_devadd/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_statpkg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_consolepkg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_controller_ini/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_parent_ini/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_host_ini/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_GAP/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_GATT/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_advdata/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_operation/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_ops/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_build/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_clean/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_create_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_debug/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_help/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_info/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_install/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_load/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_new/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_run/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_size/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_target/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_upgrade/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_version/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/overview/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/installing/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
 </urlset>
\ No newline at end of file
diff --git a/v0_9_0/sitemap.xml.gz b/v0_9_0/sitemap.xml.gz
index 50cd27d..582b9d8 100644
Binary files a/v0_9_0/sitemap.xml.gz and b/v0_9_0/sitemap.xml.gz differ
diff --git a/v1_0_0/sitemap.xml b/v1_0_0/sitemap.xml
index b86260a..479113a 100644
--- a/v1_0_0/sitemap.xml
+++ b/v1_0_0/sitemap.xml
@@ -2,2187 +2,2187 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/get_started/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/native_install_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_mac/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_linux/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_windows/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/native_tools/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/cross_tools/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/docker/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/project_create/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/serial_access/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/tutorials/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/arduino_zero/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_primo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/olimex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/nRF52/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/rbnano2/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_stm32f4disc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_console/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/add_repos/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/upgrade_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/create_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/private_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-sim-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-nrf52-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-stm32-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/ibeacon/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/eddystone/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/add_newtmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/add_shell/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/tasks_lesson/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/wi-fi_on_arduino/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/unit_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/event_queue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bletiny_project/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-svc-reg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-chr-access/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-adv/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-gap-event/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-app/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blehci_project/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/air_quality_sensor/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/air_quality_ble/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/nrf52_adc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/os_user_guide/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mynewt_os/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/os_started/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/context_switch/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_arch_ctx_sw/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_ctx_sw_hook/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_get_current_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_insert/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_next_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_os_timer_exp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_resort/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_set_current_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_sleep/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_wakeup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_nsecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_usecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_get32/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_nsecs_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_ticks_to_nsecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_ticks_to_usecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_relative/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_usecs_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_advance/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_delay/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_ms_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_get_uptime_usec/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_gettimeofday/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_settimeofday/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_count/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_info_get_next/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/event_queue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_inited/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_dflt_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_designate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_run/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/semaphore/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_pend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_release/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/mutex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_pend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_release/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/memory_pool/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_memblock_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_mempool_info_get_next/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_mempool_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_memblock_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/OS_MEMPOOL_BYTES/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/OS_MEMPOOL_SIZE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/heap/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_free/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_malloc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_realloc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/mbuf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTHDR/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTLEN/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_DATA/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_USRHDR/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_adj/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_append/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_concat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copydata/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copyinto/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_dup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_extend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_free_chain/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_get_pkthdr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_memcmp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_off/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_pool_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_prepend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_pullup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/msys/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_get_pkthdr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/mqueue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/sanity/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_task_checkin/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_task_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/callout/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_func_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_queued/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_os/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_bsp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_mcu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_cpu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_blocking_mode/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_echo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_is_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_printf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_cmd_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_nlip_input_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_nlip_output/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_evq_set/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/split/split/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/bootloader/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_build_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_build_status_one/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_clear_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_copy_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_copy_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_erase_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_fill_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_area_idx/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_part/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_go/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_init_flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_move_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_image_header/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_image_headers/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_select_image_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_slot_addr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_slot_to_area_idx/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_swap_areas/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_delete_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_delete_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_one/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_write_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_return_codes/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_ops/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_close/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_closedir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_dirent_is_dir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_dirent_name/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_filelen/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_getpos/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_mkdir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_open/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_opendir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_readdir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_rename/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_seek/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_unlink/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fsutil_read_file/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fsutil_write_file/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fatfs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_area_desc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_config/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_detect/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_format/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_internals/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/otherfs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_bsp/hal_bsp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_flash/hal_flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_flash/hal_flash_int/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_gpio/hal_gpio/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_i2c/hal_i2c/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_os_tick/hal_os_tick/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_spi/hal_spi/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_system/hal_sys/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_timer/hal_timer/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_uart/hal_uart/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_watchdog/hal_watchdog/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_in_libraries/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_creation/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/drivers/driver/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/drivers/flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/drivers/mmc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/testutil/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/tu_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_assert/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_pass/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_suite/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_case/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_decl/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/tu_restart/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/devmgmt/newtmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/devmgmt/oicmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/devmgmt/customize_newtmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgr_ver_parse/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgr_ver_str/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/baselibc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_entry/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_finish/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_key/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_read_object/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_append/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_append_finish/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_walk/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_getnext/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_rotate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_append_to_scratch/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_is_empty/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_offset_last_n/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_clear/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/stats/stats/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/logs/logs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sysinitconfig/sysinitconfig/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sysinitconfig/sysconfig_error/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_sec/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/nimble_setup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_ini_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_add_cpu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_mempool/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_devadd/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_statpkg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_consolepkg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_controller_ini/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_parent_ini/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ini_stack/ble_host_ini/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_return_codes/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/init/init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/init/definitions/init_defs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/init/functions/ble_hs_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/init/functions/ble_hs_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/init/functions/ble_hs_synced/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/ble_gap/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/ble_gattc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/ble_gatts/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_id/ble_hs_id/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/ble_att/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_mtu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/other/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_GAP/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_GATT/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_advdata/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_operation/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_ops/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_build/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_clean/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_create_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_debug/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_help/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_info/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_install/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_load/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_mfg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_new/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_pkg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_run/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_size/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_sync/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_target/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_upgrade/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_vals/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_version/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/overview/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_config/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_conn/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_crash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_datetime/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_echo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_fs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_logs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_mpstats/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_run/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_stat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_taskstats/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/install_mac/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/install_linux/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/install_windows/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
 </urlset>
\ No newline at end of file
diff --git a/v1_0_0/sitemap.xml.gz b/v1_0_0/sitemap.xml.gz
index adff1e1..9afcf3b 100644
Binary files a/v1_0_0/sitemap.xml.gz and b/v1_0_0/sitemap.xml.gz differ
diff --git a/v1_1_0/sitemap.xml b/v1_1_0/sitemap.xml
index 79f7820..ee040fd 100644
--- a/v1_1_0/sitemap.xml
+++ b/v1_1_0/sitemap.xml
@@ -2,2347 +2,2347 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/get_started/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/native_install_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_mac/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_linux/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_windows/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/native_tools/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/cross_tools/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/docker/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/project_create/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/serial_access/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/tutorials/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/arduino_zero/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_primo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/olimex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/nRF52/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/rbnano2/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_stm32f4disc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_console/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/add_repos/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/upgrade_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/create_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/private_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-sim-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-nrf52-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-stm32-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/ble_bare_bones/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/ibeacon/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/eddystone/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-svc-reg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-chr-access/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-adv/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-gap-event/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-app/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blehci_project/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/event_queue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/tasks_lesson/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/add_newtmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/ota_upgrade_nrf52/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensors/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_nrf52_bno055/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_offboard_config/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_thingy_lis2dh12_onb/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_oic_overview/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_nrf52_bno055_oic/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_bleprph_oic/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/air_quality_sensor/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/air_quality_ble/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/nrf52_adc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/segger_rtt/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/segger_sysview/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/codesize/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/unit_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/wi-fi_on_arduino/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/os_user_guide/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mynewt_os/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/os_started/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/context_switch/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_arch_ctx_sw/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_ctx_sw_hook/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_get_current_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_insert/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_next_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_os_timer_exp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_resort/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_set_current_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_sleep/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_wakeup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_nsecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_usecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_get32/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_nsecs_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_ticks_to_nsecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_ticks_to_usecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_relative/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_usecs_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_advance/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_delay/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_ms_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_get_uptime_usec/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_gettimeofday/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_settimeofday/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_count/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_info_get_next/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/event_queue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_inited/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_dflt_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_designate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_run/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/semaphore/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_pend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_release/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/mutex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_pend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_release/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/memory_pool/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_memblock_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_mempool_info_get_next/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_mempool_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_memblock_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/OS_MEMPOOL_BYTES/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/OS_MEMPOOL_SIZE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/heap/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_free/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_malloc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_realloc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/mbuf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTHDR/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTLEN/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_DATA/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_USRHDR/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_adj/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_append/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_concat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copydata/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copyinto/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_dup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_extend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_free_chain/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_get_pkthdr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_memcmp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_off/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_pool_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_prepend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_pullup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/msys/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_get_pkthdr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/mqueue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/sanity/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_task_checkin/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/callout/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_func_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_queued/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_os/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_bsp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_mcu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_cpu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_echo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_is_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_printf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_set_queues/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_cmd_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_evq_set/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_nlip_input_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_nlip_output/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_register_app_cmd_handler/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_register_default_module/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/split/split/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/bootloader/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_build_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_build_status_one/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_clear_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_copy_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_copy_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_erase_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_fill_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_area_idx/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_part/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_go/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_init_flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_move_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_image_header/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_image_headers/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_select_image_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_slot_addr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_slot_to_area_idx/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_swap_areas/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_delete_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_delete_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_one/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_write_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_return_codes/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_ops/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_close/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_closedir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_dirent_is_dir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_dirent_name/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_filelen/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_getpos/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_mkdir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_open/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_opendir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_readdir/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_rename/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_seek/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_unlink/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fs_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fsutil_read_file/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fs/fsutil_write_file/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/fatfs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_area_desc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_config/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_detect/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_format/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/nffs/nffs_internals/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fs/otherfs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_bsp/hal_bsp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_flash/hal_flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_flash/hal_flash_int/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_gpio/hal_gpio/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_i2c/hal_i2c/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_os_tick/hal_os_tick/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_spi/hal_spi/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_system/hal_sys/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_timer/hal_timer/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_uart/hal_uart/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_watchdog/hal_watchdog/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_in_libraries/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/hal/hal_creation/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sensor_framework/sensor_framework_overview/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sensor_framework/sensor_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sensor_framework/sensor_mgr_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sensor_framework/sensor_listener_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sensor_framework/sensor_oic/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sensor_framework/sensor_shell/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sensor_framework/sensor_driver/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sensor_framework/sensor_create/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/drivers/driver/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/drivers/flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/drivers/mmc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/testutil/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/tu_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_assert/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_pass/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_suite/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_case/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/test_decl/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/testutil/tu_restart/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/devmgmt/newtmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/devmgmt/oicmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/devmgmt/customize_newtmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgr_ver_parse/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/imgmgr/imgr_ver_str/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/baselibc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_entry/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_finish/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_key/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_encode_object_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/json/json_read_object/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_append/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_append_finish/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_walk/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_getnext/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_rotate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_append_to_scratch/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_is_empty/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_offset_last_n/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/fcb/fcb_clear/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/stats/stats/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/logs/logs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sysinitconfig/sysinitconfig/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/sysinitconfig/sysconfig_error/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_sec/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_setup/ble_setup_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_setup/ble_lp_clock/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_setup/ble_addr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_setup/ble_sync_cb/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_return_codes/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/ble_gap/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_data/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_data/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_phys/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_tx_power/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_ext_connect/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_ext_disc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_set_event_cb/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_set_priv_mode/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_read_le_phy/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_set_prefered_default_le_phy/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gap/functions/ble_gap_set_prefered_le_phy/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/ble_gattc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate_custom/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/ble_gatts/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_svc_set_visibility/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_id/ble_hs_id/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/ble_att/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_mtu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_preferred_mtu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/other/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_evq_set/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_sched_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_hs_synced/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_uuid_cmp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_uuid_init_from_buf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_uuid_to_str/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/ble_hs/other/functions/ble_uuid_u16/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_GAP/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_GATT/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/bletiny/bletiny_advdata/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/btshell/btshell_api/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/btshell/btshell_GAP/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/btshell/btshell_GATT/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/network/ble/btshell/btshell_advdata/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_operation/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/newt_ops/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_build/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_clean/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_create_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_debug/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_help/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_info/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_install/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_load/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_mfg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_new/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_pkg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_resign_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_run/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_size/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_sync/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_target/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_upgrade/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_vals/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/command_list/newt_version/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/overview/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_config/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_conn/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_crash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_datetime/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_echo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_fs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_logs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_mpstats/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_run/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_stat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/command_list/newtmgr_taskstats/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/install_mac/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/install_linux/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newtmgr/install_windows/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/known_issues/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/go_env/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/ide/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
 </urlset>
\ No newline at end of file
diff --git a/v1_1_0/sitemap.xml.gz b/v1_1_0/sitemap.xml.gz
index d851250..0437973 100644
Binary files a/v1_1_0/sitemap.xml.gz and b/v1_1_0/sitemap.xml.gz differ
diff --git a/v1_2_0/sitemap.xml b/v1_2_0/sitemap.xml
index 2a1630b..50991c2 100644
--- a/v1_2_0/sitemap.xml
+++ b/v1_2_0/sitemap.xml
@@ -2,2362 +2,2362 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/get_started/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/native_install_intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_mac/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_linux/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/newt/install/newt_windows/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/native_tools/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/cross_tools/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/docker/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/project_create/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/serial_access/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/tutorials/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/arduino_zero/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_primo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/olimex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/nRF52/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/rbnano2/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_stm32f4disc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blinky_console/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/add_repos/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/upgrade_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/create_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/repo/private_repo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-sim-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-nrf52-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/project-stm32-slinky/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/ble_bare_bones/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/ibeacon/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/eddystone/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-intro/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-svc-reg/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-chr-access/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-adv/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-gap-event/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/bleprph/bleprph-app/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/blehci_project/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/lora/lorawanapp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/event_queue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/tasks_lesson/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/add_newtmgr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/ota_upgrade_nrf52/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensors/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_nrf52_bno055/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_offboard_config/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_thingy_lis2dh12_onb/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_oic_overview/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_nrf52_bno055_oic/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/sensors/sensor_bleprph_oic/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/air_quality_sensor/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/air_quality_ble/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/nrf52_adc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/segger_rtt/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/segger_sysview/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/codesize/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/unit_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/tutorials/wi-fi_on_arduino/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/os_user_guide/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mynewt_os/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/os_started/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/context_switch/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_arch_ctx_sw/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_ctx_sw_hook/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_get_current_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_insert/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_next_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_os_timer_exp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_resort/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_set_current_task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_sleep/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/context_switch/os_sched_wakeup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_nsecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_delay_usecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_get32/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_nsecs_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_ticks_to_nsecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_ticks_to_usecs/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_relative/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_start/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_timer_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/cputime/os_cputime_usecs_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_advance/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_delay/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_time_ms_to_ticks/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_get_uptime_usec/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_gettimeofday/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/time/os_settimeofday/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/task/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_count/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_info_get_next/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/task/os_task_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/event_queue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_inited/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_remove/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_dflt_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_designate/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/event_queue/os_eventq_run/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/semaphore/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_pend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/semaphore/os_sem_release/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/mutex/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_pend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mutex/os_mutex_release/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/memory_pool/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_memblock_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_mempool_info_get_next/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_mempool_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/os_memblock_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/OS_MEMPOOL_BYTES/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/memory_pool/OS_MEMPOOL_SIZE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/heap/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_free/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_malloc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/heap/os_realloc/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/mbuf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTHDR/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_PKTLEN/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_DATA/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_USRHDR/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_adj/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_append/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_concat/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copydata/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_copyinto/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_dup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_extend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_free_chain/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_get_pkthdr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_memcmp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_off/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_pool_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_prepend/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mbuf/os_mbuf_pullup/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/msys/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_get_pkthdr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/msys/os_msys_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/mqueue/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_get/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/mqueue/os_mqueue_put/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/sanity/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_check_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/sanity/os_sanity_task_checkin/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/callout/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_func_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_queued/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_reset/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/callout/os_callout_stop/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_os/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_bsp/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_mcu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/core_os/porting/port_cpu/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_echo/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_is_init/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_printf/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_read/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_set_queues/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/console/console_write/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_cmd_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_evq_set/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_nlip_input_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_nlip_output/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_register/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_register_app_cmd_handler/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/shell/shell_register_default_module/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/split/split/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/bootloader/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_build_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_build_status_one/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_clear_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_copy_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_copy_image/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_erase_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_fill_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_area_idx/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_part/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_find_image_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_go/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_init_flash/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_move_area/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_image_header/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_image_headers/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_read_status/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_select_image_slot/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_slot_addr/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_slot_to_area_idx/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_swap_areas/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_delete_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_delete_test/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_main/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_one/</loc>
-     <lastmod>2020-04-09</lastmod>
+     <lastmod>2020-04-16</lastmod>
      <changefreq>daily</changefreq>
     </url>
     <url>
      <loc>http://mynewt.apache.org/os/modules/bootloader/boot_vect_read_test/</loc>
-     <lastmod>2020-04-09</lastmod>
... 4297 lines suppressed ...