diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-12-03 15:32:42 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-12-03 15:32:42 +0000 |
commit | f02349c2b1f4e17500aa37b9846b1a51a34c4f3c (patch) | |
tree | f7ad000d64bc71003d6a9f76c43b6390602d7312 /testhal/STM32/STM32F7xx | |
parent | 8f7c76fbfb89ef83b2918dd38b14710df8e28a50 (diff) | |
download | ChibiOS-f02349c2b1f4e17500aa37b9846b1a51a34c4f3c.tar.gz ChibiOS-f02349c2b1f4e17500aa37b9846b1a51a34c4f3c.tar.bz2 ChibiOS-f02349c2b1f4e17500aa37b9846b1a51a34c4f3c.zip |
Updated all halconf.h files for WDG.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8560 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F7xx')
-rw-r--r-- | testhal/STM32/STM32F7xx/GPT-ADC/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F7xx/IRQ_STORM/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F7xx/PWM-ICU/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F7xx/SPI/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F7xx/USB_CDC/halconf.h | 7 |
5 files changed, 35 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F7xx/GPT-ADC/halconf.h b/testhal/STM32/STM32F7xx/GPT-ADC/halconf.h index d98c7ce70..764998264 100644 --- a/testhal/STM32/STM32F7xx/GPT-ADC/halconf.h +++ b/testhal/STM32/STM32F7xx/GPT-ADC/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/STM32F7xx/IRQ_STORM/halconf.h b/testhal/STM32/STM32F7xx/IRQ_STORM/halconf.h index 908ee5f1b..0ce49402e 100644 --- a/testhal/STM32/STM32F7xx/IRQ_STORM/halconf.h +++ b/testhal/STM32/STM32F7xx/IRQ_STORM/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/STM32F7xx/PWM-ICU/halconf.h b/testhal/STM32/STM32F7xx/PWM-ICU/halconf.h index 22b1f3c7c..b3fb0b105 100644 --- a/testhal/STM32/STM32F7xx/PWM-ICU/halconf.h +++ b/testhal/STM32/STM32F7xx/PWM-ICU/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/STM32F7xx/SPI/halconf.h b/testhal/STM32/STM32F7xx/SPI/halconf.h index d3fc02edf..1e2c10b96 100644 --- a/testhal/STM32/STM32F7xx/SPI/halconf.h +++ b/testhal/STM32/STM32F7xx/SPI/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/STM32F7xx/USB_CDC/halconf.h b/testhal/STM32/STM32F7xx/USB_CDC/halconf.h index 8a43bd572..a6298283f 100644 --- a/testhal/STM32/STM32F7xx/USB_CDC/halconf.h +++ b/testhal/STM32/STM32F7xx/USB_CDC/halconf.h @@ -170,6 +170,13 @@ #define HAL_USE_USB TRUE
#endif
+/**
+ * @brief Enables the WDG subsystem.
+ */
+#if !defined(HAL_USE_WDG) || defined(__DOXYGEN__)
+#define HAL_USE_WDG FALSE
+#endif
+
/*===========================================================================*/
/* ADC driver related settings. */
/*===========================================================================*/
|