ChibiOS/docs
gdisirio 2e7bca6cc8 git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2047 35acf78f-673a-0410-8e92-d51de3d6d3f4 2010-07-03 07:02:34 +00:00
..
html Documentation improvements. 2009-03-02 15:42:19 +00:00
reports git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2047 35acf78f-673a-0410-8e92-d51de3d6d3f4 2010-07-03 07:02:34 +00:00
rsc git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1776 35acf78f-673a-0410-8e92-d51de3d6d3f4 2010-03-23 19:09:32 +00:00
src Version 1.5.8, release candidate 2 for version 2.0.0. 2010-05-29 06:20:26 +00:00
Doxyfile git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2038 35acf78f-673a-0410-8e92-d51de3d6d3f4 2010-06-25 08:55:40 +00:00
index.html Fixes to the documentation, swapped the values of constants TIME_INFINITE and TIME_IMMEDIATE (previously TIME_ZERO). 2009-03-08 08:15:23 +00:00
readme.txt git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1772 35acf78f-673a-0410-8e92-d51de3d6d3f4 2010-03-22 16:16:52 +00:00

readme.txt

*** Documentation access ***

Open ./docs/index.html to open the start page or ./docs/html/index.html in
order to access directly the doxigen documentation.

*** Documentation rebuild procedure ***

The following software must be installed:
- Doxygen 1.5.7.1 or later.
- Graphviz 2.21 or later. The ./bin directory must be specified in the path in
  order to make Graphviz accessible by Doxygen.

Build procedure:
- Run Doxywizard.
- Load ./docs/Doxyfile from Doxywizard.
- Start.

*** Doxygen usage rules ***
- The JavaDoc style is recommended (@ instad of \, /** instead of /*!).
- Params descriptions must not begin with a capital letter and must not be
  terminated with a dot unless it is composed of multiple paragraphs.
- Retvals descriptions must not begin with a capital letter but must be
  terminated by a dot.
- Normal paragraphs, return rescriptions and notes must start with a capital
  letter and must be terminated with a dot.
- Multiple return values should be listed using the @retval command.
- Parameters direction must be specified.

Examples:
@note This is a note.
@retval RDY_OK is a possible return value.
@return The pointer to the created thread is returned.
@param[in] n the number of bytes to be written
@param[in] n the number of bytes to be written. This value can be zero.