You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
390 B
20 lines
390 B
|
5 months ago
|
/*
|
||
|
|
* Copyright (c) 2006-2025, RT-Thread Development Team
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*
|
||
|
|
* Change Logs:
|
||
|
|
* Date Author Notes
|
||
|
|
* 2025-11-07 RealThread the first version
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef DRV_USBH_INT_H
|
||
|
|
#define DRV_USBH_INT_H
|
||
|
|
|
||
|
|
#include "drv_usb_host.h"
|
||
|
|
|
||
|
|
/* handle global host interrupt */
|
||
|
|
uint32_t usbh_isr(usb_core_driver *udev);
|
||
|
|
|
||
|
|
#endif /* DRV_USBH_INT_H */
|