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