mirror of
https://github.com/hathach/tinyusb.git
synced 2025-03-25 10:43:44 +00:00
Update IAR template.
This commit is contained in:
parent
56c6d2feab
commit
b35621fc63
123
tools/iar_gen.py
123
tools/iar_gen.py
@ -1,51 +1,84 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
import xml.dom.minidom as XML
|
import xml.dom.minidom as XML
|
||||||
|
import glob
|
||||||
|
|
||||||
# Read base configuration
|
def Main():
|
||||||
base = ""
|
# Read base configuration
|
||||||
with open("iar_template.ipcf") as f:
|
base = ""
|
||||||
base = f.read()
|
with open("iar_template.ipcf") as f:
|
||||||
|
base = f.read()
|
||||||
|
|
||||||
# Enumerate all device/host examples
|
# Enumerate all device/host examples
|
||||||
dir_1 = os.listdir("../examples")
|
dir_1 = os.listdir("../examples")
|
||||||
for dir_2 in dir_1:
|
for dir_2 in dir_1:
|
||||||
if os.path.isdir("../examples/{}".format(dir_2)):
|
if os.path.isdir("../examples/{}".format(dir_2)):
|
||||||
print(dir_2)
|
print(dir_2)
|
||||||
examples = os.listdir("../examples/{}".format(dir_2))
|
examples = os.listdir("../examples/{}".format(dir_2))
|
||||||
for example in examples:
|
for example in examples:
|
||||||
if os.path.isdir("../examples/{}/{}".format(dir_2, example)):
|
if os.path.isdir("../examples/{}/{}".format(dir_2, example)):
|
||||||
print("../examples/{}/{}".format(dir_2, example))
|
print("../examples/{}/{}".format(dir_2, example))
|
||||||
conf = XML.parseString(base)
|
conf = XML.parseString(base)
|
||||||
files = conf.getElementsByTagName("files")[0]
|
files = conf.getElementsByTagName("files")[0]
|
||||||
inc = conf.getElementsByTagName("includePath")[0]
|
inc = conf.getElementsByTagName("includePath")[0]
|
||||||
# Add bsp inc
|
# Add bsp inc
|
||||||
path = conf.createElement('path')
|
path = conf.createElement('path')
|
||||||
path_txt = conf.createTextNode("$TUSB_DIR$/hw")
|
path_txt = conf.createTextNode("$TUSB_DIR$/hw")
|
||||||
path.appendChild(path_txt)
|
path.appendChild(path_txt)
|
||||||
inc.appendChild(path)
|
inc.appendChild(path)
|
||||||
# Add board.c/.h
|
# Add board.c/.h
|
||||||
grp = conf.createElement('group')
|
grp = conf.createElement('group')
|
||||||
grp.setAttribute("name", "bsp")
|
grp.setAttribute("name", "bsp")
|
||||||
path = conf.createElement('path')
|
path = conf.createElement('path')
|
||||||
path_txt = conf.createTextNode("$TUSB_DIR$/hw/bsp/board.c")
|
path_txt = conf.createTextNode("$TUSB_DIR$/hw/bsp/board.c")
|
||||||
path.appendChild(path_txt)
|
path.appendChild(path_txt)
|
||||||
grp.appendChild(path)
|
grp.appendChild(path)
|
||||||
files.appendChild(grp)
|
files.appendChild(grp)
|
||||||
# Add example's .c/.h
|
# Add example's .c/.h
|
||||||
grp = conf.createElement('group')
|
grp = conf.createElement('group')
|
||||||
grp.setAttribute("name", "example")
|
grp.setAttribute("name", "example")
|
||||||
for file in os.listdir("../examples/{}/{}/src".format(dir_2, example)):
|
for file in os.listdir("../examples/{}/{}/src".format(dir_2, example)):
|
||||||
if file.endswith(".c") or file.endswith(".h"):
|
if file.endswith(".c") or file.endswith(".h"):
|
||||||
path = conf.createElement('path')
|
path = conf.createElement('path')
|
||||||
path.setAttribute("copyTo", "$PROJ_DIR$/{}".format(file))
|
path.setAttribute("copyTo", "$PROJ_DIR$/{}".format(file))
|
||||||
path_txt = conf.createTextNode("$TUSB_DIR$/examples/{0}/{1}/src/{2}".format(dir_2, example, file))
|
path_txt = conf.createTextNode("$TUSB_DIR$/examples/{0}/{1}/src/{2}".format(dir_2, example, file))
|
||||||
path.appendChild(path_txt)
|
path.appendChild(path_txt)
|
||||||
grp.appendChild(path)
|
grp.appendChild(path)
|
||||||
files.appendChild(grp)
|
files.appendChild(grp)
|
||||||
cfg_str = conf.toprettyxml()
|
cfg_str = conf.toprettyxml()
|
||||||
cfg_str = '\n'.join([s for s in cfg_str.splitlines() if s.strip()])
|
cfg_str = '\n'.join([s for s in cfg_str.splitlines() if s.strip()])
|
||||||
#print(cfg_str)
|
#print(cfg_str)
|
||||||
with open("../examples/{0}/{1}/iar_{1}.ipcf".format(dir_2, example), 'w') as f:
|
with open("../examples/{0}/{1}/iar_{1}.ipcf".format(dir_2, example), 'w') as f:
|
||||||
f.write(cfg_str)
|
f.write(cfg_str)
|
||||||
|
|
||||||
|
def ListPath(path, blacklist=[]):
|
||||||
|
# Get all .c files
|
||||||
|
files = glob.glob(f'../{path}/**/*.c', recursive=True)
|
||||||
|
# Filter
|
||||||
|
files = [x for x in files if all(y not in x for y in blacklist)]
|
||||||
|
# Get common dir list
|
||||||
|
dirs = []
|
||||||
|
for file in files:
|
||||||
|
dir = os.path.dirname(file)
|
||||||
|
if dir not in dirs:
|
||||||
|
dirs.append(dir)
|
||||||
|
# Print .c groupped by dir
|
||||||
|
for dir in dirs:
|
||||||
|
print('<group name="' + dir.replace('../', '').replace('\\','/') + '">')
|
||||||
|
for file in files:
|
||||||
|
if os.path.dirname(file) == dir:
|
||||||
|
print(' <path>$TUSB_DIR$/' + file.replace('../','').replace('\\','/')+'</path>')
|
||||||
|
print('</group>')
|
||||||
|
|
||||||
|
def List():
|
||||||
|
ListPath('src', [ 'template.c', 'dcd_synopsys.c', 'dcd_esp32sx.c' ])
|
||||||
|
ListPath('lib/SEGGER_RTT')
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
if (len(sys.argv) > 1):
|
||||||
|
if (sys.argv[1] == 'l'):
|
||||||
|
List()
|
||||||
|
else:
|
||||||
|
Main()
|
||||||
|
@ -4,166 +4,176 @@
|
|||||||
<includePath>
|
<includePath>
|
||||||
<path>$TUSB_DIR$/src</path>
|
<path>$TUSB_DIR$/src</path>
|
||||||
<path>$TUSB_DIR$/lib/SEGGER_RTT/RTT</path>
|
<path>$TUSB_DIR$/lib/SEGGER_RTT/RTT</path>
|
||||||
|
<path>$TUSB_DIR$/lib/SEGGER_RTT/Config</path>
|
||||||
<path>$PROJ_DIR$</path>
|
<path>$PROJ_DIR$</path>
|
||||||
</includePath>
|
</includePath>
|
||||||
<files>
|
<files>
|
||||||
<group name="src/device">
|
|
||||||
<path>$TUSB_DIR$/src/device/usbd.c</path>
|
|
||||||
<path>$TUSB_DIR$/src/device/usbd_control.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/common">
|
|
||||||
<path>$TUSB_DIR$/src/common/tusb_fifo.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/audio">
|
|
||||||
<path>$TUSB_DIR$/src/class/audio/audio_device.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/bth">
|
|
||||||
<path>$TUSB_DIR$/src/class/bth/bth_device.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/cdc">
|
|
||||||
<path>$TUSB_DIR$/src/class/cdc/cdc_device.c</path>
|
|
||||||
<path>$TUSB_DIR$/src/class/cdc/cdc_host.c</path>
|
|
||||||
<path>$TUSB_DIR$/src/class/cdc/cdc_rndis_host.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/dfu">
|
|
||||||
<path>$TUSB_DIR$/src/class/dfu/dfu_device.c</path>
|
|
||||||
<path>$TUSB_DIR$/src/class/dfu/dfu_rt_device.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/hid">
|
|
||||||
<path>$TUSB_DIR$/src/class/hid/hid_device.c</path>
|
|
||||||
<path>$TUSB_DIR$/src/class/hid/hid_host.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/midi">
|
|
||||||
<path>$TUSB_DIR$/src/class/midi/midi_device.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/msc">
|
|
||||||
<path>$TUSB_DIR$/src/class/msc/msc_device.c</path>
|
|
||||||
<path>$TUSB_DIR$/src/class/msc/msc_host.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/net">
|
|
||||||
<path>$TUSB_DIR$/src/class/net/ecm_rndis_device.c</path>
|
|
||||||
<path>$TUSB_DIR$/src/class/net/ncm_device.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/usbtmc">
|
|
||||||
<path>$TUSB_DIR$/src/class/usbtmc/usbtmc_device.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src/class/vendor">
|
|
||||||
<path>$TUSB_DIR$/src/class/vendor/vendor_device.c</path>
|
|
||||||
<path>$TUSB_DIR$/src/class/vendor/vendor_host.c</path>
|
|
||||||
</group>
|
|
||||||
<group name="src">
|
<group name="src">
|
||||||
<path>$TUSB_DIR$/src/tusb.c</path>
|
<path>$TUSB_DIR$/src/tusb.c</path>
|
||||||
</group>
|
</group>
|
||||||
<group name="src/host">
|
<group name="src/class/audio">
|
||||||
<path>$TUSB_DIR$/src/host/hub.c</path>
|
<path>$TUSB_DIR$/src/class/audio/audio_device.c</path>
|
||||||
<path>$TUSB_DIR$/src/host/usbh.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/class/bth">
|
||||||
<group name="src/portable/bridgetek/ft9xx">
|
<path>$TUSB_DIR$/src/class/bth/bth_device.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/bridgetek/ft9xx/dcd_ft9xx.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/class/cdc">
|
||||||
<group name="src/portable/chipidea/ci_hs">
|
<path>$TUSB_DIR$/src/class/cdc/cdc_device.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/chipidea/ci_hs/dcd_ci_hs.c</path>
|
<path>$TUSB_DIR$/src/class/cdc/cdc_host.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/chipidea/ci_hs/hcd_ci_hs.c</path>
|
<path>$TUSB_DIR$/src/class/cdc/cdc_rndis_host.c</path>
|
||||||
</group>
|
</group>
|
||||||
<group name="src/portable/synopsys/dwc2">
|
<group name="src/class/dfu">
|
||||||
<path>$TUSB_DIR$/src/portable/synopsys/dwc2/dcd_dwc2.c</path>
|
<path>$TUSB_DIR$/src/class/dfu/dfu_device.c</path>
|
||||||
</group>
|
<path>$TUSB_DIR$/src/class/dfu/dfu_rt_device.c</path>
|
||||||
<group name="src/portable/dialog/da146xx">
|
</group>
|
||||||
<path>$TUSB_DIR$/src/portable/dialog/da146xx/dcd_da146xx.c</path>
|
<group name="src/class/hid">
|
||||||
</group>
|
<path>$TUSB_DIR$/src/class/hid/hid_device.c</path>
|
||||||
<group name="src/portable/ehci">
|
<path>$TUSB_DIR$/src/class/hid/hid_host.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/ehci/ehci.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/class/midi">
|
||||||
<group name="src/portable/espressif/esp32sx">
|
<path>$TUSB_DIR$/src/class/midi/midi_device.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/espressif/esp32sx/dcd_esp32sx.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/class/msc">
|
||||||
<group name="src/portable/mentor/musb">
|
<path>$TUSB_DIR$/src/class/msc/msc_device.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/mentor/musb/dcd_musb.c</path>
|
<path>$TUSB_DIR$/src/class/msc/msc_host.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/mentor/musb/hcd_musb.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/class/net">
|
||||||
<group name="src/portable/microchip/samd">
|
<path>$TUSB_DIR$/src/class/net/ecm_rndis_device.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/microchip/samd/dcd_samd.c</path>
|
<path>$TUSB_DIR$/src/class/net/ncm_device.c</path>
|
||||||
</group>
|
</group>
|
||||||
<group name="src/portable/microchip/samg">
|
<group name="src/class/usbtmc">
|
||||||
<path>$TUSB_DIR$/src/portable/microchip/samg/dcd_samg.c</path>
|
<path>$TUSB_DIR$/src/class/usbtmc/usbtmc_device.c</path>
|
||||||
</group>
|
</group>
|
||||||
<group name="src/portable/microchip/samx7x">
|
<group name="src/class/vendor">
|
||||||
<path>$TUSB_DIR$/src/portable/microchip/samx7x/dcd_samx7x.c</path>
|
<path>$TUSB_DIR$/src/class/vendor/vendor_device.c</path>
|
||||||
</group>
|
<path>$TUSB_DIR$/src/class/vendor/vendor_host.c</path>
|
||||||
<group name="src/portable/microchip/pic">
|
</group>
|
||||||
<path>$TUSB_DIR$/src/portable/microchip/pic/dcd_pic.c</path>
|
<group name="src/class/video">
|
||||||
</group>
|
<path>$TUSB_DIR$/src/class/video/video_device.c</path>
|
||||||
<group name="src/portable/microchip/pic32mz">
|
</group>
|
||||||
<path>$TUSB_DIR$/src/portable/microchip/pic32mz/dcd_pic32mz.c</path>
|
<group name="src/common">
|
||||||
</group>
|
<path>$TUSB_DIR$/src/common/tusb_fifo.c</path>
|
||||||
<group name="src/portable/mindmotion/mm32">
|
</group>
|
||||||
<path>$TUSB_DIR$/src/portable/mindmotion/mm32/dcd_mm32f327x_otg.c</path>
|
<group name="src/device">
|
||||||
</group>
|
<path>$TUSB_DIR$/src/device/usbd.c</path>
|
||||||
<group name="src/portable/nordic/nrf5x">
|
<path>$TUSB_DIR$/src/device/usbd_control.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/nordic/nrf5x/dcd_nrf5x.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/host">
|
||||||
<group name="src/portable/nuvoton/nuc120">
|
<path>$TUSB_DIR$/src/host/hub.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/nuvoton/nuc120/dcd_nuc120.c</path>
|
<path>$TUSB_DIR$/src/host/usbh.c</path>
|
||||||
</group>
|
</group>
|
||||||
<group name="src/portable/nuvoton/nuc121">
|
<group name="src/portable/analog/max3421">
|
||||||
<path>$TUSB_DIR$/src/portable/nuvoton/nuc121/dcd_nuc121.c</path>
|
<path>$TUSB_DIR$/src/portable/analog/max3421/hcd_max3421.c</path>
|
||||||
</group>
|
</group>
|
||||||
<group name="src/portable/nuvoton/nuc505">
|
<group name="src/portable/bridgetek/ft9xx">
|
||||||
<path>$TUSB_DIR$/src/portable/nuvoton/nuc505/dcd_nuc505.c</path>
|
<path>$TUSB_DIR$/src/portable/bridgetek/ft9xx/dcd_ft9xx.c</path>
|
||||||
</group>
|
</group>
|
||||||
<group name="src/portable/nxp/khci">
|
<group name="src/portable/chipidea/ci_fs">
|
||||||
<path>$TUSB_DIR$/src/portable/nxp/khci/dcd_khci.c</path>
|
<path>$TUSB_DIR$/src/portable/chipidea/ci_fs/dcd_ci_fs.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/nxp/khci/hcd_khci.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/chipidea/ci_hs">
|
||||||
<group name="src/portable/nxp/lpc17_40">
|
<path>$TUSB_DIR$/src/portable/chipidea/ci_hs/dcd_ci_hs.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/nxp/lpc17_40/dcd_lpc17_40.c</path>
|
<path>$TUSB_DIR$/src/portable/chipidea/ci_hs/hcd_ci_hs.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/nxp/lpc17_40/hcd_lpc17_40.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/dialog/da146xx">
|
||||||
<group name="src/portable/nxp/lpc_ip3511">
|
<path>$TUSB_DIR$/src/portable/dialog/da146xx/dcd_da146xx.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/ehci">
|
||||||
<group name="src/portable/nxp/transdimension">
|
<path>$TUSB_DIR$/src/portable/ehci/ehci.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/nxp/transdimension/dcd_transdimension.c</path>
|
</group>
|
||||||
<path>$TUSB_DIR$/src/portable/nxp/transdimension/hcd_transdimension.c</path>
|
<group name="src/portable/mentor/musb">
|
||||||
</group>
|
<path>$TUSB_DIR$/src/portable/mentor/musb/dcd_musb.c</path>
|
||||||
<group name="src/portable/ohci">
|
<path>$TUSB_DIR$/src/portable/mentor/musb/hcd_musb.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/ohci/ohci.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/microchip/pic">
|
||||||
<group name="src/portable/raspberrypi/pio_usb">
|
<path>$TUSB_DIR$/src/portable/microchip/pic/dcd_pic.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/raspberrypi/pio_usb/dcd_pio_usb.c</path>
|
</group>
|
||||||
<path>$TUSB_DIR$/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c</path>
|
<group name="src/portable/microchip/pic32mz">
|
||||||
</group>
|
<path>$TUSB_DIR$/src/portable/microchip/pic32mz/dcd_pic32mz.c</path>
|
||||||
<group name="src/portable/raspberrypi/rp2040">
|
</group>
|
||||||
<path>$TUSB_DIR$/src/portable/raspberrypi/rp2040/dcd_rp2040.c</path>
|
<group name="src/portable/microchip/samd">
|
||||||
<path>$TUSB_DIR$/src/portable/raspberrypi/rp2040/hcd_rp2040.c</path>
|
<path>$TUSB_DIR$/src/portable/microchip/samd/dcd_samd.c</path>
|
||||||
</group>
|
</group>
|
||||||
<group name="src/portable/renesas/rusb2">
|
<group name="src/portable/microchip/samg">
|
||||||
<path>$TUSB_DIR$/src/portable/renesas/rusb2/dcd_rusb2.c</path>
|
<path>$TUSB_DIR$/src/portable/microchip/samg/dcd_samg.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/renesas/rusb2/hcd_rusb2.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/microchip/samx7x">
|
||||||
<group name="src/portable/sony/cxd56">
|
<path>$TUSB_DIR$/src/portable/microchip/samx7x/dcd_samx7x.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/sony/cxd56/dcd_cxd56.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/mindmotion/mm32">
|
||||||
<group name="src/portable/st/stm32_fsdev">
|
<path>$TUSB_DIR$/src/portable/mindmotion/mm32/dcd_mm32f327x_otg.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/nordic/nrf5x">
|
||||||
<group name="src/portable/sunxi">
|
<path>$TUSB_DIR$/src/portable/nordic/nrf5x/dcd_nrf5x.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/sunxi/dcd_sunxi_musb.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/nuvoton/nuc120">
|
||||||
<group name="src/portable/ti/msp430x5xx">
|
<path>$TUSB_DIR$/src/portable/nuvoton/nuc120/dcd_nuc120.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/ti/msp430x5xx/dcd_msp430x5xx.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/nuvoton/nuc121">
|
||||||
<group name="src/portable/valentyusb/eptri">
|
<path>$TUSB_DIR$/src/portable/nuvoton/nuc121/dcd_nuc121.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/valentyusb/eptri/dcd_eptri.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/nuvoton/nuc505">
|
||||||
<group name="src/portable/wch/ch32v307">
|
<path>$TUSB_DIR$/src/portable/nuvoton/nuc505/dcd_nuc505.c</path>
|
||||||
<path>$TUSB_DIR$/src/portable/wch/ch32v307/dcd_usbhs.c</path>
|
</group>
|
||||||
</group>
|
<group name="src/portable/nxp/khci">
|
||||||
<group name="lib/SEGGER_RTT">
|
<path>$TUSB_DIR$/src/portable/nxp/khci/dcd_khci.c</path>
|
||||||
<path>$TUSB_DIR$/lib/SEGGER_RTT/RTT/SEGGER_RTT.c</path>
|
<path>$TUSB_DIR$/src/portable/nxp/khci/hcd_khci.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/nxp/lpc17_40">
|
||||||
|
<path>$TUSB_DIR$/src/portable/nxp/lpc17_40/dcd_lpc17_40.c</path>
|
||||||
|
<path>$TUSB_DIR$/src/portable/nxp/lpc17_40/hcd_lpc17_40.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/nxp/lpc_ip3511">
|
||||||
|
<path>$TUSB_DIR$/src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/ohci">
|
||||||
|
<path>$TUSB_DIR$/src/portable/ohci/ohci.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/raspberrypi/pio_usb">
|
||||||
|
<path>$TUSB_DIR$/src/portable/raspberrypi/pio_usb/dcd_pio_usb.c</path>
|
||||||
|
<path>$TUSB_DIR$/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/raspberrypi/rp2040">
|
||||||
|
<path>$TUSB_DIR$/src/portable/raspberrypi/rp2040/dcd_rp2040.c</path>
|
||||||
|
<path>$TUSB_DIR$/src/portable/raspberrypi/rp2040/hcd_rp2040.c</path>
|
||||||
|
<path>$TUSB_DIR$/src/portable/raspberrypi/rp2040/rp2040_usb.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/renesas/rusb2">
|
||||||
|
<path>$TUSB_DIR$/src/portable/renesas/rusb2/dcd_rusb2.c</path>
|
||||||
|
<path>$TUSB_DIR$/src/portable/renesas/rusb2/hcd_rusb2.c</path>
|
||||||
|
<path>$TUSB_DIR$/src/portable/renesas/rusb2/rusb2_common.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/sony/cxd56">
|
||||||
|
<path>$TUSB_DIR$/src/portable/sony/cxd56/dcd_cxd56.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/st/stm32_fsdev">
|
||||||
|
<path>$TUSB_DIR$/src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/st/typec">
|
||||||
|
<path>$TUSB_DIR$/src/portable/st/typec/typec_stm32.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/sunxi">
|
||||||
|
<path>$TUSB_DIR$/src/portable/sunxi/dcd_sunxi_musb.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/synopsys/dwc2">
|
||||||
|
<path>$TUSB_DIR$/src/portable/synopsys/dwc2/dcd_dwc2.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/ti/msp430x5xx">
|
||||||
|
<path>$TUSB_DIR$/src/portable/ti/msp430x5xx/dcd_msp430x5xx.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/valentyusb/eptri">
|
||||||
|
<path>$TUSB_DIR$/src/portable/valentyusb/eptri/dcd_eptri.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/portable/wch/ch32v307">
|
||||||
|
<path>$TUSB_DIR$/src/portable/wch/ch32v307/dcd_usbhs.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="src/typec">
|
||||||
|
<path>$TUSB_DIR$/src/typec/usbc.c</path>
|
||||||
|
</group>
|
||||||
|
<group name="lib/SEGGER_RTT/RTT">
|
||||||
|
<path>$TUSB_DIR$/lib/SEGGER_RTT/RTT/SEGGER_RTT.c</path>
|
||||||
<path>$TUSB_DIR$/lib/SEGGER_RTT/RTT/SEGGER_RTT_printf.c</path>
|
<path>$TUSB_DIR$/lib/SEGGER_RTT/RTT/SEGGER_RTT_printf.c</path>
|
||||||
<path>$TUSB_DIR$/lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_IAR.c</path>
|
</group>
|
||||||
</group>
|
|
||||||
</files>
|
</files>
|
||||||
|
|
||||||
</iarProjectConnection>
|
</iarProjectConnection>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user