aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32/RT-STM32L053-DISCOVERY/halconf.h
diff options
context:
space:
mode:
authorRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2017-07-08 07:48:51 +0000
committerRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2017-07-08 07:48:51 +0000
commit2e5a3b195d4c363dd756b93b3f9eff8964b07775 (patch)
tree87fdef426c4c3b21dd0ac6aaf15670908b751960 /demos/STM32/RT-STM32L053-DISCOVERY/halconf.h
parent2fc72ef5f81f3fa4eb0cb908a7138b43b1478ff4 (diff)
downloadChibiOS-2e5a3b195d4c363dd756b93b3f9eff8964b07775.tar.gz
ChibiOS-2e5a3b195d4c363dd756b93b3f9eff8964b07775.tar.bz2
ChibiOS-2e5a3b195d4c363dd756b93b3f9eff8964b07775.zip
Fixed Bug #857
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10305 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/RT-STM32L053-DISCOVERY/halconf.h')
-rw-r--r--demos/STM32/RT-STM32L053-DISCOVERY/halconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/STM32/RT-STM32L053-DISCOVERY/halconf.h b/demos/STM32/RT-STM32L053-DISCOVERY/halconf.h
index 63c29ccef..82602b403 100644
--- a/demos/STM32/RT-STM32L053-DISCOVERY/halconf.h
+++ b/demos/STM32/RT-STM32L053-DISCOVERY/halconf.h
@@ -139,14 +139,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
/**
@@ -167,7 +167,7 @@
* @brief Enables the USB subsystem.
*/
#if !defined(HAL_USE_USB) || defined(__DOXYGEN__)
-#define HAL_USE_USB TRUE
+#define HAL_USE_USB FALSE
#endif
/**