diff options
author | barthess <barthess@yandex.ru> | 2016-01-13 10:21:50 +0300 |
---|---|---|
committer | barthess <barthess@yandex.ru> | 2016-01-13 10:21:50 +0300 |
commit | 2c7dc44fad1de5ff9ce449aeaf2ff94784d7807f (patch) | |
tree | 443f2873a87c89aad18673688687561ff8262bad /testhal/STM32/STM32F4xx | |
parent | c413607da16f25fc164119500245cabb7d993be8 (diff) | |
download | ChibiOS-Contrib-2c7dc44fad1de5ff9ce449aeaf2ff94784d7807f.tar.gz ChibiOS-Contrib-2c7dc44fad1de5ff9ce449aeaf2ff94784d7807f.tar.bz2 ChibiOS-Contrib-2c7dc44fad1de5ff9ce449aeaf2ff94784d7807f.zip |
Added WDG switch to halconf.h files
Diffstat (limited to 'testhal/STM32/STM32F4xx')
-rw-r--r-- | testhal/STM32/STM32F4xx/EICU/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F4xx/FSMC_NAND/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F4xx/FSMC_SDRAM/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F4xx/FSMC_SRAM/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F4xx/onewire/halconf.h | 7 |
5 files changed, 35 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F4xx/EICU/halconf.h b/testhal/STM32/STM32F4xx/EICU/halconf.h index c65fbb4..cb573a0 100644 --- a/testhal/STM32/STM32F4xx/EICU/halconf.h +++ b/testhal/STM32/STM32F4xx/EICU/halconf.h @@ -163,6 +163,13 @@ #define HAL_USE_USB FALSE
#endif
+/**
+ * @brief Enables the WDG subsystem.
+ */
+#if !defined(HAL_USE_WDG) || defined(__DOXYGEN__)
+#define HAL_USE_WDG FALSE
+#endif
+
/*===========================================================================*/
/* ADC driver related settings. */
/*===========================================================================*/
diff --git a/testhal/STM32/STM32F4xx/FSMC_NAND/halconf.h b/testhal/STM32/STM32F4xx/FSMC_NAND/halconf.h index b4882dc..726e673 100644 --- a/testhal/STM32/STM32F4xx/FSMC_NAND/halconf.h +++ b/testhal/STM32/STM32F4xx/FSMC_NAND/halconf.h @@ -163,6 +163,13 @@ #define HAL_USE_USB FALSE #endif +/** + * @brief Enables the WDG subsystem. + */ +#if !defined(HAL_USE_WDG) || defined(__DOXYGEN__) +#define HAL_USE_WDG FALSE +#endif + /*===========================================================================*/ /* ADC driver related settings. */ /*===========================================================================*/ diff --git a/testhal/STM32/STM32F4xx/FSMC_SDRAM/halconf.h b/testhal/STM32/STM32F4xx/FSMC_SDRAM/halconf.h index b284367..bc2b9e0 100644 --- a/testhal/STM32/STM32F4xx/FSMC_SDRAM/halconf.h +++ b/testhal/STM32/STM32F4xx/FSMC_SDRAM/halconf.h @@ -156,6 +156,13 @@ #define HAL_USE_USB FALSE #endif +/** + * @brief Enables the WDG subsystem. + */ +#if !defined(HAL_USE_WDG) || defined(__DOXYGEN__) +#define HAL_USE_WDG FALSE +#endif + /*===========================================================================*/ /* ADC driver related settings. */ /*===========================================================================*/ diff --git a/testhal/STM32/STM32F4xx/FSMC_SRAM/halconf.h b/testhal/STM32/STM32F4xx/FSMC_SRAM/halconf.h index b4882dc..726e673 100644 --- a/testhal/STM32/STM32F4xx/FSMC_SRAM/halconf.h +++ b/testhal/STM32/STM32F4xx/FSMC_SRAM/halconf.h @@ -163,6 +163,13 @@ #define HAL_USE_USB FALSE #endif +/** + * @brief Enables the WDG subsystem. + */ +#if !defined(HAL_USE_WDG) || defined(__DOXYGEN__) +#define HAL_USE_WDG FALSE +#endif + /*===========================================================================*/ /* ADC driver related settings. */ /*===========================================================================*/ diff --git a/testhal/STM32/STM32F4xx/onewire/halconf.h b/testhal/STM32/STM32F4xx/onewire/halconf.h index 0ecf5be..e6ce929 100644 --- a/testhal/STM32/STM32F4xx/onewire/halconf.h +++ b/testhal/STM32/STM32F4xx/onewire/halconf.h @@ -163,6 +163,13 @@ #define HAL_USE_USB FALSE
#endif
+/**
+ * @brief Enables the WDG subsystem.
+ */
+#if !defined(HAL_USE_WDG) || defined(__DOXYGEN__)
+#define HAL_USE_WDG FALSE
+#endif
+
/*===========================================================================*/
/* ADC driver related settings. */
/*===========================================================================*/
|