diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-03 09:34:55 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-03 09:34:55 +0000 |
commit | 90f791c2b61b0691ca8faede3b855641f258a87a (patch) | |
tree | 4e27eb57c37b65407bc4df65a46c277144f29e67 | |
parent | 760d9accabfc58e727d44233e3a54f7fd210ff87 (diff) | |
download | ChibiOS-90f791c2b61b0691ca8faede3b855641f258a87a.tar.gz ChibiOS-90f791c2b61b0691ca8faede3b855641f258a87a.tar.bz2 ChibiOS-90f791c2b61b0691ca8faede3b855641f258a87a.zip |
Documentation related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2227 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/ports/GCC/AVR/chcore.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/os/ports/GCC/AVR/chcore.h b/os/ports/GCC/AVR/chcore.h index 77af268c0..a61b1a279 100644 --- a/os/ports/GCC/AVR/chcore.h +++ b/os/ports/GCC/AVR/chcore.h @@ -58,7 +58,6 @@ */
typedef uint8_t stkalign_t;
-#if !defined(__DOXYGEN__)
/**
* @brief Interrupt saved context.
* @details This structure represents the stack frame saved during a
@@ -85,9 +84,7 @@ struct extctx { uint8_t r0;
uint16_t pc;
};
-#endif
-#if !defined(__DOXYGEN__)
/**
* @brief System saved context.
* @details This structure represents the inner stack frame during a context
@@ -120,9 +117,7 @@ struct intctx { uint8_t pcl;
uint8_t pch;
};
-#endif
-#if !defined(__DOXYGEN__)
/**
* @brief Platform dependent part of the @p Thread structure.
* @details In the AVR port this structure just holds a pointer to the
@@ -132,7 +127,6 @@ struct intctx { struct context {
struct intctx *sp;
};
-#endif
/**
* @brief Platform dependent part of the @p chThdInit() API.
|