diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-04-09 15:16:19 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-04-09 15:16:19 +0000 |
commit | 7b2d689e16bc11ce37cb21308f8b80d3827d910c (patch) | |
tree | b81686afaa1c32805b6dcfcb3c8ca76544523f58 | |
parent | d08e655de166f99b1cae64d3e12371cbdc70209e (diff) | |
download | ChibiOS-7b2d689e16bc11ce37cb21308f8b80d3827d910c.tar.gz ChibiOS-7b2d689e16bc11ce37cb21308f8b80d3827d910c.tar.bz2 ChibiOS-7b2d689e16bc11ce37cb21308f8b80d3827d910c.zip |
Fixed bug #827.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10153 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/stm32_registry.h | 2 | ||||
-rw-r--r-- | readme.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/STM32F3xx/stm32_registry.h b/os/hal/ports/STM32/STM32F3xx/stm32_registry.h index e1bf383bf..a15d95908 100644 --- a/os/hal/ports/STM32/STM32F3xx/stm32_registry.h +++ b/os/hal/ports/STM32/STM32F3xx/stm32_registry.h @@ -649,7 +649,7 @@ #define STM32_HAS_ETH FALSE
/* EXTI attributes.*/
-#define STM32_EXTI_NUM_LINES 34
+#define STM32_EXTI_NUM_LINES 33
#define STM32_EXTI_IMR_MASK 0x1F800000U
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
diff --git a/readme.txt b/readme.txt index 1624614c8..54a9dd518 100644 --- a/readme.txt +++ b/readme.txt @@ -157,6 +157,8 @@ - RT: Merged RT4.
- NIL: Merged NIL2.
- NIL: Added STM32F7 demo.
+- HAL: Fixed wrong number of EXTI lines for STM32F303x8 (bug #827)(backported
+ to 16.1.8).
- HAL: Fixed invalid SDC OCR initialization value (bug #826)(backported
to 16.1.8).
- HAL: Fixed osThreadSetPriority() returns old priority instead of a status
|