mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 14:39:24 +08:00
f4fb716167
Core]修复了协议栈在ep0请求大于端点描述最大包时无法正确读取的bug 增加了rndis class LWIP on USB
33 lines
652 B
Python
33 lines
652 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split("""
|
|
core/core.c
|
|
core/usbdevice.c
|
|
""")
|
|
|
|
if GetDepend('RT_USB_DEVICE_CDC'):
|
|
src += Glob('class/cdc_vcom.c')
|
|
|
|
if GetDepend('RT_USB_DEVICE_HID'):
|
|
src += Glob('class/hid.c')
|
|
|
|
if GetDepend('RT_USB_DEVICE_MSTORAGE'):
|
|
src += Glob('class/mstorage.c')
|
|
|
|
if GetDepend('RT_USB_DEVICE_ECM'):
|
|
src += Glob('class/ecm.c')
|
|
|
|
if GetDepend('RT_USB_DEVICE_RNDIS'):
|
|
src += Glob('class/rndis.c')
|
|
|
|
if GetDepend('RT_USB_DEVICE_WINUSB'):
|
|
src += Glob('class/winusb.c')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('rt_usbd', src, depend = ['RT_USING_USB_DEVICE'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|