From f562ee4948dd1e2b9175dfa3f2a2c071023c6167 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 29 Sep 2018 16:14:19 +0000 Subject: Mass update of configuration files. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12306 110e8d01-0319-4d1e-a829-52ad28d1bb01 --- testex/STM32/STM32F3xx/I2C-LSM303DLHC/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F3xx/I2C-LSM303DLHC/halconf.h | 7 +++++++ testex/STM32/STM32F3xx/SPI-L3GD20/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F3xx/SPI-L3GD20/halconf.h | 7 +++++++ testex/STM32/STM32F3xx/SPI-N25Q128/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F3xx/SPI-N25Q128/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-BMP085/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-BMP085/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-HTS221/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-HTS221/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-LIS3MLD/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-LIS3MLD/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-LPS22HB/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-LPS22HB/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-LPS25H/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-LPS25H/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-LSM303AGR/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-LSM303AGR/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-LSM303DLHC/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-LSM303DLHC/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-LSM6DS0/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-LSM6DS0/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/I2C-LSM6DSL/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/I2C-LSM6DSL/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/SPI-L3GD20/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/SPI-L3GD20/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/SPI-LIS302DL/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/SPI-LIS302DL/halconf.h | 7 +++++++ testex/STM32/STM32F4xx/SPI-LIS3DSH/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32F4xx/SPI-LIS3DSH/halconf.h | 7 +++++++ testex/STM32/STM32L4xx/QSPI-N25Q128/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h | 7 +++++++ testex/STM32/STM32L4xx/SPI-L3GD20/chconf.h | 20 +++++++++++++++++++- testex/STM32/STM32L4xx/SPI-L3GD20/halconf.h | 7 +++++++ 34 files changed, 442 insertions(+), 17 deletions(-) (limited to 'testex') diff --git a/testex/STM32/STM32F3xx/I2C-LSM303DLHC/chconf.h b/testex/STM32/STM32F3xx/I2C-LSM303DLHC/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F3xx/I2C-LSM303DLHC/chconf.h +++ b/testex/STM32/STM32F3xx/I2C-LSM303DLHC/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F3xx/I2C-LSM303DLHC/halconf.h b/testex/STM32/STM32F3xx/I2C-LSM303DLHC/halconf.h index 79dea9ef3..0fe9ac8c5 100644 --- a/testex/STM32/STM32F3xx/I2C-LSM303DLHC/halconf.h +++ b/testex/STM32/STM32F3xx/I2C-LSM303DLHC/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F3xx/SPI-L3GD20/chconf.h b/testex/STM32/STM32F3xx/SPI-L3GD20/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F3xx/SPI-L3GD20/chconf.h +++ b/testex/STM32/STM32F3xx/SPI-L3GD20/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F3xx/SPI-L3GD20/halconf.h b/testex/STM32/STM32F3xx/SPI-L3GD20/halconf.h index ec576721a..4cd7610c7 100644 --- a/testex/STM32/STM32F3xx/SPI-L3GD20/halconf.h +++ b/testex/STM32/STM32F3xx/SPI-L3GD20/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F3xx/SPI-N25Q128/chconf.h b/testex/STM32/STM32F3xx/SPI-N25Q128/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F3xx/SPI-N25Q128/chconf.h +++ b/testex/STM32/STM32F3xx/SPI-N25Q128/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F3xx/SPI-N25Q128/halconf.h b/testex/STM32/STM32F3xx/SPI-N25Q128/halconf.h index 6fa1a6b17..f34b75893 100644 --- a/testex/STM32/STM32F3xx/SPI-N25Q128/halconf.h +++ b/testex/STM32/STM32F3xx/SPI-N25Q128/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-BMP085/chconf.h b/testex/STM32/STM32F4xx/I2C-BMP085/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-BMP085/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-BMP085/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-BMP085/halconf.h b/testex/STM32/STM32F4xx/I2C-BMP085/halconf.h index 8a5790966..128b31a8e 100644 --- a/testex/STM32/STM32F4xx/I2C-BMP085/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-BMP085/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB TRUE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-HTS221/chconf.h b/testex/STM32/STM32F4xx/I2C-HTS221/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-HTS221/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-HTS221/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-HTS221/halconf.h b/testex/STM32/STM32F4xx/I2C-HTS221/halconf.h index 79dea9ef3..0fe9ac8c5 100644 --- a/testex/STM32/STM32F4xx/I2C-HTS221/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-HTS221/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-LIS3MLD/chconf.h b/testex/STM32/STM32F4xx/I2C-LIS3MLD/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-LIS3MLD/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-LIS3MLD/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-LIS3MLD/halconf.h b/testex/STM32/STM32F4xx/I2C-LIS3MLD/halconf.h index 79dea9ef3..0fe9ac8c5 100644 --- a/testex/STM32/STM32F4xx/I2C-LIS3MLD/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-LIS3MLD/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-LPS22HB/chconf.h b/testex/STM32/STM32F4xx/I2C-LPS22HB/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-LPS22HB/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-LPS22HB/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-LPS22HB/halconf.h b/testex/STM32/STM32F4xx/I2C-LPS22HB/halconf.h index 79dea9ef3..0fe9ac8c5 100644 --- a/testex/STM32/STM32F4xx/I2C-LPS22HB/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-LPS22HB/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-LPS25H/chconf.h b/testex/STM32/STM32F4xx/I2C-LPS25H/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-LPS25H/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-LPS25H/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-LPS25H/halconf.h b/testex/STM32/STM32F4xx/I2C-LPS25H/halconf.h index 79dea9ef3..0fe9ac8c5 100644 --- a/testex/STM32/STM32F4xx/I2C-LPS25H/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-LPS25H/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-LSM303AGR/chconf.h b/testex/STM32/STM32F4xx/I2C-LSM303AGR/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM303AGR/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-LSM303AGR/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-LSM303AGR/halconf.h b/testex/STM32/STM32F4xx/I2C-LSM303AGR/halconf.h index 79dea9ef3..0fe9ac8c5 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM303AGR/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-LSM303AGR/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-LSM303DLHC/chconf.h b/testex/STM32/STM32F4xx/I2C-LSM303DLHC/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM303DLHC/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-LSM303DLHC/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-LSM303DLHC/halconf.h b/testex/STM32/STM32F4xx/I2C-LSM303DLHC/halconf.h index 344edea39..bc968964f 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM303DLHC/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-LSM303DLHC/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB TRUE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-LSM6DS0/chconf.h b/testex/STM32/STM32F4xx/I2C-LSM6DS0/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM6DS0/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-LSM6DS0/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-LSM6DS0/halconf.h b/testex/STM32/STM32F4xx/I2C-LSM6DS0/halconf.h index 79dea9ef3..0fe9ac8c5 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM6DS0/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-LSM6DS0/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/I2C-LSM6DSL/chconf.h b/testex/STM32/STM32F4xx/I2C-LSM6DSL/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM6DSL/chconf.h +++ b/testex/STM32/STM32F4xx/I2C-LSM6DSL/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/I2C-LSM6DSL/halconf.h b/testex/STM32/STM32F4xx/I2C-LSM6DSL/halconf.h index 79dea9ef3..0fe9ac8c5 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM6DSL/halconf.h +++ b/testex/STM32/STM32F4xx/I2C-LSM6DSL/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/SPI-L3GD20/chconf.h b/testex/STM32/STM32F4xx/SPI-L3GD20/chconf.h index 0266190f1..a7343edc2 100644 --- a/testex/STM32/STM32F4xx/SPI-L3GD20/chconf.h +++ b/testex/STM32/STM32F4xx/SPI-L3GD20/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/SPI-L3GD20/halconf.h b/testex/STM32/STM32F4xx/SPI-L3GD20/halconf.h index f581bcd3c..e379bb04a 100644 --- a/testex/STM32/STM32F4xx/SPI-L3GD20/halconf.h +++ b/testex/STM32/STM32F4xx/SPI-L3GD20/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB TRUE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/SPI-LIS302DL/chconf.h b/testex/STM32/STM32F4xx/SPI-LIS302DL/chconf.h index 8227506c6..e6fc90137 100644 --- a/testex/STM32/STM32F4xx/SPI-LIS302DL/chconf.h +++ b/testex/STM32/STM32F4xx/SPI-LIS302DL/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/SPI-LIS302DL/halconf.h b/testex/STM32/STM32F4xx/SPI-LIS302DL/halconf.h index fbe238725..daf851311 100644 --- a/testex/STM32/STM32F4xx/SPI-LIS302DL/halconf.h +++ b/testex/STM32/STM32F4xx/SPI-LIS302DL/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB TRUE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32F4xx/SPI-LIS3DSH/chconf.h b/testex/STM32/STM32F4xx/SPI-LIS3DSH/chconf.h index 8227506c6..e6fc90137 100644 --- a/testex/STM32/STM32F4xx/SPI-LIS3DSH/chconf.h +++ b/testex/STM32/STM32F4xx/SPI-LIS3DSH/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32F4xx/SPI-LIS3DSH/halconf.h b/testex/STM32/STM32F4xx/SPI-LIS3DSH/halconf.h index fbe238725..daf851311 100644 --- a/testex/STM32/STM32F4xx/SPI-LIS3DSH/halconf.h +++ b/testex/STM32/STM32F4xx/SPI-LIS3DSH/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB TRUE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32L4xx/QSPI-N25Q128/chconf.h b/testex/STM32/STM32L4xx/QSPI-N25Q128/chconf.h index 0541c7874..33701dbc2 100644 --- a/testex/STM32/STM32L4xx/QSPI-N25Q128/chconf.h +++ b/testex/STM32/STM32L4xx/QSPI-N25Q128/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h b/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h index e32ed08da..b597e1cae 100644 --- a/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h +++ b/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ diff --git a/testex/STM32/STM32L4xx/SPI-L3GD20/chconf.h b/testex/STM32/STM32L4xx/SPI-L3GD20/chconf.h index 0541c7874..33701dbc2 100644 --- a/testex/STM32/STM32L4xx/SPI-L3GD20/chconf.h +++ b/testex/STM32/STM32L4xx/SPI-L3GD20/chconf.h @@ -360,7 +360,7 @@ #endif /** - * @brief Objects FIFOs APIs. + * @brief Objects FIFOs APIs. * @details If enabled then the objects FIFOs APIs are included * in the kernel. * @@ -370,6 +370,17 @@ #define CH_CFG_USE_OBJ_FIFOS TRUE #endif +/** + * @brief Pipes APIs. + * @details If enabled then the pipes APIs are included + * in the kernel. + * + * @note The default is @p TRUE. + */ +#if !defined(CH_CFG_USE_PIPES) +#define CH_CFG_USE_PIPES TRUE +#endif + /** * @brief Dynamic Threads APIs. * @details If enabled then the dynamic threads creation APIs are included @@ -447,6 +458,13 @@ #define CH_CFG_FACTORY_OBJ_FIFOS TRUE #endif +/** + * @brief Enables factory for Pipes. + */ +#if !defined(CH_CFG_FACTORY_PIPES) || defined(__DOXYGEN__) +#define CH_CFG_FACTORY_PIPES TRUE +#endif + /** @} */ /*===========================================================================*/ diff --git a/testex/STM32/STM32L4xx/SPI-L3GD20/halconf.h b/testex/STM32/STM32L4xx/SPI-L3GD20/halconf.h index ec576721a..4cd7610c7 100644 --- a/testex/STM32/STM32L4xx/SPI-L3GD20/halconf.h +++ b/testex/STM32/STM32L4xx/SPI-L3GD20/halconf.h @@ -159,6 +159,13 @@ #define HAL_USE_SERIAL_USB FALSE #endif +/** + * @brief Enables the SIO subsystem. + */ +#if !defined(HAL_USE_SIO) || defined(__DOXYGEN__) +#define HAL_USE_SIO FALSE +#endif + /** * @brief Enables the SPI subsystem. */ -- cgit v1.2.3