diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-11-19 15:02:48 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-11-19 15:02:48 +0000 |
commit | 8f8502fade6ec1b720d69f8462e96614dd6f6593 (patch) | |
tree | f2f61e3f3c31bd626878e1242d601c3e76d1a90c /os | |
parent | afa584c197727029f54590d63e3d39445cc832ac (diff) | |
download | ChibiOS-8f8502fade6ec1b720d69f8462e96614dd6f6593.tar.gz ChibiOS-8f8502fade6ec1b720d69f8462e96614dd6f6593.tar.bz2 ChibiOS-8f8502fade6ec1b720d69f8462e96614dd6f6593.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7523 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/rt/include/chmempools.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/rt/include/chmempools.h b/os/rt/include/chmempools.h index 67cefa7df..da7006eda 100644 --- a/os/rt/include/chmempools.h +++ b/os/rt/include/chmempools.h @@ -39,14 +39,14 @@ /* Module pre-compile time settings. */
/*===========================================================================*/
-#if !CH_CFG_USE_MEMCORE
-#error "CH_CFG_USE_MEMPOOLS requires CH_CFG_USE_MEMCORE"
-#endif
-
/*===========================================================================*/
/* Derived constants and error checks. */
/*===========================================================================*/
+#if !CH_CFG_USE_MEMCORE
+#error "CH_CFG_USE_MEMPOOLS requires CH_CFG_USE_MEMCORE"
+#endif
+
/*===========================================================================*/
/* Module data structures and types. */
/*===========================================================================*/
|