aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-10-11 09:16:02 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-10-11 09:16:02 +0000
commitcd0ab49709bc57e93eb90c6bc4a45228c9d5c033 (patch)
tree2a39d75ea8831eb1c5a1d13c7ebf613a9bf7a5fd
parent67586c077faf4ecbf6a901a2f0ee9743544c002b (diff)
downloadChibiOS-cd0ab49709bc57e93eb90c6bc4a45228c9d5c033.tar.gz
ChibiOS-cd0ab49709bc57e93eb90c6bc4a45228c9d5c033.tar.bz2
ChibiOS-cd0ab49709bc57e93eb90c6bc4a45228c9d5c033.zip
Fixed bug #647.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8352 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/ports/STM32/STM32F0xx/stm32_registry.h3
-rw-r--r--readme.txt1
2 files changed, 4 insertions, 0 deletions
diff --git a/os/hal/ports/STM32/STM32F0xx/stm32_registry.h b/os/hal/ports/STM32/STM32F0xx/stm32_registry.h
index a9a59acbd..163f5cbed 100644
--- a/os/hal/ports/STM32/STM32F0xx/stm32_registry.h
+++ b/os/hal/ports/STM32/STM32F0xx/stm32_registry.h
@@ -1050,6 +1050,9 @@
/*===========================================================================*/
#elif defined(STM32F030x6) || defined(STM32F030x8) || defined(STM32F030xC)
+/* Common identifier of all STM32F030 devices.*/
+#define STM32F030
+
/* ADC attributes.*/
#define STM32_HAS_ADC1 TRUE
#define STM32_ADC_SUPPORTS_PRESCALER FALSE
diff --git a/readme.txt b/readme.txt
index 534453ed4..6ee4a77f3 100644
--- a/readme.txt
+++ b/readme.txt
@@ -116,6 +116,7 @@
- HAL: Introduced support for TIM21 and TIM22 in STM32 ST driver.
- HAL: Updated STM32F0xx headers to STM32CubeF0 version 1.3.0. Added support
for STM32F030xC, STM32F070x6, STM32F070xB devices.
+- HAL: Fixed error in STM32F030 EXT driver (bug #647)(backported to 3.0.3).
- VAR: Fixed _sbrk_r with incr == 0 should be valid (bug #645)(backported to
3.0.3 and 2.6.10).
- RT: Fixed issues in CMSIS RTOS interface (bug #644)(backported to 3.0.3).