cueOS  2.4
cueOS - Universal Show Control OS for ARM
bsp_driver_sd.h File Reference

This file contains the common defines and functions prototypes for the bsp_driver_sd.c driver. More...

#include "stm32f4xx_hal.h"
#include "fatfs_platform.h"
Include dependency graph for bsp_driver_sd.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define BSP_SD_CardInfo   HAL_SD_CardInfoTypeDef
 SD Card information structure. More...
 
#define MSD_OK   ((uint8_t)0x00)
 SD status structure definition
More...
 
#define MSD_ERROR   ((uint8_t)0x01)
 
#define SD_TRANSFER_OK   ((uint8_t)0x00)
 SD transfer state definition
More...
 
#define SD_TRANSFER_BUSY   ((uint8_t)0x01)
 
#define SD_PRESENT   ((uint8_t)0x01)
 
#define SD_NOT_PRESENT   ((uint8_t)0x00)
 
#define SD_DATATIMEOUT   ((uint32_t)100000000)
 

Functions

uint8_t BSP_SD_Init (void)
 Initializes the SD card device. More...
 
uint8_t BSP_SD_ITConfig (void)
 Configures Interrupt mode for SD detection pin. More...
 
void BSP_SD_DetectIT (void)
 SD detect IT treatment. More...
 
void BSP_SD_DetectCallback (void)
 
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...
 
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...
 
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...
 
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...
 
uint8_t BSP_SD_Erase (uint32_t StartAddr, uint32_t EndAddr)
 Erases the specified memory area of the given SD card. More...
 
void BSP_SD_IRQHandler (void)
 
void BSP_SD_DMA_Tx_IRQHandler (void)
 
void BSP_SD_DMA_Rx_IRQHandler (void)
 
uint8_t BSP_SD_GetCardState (void)
 Gets the current SD card data status. More...
 
void BSP_SD_GetCardInfo (HAL_SD_CardInfoTypeDef *CardInfo)
 Get SD information about specific SD card. More...
 
uint8_t BSP_SD_IsDetected (void)
 Detects if SD card is correctly plugged in the memory slot or not. More...
 
void BSP_SD_AbortCallback (void)
 BSP SD Abort callback. More...
 
void BSP_SD_WriteCpltCallback (void)
 BSP Tx Transfer completed callback. More...
 
void BSP_SD_ReadCpltCallback (void)
 BSP Rx Transfer completed callback. More...
 

Detailed Description

This file contains the common defines and functions prototypes for the bsp_driver_sd.c driver.

for F4 (based on stm324x9i_eval_sd.h)

Attention

© Copyright (c) 2020 STMicroelectronics. All rights reserved.

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.h.

Macro Definition Documentation

◆ BSP_SD_CardInfo

#define BSP_SD_CardInfo   HAL_SD_CardInfoTypeDef

SD Card information structure.

Definition at line 36 of file bsp_driver_sd.h.

◆ MSD_ERROR

#define MSD_ERROR   ((uint8_t)0x01)

Definition at line 43 of file bsp_driver_sd.h.

◆ MSD_OK

#define MSD_OK   ((uint8_t)0x00)

SD status structure definition

Definition at line 42 of file bsp_driver_sd.h.

◆ SD_DATATIMEOUT

#define SD_DATATIMEOUT   ((uint32_t)100000000)

Definition at line 53 of file bsp_driver_sd.h.

◆ SD_NOT_PRESENT

#define SD_NOT_PRESENT   ((uint8_t)0x00)

Definition at line 52 of file bsp_driver_sd.h.

◆ SD_PRESENT

#define SD_PRESENT   ((uint8_t)0x01)

Definition at line 51 of file bsp_driver_sd.h.

◆ SD_TRANSFER_BUSY

#define SD_TRANSFER_BUSY   ((uint8_t)0x01)

Definition at line 49 of file bsp_driver_sd.h.

◆ SD_TRANSFER_OK

#define SD_TRANSFER_OK   ((uint8_t)0x00)

SD transfer state definition

Definition at line 48 of file bsp_driver_sd.h.

Function Documentation

◆ BSP_SD_AbortCallback()

void BSP_SD_AbortCallback ( void  )

BSP SD Abort callback.

Return values
None
Note
empty (up to the user to fill it in or to remove it if useless)

Definition at line 269 of file bsp_driver_sd.c.

