micropython/docs
Damien George a3bbd5332b esp32/machine_bitstream: Reinstate bitstream bit-bang implementation.
The bit-bang implementation was replaced with the RMT implementation in
599b61c086.  This commit brings back that
bit-bang code, and allows it to be selected via the new static method:

    esp32.RMT.bitstream_channel(None)

The bit-bang implementation may be useful if the RMT needs to be used for
something else, or if bit-banging is more stable in certain applications.

Signed-off-by: Damien George <damien@micropython.org>
2022-01-14 16:40:01 +11:00
..
develop py/runtime: Allow initialising sys.path/argv with defaults. 2021-12-18 00:08:07 +11:00
differences docs/differences: Document details of new PEPs/features in Python 3.5+. 2022-01-05 22:49:20 +11:00
esp32 esp32/machine_bitstream: Reinstate bitstream bit-bang implementation. 2022-01-14 16:40:01 +11:00
esp8266 docs: Remove trailing spaces and convert tabs to spaces. 2021-12-15 11:49:22 +11:00
library esp32/machine_bitstream: Reinstate bitstream bit-bang implementation. 2022-01-14 16:40:01 +11:00
pyboard docs: Remove trailing spaces and convert tabs to spaces. 2021-12-15 11:49:22 +11:00
readthedocs/settings
reference docs: Remove trailing spaces and convert tabs to spaces. 2021-12-15 11:49:22 +11:00
rp2 docs/rp2/quickref.rst: Add section on PIO. 2021-11-19 15:30:14 +11:00
static
templates docs/templates: Add unix and zephyr quickref links to top-index. 2021-08-13 20:21:21 +10:00
unix
wipy docs: Remove trailing spaces and convert tabs to spaces. 2021-12-15 11:49:22 +11:00
zephyr zephyr: Upgrade to Zephyr v2.7.0. 2022-01-06 14:09:39 +11:00
Makefile
README.md
conf.py LICENSE,docs: Update copyright year range to include 2022. 2022-01-06 15:50:14 +11:00
index.rst
license.rst
make.bat docs/make.bat: Change Windows output dir from '_build' to 'build'. 2021-09-13 18:15:38 +10:00

README.md

MicroPython Documentation

The MicroPython documentation can be found at: http://docs.micropython.org/en/latest/

The documentation you see there is generated from the files in the docs tree: https://github.com/micropython/micropython/tree/master/docs

Building the documentation locally

If you're making changes to the documentation, you may want to build the documentation locally so that you can preview your changes.

Install Sphinx, and optionally (for the RTD-styling), sphinx_rtd_theme, preferably in a virtualenv:

 pip install sphinx
 pip install sphinx_rtd_theme

In micropython/docs, build the docs:

make html

You'll find the index page at micropython/docs/build/html/index.html.

Having readthedocs.org build the documentation

If you would like to have docs for forks/branches hosted on GitHub, GitLab or BitBucket an alternative to building the docs locally is to sign up for a free https://readthedocs.org account. The rough steps to follow are:

  1. sign-up for an account, unless you already have one
  2. in your account settings: add GitHub as a connected service (assuming you have forked this repo on github)
  3. in your account projects: import your forked/cloned micropython repository into readthedocs
  4. in the project's versions: add the branches you are developing on or for which you'd like readthedocs to auto-generate docs whenever you push a change

PDF manual generation

This can be achieved with:

make latexpdf

but require rather complete install of LaTeX with various extensions. On Debian/Ubuntu, try (500MB+ download):

apt-get install texlive-latex-recommended texlive-latex-extra