[osal]add usb host script.
This commit is contained in:
@@ -5,33 +5,45 @@ cwd = GetCurrentDir()
|
||||
src = Split("""
|
||||
../../src/tusb.c
|
||||
../../src/common/tusb_fifo.c
|
||||
../../src/device/usbd.c
|
||||
../../src/device/usbd_control.c
|
||||
./tusb_rt_thread_port.c
|
||||
""")
|
||||
path = [cwd, cwd + "/../../src"]
|
||||
|
||||
# BSP
|
||||
if GetDepend(["SOC_FAMILY_STM32"]):
|
||||
src += ["../../src/portable/synopsys/dwc2/dcd_dwc2.c",
|
||||
"../../src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c"]
|
||||
|
||||
if GetDepend(["SOC_NRF52840"]):
|
||||
src += ["../../src/portable/nordic/nrf5x/dcd_nrf5x.c"]
|
||||
|
||||
if GetDepend(["SOC_FAMILY_RENESAS"]):
|
||||
src += ["../../src/portable/renesas/rusb2/dcd_rusb2.c",
|
||||
"../../src/portable/renesas/rusb2/rusb2_common.c"]
|
||||
|
||||
# Device class
|
||||
if GetDepend(["PKG_TINYUSB_DEVICE_CDC"]):
|
||||
src += ["../../src/class/cdc/cdc_device.c"]
|
||||
|
||||
if GetDepend(["PKG_TINYUSB_DEVICE_MSC"]):
|
||||
src += ["../../src/class/msc/msc_device.c", "port/msc_device_port.c"]
|
||||
|
||||
LOCAL_CFLAGS = ''
|
||||
|
||||
# for device stack
|
||||
if GetDepend(["PKG_TINYUSB_DEVICE_ENABLE"]):
|
||||
src += ["../../src/device/usbd.c",
|
||||
"../../src/device/usbd_control.c"]
|
||||
# BSP
|
||||
if GetDepend(["SOC_FAMILY_STM32"]):
|
||||
src += ["../../src/portable/synopsys/dwc2/dcd_dwc2.c",
|
||||
"../../src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c"]
|
||||
|
||||
if GetDepend(["SOC_NRF52840"]):
|
||||
src += ["../../src/portable/nordic/nrf5x/dcd_nrf5x.c"]
|
||||
|
||||
if GetDepend(["SOC_FAMILY_RENESAS"]):
|
||||
src += ["../../src/portable/renesas/rusb2/dcd_rusb2.c",
|
||||
"../../src/portable/renesas/rusb2/rusb2_common.c"]
|
||||
|
||||
# Device class
|
||||
if GetDepend(["PKG_TINYUSB_DEVICE_UVC"]):
|
||||
src += ["../../src/class/video/video_device.c"]
|
||||
if GetDepend(["PKG_TINYUSB_DEVICE_CDC"]):
|
||||
src += ["../../src/class/cdc/cdc_device.c"]
|
||||
if GetDepend(["PKG_TINYUSB_DEVICE_MSC"]):
|
||||
src += ["../../src/class/msc/msc_device.c", "port/msc_device_port.c"]
|
||||
|
||||
# for host stack
|
||||
if GetDepend(["PKG_TINYUSB_HOST_ENABLE"]):
|
||||
src += ["../../src/host/usbh.c", "../../src/host/hub.c"]
|
||||
|
||||
if GetDepend(["SOC_FAMILY_RENESAS"]):
|
||||
src += ["../../src/portable/renesas/rusb2/hcd_rusb2.c",
|
||||
"../../src/portable/renesas/rusb2/rusb2_common.c"]
|
||||
|
||||
|
||||
if rtconfig.PLATFORM == 'gcc' or rtconfig.PLATFORM == 'armclang': # GCC or Keil AC6
|
||||
LOCAL_CFLAGS += ' -std=c99'
|
||||
elif rtconfig.PLATFORM == 'armcc': # Keil AC5
|
||||
|
Reference in New Issue
Block a user