diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-04 14:46:20 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-04 14:46:20 +0000 |
commit | 426c5edcd872ade0c619e4caa0930ea9ab68484d (patch) | |
tree | 119aeff705ef4e96325ca7a4efc5e8e58d1af701 /demos/STM32/RT-STM32F072-DISCOVERY/chconf.h | |
parent | 329823da6aaa27ba5fd211945b88c2c4ab6df08f (diff) | |
download | ChibiOS-426c5edcd872ade0c619e4caa0930ea9ab68484d.tar.gz ChibiOS-426c5edcd872ade0c619e4caa0930ea9ab68484d.tar.bz2 ChibiOS-426c5edcd872ade0c619e4caa0930ea9ab68484d.zip |
chconf.h files alignment pass 3, added objects factory settings
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10767 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/RT-STM32F072-DISCOVERY/chconf.h')
-rw-r--r-- | demos/STM32/RT-STM32F072-DISCOVERY/chconf.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/demos/STM32/RT-STM32F072-DISCOVERY/chconf.h b/demos/STM32/RT-STM32F072-DISCOVERY/chconf.h index e11b762da..c89718a86 100644 --- a/demos/STM32/RT-STM32F072-DISCOVERY/chconf.h +++ b/demos/STM32/RT-STM32F072-DISCOVERY/chconf.h @@ -319,6 +319,56 @@ /*===========================================================================*/
/**
+ * @name Objects factory options
+ * @{
+ */
+/*===========================================================================*/
+
+/**
+ * @brief Objects Factory APIs.
+ * @details If enabled then the objects factory APIs are included in the
+ * kernel.
+ *
+ * @note The default is @p FALSE.
+ */
+#define CH_CFG_USE_FACTORY TRUE
+
+/**
+ * @brief Maximum length for object names.
+ * @details If the specified length is zero then the name is stored by
+ * pointer but this could have unintended side effects.
+ */
+#define CH_CFG_FACTORY_MAX_NAMES_LENGHT 8
+
+/**
+ * @brief Enables the registry of generic objects.
+ */
+#define CH_CFG_FACTORY_OBJECTS_REGISTRY TRUE
+
+/**
+ * @brief Enables factory for generic buffers.
+ */
+#define CH_CFG_FACTORY_GENERIC_BUFFERS TRUE
+
+/**
+ * @brief Enables factory for semaphores.
+ */
+#define CH_CFG_FACTORY_SEMAPHORES TRUE
+
+/**
+ * @brief Enables factory for mailboxes.
+ */
+#define CH_CFG_FACTORY_MAILBOXES TRUE
+
+/**
+ * @brief Enables factory for objects FIFOs.
+ */
+#define CH_CFG_FACTORY_OBJ_FIFOS TRUE
+
+/** @} */
+
+/*===========================================================================*/
+/**
* @name Debug options
* @{
*/
|