Data transfers functions.
More...
|
| uint32_t | SDMMC_ReadFIFO (SDMMC_TypeDef *SDMMCx) |
| | Read data (word) from Rx FIFO in blocking mode (polling) More...
|
| |
| HAL_StatusTypeDef | SDMMC_WriteFIFO (SDMMC_TypeDef *SDMMCx, uint32_t *pWriteData) |
| | Write data (word) to Tx FIFO in blocking mode (polling) More...
|
| |
Data transfers functions.
===============================================================================
##### I/O operation functions #####
===============================================================================
[..]
This subsection provides a set of functions allowing to manage the SDMMC data
transfers.
◆ SDMMC_ReadFIFO()
| uint32_t SDMMC_ReadFIFO |
( |
SDMMC_TypeDef * |
SDMMCx | ) |
|
Read data (word) from Rx FIFO in blocking mode (polling)
- Parameters
-
| SDMMCx | Pointer to SDMMC register base |
- Return values
-
Definition at line 277 of file stm32l4xx_ll_sdmmc.c.
280 return (SDMMCx->FIFO);
◆ SDMMC_WriteFIFO()
| HAL_StatusTypeDef SDMMC_WriteFIFO |
( |
SDMMC_TypeDef * |
SDMMCx, |
|
|
uint32_t * |
pWriteData |
|
) |
| |
Write data (word) to Tx FIFO in blocking mode (polling)
- Parameters
-
| SDMMCx | Pointer to SDMMC register base |
| pWriteData | pointer to data to write |
- Return values
-
Definition at line 289 of file stm32l4xx_ll_sdmmc.c.
292 SDMMCx->FIFO = *pWriteData;