基本信息
源码名称:USB转RS232驱动程序
源码大小:10.25M
文件格式:.rar
开发语言:C/C++
更新时间:2022-07-06
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

USB转RS232驱动程序


适用于USB转RS232线驱动



.
└── USB232驱动
    ├── Linux
    │   ├── FTDI_Drivers_Installation_Guide_for_Linux.pdf
    │   ├── Linux  test guide.pdf
    │   ├── ReadMe.txt
    │   └── libftd2xx-i386-1.3.6
    │       └── release
    │           ├── ReadMe.txt
    │           ├── WinTypes.h
    │           ├── build
    │           │   ├── libftd2xx
    │           │   │   ├── EEPROM
    │           │   │   │   ├── eedata.o
    │           │   │   │   ├── fte2data.o
    │           │   │   │   ├── ftee2232.o
    │           │   │   │   ├── ftee2232h.o
    │           │   │   │   ├── ftee232.o
    │           │   │   │   ├── ftee232h.o
    │           │   │   │   ├── ftee232r.o
    │           │   │   │   ├── ftee4232h.o
    │           │   │   │   ├── fteeftx.o
    │           │   │   │   └── serialno.o
    │           │   │   ├── Event.o
    │           │   │   ├── baud.o
    │           │   │   ├── bulk_in.o
    │           │   │   ├── config.o
    │           │   │   ├── device-list.o
    │           │   │   ├── ee.o
    │           │   │   ├── ftd2xx-private.o
    │           │   │   ├── ftd2xx.o
    │           │   │   └── usb_control.o
    │           │   ├── libftd2xx.a
    │           │   ├── libftd2xx.so.1.3.6
    │           │   ├── libftd2xx.txt
    │           │   └── libusb
    │           │       └── libusb
    │           │           ├── core.o
    │           │           ├── descriptor.o
    │           │           ├── hotplug.o
    │           │           ├── io.o
    │           │           ├── os
    │           │           │   ├── linux_netlink.o
    │           │           │   ├── linux_usbfs.o
    │           │           │   ├── poll_posix.o
    │           │           │   └── threads_posix.o
    │           │           └── sync.o
    │           ├── examples
    │           │   ├── BitMode
    │           │   │   ├── Makefile
    │           │   │   └── main.c
    │           │   ├── EEPROM
    │           │   │   ├── erase
    │           │   │   │   ├── Makefile
    │           │   │   │   └── main.c
    │           │   │   ├── read
    │           │   │   │   ├── Makefile
    │           │   │   │   ├── eeprom-read.c
    │           │   │   │   └── main.c
    │           │   │   ├── user
    │           │   │   │   ├── read
    │           │   │   │   │   ├── Makefile
    │           │   │   │   │   ├── main.c
    │           │   │   │   │   └── ua_data.bin
    │           │   │   │   ├── size
    │           │   │   │   │   ├── Makefile
    │           │   │   │   │   └── main.c
    │           │   │   │   └── write
    │           │   │   │       ├── Makefile
    │           │   │   │       └── main.c
    │           │   │   └── write
    │           │   │       ├── Makefile
    │           │   │       └── main.c
    │           │   ├── Events
    │           │   │   ├── Makefile
    │           │   │   └── main.c
    │           │   ├── LargeRead
    │           │   │   ├── Makefile
    │           │   │   └── main.c
    │           │   ├── Makefile
    │           │   ├── MultiThread
    │           │   │   ├── Makefile
    │           │   │   └── main.c
    │           │   ├── Rules.make
    │           │   ├── SetVIDPID
    │           │   │   ├── Makefile
    │           │   │   ├── main.c
    │           │   │   └── myConfig.txt
    │           │   ├── Simple
    │           │   │   ├── Makefile
    │           │   │   └── main.c
    │           │   ├── Timeouts
    │           │   │   ├── Makefile
    │           │   │   └── main.c
    │           │   ├── W32
    │           │   │   ├── escapeseq
    │           │   │   │   ├── Makefile
    │           │   │   │   └── main.c
    │           │   │   ├── events
    │           │   │   │   ├── Makefile
    │           │   │   │   └── main.c
    │           │   │   ├── simple
    │           │   │   │   ├── Makefile
    │           │   │   │   └── main.c
    │           │   │   ├── timeouts
    │           │   │   │   ├── Makefile
    │           │   │   │   └── main.c
    │           │   │   └── unsupported
    │           │   │       ├── Makefile
    │           │   │       └── main.c
    │           │   ├── WinTypes.h
    │           │   ├── ftd2xx.h
    │           │   ├── loopback
    │           │   │   ├── Makefile
    │           │   │   ├── jtag.c
    │           │   │   └── main.c
    │           │   ├── static
    │           │   │   ├── Makefile
    │           │   │   └── main.c
    │           │   └── write
    │           │       └── main.c
    │           ├── ftd2xx.h
    │           ├── libusb
    │           │   ├── COPYING
    │           │   ├── config.h
    │           │   └── libusb
    │           │       ├── Makefile.am
    │           │       ├── Makefile.in
    │           │       ├── core.c
    │           │       ├── descriptor.c
    │           │       ├── hotplug.c
    │           │       ├── hotplug.h
    │           │       ├── io.c
    │           │       ├── libusb-1.0.def
    │           │       ├── libusb-1.0.rc
    │           │       ├── libusb.h
    │           │       ├── libusbi.h
    │           │       ├── os
    │           │       │   ├── darwin_usb.c
    │           │       │   ├── darwin_usb.h
    │           │       │   ├── linux_netlink.c
    │           │       │   ├── linux_udev.c
    │           │       │   ├── linux_usbfs.c
    │           │       │   ├── linux_usbfs.h
    │           │       │   ├── netbsd_usb.c
    │           │       │   ├── openbsd_usb.c
    │           │       │   ├── poll_posix.c
    │           │       │   ├── poll_posix.h
    │           │       │   ├── poll_windows.c
    │           │       │   ├── poll_windows.h
    │           │       │   ├── threads_posix.c
    │           │       │   ├── threads_posix.h
    │           │       │   ├── threads_windows.c
    │           │       │   ├── threads_windows.h
    │           │       │   ├── wince_usb.c
    │           │       │   ├── wince_usb.h
    │           │       │   ├── windows_common.h
    │           │       │   ├── windows_usb.c
    │           │       │   └── windows_usb.h
    │           │       ├── strerror.c
    │           │       ├── sync.c
    │           │       ├── version.h
    │           │       └── version_nano.h
    │           └── release-notes.txt
    ├── Mac OS X _10.4 or later
    │   ├── D2XX1.2.2.dmg
    │   ├── FTDI_Drivers_Installation_Guide_for_MAC_OSX.pdf
    │   └── ReadMe-mac.rtf
    ├── WinCE
    │   ├── WinCE 6.0 x86 d2xx
    │   │   └── FTDI_D2XX_x86_CE600
    │   │       ├── Catalog
    │   │       │   └── FTDI_D2XX_x86_CE600.pbcxml
    │   │       ├── FTDI_D2XX_x86_CE600.bib
    │   │       ├── FTDI_D2XX_x86_CE600.dat
    │   │       ├── FTDI_D2XX_x86_CE600.db
    │   │       ├── FTDI_D2XX_x86_CE600.pbpxml
    │   │       ├── FTDI_D2XX_x86_CE600.reg
    │   │       ├── ProjSysgen.bat
    │   │       ├── ReadMe.txt
    │   │       ├── Resources
    │   │       │   ├── FTD2XX.dll
    │   │       │   └── ftdi_d2xx.dll
    │   │       ├── makefile
    │   │       ├── postlink.bat
    │   │       ├── prelink.bat
    │   │       └── sources
    │   ├── WinCE 7.0 x86 d2xx
    │   │   └── FTDI_D2XX_x86_CE700
    │   │       ├── Catalog
    │   │       │   └── FTDI_D2XX_x86_CE700.pbcxml
    │   │       ├── FTDI_D2XX_x86_CE700.bib
    │   │       ├── FTDI_D2XX_x86_CE700.dat
    │   │       ├── FTDI_D2XX_x86_CE700.db
    │   │       ├── FTDI_D2XX_x86_CE700.pbpxml
    │   │       ├── FTDI_D2XX_x86_CE700.reg
    │   │       ├── ProjSysgen.bat
    │   │       ├── ReadMe.txt
    │   │       ├── Resources
    │   │       │   ├── FTD2XX.dll
    │   │       │   └── ftdi_d2xx.dll
    │   │       ├── makefile
    │   │       ├── postlink.bat
    │   │       ├── prelink.bat
    │   │       └── sources
    │   ├── Windows CE 4.2-5.2
    │   │   └── x86D2XXDriver
    │   │       ├── FTD2XX.bib
    │   │       ├── FTD2XX.dll
    │   │       ├── FTD2XX.h
    │   │       ├── FTD2XX.lib
    │   │       ├── FTD2XX.reg
    │   │       ├── README.txt
    │   │       ├── Update.txt
    │   │       ├── ftd2xx.inf
    │   │       └── ftdi_d2xx.dll
    │   └── Windows CE Installation Guide.pdf
    ├── Windows RT
    │   └── D2xx WinRT 1.0.2
    │       ├── FTDI.D2xx.WinRT.USB.winmd
    │       ├── FTDI.D2xx.WinRT.XML
    │       ├── FTDI.D2xx.WinRT.inf
    │       ├── FTDI.D2xx.WinRT.winmd
    │       ├── TestApp
    │       │   ├── TestApp
    │       │   │   ├── App.xaml
    │       │   │   ├── App.xaml.cs
    │       │   │   ├── Assets
    │       │   │   │   ├── Logo.scale-100.png
    │       │   │   │   ├── SmallLogo.scale-100.png
    │       │   │   │   ├── SplashScreen.scale-100.png
    │       │   │   │   └── StoreLogo.scale-100.png
    │       │   │   ├── MainPage.xaml
    │       │   │   ├── MainPage.xaml.cs
    │       │   │   ├── Package.appxmanifest
    │       │   │   ├── Properties
    │       │   │   │   └── AssemblyInfo.cs
    │       │   │   ├── TestApp.csproj
    │       │   │   ├── TestApp_TemporaryKey.pfx
    │       │   │   ├── bin
    │       │   │   │   ├── ARM
    │       │   │   │   │   ├── Debug
    │       │   │   │   │   └── Release
    │       │   │   │   ├── Debug
    │       │   │   │   │   ├── App.xbf
    │       │   │   │   │   ├── AppX
    │       │   │   │   │   │   ├── App.xbf
    │       │   │   │   │   │   ├── AppxManifest.xml
    │       │   │   │   │   │   ├── Assets
    │       │   │   │   │   │   │   ├── Logo.scale-100.png
    │       │   │   │   │   │   │   ├── SmallLogo.scale-100.png
    │       │   │   │   │   │   │   ├── SplashScreen.scale-100.png
    │       │   │   │   │   │   │   └── StoreLogo.scale-100.png
    │       │   │   │   │   │   ├── FTDI.D2xx.WinRT.USB.winmd
    │       │   │   │   │   │   ├── FTDI.D2xx.WinRT.winmd
    │       │   │   │   │   │   ├── MainPage.xbf
    │       │   │   │   │   │   ├── TestApp.exe
    │       │   │   │   │   │   ├── resources.pri
    │       │   │   │   │   │   └── vs.appxrecipe
    │       │   │   │   │   ├── AppxManifest.xml
    │       │   │   │   │   ├── FTDI.D2xx.WinRT.USB.winmd
    │       │   │   │   │   ├── FTDI.D2xx.WinRT.winmd
    │       │   │   │   │   ├── FTDI.D2xx.WinRT.xml
    │       │   │   │   │   ├── MainPage.xbf
    │       │   │   │   │   ├── TestApp.build.appxrecipe
    │       │   │   │   │   ├── TestApp.exe
    │       │   │   │   │   ├── TestApp.pdb
    │       │   │   │   │   └── resources.pri
    │       │   │   │   ├── Release
    │       │   │   │   ├── x64
    │       │   │   │   │   ├── Debug
    │       │   │   │   │   └── Release
    │       │   │   │   └── x86
    │       │   │   │       ├── Debug
    │       │   │   │       └── Release
    │       │   │   └── obj
    │       │   │       └── Debug
    │       │   │           ├── App.g.cs
    │       │   │           ├── App.g.i.cs
    │       │   │           ├── App.xaml
    │       │   │           ├── App.xbf
    │       │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   │           ├── MainPage.g.cs
    │       │   │           ├── MainPage.g.i.cs
    │       │   │           ├── MainPage.xaml
    │       │   │           ├── MainPage.xbf
    │       │   │           ├── MultipleQualifiersPerDimensionFound.txt
    │       │   │           ├── ProjectArchitectures.txt
    │       │   │           ├── TempPE
    │       │   │           ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
    │       │   │           ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
    │       │   │           ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
    │       │   │           ├── TestApp.csproj.FileListAbsolute.txt
    │       │   │           ├── TestApp.csprojResolveAssemblyReference.cache
    │       │   │           ├── TestApp.exe
    │       │   │           ├── TestApp.pdb
    │       │   │           ├── XamlSaveStateFile.xml
    │       │   │           ├── XamlTypeInfo.g.cs
    │       │   │           ├── intermediatexaml
    │       │   │           │   ├── TestApp.exe
    │       │   │           │   └── TestApp.pdb
    │       │   │           ├── layout.resfiles
    │       │   │           ├── layout.resfiles.intermediate
    │       │   │           ├── pri.resfiles
    │       │   │           ├── pri.resfiles.intermediate
    │       │   │           ├── priconfig.xml
    │       │   │           ├── priconfig.xml.intermediate
    │       │   │           ├── qualifiers.txt
    │       │   │           ├── qualifiers.txt.intermediate
    │       │   │           ├── resources.resfiles
    │       │   │           └── resources.resfiles.intermediate
    │       │   ├── TestApp.sln
    │       │   └── TestApp.sln.GhostDoc.xml
    │       ├── WinRT Driver.chm
    │       └── ftdi.d2xx.winrt.cat
    └── Windows_10_8.1_8_7_Vista_XP
        ├── CDM 2 12 16 Release Info.rtf
        ├── CDM v2.12.16 WHQL Certified
        │   ├── Static
        │   │   ├── amd64
        │   │   │   └── ftd2xx.lib
        │   │   └── i386
        │   │       └── ftd2xx.lib
        │   ├── amd64
        │   │   ├── ftbusui.dll
        │   │   ├── ftcserco.dll
        │   │   ├── ftd2xx.lib
        │   │   ├── ftd2xx64.dll
        │   │   ├── ftdibus.sys
        │   │   ├── ftlang.dll
        │   │   ├── ftser2k.sys
        │   │   └── ftserui2.dll
        │   ├── ftd2xx.h
        │   ├── ftdibus.cat
        │   ├── ftdibus.inf
        │   ├── ftdiport.cat
        │   ├── ftdiport.inf
        │   └── i386
        │       ├── ftbusui.dll
        │       ├── ftcserco.dll
        │       ├── ftd2xx.dll
        │       ├── ftd2xx.lib
        │       ├── ftdibus.sys
        │       ├── ftlang.dll
        │       ├── ftser2k.sys
        │       └── ftserui2.dll
        ├── CDM21216_Setup.exe
        ├── FTDI Drivers Installation Guide for Windows 10.pdf
        ├── FTDI_Drivers_Installation_Guide_for_Windows_8.pdf
        └── Windows  Guide.pdf

81 directories, 268 files