aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-12-02 06:08:07 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-12-02 06:08:07 +0000
commite7234a42e49ca77c6e2b0b391c4da6ce07191cce (patch)
tree99bd9d651b7eadbc6889048944b02c7c4ec044d5
parent179aa7224e72affbf92c2fc4b1f08fee13c92427 (diff)
downloadChibiOS-e7234a42e49ca77c6e2b0b391c4da6ce07191cce.tar.gz
ChibiOS-e7234a42e49ca77c6e2b0b391c4da6ce07191cce.tar.bz2
ChibiOS-e7234a42e49ca77c6e2b0b391c4da6ce07191cce.zip
Fixed bug #990.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12448 110e8d01-0319-4d1e-a829-52ad28d1bb01
-rw-r--r--os/hal/ports/STM32/STM32F4xx/stm32_registry.h4
-rw-r--r--readme.txt2
2 files changed, 5 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/STM32F4xx/stm32_registry.h b/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
index ab13507a3..fb70162ca 100644
--- a/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
+++ b/os/hal/ports/STM32/STM32F4xx/stm32_registry.h
@@ -217,7 +217,9 @@
#define STM32_DMA2_CH7_NUMBER 70
/* ETH attributes.*/
-#define STM32_HAS_ETH FALSE
+#define STM32_HAS_ETH TRUE
+#define STM32_ETH_HANDLER Vector134
+#define STM32_ETH_NUMBER 61
/* EXTI attributes.*/
#define STM32_EXTI_NUM_LINES 23
diff --git a/readme.txt b/readme.txt
index 6ee109cd1..0403bbfcf 100644
--- a/readme.txt
+++ b/readme.txt
@@ -163,6 +163,8 @@
- EX: Updated LIS302DL to 1.1.0 (backported to 18.2.1).
- EX: Updated LPS25H to 1.1.0 (backported to 18.2.1).
- EX: Updated LSM303DLHC to 1.1.0 (backported to 18.2.1).
+- HAL: Fixed ethernet registry error for STM32F469/479 (bug #990)
+ (backported to 18.2.2 and 17.6.5).
- HAL: Fixed OS-Less Cortex-M HAL functionality broken (bug #987)
(backported to 18.2.2).
- HAL: Fixed broken functionality of MFS module (bug #986)