1 /*
2  * Copyright (c) 2006-2023, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author            Notes
8  * 2017-12-12     ZYH               the first version
9  * 2019-12-19     tyustli           port to stm32 series
10  * 2021-01-19     Leslie Lee        port to imxrt series
11  */
12 #ifndef __DRV_USBH_H__
13 #define __DRV_USBH_H__
14 #include <rtthread.h>
15 
16 #define OTG_PORT 1
17 
18 int imxrt_usbh_register(void);
19 
20 #endif
21 
22 /************* end of file ************/
23