diff options
| author | hathach <[email protected]> | 2013-02-04 00:03:08 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-02-04 00:03:08 +0700 |
| commit | 5f8839fff8ff12bbf172b5fb9a984867a0d1d8da (patch) | |
| tree | 0f983489c408ecea8d79661b40d42498a0e709ed /tinyusb/host/usbd_host.c | |
| parent | 3ac88f1b4ec4ab83682b5c1b1589970096bbc1c4 (diff) | |
refine ASSERT_DEFINE to allow special error_handler for os task
add device_addr0 for enumeration task
start to add osal port for freeRTOS
Diffstat (limited to 'tinyusb/host/usbd_host.c')
| -rw-r--r-- | tinyusb/host/usbd_host.c | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/tinyusb/host/usbd_host.c b/tinyusb/host/usbd_host.c index b8445d2b8..293d8dbbd 100644 --- a/tinyusb/host/usbd_host.c +++ b/tinyusb/host/usbd_host.c @@ -56,11 +56,6 @@ //--------------------------------------------------------------------+ // INTERNAL OBJECT & FUNCTION DECLARATION //--------------------------------------------------------------------+ -struct { - tusb_speed_t speed; - uint8_t hub_addr; - uint8_t hub_port; -} usbh_device_addr0[TUSB_CFG_HOST_CONTROLLER_NUM]; STATIC_ usbh_device_info_t device_info_pool[TUSB_CFG_HOST_DEVICE_MAX]; @@ -81,39 +76,38 @@ OSAL_TASK_DEF(enum_task, usbh_enumeration_task, 128, OSAL_PRIO_HIGH); #define ENUM_QUEUE_DEPTH 5 OSAL_DEF_QUEUE(enum_queue, ENUM_QUEUE_DEPTH, uin32_t); osal_queue_handle_t enum_queue_hdl; +usbh_device_addr0_t device_addr0 TUSB_CFG_ATTR_USBRAM; void usbh_enumeration_task(void) { - usbh_enumerate_t enum_item; tusb_error_t error; OSAL_TASK_LOOP_BEGIN - osal_queue_receive(enum_queue_hdl, (uint32_t*)&enum_item, OSAL_TIMEOUT_NORMAL, &error); + osal_queue_receive(enum_queue_hdl, (uint32_t*)(&device_addr0.enum_entry), OSAL_TIMEOUT_NORMAL, &error); TASK_ASSERT_STATUS(error); - if (enum_item.hub_address == 0) // direct connection + if (device_addr0.enum_entry.hub_addr == 0) // direct connection { - if ( enum_item.connect_status == hcd_port_connect_status(enum_item.core_id) ) // there chances the event is out-dated + TASK_ASSERT(device_addr0.enum_entry.connect_status == hcd_port_connect_status(device_addr0.enum_entry.core_id)); // there chances the event is out-dated + + tusb_std_request_t request_dev_desc = { - tusb_std_request_t request_dev_desc = - { - .bmRequestType = - { - .direction = TUSB_DIR_DEV_TO_HOST, - .type = TUSB_REQUEST_TYPE_STANDARD, - .recipient = TUSB_REQUEST_RECIPIENT_DEVICE - }, + .bmRequestType = + { + .direction = TUSB_DIR_DEV_TO_HOST, + .type = TUSB_REQUEST_TYPE_STANDARD, + .recipient = TUSB_REQUEST_RECIPIENT_DEVICE + }, - .bRequest = TUSB_REQUEST_GET_DESCRIPTOR, - .wValue = (TUSB_DESC_DEVICE << 8), - .wLength = 8 - }; - tusb_speed_t speed = hcd_port_speed(enum_item.core_id); - pipe_handle_t pipe_addr0 = hcd_pipe_addr0_open(enum_item.core_id, speed, enum_item.hub_address, enum_item.hub_port); + .bRequest = TUSB_REQUEST_GET_DESCRIPTOR, + .wValue = (TUSB_DESC_DEVICE << 8), + .wLength = 8 + }; + device_addr0.speed = hcd_port_speed(device_addr0.enum_entry.core_id); +// pipe_handle_t pipe_addr0 = hcd_pipe_addr0_open(&device_addr0); // hcd_pipe_control_xfer(pipe_addr0, &request_dev_desc) - } }else // device connect via a hub { ASSERT_MESSAGE("%s", "Hub is not supported yet"); @@ -123,6 +117,11 @@ void usbh_enumeration_task(void) } //--------------------------------------------------------------------+ +// REPORTER TASK & ITS DATA +//--------------------------------------------------------------------+ + + +//--------------------------------------------------------------------+ // CLASS-USBD API (don't require to verify parameters) //--------------------------------------------------------------------+ tusb_error_t usbh_init(void) |
