summaryrefslogtreecommitdiff
path: root/src/host/usbh.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-11-24 18:21:24 +0700
committerhathach <[email protected]>2023-11-24 18:21:24 +0700
commit188fbd8ed9b5e0f5cc3ddb5e89f7afd421fc7c06 (patch)
treed1bb915fbc21a6ec2ef59ac083e4db1a388d733d /src/host/usbh.h
parent111b21e76703ee0d2d0190c349b1aa3d797a72e5 (diff)
add optional event hook callback tud_event_hook_cb() and tuh_event_hook_cb()
Diffstat (limited to 'src/host/usbh.h')
-rw-r--r--src/host/usbh.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/host/usbh.h b/src/host/usbh.h
index 770d70dfe..7591c7672 100644
--- a/src/host/usbh.h
+++ b/src/host/usbh.h
@@ -90,9 +90,12 @@ TU_ATTR_WEAK void tuh_mount_cb (uint8_t daddr);
// Invoked when a device failed to mount during enumeration process
// TU_ATTR_WEAK void tuh_mount_failed_cb (uint8_t daddr);
-/// Invoked when a device is unmounted (detached)
+// Invoked when a device is unmounted (detached)
TU_ATTR_WEAK void tuh_umount_cb(uint8_t daddr);
+// Invoked when there is a new usb event, which need to be processed by tuh_task()/tuh_task_ext()
+TU_ATTR_WEAK void tuh_event_hook_cb(uint8_t rhport, uint32_t eventid, bool in_isr);
+
//--------------------------------------------------------------------+
// APPLICATION API
//--------------------------------------------------------------------+