cc y / mbed

Fork of mbed by mbed official

Committer:
Kojto
Date:
Thu Jul 07 14:34:11 2016 +0100
Revision:
122:f9eeca106725
Parent:
110:165afa46840b
Release 122 of the mbed library

Changes:
- new targets - Nucleo L432KC, Beetle, Nucleo F446ZE, Nucleo L011K4
- Thread safety addition - mbed API should contain a statement about thread safety
- critical section API addition
- CAS API (core_util_atomic_incr/decr)
- DEVICE_ are generated from targets.json file, device.h deprecated
- Callback replaces FunctionPointer to provide std like interface
- mbed HAL API docs improvements
- toolchain - prexif attributes with MBED_
- add new attributes - packed, weak, forcedinline, align
- target.json - contains targets definitions
- ST - L1XX - Cube update to 1.5
- SPI clock selection fix (clock from APB domain)
- F7 - Cube update v1.4.0
- L0 - baudrate init fix
- L1 - Cube update v1.5
- F3 - baudrate init fix, 3 targets CAN support
- F4 - Cube update v1.12.0, 3 targets CAN support
- L4XX - Cube update v1.5.1
- F0 - update Cube to v1.5.0
- L4 - 2 targets (L476RG/VG) CAN support
- NXP - pwm clock fix for KSDK2 MCU
- LPC2368 - remove ARM toolchain support - due to regression
- KSDK2 - fix SPI , I2C address and repeat start
- Silabs - some fixes backported from mbed 3
- Renesas - RZ_A1H - SystemCoreClockUpdate addition

Who changed what in which revision?

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