diff options
| author | hathach <[email protected]> | 2013-04-07 05:09:18 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-04-07 05:09:18 +0700 |
| commit | 27f860db9ffd46bb8cb43046f9203f510a554d7c (patch) | |
| tree | bb25a7ee341c943f76b394a3bfc6fa270c57099a /tinyusb/host/usbh.h | |
| parent | 24ade0458e0fe3831615d7ddb1be0e3b8ed64ba6 (diff) | |
rename hidh_keyboard_info_t to hidh_interface_info_t
rename tusb_bus_event_t to tusb_event_t
add test_mouse_init and more stuff for hidh mouse
move delay after port reset to only for speed detection
prioritize port change interrupt over xfer interrupt
- in case of unplugged, current connect change & xfer error both set
- xfer error only break to debugger if not because of unplugged
fix bug: set dev addr0 state to UNPLUG after close its control pipe in enumeration process
Diffstat (limited to 'tinyusb/host/usbh.h')
| -rw-r--r-- | tinyusb/host/usbh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/host/usbh.h b/tinyusb/host/usbh.h index 684505471..2eac1d886 100644 --- a/tinyusb/host/usbh.h +++ b/tinyusb/host/usbh.h @@ -74,7 +74,7 @@ typedef enum tusb_interface_status_{ typedef struct { void (* const init) (void); tusb_error_t (* const open_subtask)(uint8_t, tusb_descriptor_interface_t const *, uint16_t*); - void (* const isr) (pipe_handle_t, tusb_bus_event_t); + void (* const isr) (pipe_handle_t, tusb_event_t); void (* const close) (uint8_t); } host_class_driver_t; //--------------------------------------------------------------------+ |
