diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-10-22 12:32:43 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-10-22 12:32:43 +0000 |
commit | 51e94075b0fd08e41765ff379cdd011f181550da (patch) | |
tree | 67d09e17f8431d971cf3a9392a51779a32a0f6bc /os/hal/ports | |
parent | c499423d9c87fe2ef3c5b9a0cd11aeb871a9701e (diff) | |
download | ChibiOS-51e94075b0fd08e41765ff379cdd011f181550da.tar.gz ChibiOS-51e94075b0fd08e41765ff379cdd011f181550da.tar.bz2 ChibiOS-51e94075b0fd08e41765ff379cdd011f181550da.zip |
STM32F091RC Nucleo demo added.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8377 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports')
-rw-r--r-- | os/hal/ports/STM32/STM32F0xx/hal_lld.h | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F0xx/stm32_registry.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/os/hal/ports/STM32/STM32F0xx/hal_lld.h b/os/hal/ports/STM32/STM32F0xx/hal_lld.h index c6f93a541..cb2c4129f 100644 --- a/os/hal/ports/STM32/STM32F0xx/hal_lld.h +++ b/os/hal/ports/STM32/STM32F0xx/hal_lld.h @@ -96,8 +96,8 @@ #elif defined(STM32F070xB)
#define PLATFORM_NAME "STM32F070xB Entry Level Value Line devices"
-#elif defined(STM32F091x8)
-#define PLATFORM_NAME "STM32F091x8 Entry Level Medium Density devices"
+#elif defined(STM32F091xC)
+#define PLATFORM_NAME "STM32F091xC Entry Level Medium Density devices"
#elif defined(STM32F098xx)
#define PLATFORM_NAME "STM32F098xx Entry Level Medium Density devices"
diff --git a/os/hal/ports/STM32/STM32F0xx/stm32_registry.h b/os/hal/ports/STM32/STM32F0xx/stm32_registry.h index c1fba4bbb..2f9055f14 100644 --- a/os/hal/ports/STM32/STM32F0xx/stm32_registry.h +++ b/os/hal/ports/STM32/STM32F0xx/stm32_registry.h @@ -1625,9 +1625,9 @@ #define STM32_CRC_PROGRAMMABLE FALSE
/*===========================================================================*/
-/* STM32F091x8, STM32F098xx. */
+/* STM32F091xC, STM32F098xx. */
/*===========================================================================*/
-#elif defined(STM32F091x8) || defined(STM32F098xx)
+#elif defined(STM32F091xC) || defined(STM32F098xx)
/* ADC attributes.*/
#define STM32_HAS_ADC1 TRUE
|