diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-11-27 11:29:25 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-11-27 11:29:25 +0000 |
commit | f13dabb9985c5604c4150f4c8476ba74607f293d (patch) | |
tree | e6f512d7158f9681c30a414c6db24f0817a4d595 /demos/STM8S-STM8S208-RC/mcuconf.h | |
parent | aba1a9d6c36b13a1a41c608573381c2bc1cd9f8f (diff) | |
download | ChibiOS-f13dabb9985c5604c4150f4c8476ba74607f293d.tar.gz ChibiOS-f13dabb9985c5604c4150f4c8476ba74607f293d.tar.bz2 ChibiOS-f13dabb9985c5604c4150f4c8476ba74607f293d.zip |
Fixes to the STM8S RIDE7 project.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2433 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM8S-STM8S208-RC/mcuconf.h')
-rw-r--r-- | demos/STM8S-STM8S208-RC/mcuconf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/demos/STM8S-STM8S208-RC/mcuconf.h b/demos/STM8S-STM8S208-RC/mcuconf.h index bb38a3760..198106dec 100644 --- a/demos/STM8S-STM8S208-RC/mcuconf.h +++ b/demos/STM8S-STM8S208-RC/mcuconf.h @@ -29,9 +29,9 @@ * HAL general settings.
*/
#define STM8S_NO_CLOCK_INIT FALSE
-#define STM8S_HSI_ENABLED FALSE
+#define STM8S_HSI_ENABLED TRUE
#define STM8S_LSI_ENABLED TRUE
-#define STM8S_HSE_ENABLED TRUE
+#define STM8S_HSE_ENABLED FALSE
#define STM8S_SYSCLK_SOURCE CLK_SYSSEL_HSI
#define STM8S_HSI_DIVIDER CLK_HSI_DIV1
#define STM8S_CPU_DIVIDER CLK_CPU_DIV1
@@ -40,9 +40,9 @@ /*
* SERIAL driver system settings.
*/
-#define USE_STM8S_UART1 TRUE
-#define USE_STM8S_UART2 FALSE
-#define USE_STM8S_UART3 FALSE
+#define STM8S_SERIAL_USE_UART1 TRUE
+#define STM8S_SERIAL_USE_UART2 FALSE
+#define STM8S_SERIAL_USE_UART3 FALSE
/*
* SPI driver system settings.
|