├── .gitignore ├── .travis.yml ├── AT89_prog └── AT89_prog.ino ├── LICENSE ├── README.md ├── at89overlord ├── .gitignore ├── README.md ├── at89overlord │ ├── __init__.py │ ├── at89comm.py │ └── at89runner.py ├── setup.cfg └── setup.py └── schematic ├── Socket_Arduino_Uno.3dshapes ├── Socket_header_Arduino_1x06.wings ├── Socket_header_Arduino_1x06.wrl ├── Socket_header_Arduino_1x08.wings ├── Socket_header_Arduino_1x08.wrl ├── Socket_header_Arduino_1x10.wings └── Socket_header_Arduino_1x10.wrl ├── Socket_Arduino_Uno.pretty ├── Arduino_1pin.kicad_mod ├── Socket_Strip_Arduino_1x06.kicad_mod ├── Socket_Strip_Arduino_1x08.kicad_mod └── Socket_Strip_Arduino_1x10.kicad_mod ├── schematic-cache.lib ├── schematic.pdf ├── schematic.pro ├── schematic.sch └── schematic.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/.travis.yml -------------------------------------------------------------------------------- /AT89_prog/AT89_prog.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/AT89_prog/AT89_prog.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/README.md -------------------------------------------------------------------------------- /at89overlord/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/at89overlord/.gitignore -------------------------------------------------------------------------------- /at89overlord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/at89overlord/README.md -------------------------------------------------------------------------------- /at89overlord/at89overlord/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /at89overlord/at89overlord/at89comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/at89overlord/at89overlord/at89comm.py -------------------------------------------------------------------------------- /at89overlord/at89overlord/at89runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/at89overlord/at89overlord/at89runner.py -------------------------------------------------------------------------------- /at89overlord/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/at89overlord/setup.cfg -------------------------------------------------------------------------------- /at89overlord/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/at89overlord/setup.py -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wings -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wrl -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wings -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wings -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wrl -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.pretty/Arduino_1pin.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.pretty/Arduino_1pin.kicad_mod -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x06.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x06.kicad_mod -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x08.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x08.kicad_mod -------------------------------------------------------------------------------- /schematic/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x10.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/Socket_Arduino_Uno.pretty/Socket_Strip_Arduino_1x10.kicad_mod -------------------------------------------------------------------------------- /schematic/schematic-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/schematic-cache.lib -------------------------------------------------------------------------------- /schematic/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/schematic.pdf -------------------------------------------------------------------------------- /schematic/schematic.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/schematic.pro -------------------------------------------------------------------------------- /schematic/schematic.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/schematic.sch -------------------------------------------------------------------------------- /schematic/schematic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrb5e3/AT89C2051_programmer/HEAD/schematic/schematic.xml --------------------------------------------------------------------------------