├── Bin ├── DfuFileMgr.exe ├── DfuSeCommand.exe ├── DfuSeDemo.exe ├── Doc │ ├── UM0384.pdf │ ├── UM0391.pdf │ ├── UM0392.pdf │ └── UM0412.pdf ├── Driver │ ├── Win7 │ │ ├── DFU_Win7_x86x64_v3.0.4.0_LogoVerificationReport.pdf │ │ ├── x64 │ │ │ ├── STtube.inf │ │ │ ├── dpinst_amd64.exe │ │ │ ├── sttube.cat │ │ │ └── x64 │ │ │ │ └── STTub30.sys │ │ └── x86 │ │ │ ├── STtube.inf │ │ │ ├── dpinst_x86.exe │ │ │ ├── sttube.cat │ │ │ └── x86 │ │ │ └── STTub30.sys │ ├── Win8 │ │ ├── DFU_3.0.4.0_LogoVerificationReport.pdf │ │ ├── x64 │ │ │ ├── STtube.inf │ │ │ ├── dpinst_amd64.exe │ │ │ ├── sttube.cat │ │ │ └── x64 │ │ │ │ └── STTub30.sys │ │ └── x86 │ │ │ ├── STtube.inf │ │ │ ├── dpinst_x86.exe │ │ │ ├── sttube.cat │ │ │ └── x86 │ │ │ └── STTub30.sys │ └── version.txt ├── MCD-ST Liberty SW License Agreement V2.pdf ├── STDFU.dll ├── STDFUFiles.dll ├── STDFUPRT.dll ├── STDFUTester.exe ├── STM32-C8T6.dfu ├── STM32-C8T6.hex ├── STM32-ZET6.dfu ├── STM32-ZET6.hex ├── STTubeDevice30.dll ├── readme.txt └── version.txt ├── README.md ├── STM32-C8T6.dfu ├── STM32-C8T6.hex ├── STM32-ZET6.dfu ├── STM32-ZET6.hex ├── Sources ├── Binary │ └── Release │ │ ├── DfuFileMgr.exe │ │ ├── DfuSeCommand.exe │ │ ├── DfuSeDemo.exe │ │ ├── STDFU.dll │ │ ├── STDFUFiles.dll │ │ ├── STDFUPRT.dll │ │ └── STTubeDevice30.dll ├── DfuFileMgr │ ├── DFU File Manager.ico │ ├── DfuFileMgr.aps │ ├── DfuFileMgr.cpp │ ├── DfuFileMgr.dsp │ ├── DfuFileMgr.h │ ├── DfuFileMgr.rc │ ├── DfuFileMgr.vcproj │ ├── DfuFileMgr.vcxproj │ ├── DfuFileMgr.vcxproj.filters │ ├── DfuFileMgr.vcxproj.user │ ├── DfuFileMgrDlg.cpp │ ├── DfuFileMgrDlg.h │ ├── DfuFileMgrDlgExtract.cpp │ ├── DfuFileMgrDlgExtract.h │ ├── HexEdit.cpp │ ├── HexEdit.h │ ├── MultiBinDlg.cpp │ ├── MultiBinDlg.h │ ├── RES │ │ ├── DfuFileMgr.ico │ │ └── DfuFileMgr.rc2 │ ├── Release │ │ └── DfuFileMgr.tlog │ │ │ └── DfuFileMgr.lastbuildstate │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── WhatToDoDlg.cpp │ ├── WhatToDoDlg.h │ ├── first.dfu │ ├── hello.dfu │ ├── idr_main.ico │ └── resource.h ├── DfuSe.sln ├── DfuSe.v12.suo ├── DfuSeCommand │ ├── DfuSeCommand.aps │ ├── DfuSeCommand.cpp │ ├── DfuSeCommand.dsp │ ├── DfuSeCommand.rc │ ├── DfuSeCommand.vcproj │ ├── DfuSeCommand.vcxproj │ ├── DfuSeCommand.vcxproj.filters │ ├── DfuSeCommand.vcxproj.user │ ├── ReadMe.txt │ ├── Release │ │ └── DfuSeCommand.tlog │ │ │ └── DfuSeCommand.lastbuildstate │ ├── Resource.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ └── lib │ │ ├── STDFU.H │ │ ├── STDFU.lib │ │ ├── STDFUFiles.h │ │ ├── STDFUFiles.lib │ │ ├── STDFUPRT.h │ │ ├── STDFUPRT.lib │ │ ├── STTubeDevice.h │ │ └── STTubeDevice30.lib ├── DfuseDemo │ ├── DfuSe Demo.ico │ ├── DfuSeDemo.aps │ ├── DfuSeDemo.cpp │ ├── DfuSeDemo.dsp │ ├── DfuSeDemo.h │ ├── DfuSeDemo.rc │ ├── DfuSeDemo.rc_.txt │ ├── DfuSeDemo.vcproj │ ├── DfuSeDemo.vcxproj │ ├── DfuSeDemo.vcxproj.filters │ ├── DfuSeDemo.vcxproj.user │ ├── DfuSeDemoDlg.cpp │ ├── DfuSeDemoDlg.h │ ├── Enumeration.cpp │ ├── Enumeration.h │ ├── HexEdit.cpp │ ├── HexEdit.h │ ├── Include │ │ ├── GAMEPORT.H │ │ ├── HIDCLASS.H │ │ ├── HIDPDDI.H │ │ ├── HIDPI.H │ │ ├── HIDPORT.H │ │ ├── HIDSDI.H │ │ ├── HIDTOKEN.H │ │ ├── Hid.h │ │ ├── Hidpi++.h │ │ ├── Hidsdi++.h │ │ ├── Hidusage.h │ │ ├── SETUPAPI.H │ │ └── USB100.H │ ├── MappingDlg.cpp │ ├── MappingDlg.h │ ├── OptionBytesDialog.cpp │ ├── OptionBytesDialog.h │ ├── OptionBytesDialog_f2.cpp │ ├── OptionBytesDialog_f2.h │ ├── OptionBytesDialog_l1.cpp │ ├── OptionBytesDialog_l1.h │ ├── RES │ │ ├── DfuSeDemo.ico │ │ └── DfuSeDemo.rc2 │ ├── Release │ │ └── DfuSeDemo.tlog │ │ │ └── DfuSeDemo.lastbuildstate │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TextProgressCtrl.cpp │ ├── TextProgressCtrl.h │ ├── lib │ │ └── hid.lib │ └── resource.h ├── Include │ ├── SETUPAPI.H │ ├── STTubeDeviceErr30.h │ ├── STTubeDeviceFun30.h │ ├── STTubeDeviceTyp30.h │ ├── USB100.H │ ├── USBDI.H │ └── USBIOCTL.H ├── MCD-ST Liberty SW License Agreement V2.pdf ├── Release │ ├── Hex2Dfu.iobj │ ├── Hex2Dfu.ipdb │ ├── demo.exe │ ├── demo.iobj │ ├── demo.ipdb │ ├── hello.exe │ ├── hello.iobj │ ├── hello.ipdb │ ├── world.exe │ ├── world.iobj │ └── world.ipdb ├── STDFU │ ├── Internal STDFU.DSP │ ├── Internal STDFU.vcproj │ ├── Internal STDFU.vcxproj │ ├── Internal STDFU.vcxproj.filters │ ├── RESOURCE.H │ ├── Release │ │ ├── STDFU.exp │ │ ├── STDFU.lib │ │ └── STDFU.tlog │ │ │ └── STDFU.lastbuildstate │ ├── STDFU.APS │ ├── STDFU.CPP │ ├── STDFU.DSP │ ├── STDFU.H │ ├── STDFU.def │ ├── STDFU.rc │ ├── STDFU.vcproj │ ├── STDFU.vcxproj │ ├── STDFU.vcxproj.filters │ ├── STDFU.vcxproj.user │ ├── StdAfx.cpp │ └── StdAfx.h ├── STDFUFiles │ ├── DFUFILE.CPP │ ├── DFUFILE.H │ ├── RES │ │ └── STDFUFILES.rc2 │ ├── Release │ │ ├── STDFUFiles.exp │ │ ├── STDFUFiles.lib │ │ └── STDFUFiles.tlog │ │ │ └── STDFUFiles.lastbuildstate │ ├── Resource.h │ ├── STDFUFiles.aps │ ├── STDFUFiles.cpp │ ├── STDFUFiles.def │ ├── STDFUFiles.dsp │ ├── STDFUFiles.h │ ├── STDFUFiles.rc │ ├── STDFUFiles.vcproj │ ├── STDFUFiles.vcxproj │ ├── STDFUFiles.vcxproj.filters │ ├── STDFUFiles.vcxproj.user │ ├── STDFUFilesInc.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── file.c │ └── file.h ├── STDFUPRT │ ├── DFUHREAD.CPP │ ├── DetachThread.CPP │ ├── DetachThread.h │ ├── Image.h │ ├── RES │ │ └── STDFUPRT.rc2 │ ├── Release │ │ ├── STDFUPRT.exp │ │ ├── STDFUPRT.lib │ │ └── STDFUPRT.tlog │ │ │ └── STDFUPRT.lastbuildstate │ ├── Resource.h │ ├── STDFUPRT.APS │ ├── STDFUPRT.cpp │ ├── STDFUPRT.def │ ├── STDFUPRT.dsp │ ├── STDFUPRT.h │ ├── STDFUPRT.rc │ ├── STDFUPRT.vcproj │ ├── STDFUPRT.vcxproj │ ├── STDFUPRT.vcxproj.filters │ ├── STDFUPRTINC.h │ ├── STTHREAD.CPP │ ├── STTHREAD.H │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── dfuthread.h │ ├── downloadthread.cpp │ ├── downloadthread.h │ ├── image.cpp │ ├── returnthread.cpp │ ├── returnthread.h │ ├── uploadthread.cpp │ └── uploadthread.h ├── STTubeDevice │ ├── IoCode.h │ ├── Release │ │ ├── STTubeDevice30.exp │ │ ├── STTubeDevice30.lib │ │ └── STTubeDevice30.tlog │ │ │ └── STTubeDevice30.lastbuildstate │ ├── Resource.h │ ├── STDevice.cpp │ ├── STDevice.h │ ├── STDevicesMgr.cpp │ ├── STDevicesMgr.h │ ├── STTubeDevice.aps │ ├── STTubeDevice.cpp │ ├── STTubeDevice.def │ ├── STTubeDevice.dsp │ ├── STTubeDevice.h │ ├── STTubeDevice.rc │ ├── STTubeDevice.vcxproj │ ├── STTubeDevice.vcxproj.filters │ ├── STTubeDevice.vcxproj.user │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── USB100.H │ └── interface │ │ ├── STTubeDeviceErr30.h │ │ ├── STTubeDeviceFun30.h │ │ ├── STTubeDeviceTyp30.h │ │ ├── USB100.H │ │ ├── USBDI.H │ │ └── USBIOCTL.H └── Tools │ ├── GUIDGEN.DLL │ └── GUIDGEN.EXE └── keilkilll.bat /Bin/DfuFileMgr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/DfuFileMgr.exe -------------------------------------------------------------------------------- /Bin/DfuSeCommand.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/DfuSeCommand.exe -------------------------------------------------------------------------------- /Bin/DfuSeDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/DfuSeDemo.exe -------------------------------------------------------------------------------- /Bin/Doc/UM0384.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Doc/UM0384.pdf -------------------------------------------------------------------------------- /Bin/Doc/UM0391.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Doc/UM0391.pdf -------------------------------------------------------------------------------- /Bin/Doc/UM0392.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Doc/UM0392.pdf -------------------------------------------------------------------------------- /Bin/Doc/UM0412.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Doc/UM0412.pdf -------------------------------------------------------------------------------- /Bin/Driver/Win7/DFU_Win7_x86x64_v3.0.4.0_LogoVerificationReport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/DFU_Win7_x86x64_v3.0.4.0_LogoVerificationReport.pdf -------------------------------------------------------------------------------- /Bin/Driver/Win7/x64/STtube.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/x64/STtube.inf -------------------------------------------------------------------------------- /Bin/Driver/Win7/x64/dpinst_amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/x64/dpinst_amd64.exe -------------------------------------------------------------------------------- /Bin/Driver/Win7/x64/sttube.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/x64/sttube.cat -------------------------------------------------------------------------------- /Bin/Driver/Win7/x64/x64/STTub30.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/x64/x64/STTub30.sys -------------------------------------------------------------------------------- /Bin/Driver/Win7/x86/STtube.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/x86/STtube.inf -------------------------------------------------------------------------------- /Bin/Driver/Win7/x86/dpinst_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/x86/dpinst_x86.exe -------------------------------------------------------------------------------- /Bin/Driver/Win7/x86/sttube.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/x86/sttube.cat -------------------------------------------------------------------------------- /Bin/Driver/Win7/x86/x86/STTub30.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win7/x86/x86/STTub30.sys -------------------------------------------------------------------------------- /Bin/Driver/Win8/DFU_3.0.4.0_LogoVerificationReport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/DFU_3.0.4.0_LogoVerificationReport.pdf -------------------------------------------------------------------------------- /Bin/Driver/Win8/x64/STtube.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/x64/STtube.inf -------------------------------------------------------------------------------- /Bin/Driver/Win8/x64/dpinst_amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/x64/dpinst_amd64.exe -------------------------------------------------------------------------------- /Bin/Driver/Win8/x64/sttube.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/x64/sttube.cat -------------------------------------------------------------------------------- /Bin/Driver/Win8/x64/x64/STTub30.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/x64/x64/STTub30.sys -------------------------------------------------------------------------------- /Bin/Driver/Win8/x86/STtube.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/x86/STtube.inf -------------------------------------------------------------------------------- /Bin/Driver/Win8/x86/dpinst_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/x86/dpinst_x86.exe -------------------------------------------------------------------------------- /Bin/Driver/Win8/x86/sttube.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/x86/sttube.cat -------------------------------------------------------------------------------- /Bin/Driver/Win8/x86/x86/STTub30.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/Win8/x86/x86/STTub30.sys -------------------------------------------------------------------------------- /Bin/Driver/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/Driver/version.txt -------------------------------------------------------------------------------- /Bin/MCD-ST Liberty SW License Agreement V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/MCD-ST Liberty SW License Agreement V2.pdf -------------------------------------------------------------------------------- /Bin/STDFU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STDFU.dll -------------------------------------------------------------------------------- /Bin/STDFUFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STDFUFiles.dll -------------------------------------------------------------------------------- /Bin/STDFUPRT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STDFUPRT.dll -------------------------------------------------------------------------------- /Bin/STDFUTester.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STDFUTester.exe -------------------------------------------------------------------------------- /Bin/STM32-C8T6.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STM32-C8T6.dfu -------------------------------------------------------------------------------- /Bin/STM32-C8T6.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STM32-C8T6.hex -------------------------------------------------------------------------------- /Bin/STM32-ZET6.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STM32-ZET6.dfu -------------------------------------------------------------------------------- /Bin/STM32-ZET6.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STM32-ZET6.hex -------------------------------------------------------------------------------- /Bin/STTubeDevice30.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/STTubeDevice30.dll -------------------------------------------------------------------------------- /Bin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/readme.txt -------------------------------------------------------------------------------- /Bin/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Bin/version.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/README.md -------------------------------------------------------------------------------- /STM32-C8T6.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/STM32-C8T6.dfu -------------------------------------------------------------------------------- /STM32-C8T6.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/STM32-C8T6.hex -------------------------------------------------------------------------------- /STM32-ZET6.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/STM32-ZET6.dfu -------------------------------------------------------------------------------- /STM32-ZET6.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/STM32-ZET6.hex -------------------------------------------------------------------------------- /Sources/Binary/Release/DfuFileMgr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Binary/Release/DfuFileMgr.exe -------------------------------------------------------------------------------- /Sources/Binary/Release/DfuSeCommand.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Binary/Release/DfuSeCommand.exe -------------------------------------------------------------------------------- /Sources/Binary/Release/DfuSeDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Binary/Release/DfuSeDemo.exe -------------------------------------------------------------------------------- /Sources/Binary/Release/STDFU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Binary/Release/STDFU.dll -------------------------------------------------------------------------------- /Sources/Binary/Release/STDFUFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Binary/Release/STDFUFiles.dll -------------------------------------------------------------------------------- /Sources/Binary/Release/STDFUPRT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Binary/Release/STDFUPRT.dll -------------------------------------------------------------------------------- /Sources/Binary/Release/STTubeDevice30.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Binary/Release/STTubeDevice30.dll -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DFU File Manager.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DFU File Manager.ico -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.aps -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.cpp -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.dsp -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.h -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.rc -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.vcproj -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.vcxproj -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.vcxproj.filters -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgr.vcxproj.user -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgrDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgrDlg.cpp -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgrDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgrDlg.h -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgrDlgExtract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgrDlgExtract.cpp -------------------------------------------------------------------------------- /Sources/DfuFileMgr/DfuFileMgrDlgExtract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/DfuFileMgrDlgExtract.h -------------------------------------------------------------------------------- /Sources/DfuFileMgr/HexEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/HexEdit.cpp -------------------------------------------------------------------------------- /Sources/DfuFileMgr/HexEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/HexEdit.h -------------------------------------------------------------------------------- /Sources/DfuFileMgr/MultiBinDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/MultiBinDlg.cpp -------------------------------------------------------------------------------- /Sources/DfuFileMgr/MultiBinDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/MultiBinDlg.h -------------------------------------------------------------------------------- /Sources/DfuFileMgr/RES/DfuFileMgr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/RES/DfuFileMgr.ico -------------------------------------------------------------------------------- /Sources/DfuFileMgr/RES/DfuFileMgr.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/RES/DfuFileMgr.rc2 -------------------------------------------------------------------------------- /Sources/DfuFileMgr/Release/DfuFileMgr.tlog/DfuFileMgr.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/Release/DfuFileMgr.tlog/DfuFileMgr.lastbuildstate -------------------------------------------------------------------------------- /Sources/DfuFileMgr/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/StdAfx.cpp -------------------------------------------------------------------------------- /Sources/DfuFileMgr/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/StdAfx.h -------------------------------------------------------------------------------- /Sources/DfuFileMgr/WhatToDoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/WhatToDoDlg.cpp -------------------------------------------------------------------------------- /Sources/DfuFileMgr/WhatToDoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/WhatToDoDlg.h -------------------------------------------------------------------------------- /Sources/DfuFileMgr/first.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/first.dfu -------------------------------------------------------------------------------- /Sources/DfuFileMgr/hello.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/hello.dfu -------------------------------------------------------------------------------- /Sources/DfuFileMgr/idr_main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/idr_main.ico -------------------------------------------------------------------------------- /Sources/DfuFileMgr/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuFileMgr/resource.h -------------------------------------------------------------------------------- /Sources/DfuSe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSe.sln -------------------------------------------------------------------------------- /Sources/DfuSe.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSe.v12.suo -------------------------------------------------------------------------------- /Sources/DfuSeCommand/DfuSeCommand.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/DfuSeCommand.aps -------------------------------------------------------------------------------- /Sources/DfuSeCommand/DfuSeCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/DfuSeCommand.cpp -------------------------------------------------------------------------------- /Sources/DfuSeCommand/DfuSeCommand.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/DfuSeCommand.dsp -------------------------------------------------------------------------------- /Sources/DfuSeCommand/DfuSeCommand.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/DfuSeCommand.rc -------------------------------------------------------------------------------- /Sources/DfuSeCommand/DfuSeCommand.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/DfuSeCommand.vcproj -------------------------------------------------------------------------------- /Sources/DfuSeCommand/DfuSeCommand.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/DfuSeCommand.vcxproj -------------------------------------------------------------------------------- /Sources/DfuSeCommand/DfuSeCommand.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/DfuSeCommand.vcxproj.filters -------------------------------------------------------------------------------- /Sources/DfuSeCommand/DfuSeCommand.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/DfuSeCommand.vcxproj.user -------------------------------------------------------------------------------- /Sources/DfuSeCommand/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/ReadMe.txt -------------------------------------------------------------------------------- /Sources/DfuSeCommand/Release/DfuSeCommand.tlog/DfuSeCommand.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/Release/DfuSeCommand.tlog/DfuSeCommand.lastbuildstate -------------------------------------------------------------------------------- /Sources/DfuSeCommand/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/Resource.h -------------------------------------------------------------------------------- /Sources/DfuSeCommand/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/StdAfx.cpp -------------------------------------------------------------------------------- /Sources/DfuSeCommand/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/StdAfx.h -------------------------------------------------------------------------------- /Sources/DfuSeCommand/lib/STDFU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/lib/STDFU.H -------------------------------------------------------------------------------- /Sources/DfuSeCommand/lib/STDFU.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/lib/STDFU.lib -------------------------------------------------------------------------------- /Sources/DfuSeCommand/lib/STDFUFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/lib/STDFUFiles.h -------------------------------------------------------------------------------- /Sources/DfuSeCommand/lib/STDFUFiles.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/lib/STDFUFiles.lib -------------------------------------------------------------------------------- /Sources/DfuSeCommand/lib/STDFUPRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/lib/STDFUPRT.h -------------------------------------------------------------------------------- /Sources/DfuSeCommand/lib/STDFUPRT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/lib/STDFUPRT.lib -------------------------------------------------------------------------------- /Sources/DfuSeCommand/lib/STTubeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/lib/STTubeDevice.h -------------------------------------------------------------------------------- /Sources/DfuSeCommand/lib/STTubeDevice30.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuSeCommand/lib/STTubeDevice30.lib -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSe Demo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSe Demo.ico -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.aps -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.dsp -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.rc -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.rc_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.rc_.txt -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.vcproj -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.vcxproj -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.vcxproj.filters -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemo.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemo.vcxproj.user -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemoDlg.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/DfuSeDemoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/DfuSeDemoDlg.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/Enumeration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Enumeration.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/Enumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Enumeration.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/HexEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/HexEdit.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/HexEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/HexEdit.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/GAMEPORT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/GAMEPORT.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/HIDCLASS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/HIDCLASS.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/HIDPDDI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/HIDPDDI.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/HIDPI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/HIDPI.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/HIDPORT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/HIDPORT.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/HIDSDI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/HIDSDI.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/HIDTOKEN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/HIDTOKEN.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/Hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/Hid.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/Hidpi++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/Hidpi++.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/Hidsdi++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/Hidsdi++.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/Hidusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/Hidusage.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/SETUPAPI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/SETUPAPI.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/Include/USB100.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Include/USB100.H -------------------------------------------------------------------------------- /Sources/DfuseDemo/MappingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/MappingDlg.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/MappingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/MappingDlg.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/OptionBytesDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/OptionBytesDialog.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/OptionBytesDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/OptionBytesDialog.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/OptionBytesDialog_f2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/OptionBytesDialog_f2.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/OptionBytesDialog_f2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/OptionBytesDialog_f2.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/OptionBytesDialog_l1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/OptionBytesDialog_l1.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/OptionBytesDialog_l1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/OptionBytesDialog_l1.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/RES/DfuSeDemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/RES/DfuSeDemo.ico -------------------------------------------------------------------------------- /Sources/DfuseDemo/RES/DfuSeDemo.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/RES/DfuSeDemo.rc2 -------------------------------------------------------------------------------- /Sources/DfuseDemo/Release/DfuSeDemo.tlog/DfuSeDemo.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/Release/DfuSeDemo.tlog/DfuSeDemo.lastbuildstate -------------------------------------------------------------------------------- /Sources/DfuseDemo/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/StdAfx.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/StdAfx.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/TextProgressCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/TextProgressCtrl.cpp -------------------------------------------------------------------------------- /Sources/DfuseDemo/TextProgressCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/TextProgressCtrl.h -------------------------------------------------------------------------------- /Sources/DfuseDemo/lib/hid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/lib/hid.lib -------------------------------------------------------------------------------- /Sources/DfuseDemo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/DfuseDemo/resource.h -------------------------------------------------------------------------------- /Sources/Include/SETUPAPI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Include/SETUPAPI.H -------------------------------------------------------------------------------- /Sources/Include/STTubeDeviceErr30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Include/STTubeDeviceErr30.h -------------------------------------------------------------------------------- /Sources/Include/STTubeDeviceFun30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Include/STTubeDeviceFun30.h -------------------------------------------------------------------------------- /Sources/Include/STTubeDeviceTyp30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Include/STTubeDeviceTyp30.h -------------------------------------------------------------------------------- /Sources/Include/USB100.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Include/USB100.H -------------------------------------------------------------------------------- /Sources/Include/USBDI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Include/USBDI.H -------------------------------------------------------------------------------- /Sources/Include/USBIOCTL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Include/USBIOCTL.H -------------------------------------------------------------------------------- /Sources/MCD-ST Liberty SW License Agreement V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/MCD-ST Liberty SW License Agreement V2.pdf -------------------------------------------------------------------------------- /Sources/Release/Hex2Dfu.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/Hex2Dfu.iobj -------------------------------------------------------------------------------- /Sources/Release/Hex2Dfu.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/Hex2Dfu.ipdb -------------------------------------------------------------------------------- /Sources/Release/demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/demo.exe -------------------------------------------------------------------------------- /Sources/Release/demo.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/demo.iobj -------------------------------------------------------------------------------- /Sources/Release/demo.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/demo.ipdb -------------------------------------------------------------------------------- /Sources/Release/hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/hello.exe -------------------------------------------------------------------------------- /Sources/Release/hello.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/hello.iobj -------------------------------------------------------------------------------- /Sources/Release/hello.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/hello.ipdb -------------------------------------------------------------------------------- /Sources/Release/world.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/world.exe -------------------------------------------------------------------------------- /Sources/Release/world.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/world.iobj -------------------------------------------------------------------------------- /Sources/Release/world.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Release/world.ipdb -------------------------------------------------------------------------------- /Sources/STDFU/Internal STDFU.DSP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/Internal STDFU.DSP -------------------------------------------------------------------------------- /Sources/STDFU/Internal STDFU.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/Internal STDFU.vcproj -------------------------------------------------------------------------------- /Sources/STDFU/Internal STDFU.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/Internal STDFU.vcxproj -------------------------------------------------------------------------------- /Sources/STDFU/Internal STDFU.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/Internal STDFU.vcxproj.filters -------------------------------------------------------------------------------- /Sources/STDFU/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/RESOURCE.H -------------------------------------------------------------------------------- /Sources/STDFU/Release/STDFU.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/Release/STDFU.exp -------------------------------------------------------------------------------- /Sources/STDFU/Release/STDFU.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/Release/STDFU.lib -------------------------------------------------------------------------------- /Sources/STDFU/Release/STDFU.tlog/STDFU.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/Release/STDFU.tlog/STDFU.lastbuildstate -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.APS -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.CPP -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.DSP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.DSP -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.H -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.def -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.rc -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.vcproj -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.vcxproj -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.vcxproj.filters -------------------------------------------------------------------------------- /Sources/STDFU/STDFU.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/STDFU.vcxproj.user -------------------------------------------------------------------------------- /Sources/STDFU/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/StdAfx.cpp -------------------------------------------------------------------------------- /Sources/STDFU/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFU/StdAfx.h -------------------------------------------------------------------------------- /Sources/STDFUFiles/DFUFILE.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/DFUFILE.CPP -------------------------------------------------------------------------------- /Sources/STDFUFiles/DFUFILE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/DFUFILE.H -------------------------------------------------------------------------------- /Sources/STDFUFiles/RES/STDFUFILES.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/RES/STDFUFILES.rc2 -------------------------------------------------------------------------------- /Sources/STDFUFiles/Release/STDFUFiles.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/Release/STDFUFiles.exp -------------------------------------------------------------------------------- /Sources/STDFUFiles/Release/STDFUFiles.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/Release/STDFUFiles.lib -------------------------------------------------------------------------------- /Sources/STDFUFiles/Release/STDFUFiles.tlog/STDFUFiles.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/Release/STDFUFiles.tlog/STDFUFiles.lastbuildstate -------------------------------------------------------------------------------- /Sources/STDFUFiles/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/Resource.h -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.aps -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.cpp -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.def -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.dsp -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.h -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.rc -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.vcproj -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.vcxproj -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.vcxproj.filters -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFiles.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFiles.vcxproj.user -------------------------------------------------------------------------------- /Sources/STDFUFiles/STDFUFilesInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/STDFUFilesInc.h -------------------------------------------------------------------------------- /Sources/STDFUFiles/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/StdAfx.cpp -------------------------------------------------------------------------------- /Sources/STDFUFiles/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/StdAfx.h -------------------------------------------------------------------------------- /Sources/STDFUFiles/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/file.c -------------------------------------------------------------------------------- /Sources/STDFUFiles/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUFiles/file.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/DFUHREAD.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/DFUHREAD.CPP -------------------------------------------------------------------------------- /Sources/STDFUPRT/DetachThread.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/DetachThread.CPP -------------------------------------------------------------------------------- /Sources/STDFUPRT/DetachThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/DetachThread.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/Image.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/RES/STDFUPRT.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/RES/STDFUPRT.rc2 -------------------------------------------------------------------------------- /Sources/STDFUPRT/Release/STDFUPRT.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/Release/STDFUPRT.exp -------------------------------------------------------------------------------- /Sources/STDFUPRT/Release/STDFUPRT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/Release/STDFUPRT.lib -------------------------------------------------------------------------------- /Sources/STDFUPRT/Release/STDFUPRT.tlog/STDFUPRT.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/Release/STDFUPRT.tlog/STDFUPRT.lastbuildstate -------------------------------------------------------------------------------- /Sources/STDFUPRT/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/Resource.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.APS -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.cpp -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.def -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.dsp -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.rc -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.vcproj -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.vcxproj -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRT.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRT.vcxproj.filters -------------------------------------------------------------------------------- /Sources/STDFUPRT/STDFUPRTINC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STDFUPRTINC.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/STTHREAD.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STTHREAD.CPP -------------------------------------------------------------------------------- /Sources/STDFUPRT/STTHREAD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/STTHREAD.H -------------------------------------------------------------------------------- /Sources/STDFUPRT/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/StdAfx.cpp -------------------------------------------------------------------------------- /Sources/STDFUPRT/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/StdAfx.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/dfuthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/dfuthread.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/downloadthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/downloadthread.cpp -------------------------------------------------------------------------------- /Sources/STDFUPRT/downloadthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/downloadthread.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/image.cpp -------------------------------------------------------------------------------- /Sources/STDFUPRT/returnthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/returnthread.cpp -------------------------------------------------------------------------------- /Sources/STDFUPRT/returnthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/returnthread.h -------------------------------------------------------------------------------- /Sources/STDFUPRT/uploadthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/uploadthread.cpp -------------------------------------------------------------------------------- /Sources/STDFUPRT/uploadthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STDFUPRT/uploadthread.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/IoCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/IoCode.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/Release/STTubeDevice30.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/Release/STTubeDevice30.exp -------------------------------------------------------------------------------- /Sources/STTubeDevice/Release/STTubeDevice30.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/Release/STTubeDevice30.lib -------------------------------------------------------------------------------- /Sources/STTubeDevice/Release/STTubeDevice30.tlog/STTubeDevice30.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/Release/STTubeDevice30.tlog/STTubeDevice30.lastbuildstate -------------------------------------------------------------------------------- /Sources/STTubeDevice/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/Resource.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/STDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STDevice.cpp -------------------------------------------------------------------------------- /Sources/STTubeDevice/STDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STDevice.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/STDevicesMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STDevicesMgr.cpp -------------------------------------------------------------------------------- /Sources/STTubeDevice/STDevicesMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STDevicesMgr.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.aps -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.cpp -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.def -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.dsp -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.rc -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.vcxproj -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.vcxproj.filters -------------------------------------------------------------------------------- /Sources/STTubeDevice/STTubeDevice.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/STTubeDevice.vcxproj.user -------------------------------------------------------------------------------- /Sources/STTubeDevice/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/StdAfx.cpp -------------------------------------------------------------------------------- /Sources/STTubeDevice/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/StdAfx.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/USB100.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/USB100.H -------------------------------------------------------------------------------- /Sources/STTubeDevice/interface/STTubeDeviceErr30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/interface/STTubeDeviceErr30.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/interface/STTubeDeviceFun30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/interface/STTubeDeviceFun30.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/interface/STTubeDeviceTyp30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/interface/STTubeDeviceTyp30.h -------------------------------------------------------------------------------- /Sources/STTubeDevice/interface/USB100.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/interface/USB100.H -------------------------------------------------------------------------------- /Sources/STTubeDevice/interface/USBDI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/interface/USBDI.H -------------------------------------------------------------------------------- /Sources/STTubeDevice/interface/USBIOCTL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/STTubeDevice/interface/USBIOCTL.H -------------------------------------------------------------------------------- /Sources/Tools/GUIDGEN.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Tools/GUIDGEN.DLL -------------------------------------------------------------------------------- /Sources/Tools/GUIDGEN.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/Sources/Tools/GUIDGEN.EXE -------------------------------------------------------------------------------- /keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengqiangboy/winapp-dfuse/HEAD/keilkilll.bat --------------------------------------------------------------------------------