diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-02-04 19:37:05 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-02-04 19:37:05 +0000 |
commit | 81a268a40274908cd01af51adf264e22f2d43a0a (patch) | |
tree | 76ebb1606eb8b2fb80b4cca29ed020b3b10fc5ea /test/rt | |
parent | e01203129f059f5dd215d87ff0e6b1cbddae8fda (diff) | |
download | ChibiOS-81a268a40274908cd01af51adf264e22f2d43a0a.tar.gz ChibiOS-81a268a40274908cd01af51adf264e22f2d43a0a.tar.bz2 ChibiOS-81a268a40274908cd01af51adf264e22f2d43a0a.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11431 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/rt')
-rw-r--r-- | test/rt/testbuild/chconf.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/rt/testbuild/chconf.h b/test/rt/testbuild/chconf.h index a42a10bc7..53147ba97 100644 --- a/test/rt/testbuild/chconf.h +++ b/test/rt/testbuild/chconf.h @@ -353,6 +353,7 @@ */
#if !defined(CH_CFG_USE_MEMPOOLS) || defined(__DOXYGEN__)
#define CH_CFG_USE_MEMPOOLS TRUE
+#endif
/**
* @brief Objects FIFOs APIs.
@@ -361,6 +362,7 @@ *
* @note The default is @p TRUE.
*/
+#if !defined(CH_CFG_USE_OBJ_FIFOS) || defined(__DOXYGEN__)
#define CH_CFG_USE_OBJ_FIFOS TRUE
#endif
@@ -550,7 +552,7 @@ * @brief System structure extension.
* @details User fields added to the end of the @p ch_system_t structure.
*/
-#define CH_CFG_SYSTEM_EXTRA_FIELDS \r
+#define CH_CFG_SYSTEM_EXTRA_FIELDS \
/* Add threads custom fields here.*/
/**
@@ -558,8 +560,8 @@ * @details User initialization code added to the @p chSysInit() function
* just before interrupts are enabled globally.
*/
-#define CH_CFG_SYSTEM_INIT_HOOK(tp) { \r
- /* Add threads initialization code here.*/ \r
+#define CH_CFG_SYSTEM_INIT_HOOK(tp) { \
+ /* Add threads initialization code here.*/ \
}
/**
|