diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-03 10:31:50 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-03 10:31:50 +0000 |
commit | 6059ca8a0444f026f1e6b5f343e7b389a9c4267c (patch) | |
tree | 059a2f9765f78ea04c2edcb2406e89febb9e792b /os/rt | |
parent | 3368f57424db121a96207e9ee6f5e9f746d34ca6 (diff) | |
download | ChibiOS-6059ca8a0444f026f1e6b5f343e7b389a9c4267c.tar.gz ChibiOS-6059ca8a0444f026f1e6b5f343e7b389a9c4267c.tar.bz2 ChibiOS-6059ca8a0444f026f1e6b5f343e7b389a9c4267c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6252 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt')
-rw-r--r-- | os/rt/ports/ARMCMx/chcore_v6m.h | 3 | ||||
-rw-r--r-- | os/rt/ports/ARMCMx/chcore_v7m.h | 1 | ||||
-rw-r--r-- | os/rt/ports/ARMCMx/compilers/GCC/chcoreasm_v6m.s | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/os/rt/ports/ARMCMx/chcore_v6m.h b/os/rt/ports/ARMCMx/chcore_v6m.h index b39d019e7..846378b65 100644 --- a/os/rt/ports/ARMCMx/chcore_v6m.h +++ b/os/rt/ports/ARMCMx/chcore_v6m.h @@ -19,7 +19,7 @@ */
/**
- * @file GCC/ARMCMx/chcore_v6m.h
+ * @file ARMCMx/chcore_v6m.h
* @brief ARMv6-M architecture port macros and structures.
*
* @addtogroup ARMCMx_V6M_CORE
@@ -213,6 +213,7 @@ struct context { /**
* @brief Computes the thread working area global size.
+ * @note There is no need to perform alignments in this macro.
*/
#define PORT_WA_SIZE(n) (sizeof(struct port_intctx) + \
sizeof(struct port_extctx) + \
diff --git a/os/rt/ports/ARMCMx/chcore_v7m.h b/os/rt/ports/ARMCMx/chcore_v7m.h index 04d2c0240..f4db6f884 100644 --- a/os/rt/ports/ARMCMx/chcore_v7m.h +++ b/os/rt/ports/ARMCMx/chcore_v7m.h @@ -312,6 +312,7 @@ struct context { /**
* @brief Computes the thread working area global size.
+ * @note There is no need to perform alignments in this macro.
*/
#define PORT_WA_SIZE(n) (sizeof(struct port_intctx) + \
sizeof(struct port_extctx) + \
diff --git a/os/rt/ports/ARMCMx/compilers/GCC/chcoreasm_v6m.s b/os/rt/ports/ARMCMx/compilers/GCC/chcoreasm_v6m.s index 7fe77c57f..d8f5601db 100644 --- a/os/rt/ports/ARMCMx/compilers/GCC/chcoreasm_v6m.s +++ b/os/rt/ports/ARMCMx/compilers/GCC/chcoreasm_v6m.s @@ -19,8 +19,8 @@ */
/**
- * @file ARMCMx/GCC/chcoreasm_v7m.s
- * @brief ARMv7-M architecture port low level code.
+ * @file ARMCMx/GCC/chcoreasm_v6m.s
+ * @brief ARMv6-M architecture port low level code.
*
* @addtogroup ARMCMx_CORE
* @{
|