Documentation related fixes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2227 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-10-03 09:34:55 +00:00
parent 760d9accab
commit 90f791c2b6
1 changed files with 0 additions and 6 deletions

View File

@ -58,7 +58,6 @@
*/ */
typedef uint8_t stkalign_t; typedef uint8_t stkalign_t;
#if !defined(__DOXYGEN__)
/** /**
* @brief Interrupt saved context. * @brief Interrupt saved context.
* @details This structure represents the stack frame saved during a * @details This structure represents the stack frame saved during a
@ -85,9 +84,7 @@ struct extctx {
uint8_t r0; uint8_t r0;
uint16_t pc; uint16_t pc;
}; };
#endif
#if !defined(__DOXYGEN__)
/** /**
* @brief System saved context. * @brief System saved context.
* @details This structure represents the inner stack frame during a context * @details This structure represents the inner stack frame during a context
@ -120,9 +117,7 @@ struct intctx {
uint8_t pcl; uint8_t pcl;
uint8_t pch; uint8_t pch;
}; };
#endif
#if !defined(__DOXYGEN__)
/** /**
* @brief Platform dependent part of the @p Thread structure. * @brief Platform dependent part of the @p Thread structure.
* @details In the AVR port this structure just holds a pointer to the * @details In the AVR port this structure just holds a pointer to the
@ -132,7 +127,6 @@ struct intctx {
struct context { struct context {
struct intctx *sp; struct intctx *sp;
}; };
#endif
/** /**
* @brief Platform dependent part of the @p chThdInit() API. * @brief Platform dependent part of the @p chThdInit() API.