git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13886 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2020-10-13 08:46:28 +00:00
parent f545e26d38
commit 35d38d71c5
2 changed files with 5 additions and 3 deletions

View File

@ -1013,21 +1013,21 @@
*
* @api
*/
#define rccEnableSDMMC2(lp) rccEnableAHB3(RCC_AHB3ENR_SDMMC2EN, lp)
#define rccEnableSDMMC2(lp) rccEnableAHB2(RCC_AHB2ENR_SDMMC2EN, lp)
/**
* @brief Disables the SDMMC2 peripheral clock.
*
* @api
*/
#define rccDisableSDMMC2() rccDisableAHB3(RCC_AHB3ENR_SDMMC2EN)
#define rccDisableSDMMC2() rccDisableAHB2(RCC_AHB2ENR_SDMMC2EN)
/**
* @brief Resets the SDMMC2 peripheral.
*
* @api
*/
#define rccResetSDMMC2() rccResetAHB3(RCC_AHB3RSTR_SDMMC2RST)
#define rccResetSDMMC2() rccResetAHB2(RCC_AHB2RSTR_SDMMC2RST)
/** @} */
/**

View File

@ -120,6 +120,8 @@
MEMS Accelerometers.
- NEW: Safer messages mechanism for sandboxes (to be backported to 20.3.1).
- NEW: Added latency measurement test application.
- FIX: Fixed wrong SDMMC RCC macros for STM32H7xx (bug #1127)
(backported to 20.3.3)(backported to 19.1.5).
- FIX: Fixed STM32 ADCv3 hangin on initialization (bug #1126)
(backported to 20.3.3)(backported to 19.1.5).
- FIX: Fixed I2S-related problems in STM32F4xx registry (bug #1124)