Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14541 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
606a4c3b59
commit
b0db601343
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 20.3.0
|
||||
PROJECT_NUMBER = 21.6.0
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/HAL
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 7.1.0
|
||||
PROJECT_NUMBER = 7.2.0
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/HAL
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 7.1.0
|
||||
PROJECT_NUMBER = 7.2.0
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/NIL
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 4.0.0
|
||||
PROJECT_NUMBER = 4.1.0
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/NIL
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 4.0.0
|
||||
PROJECT_NUMBER = 4.1.0
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/RT
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 6.1.0
|
||||
PROJECT_NUMBER = 7.0.0
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/RT
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 6.1.0
|
||||
PROJECT_NUMBER = 7.0.0
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* @file templates/chcore.c
|
||||
* @brief Port related template code.
|
||||
*
|
||||
* @addtogroup TEMPLATE_CORE
|
||||
* @addtogroup port_core
|
||||
* @details Non portable code templates.
|
||||
* @{
|
||||
*/
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
* @details This file is a template of the system driver macros provided by
|
||||
* a port.
|
||||
*
|
||||
* @addtogroup TEMPLATE_CORE
|
||||
* @addtogroup port_core
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* @file templates/chtypes.h
|
||||
* @brief Template port system types.
|
||||
*
|
||||
* @addtogroup TEMPLATE_CORE
|
||||
* @addtogroup port_types
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
@ -54,7 +54,18 @@
|
|||
* @ingroup HAL_INTERFACES
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup HAL_BUFFERED_STREAMS Buffered Streams Class
|
||||
* @ingroup HAL_INTERFACES
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup HAL_CHPRINTF Output Formatter Utility
|
||||
* @ingroup HAL_INTERFACES
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup HAL_CHSCANF Input Formatter Utility
|
||||
* @ingroup HAL_INTERFACES
|
||||
*/
|
||||
|
|
@ -80,7 +80,7 @@
|
|||
* @note It is meant to be used in configuration files as switch.
|
||||
*/
|
||||
#if !defined(FALSE) || defined(__DOXYGEN__)
|
||||
#define FALSE 0
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -88,7 +88,7 @@
|
|||
* @note It is meant to be used in configuration files as switch.
|
||||
*/
|
||||
#if !defined(TRUE) || defined(__DOXYGEN__)
|
||||
#define TRUE 1
|
||||
#define TRUE 1
|
||||
#endif
|
||||
/** @} */
|
||||
|
||||
|
|
|
@ -59,12 +59,12 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @defgroup instances OS Instances
|
||||
* @defgroup os_structures OS Types and Structures
|
||||
* @ingroup os
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup system System Management
|
||||
* @defgroup instances OS Instances
|
||||
* @ingroup os
|
||||
*/
|
||||
|
||||
|
@ -88,6 +88,11 @@
|
|||
* @ingroup kernel
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup system System Management
|
||||
* @ingroup base
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup mem Memory Alignment
|
||||
* @ingroup base
|
||||
|
|
Loading…
Reference in New Issue