Browse Source

Merge pull request #2125 from XBurst/master

Fix bugs of X1000's USB driver.
Bernard Xiong 6 years ago
parent
commit
51b353e83d
1 changed files with 9 additions and 4 deletions
  1. 9 4
      bsp/x1000/drivers/usbd/drv_usbd.c

+ 9 - 4
bsp/x1000/drivers/usbd/drv_usbd.c

@@ -1,8 +1,13 @@
 /*
- * drv_usbd.c
+ * Copyright (c) 2006-2018, RT-Thread Development Team
  *
- *  Created on: 2017Äê2ÔÂ1ÈÕ
- *      Author: Urey
+ * SPDX-License-Identifier: Apache-2.0
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2017-02-01     Urey         first
+ * 2018-12-20     heyuanjie    fix bugs
+ * 2018-12-25     Zhou Yanjie  modify the coding style 
  */
 
 #include <rtthread.h>
@@ -145,7 +150,7 @@ static  rt_size_t __ep_read_prepare(rt_uint8_t address, void *buffer, rt_size_t
     dwc_ep *pep ;
     RT_DEBUG_LOG(RT_DEBUG_USB,("%s address = %02x,size = %d\n", __func__,address,size));
 
-    pep = __dwc_hdl.dep[address & 0x0F + DWC_EP_OUT_OFS];
+    pep = __dwc_hdl.dep[(address & 0x0F) + DWC_EP_OUT_OFS];
 	pep->ep_state 	= EP_DATA;
 	pep->xfer_len	= size;
 //	pep->xfer_buff  = buffer;