aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-10-04 14:24:45 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-10-04 14:24:45 +0000
commit0c5eef8e02b15fb4b8c3f829299c47ea273a4a46 (patch)
tree8fe0db9df4aee67ba6eabef9f61339703d8ed8c2 /test
parenteaa33f5bdbee5aa3c77cdfaeb9c1333251bd5a4d (diff)
downloadChibiOS-0c5eef8e02b15fb4b8c3f829299c47ea273a4a46.tar.gz
ChibiOS-0c5eef8e02b15fb4b8c3f829299c47ea273a4a46.tar.bz2
ChibiOS-0c5eef8e02b15fb4b8c3f829299c47ea273a4a46.zip
chconf.h files alignment pass 1
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10765 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test')
-rw-r--r--test/nil/testbuild/chconf.h9
-rw-r--r--test/rt/testbuild/chconf.h9
2 files changed, 18 insertions, 0 deletions
diff --git a/test/nil/testbuild/chconf.h b/test/nil/testbuild/chconf.h
index 5a7fd5ae1..c3740124d 100644
--- a/test/nil/testbuild/chconf.h
+++ b/test/nil/testbuild/chconf.h
@@ -149,6 +149,15 @@
#define CH_CFG_USE_MEMPOOLS TRUE
/**
+ * @brief Objects FIFOs APIs.
+ * @details If enabled then the objects FIFOs APIs are included
+ * in the kernel.
+ *
+ * @note The default is @p TRUE.
+ */
+#define CH_CFG_USE_OBJ_FIFOS TRUE
+
+/**
* @brief Managed RAM size.
* @details Size of the RAM area to be managed by the OS. If set to zero
* then the whole available RAM is used. The core memory is made
diff --git a/test/rt/testbuild/chconf.h b/test/rt/testbuild/chconf.h
index 6ef9b4069..49958a217 100644
--- a/test/rt/testbuild/chconf.h
+++ b/test/rt/testbuild/chconf.h
@@ -340,6 +340,15 @@
*/
#if !defined(CH_CFG_USE_MEMPOOLS) || defined(__DOXYGEN__)
#define CH_CFG_USE_MEMPOOLS TRUE
+
+/**
+ * @brief Objects FIFOs APIs.
+ * @details If enabled then the objects FIFOs APIs are included
+ * in the kernel.
+ *
+ * @note The default is @p TRUE.
+ */
+#define CH_CFG_USE_OBJ_FIFOS TRUE
#endif
/**