Fixed bug #1189.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14802 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
d6b2eb0f98
commit
b54c6ba3b5
|
@ -808,14 +808,14 @@
|
|||
*
|
||||
* @api
|
||||
*/
|
||||
#define rccEnableLPUART1(lp) rccEnableAPBR1(RCC_APBENR1_LPTIM2EN, lp)
|
||||
#define rccEnableLPUART1(lp) rccEnableAPBR1(RCC_APBENR1_LPUART1EN, lp)
|
||||
|
||||
/**
|
||||
* @brief Disables the LPUART1 peripheral clock.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
#define rccDisableLPUART1() rccDisableAPBR1(RCC_APBENR1_LPTIM2EN)
|
||||
#define rccDisableLPUART1() rccDisableAPBR1(RCC_APBENR1_LPUART1EN)
|
||||
|
||||
/**
|
||||
* @brief Resets the USART1 peripheral.
|
||||
|
|
|
@ -79,8 +79,10 @@
|
|||
- NEW: EFL driver and demo for STM32F3xx.
|
||||
- NEW: New unit test subsystem under /os/test. Now it is officially
|
||||
ChibiOS/TEST.
|
||||
- FIX: Support for STM32G491 (bug #1187)(TBP).
|
||||
- FIX: fixes for uart clock rounding, missing DMA streams and timers
|
||||
- FIX: Fixed invalid RCC LPUART1 clock enable on STM32G0xx (bug #1189)
|
||||
(TBP to 21.6.1)(backported to 20.3.4).
|
||||
- FIX: Support for STM32G491 (bug #1187)(TBP to 21.6.1).
|
||||
- FIX: Fixes for uart clock rounding, missing DMA streams and timers
|
||||
(bug #1186)(TBP).
|
||||
- FIX: Fixed invalid check in chVTResetTimeStamp() function (bug #1185)
|
||||
(TBP).
|
||||
|
|
Loading…
Reference in New Issue