diff options
| author | hathach <[email protected]> | 2013-03-23 15:00:56 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-03-23 15:00:56 +0700 |
| commit | 4adfc6a6d8a77ca9526ec04e62c83ea88ffdddd7 (patch) | |
| tree | 9c3283c4317d3e8b9bfc536c5b59a1ef622b2619 /tinyusb/core | |
| parent | e6b8166a581d5016a2fa0c9f8bbca22bcb6b6bba (diff) | |
change signature usbh_isr to add tusb_bus_event_t parameter
change singature of call_isr as well
Diffstat (limited to 'tinyusb/core')
| -rw-r--r-- | tinyusb/core/tusb_types.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tinyusb/core/tusb_types.h b/tinyusb/core/tusb_types.h index d9750c279..aff92aebb 100644 --- a/tinyusb/core/tusb_types.h +++ b/tinyusb/core/tusb_types.h @@ -164,6 +164,11 @@ enum tusb_device_state_{ TUSB_DEVICE_STATE_SAFE_REMOVE , }; +typedef enum { + BUS_EVENT_XFER_COMPLETE, + BUS_EVENT_XFER_ERROR +}tusb_bus_event_t; + #ifdef __cplusplus } #endif |
