2021-08-24 11:20:50 -04:00
|
|
|
/*
|
2021-12-08 06:46:46 -05:00
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
2021-08-24 11:20:50 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2021-10-27 12:54:27 -04:00
|
|
|
#define MSC_ASYNC_CLIENT_MAX_EVENT_MSGS 5
|
|
|
|
|
2021-08-24 11:20:50 -04: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 03:50:21 -04:00
|
|
|
|
|
|
|
void msc_client_async_dconn_task(void *arg);
|
2021-12-08 06:46:46 -05:00
|
|
|
|
|
|
|
void msc_client_async_enum_task(void *arg);
|