diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-08-05 12:40:57 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-08-05 12:40:57 +0000 |
commit | b736858c5bbed206d2f40dcdf8052646b096db86 (patch) | |
tree | 48583241d1933a60645ca5aaaf6e775d5db43058 /boards/ST_STM32L_DISCOVERY/board.h | |
parent | 0775f8a0dfbaef3516555e02fbca2c0d8379c06e (diff) | |
download | ChibiOS-b736858c5bbed206d2f40dcdf8052646b096db86.tar.gz ChibiOS-b736858c5bbed206d2f40dcdf8052646b096db86.tar.bz2 ChibiOS-b736858c5bbed206d2f40dcdf8052646b096db86.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4534 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'boards/ST_STM32L_DISCOVERY/board.h')
-rw-r--r-- | boards/ST_STM32L_DISCOVERY/board.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/boards/ST_STM32L_DISCOVERY/board.h b/boards/ST_STM32L_DISCOVERY/board.h index 6a648deb1..7ff3022dd 100644 --- a/boards/ST_STM32L_DISCOVERY/board.h +++ b/boards/ST_STM32L_DISCOVERY/board.h @@ -34,16 +34,17 @@ /*
* Board oscillators-related settings.
- * NOTE: LSE not fitted.
+ * NOTE: HSE not fitted.
*/
#if !defined(STM32_LSECLK)
-#define STM32_LSECLK 0
+#define STM32_LSECLK 32768
#endif
#if !defined(STM32_HSECLK)
-#define STM32_HSECLK 8000000
+#define STM32_HSECLK 0
#endif
+#define STM32_HSE_BYPASS
/*
* MCU type as defined in the ST header file stm32l1xx.h.
|