├── JTAG_pinout.png ├── LICENSE ├── README.md ├── doc ├── manual_servo_emu_v1_en_anon.pdf ├── manual_v1_en_anon.pdf └── manual_v1_fr_anon.pdf ├── logic ├── README.md ├── VBTVout.qpf ├── VBTVout_NTSC2.qsf ├── VBTVout_VGA2.qsf ├── VT_NTSC2.pof ├── VT_VGA2.pof ├── VT_ntsc2.v ├── VT_vga2.v ├── assignments.csv └── colors.png ├── pcb ├── vt_c.pdsprj ├── vt_c_BOM.csv ├── vt_c_GERBER.zip └── vt_c_schematic.png ├── photo.jpg ├── servo_emu ├── firmware │ ├── servo_emu.aps │ ├── servo_emu.aws │ ├── servo_emu.c │ ├── servo_emu.hex │ └── tl866_programmer │ │ ├── Makefile │ │ ├── Screenshot 2022-01-21 at 16.46.50.png │ │ ├── dep │ │ └── servo_emu.o.d │ │ ├── readme.txt │ │ ├── servo_emu.eep │ │ ├── servo_emu.elf │ │ ├── servo_emu.hex │ │ └── servo_emu.o └── pcb │ ├── servo_emu_GERBER.zip │ └── wiring.png └── tester ├── firmware ├── data.c ├── data.h ├── hw.c ├── hw.h ├── io.h ├── tester.aps ├── tester.aws ├── tester.c ├── tester.h ├── tester.hex ├── uart.c └── uart.h └── pcb ├── tester_GERBER.zip └── vt_tester_schematic.png /JTAG_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/JTAG_pinout.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/README.md -------------------------------------------------------------------------------- /doc/manual_servo_emu_v1_en_anon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/doc/manual_servo_emu_v1_en_anon.pdf -------------------------------------------------------------------------------- /doc/manual_v1_en_anon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/doc/manual_v1_en_anon.pdf -------------------------------------------------------------------------------- /doc/manual_v1_fr_anon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/doc/manual_v1_fr_anon.pdf -------------------------------------------------------------------------------- /logic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/README.md -------------------------------------------------------------------------------- /logic/VBTVout.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/VBTVout.qpf -------------------------------------------------------------------------------- /logic/VBTVout_NTSC2.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/VBTVout_NTSC2.qsf -------------------------------------------------------------------------------- /logic/VBTVout_VGA2.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/VBTVout_VGA2.qsf -------------------------------------------------------------------------------- /logic/VT_NTSC2.pof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/VT_NTSC2.pof -------------------------------------------------------------------------------- /logic/VT_VGA2.pof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/VT_VGA2.pof -------------------------------------------------------------------------------- /logic/VT_ntsc2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/VT_ntsc2.v -------------------------------------------------------------------------------- /logic/VT_vga2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/VT_vga2.v -------------------------------------------------------------------------------- /logic/assignments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/assignments.csv -------------------------------------------------------------------------------- /logic/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/logic/colors.png -------------------------------------------------------------------------------- /pcb/vt_c.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/pcb/vt_c.pdsprj -------------------------------------------------------------------------------- /pcb/vt_c_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/pcb/vt_c_BOM.csv -------------------------------------------------------------------------------- /pcb/vt_c_GERBER.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/pcb/vt_c_GERBER.zip -------------------------------------------------------------------------------- /pcb/vt_c_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/pcb/vt_c_schematic.png -------------------------------------------------------------------------------- /photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/photo.jpg -------------------------------------------------------------------------------- /servo_emu/firmware/servo_emu.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/servo_emu.aps -------------------------------------------------------------------------------- /servo_emu/firmware/servo_emu.aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/servo_emu.aws -------------------------------------------------------------------------------- /servo_emu/firmware/servo_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/servo_emu.c -------------------------------------------------------------------------------- /servo_emu/firmware/servo_emu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/servo_emu.hex -------------------------------------------------------------------------------- /servo_emu/firmware/tl866_programmer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/tl866_programmer/Makefile -------------------------------------------------------------------------------- /servo_emu/firmware/tl866_programmer/Screenshot 2022-01-21 at 16.46.50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/tl866_programmer/Screenshot 2022-01-21 at 16.46.50.png -------------------------------------------------------------------------------- /servo_emu/firmware/tl866_programmer/dep/servo_emu.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/tl866_programmer/dep/servo_emu.o.d -------------------------------------------------------------------------------- /servo_emu/firmware/tl866_programmer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/tl866_programmer/readme.txt -------------------------------------------------------------------------------- /servo_emu/firmware/tl866_programmer/servo_emu.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/tl866_programmer/servo_emu.eep -------------------------------------------------------------------------------- /servo_emu/firmware/tl866_programmer/servo_emu.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/tl866_programmer/servo_emu.elf -------------------------------------------------------------------------------- /servo_emu/firmware/tl866_programmer/servo_emu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/tl866_programmer/servo_emu.hex -------------------------------------------------------------------------------- /servo_emu/firmware/tl866_programmer/servo_emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/firmware/tl866_programmer/servo_emu.o -------------------------------------------------------------------------------- /servo_emu/pcb/servo_emu_GERBER.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/pcb/servo_emu_GERBER.zip -------------------------------------------------------------------------------- /servo_emu/pcb/wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/servo_emu/pcb/wiring.png -------------------------------------------------------------------------------- /tester/firmware/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/data.c -------------------------------------------------------------------------------- /tester/firmware/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/data.h -------------------------------------------------------------------------------- /tester/firmware/hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/hw.c -------------------------------------------------------------------------------- /tester/firmware/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/hw.h -------------------------------------------------------------------------------- /tester/firmware/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/io.h -------------------------------------------------------------------------------- /tester/firmware/tester.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/tester.aps -------------------------------------------------------------------------------- /tester/firmware/tester.aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/tester.aws -------------------------------------------------------------------------------- /tester/firmware/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/tester.c -------------------------------------------------------------------------------- /tester/firmware/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/tester.h -------------------------------------------------------------------------------- /tester/firmware/tester.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/tester.hex -------------------------------------------------------------------------------- /tester/firmware/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/uart.c -------------------------------------------------------------------------------- /tester/firmware/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/firmware/uart.h -------------------------------------------------------------------------------- /tester/pcb/tester_GERBER.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/pcb/tester_GERBER.zip -------------------------------------------------------------------------------- /tester/pcb/vt_tester_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furrtek/VirtualTap/HEAD/tester/pcb/vt_tester_schematic.png --------------------------------------------------------------------------------