git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14802 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-09-19 08:16:52 +00:00
parent d6b2eb0f98
commit b54c6ba3b5
2 changed files with 6 additions and 4 deletions

View File

@ -808,14 +808,14 @@
* *
* @api * @api
*/ */
#define rccEnableLPUART1(lp) rccEnableAPBR1(RCC_APBENR1_LPTIM2EN, lp) #define rccEnableLPUART1(lp) rccEnableAPBR1(RCC_APBENR1_LPUART1EN, lp)
/** /**
* @brief Disables the LPUART1 peripheral clock. * @brief Disables the LPUART1 peripheral clock.
* *
* @api * @api
*/ */
#define rccDisableLPUART1() rccDisableAPBR1(RCC_APBENR1_LPTIM2EN) #define rccDisableLPUART1() rccDisableAPBR1(RCC_APBENR1_LPUART1EN)
/** /**
* @brief Resets the USART1 peripheral. * @brief Resets the USART1 peripheral.

View File

@ -79,8 +79,10 @@
- NEW: EFL driver and demo for STM32F3xx. - NEW: EFL driver and demo for STM32F3xx.
- NEW: New unit test subsystem under /os/test. Now it is officially - NEW: New unit test subsystem under /os/test. Now it is officially
ChibiOS/TEST. ChibiOS/TEST.
- FIX: Support for STM32G491 (bug #1187)(TBP). - FIX: Fixed invalid RCC LPUART1 clock enable on STM32G0xx (bug #1189)
- FIX: fixes for uart clock rounding, missing DMA streams and timers (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). (bug #1186)(TBP).
- FIX: Fixed invalid check in chVTResetTimeStamp() function (bug #1185) - FIX: Fixed invalid check in chVTResetTimeStamp() function (bug #1185)
(TBP). (TBP).