From aed82faf72f86bfdca6568102953239116ba90c1 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 2 Apr 2016 07:11:56 +0000 Subject: Fixed calls to test suite in all applications. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9202 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/common/ports/ARMCMx/compilers/IAR/chtypes.h | 5 +++++ os/common/ports/ARMCMx/compilers/RVCT/chtypes.h | 5 +++++ 2 files changed, 10 insertions(+) (limited to 'os/common/ports/ARMCMx/compilers') diff --git a/os/common/ports/ARMCMx/compilers/IAR/chtypes.h b/os/common/ports/ARMCMx/compilers/IAR/chtypes.h index 152a64fe0..1cec367f0 100644 --- a/os/common/ports/ARMCMx/compilers/IAR/chtypes.h +++ b/os/common/ports/ARMCMx/compilers/IAR/chtypes.h @@ -93,6 +93,11 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ */ #define PACKED_VAR __packed +/** + * @brief Memory alignment enforcement for variables. + */ +#define ALIGNED_VAR(n) __attribute__((aligned(n))) + #endif /* CHTYPES_H */ /** @} */ diff --git a/os/common/ports/ARMCMx/compilers/RVCT/chtypes.h b/os/common/ports/ARMCMx/compilers/RVCT/chtypes.h index 398472dfe..73a960376 100644 --- a/os/common/ports/ARMCMx/compilers/RVCT/chtypes.h +++ b/os/common/ports/ARMCMx/compilers/RVCT/chtypes.h @@ -93,6 +93,11 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ */ #define PACKED_VAR __packed +/** + * @brief Memory alignment enforcement for variables. + */ +#define ALIGNED_VAR(n) __attribute__((aligned(n))) + #endif /* CHTYPES_H */ /** @} */ -- cgit v1.2.3