• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022, sakumisu
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef USBD_MTP_H
7 #define USBD_MTP_H
8 
9 #include "usb_mtp.h"
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 struct usbd_interface *usbd_mtp_init_intf(struct usbd_interface *intf,
16                                           const uint8_t out_ep,
17                                           const uint8_t in_ep,
18                                           const uint8_t int_ep);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif /* USBD_MTP_H */
25