zephyr/doc
Carles Cufi 7599fad178 doc: cmake: Do not use USES_TERMINAL on latex/pdf targets
The following error appeared on documentation builds when enabling the
USES_TERMINAL flag:

  USES_TERMINAL may not be specified without any COMMAND

This is because targets without a command should not be using the flag
at all, so remove its usage from those. Instead, use it in the
add_custom_command() that actualy invokes sphinx.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2018-09-26 12:13:39 +02:00
..
_templates doc: switch to use RTD theme 2018-08-08 17:48:27 +02:00
api net: l2: Add support for Link Layer Discovery Protocol (LLDP) 2018-08-08 09:53:24 +03:00
application cmake: Re-direct KCONFIG_ROOT when convention is used 2018-09-21 13:37:21 -04:00
contribute doc: convert internal http links to references 2018-09-11 14:55:43 -04:00
crypto
devices doc: device: dts: Fix the error in the doc. 2018-07-05 07:51:51 -04:00
extensions doc: extensions: fix :app: behavior for zephyr-app-commands 2018-06-08 08:03:05 -04:00
getting_started doc: Indent RST code blocks and notes 2018-09-19 14:46:02 +02:00
images doc: Replace title with logo in front page 2018-08-02 18:56:08 +02:00
introduction doc: Update intro with ble mesh and kernel features 2018-09-22 06:53:55 -04:00
kernel doc: use https for docs.zephyrproject.org references 2018-09-10 17:46:34 -04:00
porting doc: provide shield usage documentation 2018-09-21 18:51:26 -04:00
scripts doc: add ability to generate PDF 2018-08-29 18:16:56 -04:00
security doc: Enumerate threats in model 2018-06-22 12:30:06 -04:00
static doc: tweak table CSS for caption location 2018-08-06 09:45:13 -05:00
subsystems doc: Bluetooth: Mention Mesh in the supported features 2018-09-20 07:31:04 -04:00
templates doc: add doc writing guides w/common usages 2018-05-11 09:09:49 -07:00
themes/zephyr
tools doc: Update OpenSDA document for flashing with jlink 2018-08-08 10:12:00 +02:00
west scripts: update west to latest upstream version. 2018-09-25 17:51:22 +02:00
404.rst doc: fix 404 error page message 2018-09-06 21:13:57 -04:00
CMakeLists.txt doc: cmake: Do not use USES_TERMINAL on latex/pdf targets 2018-09-26 12:13:39 +02:00
LICENSING.rst
README.rst doc: document build target for PDF 2018-09-11 14:55:43 -04:00
conf.py scripts: update west to latest upstream version. 2018-09-25 17:51:22 +02:00
copyright.rst
glossary.rst
index.rst doc: use https for docs.zephyrproject.org references 2018-09-10 17:46:34 -04:00
release-notes-1.5.rst
release-notes-1.6.rst
release-notes-1.7.rst
release-notes-1.8.rst
release-notes-1.9.rst
release-notes-1.10.rst doc: use https for docs.zephyrproject.org references 2018-09-10 17:46:34 -04:00
release-notes-1.11.rst release: Update release notes with GitHub issues 2018-03-09 23:24:18 +01:00
release-notes-1.12.rst release: 1.12 doc cleanup 2018-06-11 15:16:19 -04:00
release-notes-1.13.rst doc: final edit for 1.13 release notes 2018-09-10 20:11:47 -04:00
release-notes.rst doc: changes for 1.13 documentaiton release 2018-09-10 13:46:14 -04:00
substitutions.txt doc: add doc writing guides w/common usages 2018-05-11 09:09:49 -07:00
zephyr.doxyfile.in doc: fix doxygen BUILD_ASSERT error 2018-09-26 00:33:13 +05:30

README.rst

.. _zephyr_doc:

Zephyr Documentation Generation
###############################

These instructions will walk you through generating the Zephyr Project's
documentation on your local system using the same documentation sources
as we use to create the online documentation found at
https://docs.zephyrproject.org

Documentation overview
**********************

Zephyr Project content is written using the reStructuredText markup
language (.rst file extension) with Sphinx extensions, and processed
using Sphinx to create a formatted stand-alone website. Developers can
view this content either in its raw form as .rst markup files, or you
can generate the HTML content and view it with a web browser directly on
your workstation. This same .rst content is also fed into the Zephyr
Project's public website documentation area (with a different theme
applied).

You can read details about `reStructuredText`_, and `Sphinx`_ from
their respective websites.

