pub unsafe extern "C" fn sdmmc_io_read_bytes(
    card: *mut sdmmc_card_t,
    function: u32,
    addr: u32,
    dst: *mut c_void,
    size: usize
) -> esp_err_t
Expand description

Read multiple bytes from an SDIO card using IO_RW_EXTENDED (CMD53)

This function performs read operation using CMD53 in byte mode. For block mode, see sdmmc_io_read_blocks.

@param card pointer to card information structure previously initialized using sdmmc_card_init @param function IO function number @param addr byte address within IO function where reading starts @param dst buffer which receives the data read from card @param size number of bytes to read @return - ESP_OK on success - ESP_ERR_INVALID_SIZE if size exceeds 512 bytes - One of the error codes from SDMMC host controller