diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-09-01 15:19:23 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-09-01 15:19:23 +0000 |
commit | f0dd706419939527c5d040fc103b9582a0b9a31f (patch) | |
tree | fc0c5390fc0b44d3d86f6d3d19a222a734843a37 /testhal/STM32/multi/PAL/cfg-stm32f051_discovery | |
parent | a7b0115ab133cb4585ef054e2c80a579fc9fff75 (diff) | |
download | ChibiOS-f0dd706419939527c5d040fc103b9582a0b9a31f.tar.gz ChibiOS-f0dd706419939527c5d040fc103b9582a0b9a31f.tar.bz2 ChibiOS-f0dd706419939527c5d040fc103b9582a0b9a31f.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10521 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/multi/PAL/cfg-stm32f051_discovery')
3 files changed, 5 insertions, 5 deletions
diff --git a/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/chconf.h b/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/chconf.h index 00eb395ec..c2d6f0496 100644 --- a/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/chconf.h +++ b/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/chconf.h @@ -140,7 +140,7 @@ *
* @note The default is @p TRUE.
*/
-#define CH_CFG_USE_TM TRUE
+#define CH_CFG_USE_TM FALSE
/**
* @brief Threads registry APIs.
diff --git a/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/halconf.h b/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/halconf.h index 63c29ccef..63edfac75 100644 --- a/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/halconf.h +++ b/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/halconf.h @@ -146,7 +146,7 @@ * @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
/**
diff --git a/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/portab.h b/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/portab.h index 0fbe3f9d1..39dd2e553 100644 --- a/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/portab.h +++ b/testhal/STM32/multi/PAL/cfg-stm32f051_discovery/portab.h @@ -29,8 +29,8 @@ /* Module constants. */
/*===========================================================================*/
-#define PORTAB_LINE_LED1 LINE_LED4_BLUE
-#define PORTAB_LINE_LED2 LINE_LED3_RED
+#define PORTAB_LINE_LED1 LINE_LED3
+#define PORTAB_LINE_LED2 LINE_LED4
#define PORTAB_LEN_OFF PAL_LOW
#define PORTAB_LEN_ON PAL_HIGH
|