mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
645592e157
* USB tests migrated to pytest * Error messages improved * Configurable for different mock devices
24 lines
510 B
C
24 lines
510 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#define MSC_ASYNC_CLIENT_MAX_EVENT_MSGS 5
|
|
|
|
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);
|
|
|
|
void msc_client_async_enum_task(void *arg);
|