The project's documentation contains the following items:

* ReStructuredText source files used to generate documentation found at the
  https://docs.zephyrproject.org website. Most of the reStructuredText sources
  are found in the ``/doc`` directory, but others are stored within the
  code source tree near their specific component (such as ``/samples`` and
  ``/boards``)

* Doxygen-generated material used to create all API-specific documents
  also found at https://docs.zephyrproject.org

* Script-generated material for kernel configuration options based on Kconfig
  files found in the source code tree

The reStructuredText files are processed by the Sphinx documentation system,
and make use of the breathe extension for including the doxygen-generated API
material.  Additional tools are required to generate the
documentation locally, as described in the following sections.

Installing the documentation processors
***************************************

Our documentation processing has been tested to run with:

* Doxygen version 1.8.13
* Sphinx version 1.7.5
* Breathe version 4.9.1
* docutils version 0.14
* sphinx_rtd_theme version 0.4.0
* sphinxcontrib-svg2pdfconverter version 0.1.0
* Latexmk version version 4.56

In order to install the documentation tools, clone a copy of the git repository
for the Zephyr project and set up your development environment as described in
:ref:`getting_started`. This will ensure all the required tools are installed
on your system.

.. note::
   On Windows, the Sphinx executable ``sphinx-build.exe`` is placed in
   the ``Scripts`` folder of your Python installation path.
   Dependending on how you have installed Python, you may need to
   add this folder to your ``PATH`` environment variable. Follow
   the instructions in `Windows Python Path`_ to add those if needed.

Documentation presentation theme
********************************

Sphinx supports easy customization of the generated documentation
appearance through the use of themes.  Replace the theme files and do
another ``make htmldocs`` and the output layout and style is changed.
The ``read-the-docs`` theme is installed as part of the
``requirements.txt`` list above, and will be used if it's available, for
local doc generation.


Running the documentation processors
************************************

The ``/doc`` directory in your cloned copy of the Zephyr project git
repo has all the .rst source files, extra tools, and Makefile for
generating a local copy of the Zephyr project's technical documentation.
Assuming the local Zephyr project copy is in a folder ``zephyr`` in your home
folder, here are the commands to generate the html content locally:

.. code-block:: console

   # On Linux/macOS
   cd ~/zephyr
   source zephyr-env.sh
   mkdir -p doc/_build && cd doc/_build
   # On Windows
   cd %userprofile%\zephyr
   zephyr-env.cmd
   mkdir doc\_build & cd doc/_build

   # Use cmake to configure a Ninja-based build system:
   cmake -GNinja ..

   # To generate HTML output, run ninja on the generated build system:
   ninja htmldocs
   # If you modify or add .rst files, run ninja again:
   ninja htmldocs

   # To generate PDF output, run ninja on the generated build system:
   ninja pdfdocs

Depending on your development system, it will take up to 15 minutes to
collect and generate the HTML content.  When done, you can view the HTML
output with your browser started at ``doc/_build/html/index.html`` and
the PDF file is available at ``doc/_build/pdf/zephyr.pdf``.

If you want to build the documentation from scratch just delete the contents
of the build folder and run ``cmake`` and then ``ninja`` again.

On Unix platforms a convenience :file:`Makefile` at the root folder
of the Zephyr repository can be used to build the documentation directly from
there:

.. code-block:: console

   cd ~/zephyr
   source zephyr-env.sh

   # To generate HTML output
   make htmldocs

   # To generate PDF output
   make pdfdocs

Filtering expected warnings
***************************

Alas, there are some known issues with the doxygen/Sphinx/Breathe
processing that generates warnings for some constructs, in particular
around unnamed structures in nested unions or structs.
While these issues are being considered for fixing in
Sphinx/Breathe, we've added a post-processing filter on the output of
the documentation build process to check for "expected" messages from the
generation process output.

The output from the Sphinx build is processed by the python script
``scripts/filter-known-issues.py`` together with a set of filter
configuration files in the ``.known-issues/doc`` folder.  (This
filtering is done as part of the ``doc/CMakeLists.txt`` CMake listfile.)

If you're contributing components included in the Zephyr API
documentation and run across these warnings, you can include filtering
them out as "expected" warnings by adding a conf file to the
``.known-issues/doc`` folder, following the example of other conf files
found there.

.. _reStructuredText: http://sphinx-doc.org/rest.html
.. _Sphinx: http://sphinx-doc.org/
.. _Windows Python Path: https://docs.python.org/3/using/windows.html#finding-the-python-executable