mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 02:48:54 +00:00
25 lines
499 B
C
25 lines
499 B
C
/*
|
|
* Copyright (c) 2022, sakumisu
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef USBD_MTP_H
|
|
#define USBD_MTP_H
|
|
|
|
#include "usb_mtp.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct usbd_interface *usbd_mtp_init_intf(struct usbd_interface *intf,
|
|
const uint8_t out_ep,
|
|
const uint8_t in_ep,
|
|
const uint8_t int_ep);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* USBD_MTP_H */
|