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/STM32F0xx/crc | |
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/STM32F0xx/crc')
-rw-r--r-- | testhal/STM32/STM32F0xx/crc/halconf.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F0xx/crc/halconf.h b/testhal/STM32/STM32F0xx/crc/halconf.h index 17118b0..6e2d3c7 100644 --- a/testhal/STM32/STM32F0xx/crc/halconf.h +++ b/testhal/STM32/STM32F0xx/crc/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. */
/*===========================================================================*/
|