diff options
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
* @{
|