summaryrefslogtreecommitdiff
path: root/src/host/usbh_hcd.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-12-10 05:46:42 +0700
committerhathach <[email protected]>2018-12-10 05:47:33 +0700
commit57233cead73120dc10148340d32278e59c8ead3f (patch)
tree3885b71c41629bac812ff47a49b79574cb8c5ecd /src/host/usbh_hcd.h
parenta31f83dbb0d123d15dcc393dd9d926a4cc7352b6 (diff)
rename usbh_xfer_isr to hcd_event_xfer_complete
Diffstat (limited to 'src/host/usbh_hcd.h')
-rw-r--r--src/host/usbh_hcd.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/host/usbh_hcd.h b/src/host/usbh_hcd.h
index 3c1c1511d..48bb4bb9d 100644
--- a/src/host/usbh_hcd.h
+++ b/src/host/usbh_hcd.h
@@ -72,7 +72,6 @@ typedef struct {
//------------- device -------------//
volatile uint8_t state; // device state, value from enum tusbh_device_state_t
- uint32_t flag_supported_class; // a bitmap of supported class
//------------- control pipe -------------//
struct {
@@ -96,7 +95,7 @@ extern usbh_device_t _usbh_devices[CFG_TUSB_HOST_DEVICE_MAX+1]; // including zer
//--------------------------------------------------------------------+
// callback from HCD ISR
//--------------------------------------------------------------------+
-void usbh_xfer_isr(uint8_t dev_addr, uint8_t ep_addr, xfer_result_t event, uint32_t xferred_bytes);
+
#ifdef __cplusplus