2021-08-24 15:20:50 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2021-10-27 16:54:27 +00:00
|
|
|
#define MSC_ASYNC_CLIENT_MAX_EVENT_MSGS 5
|
|
|
|
|
2021-08-24 15:20:50 +00:00
|
|
|
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);
|
2021-10-27 07:50:21 +00:00
|
|
|
|
|
|
|
void msc_client_async_dconn_task(void *arg);
|