aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2016-09-28 11:44:36 +0000
committerRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2016-09-28 11:44:36 +0000
commit915c7e5362d720b7579ba41fbd81029ada9d7202 (patch)
treec9185e0a0b919120d8a24d3fc3bd8aefff8068f1
parenta736f4dd7758d31c56290b0c436fb742e90724c7 (diff)
downloadChibiOS-915c7e5362d720b7579ba41fbd81029ada9d7202.tar.gz
ChibiOS-915c7e5362d720b7579ba41fbd81029ada9d7202.tar.bz2
ChibiOS-915c7e5362d720b7579ba41fbd81029ada9d7202.zip
Fixed Bug #780.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9816 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/ports/STM32/STM32F4xx/stm32_registry.h3
-rw-r--r--readme.txt2
2 files changed, 4 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/STM32F4xx/stm32_registry.h b/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
index 66988cbd0..f0b2d1db5 100644
--- a/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
+++ b/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
@@ -1233,7 +1233,8 @@
#define STM32_DMA2_CH7_NUMBER 70
/* ETH attributes.*/
-#if defined(STM32F405xx) || defined(STM32F415xx)
+#if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F205xx) || \
+ defined(STM32F215xx)
#define STM32_HAS_ETH FALSE
#else
#define STM32_HAS_ETH TRUE
diff --git a/readme.txt b/readme.txt
index 23b1d4079..455c6ae95 100644
--- a/readme.txt
+++ b/readme.txt
@@ -144,6 +144,8 @@
- RT: Merged RT4.
- NIL: Merged NIL2.
- NIL: Added STM32F7 demo.
+- HAL: Fixed wrong registry for STM32F205xx and STM32F215xx port
+ (bug #780)(backported to 16.1.6, 3.0.6).
- HAL: Fixed wrong HSE checks and PLL2 enable switch in STM32F105 and
STM32F107 port (bug #779)(backported to 16.1.6, 3.0.6, 2.6.10).
- HAL: Fixed wrong SRAM2_BASE in STM32F7xx port (bug #778)