Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
110:165afa46840b
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 92:4fc01daae5a5 1 /**
bogdanm 92:4fc01daae5a5 2 ******************************************************************************
bogdanm 92:4fc01daae5a5 3 * @file stm32f4xx_hal_sd.h
bogdanm 92:4fc01daae5a5 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
bogdanm 92:4fc01daae5a5 7 * @brief Header file of SD HAL module.
bogdanm 92:4fc01daae5a5 8 ******************************************************************************
bogdanm 92:4fc01daae5a5 9 * @attention
bogdanm 92:4fc01daae5a5 10 *
Kojto 99:dbbf35b96557 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
bogdanm 92:4fc01daae5a5 12 *
bogdanm 92:4fc01daae5a5 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 92:4fc01daae5a5 14 * are permitted provided that the following conditions are met:
bogdanm 92:4fc01daae5a5 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 92:4fc01daae5a5 16 * this list of conditions and the following disclaimer.
bogdanm 92:4fc01daae5a5 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 92:4fc01daae5a5 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 92:4fc01daae5a5 19 * and/or other materials provided with the distribution.
bogdanm 92:4fc01daae5a5 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 92:4fc01daae5a5 21 * may be used to endorse or promote products derived from this software
bogdanm 92:4fc01daae5a5 22 * without specific prior written permission.
bogdanm 92:4fc01daae5a5 23 *
bogdanm 92:4fc01daae5a5 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 92:4fc01daae5a5 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 92:4fc01daae5a5 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 92:4fc01daae5a5 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 92:4fc01daae5a5 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 92:4fc01daae5a5 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 92:4fc01daae5a5 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 92:4fc01daae5a5 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 92:4fc01daae5a5 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 92:4fc01daae5a5 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 92:4fc01daae5a5 34 *
bogdanm 92:4fc01daae5a5 35 ******************************************************************************
bogdanm 92:4fc01daae5a5 36 */
bogdanm 92:4fc01daae5a5 37
bogdanm 92:4fc01daae5a5 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 92:4fc01daae5a5 39 #ifndef __STM32F4xx_HAL_SD_H
bogdanm 92:4fc01daae5a5 40 #define __STM32F4xx_HAL_SD_H
bogdanm 92:4fc01daae5a5 41
bogdanm 92:4fc01daae5a5 42 #ifdef __cplusplus
bogdanm 92:4fc01daae5a5 43 extern "C" {
bogdanm 92:4fc01daae5a5 44 #endif
Kojto 110:165afa46840b 45 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) || \
Kojto 110:165afa46840b 46 defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) || \
Kojto 110:165afa46840b 47 defined(STM32F401xC) || defined(STM32F401xE) || defined(STM32F411xE) || defined(STM32F446xx) || \
Kojto 110:165afa46840b 48 defined(STM32F469xx) || defined(STM32F479xx)
bogdanm 92:4fc01daae5a5 49 /* Includes ------------------------------------------------------------------*/
bogdanm 92:4fc01daae5a5 50 #include "stm32f4xx_ll_sdmmc.h"
bogdanm 92:4fc01daae5a5 51
bogdanm 92:4fc01daae5a5 52 /** @addtogroup STM32F4xx_HAL_Driver
bogdanm 92:4fc01daae5a5 53 * @{
bogdanm 92:4fc01daae5a5 54 */
bogdanm 92:4fc01daae5a5 55
Kojto 99:dbbf35b96557 56 /** @defgroup SD SD
Kojto 99:dbbf35b96557 57 * @brief SD HAL module driver
bogdanm 92:4fc01daae5a5 58 * @{
Kojto 99:dbbf35b96557 59 */
bogdanm 92:4fc01daae5a5 60
bogdanm 92:4fc01daae5a5 61 /* Exported types ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 62 /** @defgroup SD_Exported_Types SD Exported Types
Kojto 99:dbbf35b96557 63 * @{
Kojto 99:dbbf35b96557 64 */
Kojto 99:dbbf35b96557 65
Kojto 99:dbbf35b96557 66 /** @defgroup SD_Exported_Types_Group1 SD Handle Structure definition
bogdanm 92:4fc01daae5a5 67 * @{
bogdanm 92:4fc01daae5a5 68 */
bogdanm 92:4fc01daae5a5 69 #define SD_InitTypeDef SDIO_InitTypeDef
bogdanm 92:4fc01daae5a5 70 #define SD_TypeDef SDIO_TypeDef
bogdanm 92:4fc01daae5a5 71
bogdanm 92:4fc01daae5a5 72 typedef struct
bogdanm 92:4fc01daae5a5 73 {
bogdanm 92:4fc01daae5a5 74 SD_TypeDef *Instance; /*!< SDIO register base address */
bogdanm 92:4fc01daae5a5 75
bogdanm 92:4fc01daae5a5 76 SD_InitTypeDef Init; /*!< SD required parameters */
bogdanm 92:4fc01daae5a5 77
bogdanm 92:4fc01daae5a5 78 HAL_LockTypeDef Lock; /*!< SD locking object */
bogdanm 92:4fc01daae5a5 79
bogdanm 92:4fc01daae5a5 80 uint32_t CardType; /*!< SD card type */
bogdanm 92:4fc01daae5a5 81
bogdanm 92:4fc01daae5a5 82 uint32_t RCA; /*!< SD relative card address */
bogdanm 92:4fc01daae5a5 83
bogdanm 92:4fc01daae5a5 84 uint32_t CSD[4]; /*!< SD card specific data table */
bogdanm 92:4fc01daae5a5 85
bogdanm 92:4fc01daae5a5 86 uint32_t CID[4]; /*!< SD card identification number table */
bogdanm 92:4fc01daae5a5 87
bogdanm 92:4fc01daae5a5 88 __IO uint32_t SdTransferCplt; /*!< SD transfer complete flag in non blocking mode */
bogdanm 92:4fc01daae5a5 89
bogdanm 92:4fc01daae5a5 90 __IO uint32_t SdTransferErr; /*!< SD transfer error flag in non blocking mode */
bogdanm 92:4fc01daae5a5 91
bogdanm 92:4fc01daae5a5 92 __IO uint32_t DmaTransferCplt; /*!< SD DMA transfer complete flag */
bogdanm 92:4fc01daae5a5 93
bogdanm 92:4fc01daae5a5 94 __IO uint32_t SdOperation; /*!< SD transfer operation (read/write) */
bogdanm 92:4fc01daae5a5 95
bogdanm 92:4fc01daae5a5 96 DMA_HandleTypeDef *hdmarx; /*!< SD Rx DMA handle parameters */
bogdanm 92:4fc01daae5a5 97
bogdanm 92:4fc01daae5a5 98 DMA_HandleTypeDef *hdmatx; /*!< SD Tx DMA handle parameters */
bogdanm 92:4fc01daae5a5 99
bogdanm 92:4fc01daae5a5 100 }SD_HandleTypeDef;
Kojto 99:dbbf35b96557 101 /**
Kojto 99:dbbf35b96557 102 * @}
Kojto 99:dbbf35b96557 103 */
bogdanm 92:4fc01daae5a5 104
Kojto 99:dbbf35b96557 105 /** @defgroup SD_Exported_Types_Group2 Card Specific Data: CSD Register
Kojto 99:dbbf35b96557 106 * @{
bogdanm 92:4fc01daae5a5 107 */
bogdanm 92:4fc01daae5a5 108 typedef struct
bogdanm 92:4fc01daae5a5 109 {
bogdanm 92:4fc01daae5a5 110 __IO uint8_t CSDStruct; /*!< CSD structure */
bogdanm 92:4fc01daae5a5 111 __IO uint8_t SysSpecVersion; /*!< System specification version */
bogdanm 92:4fc01daae5a5 112 __IO uint8_t Reserved1; /*!< Reserved */
bogdanm 92:4fc01daae5a5 113 __IO uint8_t TAAC; /*!< Data read access time 1 */
bogdanm 92:4fc01daae5a5 114 __IO uint8_t NSAC; /*!< Data read access time 2 in CLK cycles */
bogdanm 92:4fc01daae5a5 115 __IO uint8_t MaxBusClkFrec; /*!< Max. bus clock frequency */
bogdanm 92:4fc01daae5a5 116 __IO uint16_t CardComdClasses; /*!< Card command classes */
bogdanm 92:4fc01daae5a5 117 __IO uint8_t RdBlockLen; /*!< Max. read data block length */
bogdanm 92:4fc01daae5a5 118 __IO uint8_t PartBlockRead; /*!< Partial blocks for read allowed */
bogdanm 92:4fc01daae5a5 119 __IO uint8_t WrBlockMisalign; /*!< Write block misalignment */
bogdanm 92:4fc01daae5a5 120 __IO uint8_t RdBlockMisalign; /*!< Read block misalignment */
bogdanm 92:4fc01daae5a5 121 __IO uint8_t DSRImpl; /*!< DSR implemented */
bogdanm 92:4fc01daae5a5 122 __IO uint8_t Reserved2; /*!< Reserved */
bogdanm 92:4fc01daae5a5 123 __IO uint32_t DeviceSize; /*!< Device Size */
bogdanm 92:4fc01daae5a5 124 __IO uint8_t MaxRdCurrentVDDMin; /*!< Max. read current @ VDD min */
bogdanm 92:4fc01daae5a5 125 __IO uint8_t MaxRdCurrentVDDMax; /*!< Max. read current @ VDD max */
bogdanm 92:4fc01daae5a5 126 __IO uint8_t MaxWrCurrentVDDMin; /*!< Max. write current @ VDD min */
bogdanm 92:4fc01daae5a5 127 __IO uint8_t MaxWrCurrentVDDMax; /*!< Max. write current @ VDD max */
bogdanm 92:4fc01daae5a5 128 __IO uint8_t DeviceSizeMul; /*!< Device size multiplier */
bogdanm 92:4fc01daae5a5 129 __IO uint8_t EraseGrSize; /*!< Erase group size */
bogdanm 92:4fc01daae5a5 130 __IO uint8_t EraseGrMul; /*!< Erase group size multiplier */
bogdanm 92:4fc01daae5a5 131 __IO uint8_t WrProtectGrSize; /*!< Write protect group size */
bogdanm 92:4fc01daae5a5 132 __IO uint8_t WrProtectGrEnable; /*!< Write protect group enable */
bogdanm 92:4fc01daae5a5 133 __IO uint8_t ManDeflECC; /*!< Manufacturer default ECC */
bogdanm 92:4fc01daae5a5 134 __IO uint8_t WrSpeedFact; /*!< Write speed factor */
bogdanm 92:4fc01daae5a5 135 __IO uint8_t MaxWrBlockLen; /*!< Max. write data block length */
bogdanm 92:4fc01daae5a5 136 __IO uint8_t WriteBlockPaPartial; /*!< Partial blocks for write allowed */
bogdanm 92:4fc01daae5a5 137 __IO uint8_t Reserved3; /*!< Reserved */
bogdanm 92:4fc01daae5a5 138 __IO uint8_t ContentProtectAppli; /*!< Content protection application */
bogdanm 92:4fc01daae5a5 139 __IO uint8_t FileFormatGrouop; /*!< File format group */
bogdanm 92:4fc01daae5a5 140 __IO uint8_t CopyFlag; /*!< Copy flag (OTP) */
bogdanm 92:4fc01daae5a5 141 __IO uint8_t PermWrProtect; /*!< Permanent write protection */
bogdanm 92:4fc01daae5a5 142 __IO uint8_t TempWrProtect; /*!< Temporary write protection */
bogdanm 92:4fc01daae5a5 143 __IO uint8_t FileFormat; /*!< File format */
bogdanm 92:4fc01daae5a5 144 __IO uint8_t ECC; /*!< ECC code */
bogdanm 92:4fc01daae5a5 145 __IO uint8_t CSD_CRC; /*!< CSD CRC */
bogdanm 92:4fc01daae5a5 146 __IO uint8_t Reserved4; /*!< Always 1 */
bogdanm 92:4fc01daae5a5 147
bogdanm 92:4fc01daae5a5 148 }HAL_SD_CSDTypedef;
Kojto 99:dbbf35b96557 149 /**
Kojto 99:dbbf35b96557 150 * @}
Kojto 99:dbbf35b96557 151 */
bogdanm 92:4fc01daae5a5 152
Kojto 99:dbbf35b96557 153 /** @defgroup SD_Exported_Types_Group3 Card Identification Data: CID Register
Kojto 99:dbbf35b96557 154 * @{
Kojto 99:dbbf35b96557 155 */
bogdanm 92:4fc01daae5a5 156 typedef struct
bogdanm 92:4fc01daae5a5 157 {
bogdanm 92:4fc01daae5a5 158 __IO uint8_t ManufacturerID; /*!< Manufacturer ID */
bogdanm 92:4fc01daae5a5 159 __IO uint16_t OEM_AppliID; /*!< OEM/Application ID */
bogdanm 92:4fc01daae5a5 160 __IO uint32_t ProdName1; /*!< Product Name part1 */
bogdanm 92:4fc01daae5a5 161 __IO uint8_t ProdName2; /*!< Product Name part2 */
bogdanm 92:4fc01daae5a5 162 __IO uint8_t ProdRev; /*!< Product Revision */
bogdanm 92:4fc01daae5a5 163 __IO uint32_t ProdSN; /*!< Product Serial Number */
bogdanm 92:4fc01daae5a5 164 __IO uint8_t Reserved1; /*!< Reserved1 */
bogdanm 92:4fc01daae5a5 165 __IO uint16_t ManufactDate; /*!< Manufacturing Date */
bogdanm 92:4fc01daae5a5 166 __IO uint8_t CID_CRC; /*!< CID CRC */
bogdanm 92:4fc01daae5a5 167 __IO uint8_t Reserved2; /*!< Always 1 */
bogdanm 92:4fc01daae5a5 168
bogdanm 92:4fc01daae5a5 169 }HAL_SD_CIDTypedef;
Kojto 99:dbbf35b96557 170 /**
Kojto 99:dbbf35b96557 171 * @}
Kojto 99:dbbf35b96557 172 */
bogdanm 92:4fc01daae5a5 173
Kojto 99:dbbf35b96557 174 /** @defgroup SD_Exported_Types_Group4 SD Card Status returned by ACMD13
Kojto 99:dbbf35b96557 175 * @{
Kojto 99:dbbf35b96557 176 */
bogdanm 92:4fc01daae5a5 177 typedef struct
bogdanm 92:4fc01daae5a5 178 {
bogdanm 92:4fc01daae5a5 179 __IO uint8_t DAT_BUS_WIDTH; /*!< Shows the currently defined data bus width */
bogdanm 92:4fc01daae5a5 180 __IO uint8_t SECURED_MODE; /*!< Card is in secured mode of operation */
bogdanm 92:4fc01daae5a5 181 __IO uint16_t SD_CARD_TYPE; /*!< Carries information about card type */
bogdanm 92:4fc01daae5a5 182 __IO uint32_t SIZE_OF_PROTECTED_AREA; /*!< Carries information about the capacity of protected area */
bogdanm 92:4fc01daae5a5 183 __IO uint8_t SPEED_CLASS; /*!< Carries information about the speed class of the card */
bogdanm 92:4fc01daae5a5 184 __IO uint8_t PERFORMANCE_MOVE; /*!< Carries information about the card's performance move */
bogdanm 92:4fc01daae5a5 185 __IO uint8_t AU_SIZE; /*!< Carries information about the card's allocation unit size */
bogdanm 92:4fc01daae5a5 186 __IO uint16_t ERASE_SIZE; /*!< Determines the number of AUs to be erased in one operation */
bogdanm 92:4fc01daae5a5 187 __IO uint8_t ERASE_TIMEOUT; /*!< Determines the timeout for any number of AU erase */
bogdanm 92:4fc01daae5a5 188 __IO uint8_t ERASE_OFFSET; /*!< Carries information about the erase offset */
bogdanm 92:4fc01daae5a5 189
bogdanm 92:4fc01daae5a5 190 }HAL_SD_CardStatusTypedef;
Kojto 99:dbbf35b96557 191 /**
Kojto 99:dbbf35b96557 192 * @}
Kojto 99:dbbf35b96557 193 */
bogdanm 92:4fc01daae5a5 194
Kojto 99:dbbf35b96557 195 /** @defgroup SD_Exported_Types_Group5 SD Card information structure
Kojto 99:dbbf35b96557 196 * @{
Kojto 99:dbbf35b96557 197 */
bogdanm 92:4fc01daae5a5 198 typedef struct
bogdanm 92:4fc01daae5a5 199 {
bogdanm 92:4fc01daae5a5 200 HAL_SD_CSDTypedef SD_csd; /*!< SD card specific data register */
bogdanm 92:4fc01daae5a5 201 HAL_SD_CIDTypedef SD_cid; /*!< SD card identification number register */
bogdanm 92:4fc01daae5a5 202 uint64_t CardCapacity; /*!< Card capacity */
bogdanm 92:4fc01daae5a5 203 uint32_t CardBlockSize; /*!< Card block size */
bogdanm 92:4fc01daae5a5 204 uint16_t RCA; /*!< SD relative card address */
bogdanm 92:4fc01daae5a5 205 uint8_t CardType; /*!< SD card type */
bogdanm 92:4fc01daae5a5 206
bogdanm 92:4fc01daae5a5 207 }HAL_SD_CardInfoTypedef;
Kojto 99:dbbf35b96557 208 /**
Kojto 99:dbbf35b96557 209 * @}
Kojto 99:dbbf35b96557 210 */
bogdanm 92:4fc01daae5a5 211
Kojto 99:dbbf35b96557 212 /** @defgroup SD_Exported_Types_Group6 SD Error status enumeration Structure definition
Kojto 99:dbbf35b96557 213 * @{
Kojto 99:dbbf35b96557 214 */
bogdanm 92:4fc01daae5a5 215 typedef enum
bogdanm 92:4fc01daae5a5 216 {
bogdanm 92:4fc01daae5a5 217 /**
bogdanm 92:4fc01daae5a5 218 * @brief SD specific error defines
bogdanm 92:4fc01daae5a5 219 */
bogdanm 92:4fc01daae5a5 220 SD_CMD_CRC_FAIL = (1), /*!< Command response received (but CRC check failed) */
bogdanm 92:4fc01daae5a5 221 SD_DATA_CRC_FAIL = (2), /*!< Data block sent/received (CRC check failed) */
bogdanm 92:4fc01daae5a5 222 SD_CMD_RSP_TIMEOUT = (3), /*!< Command response timeout */
bogdanm 92:4fc01daae5a5 223 SD_DATA_TIMEOUT = (4), /*!< Data timeout */
bogdanm 92:4fc01daae5a5 224 SD_TX_UNDERRUN = (5), /*!< Transmit FIFO underrun */
bogdanm 92:4fc01daae5a5 225 SD_RX_OVERRUN = (6), /*!< Receive FIFO overrun */
bogdanm 92:4fc01daae5a5 226 SD_START_BIT_ERR = (7), /*!< Start bit not detected on all data signals in wide bus mode */
bogdanm 92:4fc01daae5a5 227 SD_CMD_OUT_OF_RANGE = (8), /*!< Command's argument was out of range. */
bogdanm 92:4fc01daae5a5 228 SD_ADDR_MISALIGNED = (9), /*!< Misaligned address */
bogdanm 92:4fc01daae5a5 229 SD_BLOCK_LEN_ERR = (10), /*!< Transferred block length is not allowed for the card or the number of transferred bytes does not match the block length */
bogdanm 92:4fc01daae5a5 230 SD_ERASE_SEQ_ERR = (11), /*!< An error in the sequence of erase command occurs. */
bogdanm 92:4fc01daae5a5 231 SD_BAD_ERASE_PARAM = (12), /*!< An invalid selection for erase groups */
bogdanm 92:4fc01daae5a5 232 SD_WRITE_PROT_VIOLATION = (13), /*!< Attempt to program a write protect block */
bogdanm 92:4fc01daae5a5 233 SD_LOCK_UNLOCK_FAILED = (14), /*!< Sequence or password error has been detected in unlock command or if there was an attempt to access a locked card */
bogdanm 92:4fc01daae5a5 234 SD_COM_CRC_FAILED = (15), /*!< CRC check of the previous command failed */
bogdanm 92:4fc01daae5a5 235 SD_ILLEGAL_CMD = (16), /*!< Command is not legal for the card state */
bogdanm 92:4fc01daae5a5 236 SD_CARD_ECC_FAILED = (17), /*!< Card internal ECC was applied but failed to correct the data */
bogdanm 92:4fc01daae5a5 237 SD_CC_ERROR = (18), /*!< Internal card controller error */
bogdanm 92:4fc01daae5a5 238 SD_GENERAL_UNKNOWN_ERROR = (19), /*!< General or unknown error */
bogdanm 92:4fc01daae5a5 239 SD_STREAM_READ_UNDERRUN = (20), /*!< The card could not sustain data transfer in stream read operation. */
bogdanm 92:4fc01daae5a5 240 SD_STREAM_WRITE_OVERRUN = (21), /*!< The card could not sustain data programming in stream mode */
bogdanm 92:4fc01daae5a5 241 SD_CID_CSD_OVERWRITE = (22), /*!< CID/CSD overwrite error */
bogdanm 92:4fc01daae5a5 242 SD_WP_ERASE_SKIP = (23), /*!< Only partial address space was erased */
bogdanm 92:4fc01daae5a5 243 SD_CARD_ECC_DISABLED = (24), /*!< Command has been executed without using internal ECC */
bogdanm 92:4fc01daae5a5 244 SD_ERASE_RESET = (25), /*!< Erase sequence was cleared before executing because an out of erase sequence command was received */
bogdanm 92:4fc01daae5a5 245 SD_AKE_SEQ_ERROR = (26), /*!< Error in sequence of authentication. */
bogdanm 92:4fc01daae5a5 246 SD_INVALID_VOLTRANGE = (27),
bogdanm 92:4fc01daae5a5 247 SD_ADDR_OUT_OF_RANGE = (28),
bogdanm 92:4fc01daae5a5 248 SD_SWITCH_ERROR = (29),
bogdanm 92:4fc01daae5a5 249 SD_SDIO_DISABLED = (30),
bogdanm 92:4fc01daae5a5 250 SD_SDIO_FUNCTION_BUSY = (31),
bogdanm 92:4fc01daae5a5 251 SD_SDIO_FUNCTION_FAILED = (32),
bogdanm 92:4fc01daae5a5 252 SD_SDIO_UNKNOWN_FUNCTION = (33),
bogdanm 92:4fc01daae5a5 253
bogdanm 92:4fc01daae5a5 254 /**
bogdanm 92:4fc01daae5a5 255 * @brief Standard error defines
bogdanm 92:4fc01daae5a5 256 */
bogdanm 92:4fc01daae5a5 257 SD_INTERNAL_ERROR = (34),
bogdanm 92:4fc01daae5a5 258 SD_NOT_CONFIGURED = (35),
bogdanm 92:4fc01daae5a5 259 SD_REQUEST_PENDING = (36),
bogdanm 92:4fc01daae5a5 260 SD_REQUEST_NOT_APPLICABLE = (37),
bogdanm 92:4fc01daae5a5 261 SD_INVALID_PARAMETER = (38),
bogdanm 92:4fc01daae5a5 262 SD_UNSUPPORTED_FEATURE = (39),
bogdanm 92:4fc01daae5a5 263 SD_UNSUPPORTED_HW = (40),
bogdanm 92:4fc01daae5a5 264 SD_ERROR = (41),
bogdanm 92:4fc01daae5a5 265 SD_OK = (0)
bogdanm 92:4fc01daae5a5 266
bogdanm 92:4fc01daae5a5 267 }HAL_SD_ErrorTypedef;
Kojto 99:dbbf35b96557 268 /**
Kojto 99:dbbf35b96557 269 * @}
Kojto 99:dbbf35b96557 270 */
bogdanm 92:4fc01daae5a5 271
Kojto 99:dbbf35b96557 272 /** @defgroup SD_Exported_Types_Group7 SD Transfer state enumeration structure
Kojto 99:dbbf35b96557 273 * @{
Kojto 99:dbbf35b96557 274 */
bogdanm 92:4fc01daae5a5 275 typedef enum
bogdanm 92:4fc01daae5a5 276 {
bogdanm 92:4fc01daae5a5 277 SD_TRANSFER_OK = 0, /*!< Transfer success */
bogdanm 92:4fc01daae5a5 278 SD_TRANSFER_BUSY = 1, /*!< Transfer is occurring */
bogdanm 92:4fc01daae5a5 279 SD_TRANSFER_ERROR = 2 /*!< Transfer failed */
bogdanm 92:4fc01daae5a5 280
bogdanm 92:4fc01daae5a5 281 }HAL_SD_TransferStateTypedef;
Kojto 99:dbbf35b96557 282 /**
Kojto 99:dbbf35b96557 283 * @}
Kojto 99:dbbf35b96557 284 */
bogdanm 92:4fc01daae5a5 285
Kojto 99:dbbf35b96557 286 /** @defgroup SD_Exported_Types_Group8 SD Card State enumeration structure
Kojto 99:dbbf35b96557 287 * @{
Kojto 99:dbbf35b96557 288 */
bogdanm 92:4fc01daae5a5 289 typedef enum
bogdanm 92:4fc01daae5a5 290 {
bogdanm 92:4fc01daae5a5 291 SD_CARD_READY = ((uint32_t)0x00000001), /*!< Card state is ready */
bogdanm 92:4fc01daae5a5 292 SD_CARD_IDENTIFICATION = ((uint32_t)0x00000002), /*!< Card is in identification state */
bogdanm 92:4fc01daae5a5 293 SD_CARD_STANDBY = ((uint32_t)0x00000003), /*!< Card is in standby state */
bogdanm 92:4fc01daae5a5 294 SD_CARD_TRANSFER = ((uint32_t)0x00000004), /*!< Card is in transfer state */
bogdanm 92:4fc01daae5a5 295 SD_CARD_SENDING = ((uint32_t)0x00000005), /*!< Card is sending an operation */
bogdanm 92:4fc01daae5a5 296 SD_CARD_RECEIVING = ((uint32_t)0x00000006), /*!< Card is receiving operation information */
bogdanm 92:4fc01daae5a5 297 SD_CARD_PROGRAMMING = ((uint32_t)0x00000007), /*!< Card is in programming state */
bogdanm 92:4fc01daae5a5 298 SD_CARD_DISCONNECTED = ((uint32_t)0x00000008), /*!< Card is disconnected */
bogdanm 92:4fc01daae5a5 299 SD_CARD_ERROR = ((uint32_t)0x000000FF) /*!< Card is in error state */
bogdanm 92:4fc01daae5a5 300
bogdanm 92:4fc01daae5a5 301 }HAL_SD_CardStateTypedef;
Kojto 99:dbbf35b96557 302 /**
Kojto 99:dbbf35b96557 303 * @}
Kojto 99:dbbf35b96557 304 */
bogdanm 92:4fc01daae5a5 305
Kojto 99:dbbf35b96557 306 /** @defgroup SD_Exported_Types_Group9 SD Operation enumeration structure
Kojto 99:dbbf35b96557 307 * @{
Kojto 99:dbbf35b96557 308 */
bogdanm 92:4fc01daae5a5 309 typedef enum
bogdanm 92:4fc01daae5a5 310 {
bogdanm 92:4fc01daae5a5 311 SD_READ_SINGLE_BLOCK = 0, /*!< Read single block operation */
bogdanm 92:4fc01daae5a5 312 SD_READ_MULTIPLE_BLOCK = 1, /*!< Read multiple blocks operation */
bogdanm 92:4fc01daae5a5 313 SD_WRITE_SINGLE_BLOCK = 2, /*!< Write single block operation */
bogdanm 92:4fc01daae5a5 314 SD_WRITE_MULTIPLE_BLOCK = 3 /*!< Write multiple blocks operation */
bogdanm 92:4fc01daae5a5 315
bogdanm 92:4fc01daae5a5 316 }HAL_SD_OperationTypedef;
Kojto 99:dbbf35b96557 317 /**
Kojto 99:dbbf35b96557 318 * @}
Kojto 99:dbbf35b96557 319 */
bogdanm 92:4fc01daae5a5 320
Kojto 99:dbbf35b96557 321 /**
Kojto 99:dbbf35b96557 322 * @}
Kojto 99:dbbf35b96557 323 */
bogdanm 92:4fc01daae5a5 324
bogdanm 92:4fc01daae5a5 325 /* Exported constants --------------------------------------------------------*/
Kojto 99:dbbf35b96557 326 /** @defgroup SD_Exported_Constants SD Exported Constants
bogdanm 92:4fc01daae5a5 327 * @{
bogdanm 92:4fc01daae5a5 328 */
bogdanm 92:4fc01daae5a5 329
bogdanm 92:4fc01daae5a5 330 /**
bogdanm 92:4fc01daae5a5 331 * @brief SD Commands Index
bogdanm 92:4fc01daae5a5 332 */
bogdanm 92:4fc01daae5a5 333 #define SD_CMD_GO_IDLE_STATE ((uint8_t)0) /*!< Resets the SD memory card. */
bogdanm 92:4fc01daae5a5 334 #define SD_CMD_SEND_OP_COND ((uint8_t)1) /*!< Sends host capacity support information and activates the card's initialization process. */
bogdanm 92:4fc01daae5a5 335 #define SD_CMD_ALL_SEND_CID ((uint8_t)2) /*!< Asks any card connected to the host to send the CID numbers on the CMD line. */
bogdanm 92:4fc01daae5a5 336 #define SD_CMD_SET_REL_ADDR ((uint8_t)3) /*!< Asks the card to publish a new relative address (RCA). */
bogdanm 92:4fc01daae5a5 337 #define SD_CMD_SET_DSR ((uint8_t)4) /*!< Programs the DSR of all cards. */
bogdanm 92:4fc01daae5a5 338 #define SD_CMD_SDIO_SEN_OP_COND ((uint8_t)5) /*!< Sends host capacity support information (HCS) and asks the accessed card to send its
bogdanm 92:4fc01daae5a5 339 operating condition register (OCR) content in the response on the CMD line. */
bogdanm 92:4fc01daae5a5 340 #define SD_CMD_HS_SWITCH ((uint8_t)6) /*!< Checks switchable function (mode 0) and switch card function (mode 1). */
bogdanm 92:4fc01daae5a5 341 #define SD_CMD_SEL_DESEL_CARD ((uint8_t)7) /*!< Selects the card by its own relative address and gets deselected by any other address */
bogdanm 92:4fc01daae5a5 342 #define SD_CMD_HS_SEND_EXT_CSD ((uint8_t)8) /*!< Sends SD Memory Card interface condition, which includes host supply voltage information
bogdanm 92:4fc01daae5a5 343 and asks the card whether card supports voltage. */
bogdanm 92:4fc01daae5a5 344 #define SD_CMD_SEND_CSD ((uint8_t)9) /*!< Addressed card sends its card specific data (CSD) on the CMD line. */
bogdanm 92:4fc01daae5a5 345 #define SD_CMD_SEND_CID ((uint8_t)10) /*!< Addressed card sends its card identification (CID) on the CMD line. */
bogdanm 92:4fc01daae5a5 346 #define SD_CMD_READ_DAT_UNTIL_STOP ((uint8_t)11) /*!< SD card doesn't support it. */
bogdanm 92:4fc01daae5a5 347 #define SD_CMD_STOP_TRANSMISSION ((uint8_t)12) /*!< Forces the card to stop transmission. */
bogdanm 92:4fc01daae5a5 348 #define SD_CMD_SEND_STATUS ((uint8_t)13) /*!< Addressed card sends its status register. */
bogdanm 92:4fc01daae5a5 349 #define SD_CMD_HS_BUSTEST_READ ((uint8_t)14)
bogdanm 92:4fc01daae5a5 350 #define SD_CMD_GO_INACTIVE_STATE ((uint8_t)15) /*!< Sends an addressed card into the inactive state. */
bogdanm 92:4fc01daae5a5 351 #define SD_CMD_SET_BLOCKLEN ((uint8_t)16) /*!< Sets the block length (in bytes for SDSC) for all following block commands
bogdanm 92:4fc01daae5a5 352 (read, write, lock). Default block length is fixed to 512 Bytes. Not effective
bogdanm 92:4fc01daae5a5 353 for SDHS and SDXC. */
bogdanm 92:4fc01daae5a5 354 #define SD_CMD_READ_SINGLE_BLOCK ((uint8_t)17) /*!< Reads single block of size selected by SET_BLOCKLEN in case of SDSC, and a block of
bogdanm 92:4fc01daae5a5 355 fixed 512 bytes in case of SDHC and SDXC. */
bogdanm 92:4fc01daae5a5 356 #define SD_CMD_READ_MULT_BLOCK ((uint8_t)18) /*!< Continuously transfers data blocks from card to host until interrupted by
bogdanm 92:4fc01daae5a5 357 STOP_TRANSMISSION command. */
bogdanm 92:4fc01daae5a5 358 #define SD_CMD_HS_BUSTEST_WRITE ((uint8_t)19) /*!< 64 bytes tuning pattern is sent for SDR50 and SDR104. */
bogdanm 92:4fc01daae5a5 359 #define SD_CMD_WRITE_DAT_UNTIL_STOP ((uint8_t)20) /*!< Speed class control command. */
bogdanm 92:4fc01daae5a5 360 #define SD_CMD_SET_BLOCK_COUNT ((uint8_t)23) /*!< Specify block count for CMD18 and CMD25. */
bogdanm 92:4fc01daae5a5 361 #define SD_CMD_WRITE_SINGLE_BLOCK ((uint8_t)24) /*!< Writes single block of size selected by SET_BLOCKLEN in case of SDSC, and a block of
bogdanm 92:4fc01daae5a5 362 fixed 512 bytes in case of SDHC and SDXC. */
bogdanm 92:4fc01daae5a5 363 #define SD_CMD_WRITE_MULT_BLOCK ((uint8_t)25) /*!< Continuously writes blocks of data until a STOP_TRANSMISSION follows. */
bogdanm 92:4fc01daae5a5 364 #define SD_CMD_PROG_CID ((uint8_t)26) /*!< Reserved for manufacturers. */
bogdanm 92:4fc01daae5a5 365 #define SD_CMD_PROG_CSD ((uint8_t)27) /*!< Programming of the programmable bits of the CSD. */
bogdanm 92:4fc01daae5a5 366 #define SD_CMD_SET_WRITE_PROT ((uint8_t)28) /*!< Sets the write protection bit of the addressed group. */
bogdanm 92:4fc01daae5a5 367 #define SD_CMD_CLR_WRITE_PROT ((uint8_t)29) /*!< Clears the write protection bit of the addressed group. */
bogdanm 92:4fc01daae5a5 368 #define SD_CMD_SEND_WRITE_PROT ((uint8_t)30) /*!< Asks the card to send the status of the write protection bits. */
bogdanm 92:4fc01daae5a5 369 #define SD_CMD_SD_ERASE_GRP_START ((uint8_t)32) /*!< Sets the address of the first write block to be erased. (For SD card only). */
bogdanm 92:4fc01daae5a5 370 #define SD_CMD_SD_ERASE_GRP_END ((uint8_t)33) /*!< Sets the address of the last write block of the continuous range to be erased. */
bogdanm 92:4fc01daae5a5 371 #define SD_CMD_ERASE_GRP_START ((uint8_t)35) /*!< Sets the address of the first write block to be erased. Reserved for each command
bogdanm 92:4fc01daae5a5 372 system set by switch function command (CMD6). */
bogdanm 92:4fc01daae5a5 373 #define SD_CMD_ERASE_GRP_END ((uint8_t)36) /*!< Sets the address of the last write block of the continuous range to be erased.
bogdanm 92:4fc01daae5a5 374 Reserved for each command system set by switch function command (CMD6). */
bogdanm 92:4fc01daae5a5 375 #define SD_CMD_ERASE ((uint8_t)38) /*!< Reserved for SD security applications. */
bogdanm 92:4fc01daae5a5 376 #define SD_CMD_FAST_IO ((uint8_t)39) /*!< SD card doesn't support it (Reserved). */
bogdanm 92:4fc01daae5a5 377 #define SD_CMD_GO_IRQ_STATE ((uint8_t)40) /*!< SD card doesn't support it (Reserved). */
bogdanm 92:4fc01daae5a5 378 #define SD_CMD_LOCK_UNLOCK ((uint8_t)42) /*!< Sets/resets the password or lock/unlock the card. The size of the data block is set by
bogdanm 92:4fc01daae5a5 379 the SET_BLOCK_LEN command. */
bogdanm 92:4fc01daae5a5 380 #define SD_CMD_APP_CMD ((uint8_t)55) /*!< Indicates to the card that the next command is an application specific command rather
bogdanm 92:4fc01daae5a5 381 than a standard command. */
bogdanm 92:4fc01daae5a5 382 #define SD_CMD_GEN_CMD ((uint8_t)56) /*!< Used either to transfer a data block to the card or to get a data block from the card
bogdanm 92:4fc01daae5a5 383 for general purpose/application specific commands. */
bogdanm 92:4fc01daae5a5 384 #define SD_CMD_NO_CMD ((uint8_t)64)
bogdanm 92:4fc01daae5a5 385
bogdanm 92:4fc01daae5a5 386 /**
bogdanm 92:4fc01daae5a5 387 * @brief Following commands are SD Card Specific commands.
bogdanm 92:4fc01daae5a5 388 * SDIO_APP_CMD should be sent before sending these commands.
bogdanm 92:4fc01daae5a5 389 */
bogdanm 92:4fc01daae5a5 390 #define SD_CMD_APP_SD_SET_BUSWIDTH ((uint8_t)6) /*!< (ACMD6) Defines the data bus width to be used for data transfer. The allowed data bus
bogdanm 92:4fc01daae5a5 391 widths are given in SCR register. */
Kojto 99:dbbf35b96557 392 #define SD_CMD_SD_APP_STATUS ((uint8_t)13) /*!< (ACMD13) Sends the SD status. */
bogdanm 92:4fc01daae5a5 393 #define SD_CMD_SD_APP_SEND_NUM_WRITE_BLOCKS ((uint8_t)22) /*!< (ACMD22) Sends the number of the written (without errors) write blocks. Responds with
bogdanm 92:4fc01daae5a5 394 32bit+CRC data block. */
bogdanm 92:4fc01daae5a5 395 #define SD_CMD_SD_APP_OP_COND ((uint8_t)41) /*!< (ACMD41) Sends host capacity support information (HCS) and asks the accessed card to
bogdanm 92:4fc01daae5a5 396 send its operating condition register (OCR) content in the response on the CMD line. */
bogdanm 92:4fc01daae5a5 397 #define SD_CMD_SD_APP_SET_CLR_CARD_DETECT ((uint8_t)42) /*!< (ACMD42) Connects/Disconnects the 50 KOhm pull-up resistor on CD/DAT3 (pin 1) of the card. */
bogdanm 92:4fc01daae5a5 398 #define SD_CMD_SD_APP_SEND_SCR ((uint8_t)51) /*!< Reads the SD Configuration Register (SCR). */
bogdanm 92:4fc01daae5a5 399 #define SD_CMD_SDIO_RW_DIRECT ((uint8_t)52) /*!< For SD I/O card only, reserved for security specification. */
bogdanm 92:4fc01daae5a5 400 #define SD_CMD_SDIO_RW_EXTENDED ((uint8_t)53) /*!< For SD I/O card only, reserved for security specification. */
bogdanm 92:4fc01daae5a5 401
bogdanm 92:4fc01daae5a5 402 /**
bogdanm 92:4fc01daae5a5 403 * @brief Following commands are SD Card Specific security commands.
bogdanm 92:4fc01daae5a5 404 * SD_CMD_APP_CMD should be sent before sending these commands.
bogdanm 92:4fc01daae5a5 405 */
bogdanm 92:4fc01daae5a5 406 #define SD_CMD_SD_APP_GET_MKB ((uint8_t)43) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 407 #define SD_CMD_SD_APP_GET_MID ((uint8_t)44) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 408 #define SD_CMD_SD_APP_SET_CER_RN1 ((uint8_t)45) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 409 #define SD_CMD_SD_APP_GET_CER_RN2 ((uint8_t)46) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 410 #define SD_CMD_SD_APP_SET_CER_RES2 ((uint8_t)47) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 411 #define SD_CMD_SD_APP_GET_CER_RES1 ((uint8_t)48) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 412 #define SD_CMD_SD_APP_SECURE_READ_MULTIPLE_BLOCK ((uint8_t)18) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 413 #define SD_CMD_SD_APP_SECURE_WRITE_MULTIPLE_BLOCK ((uint8_t)25) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 414 #define SD_CMD_SD_APP_SECURE_ERASE ((uint8_t)38) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 415 #define SD_CMD_SD_APP_CHANGE_SECURE_AREA ((uint8_t)49) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 416 #define SD_CMD_SD_APP_SECURE_WRITE_MKB ((uint8_t)48) /*!< For SD card only */
bogdanm 92:4fc01daae5a5 417
bogdanm 92:4fc01daae5a5 418 /**
bogdanm 92:4fc01daae5a5 419 * @brief Supported SD Memory Cards
bogdanm 92:4fc01daae5a5 420 */
bogdanm 92:4fc01daae5a5 421 #define STD_CAPACITY_SD_CARD_V1_1 ((uint32_t)0x00000000)
bogdanm 92:4fc01daae5a5 422 #define STD_CAPACITY_SD_CARD_V2_0 ((uint32_t)0x00000001)
bogdanm 92:4fc01daae5a5 423 #define HIGH_CAPACITY_SD_CARD ((uint32_t)0x00000002)
bogdanm 92:4fc01daae5a5 424 #define MULTIMEDIA_CARD ((uint32_t)0x00000003)
bogdanm 92:4fc01daae5a5 425 #define SECURE_DIGITAL_IO_CARD ((uint32_t)0x00000004)
bogdanm 92:4fc01daae5a5 426 #define HIGH_SPEED_MULTIMEDIA_CARD ((uint32_t)0x00000005)
bogdanm 92:4fc01daae5a5 427 #define SECURE_DIGITAL_IO_COMBO_CARD ((uint32_t)0x00000006)
bogdanm 92:4fc01daae5a5 428 #define HIGH_CAPACITY_MMC_CARD ((uint32_t)0x00000007)
bogdanm 92:4fc01daae5a5 429 /**
bogdanm 92:4fc01daae5a5 430 * @}
bogdanm 92:4fc01daae5a5 431 */
bogdanm 92:4fc01daae5a5 432
bogdanm 92:4fc01daae5a5 433 /* Exported macro ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 434 /** @defgroup SD_Exported_macros SD Exported Macros
Kojto 99:dbbf35b96557 435 * @brief macros to handle interrupts and specific clock configurations
Kojto 99:dbbf35b96557 436 * @{
Kojto 99:dbbf35b96557 437 */
bogdanm 92:4fc01daae5a5 438
bogdanm 92:4fc01daae5a5 439 /**
bogdanm 92:4fc01daae5a5 440 * @brief Enable the SD device.
bogdanm 92:4fc01daae5a5 441 * @retval None
bogdanm 92:4fc01daae5a5 442 */
bogdanm 92:4fc01daae5a5 443 #define __HAL_SD_SDIO_ENABLE() __SDIO_ENABLE()
bogdanm 92:4fc01daae5a5 444
bogdanm 92:4fc01daae5a5 445 /**
bogdanm 92:4fc01daae5a5 446 * @brief Disable the SD device.
bogdanm 92:4fc01daae5a5 447 * @retval None
bogdanm 92:4fc01daae5a5 448 */
bogdanm 92:4fc01daae5a5 449 #define __HAL_SD_SDIO_DISABLE() __SDIO_DISABLE()
bogdanm 92:4fc01daae5a5 450
bogdanm 92:4fc01daae5a5 451 /**
bogdanm 92:4fc01daae5a5 452 * @brief Enable the SDIO DMA transfer.
bogdanm 92:4fc01daae5a5 453 * @retval None
bogdanm 92:4fc01daae5a5 454 */
bogdanm 92:4fc01daae5a5 455 #define __HAL_SD_SDIO_DMA_ENABLE() __SDIO_DMA_ENABLE()
bogdanm 92:4fc01daae5a5 456
bogdanm 92:4fc01daae5a5 457 /**
bogdanm 92:4fc01daae5a5 458 * @brief Disable the SDIO DMA transfer.
bogdanm 92:4fc01daae5a5 459 * @retval None
bogdanm 92:4fc01daae5a5 460 */
bogdanm 92:4fc01daae5a5 461 #define __HAL_SD_SDIO_DMA_DISABLE() __SDIO_DMA_DISABLE()
bogdanm 92:4fc01daae5a5 462
bogdanm 92:4fc01daae5a5 463 /**
bogdanm 92:4fc01daae5a5 464 * @brief Enable the SD device interrupt.
bogdanm 92:4fc01daae5a5 465 * @param __HANDLE__: SD Handle
bogdanm 92:4fc01daae5a5 466 * @param __INTERRUPT__: specifies the SDIO interrupt sources to be enabled.
bogdanm 92:4fc01daae5a5 467 * This parameter can be one or a combination of the following values:
bogdanm 92:4fc01daae5a5 468 * @arg SDIO_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
bogdanm 92:4fc01daae5a5 469 * @arg SDIO_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
bogdanm 92:4fc01daae5a5 470 * @arg SDIO_IT_CTIMEOUT: Command response timeout interrupt
bogdanm 92:4fc01daae5a5 471 * @arg SDIO_IT_DTIMEOUT: Data timeout interrupt
bogdanm 92:4fc01daae5a5 472 * @arg SDIO_IT_TXUNDERR: Transmit FIFO underrun error interrupt
bogdanm 92:4fc01daae5a5 473 * @arg SDIO_IT_RXOVERR: Received FIFO overrun error interrupt
bogdanm 92:4fc01daae5a5 474 * @arg SDIO_IT_CMDREND: Command response received (CRC check passed) interrupt
bogdanm 92:4fc01daae5a5 475 * @arg SDIO_IT_CMDSENT: Command sent (no response required) interrupt
bogdanm 92:4fc01daae5a5 476 * @arg SDIO_IT_DATAEND: Data end (data counter, SDIDCOUNT, is zero) interrupt
bogdanm 92:4fc01daae5a5 477 * @arg SDIO_IT_STBITERR: Start bit not detected on all data signals in wide
bogdanm 92:4fc01daae5a5 478 * bus mode interrupt
bogdanm 92:4fc01daae5a5 479 * @arg SDIO_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
bogdanm 92:4fc01daae5a5 480 * @arg SDIO_IT_CMDACT: Command transfer in progress interrupt
bogdanm 92:4fc01daae5a5 481 * @arg SDIO_IT_TXACT: Data transmit in progress interrupt
bogdanm 92:4fc01daae5a5 482 * @arg SDIO_IT_RXACT: Data receive in progress interrupt
bogdanm 92:4fc01daae5a5 483 * @arg SDIO_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
bogdanm 92:4fc01daae5a5 484 * @arg SDIO_IT_RXFIFOHF: Receive FIFO Half Full interrupt
bogdanm 92:4fc01daae5a5 485 * @arg SDIO_IT_TXFIFOF: Transmit FIFO full interrupt
bogdanm 92:4fc01daae5a5 486 * @arg SDIO_IT_RXFIFOF: Receive FIFO full interrupt
bogdanm 92:4fc01daae5a5 487 * @arg SDIO_IT_TXFIFOE: Transmit FIFO empty interrupt
bogdanm 92:4fc01daae5a5 488 * @arg SDIO_IT_RXFIFOE: Receive FIFO empty interrupt
bogdanm 92:4fc01daae5a5 489 * @arg SDIO_IT_TXDAVL: Data available in transmit FIFO interrupt
bogdanm 92:4fc01daae5a5 490 * @arg SDIO_IT_RXDAVL: Data available in receive FIFO interrupt
bogdanm 92:4fc01daae5a5 491 * @arg SDIO_IT_SDIOIT: SD I/O interrupt received interrupt
bogdanm 92:4fc01daae5a5 492 * @arg SDIO_IT_CEATAEND: CE-ATA command completion signal received for CMD61 interrupt
bogdanm 92:4fc01daae5a5 493 * @retval None
bogdanm 92:4fc01daae5a5 494 */
bogdanm 92:4fc01daae5a5 495 #define __HAL_SD_SDIO_ENABLE_IT(__HANDLE__, __INTERRUPT__) __SDIO_ENABLE_IT((__HANDLE__)->Instance, (__INTERRUPT__))
bogdanm 92:4fc01daae5a5 496
bogdanm 92:4fc01daae5a5 497 /**
bogdanm 92:4fc01daae5a5 498 * @brief Disable the SD device interrupt.
bogdanm 92:4fc01daae5a5 499 * @param __HANDLE__: SD Handle
bogdanm 92:4fc01daae5a5 500 * @param __INTERRUPT__: specifies the SDIO interrupt sources to be disabled.
bogdanm 92:4fc01daae5a5 501 * This parameter can be one or a combination of the following values:
bogdanm 92:4fc01daae5a5 502 * @arg SDIO_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
bogdanm 92:4fc01daae5a5 503 * @arg SDIO_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
bogdanm 92:4fc01daae5a5 504 * @arg SDIO_IT_CTIMEOUT: Command response timeout interrupt
bogdanm 92:4fc01daae5a5 505 * @arg SDIO_IT_DTIMEOUT: Data timeout interrupt
bogdanm 92:4fc01daae5a5 506 * @arg SDIO_IT_TXUNDERR: Transmit FIFO underrun error interrupt
bogdanm 92:4fc01daae5a5 507 * @arg SDIO_IT_RXOVERR: Received FIFO overrun error interrupt
bogdanm 92:4fc01daae5a5 508 * @arg SDIO_IT_CMDREND: Command response received (CRC check passed) interrupt
bogdanm 92:4fc01daae5a5 509 * @arg SDIO_IT_CMDSENT: Command sent (no response required) interrupt
bogdanm 92:4fc01daae5a5 510 * @arg SDIO_IT_DATAEND: Data end (data counter, SDIDCOUNT, is zero) interrupt
bogdanm 92:4fc01daae5a5 511 * @arg SDIO_IT_STBITERR: Start bit not detected on all data signals in wide
bogdanm 92:4fc01daae5a5 512 * bus mode interrupt
bogdanm 92:4fc01daae5a5 513 * @arg SDIO_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
bogdanm 92:4fc01daae5a5 514 * @arg SDIO_IT_CMDACT: Command transfer in progress interrupt
bogdanm 92:4fc01daae5a5 515 * @arg SDIO_IT_TXACT: Data transmit in progress interrupt
bogdanm 92:4fc01daae5a5 516 * @arg SDIO_IT_RXACT: Data receive in progress interrupt
bogdanm 92:4fc01daae5a5 517 * @arg SDIO_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
bogdanm 92:4fc01daae5a5 518 * @arg SDIO_IT_RXFIFOHF: Receive FIFO Half Full interrupt
bogdanm 92:4fc01daae5a5 519 * @arg SDIO_IT_TXFIFOF: Transmit FIFO full interrupt
bogdanm 92:4fc01daae5a5 520 * @arg SDIO_IT_RXFIFOF: Receive FIFO full interrupt
bogdanm 92:4fc01daae5a5 521 * @arg SDIO_IT_TXFIFOE: Transmit FIFO empty interrupt
bogdanm 92:4fc01daae5a5 522 * @arg SDIO_IT_RXFIFOE: Receive FIFO empty interrupt
bogdanm 92:4fc01daae5a5 523 * @arg SDIO_IT_TXDAVL: Data available in transmit FIFO interrupt
bogdanm 92:4fc01daae5a5 524 * @arg SDIO_IT_RXDAVL: Data available in receive FIFO interrupt
bogdanm 92:4fc01daae5a5 525 * @arg SDIO_IT_SDIOIT: SD I/O interrupt received interrupt
bogdanm 92:4fc01daae5a5 526 * @arg SDIO_IT_CEATAEND: CE-ATA command completion signal received for CMD61 interrupt
bogdanm 92:4fc01daae5a5 527 * @retval None
bogdanm 92:4fc01daae5a5 528 */
bogdanm 92:4fc01daae5a5 529 #define __HAL_SD_SDIO_DISABLE_IT(__HANDLE__, __INTERRUPT__) __SDIO_DISABLE_IT((__HANDLE__)->Instance, (__INTERRUPT__))
bogdanm 92:4fc01daae5a5 530
bogdanm 92:4fc01daae5a5 531 /**
bogdanm 92:4fc01daae5a5 532 * @brief Check whether the specified SD flag is set or not.
bogdanm 92:4fc01daae5a5 533 * @param __HANDLE__: SD Handle
bogdanm 92:4fc01daae5a5 534 * @param __FLAG__: specifies the flag to check.
bogdanm 92:4fc01daae5a5 535 * This parameter can be one of the following values:
bogdanm 92:4fc01daae5a5 536 * @arg SDIO_FLAG_CCRCFAIL: Command response received (CRC check failed)
bogdanm 92:4fc01daae5a5 537 * @arg SDIO_FLAG_DCRCFAIL: Data block sent/received (CRC check failed)
bogdanm 92:4fc01daae5a5 538 * @arg SDIO_FLAG_CTIMEOUT: Command response timeout
bogdanm 92:4fc01daae5a5 539 * @arg SDIO_FLAG_DTIMEOUT: Data timeout
bogdanm 92:4fc01daae5a5 540 * @arg SDIO_FLAG_TXUNDERR: Transmit FIFO underrun error
bogdanm 92:4fc01daae5a5 541 * @arg SDIO_FLAG_RXOVERR: Received FIFO overrun error
bogdanm 92:4fc01daae5a5 542 * @arg SDIO_FLAG_CMDREND: Command response received (CRC check passed)
bogdanm 92:4fc01daae5a5 543 * @arg SDIO_FLAG_CMDSENT: Command sent (no response required)
bogdanm 92:4fc01daae5a5 544 * @arg SDIO_FLAG_DATAEND: Data end (data counter, SDIDCOUNT, is zero)
bogdanm 92:4fc01daae5a5 545 * @arg SDIO_FLAG_STBITERR: Start bit not detected on all data signals in wide bus mode.
bogdanm 92:4fc01daae5a5 546 * @arg SDIO_FLAG_DBCKEND: Data block sent/received (CRC check passed)
bogdanm 92:4fc01daae5a5 547 * @arg SDIO_FLAG_CMDACT: Command transfer in progress
bogdanm 92:4fc01daae5a5 548 * @arg SDIO_FLAG_TXACT: Data transmit in progress
bogdanm 92:4fc01daae5a5 549 * @arg SDIO_FLAG_RXACT: Data receive in progress
bogdanm 92:4fc01daae5a5 550 * @arg SDIO_FLAG_TXFIFOHE: Transmit FIFO Half Empty
bogdanm 92:4fc01daae5a5 551 * @arg SDIO_FLAG_RXFIFOHF: Receive FIFO Half Full
bogdanm 92:4fc01daae5a5 552 * @arg SDIO_FLAG_TXFIFOF: Transmit FIFO full
bogdanm 92:4fc01daae5a5 553 * @arg SDIO_FLAG_RXFIFOF: Receive FIFO full
bogdanm 92:4fc01daae5a5 554 * @arg SDIO_FLAG_TXFIFOE: Transmit FIFO empty
bogdanm 92:4fc01daae5a5 555 * @arg SDIO_FLAG_RXFIFOE: Receive FIFO empty
bogdanm 92:4fc01daae5a5 556 * @arg SDIO_FLAG_TXDAVL: Data available in transmit FIFO
bogdanm 92:4fc01daae5a5 557 * @arg SDIO_FLAG_RXDAVL: Data available in receive FIFO
bogdanm 92:4fc01daae5a5 558 * @arg SDIO_FLAG_SDIOIT: SD I/O interrupt received
bogdanm 92:4fc01daae5a5 559 * @arg SDIO_FLAG_CEATAEND: CE-ATA command completion signal received for CMD61
bogdanm 92:4fc01daae5a5 560 * @retval The new state of SD FLAG (SET or RESET).
bogdanm 92:4fc01daae5a5 561 */
bogdanm 92:4fc01daae5a5 562 #define __HAL_SD_SDIO_GET_FLAG(__HANDLE__, __FLAG__) __SDIO_GET_FLAG((__HANDLE__)->Instance, (__FLAG__))
bogdanm 92:4fc01daae5a5 563
bogdanm 92:4fc01daae5a5 564 /**
bogdanm 92:4fc01daae5a5 565 * @brief Clear the SD's pending flags.
bogdanm 92:4fc01daae5a5 566 * @param __HANDLE__: SD Handle
bogdanm 92:4fc01daae5a5 567 * @param __FLAG__: specifies the flag to clear.
bogdanm 92:4fc01daae5a5 568 * This parameter can be one or a combination of the following values:
bogdanm 92:4fc01daae5a5 569 * @arg SDIO_FLAG_CCRCFAIL: Command response received (CRC check failed)
bogdanm 92:4fc01daae5a5 570 * @arg SDIO_FLAG_DCRCFAIL: Data block sent/received (CRC check failed)
bogdanm 92:4fc01daae5a5 571 * @arg SDIO_FLAG_CTIMEOUT: Command response timeout
bogdanm 92:4fc01daae5a5 572 * @arg SDIO_FLAG_DTIMEOUT: Data timeout
bogdanm 92:4fc01daae5a5 573 * @arg SDIO_FLAG_TXUNDERR: Transmit FIFO underrun error
bogdanm 92:4fc01daae5a5 574 * @arg SDIO_FLAG_RXOVERR: Received FIFO overrun error
bogdanm 92:4fc01daae5a5 575 * @arg SDIO_FLAG_CMDREND: Command response received (CRC check passed)
bogdanm 92:4fc01daae5a5 576 * @arg SDIO_FLAG_CMDSENT: Command sent (no response required)
bogdanm 92:4fc01daae5a5 577 * @arg SDIO_FLAG_DATAEND: Data end (data counter, SDIDCOUNT, is zero)
bogdanm 92:4fc01daae5a5 578 * @arg SDIO_FLAG_STBITERR: Start bit not detected on all data signals in wide bus mode
bogdanm 92:4fc01daae5a5 579 * @arg SDIO_FLAG_DBCKEND: Data block sent/received (CRC check passed)
bogdanm 92:4fc01daae5a5 580 * @arg SDIO_FLAG_SDIOIT: SD I/O interrupt received
bogdanm 92:4fc01daae5a5 581 * @arg SDIO_FLAG_CEATAEND: CE-ATA command completion signal received for CMD61
bogdanm 92:4fc01daae5a5 582 * @retval None
bogdanm 92:4fc01daae5a5 583 */
bogdanm 92:4fc01daae5a5 584 #define __HAL_SD_SDIO_CLEAR_FLAG(__HANDLE__, __FLAG__) __SDIO_CLEAR_FLAG((__HANDLE__)->Instance, (__FLAG__))
bogdanm 92:4fc01daae5a5 585
bogdanm 92:4fc01daae5a5 586 /**
bogdanm 92:4fc01daae5a5 587 * @brief Check whether the specified SD interrupt has occurred or not.
bogdanm 92:4fc01daae5a5 588 * @param __HANDLE__: SD Handle
bogdanm 92:4fc01daae5a5 589 * @param __INTERRUPT__: specifies the SDIO interrupt source to check.
bogdanm 92:4fc01daae5a5 590 * This parameter can be one of the following values:
bogdanm 92:4fc01daae5a5 591 * @arg SDIO_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
bogdanm 92:4fc01daae5a5 592 * @arg SDIO_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
bogdanm 92:4fc01daae5a5 593 * @arg SDIO_IT_CTIMEOUT: Command response timeout interrupt
bogdanm 92:4fc01daae5a5 594 * @arg SDIO_IT_DTIMEOUT: Data timeout interrupt
bogdanm 92:4fc01daae5a5 595 * @arg SDIO_IT_TXUNDERR: Transmit FIFO underrun error interrupt
bogdanm 92:4fc01daae5a5 596 * @arg SDIO_IT_RXOVERR: Received FIFO overrun error interrupt
bogdanm 92:4fc01daae5a5 597 * @arg SDIO_IT_CMDREND: Command response received (CRC check passed) interrupt
bogdanm 92:4fc01daae5a5 598 * @arg SDIO_IT_CMDSENT: Command sent (no response required) interrupt
bogdanm 92:4fc01daae5a5 599 * @arg SDIO_IT_DATAEND: Data end (data counter, SDIDCOUNT, is zero) interrupt
bogdanm 92:4fc01daae5a5 600 * @arg SDIO_IT_STBITERR: Start bit not detected on all data signals in wide
bogdanm 92:4fc01daae5a5 601 * bus mode interrupt
bogdanm 92:4fc01daae5a5 602 * @arg SDIO_IT_DBCKEND: Data block sent/received (CRC check passed) interrupt
bogdanm 92:4fc01daae5a5 603 * @arg SDIO_IT_CMDACT: Command transfer in progress interrupt
bogdanm 92:4fc01daae5a5 604 * @arg SDIO_IT_TXACT: Data transmit in progress interrupt
bogdanm 92:4fc01daae5a5 605 * @arg SDIO_IT_RXACT: Data receive in progress interrupt
bogdanm 92:4fc01daae5a5 606 * @arg SDIO_IT_TXFIFOHE: Transmit FIFO Half Empty interrupt
bogdanm 92:4fc01daae5a5 607 * @arg SDIO_IT_RXFIFOHF: Receive FIFO Half Full interrupt
bogdanm 92:4fc01daae5a5 608 * @arg SDIO_IT_TXFIFOF: Transmit FIFO full interrupt
bogdanm 92:4fc01daae5a5 609 * @arg SDIO_IT_RXFIFOF: Receive FIFO full interrupt
bogdanm 92:4fc01daae5a5 610 * @arg SDIO_IT_TXFIFOE: Transmit FIFO empty interrupt
bogdanm 92:4fc01daae5a5 611 * @arg SDIO_IT_RXFIFOE: Receive FIFO empty interrupt
bogdanm 92:4fc01daae5a5 612 * @arg SDIO_IT_TXDAVL: Data available in transmit FIFO interrupt
bogdanm 92:4fc01daae5a5 613 * @arg SDIO_IT_RXDAVL: Data available in receive FIFO interrupt
bogdanm 92:4fc01daae5a5 614 * @arg SDIO_IT_SDIOIT: SD I/O interrupt received interrupt
bogdanm 92:4fc01daae5a5 615 * @arg SDIO_IT_CEATAEND: CE-ATA command completion signal received for CMD61 interrupt
bogdanm 92:4fc01daae5a5 616 * @retval The new state of SD IT (SET or RESET).
bogdanm 92:4fc01daae5a5 617 */
bogdanm 92:4fc01daae5a5 618 #define __HAL_SD_SDIO_GET_IT (__HANDLE__, __INTERRUPT__) __SDIO_GET_IT ((__HANDLE__)->Instance, __INTERRUPT__)
bogdanm 92:4fc01daae5a5 619
bogdanm 92:4fc01daae5a5 620 /**
bogdanm 92:4fc01daae5a5 621 * @brief Clear the SD's interrupt pending bits.
bogdanm 92:4fc01daae5a5 622 * @param __HANDLE__ : SD Handle
bogdanm 92:4fc01daae5a5 623 * @param __INTERRUPT__: specifies the interrupt pending bit to clear.
bogdanm 92:4fc01daae5a5 624 * This parameter can be one or a combination of the following values:
bogdanm 92:4fc01daae5a5 625 * @arg SDIO_IT_CCRCFAIL: Command response received (CRC check failed) interrupt
bogdanm 92:4fc01daae5a5 626 * @arg SDIO_IT_DCRCFAIL: Data block sent/received (CRC check failed) interrupt
bogdanm 92:4fc01daae5a5 627 * @arg SDIO_IT_CTIMEOUT: Command response timeout interrupt
bogdanm 92:4fc01daae5a5 628 * @arg SDIO_IT_DTIMEOUT: Data timeout interrupt
bogdanm 92:4fc01daae5a5 629 * @arg SDIO_IT_TXUNDERR: Transmit FIFO underrun error interrupt
bogdanm 92:4fc01daae5a5 630 * @arg SDIO_IT_RXOVERR: Received FIFO overrun error interrupt
bogdanm 92:4fc01daae5a5 631 * @arg SDIO_IT_CMDREND: Command response received (CRC check passed) interrupt
bogdanm 92:4fc01daae5a5 632 * @arg SDIO_IT_CMDSENT: Command sent (no response required) interrupt
bogdanm 92:4fc01daae5a5 633 * @arg SDIO_IT_DATAEND: Data end (data counter, SDIO_DCOUNT, is zero) interrupt
bogdanm 92:4fc01daae5a5 634 * @arg SDIO_IT_STBITERR: Start bit not detected on all data signals in wide
bogdanm 92:4fc01daae5a5 635 * bus mode interrupt
bogdanm 92:4fc01daae5a5 636 * @arg SDIO_IT_SDIOIT: SD I/O interrupt received interrupt
bogdanm 92:4fc01daae5a5 637 * @arg SDIO_IT_CEATAEND: CE-ATA command completion signal received for CMD61
bogdanm 92:4fc01daae5a5 638 * @retval None
bogdanm 92:4fc01daae5a5 639 */
bogdanm 92:4fc01daae5a5 640 #define __HAL_SD_SDIO_CLEAR_IT(__HANDLE__, __INTERRUPT__) __SDIO_CLEAR_IT((__HANDLE__)->Instance, (__INTERRUPT__))
bogdanm 92:4fc01daae5a5 641 /**
bogdanm 92:4fc01daae5a5 642 * @}
bogdanm 92:4fc01daae5a5 643 */
bogdanm 92:4fc01daae5a5 644
bogdanm 92:4fc01daae5a5 645 /* Exported functions --------------------------------------------------------*/
Kojto 99:dbbf35b96557 646 /** @defgroup SD_Exported_Functions SD Exported Functions
bogdanm 92:4fc01daae5a5 647 * @{
bogdanm 92:4fc01daae5a5 648 */
Kojto 99:dbbf35b96557 649
Kojto 99:dbbf35b96557 650 /** @defgroup SD_Exported_Functions_Group1 Initialization and de-initialization functions
bogdanm 92:4fc01daae5a5 651 * @{
bogdanm 92:4fc01daae5a5 652 */
bogdanm 92:4fc01daae5a5 653 HAL_SD_ErrorTypedef HAL_SD_Init(SD_HandleTypeDef *hsd, HAL_SD_CardInfoTypedef *SDCardInfo);
bogdanm 92:4fc01daae5a5 654 HAL_StatusTypeDef HAL_SD_DeInit (SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 655 void HAL_SD_MspInit(SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 656 void HAL_SD_MspDeInit(SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 657 /**
bogdanm 92:4fc01daae5a5 658 * @}
bogdanm 92:4fc01daae5a5 659 */
Kojto 99:dbbf35b96557 660
Kojto 99:dbbf35b96557 661 /** @defgroup SD_Exported_Functions_Group2 I/O operation functions
bogdanm 92:4fc01daae5a5 662 * @{
bogdanm 92:4fc01daae5a5 663 */
bogdanm 92:4fc01daae5a5 664 /* Blocking mode: Polling */
bogdanm 92:4fc01daae5a5 665 HAL_SD_ErrorTypedef HAL_SD_ReadBlocks(SD_HandleTypeDef *hsd, uint32_t *pReadBuffer, uint64_t ReadAddr, uint32_t BlockSize, uint32_t NumberOfBlocks);
bogdanm 92:4fc01daae5a5 666 HAL_SD_ErrorTypedef HAL_SD_WriteBlocks(SD_HandleTypeDef *hsd, uint32_t *pWriteBuffer, uint64_t WriteAddr, uint32_t BlockSize, uint32_t NumberOfBlocks);
bogdanm 92:4fc01daae5a5 667 HAL_SD_ErrorTypedef HAL_SD_Erase(SD_HandleTypeDef *hsd, uint64_t startaddr, uint64_t endaddr);
bogdanm 92:4fc01daae5a5 668
bogdanm 92:4fc01daae5a5 669 /* Non-Blocking mode: Interrupt */
bogdanm 92:4fc01daae5a5 670 void HAL_SD_IRQHandler(SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 671
bogdanm 92:4fc01daae5a5 672 /* Callback in non blocking modes (DMA) */
bogdanm 92:4fc01daae5a5 673 void HAL_SD_DMA_RxCpltCallback(DMA_HandleTypeDef *hdma);
bogdanm 92:4fc01daae5a5 674 void HAL_SD_DMA_RxErrorCallback(DMA_HandleTypeDef *hdma);
bogdanm 92:4fc01daae5a5 675 void HAL_SD_DMA_TxCpltCallback(DMA_HandleTypeDef *hdma);
bogdanm 92:4fc01daae5a5 676 void HAL_SD_DMA_TxErrorCallback(DMA_HandleTypeDef *hdma);
bogdanm 92:4fc01daae5a5 677 void HAL_SD_XferCpltCallback(SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 678 void HAL_SD_XferErrorCallback(SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 679
bogdanm 92:4fc01daae5a5 680 /* Non-Blocking mode: DMA */
bogdanm 92:4fc01daae5a5 681 HAL_SD_ErrorTypedef HAL_SD_ReadBlocks_DMA(SD_HandleTypeDef *hsd, uint32_t *pReadBuffer, uint64_t ReadAddr, uint32_t BlockSize, uint32_t NumberOfBlocks);
bogdanm 92:4fc01daae5a5 682 HAL_SD_ErrorTypedef HAL_SD_WriteBlocks_DMA(SD_HandleTypeDef *hsd, uint32_t *pWriteBuffer, uint64_t WriteAddr, uint32_t BlockSize, uint32_t NumberOfBlocks);
bogdanm 92:4fc01daae5a5 683 HAL_SD_ErrorTypedef HAL_SD_CheckWriteOperation(SD_HandleTypeDef *hsd, uint32_t Timeout);
bogdanm 92:4fc01daae5a5 684 HAL_SD_ErrorTypedef HAL_SD_CheckReadOperation(SD_HandleTypeDef *hsd, uint32_t Timeout);
bogdanm 92:4fc01daae5a5 685 /**
bogdanm 92:4fc01daae5a5 686 * @}
bogdanm 92:4fc01daae5a5 687 */
Kojto 99:dbbf35b96557 688
Kojto 99:dbbf35b96557 689 /** @defgroup SD_Exported_Functions_Group3 Peripheral Control functions
bogdanm 92:4fc01daae5a5 690 * @{
bogdanm 92:4fc01daae5a5 691 */
bogdanm 92:4fc01daae5a5 692 HAL_SD_ErrorTypedef HAL_SD_Get_CardInfo(SD_HandleTypeDef *hsd, HAL_SD_CardInfoTypedef *pCardInfo);
bogdanm 92:4fc01daae5a5 693 HAL_SD_ErrorTypedef HAL_SD_WideBusOperation_Config(SD_HandleTypeDef *hsd, uint32_t WideMode);
bogdanm 92:4fc01daae5a5 694 HAL_SD_ErrorTypedef HAL_SD_StopTransfer(SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 695 HAL_SD_ErrorTypedef HAL_SD_HighSpeed (SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 696 /**
bogdanm 92:4fc01daae5a5 697 * @}
bogdanm 92:4fc01daae5a5 698 */
bogdanm 92:4fc01daae5a5 699
bogdanm 92:4fc01daae5a5 700 /* Peripheral State functions ************************************************/
Kojto 99:dbbf35b96557 701 /** @defgroup SD_Exported_Functions_Group4 Peripheral State functions
bogdanm 92:4fc01daae5a5 702 * @{
bogdanm 92:4fc01daae5a5 703 */
bogdanm 92:4fc01daae5a5 704 HAL_SD_ErrorTypedef HAL_SD_SendSDStatus(SD_HandleTypeDef *hsd, uint32_t *pSDstatus);
bogdanm 92:4fc01daae5a5 705 HAL_SD_ErrorTypedef HAL_SD_GetCardStatus(SD_HandleTypeDef *hsd, HAL_SD_CardStatusTypedef *pCardStatus);
bogdanm 92:4fc01daae5a5 706 HAL_SD_TransferStateTypedef HAL_SD_GetStatus(SD_HandleTypeDef *hsd);
bogdanm 92:4fc01daae5a5 707 /**
bogdanm 92:4fc01daae5a5 708 * @}
bogdanm 92:4fc01daae5a5 709 */
bogdanm 92:4fc01daae5a5 710
bogdanm 92:4fc01daae5a5 711 /**
bogdanm 92:4fc01daae5a5 712 * @}
bogdanm 92:4fc01daae5a5 713 */
bogdanm 92:4fc01daae5a5 714
Kojto 99:dbbf35b96557 715 /* Private types -------------------------------------------------------------*/
Kojto 99:dbbf35b96557 716 /** @defgroup SD_Private_Types SD Private Types
Kojto 99:dbbf35b96557 717 * @{
Kojto 99:dbbf35b96557 718 */
Kojto 99:dbbf35b96557 719
Kojto 99:dbbf35b96557 720 /**
Kojto 99:dbbf35b96557 721 * @}
Kojto 99:dbbf35b96557 722 */
Kojto 99:dbbf35b96557 723
Kojto 99:dbbf35b96557 724 /* Private defines -----------------------------------------------------------*/
Kojto 99:dbbf35b96557 725 /** @defgroup SD_Private_Defines SD Private Defines
Kojto 99:dbbf35b96557 726 * @{
Kojto 99:dbbf35b96557 727 */
Kojto 99:dbbf35b96557 728
Kojto 99:dbbf35b96557 729 /**
Kojto 99:dbbf35b96557 730 * @}
Kojto 99:dbbf35b96557 731 */
Kojto 99:dbbf35b96557 732
Kojto 99:dbbf35b96557 733 /* Private variables ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 734 /** @defgroup SD_Private_Variables SD Private Variables
Kojto 99:dbbf35b96557 735 * @{
Kojto 99:dbbf35b96557 736 */
Kojto 99:dbbf35b96557 737
Kojto 99:dbbf35b96557 738 /**
Kojto 99:dbbf35b96557 739 * @}
Kojto 99:dbbf35b96557 740 */
Kojto 99:dbbf35b96557 741
Kojto 99:dbbf35b96557 742 /* Private constants ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 743 /** @defgroup SD_Private_Constants SD Private Constants
Kojto 99:dbbf35b96557 744 * @{
Kojto 99:dbbf35b96557 745 */
Kojto 99:dbbf35b96557 746
Kojto 99:dbbf35b96557 747 /**
Kojto 99:dbbf35b96557 748 * @}
Kojto 99:dbbf35b96557 749 */
Kojto 99:dbbf35b96557 750
Kojto 99:dbbf35b96557 751 /* Private macros ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 752 /** @defgroup SD_Private_Macros SD Private Macros
Kojto 99:dbbf35b96557 753 * @{
Kojto 99:dbbf35b96557 754 */
Kojto 99:dbbf35b96557 755
Kojto 99:dbbf35b96557 756 /**
Kojto 99:dbbf35b96557 757 * @}
Kojto 99:dbbf35b96557 758 */
Kojto 99:dbbf35b96557 759
Kojto 99:dbbf35b96557 760 /* Private functions prototypes ----------------------------------------------*/
Kojto 99:dbbf35b96557 761 /** @defgroup SD_Private_Functions_Prototypes SD Private Functions Prototypes
Kojto 99:dbbf35b96557 762 * @{
Kojto 99:dbbf35b96557 763 */
Kojto 99:dbbf35b96557 764
Kojto 99:dbbf35b96557 765 /**
Kojto 99:dbbf35b96557 766 * @}
Kojto 99:dbbf35b96557 767 */
Kojto 99:dbbf35b96557 768
Kojto 99:dbbf35b96557 769 /* Private functions ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 770 /** @defgroup SD_Private_Functions SD Private Functions
Kojto 99:dbbf35b96557 771 * @{
Kojto 99:dbbf35b96557 772 */
Kojto 99:dbbf35b96557 773
Kojto 99:dbbf35b96557 774 /**
Kojto 99:dbbf35b96557 775 * @}
Kojto 99:dbbf35b96557 776 */
Kojto 99:dbbf35b96557 777
bogdanm 92:4fc01daae5a5 778 /**
bogdanm 92:4fc01daae5a5 779 * @}
bogdanm 92:4fc01daae5a5 780 */
bogdanm 92:4fc01daae5a5 781
bogdanm 92:4fc01daae5a5 782 /**
bogdanm 92:4fc01daae5a5 783 * @}
Kojto 99:dbbf35b96557 784 */
Kojto 110:165afa46840b 785 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx || STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx ||
Kojto 110:165afa46840b 786 STM32F401xC || STM32F401xE || STM32F411xE || STM32F446xx || STM32F469xx || STM32F479xx */
bogdanm 92:4fc01daae5a5 787 #ifdef __cplusplus
bogdanm 92:4fc01daae5a5 788 }
bogdanm 92:4fc01daae5a5 789 #endif
bogdanm 92:4fc01daae5a5 790
Kojto 99:dbbf35b96557 791 #endif /* __STM32F4xx_HAL_SD_H */
bogdanm 92:4fc01daae5a5 792
bogdanm 92:4fc01daae5a5 793 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/