aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-03 09:34:55 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-03 09:34:55 +0000
commit90f791c2b61b0691ca8faede3b855641f258a87a (patch)
tree4e27eb57c37b65407bc4df65a46c277144f29e67 /os/ports
parent760d9accabfc58e727d44233e3a54f7fd210ff87 (diff)
downloadChibiOS-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
Diffstat (limited to 'os/ports')
-rw-r--r--os/ports/GCC/AVR/chcore.h6
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.