drv_usbd.h 555 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2023-02-28 shelton first version
  9. */
  10. #ifndef __DRV_USBD_H__
  11. #define __DRV_USBD_H__
  12. #include <rtthread.h>
  13. #include <rtdevice.h>
  14. #include "drv_common.h"
  15. #if defined(BSP_USING_USBD)
  16. #include "usbd_core.h"
  17. struct at32_usbd {
  18. char *name;
  19. usbd_core_type *p_usbd_core;
  20. IRQn_Type irqn;
  21. };
  22. #endif
  23. #endif /* __DRV_USBD_H__ */
  24. /******************* end of file *******************/