From 8faf2dc75b140e7f6f915b8d90e4b86366f56997 Mon Sep 17 00:00:00 2001
From: danicampora
Date: Mon, 19 Oct 2015 16:28:29 +0200
Subject: docs/wipy: Add wipy tutorials section.
---
docs/library/network.rst | 2 +-
docs/topindex.html | 2 --
docs/wipy/general.rst | 6 ++++++
docs/wipy/tutorial/index.rst | 30 ++++++++++++++++++++++++++++++
docs/wipy_contents.rst | 1 +
docs/wipy_index.rst | 1 +
6 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 docs/wipy/tutorial/index.rst
(limited to 'docs')
diff --git a/docs/library/network.rst b/docs/library/network.rst
index 4485ff7e1..794ce70c8 100644
--- a/docs/library/network.rst
+++ b/docs/library/network.rst
@@ -37,7 +37,7 @@ For example::
Constructors
------------
- .. class:: server(id, ...)
+ .. class:: network.server(id, ...)
Create a server instance, see ``init`` for parameters of initialization.
diff --git a/docs/topindex.html b/docs/topindex.html
index 0a65f4210..fe61b5b92 100644
--- a/docs/topindex.html
+++ b/docs/topindex.html
@@ -34,8 +34,6 @@
General information about {{ port_name }}
read this first for a quick overview
Tutorials and code examples
start here
diff --git a/docs/wipy/general.rst b/docs/wipy/general.rst
index 528dd4c19..e52fcc926 100644
--- a/docs/wipy/general.rst
+++ b/docs/wipy/general.rst
@@ -67,6 +67,8 @@ to one, otherwise FileZilla will try to open a second command connection when re
and saving files, and for simplicity and to reduce code size, only one command and one
data connections are possible. Other FTP clients might behave in a similar way.
+.. _wipy_firmware_upgrade:
+
Upgrading the firmware Over The Air
-----------------------------------
@@ -79,6 +81,10 @@ verify its integrity. Now, reset the MCU by pressing the switch on the board, or
import machine
machine.reset()
+Software updates can be found in: https://github.com/wipy/wipy/releases
+It's always recommended to update to the latest software, but make sure to
+read the ``release notes`` before.
+
Boot modes
----------
diff --git a/docs/wipy/tutorial/index.rst b/docs/wipy/tutorial/index.rst
new file mode 100644
index 000000000..751d9d797
--- /dev/null
+++ b/docs/wipy/tutorial/index.rst
@@ -0,0 +1,30 @@
+.. _wipy_tutorial_index:
+
+WiPy tutorials and examples
+===========================
+
+Performing firmware upgrades
+----------------------------
+
+For detalied instructions see :ref:`OTA How-To