diff options
author | barthess <barthess@yandex.ru> | 2015-06-28 22:22:01 +0300 |
---|---|---|
committer | barthess <barthess@yandex.ru> | 2015-06-28 22:22:01 +0300 |
commit | 4e98ee4b123bddd22448fef47e02009428bb5f41 (patch) | |
tree | 7b39f421131cd62e006efae8824e598690fe1e36 /testhal/STM32/STM32F1xx | |
parent | b7ca6b32d079fb689ab2ac588f8b93d6d8e660b2 (diff) | |
download | ChibiOS-Contrib-4e98ee4b123bddd22448fef47e02009428bb5f41.tar.gz ChibiOS-Contrib-4e98ee4b123bddd22448fef47e02009428bb5f41.tar.bz2 ChibiOS-Contrib-4e98ee4b123bddd22448fef47e02009428bb5f41.zip |
Added -Wundef key into Makefiles
Diffstat (limited to 'testhal/STM32/STM32F1xx')
-rw-r--r-- | testhal/STM32/STM32F1xx/onewire/Makefile | 4 | ||||
-rw-r--r-- | testhal/STM32/STM32F1xx/onewire/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32F1xx/onewire/halconf_community.h | 7 |
3 files changed, 16 insertions, 2 deletions
diff --git a/testhal/STM32/STM32F1xx/onewire/Makefile b/testhal/STM32/STM32F1xx/onewire/Makefile index 8875fd8..4e33419 100644 --- a/testhal/STM32/STM32F1xx/onewire/Makefile +++ b/testhal/STM32/STM32F1xx/onewire/Makefile @@ -175,10 +175,10 @@ AOPT = TOPT = -mthumb -DTHUMB
# Define C warning options here
-CWARN = -Wall -Wextra -Wstrict-prototypes
+CWARN = -Wall -Wextra -Wstrict-prototypes -Wundef
# Define C++ warning options here
-CPPWARN = -Wall -Wextra
+CPPWARN = -Wall -Wextra -Wundef
#
# Compiler settings
diff --git a/testhal/STM32/STM32F1xx/onewire/halconf.h b/testhal/STM32/STM32F1xx/onewire/halconf.h index 6d7df57..0ecf5be 100644 --- a/testhal/STM32/STM32F1xx/onewire/halconf.h +++ b/testhal/STM32/STM32F1xx/onewire/halconf.h @@ -45,6 +45,13 @@ #endif
/**
+ * @brief Enables the DAC subsystem.
+ */
+#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
+#define HAL_USE_DAC FALSE
+#endif
+
+/**
* @brief Enables the CAN subsystem.
*/
#if !defined(HAL_USE_CAN) || defined(__DOXYGEN__)
diff --git a/testhal/STM32/STM32F1xx/onewire/halconf_community.h b/testhal/STM32/STM32F1xx/onewire/halconf_community.h index 7f037ec..e90257b 100644 --- a/testhal/STM32/STM32F1xx/onewire/halconf_community.h +++ b/testhal/STM32/STM32F1xx/onewire/halconf_community.h @@ -38,6 +38,13 @@ #define HAL_USE_ONEWIRE TRUE
#endif
+/**
+ * @brief Enables the EICU subsystem.
+ */
+#if !defined(HAL_USE_EICU) || defined(__DOXYGEN__)
+#define HAL_USE_EICU FALSE
+#endif
+
/*===========================================================================*/
/* FSMCNAND driver related settings. */
/*===========================================================================*/
|