Lines Matching full:card
9 * @brief Public API for SD memory card subsystem
24 * @brief Write blocks to SD card from buffer
26 * Writes blocks from SD buffer to SD card. For best performance, this buffer
28 * @param card SD card to write from
33 * @retval -EBUSY: card is busy with another request
34 * @retval -ETIMEDOUT: card write timed out
37 int sdmmc_write_blocks(struct sd_card *card, const uint8_t *wbuf,
41 * @brief Read block from SD card to buffer
43 * Reads blocks into SD buffer from SD card. For best performance, this buffer
45 * @param card SD card to read from
50 * @retval -EBUSY: card is busy with another request
51 * @retval -ETIMEDOUT: card read timed out
54 int sdmmc_read_blocks(struct sd_card *card, uint8_t *rbuf,
58 * @brief Get I/O control data from SD card
60 * Sends I/O control commands to SD card.
61 * @param card SD card
68 int sdmmc_ioctl(struct sd_card *card, uint8_t cmd, void *buf);