diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-01-02 11:12:46 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-01-02 11:12:46 +0000 |
commit | 8fa18b0b6b3f5640a2db179ec938f8962f65244c (patch) | |
tree | b53c296ca94611820b6bede653b0e67545538bfd /demos/ARMCM4-STM32F407-DISCOVERY-G++/halconf.h | |
parent | 0d3c7da33152ace5422f79fae6ce757d7328c32c (diff) | |
download | ChibiOS-8fa18b0b6b3f5640a2db179ec938f8962f65244c.tar.gz ChibiOS-8fa18b0b6b3f5640a2db179ec938f8962f65244c.tar.bz2 ChibiOS-8fa18b0b6b3f5640a2db179ec938f8962f65244c.zip |
Updated C++ wrapper and STM32F4-Discovery C++ demo.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5015 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARMCM4-STM32F407-DISCOVERY-G++/halconf.h')
-rw-r--r-- | demos/ARMCM4-STM32F407-DISCOVERY-G++/halconf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/ARMCM4-STM32F407-DISCOVERY-G++/halconf.h b/demos/ARMCM4-STM32F407-DISCOVERY-G++/halconf.h index 87c9adfd9..25538a2a8 100644 --- a/demos/ARMCM4-STM32F407-DISCOVERY-G++/halconf.h +++ b/demos/ARMCM4-STM32F407-DISCOVERY-G++/halconf.h @@ -108,7 +108,7 @@ * @brief Enables the PWM subsystem.
*/
#if !defined(HAL_USE_PWM) || defined(__DOXYGEN__)
-#define HAL_USE_PWM TRUE
+#define HAL_USE_PWM FALSE
#endif
/**
@@ -136,14 +136,14 @@ * @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
/**
* @brief Enables the SPI subsystem.
*/
#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__)
-#define HAL_USE_SPI TRUE
+#define HAL_USE_SPI FALSE
#endif
/**
@@ -157,7 +157,7 @@ * @brief Enables the USB subsystem.
*/
#if !defined(HAL_USE_USB) || defined(__DOXYGEN__)
-#define HAL_USE_USB TRUE
+#define HAL_USE_USB FALSE
#endif
/*===========================================================================*/
|