◆ BSP_SD_DetectIT()

void BSP_SD_DetectIT ( void  )

SD detect IT treatment.

Definition at line 87 of file bsp_driver_sd.c.

◆ BSP_SD_Erase()

uint8_t BSP_SD_Erase ( uint32_t  StartAddr,
uint32_t  EndAddr 
)

Erases the specified memory area of the given SD card.

Parameters
StartAddrStart byte address
EndAddrEnd byte address
Return values
SDstatus

Definition at line 194 of file bsp_driver_sd.c.

◆ BSP_SD_GetCardInfo()

void BSP_SD_GetCardInfo ( HAL_SD_CardInfoTypeDef *  CardInfo)

Get SD information about specific SD card.

Parameters
CardInfoPointer to HAL_SD_CardInfoTypedef structure
Return values
None

Definition at line 224 of file bsp_driver_sd.c.

◆ BSP_SD_GetCardState()

uint8_t BSP_SD_GetCardState ( void  )

Gets the current SD card data status.

Parameters
None
Return values
Datatransfer state. This value can be one of the following values:
  • SD_TRANSFER_OK: No data transfer is acting
  • SD_TRANSFER_BUSY: Data transfer is acting

Definition at line 214 of file bsp_driver_sd.c.

◆ BSP_SD_Init()

uint8_t BSP_SD_Init ( void  )

Initializes the SD card device.

Return values
SDstatus

Definition at line 47 of file bsp_driver_sd.c.

◆ BSP_SD_IsDetected()

uint8_t BSP_SD_IsDetected ( void  )

Detects if SD card is correctly plugged in the memory slot or not.

Parameters
None
Return values
Returnsif SD is detected or not

Definition at line 301 of file bsp_driver_sd.c.

◆ BSP_SD_ITConfig()

uint8_t BSP_SD_ITConfig ( void  )

Configures Interrupt mode for SD detection pin.

Return values
Returns0

Definition at line 78 of file bsp_driver_sd.c.

◆ BSP_SD_ReadBlocks()

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.

Parameters
pDataPointer to the buffer that will contain the data to transmit
ReadAddrAddress from where data is to be read
NumOfBlocksNumber of SD blocks to read
TimeoutTimeout for read operation
Return values
SDstatus

Definition at line 104 of file bsp_driver_sd.c.

◆ BSP_SD_ReadBlocks_DMA()

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.

Parameters
pDataPointer to the buffer that will contain the data to transmit
ReadAddrAddress from where data is to be read
NumOfBlocksNumber of SD blocks to read
Return values
SDstatus

Definition at line 149 of file bsp_driver_sd.c.

◆ BSP_SD_ReadCpltCallback()

void BSP_SD_ReadCpltCallback ( void  )

BSP Rx Transfer completed callback.

Return values
None
Note
empty (up to the user to fill it in or to remove it if useless)

BSP Rx Transfer completed callback.

Parameters
hsdSD handle
Return values
None

Definition at line 289 of file bsp_driver_sd.c.

◆ BSP_SD_WriteBlocks()

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.

Parameters
pDataPointer to the buffer that will contain the data to transmit
WriteAddrAddress from where data is to be written
NumOfBlocksNumber of SD blocks to write
TimeoutTimeout for write operation
Return values
SDstatus

Definition at line 127 of file bsp_driver_sd.c.

◆ BSP_SD_WriteBlocks_DMA()

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.

Parameters
pDataPointer to the buffer that will contain the data to transmit
WriteAddrAddress from where data is to be written
NumOfBlocksNumber of SD blocks to write
Return values
SDstatus

Definition at line 172 of file bsp_driver_sd.c.

◆ BSP_SD_WriteCpltCallback()

void BSP_SD_WriteCpltCallback ( void  )

BSP Tx Transfer completed callback.

Return values
None
Note
empty (up to the user to fill it in or to remove it if useless)

BSP Tx Transfer completed callback.

Parameters
lun: not used
*buffData to be written
sectorSector address (LBA)
countNumber of sectors to write (1..128)
Return values
DRESULTOperation result

I/O control operation

Parameters
lun: not used
cmdControl code
*buffBuffer to send/receive control data
Return values
DRESULTOperation result

Tx Transfer completed callbacks

Parameters
hsdSD handle
Return values
None

Definition at line 279 of file bsp_driver_sd.c.