aboutsummaryrefslogtreecommitdiffstats
path: root/boards/base/STM32F429i-Discovery/example_chibios_3.x/halconf.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@seriouslyembedded.com>2015-08-29 16:35:34 +0200
committerJoel Bodenmann <joel@seriouslyembedded.com>2015-08-29 16:35:34 +0200
commit4c6e2433a5d7e72e037322d2e521da4d846f1aef (patch)
tree18d27674dad7db0be18f93c6097ed49aaba1c9e2 /boards/base/STM32F429i-Discovery/example_chibios_3.x/halconf.h
parent3f7ded913d87dc9cbbbd99ccc5ec9c11fd775aa5 (diff)
downloaduGFX-4c6e2433a5d7e72e037322d2e521da4d846f1aef.tar.gz
uGFX-4c6e2433a5d7e72e037322d2e521da4d846f1aef.tar.bz2
uGFX-4c6e2433a5d7e72e037322d2e521da4d846f1aef.zip
Updating ChibiOS 3.x build system support
Diffstat (limited to 'boards/base/STM32F429i-Discovery/example_chibios_3.x/halconf.h')
-rw-r--r--boards/base/STM32F429i-Discovery/example_chibios_3.x/halconf.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/boards/base/STM32F429i-Discovery/example_chibios_3.x/halconf.h b/boards/base/STM32F429i-Discovery/example_chibios_3.x/halconf.h
index 90ceebc0..6f80a255 100644
--- a/boards/base/STM32F429i-Discovery/example_chibios_3.x/halconf.h
+++ b/boards/base/STM32F429i-Discovery/example_chibios_3.x/halconf.h
@@ -1,5 +1,5 @@
/*
- ChibiOS - Copyright (C) 2006-2014 Giovanni Di Sirio
+ ChibiOS - Copyright (C) 2006..2015 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.
@@ -52,6 +52,13 @@
#endif
/**
+ * @brief Enables the DAC subsystem.
+ */
+#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
+#define HAL_USE_DAC FALSE
+#endif
+
+/**
* @brief Enables the EXT subsystem.
*/
#if !defined(HAL_USE_EXT) || defined(__DOXYGEN__)
@@ -125,14 +132,14 @@
* @brief Enables the SERIAL subsystem.
*/
#if !defined(HAL_USE_SERIAL) || defined(__DOXYGEN__)
-#define HAL_USE_SERIAL FALSE
+#define HAL_USE_SERIAL TRUE
#endif
/**
* @brief Enables the SERIAL over USB subsystem.
*/
#if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__)
-#define HAL_USE_SERIAL_USB TRUE
+#define HAL_USE_SERIAL_USB FALSE
#endif
/**