1 /* 2 * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <stdint.h> 8 9 #define MSC_ASYNC_CLIENT_MAX_EVENT_MSGS 5 10 11 typedef struct { 12 int num_sectors_to_read; 13 int num_sectors_per_xfer; 14 uint32_t msc_scsi_xfer_tag; 15 uint16_t idVendor; 16 uint16_t idProduct; 17 } msc_client_test_param_t; 18 19 void msc_client_async_seq_task(void *arg); 20 21 void msc_client_async_dconn_task(void *arg); 22 23 void msc_client_async_enum_task(void *arg); 24