diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-05-29 08:18:50 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-05-29 08:18:50 +0000 |
commit | 0a80e007b010a9b1546c6e19d0cf768d52f6650b (patch) | |
tree | f517fdba6c26b027ce1b7158d3ae7318fe809673 /testhal | |
parent | 685dc4e5f4803e914bdebf95ca8465724d4bc2c7 (diff) | |
download | ChibiOS-0a80e007b010a9b1546c6e19d0cf768d52f6650b.tar.gz ChibiOS-0a80e007b010a9b1546c6e19d0cf768d52f6650b.tar.bz2 ChibiOS-0a80e007b010a9b1546c6e19d0cf768d52f6650b.zip |
Implemented support for HSI16 divider on STM32L0xx.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10223 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/STM32/STM32L0xx/ADC/mcuconf.h | 1 | ||||
-rw-r--r-- | testhal/STM32/STM32L0xx/EXT/mcuconf.h | 1 | ||||
-rw-r--r-- | testhal/STM32/STM32L0xx/SPI/mcuconf.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/testhal/STM32/STM32L0xx/ADC/mcuconf.h b/testhal/STM32/STM32L0xx/ADC/mcuconf.h index dbce0c6c9..d051c130a 100644 --- a/testhal/STM32/STM32L0xx/ADC/mcuconf.h +++ b/testhal/STM32/STM32L0xx/ADC/mcuconf.h @@ -41,6 +41,7 @@ #define STM32_PVD_ENABLE FALSE
#define STM32_PLS STM32_PLS_LEV0
#define STM32_HSI16_ENABLED TRUE
+#define STM32_HSI16_DIVIDER_ENABLED FALSE
#define STM32_LSI_ENABLED FALSE
#define STM32_HSE_ENABLED FALSE
#define STM32_LSE_ENABLED TRUE
diff --git a/testhal/STM32/STM32L0xx/EXT/mcuconf.h b/testhal/STM32/STM32L0xx/EXT/mcuconf.h index 5fd1710a1..2c9bd2422 100644 --- a/testhal/STM32/STM32L0xx/EXT/mcuconf.h +++ b/testhal/STM32/STM32L0xx/EXT/mcuconf.h @@ -41,6 +41,7 @@ #define STM32_PVD_ENABLE FALSE
#define STM32_PLS STM32_PLS_LEV0
#define STM32_HSI16_ENABLED TRUE
+#define STM32_HSI16_DIVIDER_ENABLED FALSE
#define STM32_LSI_ENABLED FALSE
#define STM32_HSE_ENABLED FALSE
#define STM32_LSE_ENABLED TRUE
diff --git a/testhal/STM32/STM32L0xx/SPI/mcuconf.h b/testhal/STM32/STM32L0xx/SPI/mcuconf.h index c4c0ba11b..d902d5021 100644 --- a/testhal/STM32/STM32L0xx/SPI/mcuconf.h +++ b/testhal/STM32/STM32L0xx/SPI/mcuconf.h @@ -41,6 +41,7 @@ #define STM32_PVD_ENABLE FALSE
#define STM32_PLS STM32_PLS_LEV0
#define STM32_HSI16_ENABLED TRUE
+#define STM32_HSI16_DIVIDER_ENABLED FALSE
#define STM32_LSI_ENABLED FALSE
#define STM32_HSE_ENABLED FALSE
#define STM32_LSE_ENABLED TRUE
|