├── .gitignore ├── .gitmodules ├── README.md ├── ScratchMonkey.avrsackproj ├── ScratchMonkey ├── SMoCommand.cpp ├── SMoCommand.h ├── SMoConfig.h ├── SMoDebug.cpp ├── SMoDebug.h ├── SMoGeneral.cpp ├── SMoGeneral.h ├── SMoHVPP.cpp ├── SMoHVPP.h ├── SMoHVSP.cpp ├── SMoHVSP.h ├── SMoHWIF.h ├── SMoHWIF_Debug.h ├── SMoHWIF_HV.h ├── SMoHWIF_HVPP.h ├── SMoHWIF_HVSP.h ├── SMoHWIF_ISP.h ├── SMoHWIF_Leonardo.h ├── SMoHWIF_Mega.h ├── SMoHWIF_Port.h ├── SMoHWIF_Standard.h ├── SMoHWIF_Status.h ├── SMoHWIF_TPI.h ├── SMoISP.cpp ├── SMoISP.h ├── SMoTPI.cpp ├── SMoTPI.h ├── ScratchMonkey.ino └── stk_proto.h ├── Tests ├── .gitignore ├── HVPPConfig │ ├── HVPPConfig.avrsackproj │ └── HVPPConfig.ino ├── Makefile └── timings.txt ├── Tools ├── RunTest ├── dipper ├── hexer └── updateTargets ├── avrdude.patch ├── circuits ├── arduino_isp.fzz ├── arduino_prog_hvpp.fzz ├── arduino_prog_hvsp.fzz ├── arduino_prog_isp.fzz ├── digispark_hvsp.fzz ├── external.sch ├── maxim.sch ├── micro_isp.fzz ├── micro_prog_hvpp.fzz ├── micro_prog_hvsp.fzz └── micro_prog_isp.fzz ├── doc ├── Connection.html ├── GettingStarted.html ├── HVPP.html ├── HVSP.html ├── HighVoltage.html ├── ISP.html ├── Overview.html ├── TPI.html ├── Tested.html ├── Troubleshooting.html ├── img │ ├── atmega1284_hvpp.svg │ ├── atmega1284_isp.svg │ ├── atmega328_hvpp.svg │ ├── atmega328_isp.svg │ ├── attiny10_tpi.svg │ ├── attiny1634_hvpp.svg │ ├── attiny1634_isp.svg │ ├── attiny4313_hvpp.svg │ ├── attiny4313_isp.svg │ ├── attiny84_hvsp.svg │ ├── attiny84_isp.svg │ ├── attiny85_hvsp.svg │ ├── attiny85_isp.svg │ ├── attiny861_hvpp.svg │ ├── attiny861_isp.svg │ ├── digispark.svg │ ├── digispark_hvsp.svg │ ├── external.png │ ├── icsp.svg │ ├── icsp_isp.svg │ ├── maxim.png │ ├── mega_isp.svg │ ├── mega_prog_hvpp.svg │ ├── mega_prog_hvsp.svg │ ├── mega_prog_isp.svg │ ├── mega_prog_tpi.svg │ ├── micro_isp.svg │ ├── micro_prog_hvpp.svg │ ├── micro_prog_hvsp.svg │ ├── micro_prog_isp.svg │ ├── micro_prog_tpi.svg │ ├── nano_isp.svg │ ├── nano_prog_hvpp.svg │ ├── nano_prog_hvsp.svg │ ├── nano_prog_isp.svg │ ├── nano_prog_tpi.svg │ ├── programmers.png │ ├── uno_isp.svg │ ├── uno_prog_hvpp.svg │ ├── uno_prog_hvsp.svg │ ├── uno_prog_isp.svg │ └── uno_prog_tpi.svg ├── index.html ├── manual.css ├── v1 │ ├── Connection.html │ ├── GettingStarted.html │ ├── HVPP.html │ ├── HVSP.html │ ├── HighVoltage.html │ ├── ISP.html │ ├── Overview.html │ ├── Tested.html │ ├── Troubleshooting.html │ ├── img │ │ ├── arduino_isp.svg │ │ ├── arduino_prog_hvpp.svg │ │ ├── arduino_prog_hvsp.svg │ │ ├── arduino_prog_isp.svg │ │ ├── atmega1284_hvpp.svg │ │ ├── atmega1284_isp.svg │ │ ├── atmega328_hvpp.svg │ │ ├── atmega328_isp.svg │ │ ├── attiny1634_hvpp.svg │ │ ├── attiny1634_isp.svg │ │ ├── attiny4313_hvpp.svg │ │ ├── attiny4313_isp.svg │ │ ├── attiny84_hvsp.svg │ │ ├── attiny84_isp.svg │ │ ├── attiny85_hvsp.svg │ │ ├── attiny85_isp.svg │ │ ├── attiny861_hvpp.svg │ │ ├── attiny861_isp.svg │ │ ├── digispark_hvsp.svg │ │ ├── external.png │ │ ├── icsp_isp.svg │ │ ├── maxim.png │ │ ├── micro_isp.png │ │ ├── micro_prog_hvpp.png │ │ ├── micro_prog_hvsp.png │ │ ├── micro_prog_isp.png │ │ └── programmers.png │ ├── index.html │ ├── manual.css │ └── wizard.js └── wizard.js ├── hardware └── scratchmonkey │ └── programmers.txt └── pinouts ├── Makefile ├── atmega1284.dip ├── atmega1284.hvpp ├── atmega1284.isp ├── atmega328.dip ├── atmega328.hvpp ├── atmega328.isp ├── attiny10.dip ├── attiny10.tpi ├── attiny1634.dip ├── attiny1634.hvpp ├── attiny1634.isp ├── attiny4313.dip ├── attiny4313.hvpp ├── attiny4313.isp ├── attiny84.dip ├── attiny84.hvsp ├── attiny84.isp ├── attiny85.dip ├── attiny85.hvsp ├── attiny85.isp ├── attiny861.dip ├── attiny861.hvpp ├── attiny861.isp ├── digispark.dip ├── digispark.hvsp ├── hvpp.proto ├── hvsp.proto ├── icsp.dip ├── icsp.isp ├── isp.proto ├── mega.dip ├── mega.isp ├── mega_prog.hvpp ├── mega_prog.hvsp ├── mega_prog.isp ├── mega_prog.tpi ├── micro.dip ├── micro.isp ├── micro_prog.hvpp ├── micro_prog.hvsp ├── micro_prog.isp ├── micro_prog.tpi ├── nano.dip ├── nano.isp ├── nano_prog.hvpp ├── nano_prog.hvsp ├── nano_prog.isp ├── nano_prog.tpi ├── tpi.proto ├── uno.dip ├── uno.isp ├── uno_prog.hvpp ├── uno_prog.hvsp ├── uno_prog.isp └── uno_prog.tpi /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/README.md -------------------------------------------------------------------------------- /ScratchMonkey.avrsackproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey.avrsackproj -------------------------------------------------------------------------------- /ScratchMonkey/SMoCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoCommand.cpp -------------------------------------------------------------------------------- /ScratchMonkey/SMoCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoCommand.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoConfig.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoDebug.cpp -------------------------------------------------------------------------------- /ScratchMonkey/SMoDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoDebug.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoGeneral.cpp -------------------------------------------------------------------------------- /ScratchMonkey/SMoGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoGeneral.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHVPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHVPP.cpp -------------------------------------------------------------------------------- /ScratchMonkey/SMoHVPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHVPP.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHVSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHVSP.cpp -------------------------------------------------------------------------------- /ScratchMonkey/SMoHVSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHVSP.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_Debug.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_HV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_HV.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_HVPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_HVPP.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_HVSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_HVSP.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_ISP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_ISP.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_Leonardo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_Leonardo.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_Mega.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_Mega.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_Port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_Port.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_Standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_Standard.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_Status.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoHWIF_TPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoHWIF_TPI.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoISP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoISP.cpp -------------------------------------------------------------------------------- /ScratchMonkey/SMoISP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoISP.h -------------------------------------------------------------------------------- /ScratchMonkey/SMoTPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoTPI.cpp -------------------------------------------------------------------------------- /ScratchMonkey/SMoTPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/SMoTPI.h -------------------------------------------------------------------------------- /ScratchMonkey/ScratchMonkey.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/ScratchMonkey.ino -------------------------------------------------------------------------------- /ScratchMonkey/stk_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/ScratchMonkey/stk_proto.h -------------------------------------------------------------------------------- /Tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.hex 2 | -------------------------------------------------------------------------------- /Tests/HVPPConfig/HVPPConfig.avrsackproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/Tests/HVPPConfig/HVPPConfig.avrsackproj -------------------------------------------------------------------------------- /Tests/HVPPConfig/HVPPConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/Tests/HVPPConfig/HVPPConfig.ino -------------------------------------------------------------------------------- /Tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/Tests/Makefile -------------------------------------------------------------------------------- /Tests/timings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/Tests/timings.txt -------------------------------------------------------------------------------- /Tools/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/Tools/RunTest -------------------------------------------------------------------------------- /Tools/dipper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/Tools/dipper -------------------------------------------------------------------------------- /Tools/hexer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/Tools/hexer -------------------------------------------------------------------------------- /Tools/updateTargets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/Tools/updateTargets -------------------------------------------------------------------------------- /avrdude.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/avrdude.patch -------------------------------------------------------------------------------- /circuits/arduino_isp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/arduino_isp.fzz -------------------------------------------------------------------------------- /circuits/arduino_prog_hvpp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/arduino_prog_hvpp.fzz -------------------------------------------------------------------------------- /circuits/arduino_prog_hvsp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/arduino_prog_hvsp.fzz -------------------------------------------------------------------------------- /circuits/arduino_prog_isp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/arduino_prog_isp.fzz -------------------------------------------------------------------------------- /circuits/digispark_hvsp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/digispark_hvsp.fzz -------------------------------------------------------------------------------- /circuits/external.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/external.sch -------------------------------------------------------------------------------- /circuits/maxim.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/maxim.sch -------------------------------------------------------------------------------- /circuits/micro_isp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/micro_isp.fzz -------------------------------------------------------------------------------- /circuits/micro_prog_hvpp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/micro_prog_hvpp.fzz -------------------------------------------------------------------------------- /circuits/micro_prog_hvsp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/micro_prog_hvsp.fzz -------------------------------------------------------------------------------- /circuits/micro_prog_isp.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/circuits/micro_prog_isp.fzz -------------------------------------------------------------------------------- /doc/Connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/Connection.html -------------------------------------------------------------------------------- /doc/GettingStarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/GettingStarted.html -------------------------------------------------------------------------------- /doc/HVPP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/HVPP.html -------------------------------------------------------------------------------- /doc/HVSP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/HVSP.html -------------------------------------------------------------------------------- /doc/HighVoltage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/HighVoltage.html -------------------------------------------------------------------------------- /doc/ISP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/ISP.html -------------------------------------------------------------------------------- /doc/Overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/Overview.html -------------------------------------------------------------------------------- /doc/TPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/TPI.html -------------------------------------------------------------------------------- /doc/Tested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/Tested.html -------------------------------------------------------------------------------- /doc/Troubleshooting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/Troubleshooting.html -------------------------------------------------------------------------------- /doc/img/atmega1284_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/atmega1284_hvpp.svg -------------------------------------------------------------------------------- /doc/img/atmega1284_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/atmega1284_isp.svg -------------------------------------------------------------------------------- /doc/img/atmega328_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/atmega328_hvpp.svg -------------------------------------------------------------------------------- /doc/img/atmega328_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/atmega328_isp.svg -------------------------------------------------------------------------------- /doc/img/attiny10_tpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny10_tpi.svg -------------------------------------------------------------------------------- /doc/img/attiny1634_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny1634_hvpp.svg -------------------------------------------------------------------------------- /doc/img/attiny1634_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny1634_isp.svg -------------------------------------------------------------------------------- /doc/img/attiny4313_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny4313_hvpp.svg -------------------------------------------------------------------------------- /doc/img/attiny4313_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny4313_isp.svg -------------------------------------------------------------------------------- /doc/img/attiny84_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny84_hvsp.svg -------------------------------------------------------------------------------- /doc/img/attiny84_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny84_isp.svg -------------------------------------------------------------------------------- /doc/img/attiny85_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny85_hvsp.svg -------------------------------------------------------------------------------- /doc/img/attiny85_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny85_isp.svg -------------------------------------------------------------------------------- /doc/img/attiny861_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny861_hvpp.svg -------------------------------------------------------------------------------- /doc/img/attiny861_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/attiny861_isp.svg -------------------------------------------------------------------------------- /doc/img/digispark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/digispark.svg -------------------------------------------------------------------------------- /doc/img/digispark_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/digispark_hvsp.svg -------------------------------------------------------------------------------- /doc/img/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/external.png -------------------------------------------------------------------------------- /doc/img/icsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/icsp.svg -------------------------------------------------------------------------------- /doc/img/icsp_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/icsp_isp.svg -------------------------------------------------------------------------------- /doc/img/maxim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/maxim.png -------------------------------------------------------------------------------- /doc/img/mega_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/mega_isp.svg -------------------------------------------------------------------------------- /doc/img/mega_prog_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/mega_prog_hvpp.svg -------------------------------------------------------------------------------- /doc/img/mega_prog_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/mega_prog_hvsp.svg -------------------------------------------------------------------------------- /doc/img/mega_prog_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/mega_prog_isp.svg -------------------------------------------------------------------------------- /doc/img/mega_prog_tpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/mega_prog_tpi.svg -------------------------------------------------------------------------------- /doc/img/micro_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/micro_isp.svg -------------------------------------------------------------------------------- /doc/img/micro_prog_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/micro_prog_hvpp.svg -------------------------------------------------------------------------------- /doc/img/micro_prog_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/micro_prog_hvsp.svg -------------------------------------------------------------------------------- /doc/img/micro_prog_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/micro_prog_isp.svg -------------------------------------------------------------------------------- /doc/img/micro_prog_tpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/micro_prog_tpi.svg -------------------------------------------------------------------------------- /doc/img/nano_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/nano_isp.svg -------------------------------------------------------------------------------- /doc/img/nano_prog_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/nano_prog_hvpp.svg -------------------------------------------------------------------------------- /doc/img/nano_prog_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/nano_prog_hvsp.svg -------------------------------------------------------------------------------- /doc/img/nano_prog_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/nano_prog_isp.svg -------------------------------------------------------------------------------- /doc/img/nano_prog_tpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/nano_prog_tpi.svg -------------------------------------------------------------------------------- /doc/img/programmers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/programmers.png -------------------------------------------------------------------------------- /doc/img/uno_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/uno_isp.svg -------------------------------------------------------------------------------- /doc/img/uno_prog_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/uno_prog_hvpp.svg -------------------------------------------------------------------------------- /doc/img/uno_prog_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/uno_prog_hvsp.svg -------------------------------------------------------------------------------- /doc/img/uno_prog_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/uno_prog_isp.svg -------------------------------------------------------------------------------- /doc/img/uno_prog_tpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/img/uno_prog_tpi.svg -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/manual.css -------------------------------------------------------------------------------- /doc/v1/Connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/Connection.html -------------------------------------------------------------------------------- /doc/v1/GettingStarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/GettingStarted.html -------------------------------------------------------------------------------- /doc/v1/HVPP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/HVPP.html -------------------------------------------------------------------------------- /doc/v1/HVSP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/HVSP.html -------------------------------------------------------------------------------- /doc/v1/HighVoltage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/HighVoltage.html -------------------------------------------------------------------------------- /doc/v1/ISP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/ISP.html -------------------------------------------------------------------------------- /doc/v1/Overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/Overview.html -------------------------------------------------------------------------------- /doc/v1/Tested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/Tested.html -------------------------------------------------------------------------------- /doc/v1/Troubleshooting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/Troubleshooting.html -------------------------------------------------------------------------------- /doc/v1/img/arduino_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/arduino_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/arduino_prog_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/arduino_prog_hvpp.svg -------------------------------------------------------------------------------- /doc/v1/img/arduino_prog_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/arduino_prog_hvsp.svg -------------------------------------------------------------------------------- /doc/v1/img/arduino_prog_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/arduino_prog_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/atmega1284_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/atmega1284_hvpp.svg -------------------------------------------------------------------------------- /doc/v1/img/atmega1284_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/atmega1284_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/atmega328_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/atmega328_hvpp.svg -------------------------------------------------------------------------------- /doc/v1/img/atmega328_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/atmega328_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny1634_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny1634_hvpp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny1634_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny1634_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny4313_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny4313_hvpp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny4313_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny4313_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny84_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny84_hvsp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny84_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny84_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny85_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny85_hvsp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny85_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny85_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny861_hvpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny861_hvpp.svg -------------------------------------------------------------------------------- /doc/v1/img/attiny861_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/attiny861_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/digispark_hvsp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/digispark_hvsp.svg -------------------------------------------------------------------------------- /doc/v1/img/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/external.png -------------------------------------------------------------------------------- /doc/v1/img/icsp_isp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/icsp_isp.svg -------------------------------------------------------------------------------- /doc/v1/img/maxim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/maxim.png -------------------------------------------------------------------------------- /doc/v1/img/micro_isp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/micro_isp.png -------------------------------------------------------------------------------- /doc/v1/img/micro_prog_hvpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/micro_prog_hvpp.png -------------------------------------------------------------------------------- /doc/v1/img/micro_prog_hvsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/micro_prog_hvsp.png -------------------------------------------------------------------------------- /doc/v1/img/micro_prog_isp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/micro_prog_isp.png -------------------------------------------------------------------------------- /doc/v1/img/programmers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/img/programmers.png -------------------------------------------------------------------------------- /doc/v1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/index.html -------------------------------------------------------------------------------- /doc/v1/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/manual.css -------------------------------------------------------------------------------- /doc/v1/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/v1/wizard.js -------------------------------------------------------------------------------- /doc/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/doc/wizard.js -------------------------------------------------------------------------------- /hardware/scratchmonkey/programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/hardware/scratchmonkey/programmers.txt -------------------------------------------------------------------------------- /pinouts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/Makefile -------------------------------------------------------------------------------- /pinouts/atmega1284.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/atmega1284.dip -------------------------------------------------------------------------------- /pinouts/atmega1284.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/atmega1284.hvpp -------------------------------------------------------------------------------- /pinouts/atmega1284.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/atmega1284.isp -------------------------------------------------------------------------------- /pinouts/atmega328.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/atmega328.dip -------------------------------------------------------------------------------- /pinouts/atmega328.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/atmega328.hvpp -------------------------------------------------------------------------------- /pinouts/atmega328.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/atmega328.isp -------------------------------------------------------------------------------- /pinouts/attiny10.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny10.dip -------------------------------------------------------------------------------- /pinouts/attiny10.tpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny10.tpi -------------------------------------------------------------------------------- /pinouts/attiny1634.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny1634.dip -------------------------------------------------------------------------------- /pinouts/attiny1634.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny1634.hvpp -------------------------------------------------------------------------------- /pinouts/attiny1634.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny1634.isp -------------------------------------------------------------------------------- /pinouts/attiny4313.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny4313.dip -------------------------------------------------------------------------------- /pinouts/attiny4313.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny4313.hvpp -------------------------------------------------------------------------------- /pinouts/attiny4313.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny4313.isp -------------------------------------------------------------------------------- /pinouts/attiny84.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny84.dip -------------------------------------------------------------------------------- /pinouts/attiny84.hvsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny84.hvsp -------------------------------------------------------------------------------- /pinouts/attiny84.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny84.isp -------------------------------------------------------------------------------- /pinouts/attiny85.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny85.dip -------------------------------------------------------------------------------- /pinouts/attiny85.hvsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny85.hvsp -------------------------------------------------------------------------------- /pinouts/attiny85.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny85.isp -------------------------------------------------------------------------------- /pinouts/attiny861.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny861.dip -------------------------------------------------------------------------------- /pinouts/attiny861.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny861.hvpp -------------------------------------------------------------------------------- /pinouts/attiny861.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/attiny861.isp -------------------------------------------------------------------------------- /pinouts/digispark.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/digispark.dip -------------------------------------------------------------------------------- /pinouts/digispark.hvsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/digispark.hvsp -------------------------------------------------------------------------------- /pinouts/hvpp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/hvpp.proto -------------------------------------------------------------------------------- /pinouts/hvsp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/hvsp.proto -------------------------------------------------------------------------------- /pinouts/icsp.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/icsp.dip -------------------------------------------------------------------------------- /pinouts/icsp.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/icsp.isp -------------------------------------------------------------------------------- /pinouts/isp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/isp.proto -------------------------------------------------------------------------------- /pinouts/mega.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/mega.dip -------------------------------------------------------------------------------- /pinouts/mega.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/mega.isp -------------------------------------------------------------------------------- /pinouts/mega_prog.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/mega_prog.hvpp -------------------------------------------------------------------------------- /pinouts/mega_prog.hvsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/mega_prog.hvsp -------------------------------------------------------------------------------- /pinouts/mega_prog.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/mega_prog.isp -------------------------------------------------------------------------------- /pinouts/mega_prog.tpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/mega_prog.tpi -------------------------------------------------------------------------------- /pinouts/micro.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/micro.dip -------------------------------------------------------------------------------- /pinouts/micro.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/micro.isp -------------------------------------------------------------------------------- /pinouts/micro_prog.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/micro_prog.hvpp -------------------------------------------------------------------------------- /pinouts/micro_prog.hvsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/micro_prog.hvsp -------------------------------------------------------------------------------- /pinouts/micro_prog.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/micro_prog.isp -------------------------------------------------------------------------------- /pinouts/micro_prog.tpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/micro_prog.tpi -------------------------------------------------------------------------------- /pinouts/nano.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/nano.dip -------------------------------------------------------------------------------- /pinouts/nano.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/nano.isp -------------------------------------------------------------------------------- /pinouts/nano_prog.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/nano_prog.hvpp -------------------------------------------------------------------------------- /pinouts/nano_prog.hvsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/nano_prog.hvsp -------------------------------------------------------------------------------- /pinouts/nano_prog.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/nano_prog.isp -------------------------------------------------------------------------------- /pinouts/nano_prog.tpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/nano_prog.tpi -------------------------------------------------------------------------------- /pinouts/tpi.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/tpi.proto -------------------------------------------------------------------------------- /pinouts/uno.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/uno.dip -------------------------------------------------------------------------------- /pinouts/uno.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/uno.isp -------------------------------------------------------------------------------- /pinouts/uno_prog.hvpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/uno_prog.hvpp -------------------------------------------------------------------------------- /pinouts/uno_prog.hvsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/uno_prog.hvsp -------------------------------------------------------------------------------- /pinouts/uno_prog.isp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/uno_prog.isp -------------------------------------------------------------------------------- /pinouts/uno_prog.tpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microtherion/ScratchMonkey/HEAD/pinouts/uno_prog.tpi --------------------------------------------------------------------------------