├── .gitignore ├── BP4_XSVFplayer_Win ├── BP4_Full_bitbang_XSVFplayer_Win.dev ├── BP4_Full_bitbang_XSVFplayer_Win.exe ├── BP4_Full_bitbang_XSVFplayer_Win.layout ├── Makefile.win ├── SVF2XSVF │ ├── mergexsvf.exe │ ├── svf2XSVF.bat │ └── svf2xsvf502.exe ├── VHDL-CPLDIntro2Ledbutton.xsvf ├── buspirate.c ├── buspirate.h ├── main.c ├── run.bat ├── run2.bat ├── run_log.bat ├── serial.c ├── serial.h └── xc95test.xsvf ├── BPv3-bootloader ├── COPYING.txt ├── ds30_Loader_GUI │ ├── GHelper.dll │ ├── ds30 Loader GUI.exe │ ├── ds30 Loader.dll │ └── settings.xml ├── firmware-v4.1 │ ├── ds30loader.mcp │ ├── ds30loader.mcs │ ├── ds30loader.mcw │ └── src │ │ ├── devices.inc │ │ ├── ds30loader.s │ │ └── settings.inc ├── firmware-v4.3 │ ├── ds30loader.mcp │ ├── ds30loader.mcs │ ├── ds30loader.mcw │ └── src │ │ ├── devices.inc │ │ ├── ds30loader.s │ │ └── settings.inc ├── firmware-v4.5 │ ├── ds30loader.mcp │ ├── ds30loader.mcw │ └── src │ │ ├── devices.inc │ │ ├── ds30loader.s │ │ └── settings.inc ├── hex2prog.html ├── pirate-loader │ ├── build-unix.sh │ ├── build-win32.bat │ ├── makefile │ ├── pirate-loader_lnx │ ├── pirate-loader_mac │ └── source │ │ └── pirate-loader.c ├── upgrader-v2tov4 │ ├── APP 24FJ64GA002.gld │ ├── BPv3-blv4updater-v0.2.hex │ ├── clean.bat │ ├── convert.html │ ├── firmware.h │ ├── flash.h │ ├── flash.s │ ├── hardware.h │ ├── hardwarev0a.h │ ├── hardwarev1a.h │ ├── hardwarev25.h │ ├── hardwarev2a.h │ ├── hardwarev3.h │ ├── hex2prog.html │ ├── installer.mcp │ ├── installer.mcs │ ├── installer.mcw │ └── main.c ├── upgrader-v4tov4 │ ├── clean.bat │ ├── convert.html │ ├── firmware.h │ ├── flash.h │ ├── flash.s │ ├── hardware.h │ ├── hardwarev0a.h │ ├── hardwarev1a.h │ ├── hardwarev25.h │ ├── hardwarev2a.h │ ├── hardwarev3.h │ ├── hex2prog.html │ ├── installer.mcp │ ├── installer.mcs │ ├── installer.mcw │ ├── main.c │ └── p24FJ64GA002.gld ├── v2tov4-bootloader-update │ ├── upgrader │ │ ├── BPv3-v2blupdaterVa3-v4.1.hex │ │ ├── P24QP.exe │ │ ├── P24qp.ini │ │ ├── P24qp.py │ │ └── PICBOOT.dll │ └── v4firmware │ │ ├── BPv3-Firmware-v4.1.hex │ │ ├── GHelper.dll │ │ ├── ds30 Loader GUI.exe │ │ ├── ds30 Loader.dll │ │ └── settings.xml └── v4xtov43-bootloader-update │ ├── !v4UPGRADES!!!.txt │ ├── !v4UPGRADES!!.txt │ ├── !v4UPGRADES!.txt │ ├── BPv3-Firmware-v4.5.hex │ ├── BPv3-bootloader-upgrade-v4xtov4.3.hex │ └── utilities │ ├── !v4UPGRADES!!!.txt │ ├── !v4UPGRADES!!.txt │ ├── !v4UPGRADES!.txt │ ├── GHelper.dll │ ├── ds30 Loader GUI.exe │ ├── ds30 Loader.dll │ ├── pirate-loader.exe │ ├── pirate-loader_lnx │ ├── pirate-loader_mac │ └── settings.xml ├── BPv4-bootloader ├── firmware-v1 │ ├── BPv4-bootloader-va1.zip │ ├── Compiler.h │ ├── GenericTypeDefs.h │ ├── Makefile │ ├── NMakefile │ ├── boot_config.h │ ├── bootloader.c │ ├── bootloader.h │ ├── bpv4-bootloader.cof │ ├── bpv4-bootloader.hex │ ├── bpv4-bootloader.map │ ├── bpv4-bootloader.mcp │ ├── bpv4-bootloader.mcs │ ├── bpv4-bootloader.mcw │ ├── cdc.c │ ├── cdc.h │ ├── clean.bat │ ├── configwords.h │ ├── descriptors.h │ ├── globals.h │ ├── main.c │ ├── nbproject │ │ ├── Makefile-genesis.properties │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── configurations.xml │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── p24FJ128GB106.gld │ ├── p24FJ256GB106.gld │ ├── picusb.h │ ├── usb_lang.h │ ├── usb_stack.c │ └── usb_stack.h └── pirate-loader │ ├── build-unix.sh │ ├── build-win32.bat │ ├── inf │ ├── mchpcdc.cat │ └── mchpcdc.inf │ ├── makefile │ ├── pirate-loader.c │ ├── pirate-loader.cbp │ ├── pirate-loader.depend │ ├── pirate-loader.exe │ ├── pirate-loader.layout │ ├── pirate-loader_lnx │ ├── test.bat │ └── test.sh ├── Firmware-Demos ├── ADC2UART.zip ├── ADC2UART │ ├── ADC2UART.cof │ ├── ADC2UART.hex │ ├── ADC2UART.map │ ├── ADC2UART.mcp │ ├── ADC2UART.mcs │ ├── ADC2UART.mcw │ └── main.c ├── Blink_MODE_LED.zip ├── Blink_MODE_LED │ ├── Blink_MODE_LED.cof │ ├── Blink_MODE_LED.hex │ ├── Blink_MODE_LED.map │ ├── Blink_MODE_LED.mcp │ ├── Blink_MODE_LED.mcs │ ├── Blink_MODE_LED.mcw │ ├── main.c │ └── p24FJ64GA002.gld ├── BusPirateADCDemo.zip ├── BusPirateADCDemo │ ├── Bus Piarte ADC Demo.cof │ ├── Bus Piarte ADC Demo.hex │ ├── Bus Piarte ADC Demo.map │ ├── Bus Piarte ADC Demo.mcp │ ├── Bus Piarte ADC Demo.mcs │ ├── Bus Piarte ADC Demo.mcw │ └── main.c ├── BusPirateUARTDEMOTEST.zip └── BusPirateUARTDEMOTEST │ └── BusPirateUARTDEMOTEST │ ├── UARTdemo.cof │ ├── UARTdemo.hex │ ├── UARTdemo.map │ ├── UARTdemo.mcp │ ├── UARTdemo.mcs │ ├── UARTdemo.mcw │ └── main.c ├── Firmware ├── 1wire.c ├── 1wire.h ├── 1wire_lib.c ├── 1wire_lib.h ├── AUXpin.c ├── AUXpin.h ├── Compiler.h ├── GenericTypeDefs.h ├── HD44780.c ├── HD44780.h ├── I2C.c ├── I2C.h ├── JTR_SUMP.c ├── OpenOCD.c ├── OpenOCD.h ├── OpenOCD_asm.S ├── SPI.c ├── SPI.h ├── SUMP.c ├── SUMP.h ├── UART.c ├── UART.h ├── base.c ├── base.h ├── baseIO.c ├── baseIO.h ├── baseUI.c ├── baseUI.h ├── basic.c ├── basic.h ├── binIO.c ├── binIO.h ├── binIOhelpers.c ├── binIOhelpers.h ├── binwire.c ├── binwire.h ├── bitbang.c ├── bitbang.h ├── bpv4.mcp ├── bpv4.mcs ├── bpv4.mcw ├── busPirate.X │ ├── Makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ ├── configurations.xml │ │ ├── private.properties │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml ├── busPirate.mcp ├── busPirate.mcs ├── busPirate.mcw ├── busPirate.mptags ├── busPirateCore.c ├── busPirateCore.h ├── configwords.h ├── descriptors.h ├── dio.c ├── dio.h ├── dp_usb │ ├── cdc.c │ ├── cdc.h │ ├── picusb.h │ ├── usb_stack.c │ ├── usb_stack.h │ └── usb_stack_globals.h ├── globals.h ├── hardwarev1a.h ├── hardwarev3.h ├── hardwarev4a.h ├── jtag.c ├── jtag.h ├── jtag │ ├── lenval.c │ ├── lenval.h │ ├── micro.c │ ├── micro.h │ ├── ports.c │ └── ports.h ├── main.c ├── onboardEEPROM.c ├── onboardEEPROM.h ├── p24FJ256GB106.gld ├── p24FJ64GA002.gld ├── pc_at_keyboard.c ├── pc_at_keyboard.h ├── pic.c ├── pic.h ├── prj_usb_config.h ├── procMenu.c ├── procMenu.h ├── raw2wire.c ├── raw2wire.h ├── raw3wire.c ├── raw3wire.h ├── selftest.c ├── selftest.h ├── smps.c ├── smps.h ├── translations │ ├── BPv3_en_US.h │ ├── BPv3_en_US.s │ ├── BPv3_strings_en_US.txt │ ├── BPv4_en_US.h │ ├── BPv4_en_US.s │ ├── BPv4_strings_en_US.txt │ └── tools │ │ ├── run.bat │ │ ├── textconvert.html │ │ ├── translate.exe │ │ └── translate │ │ ├── main.c │ │ ├── main.c.save │ │ ├── translate.cbp │ │ ├── translate.cbp.save │ │ ├── translate.depend │ │ ├── translate.layout │ │ └── translate.layout.save ├── uart2io.c ├── uart2io.h └── usb_lang.h ├── art ├── BP LCD v3a.tif ├── BP-LCD-v3a-600.jpg ├── BP3.5c.rar ├── Bus Pirate Lcd Adapter v3a.zip ├── BusPirate4.0-SU-model.rar ├── BusPirate4c-SketchupModel-rendering.jpg ├── BusPirate4c-SketchupModel.rar ├── BusPirateSSOP.3.5e.jpg └── BusPirateSSOP.3.5e.rar ├── documents ├── 0001-Refcard-Added-empty-cell-in-CLK-row.diff ├── AVRDude-buspirate.patch ├── bp-sheetsheet-safe-GPL.txt ├── bp-sheetsheet-safe.svg ├── buspirate_refcard-v2.tex ├── buspirate_refcard.pdf ├── buspirate_refcard.png ├── buspirate_refcard.tex ├── openocd-0.3.0-rc0-buspirate-v2.diff ├── openocd-0.3.0-rc0-buspirate-v3.diff └── overview450.png ├── firmware-STK500v2 ├── BusPirate-stk500.mcp ├── BusPirate-stk500.mcs ├── BusPirate-stk500.mcw ├── UART.c ├── UART.h ├── base.c ├── base.h ├── command.h ├── gpl.txt ├── hardwarev1a.h ├── hardwarev3.h ├── main.c ├── p24FJ64GA002.gld ├── redefines.h ├── spi.c └── spi.h ├── firmware-XSVFplayer ├── #README.TXT ├── UART.c ├── UART.h ├── base.c ├── base.h ├── busPirate.mcp ├── busPirate.mcs ├── busPirate.mcw ├── hardwarev0a.h ├── hardwarev1a.h ├── hardwarev25.h ├── hardwarev2a.h ├── jtag.c ├── jtag.h ├── jtag │ ├── lenval.c │ ├── lenval.h │ ├── micro.c │ ├── micro.h │ ├── ports.c │ └── ports.h ├── main.c └── p24FJ64GA002.gld ├── hardware-other ├── 3EEPROM │ ├── 24AAxx.txt │ ├── 25AAxx.txt │ ├── 3EEPROM.v1.brd │ ├── 3EEPROM.v1.jpg │ ├── 3EEPROM.v1.sch │ ├── 3EEPROM.v2.brd │ ├── 3EEPROM.v2.sch │ └── DS2431.txt ├── BPv3-HD44780_LCD │ ├── 44780-LCD-v1.jpg │ ├── 44780_LCD-v1.brd │ ├── 44780_LCD-v1.sch │ ├── HD44780.txt │ └── lcd-hd44780.lbr ├── BPv3-HD44780_LCDv2 │ ├── BP-LCDv2-CCT.png │ ├── BP.LCDadapter-history.txt │ ├── BP.LCDadapter.v2-female-header.jpg │ ├── BP.LCDadapter.v2.brd │ ├── BP.LCDadapter.v2.sch │ ├── BP.LCDadapter.v2a.brd │ ├── BP.LCDadapter.v2a.sch │ ├── BP.LCDadapter.v2b.brd │ ├── BP.LCDadapter.v2b.brd.png │ ├── BP.LCDadapter.v2b.htm │ ├── BP.LCDadapter.v2b.sch │ ├── BP.LCDadapter.v2b.sch.png │ ├── BP.LCDadapter.v2b.wik │ ├── BP.LCDadapter.v2b.xls │ ├── BP.LCDadapter.v2c-gerbers.zip │ ├── BP.LCDadapter.v2c.brd │ ├── BP.LCDadapter.v2c.sch │ ├── BP.LCDadapter.v3-BOM.xls │ ├── BP.LCDadapter.v3.brd │ ├── BP.LCDadapter.v3.gerbers.zip │ ├── BP.LCDadapter.v3.sch │ ├── bom.csv │ ├── bp-lcdv2-brd.png │ ├── female.jpg │ ├── lcdv2a-BOM.xls │ └── male.jpg ├── BPv4-HD44780_LCD │ ├── BPv4-LCDv2a.brd │ ├── BPv4-LCDv3.brd │ ├── BPv4-LCDv3.brd.png │ ├── BPv4-LCDv3.sch │ ├── BPv4-LCDv3.sch.png │ ├── BPv4-PassiveLCD.v4-gerber.zip │ ├── BPv4-PassiveLCD.v4.brd │ ├── BPv4-PassiveLCD.v4.brd.png │ ├── BPv4-PassiveLCD.v4.sch │ ├── BPv4-PassiveLCD.v4.sch.png │ ├── BPv4-PassiveLCDv1.brd │ ├── BPv4-PassiveLCDv1.brd.png │ ├── BPv4-PassiveLCDv1.sch │ ├── BPv4-PassiveLCDv1.sch.png │ ├── BPv4LCDadapter.v4b-gerber.zip │ ├── BPv4LCDadapter.v4b.brd │ ├── BPv4LCDadapter.v4b.brd.png │ ├── BPv4LCDadapter.v4b.sch │ ├── BPv4LCDadapter.v4b.sch.png │ └── Bpv4-LCDv2a.sch ├── LIN │ ├── LIN-MCP2021-v1a.brd │ ├── LIN-MCP2021-v1a.png │ └── LIN-MCP2021-v1a.sch ├── MIDI │ ├── MIDI-v1a.brd │ └── MIDI-v1a.sch ├── PiratePICprog │ ├── bp-hvp-back.jpg │ ├── bp-hvp-bom.xls │ ├── bp-hvp-front.jpg │ ├── bp_pic_programmer_v1a.brd │ ├── bp_pic_programmer_v1a.sch │ ├── bp_pic_programmer_v1b.brd │ ├── bp_pic_programmer_v1b.sch │ ├── bp_pic_programmer_v1c.brd │ ├── bp_pic_programmer_v1c.sch │ ├── bp_pic_programmer_v2.brd │ ├── bp_pic_programmer_v2.sch │ ├── bp_pic_programmer_v3.brd │ ├── bp_pic_programmer_v3.gerbers.zip │ ├── bp_pic_programmer_v3.sch │ ├── bp_pic_programmer_v4.brd │ ├── bp_pic_programmer_v4.gerbers.zip │ └── bp_pic_programmer_v4.sch ├── SMPS │ ├── BusPirate-SMPS-gerbers.zip │ ├── BusPirate-SMPS.brd │ ├── BusPirate-SMPS.brd.png │ ├── BusPirate-SMPS.htm │ ├── BusPirate-SMPS.sch │ └── BusPirate-SMPS.sch.png └── demos │ ├── 24AA02E48.txt │ ├── AT45DB041D.txt │ ├── BpMagstripe.zip │ ├── DS1307.txt │ ├── HMC6352.txt │ ├── SLE4442.txt │ └── Sure-LEDmatrix.txt ├── hardware ├── BusPirate-history.txt ├── COPYING.TXT ├── v0a │ ├── BusPirate-24Fv0a.brd │ ├── BusPirate-24Fv0a.sch │ ├── brd.png │ └── cct.png ├── v1a │ ├── BusPirate-24Fv1a.final.brd │ ├── BusPirate-24Fv1a.final.sch │ ├── SOT223-6.lbr │ ├── brd.png │ ├── cct.png │ ├── linear-technology-LTC2640.lbr │ └── parts.html ├── v2a │ ├── BusPirate-v2a-front.jpg │ ├── BusPirate-v2a.brd │ ├── BusPirate-v2a.sch │ ├── brd.png │ ├── cct.png │ └── v2a-gerbers.zip ├── v2go │ ├── BusPirate-v25.brd │ ├── BusPirate-v25.jpg │ ├── BusPirate-v25.sch │ ├── brd.25.png │ ├── cct25.png │ └── v25gerbers.zip ├── v3.5 │ ├── BusPirate-v3.5-SOIC-gerber.zip │ ├── BusPirate-v3.5-SOIC.brd │ ├── BusPirate-v3.5-SOIC.sch │ ├── BusPirate-v3.5-SSOP-gerber.zip │ ├── BusPirate-v3.5-SSOP.brd │ ├── BusPirate-v3.5-SSOP.brd.png │ ├── BusPirate-v3.5-SSOP.htm │ ├── BusPirate-v3.5-SSOP.sch │ ├── BusPirate-v3.5-SSOP.sch.png │ ├── BusPirate-v3.5-partlist.xls │ ├── BusPirate-v3.5a-SOIC-gerber.zip │ ├── BusPirate-v3.5a-SSOP.brd │ ├── BusPirate-v3.5a-SSOP.brd.png │ ├── BusPirate-v3.5a-SSOP.gerbers.rar │ ├── BusPirate-v3.5a-SSOP.htm │ ├── BusPirate-v3.5a-SSOP.sch │ ├── BusPirate-v3.5a-SSOP.sch.png │ ├── BusPirate-v3.5a-SSOP.wik │ ├── BusPirate-v3.5b-SSOP-gerber.zip │ ├── BusPirate-v3.5b-SSOP.brd │ ├── BusPirate-v3.5b-SSOP.brd.png │ ├── BusPirate-v3.5b-SSOP.sch │ ├── BusPirate-v3.5b-SSOP.sch.png │ ├── BusPirate-v3.5c-SSOP-gerbers.zip │ ├── BusPirate-v3.5c-SSOP.brd │ ├── BusPirate-v3.5c-SSOP.sch │ ├── BusPirate-v3.5d-SSOP-gerbers.zip │ ├── BusPirate-v3.5d-SSOP.brd │ ├── BusPirate-v3.5d-SSOP.sch │ ├── BusPirate-v3.5e-SSOP-gerbers.zip │ ├── BusPirate-v3.5e-SSOP.brd │ ├── BusPirate-v3.5e-SSOP.sch │ ├── BusPiratev3.5-SOIC.brd │ ├── BusPiratev3.5-SOIC.brd.png │ ├── BusPiratev3.5-SOIC.htm │ ├── BusPiratev3.5-SOIC.sch │ ├── BusPiratev3.5-SOIC.sch.png │ ├── BusPiratev3.5a-SOIC.brd │ ├── BusPiratev3.5a-SOIC.brd.png │ ├── BusPiratev3.5a-SOIC.htm │ ├── BusPiratev3.5a-SOIC.sch │ ├── BusPiratev3.5a-SOIC.sch.png │ ├── BusPiratev3.5c-SOIC-gerbers.zip │ ├── BusPiratev3.5c-SOIC.brd │ └── BusPiratev3.5c-SOIC.sch ├── v3.6 │ ├── BusPirate-v3.6-SSOP-gerbers.zip │ ├── BusPirate-v3.6-SSOP.brd │ ├── BusPirate-v3.6-SSOP.sch │ ├── BusPirate-v3.6-partlist.xls │ ├── BusPirate-v3.6_partlist.xls │ ├── BusPirate-v3.6a-SSOP-gerber.zip │ ├── BusPirate-v3.6a-SSOP.brd │ └── BusPirate-v3.6a-SSOP.sch ├── v3.8 │ ├── BusPirate-v3.8-SSOP-gerber.zip │ ├── BusPirate-v3.8-SSOP.brd │ ├── BusPirate-v3.8-SSOP.brd.png │ ├── BusPirate-v3.8-SSOP.sch │ └── BusPirate-v3.8-SSOP.sch.png ├── v3.8a │ ├── BusPirate-v3.8a-SSOP-gerber.zip │ ├── BusPirate-v3.8a-SSOP.brd │ └── BusPirate-v3.8a-SSOP.sch ├── v3.9 │ ├── BusPirate-v3.9-SSOP.brd │ ├── BusPirate-v3.9-SSOP.sch │ ├── BusPirate-v3.9-SSOP.xlsx │ └── gerber │ │ ├── BusPirate-v3.9-SSOP.GBL │ │ ├── BusPirate-v3.9-SSOP.GBO │ │ ├── BusPirate-v3.9-SSOP.GBP │ │ ├── BusPirate-v3.9-SSOP.GBS │ │ ├── BusPirate-v3.9-SSOP.GML │ │ ├── BusPirate-v3.9-SSOP.GTL │ │ ├── BusPirate-v3.9-SSOP.GTO │ │ ├── BusPirate-v3.9-SSOP.GTP │ │ ├── BusPirate-v3.9-SSOP.GTS │ │ └── BusPirate-v3.9-SSOP.TXT ├── v3 │ ├── BusPirate-v3a-final.brd │ ├── BusPirate-v3a-final.sch │ ├── BusPirate-v3b.brd │ ├── BusPirate-v3b.sch │ ├── brd-v3a.png │ ├── brd-v3b.png │ ├── cct-v3b.png │ ├── microBusPirate-v3.brd │ └── microBusPirate-v3.sch ├── v4 │ ├── BusPirate-v4-partlist.xls │ ├── BusPirate-v4.brd │ ├── BusPirate-v4.brd.png │ ├── BusPirate-v4.htm │ ├── BusPirate-v4.sch │ ├── BusPirate-v4.sch.png │ ├── BusPirate-v4a-gerbers.zip │ ├── BusPirate-v4a.brd │ ├── BusPirate-v4a.brd.png │ ├── BusPirate-v4a.htm │ ├── BusPirate-v4a.sch │ ├── BusPirate-v4a.sch.png │ ├── BusPirate-v4b-gerbers.zip │ ├── BusPirate-v4b.brd │ ├── BusPirate-v4b.gerbers.rar │ ├── BusPirate-v4b.sch │ ├── BusPirate-v4c-gerbers.zip │ ├── BusPirate-v4c.brd │ ├── BusPirate-v4c.sch │ ├── BusPirate-v4d.brd │ ├── BusPirate-v4d.brd.png │ ├── BusPirate-v4d.sch │ ├── BusPirate-v4e-gerber.zip │ ├── BusPirate-v4e.brd │ ├── BusPirate-v4e.brd.png │ └── BusPirate-v4e.sch └── v5.0 │ └── tests │ ├── v5_with_China_USB │ ├── BusPirate-v5.0-SSOP.brd │ ├── BusPirate-v5.0-SSOP.sch │ ├── BusPirate-v5.0-SSOP.xlsx │ └── gerber │ │ ├── BusPirate-v5.0-SSOP.GBL │ │ ├── BusPirate-v5.0-SSOP.GBO │ │ ├── BusPirate-v5.0-SSOP.GBP │ │ ├── BusPirate-v5.0-SSOP.GBS │ │ ├── BusPirate-v5.0-SSOP.GML │ │ ├── BusPirate-v5.0-SSOP.GTL │ │ ├── BusPirate-v5.0-SSOP.GTO │ │ ├── BusPirate-v5.0-SSOP.GTP │ │ ├── BusPirate-v5.0-SSOP.GTS │ │ └── BusPirate-v5.0-SSOP.TXT │ └── v5_with_MOLEX_USB │ ├── BusPirate-v5.0-SSOP.brd │ ├── BusPirate-v5.0-SSOP.csv │ ├── BusPirate-v5.0-SSOP.sch │ └── gerber │ ├── BusPirate-v5.0-SSOP.GBL │ ├── BusPirate-v5.0-SSOP.GBO │ ├── BusPirate-v5.0-SSOP.GBP │ ├── BusPirate-v5.0-SSOP.GBS │ ├── BusPirate-v5.0-SSOP.GML │ ├── BusPirate-v5.0-SSOP.GTL │ ├── BusPirate-v5.0-SSOP.GTO │ ├── BusPirate-v5.0-SSOP.GTP │ ├── BusPirate-v5.0-SSOP.GTS │ └── BusPirate-v5.0-SSOP.TXT ├── inf ├── mchpcdc.cat └── mchpcdc.inf ├── manufacturing_resources ├── v3.5 │ ├── firmware_dump │ │ ├── COPYING.TXT │ │ └── bpv3-BL44FW510-DUMP.hex │ ├── gerbers │ │ ├── BusPirate-v3.5-SOIC-gerber.zip │ │ ├── BusPirate-v3.5-SSOP-gerber.zip │ │ ├── BusPirate-v3.5-SSOP.brd │ │ ├── BusPirate-v3.5-SSOP.brd.png │ │ ├── BusPirate-v3.5-SSOP.htm │ │ ├── BusPirate-v3.5-SSOP.sch │ │ ├── BusPirate-v3.5-SSOP.sch.png │ │ ├── BusPirate-v3.5-partlist.xls │ │ ├── BusPiratev3.5-SOIC.brd │ │ ├── BusPiratev3.5-SOIC.brd.png │ │ ├── BusPiratev3.5-SOIC.htm │ │ ├── BusPiratev3.5-SOIC.sch │ │ ├── BusPiratev3.5-SOIC.sch.png │ │ └── COPYING.TXT │ ├── sales_page │ │ ├── bpv35-salespage.txt │ │ └── bv35sales.txt │ └── test_plan │ │ └── testplan.txt ├── v3.6 │ ├── firmware_dump │ │ ├── COPYING.TXT │ │ └── bpv3-BL44FW510-DUMP.hex │ ├── hardware │ │ ├── BusPirate-v3.6-SSOP-gerbers.zip │ │ ├── BusPirate-v3.6-SSOP.brd │ │ ├── BusPirate-v3.6-SSOP.sch │ │ └── BusPirate-v3.6-partlist.xls │ ├── sales_page │ │ ├── bpv35-salespage.txt │ │ └── bv35sales.txt │ └── test_plan │ │ └── testplan.txt └── v4.0 │ ├── bootloader-test │ ├── BPv4-frimware-v6-a2.hex │ ├── pirate-loader.exe │ ├── readme.txt │ └── test.bat │ ├── firmware_dump │ ├── BPv4-BL1FW6a2-DUMP.hex │ └── BPv4-BL1FW6a3-DUMP.hex │ ├── inf │ ├── mchpcdc.cat │ └── mchpcdc.inf │ └── sales_page │ └── bpv4-salescopy.txt ├── package ├── BPv1a-firmware │ ├── BPv1a-Bootloader-v4.4.hex │ ├── BPv1a-Firmware-v5.10.hex │ ├── BPv1a-Firmware-v5.9-extras.hex │ ├── BPv1a-STK500v2-v0b-hiz.hex │ ├── BPv1a-STK500v2-v0b.hex │ ├── README.TXT │ ├── STK500v2-gpl.txt │ ├── old-versions │ │ ├── BPv1a-Bootloader-v4.2.hex │ │ ├── BPv1a-Firmware-v5.4.hex │ │ ├── BPv1a-Firmware-v5.5.hex │ │ ├── BPv1a-Firmware-v5.6.hex │ │ ├── BPv1a-Firmware-v5.7.hex │ │ ├── BPv1a-Firmware-v5.8.hex │ │ └── BPv1a-Firmware-v5.9.hex │ ├── v1a-REAME.TXT │ ├── v4UPGRADES!!!.txt │ ├── v4UPGRADES!!.txt │ └── v4UPGRADES!.txt ├── BPv3-firmware │ ├── BPv3-STK500v2-v6.0-hiz.hex │ ├── BPv3-STK500v2-v6.0.hex │ ├── BPv3-firmware-v6.2-r1981.hex │ ├── BPv3-firmware-v6.3-r2088.hex │ ├── BPv3-firmware-v6.3-r2151.hex │ ├── BPv3-update-v6.2.bat │ ├── DragDropUpdate.bat │ ├── GHelper.dll │ ├── README.TXT │ ├── STK500v2-gpl.txt │ ├── bpv3-xsvf-vb.hex │ ├── ds30 Loader GUI.exe │ ├── ds30 Loader.dll │ ├── old-versions │ │ ├── BPv3-Firmware-v5.10.hex │ │ ├── BPv3-Firmware-v5.9-extras.hex │ │ ├── BPv3-Firmware-v5.9.hex │ │ ├── BPv3-STK500v2-v0b-hiz.hex │ │ ├── BPv3-STK500v2-v0b.hex │ │ ├── BPv3-frimware-v6.1.hex │ │ ├── BPv3-frimware-v6.hex │ │ ├── BPv3-update-v6.1.bat │ │ ├── BPv3-update-v6.bat │ │ ├── README.TXT │ │ ├── STK500v2-gpl.txt │ │ ├── bpv3-BL44FW510-DUMP.hex │ │ ├── v4UPGRADES!!!.txt │ │ ├── v4UPGRADES!!.txt │ │ └── v4UPGRADES!.txt │ ├── pirate-loader-source │ │ ├── build-unix.sh │ │ ├── build-win32.bat │ │ ├── makefile │ │ └── source │ │ │ └── pirate-loader.c │ ├── pirate-loader.exe │ ├── pirate-loader_lnx │ ├── pirate-loader_mac │ ├── settings.xml │ └── v4UPGRADES!!!.txt ├── BPv4-firmware │ ├── BPv4-firmware-v6.2-r1981.hex │ ├── BPv4-firmware-v6.3-r2088.hex │ ├── BPv4-firmware-v6.3-r2151.hex │ ├── BPv4-frimware-v6.1.hex │ ├── BPv4-update-v6.1.bat │ ├── BPv4-update-v6.2.bat │ ├── pirate-loader-v4-source │ │ ├── build-unix.sh │ │ ├── build-win32.bat │ │ ├── makefile │ │ ├── pirate-loader.c │ │ ├── pirate-loader.cbp │ │ ├── pirate-loader.depend │ │ └── pirate-loader.layout │ └── pirate-loader.exe ├── BPv4-inf-driver │ ├── mchpcdc.cat │ └── mchpcdc.inf ├── bootloader │ ├── BPv3-Bootloader-v4.4.hex │ └── BPv4-bootloader-v1.hex ├── hardware │ ├── BPv3-LCDadapter-v2c.brd │ ├── BPv3-LCDadapter-v2c.sch │ ├── BPv3-PICprogrammer-v1c.brd │ ├── BPv3-PICprogrammer-v1c.sch │ ├── BusPirate-v3.5c-SSOP.brd │ ├── BusPirate-v3.5c-SSOP.sch │ ├── BusPirate-v3.6-SSOP-gerbers.zip │ ├── BusPirate-v3.6-SSOP.brd │ ├── BusPirate-v3.6-SSOP.sch │ ├── BusPirate-v3.6-partlist.xls │ ├── BusPirate-v3a-final.brd │ ├── BusPirate-v3a-final.sch │ ├── BusPirate-v4.brd │ └── BusPirate-v4.sch └── license.txt └── scripts ├── BPTestApp └── TestFT232 │ ├── ft232testapp0.zip │ └── ft232testapp0 │ ├── ft232testapp0.exe │ ├── ft232testapp0.sln │ ├── ft232testapp0.suo │ └── ft232testapp0 │ ├── ReadMe.txt │ ├── ft232testapp0.cpp │ ├── ft232testapp0.vcxproj │ ├── ft232testapp0.vcxproj.filters │ ├── ft232testapp0.vcxproj.user │ ├── ftd2xx.dll │ ├── ftd2xx.h │ ├── ftd2xx.lib │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── BPXSVFPlayer ├── BPXSVFplayer.cbp ├── BPXSVFplayer.depend ├── BPXSVFplayer.layout ├── BPXSVFplayer_build_log.html ├── Makefile ├── SVF2XSVF │ ├── ReadMe.txt │ ├── hp │ │ ├── mergexsvf │ │ └── svf2xsvf502 │ ├── lin │ │ ├── mergexsvf │ │ └── svf2xsvf502 │ ├── nt │ │ ├── mergexsvf.exe │ │ ├── svf2XSVF.bat │ │ └── svf2xsvf502.exe │ └── sol │ │ ├── mergexsvf │ │ └── svf2xsvf502 ├── buspirate.c ├── buspirate.h ├── main.c ├── main.c.save ├── package │ ├── BPXSVFplayer │ ├── BPXSVFplayer.exe │ ├── out.log │ ├── run.bat │ └── xc95test.xsvf ├── serial.c ├── serial.h └── xc95test.xsvf ├── BP_matrix.pl ├── BPbinmode.pl ├── BusPirateGUI ├── BusPirateGUI.pro ├── GUI │ ├── BPSettings.cpp │ ├── BPSettings.h │ ├── BinMode.cpp │ ├── BinMode.h │ ├── Events.cpp │ ├── Events.h │ ├── GUI.pro │ ├── Interface.h │ ├── Interface_i2c.cpp │ ├── Interface_jtag.cpp │ ├── Interface_onewire.cpp │ ├── Interface_power.cpp │ ├── Interface_rawtext.cpp │ ├── Interface_rawwire.cpp │ ├── Interface_spi.cpp │ ├── MainWin.cpp │ ├── MainWin.h │ ├── configure.h │ └── main.cpp ├── qextserialport │ ├── ChangeLog │ ├── posix_qextserialport.cpp │ ├── posix_qextserialport.h │ ├── qextserialbase.cpp │ ├── qextserialbase.h │ ├── qextserialenumerator.cpp │ ├── qextserialenumerator.h │ ├── qextserialport.cpp │ ├── qextserialport.h │ ├── qextserialport.pro │ ├── win_qextserialport.cpp │ └── win_qextserialport.h └── test_hex_ascii.txt ├── BusPirateRawCS └── BusPirateRawCS │ ├── BusPirateLibCS │ ├── BusPirate.cs │ ├── BusPirateLibCS.csproj │ ├── BusPiratePipe.cs │ ├── Modes │ │ ├── BusPirateRawWire.cs │ │ └── Mode.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Util │ │ └── ExpectingSerialPort.cs │ ├── BusPiratePICProgrammer │ ├── BusPiratePICProgrammer.csproj │ ├── DsPICProgrammer.cs │ ├── HexParser.cs │ ├── PIC16Programmer.cs │ ├── PIC16ProgrammerHelper.cs │ ├── PicDesc.cs │ ├── PicProgrammer.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── BusPirateRawCS.sln │ └── buspirateraw │ ├── BusPirateUI.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TextFile1.txt │ └── pic16f628a.xml ├── HVPselftest ├── HVPselftest.cbp ├── HVPselftest.cbp.save ├── HVPselftest.depend ├── HVPselftest.exe ├── HVPselftest.layout ├── HVPselftest.layout.save ├── main.c ├── main.c.save └── run.bat ├── I2CEEPROMWIN.c ├── P24qp.py ├── SPIeeprom.pl ├── oscilloscope └── oscope_v1.2.py ├── powertools ├── BP_MMA_Selftest │ ├── BP_MMA_Selftest.cbp │ ├── BP_MMA_Selftest.depend │ ├── BP_MMA_Selftest.layout │ └── main.c ├── HVPselftest │ ├── HVPselftest.cbp │ ├── HVPselftest.cbp.save │ ├── HVPselftest.depend │ ├── HVPselftest.exe │ ├── HVPselftest.layout │ ├── HVPselftest.layout.save │ ├── main.c │ ├── main.c.save │ └── run.bat ├── LCDv2-tester │ ├── LCDadapter-test.cbp │ ├── LCDadapter-test.depend │ ├── LCDadapter-test.layout │ ├── lcdtest.bat │ ├── lcdtest.exe │ ├── main-text.c │ ├── main.c │ └── readme.txt ├── SPISniffer │ ├── SPIsniffer.cbp │ ├── SPIsniffer.depend │ ├── SPIsniffer.layout │ ├── SPIsniffer.workspace │ ├── linux-version │ │ ├── Makefile │ │ ├── SPIsniffer.cbp │ │ ├── SPIsniffer.depend │ │ ├── SPIsniffer.layout │ │ ├── SPIsniffer.workspace │ │ ├── buspirate.c │ │ ├── buspirate.h │ │ ├── main.c │ │ ├── serial.c │ │ └── serial.h │ └── main.c ├── SPIsniffer.bat ├── SPIsniffer.exe ├── framework │ ├── buspirate.c │ ├── buspirate.h │ ├── serial.c │ └── serial.h ├── self-test │ ├── main.c │ ├── selftest.cbp │ ├── selftest.depend │ └── selftest.layout ├── selftest.bat └── selftest.exe ├── pyBusPirateLite ├── 93C66.sh ├── MicroWire.py ├── contrib │ ├── UART.py.diff │ ├── diff.diff │ └── pybuspiratelite-oskar456.patch ├── i2c-test.py ├── noritake-bitmap-display.py ├── pyBusPirateLite │ ├── 1wire.py │ ├── BitBang.py │ ├── I2C.py │ ├── I2Chigh.py │ ├── RAW_WIRE.py │ ├── SPI.py │ ├── UART.py │ ├── __init__.py │ └── rawwire.py ├── shtxx.py ├── spi_test.py └── thermometer.py ├── selftest.pl └── version.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/.gitignore -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/BP4_Full_bitbang_XSVFplayer_Win.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/BP4_Full_bitbang_XSVFplayer_Win.dev -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/BP4_Full_bitbang_XSVFplayer_Win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/BP4_Full_bitbang_XSVFplayer_Win.exe -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/BP4_Full_bitbang_XSVFplayer_Win.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/BP4_Full_bitbang_XSVFplayer_Win.layout -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/Makefile.win -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/SVF2XSVF/mergexsvf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/SVF2XSVF/mergexsvf.exe -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/SVF2XSVF/svf2XSVF.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/SVF2XSVF/svf2XSVF.bat -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/SVF2XSVF/svf2xsvf502.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/SVF2XSVF/svf2xsvf502.exe -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/VHDL-CPLDIntro2Ledbutton.xsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/VHDL-CPLDIntro2Ledbutton.xsvf -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/buspirate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/buspirate.c -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/buspirate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/buspirate.h -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/main.c -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/run.bat: -------------------------------------------------------------------------------- 1 | BP4_Full_bitbang_XSVFplayer_Win -p com10 -f xc95test.xsvf -s 115200 -x -r 2 | 3 | pause 4 | -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/run2.bat: -------------------------------------------------------------------------------- 1 | BP4_Full_bitbang_XSVFplayer_Win -p com10 -f VHDL-CPLDIntro2Ledbutton.xsvf -s 115200 -x -r 2 | 3 | pause 4 | -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/run_log.bat: -------------------------------------------------------------------------------- 1 | BP4_XSVF_Win -p com13 -f xc95test.xsvf -s 115200 -x -r >out.log 2 | 3 | pause 4 | -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/serial.c -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/serial.h -------------------------------------------------------------------------------- /BP4_XSVFplayer_Win/xc95test.xsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BP4_XSVFplayer_Win/xc95test.xsvf -------------------------------------------------------------------------------- /BPv3-bootloader/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/COPYING.txt -------------------------------------------------------------------------------- /BPv3-bootloader/ds30_Loader_GUI/GHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/ds30_Loader_GUI/GHelper.dll -------------------------------------------------------------------------------- /BPv3-bootloader/ds30_Loader_GUI/ds30 Loader GUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/ds30_Loader_GUI/ds30 Loader GUI.exe -------------------------------------------------------------------------------- /BPv3-bootloader/ds30_Loader_GUI/ds30 Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/ds30_Loader_GUI/ds30 Loader.dll -------------------------------------------------------------------------------- /BPv3-bootloader/ds30_Loader_GUI/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/ds30_Loader_GUI/settings.xml -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.1/ds30loader.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.1/ds30loader.mcp -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.1/ds30loader.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.1/ds30loader.mcs -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.1/ds30loader.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.1/ds30loader.mcw -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.1/src/devices.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.1/src/devices.inc -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.1/src/ds30loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.1/src/ds30loader.s -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.1/src/settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.1/src/settings.inc -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.3/ds30loader.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.3/ds30loader.mcp -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.3/ds30loader.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.3/ds30loader.mcs -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.3/ds30loader.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.3/ds30loader.mcw -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.3/src/devices.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.3/src/devices.inc -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.3/src/ds30loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.3/src/ds30loader.s -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.3/src/settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.3/src/settings.inc -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.5/ds30loader.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.5/ds30loader.mcp -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.5/ds30loader.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.5/ds30loader.mcw -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.5/src/devices.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.5/src/devices.inc -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.5/src/ds30loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.5/src/ds30loader.s -------------------------------------------------------------------------------- /BPv3-bootloader/firmware-v4.5/src/settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/firmware-v4.5/src/settings.inc -------------------------------------------------------------------------------- /BPv3-bootloader/hex2prog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/hex2prog.html -------------------------------------------------------------------------------- /BPv3-bootloader/pirate-loader/build-unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/pirate-loader/build-unix.sh -------------------------------------------------------------------------------- /BPv3-bootloader/pirate-loader/build-win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/pirate-loader/build-win32.bat -------------------------------------------------------------------------------- /BPv3-bootloader/pirate-loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/pirate-loader/makefile -------------------------------------------------------------------------------- /BPv3-bootloader/pirate-loader/pirate-loader_lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/pirate-loader/pirate-loader_lnx -------------------------------------------------------------------------------- /BPv3-bootloader/pirate-loader/pirate-loader_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/pirate-loader/pirate-loader_mac -------------------------------------------------------------------------------- /BPv3-bootloader/pirate-loader/source/pirate-loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/pirate-loader/source/pirate-loader.c -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/APP 24FJ64GA002.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/APP 24FJ64GA002.gld -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/BPv3-blv4updater-v0.2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/BPv3-blv4updater-v0.2.hex -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/clean.bat -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/convert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/convert.html -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/firmware.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/flash.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/flash.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/flash.s -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/hardware.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/hardwarev0a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/hardwarev0a.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/hardwarev1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/hardwarev1a.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/hardwarev25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/hardwarev25.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/hardwarev2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/hardwarev2a.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/hardwarev3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/hardwarev3.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/hex2prog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/hex2prog.html -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/installer.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/installer.mcp -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/installer.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/installer.mcs -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/installer.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/installer.mcw -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v2tov4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v2tov4/main.c -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/clean.bat -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/convert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/convert.html -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/firmware.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/flash.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/flash.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/flash.s -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/hardware.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/hardwarev0a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/hardwarev0a.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/hardwarev1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/hardwarev1a.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/hardwarev25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/hardwarev25.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/hardwarev2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/hardwarev2a.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/hardwarev3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/hardwarev3.h -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/hex2prog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/hex2prog.html -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/installer.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/installer.mcp -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/installer.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/installer.mcs -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/installer.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/installer.mcw -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/main.c -------------------------------------------------------------------------------- /BPv3-bootloader/upgrader-v4tov4/p24FJ64GA002.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/upgrader-v4tov4/p24FJ64GA002.gld -------------------------------------------------------------------------------- /BPv3-bootloader/v2tov4-bootloader-update/upgrader/P24QP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/v2tov4-bootloader-update/upgrader/P24QP.exe -------------------------------------------------------------------------------- /BPv3-bootloader/v2tov4-bootloader-update/upgrader/P24qp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/v2tov4-bootloader-update/upgrader/P24qp.ini -------------------------------------------------------------------------------- /BPv3-bootloader/v2tov4-bootloader-update/upgrader/P24qp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/v2tov4-bootloader-update/upgrader/P24qp.py -------------------------------------------------------------------------------- /BPv3-bootloader/v2tov4-bootloader-update/upgrader/PICBOOT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/v2tov4-bootloader-update/upgrader/PICBOOT.dll -------------------------------------------------------------------------------- /BPv3-bootloader/v4xtov43-bootloader-update/!v4UPGRADES!!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/v4xtov43-bootloader-update/!v4UPGRADES!!!.txt -------------------------------------------------------------------------------- /BPv3-bootloader/v4xtov43-bootloader-update/!v4UPGRADES!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/v4xtov43-bootloader-update/!v4UPGRADES!!.txt -------------------------------------------------------------------------------- /BPv3-bootloader/v4xtov43-bootloader-update/!v4UPGRADES!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv3-bootloader/v4xtov43-bootloader-update/!v4UPGRADES!.txt -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/BPv4-bootloader-va1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/BPv4-bootloader-va1.zip -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/Compiler.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/GenericTypeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/GenericTypeDefs.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/Makefile -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/NMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/NMakefile -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/boot_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/boot_config.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/bootloader.c -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/bootloader.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/bpv4-bootloader.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/bpv4-bootloader.cof -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/bpv4-bootloader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/bpv4-bootloader.hex -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/bpv4-bootloader.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/bpv4-bootloader.map -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/bpv4-bootloader.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/bpv4-bootloader.mcp -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/bpv4-bootloader.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/bpv4-bootloader.mcs -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/bpv4-bootloader.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/bpv4-bootloader.mcw -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/cdc.c -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/cdc.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/clean.bat: -------------------------------------------------------------------------------- 1 | del *.o -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/configwords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/configwords.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/descriptors.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/globals.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/main.c -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/nbproject/configurations.xml -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/nbproject/private/private.xml -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/nbproject/project.xml -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/p24FJ128GB106.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/p24FJ128GB106.gld -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/p24FJ256GB106.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/p24FJ256GB106.gld -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/picusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/picusb.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/usb_lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/usb_lang.h -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/usb_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/usb_stack.c -------------------------------------------------------------------------------- /BPv4-bootloader/firmware-v1/usb_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/firmware-v1/usb_stack.h -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/build-unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/build-unix.sh -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/build-win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/build-win32.bat -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/inf/mchpcdc.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/inf/mchpcdc.cat -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/inf/mchpcdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/inf/mchpcdc.inf -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/makefile -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/pirate-loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/pirate-loader.c -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/pirate-loader.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/pirate-loader.cbp -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/pirate-loader.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/pirate-loader.depend -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/pirate-loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/pirate-loader.exe -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/pirate-loader.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/pirate-loader.layout -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/pirate-loader_lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/pirate-loader_lnx -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/test.bat -------------------------------------------------------------------------------- /BPv4-bootloader/pirate-loader/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/BPv4-bootloader/pirate-loader/test.sh -------------------------------------------------------------------------------- /Firmware-Demos/ADC2UART.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/ADC2UART.zip -------------------------------------------------------------------------------- /Firmware-Demos/ADC2UART/ADC2UART.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/ADC2UART/ADC2UART.cof -------------------------------------------------------------------------------- /Firmware-Demos/ADC2UART/ADC2UART.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/ADC2UART/ADC2UART.hex -------------------------------------------------------------------------------- /Firmware-Demos/ADC2UART/ADC2UART.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/ADC2UART/ADC2UART.map -------------------------------------------------------------------------------- /Firmware-Demos/ADC2UART/ADC2UART.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/ADC2UART/ADC2UART.mcp -------------------------------------------------------------------------------- /Firmware-Demos/ADC2UART/ADC2UART.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/ADC2UART/ADC2UART.mcs -------------------------------------------------------------------------------- /Firmware-Demos/ADC2UART/ADC2UART.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/ADC2UART/ADC2UART.mcw -------------------------------------------------------------------------------- /Firmware-Demos/ADC2UART/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/ADC2UART/main.c -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED.zip -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.cof -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.hex -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.map -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.mcp -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.mcs -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED/Blink_MODE_LED.mcw -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED/main.c -------------------------------------------------------------------------------- /Firmware-Demos/Blink_MODE_LED/p24FJ64GA002.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/Blink_MODE_LED/p24FJ64GA002.gld -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateADCDemo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateADCDemo.zip -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.cof -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.hex -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.map -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.mcp -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.mcs -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateADCDemo/Bus Piarte ADC Demo.mcw -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateADCDemo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateADCDemo/main.c -------------------------------------------------------------------------------- /Firmware-Demos/BusPirateUARTDEMOTEST.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware-Demos/BusPirateUARTDEMOTEST.zip -------------------------------------------------------------------------------- /Firmware/1wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/1wire.c -------------------------------------------------------------------------------- /Firmware/1wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/1wire.h -------------------------------------------------------------------------------- /Firmware/1wire_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/1wire_lib.c -------------------------------------------------------------------------------- /Firmware/1wire_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/1wire_lib.h -------------------------------------------------------------------------------- /Firmware/AUXpin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/AUXpin.c -------------------------------------------------------------------------------- /Firmware/AUXpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/AUXpin.h -------------------------------------------------------------------------------- /Firmware/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/Compiler.h -------------------------------------------------------------------------------- /Firmware/GenericTypeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/GenericTypeDefs.h -------------------------------------------------------------------------------- /Firmware/HD44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/HD44780.c -------------------------------------------------------------------------------- /Firmware/HD44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/HD44780.h -------------------------------------------------------------------------------- /Firmware/I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/I2C.c -------------------------------------------------------------------------------- /Firmware/I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/I2C.h -------------------------------------------------------------------------------- /Firmware/JTR_SUMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/JTR_SUMP.c -------------------------------------------------------------------------------- /Firmware/OpenOCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/OpenOCD.c -------------------------------------------------------------------------------- /Firmware/OpenOCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/OpenOCD.h -------------------------------------------------------------------------------- /Firmware/OpenOCD_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/OpenOCD_asm.S -------------------------------------------------------------------------------- /Firmware/SPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/SPI.c -------------------------------------------------------------------------------- /Firmware/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/SPI.h -------------------------------------------------------------------------------- /Firmware/SUMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/SUMP.c -------------------------------------------------------------------------------- /Firmware/SUMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/SUMP.h -------------------------------------------------------------------------------- /Firmware/UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/UART.c -------------------------------------------------------------------------------- /Firmware/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/UART.h -------------------------------------------------------------------------------- /Firmware/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/base.c -------------------------------------------------------------------------------- /Firmware/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/base.h -------------------------------------------------------------------------------- /Firmware/baseIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/baseIO.c -------------------------------------------------------------------------------- /Firmware/baseIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/baseIO.h -------------------------------------------------------------------------------- /Firmware/baseUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/baseUI.c -------------------------------------------------------------------------------- /Firmware/baseUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/baseUI.h -------------------------------------------------------------------------------- /Firmware/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/basic.c -------------------------------------------------------------------------------- /Firmware/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/basic.h -------------------------------------------------------------------------------- /Firmware/binIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/binIO.c -------------------------------------------------------------------------------- /Firmware/binIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/binIO.h -------------------------------------------------------------------------------- /Firmware/binIOhelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/binIOhelpers.c -------------------------------------------------------------------------------- /Firmware/binIOhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/binIOhelpers.h -------------------------------------------------------------------------------- /Firmware/binwire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/binwire.c -------------------------------------------------------------------------------- /Firmware/binwire.h: -------------------------------------------------------------------------------- 1 | void binwire(void); 2 | 3 | -------------------------------------------------------------------------------- /Firmware/bitbang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/bitbang.c -------------------------------------------------------------------------------- /Firmware/bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/bitbang.h -------------------------------------------------------------------------------- /Firmware/bpv4.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/bpv4.mcp -------------------------------------------------------------------------------- /Firmware/bpv4.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/bpv4.mcs -------------------------------------------------------------------------------- /Firmware/bpv4.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/bpv4.mcw -------------------------------------------------------------------------------- /Firmware/busPirate.X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.X/Makefile -------------------------------------------------------------------------------- /Firmware/busPirate.X/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.X/nbproject/configurations.xml -------------------------------------------------------------------------------- /Firmware/busPirate.X/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.X/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /Firmware/busPirate.X/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/busPirate.X/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.X/nbproject/private/private.xml -------------------------------------------------------------------------------- /Firmware/busPirate.X/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/busPirate.X/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.X/nbproject/project.xml -------------------------------------------------------------------------------- /Firmware/busPirate.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.mcp -------------------------------------------------------------------------------- /Firmware/busPirate.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.mcs -------------------------------------------------------------------------------- /Firmware/busPirate.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.mcw -------------------------------------------------------------------------------- /Firmware/busPirate.mptags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirate.mptags -------------------------------------------------------------------------------- /Firmware/busPirateCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirateCore.c -------------------------------------------------------------------------------- /Firmware/busPirateCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/busPirateCore.h -------------------------------------------------------------------------------- /Firmware/configwords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/configwords.h -------------------------------------------------------------------------------- /Firmware/descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/descriptors.h -------------------------------------------------------------------------------- /Firmware/dio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/dio.c -------------------------------------------------------------------------------- /Firmware/dio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/dio.h -------------------------------------------------------------------------------- /Firmware/dp_usb/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/dp_usb/cdc.c -------------------------------------------------------------------------------- /Firmware/dp_usb/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/dp_usb/cdc.h -------------------------------------------------------------------------------- /Firmware/dp_usb/picusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/dp_usb/picusb.h -------------------------------------------------------------------------------- /Firmware/dp_usb/usb_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/dp_usb/usb_stack.c -------------------------------------------------------------------------------- /Firmware/dp_usb/usb_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/dp_usb/usb_stack.h -------------------------------------------------------------------------------- /Firmware/dp_usb/usb_stack_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/dp_usb/usb_stack_globals.h -------------------------------------------------------------------------------- /Firmware/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/globals.h -------------------------------------------------------------------------------- /Firmware/hardwarev1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/hardwarev1a.h -------------------------------------------------------------------------------- /Firmware/hardwarev3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/hardwarev3.h -------------------------------------------------------------------------------- /Firmware/hardwarev4a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/hardwarev4a.h -------------------------------------------------------------------------------- /Firmware/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/jtag.c -------------------------------------------------------------------------------- /Firmware/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/jtag.h -------------------------------------------------------------------------------- /Firmware/jtag/lenval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/jtag/lenval.c -------------------------------------------------------------------------------- /Firmware/jtag/lenval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/jtag/lenval.h -------------------------------------------------------------------------------- /Firmware/jtag/micro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/jtag/micro.c -------------------------------------------------------------------------------- /Firmware/jtag/micro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/jtag/micro.h -------------------------------------------------------------------------------- /Firmware/jtag/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/jtag/ports.c -------------------------------------------------------------------------------- /Firmware/jtag/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/jtag/ports.h -------------------------------------------------------------------------------- /Firmware/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/main.c -------------------------------------------------------------------------------- /Firmware/onboardEEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/onboardEEPROM.c -------------------------------------------------------------------------------- /Firmware/onboardEEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/onboardEEPROM.h -------------------------------------------------------------------------------- /Firmware/p24FJ256GB106.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/p24FJ256GB106.gld -------------------------------------------------------------------------------- /Firmware/p24FJ64GA002.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/p24FJ64GA002.gld -------------------------------------------------------------------------------- /Firmware/pc_at_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/pc_at_keyboard.c -------------------------------------------------------------------------------- /Firmware/pc_at_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/pc_at_keyboard.h -------------------------------------------------------------------------------- /Firmware/pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/pic.c -------------------------------------------------------------------------------- /Firmware/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/pic.h -------------------------------------------------------------------------------- /Firmware/prj_usb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/prj_usb_config.h -------------------------------------------------------------------------------- /Firmware/procMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/procMenu.c -------------------------------------------------------------------------------- /Firmware/procMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/procMenu.h -------------------------------------------------------------------------------- /Firmware/raw2wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/raw2wire.c -------------------------------------------------------------------------------- /Firmware/raw2wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/raw2wire.h -------------------------------------------------------------------------------- /Firmware/raw3wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/raw3wire.c -------------------------------------------------------------------------------- /Firmware/raw3wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/raw3wire.h -------------------------------------------------------------------------------- /Firmware/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/selftest.c -------------------------------------------------------------------------------- /Firmware/selftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/selftest.h -------------------------------------------------------------------------------- /Firmware/smps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/smps.c -------------------------------------------------------------------------------- /Firmware/smps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/smps.h -------------------------------------------------------------------------------- /Firmware/translations/BPv3_en_US.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/BPv3_en_US.h -------------------------------------------------------------------------------- /Firmware/translations/BPv3_en_US.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/BPv3_en_US.s -------------------------------------------------------------------------------- /Firmware/translations/BPv3_strings_en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/BPv3_strings_en_US.txt -------------------------------------------------------------------------------- /Firmware/translations/BPv4_en_US.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/BPv4_en_US.h -------------------------------------------------------------------------------- /Firmware/translations/BPv4_en_US.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/BPv4_en_US.s -------------------------------------------------------------------------------- /Firmware/translations/BPv4_strings_en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/BPv4_strings_en_US.txt -------------------------------------------------------------------------------- /Firmware/translations/tools/run.bat: -------------------------------------------------------------------------------- 1 | translate.exe bpstrings_en_US.txt 2 | pause -------------------------------------------------------------------------------- /Firmware/translations/tools/textconvert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/textconvert.html -------------------------------------------------------------------------------- /Firmware/translations/tools/translate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/translate.exe -------------------------------------------------------------------------------- /Firmware/translations/tools/translate/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/translate/main.c -------------------------------------------------------------------------------- /Firmware/translations/tools/translate/main.c.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/translate/main.c.save -------------------------------------------------------------------------------- /Firmware/translations/tools/translate/translate.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/translate/translate.cbp -------------------------------------------------------------------------------- /Firmware/translations/tools/translate/translate.cbp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/translate/translate.cbp.save -------------------------------------------------------------------------------- /Firmware/translations/tools/translate/translate.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/translate/translate.depend -------------------------------------------------------------------------------- /Firmware/translations/tools/translate/translate.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/translate/translate.layout -------------------------------------------------------------------------------- /Firmware/translations/tools/translate/translate.layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/translations/tools/translate/translate.layout.save -------------------------------------------------------------------------------- /Firmware/uart2io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/uart2io.c -------------------------------------------------------------------------------- /Firmware/uart2io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/uart2io.h -------------------------------------------------------------------------------- /Firmware/usb_lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/Firmware/usb_lang.h -------------------------------------------------------------------------------- /art/BP LCD v3a.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/BP LCD v3a.tif -------------------------------------------------------------------------------- /art/BP-LCD-v3a-600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/BP-LCD-v3a-600.jpg -------------------------------------------------------------------------------- /art/BP3.5c.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/BP3.5c.rar -------------------------------------------------------------------------------- /art/Bus Pirate Lcd Adapter v3a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/Bus Pirate Lcd Adapter v3a.zip -------------------------------------------------------------------------------- /art/BusPirate4.0-SU-model.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/BusPirate4.0-SU-model.rar -------------------------------------------------------------------------------- /art/BusPirate4c-SketchupModel-rendering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/BusPirate4c-SketchupModel-rendering.jpg -------------------------------------------------------------------------------- /art/BusPirate4c-SketchupModel.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/BusPirate4c-SketchupModel.rar -------------------------------------------------------------------------------- /art/BusPirateSSOP.3.5e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/BusPirateSSOP.3.5e.jpg -------------------------------------------------------------------------------- /art/BusPirateSSOP.3.5e.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/art/BusPirateSSOP.3.5e.rar -------------------------------------------------------------------------------- /documents/0001-Refcard-Added-empty-cell-in-CLK-row.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/0001-Refcard-Added-empty-cell-in-CLK-row.diff -------------------------------------------------------------------------------- /documents/AVRDude-buspirate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/AVRDude-buspirate.patch -------------------------------------------------------------------------------- /documents/bp-sheetsheet-safe-GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/bp-sheetsheet-safe-GPL.txt -------------------------------------------------------------------------------- /documents/bp-sheetsheet-safe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/bp-sheetsheet-safe.svg -------------------------------------------------------------------------------- /documents/buspirate_refcard-v2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/buspirate_refcard-v2.tex -------------------------------------------------------------------------------- /documents/buspirate_refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/buspirate_refcard.pdf -------------------------------------------------------------------------------- /documents/buspirate_refcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/buspirate_refcard.png -------------------------------------------------------------------------------- /documents/buspirate_refcard.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/buspirate_refcard.tex -------------------------------------------------------------------------------- /documents/openocd-0.3.0-rc0-buspirate-v2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/openocd-0.3.0-rc0-buspirate-v2.diff -------------------------------------------------------------------------------- /documents/openocd-0.3.0-rc0-buspirate-v3.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/openocd-0.3.0-rc0-buspirate-v3.diff -------------------------------------------------------------------------------- /documents/overview450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/documents/overview450.png -------------------------------------------------------------------------------- /firmware-STK500v2/BusPirate-stk500.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/BusPirate-stk500.mcp -------------------------------------------------------------------------------- /firmware-STK500v2/BusPirate-stk500.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/BusPirate-stk500.mcs -------------------------------------------------------------------------------- /firmware-STK500v2/BusPirate-stk500.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/BusPirate-stk500.mcw -------------------------------------------------------------------------------- /firmware-STK500v2/UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/UART.c -------------------------------------------------------------------------------- /firmware-STK500v2/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/UART.h -------------------------------------------------------------------------------- /firmware-STK500v2/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/base.c -------------------------------------------------------------------------------- /firmware-STK500v2/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/base.h -------------------------------------------------------------------------------- /firmware-STK500v2/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/command.h -------------------------------------------------------------------------------- /firmware-STK500v2/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/gpl.txt -------------------------------------------------------------------------------- /firmware-STK500v2/hardwarev1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/hardwarev1a.h -------------------------------------------------------------------------------- /firmware-STK500v2/hardwarev3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/hardwarev3.h -------------------------------------------------------------------------------- /firmware-STK500v2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/main.c -------------------------------------------------------------------------------- /firmware-STK500v2/p24FJ64GA002.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/p24FJ64GA002.gld -------------------------------------------------------------------------------- /firmware-STK500v2/redefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/redefines.h -------------------------------------------------------------------------------- /firmware-STK500v2/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/spi.c -------------------------------------------------------------------------------- /firmware-STK500v2/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-STK500v2/spi.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/#README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/#README.TXT -------------------------------------------------------------------------------- /firmware-XSVFplayer/UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/UART.c -------------------------------------------------------------------------------- /firmware-XSVFplayer/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/UART.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/base.c -------------------------------------------------------------------------------- /firmware-XSVFplayer/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/base.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/busPirate.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/busPirate.mcp -------------------------------------------------------------------------------- /firmware-XSVFplayer/busPirate.mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/busPirate.mcs -------------------------------------------------------------------------------- /firmware-XSVFplayer/busPirate.mcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/busPirate.mcw -------------------------------------------------------------------------------- /firmware-XSVFplayer/hardwarev0a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/hardwarev0a.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/hardwarev1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/hardwarev1a.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/hardwarev25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/hardwarev25.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/hardwarev2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/hardwarev2a.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/jtag.c -------------------------------------------------------------------------------- /firmware-XSVFplayer/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/jtag.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/jtag/lenval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/jtag/lenval.c -------------------------------------------------------------------------------- /firmware-XSVFplayer/jtag/lenval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/jtag/lenval.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/jtag/micro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/jtag/micro.c -------------------------------------------------------------------------------- /firmware-XSVFplayer/jtag/micro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/jtag/micro.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/jtag/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/jtag/ports.c -------------------------------------------------------------------------------- /firmware-XSVFplayer/jtag/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/jtag/ports.h -------------------------------------------------------------------------------- /firmware-XSVFplayer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/main.c -------------------------------------------------------------------------------- /firmware-XSVFplayer/p24FJ64GA002.gld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/firmware-XSVFplayer/p24FJ64GA002.gld -------------------------------------------------------------------------------- /hardware-other/3EEPROM/24AAxx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/3EEPROM/24AAxx.txt -------------------------------------------------------------------------------- /hardware-other/3EEPROM/25AAxx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/3EEPROM/25AAxx.txt -------------------------------------------------------------------------------- /hardware-other/3EEPROM/3EEPROM.v1.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/3EEPROM/3EEPROM.v1.brd -------------------------------------------------------------------------------- /hardware-other/3EEPROM/3EEPROM.v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/3EEPROM/3EEPROM.v1.jpg -------------------------------------------------------------------------------- /hardware-other/3EEPROM/3EEPROM.v1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/3EEPROM/3EEPROM.v1.sch -------------------------------------------------------------------------------- /hardware-other/3EEPROM/3EEPROM.v2.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/3EEPROM/3EEPROM.v2.brd -------------------------------------------------------------------------------- /hardware-other/3EEPROM/3EEPROM.v2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/3EEPROM/3EEPROM.v2.sch -------------------------------------------------------------------------------- /hardware-other/3EEPROM/DS2431.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/3EEPROM/DS2431.txt -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCD/44780-LCD-v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCD/44780-LCD-v1.jpg -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCD/44780_LCD-v1.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCD/44780_LCD-v1.brd -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCD/44780_LCD-v1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCD/44780_LCD-v1.sch -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCD/HD44780.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCD/HD44780.txt -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCD/lcd-hd44780.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCD/lcd-hd44780.lbr -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP-LCDv2-CCT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP-LCDv2-CCT.png -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter-history.txt -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2.brd -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2.sch -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2a.brd -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2a.sch -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.brd -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.brd.png -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.htm -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.sch -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.sch.png -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.wik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.wik -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2b.xls -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2c.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2c.brd -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2c.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v2c.sch -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v3-BOM.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v3-BOM.xls -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v3.brd -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/BP.LCDadapter.v3.sch -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/bom.csv -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/bp-lcdv2-brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/bp-lcdv2-brd.png -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/female.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/female.jpg -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/lcdv2a-BOM.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/lcdv2a-BOM.xls -------------------------------------------------------------------------------- /hardware-other/BPv3-HD44780_LCDv2/male.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv3-HD44780_LCDv2/male.jpg -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-LCDv2a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-LCDv2a.brd -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-LCDv3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-LCDv3.brd -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-LCDv3.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-LCDv3.brd.png -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-LCDv3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-LCDv3.sch -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-LCDv3.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-LCDv3.sch.png -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4-gerber.zip -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4.brd -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4.brd.png -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4.sch -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCD.v4.sch.png -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCDv1.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCDv1.brd -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCDv1.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCDv1.brd.png -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCDv1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCDv1.sch -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCDv1.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4-PassiveLCDv1.sch.png -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b-gerber.zip -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b.brd -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b.brd.png -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b.sch -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/BPv4LCDadapter.v4b.sch.png -------------------------------------------------------------------------------- /hardware-other/BPv4-HD44780_LCD/Bpv4-LCDv2a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/BPv4-HD44780_LCD/Bpv4-LCDv2a.sch -------------------------------------------------------------------------------- /hardware-other/LIN/LIN-MCP2021-v1a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/LIN/LIN-MCP2021-v1a.brd -------------------------------------------------------------------------------- /hardware-other/LIN/LIN-MCP2021-v1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/LIN/LIN-MCP2021-v1a.png -------------------------------------------------------------------------------- /hardware-other/LIN/LIN-MCP2021-v1a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/LIN/LIN-MCP2021-v1a.sch -------------------------------------------------------------------------------- /hardware-other/MIDI/MIDI-v1a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/MIDI/MIDI-v1a.brd -------------------------------------------------------------------------------- /hardware-other/MIDI/MIDI-v1a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/MIDI/MIDI-v1a.sch -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp-hvp-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp-hvp-back.jpg -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp-hvp-bom.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp-hvp-bom.xls -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp-hvp-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp-hvp-front.jpg -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v1a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v1a.brd -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v1a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v1a.sch -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v1b.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v1b.brd -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v1b.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v1b.sch -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v1c.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v1c.brd -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v1c.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v1c.sch -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v2.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v2.brd -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v2.sch -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v3.brd -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v3.gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v3.gerbers.zip -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v3.sch -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v4.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v4.brd -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v4.gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v4.gerbers.zip -------------------------------------------------------------------------------- /hardware-other/PiratePICprog/bp_pic_programmer_v4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/PiratePICprog/bp_pic_programmer_v4.sch -------------------------------------------------------------------------------- /hardware-other/SMPS/BusPirate-SMPS-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/SMPS/BusPirate-SMPS-gerbers.zip -------------------------------------------------------------------------------- /hardware-other/SMPS/BusPirate-SMPS.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/SMPS/BusPirate-SMPS.brd -------------------------------------------------------------------------------- /hardware-other/SMPS/BusPirate-SMPS.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/SMPS/BusPirate-SMPS.brd.png -------------------------------------------------------------------------------- /hardware-other/SMPS/BusPirate-SMPS.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/SMPS/BusPirate-SMPS.htm -------------------------------------------------------------------------------- /hardware-other/SMPS/BusPirate-SMPS.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/SMPS/BusPirate-SMPS.sch -------------------------------------------------------------------------------- /hardware-other/SMPS/BusPirate-SMPS.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/SMPS/BusPirate-SMPS.sch.png -------------------------------------------------------------------------------- /hardware-other/demos/24AA02E48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/demos/24AA02E48.txt -------------------------------------------------------------------------------- /hardware-other/demos/AT45DB041D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/demos/AT45DB041D.txt -------------------------------------------------------------------------------- /hardware-other/demos/BpMagstripe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/demos/BpMagstripe.zip -------------------------------------------------------------------------------- /hardware-other/demos/DS1307.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/demos/DS1307.txt -------------------------------------------------------------------------------- /hardware-other/demos/HMC6352.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/demos/HMC6352.txt -------------------------------------------------------------------------------- /hardware-other/demos/SLE4442.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/demos/SLE4442.txt -------------------------------------------------------------------------------- /hardware-other/demos/Sure-LEDmatrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware-other/demos/Sure-LEDmatrix.txt -------------------------------------------------------------------------------- /hardware/BusPirate-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/BusPirate-history.txt -------------------------------------------------------------------------------- /hardware/COPYING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/COPYING.TXT -------------------------------------------------------------------------------- /hardware/v0a/BusPirate-24Fv0a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v0a/BusPirate-24Fv0a.brd -------------------------------------------------------------------------------- /hardware/v0a/BusPirate-24Fv0a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v0a/BusPirate-24Fv0a.sch -------------------------------------------------------------------------------- /hardware/v0a/brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v0a/brd.png -------------------------------------------------------------------------------- /hardware/v0a/cct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v0a/cct.png -------------------------------------------------------------------------------- /hardware/v1a/BusPirate-24Fv1a.final.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v1a/BusPirate-24Fv1a.final.brd -------------------------------------------------------------------------------- /hardware/v1a/BusPirate-24Fv1a.final.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v1a/BusPirate-24Fv1a.final.sch -------------------------------------------------------------------------------- /hardware/v1a/SOT223-6.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v1a/SOT223-6.lbr -------------------------------------------------------------------------------- /hardware/v1a/brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v1a/brd.png -------------------------------------------------------------------------------- /hardware/v1a/cct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v1a/cct.png -------------------------------------------------------------------------------- /hardware/v1a/linear-technology-LTC2640.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v1a/linear-technology-LTC2640.lbr -------------------------------------------------------------------------------- /hardware/v1a/parts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v1a/parts.html -------------------------------------------------------------------------------- /hardware/v2a/BusPirate-v2a-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2a/BusPirate-v2a-front.jpg -------------------------------------------------------------------------------- /hardware/v2a/BusPirate-v2a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2a/BusPirate-v2a.brd -------------------------------------------------------------------------------- /hardware/v2a/BusPirate-v2a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2a/BusPirate-v2a.sch -------------------------------------------------------------------------------- /hardware/v2a/brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2a/brd.png -------------------------------------------------------------------------------- /hardware/v2a/cct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2a/cct.png -------------------------------------------------------------------------------- /hardware/v2a/v2a-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2a/v2a-gerbers.zip -------------------------------------------------------------------------------- /hardware/v2go/BusPirate-v25.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2go/BusPirate-v25.brd -------------------------------------------------------------------------------- /hardware/v2go/BusPirate-v25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2go/BusPirate-v25.jpg -------------------------------------------------------------------------------- /hardware/v2go/BusPirate-v25.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2go/BusPirate-v25.sch -------------------------------------------------------------------------------- /hardware/v2go/brd.25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2go/brd.25.png -------------------------------------------------------------------------------- /hardware/v2go/cct25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2go/cct25.png -------------------------------------------------------------------------------- /hardware/v2go/v25gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v2go/v25gerbers.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SOIC-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SOIC-gerber.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SOIC.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SOIC.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SOIC.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SOIC.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SSOP-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SSOP-gerber.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SSOP.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SSOP.brd.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SSOP.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SSOP.htm -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-SSOP.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-SSOP.sch.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5-partlist.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5-partlist.xls -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5a-SOIC-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5a-SOIC-gerber.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5a-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5a-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5a-SSOP.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5a-SSOP.brd.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5a-SSOP.gerbers.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5a-SSOP.gerbers.rar -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5a-SSOP.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5a-SSOP.htm -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5a-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5a-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5a-SSOP.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5a-SSOP.sch.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5a-SSOP.wik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5a-SSOP.wik -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5b-SSOP-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5b-SSOP-gerber.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5b-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5b-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5b-SSOP.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5b-SSOP.brd.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5b-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5b-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5b-SSOP.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5b-SSOP.sch.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5c-SSOP-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5c-SSOP-gerbers.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5c-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5c-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5c-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5c-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5d-SSOP-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5d-SSOP-gerbers.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5d-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5d-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5d-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5d-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5e-SSOP-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5e-SSOP-gerbers.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5e-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5e-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPirate-v3.5e-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPirate-v3.5e-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5-SOIC.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5-SOIC.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5-SOIC.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5-SOIC.brd.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5-SOIC.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5-SOIC.htm -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5-SOIC.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5-SOIC.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5-SOIC.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5-SOIC.sch.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5a-SOIC.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5a-SOIC.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5a-SOIC.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5a-SOIC.brd.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5a-SOIC.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5a-SOIC.htm -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5a-SOIC.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5a-SOIC.sch -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5a-SOIC.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5a-SOIC.sch.png -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5c-SOIC-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5c-SOIC-gerbers.zip -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5c-SOIC.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5c-SOIC.brd -------------------------------------------------------------------------------- /hardware/v3.5/BusPiratev3.5c-SOIC.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.5/BusPiratev3.5c-SOIC.sch -------------------------------------------------------------------------------- /hardware/v3.6/BusPirate-v3.6-SSOP-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.6/BusPirate-v3.6-SSOP-gerbers.zip -------------------------------------------------------------------------------- /hardware/v3.6/BusPirate-v3.6-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.6/BusPirate-v3.6-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.6/BusPirate-v3.6-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.6/BusPirate-v3.6-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.6/BusPirate-v3.6-partlist.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.6/BusPirate-v3.6-partlist.xls -------------------------------------------------------------------------------- /hardware/v3.6/BusPirate-v3.6_partlist.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.6/BusPirate-v3.6_partlist.xls -------------------------------------------------------------------------------- /hardware/v3.6/BusPirate-v3.6a-SSOP-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.6/BusPirate-v3.6a-SSOP-gerber.zip -------------------------------------------------------------------------------- /hardware/v3.6/BusPirate-v3.6a-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.6/BusPirate-v3.6a-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.6/BusPirate-v3.6a-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.6/BusPirate-v3.6a-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.8/BusPirate-v3.8-SSOP-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.8/BusPirate-v3.8-SSOP-gerber.zip -------------------------------------------------------------------------------- /hardware/v3.8/BusPirate-v3.8-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.8/BusPirate-v3.8-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.8/BusPirate-v3.8-SSOP.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.8/BusPirate-v3.8-SSOP.brd.png -------------------------------------------------------------------------------- /hardware/v3.8/BusPirate-v3.8-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.8/BusPirate-v3.8-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.8/BusPirate-v3.8-SSOP.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.8/BusPirate-v3.8-SSOP.sch.png -------------------------------------------------------------------------------- /hardware/v3.8a/BusPirate-v3.8a-SSOP-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.8a/BusPirate-v3.8a-SSOP-gerber.zip -------------------------------------------------------------------------------- /hardware/v3.8a/BusPirate-v3.8a-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.8a/BusPirate-v3.8a-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.8a/BusPirate-v3.8a-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.8a/BusPirate-v3.8a-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.9/BusPirate-v3.9-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/BusPirate-v3.9-SSOP.brd -------------------------------------------------------------------------------- /hardware/v3.9/BusPirate-v3.9-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/BusPirate-v3.9-SSOP.sch -------------------------------------------------------------------------------- /hardware/v3.9/BusPirate-v3.9-SSOP.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/BusPirate-v3.9-SSOP.xlsx -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GBL -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GBO -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GBP -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GBS -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GML -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GTL -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GTO -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GTP -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.GTS -------------------------------------------------------------------------------- /hardware/v3.9/gerber/BusPirate-v3.9-SSOP.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3.9/gerber/BusPirate-v3.9-SSOP.TXT -------------------------------------------------------------------------------- /hardware/v3/BusPirate-v3a-final.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/BusPirate-v3a-final.brd -------------------------------------------------------------------------------- /hardware/v3/BusPirate-v3a-final.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/BusPirate-v3a-final.sch -------------------------------------------------------------------------------- /hardware/v3/BusPirate-v3b.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/BusPirate-v3b.brd -------------------------------------------------------------------------------- /hardware/v3/BusPirate-v3b.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/BusPirate-v3b.sch -------------------------------------------------------------------------------- /hardware/v3/brd-v3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/brd-v3a.png -------------------------------------------------------------------------------- /hardware/v3/brd-v3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/brd-v3b.png -------------------------------------------------------------------------------- /hardware/v3/cct-v3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/cct-v3b.png -------------------------------------------------------------------------------- /hardware/v3/microBusPirate-v3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/microBusPirate-v3.brd -------------------------------------------------------------------------------- /hardware/v3/microBusPirate-v3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v3/microBusPirate-v3.sch -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4-partlist.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4-partlist.xls -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4.brd -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4.brd.png -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4.htm -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4.sch -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4.sch.png -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4a-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4a-gerbers.zip -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4a.brd -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4a.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4a.brd.png -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4a.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4a.htm -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4a.sch -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4a.sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4a.sch.png -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4b-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4b-gerbers.zip -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4b.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4b.brd -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4b.gerbers.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4b.gerbers.rar -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4b.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4b.sch -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4c-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4c-gerbers.zip -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4c.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4c.brd -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4c.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4c.sch -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4d.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4d.brd -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4d.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4d.brd.png -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4d.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4d.sch -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4e-gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4e-gerber.zip -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4e.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4e.brd -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4e.brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4e.brd.png -------------------------------------------------------------------------------- /hardware/v4/BusPirate-v4e.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v4/BusPirate-v4e.sch -------------------------------------------------------------------------------- /hardware/v5.0/tests/v5_with_China_USB/BusPirate-v5.0-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v5.0/tests/v5_with_China_USB/BusPirate-v5.0-SSOP.brd -------------------------------------------------------------------------------- /hardware/v5.0/tests/v5_with_China_USB/BusPirate-v5.0-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v5.0/tests/v5_with_China_USB/BusPirate-v5.0-SSOP.sch -------------------------------------------------------------------------------- /hardware/v5.0/tests/v5_with_MOLEX_USB/BusPirate-v5.0-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v5.0/tests/v5_with_MOLEX_USB/BusPirate-v5.0-SSOP.brd -------------------------------------------------------------------------------- /hardware/v5.0/tests/v5_with_MOLEX_USB/BusPirate-v5.0-SSOP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v5.0/tests/v5_with_MOLEX_USB/BusPirate-v5.0-SSOP.csv -------------------------------------------------------------------------------- /hardware/v5.0/tests/v5_with_MOLEX_USB/BusPirate-v5.0-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/hardware/v5.0/tests/v5_with_MOLEX_USB/BusPirate-v5.0-SSOP.sch -------------------------------------------------------------------------------- /inf/mchpcdc.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/inf/mchpcdc.cat -------------------------------------------------------------------------------- /inf/mchpcdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/inf/mchpcdc.inf -------------------------------------------------------------------------------- /manufacturing_resources/v3.5/firmware_dump/COPYING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v3.5/firmware_dump/COPYING.TXT -------------------------------------------------------------------------------- /manufacturing_resources/v3.5/gerbers/BusPirate-v3.5-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v3.5/gerbers/BusPirate-v3.5-SSOP.brd -------------------------------------------------------------------------------- /manufacturing_resources/v3.5/gerbers/COPYING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v3.5/gerbers/COPYING.TXT -------------------------------------------------------------------------------- /manufacturing_resources/v3.5/sales_page/bv35sales.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v3.5/sales_page/bv35sales.txt -------------------------------------------------------------------------------- /manufacturing_resources/v3.5/test_plan/testplan.txt: -------------------------------------------------------------------------------- 1 | http://dangerousprototypes.com/docs/Self-test_guide -------------------------------------------------------------------------------- /manufacturing_resources/v3.6/firmware_dump/COPYING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v3.6/firmware_dump/COPYING.TXT -------------------------------------------------------------------------------- /manufacturing_resources/v3.6/sales_page/bv35sales.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v3.6/sales_page/bv35sales.txt -------------------------------------------------------------------------------- /manufacturing_resources/v3.6/test_plan/testplan.txt: -------------------------------------------------------------------------------- 1 | http://dangerousprototypes.com/docs/Self-test_guide -------------------------------------------------------------------------------- /manufacturing_resources/v4.0/bootloader-test/readme.txt: -------------------------------------------------------------------------------- 1 | http://dangerousprototypes.com/docs/Bus_Pirate_v4_firmware_updates -------------------------------------------------------------------------------- /manufacturing_resources/v4.0/bootloader-test/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v4.0/bootloader-test/test.bat -------------------------------------------------------------------------------- /manufacturing_resources/v4.0/inf/mchpcdc.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v4.0/inf/mchpcdc.cat -------------------------------------------------------------------------------- /manufacturing_resources/v4.0/inf/mchpcdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v4.0/inf/mchpcdc.inf -------------------------------------------------------------------------------- /manufacturing_resources/v4.0/sales_page/bpv4-salescopy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/manufacturing_resources/v4.0/sales_page/bpv4-salescopy.txt -------------------------------------------------------------------------------- /package/BPv1a-firmware/BPv1a-Bootloader-v4.4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/BPv1a-Bootloader-v4.4.hex -------------------------------------------------------------------------------- /package/BPv1a-firmware/BPv1a-Firmware-v5.10.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/BPv1a-Firmware-v5.10.hex -------------------------------------------------------------------------------- /package/BPv1a-firmware/BPv1a-Firmware-v5.9-extras.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/BPv1a-Firmware-v5.9-extras.hex -------------------------------------------------------------------------------- /package/BPv1a-firmware/BPv1a-STK500v2-v0b-hiz.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/BPv1a-STK500v2-v0b-hiz.hex -------------------------------------------------------------------------------- /package/BPv1a-firmware/BPv1a-STK500v2-v0b.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/BPv1a-STK500v2-v0b.hex -------------------------------------------------------------------------------- /package/BPv1a-firmware/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/README.TXT -------------------------------------------------------------------------------- /package/BPv1a-firmware/STK500v2-gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/STK500v2-gpl.txt -------------------------------------------------------------------------------- /package/BPv1a-firmware/v1a-REAME.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/v1a-REAME.TXT -------------------------------------------------------------------------------- /package/BPv1a-firmware/v4UPGRADES!!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/v4UPGRADES!!!.txt -------------------------------------------------------------------------------- /package/BPv1a-firmware/v4UPGRADES!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/v4UPGRADES!!.txt -------------------------------------------------------------------------------- /package/BPv1a-firmware/v4UPGRADES!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv1a-firmware/v4UPGRADES!.txt -------------------------------------------------------------------------------- /package/BPv3-firmware/BPv3-STK500v2-v6.0-hiz.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/BPv3-STK500v2-v6.0-hiz.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/BPv3-STK500v2-v6.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/BPv3-STK500v2-v6.0.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/BPv3-firmware-v6.2-r1981.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/BPv3-firmware-v6.2-r1981.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/BPv3-firmware-v6.3-r2088.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/BPv3-firmware-v6.3-r2088.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/BPv3-firmware-v6.3-r2151.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/BPv3-firmware-v6.3-r2151.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/BPv3-update-v6.2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/BPv3-update-v6.2.bat -------------------------------------------------------------------------------- /package/BPv3-firmware/DragDropUpdate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/DragDropUpdate.bat -------------------------------------------------------------------------------- /package/BPv3-firmware/GHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/GHelper.dll -------------------------------------------------------------------------------- /package/BPv3-firmware/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/README.TXT -------------------------------------------------------------------------------- /package/BPv3-firmware/STK500v2-gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/STK500v2-gpl.txt -------------------------------------------------------------------------------- /package/BPv3-firmware/bpv3-xsvf-vb.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/bpv3-xsvf-vb.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/ds30 Loader GUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/ds30 Loader GUI.exe -------------------------------------------------------------------------------- /package/BPv3-firmware/ds30 Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/ds30 Loader.dll -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/BPv3-Firmware-v5.10.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/BPv3-Firmware-v5.10.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/BPv3-Firmware-v5.9.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/BPv3-Firmware-v5.9.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/BPv3-STK500v2-v0b.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/BPv3-STK500v2-v0b.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/BPv3-frimware-v6.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/BPv3-frimware-v6.1.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/BPv3-frimware-v6.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/BPv3-frimware-v6.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/BPv3-update-v6.1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/BPv3-update-v6.1.bat -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/BPv3-update-v6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/BPv3-update-v6.bat -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/README.TXT -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/STK500v2-gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/STK500v2-gpl.txt -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/bpv3-BL44FW510-DUMP.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/bpv3-BL44FW510-DUMP.hex -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/v4UPGRADES!!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/v4UPGRADES!!!.txt -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/v4UPGRADES!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/v4UPGRADES!!.txt -------------------------------------------------------------------------------- /package/BPv3-firmware/old-versions/v4UPGRADES!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/old-versions/v4UPGRADES!.txt -------------------------------------------------------------------------------- /package/BPv3-firmware/pirate-loader-source/build-unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/pirate-loader-source/build-unix.sh -------------------------------------------------------------------------------- /package/BPv3-firmware/pirate-loader-source/build-win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/pirate-loader-source/build-win32.bat -------------------------------------------------------------------------------- /package/BPv3-firmware/pirate-loader-source/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/pirate-loader-source/makefile -------------------------------------------------------------------------------- /package/BPv3-firmware/pirate-loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/pirate-loader.exe -------------------------------------------------------------------------------- /package/BPv3-firmware/pirate-loader_lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/pirate-loader_lnx -------------------------------------------------------------------------------- /package/BPv3-firmware/pirate-loader_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/pirate-loader_mac -------------------------------------------------------------------------------- /package/BPv3-firmware/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/settings.xml -------------------------------------------------------------------------------- /package/BPv3-firmware/v4UPGRADES!!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv3-firmware/v4UPGRADES!!!.txt -------------------------------------------------------------------------------- /package/BPv4-firmware/BPv4-firmware-v6.2-r1981.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-firmware/BPv4-firmware-v6.2-r1981.hex -------------------------------------------------------------------------------- /package/BPv4-firmware/BPv4-firmware-v6.3-r2088.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-firmware/BPv4-firmware-v6.3-r2088.hex -------------------------------------------------------------------------------- /package/BPv4-firmware/BPv4-firmware-v6.3-r2151.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-firmware/BPv4-firmware-v6.3-r2151.hex -------------------------------------------------------------------------------- /package/BPv4-firmware/BPv4-frimware-v6.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-firmware/BPv4-frimware-v6.1.hex -------------------------------------------------------------------------------- /package/BPv4-firmware/BPv4-update-v6.1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-firmware/BPv4-update-v6.1.bat -------------------------------------------------------------------------------- /package/BPv4-firmware/BPv4-update-v6.2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-firmware/BPv4-update-v6.2.bat -------------------------------------------------------------------------------- /package/BPv4-firmware/pirate-loader-v4-source/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-firmware/pirate-loader-v4-source/makefile -------------------------------------------------------------------------------- /package/BPv4-firmware/pirate-loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-firmware/pirate-loader.exe -------------------------------------------------------------------------------- /package/BPv4-inf-driver/mchpcdc.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-inf-driver/mchpcdc.cat -------------------------------------------------------------------------------- /package/BPv4-inf-driver/mchpcdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/BPv4-inf-driver/mchpcdc.inf -------------------------------------------------------------------------------- /package/bootloader/BPv3-Bootloader-v4.4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/bootloader/BPv3-Bootloader-v4.4.hex -------------------------------------------------------------------------------- /package/bootloader/BPv4-bootloader-v1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/bootloader/BPv4-bootloader-v1.hex -------------------------------------------------------------------------------- /package/hardware/BPv3-LCDadapter-v2c.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BPv3-LCDadapter-v2c.brd -------------------------------------------------------------------------------- /package/hardware/BPv3-LCDadapter-v2c.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BPv3-LCDadapter-v2c.sch -------------------------------------------------------------------------------- /package/hardware/BPv3-PICprogrammer-v1c.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BPv3-PICprogrammer-v1c.brd -------------------------------------------------------------------------------- /package/hardware/BPv3-PICprogrammer-v1c.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BPv3-PICprogrammer-v1c.sch -------------------------------------------------------------------------------- /package/hardware/BusPirate-v3.5c-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v3.5c-SSOP.brd -------------------------------------------------------------------------------- /package/hardware/BusPirate-v3.5c-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v3.5c-SSOP.sch -------------------------------------------------------------------------------- /package/hardware/BusPirate-v3.6-SSOP-gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v3.6-SSOP-gerbers.zip -------------------------------------------------------------------------------- /package/hardware/BusPirate-v3.6-SSOP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v3.6-SSOP.brd -------------------------------------------------------------------------------- /package/hardware/BusPirate-v3.6-SSOP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v3.6-SSOP.sch -------------------------------------------------------------------------------- /package/hardware/BusPirate-v3.6-partlist.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v3.6-partlist.xls -------------------------------------------------------------------------------- /package/hardware/BusPirate-v3a-final.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v3a-final.brd -------------------------------------------------------------------------------- /package/hardware/BusPirate-v3a-final.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v3a-final.sch -------------------------------------------------------------------------------- /package/hardware/BusPirate-v4.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v4.brd -------------------------------------------------------------------------------- /package/hardware/BusPirate-v4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/hardware/BusPirate-v4.sch -------------------------------------------------------------------------------- /package/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/package/license.txt -------------------------------------------------------------------------------- /scripts/BPTestApp/TestFT232/ft232testapp0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPTestApp/TestFT232/ft232testapp0.zip -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/BPXSVFplayer.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/BPXSVFplayer.cbp -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/BPXSVFplayer.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/BPXSVFplayer.depend -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/BPXSVFplayer.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/BPXSVFplayer.layout -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/BPXSVFplayer_build_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/BPXSVFplayer_build_log.html -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/Makefile -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/ReadMe.txt -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/hp/mergexsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/hp/mergexsvf -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/hp/svf2xsvf502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/hp/svf2xsvf502 -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/lin/mergexsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/lin/mergexsvf -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/lin/svf2xsvf502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/lin/svf2xsvf502 -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/nt/mergexsvf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/nt/mergexsvf.exe -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/nt/svf2XSVF.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/nt/svf2XSVF.bat -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/nt/svf2xsvf502.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/nt/svf2xsvf502.exe -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/sol/mergexsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/sol/mergexsvf -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/SVF2XSVF/sol/svf2xsvf502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/SVF2XSVF/sol/svf2xsvf502 -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/buspirate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/buspirate.c -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/buspirate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/buspirate.h -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/main.c -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/main.c.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/main.c.save -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/package/BPXSVFplayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/package/BPXSVFplayer -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/package/BPXSVFplayer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/package/BPXSVFplayer.exe -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/package/out.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/package/out.log -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/package/run.bat: -------------------------------------------------------------------------------- 1 | BPXSVFplayer -p com18 -f xc95test.xsvf -s 115200 -x -r >out.log 2 | 3 | pause 4 | -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/package/xc95test.xsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/package/xc95test.xsvf -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/serial.c -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/serial.h -------------------------------------------------------------------------------- /scripts/BPXSVFPlayer/xc95test.xsvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPXSVFPlayer/xc95test.xsvf -------------------------------------------------------------------------------- /scripts/BP_matrix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BP_matrix.pl -------------------------------------------------------------------------------- /scripts/BPbinmode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BPbinmode.pl -------------------------------------------------------------------------------- /scripts/BusPirateGUI/BusPirateGUI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/BusPirateGUI.pro -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/BPSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/BPSettings.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/BPSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/BPSettings.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/BinMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/BinMode.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/BinMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/BinMode.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Events.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Events.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/GUI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/GUI.pro -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Interface.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Interface_i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Interface_i2c.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Interface_jtag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Interface_jtag.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Interface_onewire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Interface_onewire.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Interface_power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Interface_power.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Interface_rawtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Interface_rawtext.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Interface_rawwire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Interface_rawwire.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/Interface_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/Interface_spi.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/MainWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/MainWin.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/MainWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/MainWin.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/configure.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/GUI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/GUI/main.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/ChangeLog -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/posix_qextserialport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/posix_qextserialport.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/qextserialbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/qextserialbase.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/qextserialbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/qextserialbase.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/qextserialenumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/qextserialenumerator.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/qextserialport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/qextserialport.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/qextserialport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/qextserialport.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/qextserialport.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/qextserialport.pro -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/win_qextserialport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/win_qextserialport.cpp -------------------------------------------------------------------------------- /scripts/BusPirateGUI/qextserialport/win_qextserialport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/qextserialport/win_qextserialport.h -------------------------------------------------------------------------------- /scripts/BusPirateGUI/test_hex_ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateGUI/test_hex_ascii.txt -------------------------------------------------------------------------------- /scripts/BusPirateRawCS/BusPirateRawCS/BusPirateRawCS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/BusPirateRawCS/BusPirateRawCS/BusPirateRawCS.sln -------------------------------------------------------------------------------- /scripts/HVPselftest/HVPselftest.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/HVPselftest/HVPselftest.cbp -------------------------------------------------------------------------------- /scripts/HVPselftest/HVPselftest.cbp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/HVPselftest/HVPselftest.cbp.save -------------------------------------------------------------------------------- /scripts/HVPselftest/HVPselftest.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/HVPselftest/HVPselftest.depend -------------------------------------------------------------------------------- /scripts/HVPselftest/HVPselftest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/HVPselftest/HVPselftest.exe -------------------------------------------------------------------------------- /scripts/HVPselftest/HVPselftest.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/HVPselftest/HVPselftest.layout -------------------------------------------------------------------------------- /scripts/HVPselftest/HVPselftest.layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/HVPselftest/HVPselftest.layout.save -------------------------------------------------------------------------------- /scripts/HVPselftest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/HVPselftest/main.c -------------------------------------------------------------------------------- /scripts/HVPselftest/main.c.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/HVPselftest/main.c.save -------------------------------------------------------------------------------- /scripts/HVPselftest/run.bat: -------------------------------------------------------------------------------- 1 | HVPselftest -p com3 -s 115200 2 | pause -------------------------------------------------------------------------------- /scripts/I2CEEPROMWIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/I2CEEPROMWIN.c -------------------------------------------------------------------------------- /scripts/P24qp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/P24qp.py -------------------------------------------------------------------------------- /scripts/SPIeeprom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/SPIeeprom.pl -------------------------------------------------------------------------------- /scripts/oscilloscope/oscope_v1.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/oscilloscope/oscope_v1.2.py -------------------------------------------------------------------------------- /scripts/powertools/BP_MMA_Selftest/BP_MMA_Selftest.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/BP_MMA_Selftest/BP_MMA_Selftest.cbp -------------------------------------------------------------------------------- /scripts/powertools/BP_MMA_Selftest/BP_MMA_Selftest.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/BP_MMA_Selftest/BP_MMA_Selftest.depend -------------------------------------------------------------------------------- /scripts/powertools/BP_MMA_Selftest/BP_MMA_Selftest.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/BP_MMA_Selftest/BP_MMA_Selftest.layout -------------------------------------------------------------------------------- /scripts/powertools/BP_MMA_Selftest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/BP_MMA_Selftest/main.c -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/HVPselftest.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/HVPselftest/HVPselftest.cbp -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/HVPselftest.cbp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/HVPselftest/HVPselftest.cbp.save -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/HVPselftest.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/HVPselftest/HVPselftest.depend -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/HVPselftest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/HVPselftest/HVPselftest.exe -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/HVPselftest.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/HVPselftest/HVPselftest.layout -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/HVPselftest.layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/HVPselftest/HVPselftest.layout.save -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/HVPselftest/main.c -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/main.c.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/HVPselftest/main.c.save -------------------------------------------------------------------------------- /scripts/powertools/HVPselftest/run.bat: -------------------------------------------------------------------------------- 1 | HVPselftest -p com6 -s 115200 2 | pause -------------------------------------------------------------------------------- /scripts/powertools/LCDv2-tester/LCDadapter-test.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/LCDv2-tester/LCDadapter-test.cbp -------------------------------------------------------------------------------- /scripts/powertools/LCDv2-tester/LCDadapter-test.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/LCDv2-tester/LCDadapter-test.depend -------------------------------------------------------------------------------- /scripts/powertools/LCDv2-tester/LCDadapter-test.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/LCDv2-tester/LCDadapter-test.layout -------------------------------------------------------------------------------- /scripts/powertools/LCDv2-tester/lcdtest.bat: -------------------------------------------------------------------------------- 1 | lcdtest -d COM3 2 | pause -------------------------------------------------------------------------------- /scripts/powertools/LCDv2-tester/lcdtest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/LCDv2-tester/lcdtest.exe -------------------------------------------------------------------------------- /scripts/powertools/LCDv2-tester/main-text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/LCDv2-tester/main-text.c -------------------------------------------------------------------------------- /scripts/powertools/LCDv2-tester/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/LCDv2-tester/main.c -------------------------------------------------------------------------------- /scripts/powertools/LCDv2-tester/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/LCDv2-tester/readme.txt -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/SPIsniffer.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/SPIsniffer.cbp -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/SPIsniffer.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/SPIsniffer.depend -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/SPIsniffer.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/SPIsniffer.layout -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/SPIsniffer.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/SPIsniffer.workspace -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/linux-version/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/linux-version/Makefile -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/linux-version/SPIsniffer.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/linux-version/SPIsniffer.cbp -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/linux-version/buspirate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/linux-version/buspirate.c -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/linux-version/buspirate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/linux-version/buspirate.h -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/linux-version/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/linux-version/main.c -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/linux-version/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/linux-version/serial.c -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/linux-version/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/linux-version/serial.h -------------------------------------------------------------------------------- /scripts/powertools/SPISniffer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPISniffer/main.c -------------------------------------------------------------------------------- /scripts/powertools/SPIsniffer.bat: -------------------------------------------------------------------------------- 1 | SPIsniffer -d COM3 2 | pause -------------------------------------------------------------------------------- /scripts/powertools/SPIsniffer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/SPIsniffer.exe -------------------------------------------------------------------------------- /scripts/powertools/framework/buspirate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/framework/buspirate.c -------------------------------------------------------------------------------- /scripts/powertools/framework/buspirate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/framework/buspirate.h -------------------------------------------------------------------------------- /scripts/powertools/framework/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/framework/serial.c -------------------------------------------------------------------------------- /scripts/powertools/framework/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/framework/serial.h -------------------------------------------------------------------------------- /scripts/powertools/self-test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/self-test/main.c -------------------------------------------------------------------------------- /scripts/powertools/self-test/selftest.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/self-test/selftest.cbp -------------------------------------------------------------------------------- /scripts/powertools/self-test/selftest.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/self-test/selftest.depend -------------------------------------------------------------------------------- /scripts/powertools/self-test/selftest.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/self-test/selftest.layout -------------------------------------------------------------------------------- /scripts/powertools/selftest.bat: -------------------------------------------------------------------------------- 1 | selftest -d COM5 2 | pause -------------------------------------------------------------------------------- /scripts/powertools/selftest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/powertools/selftest.exe -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/93C66.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/93C66.sh -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/MicroWire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/MicroWire.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/contrib/UART.py.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/contrib/UART.py.diff -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/contrib/diff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/contrib/diff.diff -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/i2c-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/i2c-test.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/noritake-bitmap-display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/noritake-bitmap-display.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/1wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/1wire.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/BitBang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/BitBang.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/I2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/I2C.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/I2Chigh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/I2Chigh.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/RAW_WIRE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/RAW_WIRE.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/SPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/SPI.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/UART.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/UART.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/__init__.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/pyBusPirateLite/rawwire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/pyBusPirateLite/rawwire.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/shtxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/shtxx.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/spi_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/spi_test.py -------------------------------------------------------------------------------- /scripts/pyBusPirateLite/thermometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/pyBusPirateLite/thermometer.py -------------------------------------------------------------------------------- /scripts/selftest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/selftest.pl -------------------------------------------------------------------------------- /scripts/version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DangerousPrototypes/Bus_Pirate/HEAD/scripts/version.pl --------------------------------------------------------------------------------