diff options
author | Damien George <damien.p.george@gmail.com> | 2014-11-02 23:37:02 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-11-02 23:37:02 +0000 |
commit | 6e6dfdc56be2a5d6476d087043d2a4ccae139af2 (patch) | |
tree | f63db0de4531eacf91fdc94ed34bc060c2439cef /docs/tutorial/script.rst | |
parent | 1060baa2c26d45c2641ee786581655eb44ffda90 (diff) | |
download | micropython-6e6dfdc56be2a5d6476d087043d2a4ccae139af2.tar.gz micropython-6e6dfdc56be2a5d6476d087043d2a4ccae139af2.zip |
docs: Make custom index page; add more docs.
Diffstat (limited to 'docs/tutorial/script.rst')
-rw-r--r-- | docs/tutorial/script.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorial/script.rst b/docs/tutorial/script.rst index 5f70b72507..d1b12ae6d1 100644 --- a/docs/tutorial/script.rst +++ b/docs/tutorial/script.rst @@ -46,16 +46,16 @@ 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``](/static/doc/fresh-pyboard/boot.py) -- this script is executed when the pyboard boots up. It sets +* `boot.py <http://micropython.org/static/doc/fresh-pyboard/boot.py>`_ -- this script is executed when the pyboard boots up. It sets up various configuration options for the pyboard. - - [``main.py``](/static/doc/fresh-pyboard/main.py) -- this is the main script that will contain your Python program. +* `main.py <http://micropython.org/static/doc/fresh-pyboard/main.py>`_ -- this is the main script that will contain your Python program. It is executed after ``boot.py``. - - [``README.txt``](/static/doc/fresh-pyboard/README.txt) -- this contains some very basic information about getting +* `README.txt <http://micropython.org/static/doc/fresh-pyboard/README.txt>`_ -- this contains some very basic information about getting started with the pyboard. - - [``pybcdc.inf``](/static/doc/fresh-pyboard/pybcdc.inf) -- this is a Windows driver file to configure the serial USB +* `pybcdc.inf <http://micropython.org/static/doc/fresh-pyboard/pybcdc.inf>`_ -- this is a Windows driver file to configure the serial USB device. More about this in the next tutorial. Editing ``main.py`` |