diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-02-05 14:10:07 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-02-05 14:10:07 +0000 |
commit | 1474f60da3ac5bf5bc04eddfea7e3d41b1932658 (patch) | |
tree | 4ac6652a76dbb38103ac1d93eaa52ec2e506d896 /os/common/startup/ARMCMx/devices/STM32L4xx/cmparams.h | |
parent | 9683ccfa78dff27ef8479e3af8d6817f51455ec2 (diff) | |
download | ChibiOS-1474f60da3ac5bf5bc04eddfea7e3d41b1932658.tar.gz ChibiOS-1474f60da3ac5bf5bc04eddfea7e3d41b1932658.tar.bz2 ChibiOS-1474f60da3ac5bf5bc04eddfea7e3d41b1932658.zip |
MISRA-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10084 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/startup/ARMCMx/devices/STM32L4xx/cmparams.h')
-rw-r--r-- | os/common/startup/ARMCMx/devices/STM32L4xx/cmparams.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/common/startup/ARMCMx/devices/STM32L4xx/cmparams.h b/os/common/startup/ARMCMx/devices/STM32L4xx/cmparams.h index d12aa8e53..95a4f5f7e 100644 --- a/os/common/startup/ARMCMx/devices/STM32L4xx/cmparams.h +++ b/os/common/startup/ARMCMx/devices/STM32L4xx/cmparams.h @@ -68,6 +68,8 @@ assembler source files. We verify that the info matches instead.*/
#include "stm32l4xx.h"
+/*lint -save -e9029 [10.4] Signedness comes from external files, it is
+ unpredictable but gives no problems.*/
#if CORTEX_MODEL != __CORTEX_M
#error "CMSIS __CORTEX_M mismatch"
#endif
@@ -79,6 +81,7 @@ #if CORTEX_PRIORITY_BITS != __NVIC_PRIO_BITS
#error "CMSIS __NVIC_PRIO_BITS mismatch"
#endif
+/*lint -restore*/
#endif /* !defined(_FROM_ASM_) */
|