From 3a54ad4c0d4e31bf9a13cebb771ccc9e9f4f6449 Mon Sep 17 00:00:00 2001 From: hathach Date: Fri, 1 Nov 2013 12:11:26 +0700 Subject: implement msc device class usbd auto stall control for not supported return from class control request usbd implement xfer isr callback mechanism DCD - implement dcd multiple qtd support - dcd dcd_pipe_stall - implement dcd_pipe_queue_xfer - xfer_complete_isr - flush control endpoint if received new setup while previous transfer is not complete change msc_cmd_block_wrapper_t flags field to dir force full speed for easy testing NOTEs: somehow unable to get endpoint IN interrupt with ioc --- tinyusb/device/usbd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tinyusb/device/usbd.h') diff --git a/tinyusb/device/usbd.h b/tinyusb/device/usbd.h index be389f182..fe385fedc 100644 --- a/tinyusb/device/usbd.h +++ b/tinyusb/device/usbd.h @@ -65,7 +65,7 @@ typedef struct { tusb_error_t (* const open)(uint8_t, tusb_descriptor_interface_t const *, uint16_t*); tusb_error_t (* const control_request) (uint8_t, tusb_control_request_t const *); -// void (* const isr) (pipe_handle_t, tusb_event_t); + void (* const isr) (endpoint_handle_t, tusb_event_t, uint32_t); // void (* const close) (uint8_t); } device_class_driver_t; -- cgit v1.3.1