summaryrefslogtreecommitdiff
path: root/tinyusb/class/msc_host.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-03-23 15:00:56 +0700
committerhathach <[email protected]>2013-03-23 15:00:56 +0700
commit4adfc6a6d8a77ca9526ec04e62c83ea88ffdddd7 (patch)
tree9c3283c4317d3e8b9bfc536c5b59a1ef622b2619 /tinyusb/class/msc_host.h
parente6b8166a581d5016a2fa0c9f8bbca22bcb6b6bba (diff)
change signature usbh_isr to add tusb_bus_event_t parameter
change singature of call_isr as well
Diffstat (limited to 'tinyusb/class/msc_host.h')
-rw-r--r--tinyusb/class/msc_host.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/class/msc_host.h b/tinyusb/class/msc_host.h
index 021d30412..f6222197d 100644
--- a/tinyusb/class/msc_host.h
+++ b/tinyusb/class/msc_host.h
@@ -70,7 +70,7 @@
void msch_init(void) ATTR_WEAK;
tusb_error_t msch_open_subtask(uint8_t dev_addr, uint8_t const *descriptor, uint16_t *p_length) ATTR_WEAK ATTR_WARN_UNUSED_RESULT;
-void msch_isr(pipe_handle_t pipe_hdl) ATTR_WEAK;
+void msch_isr(pipe_handle_t pipe_hdl, tusb_bus_event_t event) ATTR_WEAK;
void msch_close(uint8_t dev_addr) ATTR_WEAK;
#endif