Fixed bug #1113 (again).

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14272 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-04-23 15:35:50 +00:00
parent bce09ed2de
commit 00b903fa75
2 changed files with 25 additions and 0 deletions

View File

@ -1771,6 +1771,29 @@
* @api
*/
#define rccResetUART8() rccResetAPB1L(RCC_APB1LRSTR_UART8RST)
/**
* @brief Enables the LPUART1 peripheral clock.
*
* @param[in] lp low power enable flag
*
* @api
*/
#define rccEnableLPUART1(lp) rccEnableAPB4(RCC_APB4ENR_LPUART1EN, lp)
/**
* @brief Disables the LPUART1 peripheral clock.
*
* @api
*/
#define rccDisableLPUART1() rccDisableAPB4(RCC_APB4ENR_LPUART1EN)
/**
* @brief Resets the LPUART1 peripheral.
*
* @api
*/
#define rccResetLPUART1() rccResetAPB4(RCC_APB4RSTR_LPUART1RST)
/** @} */
/**

View File

@ -130,6 +130,8 @@
MEMS Accelerometers.
- NEW: Safer messages mechanism for sandboxes (to be backported to 20.3.1).
- NEW: Added latency measurement test application.
- FIX: Fixed (again) LPUART1 support for STM32H7xx (bug #1113)
(backported to 20.3.4).
- FIX: Fixed wrong errors handling in STM32 ADC drivers (bug #1152).
- FIX: Fixed wrong behavior in Serial-USB driver (bug #1151)
(backported to 20.3.4)(backported to 19.1.5).