diff options
| author | hathach <[email protected]> | 2018-03-17 02:17:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-17 02:17:40 +0700 |
| commit | 7a628f4dfca4a6cf3b086439bca6ca0361b92b39 (patch) | |
| tree | a3f15eff18ce72b100131a89a0dfaa430c6b217e /tinyusb/device/usbd.h | |
| parent | 87a2c935df1d52d6d90f8cd14676d75f487e408b (diff) | |
adding bulk/int support
still does not work though
Diffstat (limited to 'tinyusb/device/usbd.h')
| -rw-r--r-- | tinyusb/device/usbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/device/usbd.h b/tinyusb/device/usbd.h index cf607f645..6a9c6cffa 100644 --- a/tinyusb/device/usbd.h +++ b/tinyusb/device/usbd.h @@ -80,7 +80,7 @@ typedef struct { void (* init) (void);
tusb_error_t (* open)(uint8_t port, tusb_descriptor_interface_t const * desc_intf, uint16_t* p_length);
tusb_error_t (* control_request_subtask) (uint8_t port, tusb_control_request_t const *);
- tusb_error_t (* xfer_cb) (uint8_t port, uint8_t edpt_addr, tusb_event_t, uint32_t);
+ tusb_error_t (* xfer_cb) (uint8_t port, uint8_t ep_addr, tusb_event_t, uint32_t);
// void (* routine)(void);
void (* sof)(uint8_t port);
void (* close) (uint8_t);
|
