drv_usbh.h 503 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2006-2022, 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. #define OTG_PORT 1
  16. int imxrt_usbh_register(void);
  17. #endif
  18. /************* end of file ************/