├── README.md ├── cotizacion.xlsx ├── doc ├── 25LC256_EEPROM.pdf ├── 74LVC1T45_Transceiver.pdf ├── BAT46_Small_Signal_Schottky_Diode.pdf ├── BC550_NPN_Transistor.pdf ├── BC560_PNP_Transistor.pdf ├── LTC4411_Low_Loss_Ideal_Diode.pdf ├── MAX893L_Current_Limited_Switch.pdf ├── MCP1525_25V_Voltage_Reference.pdf ├── MCP1727_LDO_Regulator.pdf ├── MCP601_Single_Supply_OPAMP.pdf └── PIC24FJ256GB106.pdf ├── firmware ├── Filelist.txt ├── PICkit3.mcw ├── PICkit3OS │ ├── PICkit3OS.mcp │ ├── icsp.s │ ├── include │ │ ├── commands.h │ │ ├── micro.h │ │ ├── pickit3.h │ │ ├── pk3_scripting.h │ │ ├── powerPK3.h │ │ ├── processor.h │ │ ├── spi_serial_flash.h │ │ ├── spieeprom.h │ │ ├── system.h │ │ └── types.h │ ├── logic_analyzer.s │ ├── main.c │ ├── micro.c │ ├── os_ivt_pk3.s │ ├── os_linker24f.gld │ ├── pk3_scripting.c │ ├── powerPK3.c │ ├── spi_serial_flash.c │ ├── traps.c │ ├── usbHid │ │ ├── Compiler.h │ │ ├── usb_callbacks.c │ │ ├── usb_ch9.h │ │ ├── usb_config.h │ │ ├── usb_descriptors.c │ │ ├── usb_device.c │ │ ├── usb_device.h │ │ ├── usb_function_hid.c │ │ ├── usb_function_hid.h │ │ ├── usb_hal.h │ │ ├── usb_hal_pic24.h │ │ ├── usb_pk3.h │ │ └── usb_pk3_hid.c │ ├── vectors.c │ └── xbarpk3.c ├── PK3BLV011405.hex ├── PK3IMG020005.hex ├── PK3OSV020005.hex └── branch │ ├── branch_linkerpk3.gld │ ├── branchpk3.c │ ├── branchpk3.mcp │ ├── ivt_table.S │ └── startup.S ├── logfile.txt ├── models ├── CAP0805_3d.WRL ├── RES0805_3d.WRL ├── SC70-5_3d.WRL ├── SOIC-8_3d.WRL ├── SOT23-3_3d.WRL ├── SOT23-5_3d.WRL ├── TQFP-64_3d.WRL └── TSOT23-5.WRL ├── picki3clone_pcb.pcb ├── picki3clone_pcb_PCB └── 3D │ ├── 3DSettings.xml │ └── Cells │ ├── 0805.e3d │ ├── CAP0805_3d.WRL │ ├── PIC24FJ256GB106.e3d │ ├── RES0805_3d.WRL │ ├── SC70-6_3d.WRL │ ├── SC70-7_74LVC1T45.e3d │ ├── SOIC-8_25LC256.e3d │ ├── SOIC-8_3d.WRL │ ├── SOIC-8_MAX893L.e3d │ ├── SOIC-8_MCP1727.e3d │ ├── SOT-23_MCP1525.e3d │ ├── SOT-23_MCP601.e3d │ ├── SOT23-3_3d.WRL │ ├── SOT23-5_3d.WRL │ ├── TQFP-64_3d.WRL │ ├── TSOT-23_LTC4411.e3d │ └── User Library-TSOT23-5.WRL ├── pickit3clone_lib.ld9 ├── pickit3clone_lib.ln9 ├── pickit3clone_lib.pd9 ├── pickit3clone_lib.pt9 ├── schematic_pickit3.png └── schematic_pickit3.sch /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cotizacion.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/cotizacion.xlsx -------------------------------------------------------------------------------- /doc/25LC256_EEPROM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/25LC256_EEPROM.pdf -------------------------------------------------------------------------------- /doc/74LVC1T45_Transceiver.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/74LVC1T45_Transceiver.pdf -------------------------------------------------------------------------------- /doc/BAT46_Small_Signal_Schottky_Diode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/BAT46_Small_Signal_Schottky_Diode.pdf -------------------------------------------------------------------------------- /doc/BC550_NPN_Transistor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/BC550_NPN_Transistor.pdf -------------------------------------------------------------------------------- /doc/BC560_PNP_Transistor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/BC560_PNP_Transistor.pdf -------------------------------------------------------------------------------- /doc/LTC4411_Low_Loss_Ideal_Diode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/LTC4411_Low_Loss_Ideal_Diode.pdf -------------------------------------------------------------------------------- /doc/MAX893L_Current_Limited_Switch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/MAX893L_Current_Limited_Switch.pdf -------------------------------------------------------------------------------- /doc/MCP1525_25V_Voltage_Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/MCP1525_25V_Voltage_Reference.pdf -------------------------------------------------------------------------------- /doc/MCP1727_LDO_Regulator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/MCP1727_LDO_Regulator.pdf -------------------------------------------------------------------------------- /doc/MCP601_Single_Supply_OPAMP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/MCP601_Single_Supply_OPAMP.pdf -------------------------------------------------------------------------------- /doc/PIC24FJ256GB106.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/doc/PIC24FJ256GB106.pdf -------------------------------------------------------------------------------- /firmware/Filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/Filelist.txt -------------------------------------------------------------------------------- /firmware/PICkit3.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3.mcw -------------------------------------------------------------------------------- /firmware/PICkit3OS/PICkit3OS.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/PICkit3OS.mcp -------------------------------------------------------------------------------- /firmware/PICkit3OS/icsp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/icsp.s -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/commands.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/micro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/micro.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/pickit3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/pickit3.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/pk3_scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/pk3_scripting.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/powerPK3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/powerPK3.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/processor.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/spi_serial_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/spi_serial_flash.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/spieeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/spieeprom.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/system.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/include/types.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/logic_analyzer.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/logic_analyzer.s -------------------------------------------------------------------------------- /firmware/PICkit3OS/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/main.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/micro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/micro.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/os_ivt_pk3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/os_ivt_pk3.s -------------------------------------------------------------------------------- /firmware/PICkit3OS/os_linker24f.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/os_linker24f.gld -------------------------------------------------------------------------------- /firmware/PICkit3OS/pk3_scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/pk3_scripting.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/powerPK3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/powerPK3.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/spi_serial_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/spi_serial_flash.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/traps.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/Compiler.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_callbacks.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_ch9.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_config.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_descriptors.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_device.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_device.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_function_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_function_hid.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_function_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_function_hid.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_hal.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_hal_pic24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_hal_pic24.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_pk3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_pk3.h -------------------------------------------------------------------------------- /firmware/PICkit3OS/usbHid/usb_pk3_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/usbHid/usb_pk3_hid.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/vectors.c -------------------------------------------------------------------------------- /firmware/PICkit3OS/xbarpk3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PICkit3OS/xbarpk3.c -------------------------------------------------------------------------------- /firmware/PK3BLV011405.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PK3BLV011405.hex -------------------------------------------------------------------------------- /firmware/PK3IMG020005.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PK3IMG020005.hex -------------------------------------------------------------------------------- /firmware/PK3OSV020005.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/PK3OSV020005.hex -------------------------------------------------------------------------------- /firmware/branch/branch_linkerpk3.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/branch/branch_linkerpk3.gld -------------------------------------------------------------------------------- /firmware/branch/branchpk3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/branch/branchpk3.c -------------------------------------------------------------------------------- /firmware/branch/branchpk3.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/branch/branchpk3.mcp -------------------------------------------------------------------------------- /firmware/branch/ivt_table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/branch/ivt_table.S -------------------------------------------------------------------------------- /firmware/branch/startup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/firmware/branch/startup.S -------------------------------------------------------------------------------- /logfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/logfile.txt -------------------------------------------------------------------------------- /models/CAP0805_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/models/CAP0805_3d.WRL -------------------------------------------------------------------------------- /models/RES0805_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/models/RES0805_3d.WRL -------------------------------------------------------------------------------- /models/SC70-5_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/models/SC70-5_3d.WRL -------------------------------------------------------------------------------- /models/SOIC-8_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/models/SOIC-8_3d.WRL -------------------------------------------------------------------------------- /models/SOT23-3_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/models/SOT23-3_3d.WRL -------------------------------------------------------------------------------- /models/SOT23-5_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/models/SOT23-5_3d.WRL -------------------------------------------------------------------------------- /models/TQFP-64_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/models/TQFP-64_3d.WRL -------------------------------------------------------------------------------- /models/TSOT23-5.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/models/TSOT23-5.WRL -------------------------------------------------------------------------------- /picki3clone_pcb.pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb.pcb -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/3DSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/3DSettings.xml -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/0805.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/0805.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/CAP0805_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/CAP0805_3d.WRL -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/PIC24FJ256GB106.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/PIC24FJ256GB106.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/RES0805_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/RES0805_3d.WRL -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SC70-6_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SC70-6_3d.WRL -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SC70-7_74LVC1T45.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SC70-7_74LVC1T45.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SOIC-8_25LC256.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SOIC-8_25LC256.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SOIC-8_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SOIC-8_3d.WRL -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SOIC-8_MAX893L.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SOIC-8_MAX893L.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SOIC-8_MCP1727.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SOIC-8_MCP1727.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SOT-23_MCP1525.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SOT-23_MCP1525.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SOT-23_MCP601.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SOT-23_MCP601.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SOT23-3_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SOT23-3_3d.WRL -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/SOT23-5_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/SOT23-5_3d.WRL -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/TQFP-64_3d.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/TQFP-64_3d.WRL -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/TSOT-23_LTC4411.e3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/TSOT-23_LTC4411.e3d -------------------------------------------------------------------------------- /picki3clone_pcb_PCB/3D/Cells/User Library-TSOT23-5.WRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/picki3clone_pcb_PCB/3D/Cells/User Library-TSOT23-5.WRL -------------------------------------------------------------------------------- /pickit3clone_lib.ld9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/pickit3clone_lib.ld9 -------------------------------------------------------------------------------- /pickit3clone_lib.ln9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/pickit3clone_lib.ln9 -------------------------------------------------------------------------------- /pickit3clone_lib.pd9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/pickit3clone_lib.pd9 -------------------------------------------------------------------------------- /pickit3clone_lib.pt9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/pickit3clone_lib.pt9 -------------------------------------------------------------------------------- /schematic_pickit3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/schematic_pickit3.png -------------------------------------------------------------------------------- /schematic_pickit3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming-hai/PICkit3-Clone/HEAD/schematic_pickit3.sch --------------------------------------------------------------------------------