aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-30 17:17:52 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-30 17:17:52 +0000
commite04e6ada046db4f8a8de0b9895af4dca51a36f8d (patch)
treefc8ae582f6c5f1a8a962c95d35637cc1f7714492
parentc93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f (diff)
downloadChibiOS-e04e6ada046db4f8a8de0b9895af4dca51a36f8d.tar.gz
ChibiOS-e04e6ada046db4f8a8de0b9895af4dca51a36f8d.tar.bz2
ChibiOS-e04e6ada046db4f8a8de0b9895af4dca51a36f8d.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@565 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--docs/ch.txt19
-rw-r--r--src/include/inline.h7
-rw-r--r--src/templates/chtypes.h2
3 files changed, 27 insertions, 1 deletions
diff --git a/docs/ch.txt b/docs/ch.txt
index ad7421f3b..71ef8140e 100644
--- a/docs/ch.txt
+++ b/docs/ch.txt
@@ -435,6 +435,25 @@
* Non portable code.
* @ingroup Kernel
* @file chcore.c Non portable code.
+ * @file chcore.h Non portable macros and structures.
+ */
+/** @} */
+
+/**
+ * @defgroup Types Types
+ * @{
+ * System types and macros.
+ * @ingroup Kernel
+ * @file chtypes.h System types and code modifiers.
+ */
+/** @} */
+
+/**
+ * @defgroup Inline Inline
+ * @{
+ * System inline-able code.
+ * @ingroup Kernel
+ * @file inline.h Inline versions of some critical system routines.
*/
/** @} */
diff --git a/src/include/inline.h b/src/include/inline.h
index 9cc18974d..379a1f216 100644
--- a/src/include/inline.h
+++ b/src/include/inline.h
@@ -17,6 +17,11 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+/**
+ * @addtogroup Inline
+ * @{
+ */
+
#ifndef _INLINE_H_
#define _INLINE_H_
@@ -78,3 +83,5 @@ static INLINE Thread *list_remove(ThreadsList *tlp) {
#endif /* CH_OPTIMIZE_SPEED */
#endif /* _INLINE_H_ */
+
+/** @} */
diff --git a/src/templates/chtypes.h b/src/templates/chtypes.h
index 92b5dc443..547b0fb7e 100644
--- a/src/templates/chtypes.h
+++ b/src/templates/chtypes.h
@@ -18,7 +18,7 @@
*/
/**
- * @addtogroup Core
+ * @addtogroup Types
* @{
*/