├── .gitignore ├── .gitmodules ├── ISA_EMS-cache.lib ├── ISA_EMS.kicad_pcb ├── ISA_EMS.pro ├── ISA_EMS.sch ├── README.md ├── fp-lib-table ├── gerbers └── rev_10.zip ├── libraries └── custom_libs │ ├── custom_components.dcm │ ├── custom_components.lib │ └── footprints │ └── ISA_DualUART.pretty │ └── Oscillator_DIP-14-8.kicad_mod ├── pics └── ISA_EMS.png ├── software └── LTEMM-r01.zip └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/.gitmodules -------------------------------------------------------------------------------- /ISA_EMS-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/ISA_EMS-cache.lib -------------------------------------------------------------------------------- /ISA_EMS.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/ISA_EMS.kicad_pcb -------------------------------------------------------------------------------- /ISA_EMS.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/ISA_EMS.pro -------------------------------------------------------------------------------- /ISA_EMS.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/ISA_EMS.sch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/README.md -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/fp-lib-table -------------------------------------------------------------------------------- /gerbers/rev_10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/gerbers/rev_10.zip -------------------------------------------------------------------------------- /libraries/custom_libs/custom_components.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/libraries/custom_libs/custom_components.dcm -------------------------------------------------------------------------------- /libraries/custom_libs/custom_components.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/libraries/custom_libs/custom_components.lib -------------------------------------------------------------------------------- /libraries/custom_libs/footprints/ISA_DualUART.pretty/Oscillator_DIP-14-8.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/libraries/custom_libs/footprints/ISA_DualUART.pretty/Oscillator_DIP-14-8.kicad_mod -------------------------------------------------------------------------------- /pics/ISA_EMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/pics/ISA_EMS.png -------------------------------------------------------------------------------- /software/LTEMM-r01.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/software/LTEMM-r01.zip -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkzlab/ISA_EMS_2Mb/HEAD/sym-lib-table --------------------------------------------------------------------------------