chconf.h generators updated, fixed a typo.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12960 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2019-08-28 09:09:25 +00:00
parent be0fa896d4
commit ee9c03736c
3 changed files with 21 additions and 1 deletions

View File

@ -458,7 +458,7 @@ bool chCacheReadObject(objects_cache_t *ocp,
}
/**
* @brief writes the object data back to storage.
* @brief Writes the object data back to storage.
* @note In case of asynchronous operation an error condition is not
* reported by this function.
*

View File

@ -273,6 +273,15 @@
*/
#define CH_CFG_FACTORY_PIPES ${doc.CH_CFG_FACTORY_PIPES!"TRUE"}
/**
* @brief Objects Caches APIs.
* @details If enabled then the objects caches APIs are included
* in the kernel.
*
* @note The default is @p TRUE.
*/
#define CH_CFG_USE_OBJ_CACHES ${doc.CH_CFG_USE_OBJ_CACHES!"TRUE"}
/** @} */
/*===========================================================================*/

View File

@ -392,6 +392,17 @@
#define CH_CFG_USE_PIPES ${doc.CH_CFG_USE_PIPES!"TRUE"}
#endif
/**
* @brief Objects Caches APIs.
* @details If enabled then the objects caches APIs are included
* in the kernel.
*
* @note The default is @p TRUE.
*/
#if !defined(CH_CFG_USE_OBJ_CACHES)
#define CH_CFG_USE_OBJ_CACHES ${doc.CH_CFG_USE_OBJ_CACHES!"TRUE"}
#endif
/**
* @brief Dynamic Threads APIs.
* @details If enabled then the dynamic threads creation APIs are included