cueOS  2.4
cueOS - Universal Show Control OS for ARM
bsp_driver_sd.c
Go to the documentation of this file.
1
24#ifdef OLD_API
25/* kept to avoid issue when migrating old projects. */
26/* USER CODE BEGIN 0 */
27
28/* USER CODE END 0 */
29#else
30/* USER CODE BEGIN FirstSection */
31/* can be used to modify / undefine following code or add new definitions */
32/* USER CODE END FirstSection */
33/* Includes ------------------------------------------------------------------*/
34#include "bsp_driver_sd.h"
35
36/* Extern variables ---------------------------------------------------------*/
37
38extern SD_HandleTypeDef hsd;
39
40/* USER CODE BEGIN BeforeInitSection */
41/* can be used to modify / undefine following code or add code */
42/* USER CODE END BeforeInitSection */
47__weak uint8_t BSP_SD_Init(void)
48{
49 uint8_t sd_state = MSD_OK;
50 /* Check if the SD card is plugged in the slot */
51 if (BSP_SD_IsDetected() != SD_PRESENT)
52 {
53 return MSD_ERROR;
54 }
55 /* HAL SD initialization */
56 sd_state = HAL_SD_Init(&hsd);
57 /* Configure SD Bus width (4 bits mode selected) */
58 if (sd_state == MSD_OK)
59 {
60 /* Enable wide operation */
61 if (HAL_SD_ConfigWideBusOperation(&hsd, SDIO_BUS_WIDE_4B) != HAL_OK)
62 {
63 sd_state = MSD_ERROR;
64 }
65 }
66
67 return sd_state;
68}
69/* USER CODE BEGIN AfterInitSection */
70/* can be used to modify previous code / undefine following code / add code */
71/* USER CODE END AfterInitSection */
72
73/* USER CODE BEGIN InterruptMode */
78__weak uint8_t BSP_SD_ITConfig(void)
79{
80 /* Code to be updated by the user or replaced by one from the FW pack (in a stmxxxx_sd.c file) */
81
82 return (uint8_t)0;
83}
84
87__weak void BSP_SD_DetectIT(void)
88{
89 /* Code to be updated by the user or replaced by one from the FW pack (in a stmxxxx_sd.c file) */
90}
91/* USER CODE END InterruptMode */
92
93/* USER CODE BEGIN BeforeReadBlocksSection */
94/* can be used to modify previous code / undefine following code / add code */
95/* USER CODE END BeforeReadBlocksSection */
104__weak uint8_t BSP_SD_ReadBlocks(uint32_t *pData, uint32_t ReadAddr, uint32_t NumOfBlocks, uint32_t Timeout)
105{
106 uint8_t sd_state = MSD_OK;
107
108 if (HAL_SD_ReadBlocks(&hsd, (uint8_t *)pData, ReadAddr, NumOfBlocks, Timeout) != HAL_OK)
109 {
110 sd_state = MSD_ERROR;
111 }
112
113 return sd_state;
114}
115
116/* USER CODE BEGIN BeforeWriteBlocksSection */
117/* can be used to modify previous code / undefine following code / add code */
118/* USER CODE END BeforeWriteBlocksSection */
127__weak uint8_t BSP_SD_WriteBlocks(uint32_t *pData, uint32_t WriteAddr, uint32_t NumOfBlocks, uint32_t Timeout)
128{
129 uint8_t sd_state = MSD_OK;
130
131 if (HAL_SD_WriteBlocks(&hsd, (uint8_t *)pData, WriteAddr, NumOfBlocks, Timeout) != HAL_OK)
132 {
133 sd_state = MSD_ERROR;
134 }
135
136 return sd_state;
137}
138
139/* USER CODE BEGIN BeforeReadDMABlocksSection */
140/* can be used to modify previous code / undefine following code / add code */
141/* USER CODE END BeforeReadDMABlocksSection */
149__weak uint8_t BSP_SD_ReadBlocks_DMA(uint32_t *pData, uint32_t ReadAddr, uint32_t NumOfBlocks)
150{
151 uint8_t sd_state = MSD_OK;
152
153 /* Read block(s) in DMA transfer mode */
154 if (HAL_SD_ReadBlocks_DMA(&hsd, (uint8_t *)pData, ReadAddr, NumOfBlocks) != HAL_OK)
155 {
156 sd_state = MSD_ERROR;
157 }
158
159 return sd_state;
160}
161
162/* USER CODE BEGIN BeforeWriteDMABlocksSection */
163/* can be used to modify previous code / undefine following code / add code */
164/* USER CODE END BeforeWriteDMABlocksSection */
172__weak uint8_t BSP_SD_WriteBlocks_DMA(uint32_t *pData, uint32_t WriteAddr, uint32_t NumOfBlocks)
173{
174 uint8_t sd_state = MSD_OK;
175
176 /* Write block(s) in DMA transfer mode */
177 if (HAL_SD_WriteBlocks_DMA(&hsd, (uint8_t *)pData, WriteAddr, NumOfBlocks) != HAL_OK)
178 {
179 sd_state = MSD_ERROR;
180 }
181
182 return sd_state;
183}
184
185/* USER CODE BEGIN BeforeEraseSection */
186/* can be used to modify previous code / undefine following code / add code */
187/* USER CODE END BeforeEraseSection */
194__weak uint8_t BSP_SD_Erase(uint32_t StartAddr, uint32_t EndAddr)
195{
196 uint8_t sd_state = MSD_OK;
197
198 if (HAL_SD_Erase(&hsd, StartAddr, EndAddr) != HAL_OK)
199 {
200 sd_state = MSD_ERROR;
201 }
202
203 return sd_state;
204}
205
214__weak uint8_t BSP_SD_GetCardState(void)
215{
216 return ((HAL_SD_GetCardState(&hsd) == HAL_SD_CARD_TRANSFER ) ? SD_TRANSFER_OK : SD_TRANSFER_BUSY);
217}
218
224__weak void BSP_SD_GetCardInfo(HAL_SD_CardInfoTypeDef *CardInfo)
225{
226 /* Get SD card Information */
227 HAL_SD_GetCardInfo(&hsd, CardInfo);
228}
229
230/* USER CODE BEGIN BeforeCallBacksSection */
231/* can be used to modify previous code / undefine following code / add code */
232/* USER CODE END BeforeCallBacksSection */
238void HAL_SD_AbortCallback(SD_HandleTypeDef *hsd)
239{
241}
242
248void HAL_SD_TxCpltCallback(SD_HandleTypeDef *hsd)
249{
251}
252
258void HAL_SD_RxCpltCallback(SD_HandleTypeDef *hsd)
259{
261}
262
263/* USER CODE BEGIN CallBacksSection_C */
269__weak void BSP_SD_AbortCallback(void)
270{
271
272}
273
280{
281
282}
283
289__weak void BSP_SD_ReadCpltCallback(void)
290{
291
292}
293/* USER CODE END CallBacksSection_C */
294#endif
295
301__weak uint8_t BSP_SD_IsDetected(void)
302{
303 __IO uint8_t status = SD_PRESENT;
304
305 if (BSP_PlatformIsDetected() == 0x0)
306 {
307 status = SD_NOT_PRESENT;
308 }
309
310 return status;
311}
312
313/* USER CODE BEGIN AdditionalCode */
314/* user code can be inserted here */
315/* USER CODE END AdditionalCode */
316
317/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
void HAL_SD_RxCpltCallback(SD_HandleTypeDef *hsd)
Rx Transfer completed callback.
__weak void BSP_SD_GetCardInfo(HAL_SD_CardInfoTypeDef *CardInfo)
Get SD information about specific SD card.
__weak void BSP_SD_WriteCpltCallback(void)
BSP Tx Transfer completed callback.
void HAL_SD_AbortCallback(SD_HandleTypeDef *hsd)
SD Abort callbacks.
__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.
void HAL_SD_TxCpltCallback(SD_HandleTypeDef *hsd)
Tx Transfer completed callback.
__weak uint8_t BSP_SD_IsDetected(void)
Detects if SD card is correctly plugged in the memory slot or not.
__weak void BSP_SD_AbortCallback(void)
BSP SD Abort callback.
__weak uint8_t BSP_SD_ITConfig(void)
Configures Interrupt mode for SD detection pin.
Definition: bsp_driver_sd.c:78
__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.
__weak uint8_t BSP_SD_GetCardState(void)
Gets the current SD card data status.
SD_HandleTypeDef hsd
Definition: mmc_driver.c:15
__weak uint8_t BSP_SD_Erase(uint32_t StartAddr, uint32_t EndAddr)
Erases the specified memory area of the given SD card.
__weak void BSP_SD_ReadCpltCallback(void)
BSP Rx Transfer completed callback.
__weak void BSP_SD_DetectIT(void)
SD detect IT treatment.
Definition: bsp_driver_sd.c:87
__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.
__weak uint8_t BSP_SD_Init(void)
Initializes the SD card device.
Definition: bsp_driver_sd.c:47
__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.
This file contains the common defines and functions prototypes for the bsp_driver_sd....
#define MSD_OK
SD status structure definition
Definition: bsp_driver_sd.h:42
#define SD_TRANSFER_OK
SD transfer state definition
Definition: bsp_driver_sd.h:48