Fixed Bug #769.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9739 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
1512038d26
commit
5c969f6373
|
@ -273,9 +273,9 @@
|
||||||
#define STM32_LPTIM1SEL_HSI16 (2 << 18) /**< LPTIM1 clock is HSI16. */
|
#define STM32_LPTIM1SEL_HSI16 (2 << 18) /**< LPTIM1 clock is HSI16. */
|
||||||
#define STM32_LPTIM1SEL_LSE (3 << 18) /**< LPTIM1 clock is LSE. */
|
#define STM32_LPTIM1SEL_LSE (3 << 18) /**< LPTIM1 clock is LSE. */
|
||||||
|
|
||||||
#define STM32_HSI48SEL_MASK (1 << 27) /**< HSI48SEL clock source mask.*/
|
#define STM32_HSI48SEL_MASK (1 << 26) /**< HSI48SEL clock source mask.*/
|
||||||
#define STM32_HSI48SEL_USBPLL (0 << 27) /**< USB48 clock is PLL/2. */
|
#define STM32_HSI48SEL_USBPLL (0 << 26) /**< USB48 clock is PLL/2. */
|
||||||
#define STM32_HSI48SEL_HSI48 (1 << 27) /**< USB48 clock is HSI48. */
|
#define STM32_HSI48SEL_HSI48 (1 << 26) /**< USB48 clock is HSI48. */
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
|
@ -123,6 +123,8 @@
|
||||||
- RT: Merged RT4.
|
- RT: Merged RT4.
|
||||||
- NIL: Merged NIL2.
|
- NIL: Merged NIL2.
|
||||||
- NIL: Added STM32F7 demo.
|
- NIL: Added STM32F7 demo.
|
||||||
|
- HAL: Fixed wrong bit mask in STM32L0xx port (bug #769) (backported to 16.1.6)
|
||||||
|
(bug #768)(backported to 16.1.6).
|
||||||
- HAL: Fixed potential wait states problem in STM32L4 initialization code
|
- HAL: Fixed potential wait states problem in STM32L4 initialization code
|
||||||
(bug #768)(backported to 16.1.6).
|
(bug #768)(backported to 16.1.6).
|
||||||
- HAL: Fixed SDIO driver not compiling on STM32F446 devices (bug #767)
|
- HAL: Fixed SDIO driver not compiling on STM32F446 devices (bug #767)
|
||||||
|
|
Loading…
Reference in New Issue