├── CH554DS1.PDF ├── CH554EVT.PDF ├── official ch554 evt pcb ├── 554_udisk │ ├── Listings │ │ ├── DEBUG.lst │ │ ├── u_disk.lst │ │ └── udisk.m51 │ ├── Objects │ │ ├── DEBUG.obj │ │ ├── u_disk.obj │ │ ├── udisk │ │ ├── udisk.build_log.htm │ │ ├── udisk.hex │ │ └── udisk.lnp │ ├── Public │ │ ├── CH554.H │ │ ├── CH554.INC │ │ ├── DEBUG.C │ │ └── DEBUG.H │ ├── u_disk.c │ ├── udisk.uvgui.tech │ ├── udisk.uvopt │ └── udisk.uvproj ├── CH55X脱机烧录器 │ ├── CH55X_OFF_LINE_LOAD_V10.DDB │ └── CH55X脱机烧录器使用说明.pdf ├── CH5XX芯片加密建议 │ ├── CH559.H │ ├── DEBUG.C │ ├── DEBUG.H │ ├── Encryption.C │ ├── Encryption.hex │ ├── Encryption.uvproj │ └── 芯片加密建议.pdf ├── Compound_Dev │ ├── Compound.C │ ├── Compound_Dev.uvproj │ ├── Public │ │ ├── CH554.H │ │ ├── CH554.INC │ │ ├── DEBUG.C │ │ └── DEBUG.H │ ├── README.TXT │ ├── Touch_Key │ │ ├── Touch_Key.C │ │ └── Touch_Key.H │ ├── compound.h │ ├── hid_recv.exe │ ├── main.c │ └── obj │ │ └── Compound_Dev.hex ├── EXAM │ ├── ADC │ │ ├── ADC.C │ │ ├── ADC.H │ │ ├── ADC.hex │ │ └── Main.C │ ├── CH554.uvproj │ ├── DataFlash │ │ ├── DataFlash.C │ │ ├── DataFlash.H │ │ ├── DataFlash.hex │ │ └── Main.C │ ├── GPIO │ │ ├── GPIO.C │ │ ├── GPIO.H │ │ ├── GPIO.hex │ │ └── Main.C │ ├── IAP │ │ ├── CH554IAPDemo.C │ │ └── CH554IAPDemo.hex │ ├── PWM │ │ ├── Main.C │ │ ├── PWM.C │ │ ├── PWM.H │ │ └── PWM.hex │ ├── Public │ │ ├── CH554.H │ │ ├── CH554.INC │ │ ├── Debug.C │ │ └── Debug.H │ ├── SPI │ │ ├── MainMaster.C │ │ ├── MainMaster.hex │ │ ├── MainSlave.C │ │ ├── MainSlave.hex │ │ ├── SPI.C │ │ └── SPI.H │ ├── Timer │ │ ├── Main.C │ │ ├── Timer.C │ │ ├── Timer.H │ │ └── Timer.hex │ ├── TouchKey │ │ ├── Main.C │ │ ├── TouchKey.C │ │ ├── TouchKey.H │ │ └── TouchKey.hex │ ├── Type-C │ │ ├── Main.C │ │ ├── Type_C.C │ │ ├── Type_C.H │ │ ├── Type_C_DFP.hex │ │ └── Type_C_UPF.hex │ └── USB │ │ ├── Device │ │ ├── CompatibilityHID.C │ │ ├── CompatibilityHID.hex │ │ ├── CompositeKM.C │ │ ├── CompositeKM.hex │ │ ├── VendorDefinedDev.C │ │ └── VendorDefinedDev.hex │ │ ├── Host │ │ ├── USBHostHUB_KM.C │ │ └── USBHostHUB_KM.hex │ │ ├── USB_LIB │ │ ├── CH554UFI.C │ │ ├── CH554UFI.H │ │ ├── CH554UFI.LIB │ │ ├── CH554UFR.C │ │ ├── CH554UFR.H │ │ ├── CH554UFR.LIB │ │ ├── CH554UFX.LIB │ │ ├── CH554UF_README.TXT │ │ ├── USBHOST.C │ │ └── USBHOST.H │ │ └── U_DISK │ │ ├── EXAM1 │ │ ├── EXAM1.C │ │ └── EXAM1.hex │ │ └── EXAM11 │ │ ├── EXAM11.C │ │ └── EXAM11.hex ├── PCB │ └── CH554MINIEVT.DDB ├── PUB │ ├── CH554EVT.PDF │ ├── CH554SCH.PDF │ └── CH55Xª„±‡÷∏¡Ó.PDF ├── README.TXT ├── S_CDC │ ├── CDC.C │ ├── CDC.uvgui.Administrator │ ├── CDC.uvgui.tech │ ├── CDC.uvopt │ ├── CDC.uvproj │ ├── Listings │ │ ├── CDC.lst │ │ ├── CDC.m51 │ │ └── DEBUG.lst │ ├── Objects │ │ ├── CDC │ │ ├── CDC.build_log.htm │ │ ├── CDC.hex │ │ ├── CDC.lnp │ │ ├── CDC.obj │ │ └── DEBUG.obj │ ├── Public │ │ ├── CH554.H │ │ ├── CH554.INC │ │ ├── DEBUG.C │ │ └── DEBUG.H │ └── UsbToUartDriver.inf └── 模拟341 │ ├── CH554.uvgui.onwer │ ├── CH554.uvopt │ ├── CH554.uvproj │ ├── CH554DEMO.hex │ ├── Public │ ├── CH554.H │ ├── CH554.INC │ ├── Debug.C │ └── Debug.H │ └── USB │ └── Device │ └── CompatibilityHID.C ├── readme.txt └── taobao ch554 ├── C# library application examples written in LIBUSB ├── Benchmark │ ├── Benchmark.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ReadMe.txt │ ├── fBenchmark.cs │ ├── fBenchmark.designer.cs │ └── fBenchmark.resx ├── CSLibUsb │ ├── .DS_Store │ ├── DeviceNotify │ │ ├── DeviceNotifier.cs │ │ ├── DeviceNotifyEventArgs.cs │ │ ├── Info │ │ │ ├── PortNotifyInfo.cs │ │ │ ├── UsbDeviceNotifyInfo.cs │ │ │ └── VolumeNotifyInfo.cs │ │ └── Internal │ │ │ ├── DevNotifyNativeWindow.cs │ │ │ ├── Dev_Broadcast.cs │ │ │ └── SafeNotifyHandle.cs │ ├── LibUsbDotNet.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Usb │ │ ├── .DS_Store │ │ ├── Info │ │ ├── InfoConfig.cs │ │ ├── InfoDevice.cs │ │ ├── InfoEndPoint.cs │ │ ├── InfoInterface.cs │ │ └── InfosBase.cs │ │ ├── Internal │ │ ├── API │ │ │ ├── LibUsbAPI.cs │ │ │ ├── LibUsbBus.cs │ │ │ ├── LibUsbDevice.cs │ │ │ ├── LibUsb_AltInterfaceDescriptor.cs │ │ │ ├── LibUsb_ConfigDescriptor.cs │ │ │ ├── LibUsb_Context.cs │ │ │ ├── LibUsb_DevHandle.cs │ │ │ ├── LibUsb_DeviceDescriptor.cs │ │ │ ├── LibUsb_EndpointDescriptor.cs │ │ │ └── LibUsb_InterfaceDescriptor.cs │ │ ├── EndpointTypes.cs │ │ ├── Helper.cs │ │ ├── HexDisplayAttribute.cs │ │ ├── LibUsbConst.cs │ │ └── TransferContext.cs │ │ ├── Main │ │ ├── DataReceivedArgs.cs │ │ ├── ErrorCodes.cs │ │ ├── LibUsbException.cs │ │ ├── ReadEndpoints.cs │ │ ├── UsbDeviceList.cs │ │ ├── UsbEndpointList.cs │ │ ├── UsbError.cs │ │ ├── UsbSymbolicName.cs │ │ └── WriteEndpoints.cs │ │ ├── UsbDevice.cs │ │ ├── UsbEndpointBase.cs │ │ ├── UsbEndpointReader.cs │ │ ├── UsbEndpointWriter.cs │ │ └── UsbGlobals.cs ├── Docs │ ├── LibUsbDotNet.html │ ├── LibUsbDotNet.jpg │ ├── LibUsbDotNet.xml │ ├── arrow.gif │ ├── htmlContent.css │ ├── htmlContent.js │ ├── index.htm │ ├── tree.dtd │ ├── treeNode_Empty.gif │ ├── treeNode_Minus.gif │ ├── treeNode_Plus.gif │ ├── xmlTree.css │ ├── xmlTree.js │ └── xmlTree.xsl ├── LibUsbDotNet.sln ├── Test_Bulk │ ├── .DS_Store │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ReadMe.txt │ ├── Test_Bulk.csproj │ ├── fTestBulk.Designer.cs │ ├── fTestBulk.cs │ └── fTestBulk.resx ├── Test_DeviceNotify │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ReadMe.txt │ └── Test_DeviceNotify.csproj ├── Test_Info │ ├── .DS_Store │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ReadMe.txt │ ├── Test_Info.csproj │ ├── fTestInfo.Designer.cs │ ├── fTestInfo.cs │ └── fTestInfo.resx ├── UnitTest │ ├── .DS_Store │ ├── PicTestDevice.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Test │ │ ├── ITest.cs │ │ ├── Test_BigReadWrite.cs │ │ ├── Test_cancel_io.cs │ │ └── Test_usb_strerror.cs │ ├── UnitTest.csproj │ ├── fUsbTest.Designer.cs │ ├── fUsbTest.cs │ └── fUsbTest.resx ├── Utility │ ├── DevEnvBuilder.exe │ └── NetBuildInfo.exe ├── build │ └── ReleaseNotes.html ├── gpl-3.0.txt ├── lgpl-3.0.txt └── setup │ └── additional │ ├── .DS_Store │ └── libusb-win32 │ ├── AUTHORS.txt │ ├── COPYING_GPL.txt │ ├── COPYING_LGPL.txt │ ├── I64 │ ├── inf-wizard.exe │ ├── libusb.lib │ ├── libusb0.dll │ ├── libusb0.sys │ ├── msvci70.dll │ ├── testlibusb-win.exe │ └── testlibusb.exe │ ├── inf-wizard.exe │ ├── install-filter.exe │ ├── x64 │ ├── inf-wizard.exe │ ├── libusb.lib │ ├── libusb0.dll │ ├── libusb0.sys │ ├── msvci70.dll │ ├── testlibusb-win.exe │ └── testlibusb.exe │ └── x86 │ ├── inf-wizard.exe │ ├── libusb.lib │ ├── libusb0.dll │ ├── libusb0.sys │ ├── msvci70.dll │ ├── testlibusb-win.exe │ └── testlibusb.exe ├── CH554 analog CDC class, ├── CDC.C ├── CDC.uvgui.Administrator ├── CDC.uvgui.tech ├── CDC.uvopt ├── CDC.uvproj ├── Listings │ ├── CDC.lst │ ├── CDC.m51 │ └── DEBUG.lst ├── Objects │ ├── CDC │ ├── CDC.build_log.htm │ ├── CDC.hex │ ├── CDC.lnp │ ├── CDC.obj │ └── DEBUG.obj ├── Public │ ├── CH554.H │ ├── CH554.INC │ ├── DEBUG.C │ └── DEBUG.H └── UsbToUartDriver.inf ├── CH554 simulation U disk, ├── Listings │ ├── DEBUG.lst │ ├── u_disk.lst │ └── udisk.m51 ├── Objects │ ├── DEBUG.obj │ ├── u_disk.obj │ ├── udisk │ ├── udisk.build_log.htm │ ├── udisk.hex │ └── udisk.lnp ├── Public │ ├── CH554.H │ ├── CH554.INC │ ├── DEBUG.C │ └── DEBUG.H ├── u_disk.c ├── udisk.uvgui.tech ├── udisk.uvopt └── udisk.uvproj ├── CH554DS1 (1).PDF ├── Ch55X+USB serial CDC+ analog CH340 ├── 6666667.usm ├── CH559.H ├── CH559COM.hex ├── CH559COM.uvproj ├── DEBUG.C ├── DEBUG.H └── USBCOM.C ├── WCHISPTool_Setup.exe ├── ch554_txm KEIL4 testing eng ├── CH554.H ├── CH554.INC ├── Debug.C ├── Debug.H ├── Debug.LST ├── Debug.OBJ ├── Main.C ├── Main.C.orig ├── Main.LST ├── Main.OBJ ├── Main.__i ├── TouchKey.C ├── TouchKey.H ├── TouchKey.LST ├── TouchKey.OBJ ├── TouchKey.__i ├── ch554_txm ├── ch554_txm.M51 ├── ch554_txm.hex ├── ch554_txm.lnp ├── ch554_txm.plg ├── ch554_txm.uvopt ├── ch554_txm.uvproj ├── ch554_txm_uvopt.bak ├── ch554_txm_uvproj.bak └── Àµ√˜.txt ├── readme.txt └── taobao ch554T&E smallest board pcb sch.jpg /CH554DS1.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/CH554DS1.PDF -------------------------------------------------------------------------------- /CH554EVT.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/CH554EVT.PDF -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Listings/DEBUG.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Listings/DEBUG.lst -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Listings/u_disk.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Listings/u_disk.lst -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Listings/udisk.m51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Listings/udisk.m51 -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Objects/DEBUG.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Objects/DEBUG.obj -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Objects/u_disk.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Objects/u_disk.obj -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Objects/udisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Objects/udisk -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Objects/udisk.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Objects/udisk.build_log.htm -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Objects/udisk.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Objects/udisk.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Objects/udisk.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Objects/udisk.lnp -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Public/CH554.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Public/CH554.H -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Public/CH554.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Public/CH554.INC -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Public/DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Public/DEBUG.C -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/Public/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/Public/DEBUG.H -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/u_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/u_disk.c -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/udisk.uvgui.tech: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/udisk.uvgui.tech -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/udisk.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/udisk.uvopt -------------------------------------------------------------------------------- /official ch554 evt pcb/554_udisk/udisk.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/554_udisk/udisk.uvproj -------------------------------------------------------------------------------- /official ch554 evt pcb/CH55X脱机烧录器/CH55X_OFF_LINE_LOAD_V10.DDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH55X脱机烧录器/CH55X_OFF_LINE_LOAD_V10.DDB -------------------------------------------------------------------------------- /official ch554 evt pcb/CH55X脱机烧录器/CH55X脱机烧录器使用说明.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH55X脱机烧录器/CH55X脱机烧录器使用说明.pdf -------------------------------------------------------------------------------- /official ch554 evt pcb/CH5XX芯片加密建议/CH559.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH5XX芯片加密建议/CH559.H -------------------------------------------------------------------------------- /official ch554 evt pcb/CH5XX芯片加密建议/DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH5XX芯片加密建议/DEBUG.C -------------------------------------------------------------------------------- /official ch554 evt pcb/CH5XX芯片加密建议/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH5XX芯片加密建议/DEBUG.H -------------------------------------------------------------------------------- /official ch554 evt pcb/CH5XX芯片加密建议/Encryption.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH5XX芯片加密建议/Encryption.C -------------------------------------------------------------------------------- /official ch554 evt pcb/CH5XX芯片加密建议/Encryption.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH5XX芯片加密建议/Encryption.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/CH5XX芯片加密建议/Encryption.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH5XX芯片加密建议/Encryption.uvproj -------------------------------------------------------------------------------- /official ch554 evt pcb/CH5XX芯片加密建议/芯片加密建议.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/CH5XX芯片加密建议/芯片加密建议.pdf -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/Compound.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/Compound.C -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/Compound_Dev.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/Compound_Dev.uvproj -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/Public/CH554.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/Public/CH554.H -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/Public/CH554.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/Public/CH554.INC -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/Public/DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/Public/DEBUG.C -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/Public/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/Public/DEBUG.H -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/README.TXT -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/Touch_Key/Touch_Key.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/Touch_Key/Touch_Key.C -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/Touch_Key/Touch_Key.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/Touch_Key/Touch_Key.H -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/compound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/compound.h -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/hid_recv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/hid_recv.exe -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/main.c -------------------------------------------------------------------------------- /official ch554 evt pcb/Compound_Dev/obj/Compound_Dev.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/Compound_Dev/obj/Compound_Dev.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/ADC/ADC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/ADC/ADC.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/ADC/ADC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/ADC/ADC.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/ADC/ADC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/ADC/ADC.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/ADC/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/ADC/Main.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/CH554.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/CH554.uvproj -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/DataFlash/DataFlash.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/DataFlash/DataFlash.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/DataFlash/DataFlash.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/DataFlash/DataFlash.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/DataFlash/DataFlash.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/DataFlash/DataFlash.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/DataFlash/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/DataFlash/Main.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/GPIO/GPIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/GPIO/GPIO.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/GPIO/GPIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/GPIO/GPIO.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/GPIO/GPIO.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/GPIO/GPIO.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/GPIO/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/GPIO/Main.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/IAP/CH554IAPDemo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/IAP/CH554IAPDemo.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/IAP/CH554IAPDemo.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/IAP/CH554IAPDemo.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/PWM/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/PWM/Main.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/PWM/PWM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/PWM/PWM.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/PWM/PWM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/PWM/PWM.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/PWM/PWM.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/PWM/PWM.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Public/CH554.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Public/CH554.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Public/CH554.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Public/CH554.INC -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Public/Debug.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Public/Debug.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Public/Debug.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Public/Debug.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/SPI/MainMaster.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/SPI/MainMaster.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/SPI/MainMaster.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/SPI/MainMaster.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/SPI/MainSlave.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/SPI/MainSlave.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/SPI/MainSlave.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/SPI/MainSlave.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/SPI/SPI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/SPI/SPI.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/SPI/SPI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/SPI/SPI.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Timer/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Timer/Main.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Timer/Timer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Timer/Timer.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Timer/Timer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Timer/Timer.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Timer/Timer.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Timer/Timer.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/TouchKey/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/TouchKey/Main.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/TouchKey/TouchKey.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/TouchKey/TouchKey.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/TouchKey/TouchKey.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/TouchKey/TouchKey.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/TouchKey/TouchKey.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/TouchKey/TouchKey.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Type-C/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Type-C/Main.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Type-C/Type_C.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Type-C/Type_C.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Type-C/Type_C.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Type-C/Type_C.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Type-C/Type_C_DFP.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Type-C/Type_C_DFP.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/Type-C/Type_C_UPF.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/Type-C/Type_C_UPF.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/Device/CompatibilityHID.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/Device/CompatibilityHID.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/Device/CompatibilityHID.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/Device/CompatibilityHID.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/Device/CompositeKM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/Device/CompositeKM.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/Device/CompositeKM.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/Device/CompositeKM.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/Device/VendorDefinedDev.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/Device/VendorDefinedDev.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/Device/VendorDefinedDev.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/Device/VendorDefinedDev.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/Host/USBHostHUB_KM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/Host/USBHostHUB_KM.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/Host/USBHostHUB_KM.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/Host/USBHostHUB_KM.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFI.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFI.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFI.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFI.LIB -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFR.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFR.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFR.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFR.LIB -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFX.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UFX.LIB -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UF_README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/CH554UF_README.TXT -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/USBHOST.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/USBHOST.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/USB_LIB/USBHOST.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/USB_LIB/USBHOST.H -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/U_DISK/EXAM1/EXAM1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/U_DISK/EXAM1/EXAM1.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/U_DISK/EXAM1/EXAM1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/U_DISK/EXAM1/EXAM1.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/U_DISK/EXAM11/EXAM11.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/U_DISK/EXAM11/EXAM11.C -------------------------------------------------------------------------------- /official ch554 evt pcb/EXAM/USB/U_DISK/EXAM11/EXAM11.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/EXAM/USB/U_DISK/EXAM11/EXAM11.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/PCB/CH554MINIEVT.DDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/PCB/CH554MINIEVT.DDB -------------------------------------------------------------------------------- /official ch554 evt pcb/PUB/CH554EVT.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/PUB/CH554EVT.PDF -------------------------------------------------------------------------------- /official ch554 evt pcb/PUB/CH554SCH.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/PUB/CH554SCH.PDF -------------------------------------------------------------------------------- /official ch554 evt pcb/PUB/CH55Xª„±‡÷∏¡Ó.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/PUB/CH55Xª„±‡÷∏¡Ó.PDF -------------------------------------------------------------------------------- /official ch554 evt pcb/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/README.TXT -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/CDC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/CDC.C -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/CDC.uvgui.Administrator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/CDC.uvgui.Administrator -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/CDC.uvgui.tech: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/CDC.uvgui.tech -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/CDC.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/CDC.uvopt -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/CDC.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/CDC.uvproj -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Listings/CDC.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Listings/CDC.lst -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Listings/CDC.m51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Listings/CDC.m51 -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Listings/DEBUG.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Listings/DEBUG.lst -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Objects/CDC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Objects/CDC -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Objects/CDC.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Objects/CDC.build_log.htm -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Objects/CDC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Objects/CDC.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Objects/CDC.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Objects/CDC.lnp -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Objects/CDC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Objects/CDC.obj -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Objects/DEBUG.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Objects/DEBUG.obj -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Public/CH554.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Public/CH554.H -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Public/CH554.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Public/CH554.INC -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Public/DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Public/DEBUG.C -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/Public/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/Public/DEBUG.H -------------------------------------------------------------------------------- /official ch554 evt pcb/S_CDC/UsbToUartDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/S_CDC/UsbToUartDriver.inf -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/CH554.uvgui.onwer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/CH554.uvgui.onwer -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/CH554.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/CH554.uvopt -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/CH554.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/CH554.uvproj -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/CH554DEMO.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/CH554DEMO.hex -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/Public/CH554.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/Public/CH554.H -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/Public/CH554.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/Public/CH554.INC -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/Public/Debug.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/Public/Debug.C -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/Public/Debug.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/Public/Debug.H -------------------------------------------------------------------------------- /official ch554 evt pcb/模拟341/USB/Device/CompatibilityHID.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/official ch554 evt pcb/模拟341/USB/Device/CompatibilityHID.C -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/readme.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/Benchmark.csproj -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/Program.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/Resources.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/Properties/Settings.settings -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/ReadMe.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/fBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/fBenchmark.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/fBenchmark.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/fBenchmark.designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Benchmark/fBenchmark.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Benchmark/fBenchmark.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/.DS_Store -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/DeviceNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/DeviceNotifier.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/DeviceNotifyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/DeviceNotifyEventArgs.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Info/PortNotifyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Info/PortNotifyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Info/UsbDeviceNotifyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Info/UsbDeviceNotifyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Info/VolumeNotifyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Info/VolumeNotifyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Internal/DevNotifyNativeWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Internal/DevNotifyNativeWindow.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Internal/Dev_Broadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Internal/Dev_Broadcast.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Internal/SafeNotifyHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/DeviceNotify/Internal/SafeNotifyHandle.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/LibUsbDotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/LibUsbDotNet.csproj -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/.DS_Store -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfoConfig.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfoDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfoDevice.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfoEndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfoEndPoint.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfoInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfoInterface.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfosBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Info/InfosBase.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsbAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsbAPI.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsbBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsbBus.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsbDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsbDevice.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_AltInterfaceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_AltInterfaceDescriptor.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_ConfigDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_ConfigDescriptor.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_Context.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_DevHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_DevHandle.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_DeviceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_DeviceDescriptor.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_EndpointDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_EndpointDescriptor.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_InterfaceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/API/LibUsb_InterfaceDescriptor.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/EndpointTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/EndpointTypes.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/Helper.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/HexDisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/HexDisplayAttribute.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/LibUsbConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/LibUsbConst.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/TransferContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Internal/TransferContext.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/DataReceivedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/DataReceivedArgs.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/ErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/ErrorCodes.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/LibUsbException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/LibUsbException.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/ReadEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/ReadEndpoints.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/UsbDeviceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/UsbDeviceList.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/UsbEndpointList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/UsbEndpointList.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/UsbError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/UsbError.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/UsbSymbolicName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/UsbSymbolicName.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/WriteEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/Main/WriteEndpoints.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbDevice.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbEndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbEndpointBase.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbEndpointReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbEndpointReader.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbEndpointWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbEndpointWriter.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/CSLibUsb/Usb/UsbGlobals.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/LibUsbDotNet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/LibUsbDotNet.html -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/LibUsbDotNet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/LibUsbDotNet.jpg -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/LibUsbDotNet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/LibUsbDotNet.xml -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/arrow.gif -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/htmlContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/htmlContent.css -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/htmlContent.js -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/index.htm -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/tree.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/tree.dtd -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/treeNode_Empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/treeNode_Empty.gif -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/treeNode_Minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/treeNode_Minus.gif -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/treeNode_Plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/treeNode_Plus.gif -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/xmlTree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/xmlTree.css -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/xmlTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/xmlTree.js -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Docs/xmlTree.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Docs/xmlTree.xsl -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/LibUsbDotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/LibUsbDotNet.sln -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/.DS_Store -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Program.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/Resources.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Properties/Settings.settings -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/ReadMe.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Test_Bulk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/Test_Bulk.csproj -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/fTestBulk.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/fTestBulk.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/fTestBulk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/fTestBulk.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/fTestBulk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Bulk/fTestBulk.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Form1.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Form1.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Form1.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Program.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/Resources.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Properties/Settings.settings -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/ReadMe.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Test_DeviceNotify.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_DeviceNotify/Test_DeviceNotify.csproj -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/.DS_Store -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/Program.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/Resources.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/Properties/Settings.settings -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/ReadMe.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/Test_Info.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/Test_Info.csproj -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/fTestInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/fTestInfo.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/fTestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/fTestInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Test_Info/fTestInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Test_Info/fTestInfo.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/.DS_Store -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/PicTestDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/PicTestDevice.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Program.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/Resources.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Properties/Settings.settings -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Test/ITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Test/ITest.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Test/Test_BigReadWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Test/Test_BigReadWrite.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Test/Test_cancel_io.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Test/Test_cancel_io.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/Test/Test_usb_strerror.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/Test/Test_usb_strerror.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/fUsbTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/fUsbTest.Designer.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/fUsbTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/fUsbTest.cs -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/UnitTest/fUsbTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/UnitTest/fUsbTest.resx -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Utility/DevEnvBuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Utility/DevEnvBuilder.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/Utility/NetBuildInfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/Utility/NetBuildInfo.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/build/ReleaseNotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/build/ReleaseNotes.html -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/gpl-3.0.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/lgpl-3.0.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/.DS_Store -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/AUTHORS.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/COPYING_GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/COPYING_GPL.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/COPYING_LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/COPYING_LGPL.txt -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/inf-wizard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/inf-wizard.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/libusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/libusb.lib -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/libusb0.dll -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/libusb0.sys -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/msvci70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/msvci70.dll -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/testlibusb-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/testlibusb-win.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/testlibusb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/I64/testlibusb.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/inf-wizard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/inf-wizard.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/install-filter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/install-filter.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/inf-wizard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/inf-wizard.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/libusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/libusb.lib -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/libusb0.dll -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/libusb0.sys -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/msvci70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/msvci70.dll -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/testlibusb-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/testlibusb-win.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/testlibusb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x64/testlibusb.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/inf-wizard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/inf-wizard.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/libusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/libusb.lib -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/libusb0.dll -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/libusb0.sys -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/msvci70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/msvci70.dll -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/testlibusb-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/testlibusb-win.exe -------------------------------------------------------------------------------- /taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/testlibusb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/C# library application examples written in LIBUSB/setup/additional/libusb-win32/x86/testlibusb.exe -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/CDC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/CDC.C -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/CDC.uvgui.Administrator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/CDC.uvgui.Administrator -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/CDC.uvgui.tech: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/CDC.uvgui.tech -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/CDC.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/CDC.uvopt -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/CDC.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/CDC.uvproj -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Listings/CDC.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Listings/CDC.lst -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Listings/CDC.m51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Listings/CDC.m51 -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Listings/DEBUG.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Listings/DEBUG.lst -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Objects/CDC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Objects/CDC -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Objects/CDC.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Objects/CDC.build_log.htm -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Objects/CDC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Objects/CDC.hex -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Objects/CDC.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Objects/CDC.lnp -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Objects/CDC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Objects/CDC.obj -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Objects/DEBUG.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Objects/DEBUG.obj -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Public/CH554.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Public/CH554.H -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Public/CH554.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Public/CH554.INC -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Public/DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Public/DEBUG.C -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/Public/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/Public/DEBUG.H -------------------------------------------------------------------------------- /taobao ch554/CH554 analog CDC class,/UsbToUartDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 analog CDC class,/UsbToUartDriver.inf -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Listings/DEBUG.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Listings/DEBUG.lst -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Listings/u_disk.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Listings/u_disk.lst -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Listings/udisk.m51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Listings/udisk.m51 -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Objects/DEBUG.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Objects/DEBUG.obj -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Objects/u_disk.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Objects/u_disk.obj -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Objects/udisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Objects/udisk -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Objects/udisk.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Objects/udisk.build_log.htm -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Objects/udisk.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Objects/udisk.hex -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Objects/udisk.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Objects/udisk.lnp -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Public/CH554.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Public/CH554.H -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Public/CH554.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Public/CH554.INC -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Public/DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Public/DEBUG.C -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/Public/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/Public/DEBUG.H -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/u_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/u_disk.c -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/udisk.uvgui.tech: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/udisk.uvgui.tech -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/udisk.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/udisk.uvopt -------------------------------------------------------------------------------- /taobao ch554/CH554 simulation U disk,/udisk.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554 simulation U disk,/udisk.uvproj -------------------------------------------------------------------------------- /taobao ch554/CH554DS1 (1).PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/CH554DS1 (1).PDF -------------------------------------------------------------------------------- /taobao ch554/Ch55X+USB serial CDC+ analog CH340/6666667.usm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/Ch55X+USB serial CDC+ analog CH340/6666667.usm -------------------------------------------------------------------------------- /taobao ch554/Ch55X+USB serial CDC+ analog CH340/CH559.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/Ch55X+USB serial CDC+ analog CH340/CH559.H -------------------------------------------------------------------------------- /taobao ch554/Ch55X+USB serial CDC+ analog CH340/CH559COM.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/Ch55X+USB serial CDC+ analog CH340/CH559COM.hex -------------------------------------------------------------------------------- /taobao ch554/Ch55X+USB serial CDC+ analog CH340/CH559COM.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/Ch55X+USB serial CDC+ analog CH340/CH559COM.uvproj -------------------------------------------------------------------------------- /taobao ch554/Ch55X+USB serial CDC+ analog CH340/DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/Ch55X+USB serial CDC+ analog CH340/DEBUG.C -------------------------------------------------------------------------------- /taobao ch554/Ch55X+USB serial CDC+ analog CH340/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/Ch55X+USB serial CDC+ analog CH340/DEBUG.H -------------------------------------------------------------------------------- /taobao ch554/Ch55X+USB serial CDC+ analog CH340/USBCOM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/Ch55X+USB serial CDC+ analog CH340/USBCOM.C -------------------------------------------------------------------------------- /taobao ch554/WCHISPTool_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/WCHISPTool_Setup.exe -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/CH554.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/CH554.H -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/CH554.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/CH554.INC -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Debug.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Debug.C -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Debug.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Debug.H -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Debug.LST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Debug.LST -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Debug.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Debug.OBJ -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Main.C -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Main.C.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Main.C.orig -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Main.LST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Main.LST -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Main.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Main.OBJ -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Main.__i: -------------------------------------------------------------------------------- 1 | "Main.C" BROWSE NOAREGS DEBUG OBJECTEXTEND -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.C -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.H -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.LST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.LST -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.OBJ -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/TouchKey.__i: -------------------------------------------------------------------------------- 1 | "TouchKey.C" BROWSE NOAREGS DEBUG OBJECTEXTEND -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.M51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.M51 -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.hex -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.lnp -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.plg -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.uvopt -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm.uvproj -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm_uvopt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm_uvopt.bak -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/ch554_txm_uvproj.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taobao ch554/ch554_txm KEIL4 testing eng/Àµ√˜.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/ch554_txm KEIL4 testing eng/Àµ√˜.txt -------------------------------------------------------------------------------- /taobao ch554/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/readme.txt -------------------------------------------------------------------------------- /taobao ch554/taobao ch554T&E smallest board pcb sch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HonghongLu/CH554/HEAD/taobao ch554/taobao ch554T&E smallest board pcb sch.jpg --------------------------------------------------------------------------------