git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@14279 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-04-24 05:33:36 +00:00
parent c5db5025ef
commit a164c027d2
2 changed files with 7 additions and 6 deletions

View File

@ -72,10 +72,10 @@
#endif #endif
/*===========================================================================*/ /*===========================================================================*/
/* STM32L432xx, STM32L433xx. */ /* STM32L432xx. */
/*===========================================================================*/ /*===========================================================================*/
#if defined(STM32L432xx) || defined(STM32L433xx) || defined(__DOXYGEN__) #if defined(STM32L432xx) || defined(__DOXYGEN__)
/* Clock attributes.*/ /* Clock attributes.*/
#define STM32_CLOCK_HAS_HSI48 TRUE #define STM32_CLOCK_HAS_HSI48 TRUE
@ -294,10 +294,10 @@
#endif /* defined(STM32L432xx) */ #endif /* defined(STM32L432xx) */
/*===========================================================================*/ /*===========================================================================*/
/* STM32L443xx. */ /* STM32L433xx, STM32L443xx. */
/*===========================================================================*/ /*===========================================================================*/
#if defined(STM32L443xx) || defined(__DOXYGEN__) #if defined(STM32L433xx) || defined(STM32L443xx) || defined(__DOXYGEN__)
/* Clock attributes.*/ /* Clock attributes.*/
#define STM32_CLOCK_HAS_HSI48 TRUE #define STM32_CLOCK_HAS_HSI48 TRUE
@ -357,8 +357,8 @@
#define STM32_HAS_GPIOA TRUE #define STM32_HAS_GPIOA TRUE
#define STM32_HAS_GPIOB TRUE #define STM32_HAS_GPIOB TRUE
#define STM32_HAS_GPIOC TRUE #define STM32_HAS_GPIOC TRUE
#define STM32_HAS_GPIOD FALSE #define STM32_HAS_GPIOD TRUE
#define STM32_HAS_GPIOE FALSE #define STM32_HAS_GPIOE TRUE
#define STM32_HAS_GPIOF FALSE #define STM32_HAS_GPIOF FALSE
#define STM32_HAS_GPIOG FALSE #define STM32_HAS_GPIOG FALSE
#define STM32_HAS_GPIOH TRUE #define STM32_HAS_GPIOH TRUE

View File

@ -74,6 +74,7 @@
***************************************************************************** *****************************************************************************
*** 20.3.4 *** *** 20.3.4 ***
- FIX: Fixed errors in STM32L4xx registry (bug #1154).
- FIX: Fixed QUADSPI errata fix applied to all platforms (bug #1153). - FIX: Fixed QUADSPI errata fix applied to all platforms (bug #1153).
- FIX: Fixed (again) LPUART1 support for STM32H7xx (bug #1113). - FIX: Fixed (again) LPUART1 support for STM32H7xx (bug #1113).
- FIX: Fixed wrong behavior in Serial-USB driver (bug #1151). - FIX: Fixed wrong behavior in Serial-USB driver (bug #1151).