├── .gitignore ├── .gitmodules ├── ISA_DualUART-cache.lib ├── ISA_DualUART.kicad_pcb ├── ISA_DualUART.pro ├── ISA_DualUART.sch ├── Notes ├── rev_10_notes.md └── uart_parport_rev10_fix.jpg ├── README.md ├── fp-lib-table ├── gerbers ├── rev_12.zip └── rev_13.zip ├── libraries └── custom_libs │ └── footprints │ └── ISA_DualUART.pretty │ └── Oscillator_DIP-14-8.kicad_mod ├── pics └── ISA_DualUART.png └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/.gitmodules -------------------------------------------------------------------------------- /ISA_DualUART-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/ISA_DualUART-cache.lib -------------------------------------------------------------------------------- /ISA_DualUART.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/ISA_DualUART.kicad_pcb -------------------------------------------------------------------------------- /ISA_DualUART.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/ISA_DualUART.pro -------------------------------------------------------------------------------- /ISA_DualUART.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/ISA_DualUART.sch -------------------------------------------------------------------------------- /Notes/rev_10_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/Notes/rev_10_notes.md -------------------------------------------------------------------------------- /Notes/uart_parport_rev10_fix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/Notes/uart_parport_rev10_fix.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/README.md -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/fp-lib-table -------------------------------------------------------------------------------- /gerbers/rev_12.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/gerbers/rev_12.zip -------------------------------------------------------------------------------- /gerbers/rev_13.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/gerbers/rev_13.zip -------------------------------------------------------------------------------- /libraries/custom_libs/footprints/ISA_DualUART.pretty/Oscillator_DIP-14-8.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/libraries/custom_libs/footprints/ISA_DualUART.pretty/Oscillator_DIP-14-8.kicad_mod -------------------------------------------------------------------------------- /pics/ISA_DualUART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/pics/ISA_DualUART.png -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_DualUARTParport/HEAD/sym-lib-table --------------------------------------------------------------------------------