![]() |
cueOS
2.4
cueOS - Universal Show Control OS for ARM
|
This file includes a generic uSD card driver. To be completed by the user according to the board used for the project. More...
#include "bsp_driver_sd.h"
Go to the source code of this file.
Functions | |
__weak uint8_t | BSP_SD_Init (void) |
Initializes the SD card device. More... | |
__weak uint8_t | BSP_SD_ITConfig (void) |
Configures Interrupt mode for SD detection pin. More... | |
__weak void | BSP_SD_DetectIT (void) |
SD detect IT treatment. More... | |
__weak uint8_t | BSP_SD_ReadBlocks (uint32_t *pData, uint32_t ReadAddr, uint32_t NumOfBlocks, uint32_t Timeout) |
Reads block(s) from a specified address in an SD card, in polling mode. More... | |
__weak uint8_t | BSP_SD_WriteBlocks (uint32_t *pData, uint32_t WriteAddr, uint32_t NumOfBlocks, uint32_t Timeout) |
Writes block(s) to a specified address in an SD card, in polling mode. More... | |
__weak uint8_t | BSP_SD_ReadBlocks_DMA (uint32_t *pData, uint32_t ReadAddr, uint32_t NumOfBlocks) |
Reads block(s) from a specified address in an SD card, in DMA mode. More... | |
__weak uint8_t | BSP_SD_WriteBlocks_DMA (uint32_t *pData, uint32_t WriteAddr, uint32_t NumOfBlocks) |
Writes block(s) to a specified address in an SD card, in DMA mode. More... | |
__weak uint8_t | BSP_SD_Erase (uint32_t StartAddr, uint32_t EndAddr) |
Erases the specified memory area of the given SD card. More... | |
__weak uint8_t | BSP_SD_GetCardState (void) |
Gets the current SD card data status. More... | |
__weak void | BSP_SD_GetCardInfo (HAL_SD_CardInfoTypeDef *CardInfo) |
Get SD information about specific SD card. More... | |
void | HAL_SD_AbortCallback (SD_HandleTypeDef *hsd) |
SD Abort callbacks. More... | |
void | HAL_SD_TxCpltCallback (SD_HandleTypeDef *hsd) |
Tx Transfer completed callback. More... | |
void | HAL_SD_RxCpltCallback (SD_HandleTypeDef *hsd) |
Rx Transfer completed callback. More... | |
__weak void | BSP_SD_AbortCallback (void) |
BSP SD Abort callback. More... | |
__weak void | BSP_SD_WriteCpltCallback (void) |
BSP Tx Transfer completed callback. More... | |
__weak void | BSP_SD_ReadCpltCallback (void) |
BSP Rx Transfer completed callback. More... | |
__weak uint8_t | BSP_SD_IsDetected (void) |
Detects if SD card is correctly plugged in the memory slot or not. More... | |
Variables | |
SD_HandleTypeDef | hsd |
This file includes a generic uSD card driver. To be completed by the user according to the board used for the project.
for F4 (based on stm324x9i_eval_sd.c)
This software component is licensed by ST under Ultimate Liberty license SLA0044, the "License"; You may not use this file except in compliance with the License. You may obtain a copy of the License at: www.st.com/SLA0044
Definition in file bsp_driver_sd.c.
__weak void BSP_SD_AbortCallback | ( | void | ) |
BSP SD Abort callback.
None |
Definition at line 269 of file bsp_driver_sd.c.
__weak void BSP_SD_DetectIT | ( | void | ) |
SD detect IT treatment.
Definition at line 87 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_Erase | ( | uint32_t | StartAddr, |
uint32_t | EndAddr | ||
) |
Erases the specified memory area of the given SD card.
StartAddr | Start byte address |
EndAddr | End byte address |
SD | status |
Definition at line 194 of file bsp_driver_sd.c.
__weak void BSP_SD_GetCardInfo | ( | HAL_SD_CardInfoTypeDef * | CardInfo | ) |
Get SD information about specific SD card.
CardInfo | Pointer to HAL_SD_CardInfoTypedef structure |
None |
Definition at line 224 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_GetCardState | ( | void | ) |
Gets the current SD card data status.
None |
Data | transfer state. This value can be one of the following values:
|
Definition at line 214 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_Init | ( | void | ) |
Initializes the SD card device.
SD | status |
Definition at line 47 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_IsDetected | ( | void | ) |
Detects if SD card is correctly plugged in the memory slot or not.
None |
Returns | if SD is detected or not |
Definition at line 301 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_ITConfig | ( | void | ) |
Configures Interrupt mode for SD detection pin.
Returns | 0 |
Definition at line 78 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_ReadBlocks | ( | uint32_t * | pData, |
uint32_t | ReadAddr, | ||
uint32_t | NumOfBlocks, | ||
uint32_t | Timeout | ||
) |
Reads block(s) from a specified address in an SD card, in polling mode.
pData | Pointer to the buffer that will contain the data to transmit |
ReadAddr | Address from where data is to be read |
NumOfBlocks | Number of SD blocks to read |
Timeout | Timeout for read operation |
SD | status |
Definition at line 104 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_ReadBlocks_DMA | ( | uint32_t * | pData, |
uint32_t | ReadAddr, | ||
uint32_t | NumOfBlocks | ||
) |
Reads block(s) from a specified address in an SD card, in DMA mode.
pData | Pointer to the buffer that will contain the data to transmit |
ReadAddr | Address from where data is to be read |
NumOfBlocks | Number of SD blocks to read |
SD | status |
Definition at line 149 of file bsp_driver_sd.c.
__weak void BSP_SD_ReadCpltCallback | ( | void | ) |
BSP Rx Transfer completed callback.
None |
Definition at line 289 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_WriteBlocks | ( | uint32_t * | pData, |
uint32_t | WriteAddr, | ||
uint32_t | NumOfBlocks, | ||
uint32_t | Timeout | ||
) |
Writes block(s) to a specified address in an SD card, in polling mode.
pData | Pointer to the buffer that will contain the data to transmit |
WriteAddr | Address from where data is to be written |
NumOfBlocks | Number of SD blocks to write |
Timeout | Timeout for write operation |
SD | status |
Definition at line 127 of file bsp_driver_sd.c.
__weak uint8_t BSP_SD_WriteBlocks_DMA | ( | uint32_t * | pData, |
uint32_t | WriteAddr, | ||
uint32_t | NumOfBlocks | ||
) |
Writes block(s) to a specified address in an SD card, in DMA mode.
pData | Pointer to the buffer that will contain the data to transmit |
WriteAddr | Address from where data is to be written |
NumOfBlocks | Number of SD blocks to write |
SD | status |
Definition at line 172 of file bsp_driver_sd.c.
__weak void BSP_SD_WriteCpltCallback | ( | void | ) |
BSP Tx Transfer completed callback.
None |
Definition at line 279 of file bsp_driver_sd.c.
void HAL_SD_AbortCallback | ( | SD_HandleTypeDef * | hsd | ) |
SD Abort callbacks.
hsd | SD handle |
None |
Definition at line 238 of file bsp_driver_sd.c.
void HAL_SD_RxCpltCallback | ( | SD_HandleTypeDef * | hsd | ) |
Rx Transfer completed callback.
hsd | SD handle |
None |
Definition at line 258 of file bsp_driver_sd.c.
void HAL_SD_TxCpltCallback | ( | SD_HandleTypeDef * | hsd | ) |
Tx Transfer completed callback.
hsd | SD handle |
None |
Definition at line 248 of file bsp_driver_sd.c.
|
extern |
TODO: this is old and this was mostly made for test purposes. maybe this can move right into the card driver ?
Definition at line 15 of file mmc_driver.c.