summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorVicki Lowe <Vicki.Lowe@gmail.com>2019-08-06 15:46:29 +1000
committerDamien George <damien.p.george@gmail.com>2019-08-15 18:01:28 +1000
commit6592a30f4b6ed056411361d0c703fe814886e65b (patch)
tree26c6fe27a979b2b3dde44c770324630a3e1dd18e
parent57476a3c378940f72415c0093f1e24416132a817 (diff)
downloadmicropython-6592a30f4b6ed056411361d0c703fe814886e65b.tar.gz
micropython-6592a30f4b6ed056411361d0c703fe814886e65b.zip
docs/pyboard: Clarify initial files on pyboard and fix up formatting.
-rw-r--r--docs/pyboard/tutorial/script.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/pyboard/tutorial/script.rst b/docs/pyboard/tutorial/script.rst
index 29a0370d8a..2d44bbc885 100644
--- a/docs/pyboard/tutorial/script.rst
+++ b/docs/pyboard/tutorial/script.rst
@@ -46,17 +46,17 @@ a window (or command line) should be showing the files on the pyboard drive.
The drive you are looking at is known as ``/flash`` by the pyboard, and should contain
the following 4 files:
-* `boot.py <http://micropython.org/resources/fresh-pyboard/boot.py>`_ -- this script is executed when the pyboard boots up. It sets
- up various configuration options for the pyboard.
+* `boot.py <http://micropython.org/resources/fresh-pyboard/boot.py>`_ -- the various configuration options for the pyboard.
+ It is executed when the pyboard boots up.
-* `main.py <http://micropython.org/resources/fresh-pyboard/main.py>`_ -- this is the main script that will contain your Python program.
+* `main.py <http://micropython.org/resources/fresh-pyboard/main.py>`_ -- the Python program to be run.
It is executed after ``boot.py``.
-* `README.txt <http://micropython.org/resources/fresh-pyboard/README.txt>`_ -- this contains some very basic information about getting
- started with the pyboard.
+* `README.txt <http://micropython.org/resources/fresh-pyboard/README.txt>`_ -- basic information about getting started with the pyboard.
+ This provides pointers for new users and can be safely deleted.
-* `pybcdc.inf <http://micropython.org/resources/fresh-pyboard/pybcdc.inf>`_ -- this is a Windows driver file to configure the serial USB
- device. More about this in the next tutorial.
+* `pybcdc.inf <http://micropython.org/resources/fresh-pyboard/pybcdc.inf>`_ -- the Windows driver file to configure the serial USB device.
+ More about this in the next tutorial.
Editing ``main.py``
-------------------