From 85d62cbdf68219a526aa4ee68c325adda8b8d67e Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 30 Sep 2018 17:01:52 +0000 Subject: Added WSPI-related code, updated halconf.h files. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12311 110e8d01-0319-4d1e-a829-52ad28d1bb01 --- tools/ftl/processors/conf/halconf/halconf.h.ftl | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'tools') diff --git a/tools/ftl/processors/conf/halconf/halconf.h.ftl b/tools/ftl/processors/conf/halconf/halconf.h.ftl index 89061f30c..8e2af71e5 100644 --- a/tools/ftl/processors/conf/halconf/halconf.h.ftl +++ b/tools/ftl/processors/conf/halconf/halconf.h.ftl @@ -212,6 +212,13 @@ #define HAL_USE_WDG ${doc.HAL_USE_WDG!"FALSE"} #endif +/** + * @brief Enables the WSPI subsystem. + */ +#if !defined(HAL_USE_WSPI) || defined(__DOXYGEN__) +#define HAL_USE_WSPI ${doc.HAL_USE_WSPI!"FALSE"} +#endif + /*===========================================================================*/ /* PAL driver related settings. */ /*===========================================================================*/ @@ -538,6 +545,26 @@ #define USB_USE_WAIT ${doc.USB_USE_WAIT!"FALSE"} #endif +/*===========================================================================*/ +/* WSPI driver related settings. */ +/*===========================================================================*/ + +/** + * @brief Enables synchronous APIs. + * @note Disabling this option saves both code and data space. + */ +#if !defined(WSPI_USE_WAIT) || defined(__DOXYGEN__) +#define WSPI_USE_WAIT ${doc.WSPI_USE_WAIT!"TRUE"} +#endif + +/** + * @brief Enables the @p wspiAcquireBus() and @p wspiReleaseBus() APIs. + * @note Disabling this option saves both code and data space. + */ +#if !defined(WSPI_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__) +#define WSPI_USE_MUTUAL_EXCLUSION ${doc.WSPI_USE_MUTUAL_EXCLUSION!"TRUE"} +#endif + #endif /* HALCONF_H */ /** @} */ -- cgit v1.2.3