aboutsummaryrefslogtreecommitdiffstats
path: root/ports/AVR
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-19 10:41:54 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-19 10:41:54 +0000
commitf8b4fca89a8dd31989a3d21e4c6fb4175aba4110 (patch)
treeef434d3f17fdacc2db73bff3d8bc3ca62a1f0c19 /ports/AVR
parentde5e04fc611f3b5cd5c16f39d1063c37110a9467 (diff)
downloadChibiOS-f8b4fca89a8dd31989a3d21e4c6fb4175aba4110.tar.gz
ChibiOS-f8b4fca89a8dd31989a3d21e4c6fb4175aba4110.tar.bz2
ChibiOS-f8b4fca89a8dd31989a3d21e4c6fb4175aba4110.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@642 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/AVR')
-rw-r--r--ports/AVR/chcore.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/ports/AVR/chcore.h b/ports/AVR/chcore.h
index a03e58acc..141255d8b 100644
--- a/ports/AVR/chcore.h
+++ b/ports/AVR/chcore.h
@@ -45,6 +45,7 @@
*/
typedef uint8_t stkalign_t;
+/** @cond never */
/**
* Interrupt saved context.
* @note The field @p _next is not part of the context, it represents the
@@ -69,7 +70,9 @@ struct extctx {
uint8_t r0;
uint16_t pc;
};
+/** @endcond */
+/** @cond never */
/**
* System saved context.
* @note The field @p _next is not part of the context, it represents the
@@ -100,15 +103,17 @@ struct intctx {
uint8_t pcl;
uint8_t pch;
};
+/** @endcond */
+/** @cond never */
/**
- * Platform dependent part of the @p Thread structure.
* In the AVR port this structure just holds a pointer to the @p intctx
* structure representing the stack pointer at the time of the context switch.
*/
-typedef struct {
+struct context {
struct intctx *sp;
-} Context;
+};
+/** @endcond */
/**
* Platform dependent part of the @p chThdInit() API.