mirror of
https://github.com/espressif/esp-idf
synced 2025-04-09 08:10:10 -04:00
20 lines
416 B
C
20 lines
416 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
int num_sectors_to_read;
|
|
int num_sectors_per_xfer;
|
|
uint32_t msc_scsi_xfer_tag;
|
|
uint16_t idVendor;
|
|
uint16_t idProduct;
|
|
} msc_client_test_param_t;
|
|
|
|
void msc_client_async_seq_task(void *arg);
|
|
|
|
void msc_client_async_dconn_task(void *arg);
|