4e25a4f6b3
Doing a squash merge to avoid having the `slc_cli_linux` .zip files in the history. They were added in one commit and removed and replaced with a submodule in another. * Initial commit for xg24 * Fix SLC issue * Fix SLC extract fail * Change board's name * Correct spelling of code Build immediately after slc generate * Remove VID and PID * Change creator and creation id * Apply new creator_id and creation_id * Update makefile, error message, mcu_processor function * Update mpconfigboard.mk * Update Board extensions, PORT_DEPS * Update makefile * Add exclude_patterns * Show java, jinja2 version * Show path for debugging CI * Add requirements-dev for slc * Add PATH slc_cli * Update background function * Add jinja2 PATH * Show PATH * Update jinja2 path * Update jinja2 path * Update jinja2 path * Update jinja2 path * Change slc folder * Change markupsafe folder * Add symbolic link for slc * Update makefile * Update makefile * Update MX25R3235F.toml from submodule nvm.toml * alphabetize the list * Remove slc_cli_linux folder * Update slc_cli submodule --------- Co-authored-by: Chat Nguyen <cvnguyen@silabs.com> Co-authored-by: silabs-ChatNguyen <chat.nguyen@silabs.com> Co-authored-by: silabs-ChatNguyen <126220343+silabs-ChatNguyen@users.noreply.github.com> |
||
---|---|---|
.. | ||
autoapi/templates/python | ||
library | ||
readthedocs/settings | ||
reference | ||
static | ||
templates | ||
LICENSE.md | ||
README.md | ||
common_hal.md | ||
design_guide.rst | ||
environment.rst | ||
index.rst | ||
libraries.rst | ||
porting.rst | ||
redirects.txt | ||
rstjinja.py | ||
shared_bindings_matrix.py | ||
supported_ports.rst | ||
troubleshooting.rst | ||
workflows.md |
README.md
Adafruit's CircuitPython Documentation
The latest documentation can be found at: http://circuitpython.readthedocs.io/en/latest/
The documentation you see there is generated from the files in the whole tree: https://github.com/adafruit/circuitpython/tree/main
Building the documentation locally
If you're making changes to the documentation, you should build the documentation locally so that you can preview your changes.
Install the necessary packages, preferably in a virtualenv, in circuitpython/
:
pip install -r requirements-doc.txt
In circuitpython/
, build the docs:
make html
You'll find the index page at _build/html/index.html
.
More flexibility
Running make
by itself will list out the multiple doc generating commands available.
All commands will, by default, run with -E
(forces a rebuild from scratch of docs) and -v
(verbosity level 1). This can be customized as desired:
# will turn OFF the force rebuild
make html FORCE=
# will turn OFF the verbosity
make html VERBOSE=
# will turn OFF the force rebuild and make it doubly verbose when running
make html FORCE= VERBOSE="-v -v"
You can also pass other options to sphinx by using SPHINXOPTS
.
make html SPHINXOPTS="-T"
For more flexibility and customization, take a look at the Makefile for all variables you can pass in and overwrite.