aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F0xx/onewire/mcuconf.h
diff options
context:
space:
mode:
authorUladzimir Pylinski <barthess@yandex.ru>2016-11-10 20:38:24 +0300
committerGitHub <noreply@github.com>2016-11-10 20:38:24 +0300
commita9bd529ab54f0e74f73cf08cbb96752274e28d2c (patch)
tree4059c8d865832e8ce5a10bc391c3a8e1204fae9e /testhal/STM32/STM32F0xx/onewire/mcuconf.h
parent8f00b3af4d9ce8d711f07551d77d0d923c615b19 (diff)
parentff515eec71d277d8beac2a0a608990508ce83ff1 (diff)
downloadChibiOS-Contrib-a9bd529ab54f0e74f73cf08cbb96752274e28d2c.tar.gz
ChibiOS-Contrib-a9bd529ab54f0e74f73cf08cbb96752274e28d2c.tar.bz2
ChibiOS-Contrib-a9bd529ab54f0e74f73cf08cbb96752274e28d2c.zip
Merge pull request #99 from pl4nkton/stm32_fixes
Stm32 fixes
Diffstat (limited to 'testhal/STM32/STM32F0xx/onewire/mcuconf.h')
-rw-r--r--testhal/STM32/STM32F0xx/onewire/mcuconf.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/testhal/STM32/STM32F0xx/onewire/mcuconf.h b/testhal/STM32/STM32F0xx/onewire/mcuconf.h
index 89b0fd1..7773406 100644
--- a/testhal/STM32/STM32F0xx/onewire/mcuconf.h
+++ b/testhal/STM32/STM32F0xx/onewire/mcuconf.h
@@ -1,5 +1,5 @@
/*
- ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
+ ChibiOS - Copyright (C) 2006..2016 Giovanni Di Sirio
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -14,6 +14,9 @@
limitations under the License.
*/
+#ifndef MCUCONF_H
+#define MCUCONF_H
+
/*
* STM32F0xx drivers configuration.
* The following settings override the default settings present in
@@ -156,6 +159,13 @@
#define STM32_UART_DMA_ERROR_HOOK(uartp) osalSysHalt("DMA failure")
/*
+ * WDG driver system settings.
+ */
+#define STM32_WDG_USE_IWDG FALSE
+
+/*
* header for community drivers.
*/
#include "mcuconf_community.h"
+
+#endif /* MCUCONF_H */