├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── datasheets ├── MCP23009.pdf ├── Pico-R3-A4-Pinout.pdf ├── SH1106.pdf ├── SSD1306.pdf ├── getting-started-with-pico.pdf ├── hardware-design-with-rp2040.pdf ├── pico-datasheet.pdf ├── raspberry-pi-pico-c-sdk.pdf └── rp2040-datasheet.pdf ├── firmware ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CMakeLists.txt ├── cfg │ ├── calib.h.in │ ├── picopost-rp2040.h │ ├── pins.h.in │ └── proj.h.in ├── lib │ ├── gpioexp │ │ ├── CMakeLists.txt │ │ ├── gpioexp.cpp │ │ └── gpioexp.hpp │ └── voltmon │ │ ├── CMakeLists.txt │ │ ├── voltmon.cpp │ │ └── voltmon.hpp ├── pico_sdk_import.cmake └── src │ ├── app.cpp │ ├── app.hpp │ ├── bitmaps.hpp │ ├── common.hpp │ ├── fastread.pio │ ├── logic.cpp │ ├── logic.hpp │ ├── main.cpp │ ├── ui.cpp │ └── ui.hpp ├── pcb ├── ISA rev1 │ ├── ISA card rev1.kicad_pcb │ ├── ISA card rev1.kicad_pro │ ├── ISA card rev1.kicad_sch │ └── fp-lib-table ├── ISA rev2 with remote │ ├── ISA card rev2-B_Cu.gbr │ ├── ISA card rev2-B_Mask.gbr │ ├── ISA card rev2-B_Paste.gbr │ ├── ISA card rev2-B_Silkscreen.gbr │ ├── ISA card rev2-Edge_Cuts.gbr │ ├── ISA card rev2-F_Cu.gbr │ ├── ISA card rev2-F_Mask.gbr │ ├── ISA card rev2-F_Paste.gbr │ ├── ISA card rev2-F_Silkscreen.gbr │ ├── ISA card rev2-NPTH.drl │ ├── ISA card rev2-PTH.drl │ ├── ISA card rev2-job.gbrjob │ ├── ISA card rev2.kicad_pcb │ ├── ISA card rev2.kicad_pro │ ├── ISA card rev2.kicad_sch │ └── fp-lib-table ├── ISA rev4 │ ├── ISA rev4.kicad_pcb │ ├── ISA rev4.kicad_pro │ ├── ISA rev4.kicad_sch │ ├── fp-lib-table │ └── gbr │ │ ├── ISA rev4-B_Cu.gbr │ │ ├── ISA rev4-B_Mask.gbr │ │ ├── ISA rev4-B_Paste.gbr │ │ ├── ISA rev4-B_Silkscreen.gbr │ │ ├── ISA rev4-Edge_Cuts.gbr │ │ ├── ISA rev4-F_Cu.gbr │ │ ├── ISA rev4-F_Mask.gbr │ │ ├── ISA rev4-F_Paste.gbr │ │ ├── ISA rev4-F_Silkscreen.gbr │ │ ├── ISA rev4-NPTH.drl │ │ ├── ISA rev4-PTH.drl │ │ ├── ISA rev4-User_1.gbr │ │ ├── ISA rev4-job.gbrjob │ │ └── ISA rev4.zip ├── ISA rev5 │ ├── ISA rev5.kicad_pcb │ ├── ISA rev5.kicad_pro │ ├── ISA rev5.kicad_sch │ ├── fp-lib-table │ ├── gbr │ │ ├── ISA rev4.zip │ │ ├── ISA rev5-B_Cu.gbr │ │ ├── ISA rev5-B_Mask.gbr │ │ ├── ISA rev5-B_Paste.gbr │ │ ├── ISA rev5-B_Silkscreen.gbr │ │ ├── ISA rev5-Edge_Cuts.gbr │ │ ├── ISA rev5-F_Cu.gbr │ │ ├── ISA rev5-F_Mask.gbr │ │ ├── ISA rev5-F_Paste.gbr │ │ ├── ISA rev5-F_Silkscreen.gbr │ │ ├── ISA rev5-NPTH.drl │ │ ├── ISA rev5-PTH.drl │ │ ├── ISA rev5-User_1.gbr │ │ ├── ISA rev5-job.gbrjob │ │ ├── ISA rev5.zip │ │ ├── remote-B_Cu.gbr │ │ ├── remote-B_Mask.gbr │ │ ├── remote-B_Paste.gbr │ │ ├── remote-B_Silkscreen.gbr │ │ ├── remote-Edge_Cuts.gbr │ │ ├── remote-F_Cu.gbr │ │ ├── remote-F_Mask.gbr │ │ ├── remote-F_Paste.gbr │ │ ├── remote-F_Silkscreen.gbr │ │ ├── remote-NPTH.drl │ │ ├── remote-PTH.drl │ │ ├── remote-User_1.gbr │ │ └── remote-job.gbrjob │ ├── remote.kicad_pcb │ └── remote.kicad_pro ├── ISA rev6 │ ├── ISA rev6.kicad_pcb │ ├── ISA rev6.kicad_pro │ ├── ISA rev6.kicad_sch │ ├── Schematic.pdf │ ├── bom │ │ └── ibom.html │ ├── fp-lib-table │ ├── gbr │ │ ├── ISA rev6-B_Cu.gbr │ │ ├── ISA rev6-B_Mask.gbr │ │ ├── ISA rev6-B_Paste.gbr │ │ ├── ISA rev6-B_Silkscreen.gbr │ │ ├── ISA rev6-Edge_Cuts.gbr │ │ ├── ISA rev6-F_Cu.gbr │ │ ├── ISA rev6-F_Mask.gbr │ │ ├── ISA rev6-F_Paste.gbr │ │ ├── ISA rev6-F_Silkscreen.gbr │ │ ├── ISA rev6-NPTH.drl │ │ ├── ISA rev6-PTH.drl │ │ ├── ISA rev6-User_1.gbr │ │ ├── ISA rev6-job.gbrjob │ │ ├── ISA rev6.zip │ │ ├── complete.zip │ │ ├── remote-B_Cu.gbr │ │ ├── remote-B_Mask.gbr │ │ ├── remote-B_Paste.gbr │ │ ├── remote-B_Silkscreen.gbr │ │ ├── remote-Edge_Cuts.gbr │ │ ├── remote-F_Cu.gbr │ │ ├── remote-F_Mask.gbr │ │ ├── remote-F_Paste.gbr │ │ ├── remote-F_Silkscreen.gbr │ │ ├── remote-NPTH.drl │ │ ├── remote-PTH.drl │ │ ├── remote-User_1.gbr │ │ ├── remote-job.gbrjob │ │ └── remote.zip │ ├── remote.kicad_pcb │ ├── remote.kicad_pro │ └── remote.kicad_sch ├── ISA rev7 │ ├── ISA rev7.kicad_pcb │ ├── ISA rev7.kicad_pro │ ├── ISA rev7.kicad_sch │ ├── bom │ │ └── ibom.html │ ├── fp-lib-table │ ├── gbr │ │ ├── ISA rev7-B_Cu.gbr │ │ ├── ISA rev7-B_Mask.gbr │ │ ├── ISA rev7-B_Paste.gbr │ │ ├── ISA rev7-B_Silkscreen.gbr │ │ ├── ISA rev7-Edge_Cuts.gbr │ │ ├── ISA rev7-F_Cu.gbr │ │ ├── ISA rev7-F_Mask.gbr │ │ ├── ISA rev7-F_Paste.gbr │ │ ├── ISA rev7-F_Silkscreen.gbr │ │ ├── ISA rev7-NPTH.drl │ │ ├── ISA rev7-PTH.drl │ │ ├── ISA rev7-User_1.gbr │ │ ├── ISA rev7-job.gbrjob │ │ ├── ISA rev7.zip │ │ ├── remote-B_Cu.gbr │ │ ├── remote-B_Mask.gbr │ │ ├── remote-B_Paste.gbr │ │ ├── remote-B_Silkscreen.gbr │ │ ├── remote-Edge_Cuts.gbr │ │ ├── remote-F_Cu.gbr │ │ ├── remote-F_Mask.gbr │ │ ├── remote-F_Paste.gbr │ │ ├── remote-F_Silkscreen.gbr │ │ ├── remote-NPTH.drl │ │ ├── remote-PTH.drl │ │ ├── remote-User_1.gbr │ │ ├── remote-job.gbrjob │ │ └── remote.zip │ ├── main board schematic.pdf │ ├── remote schematic.pdf │ ├── remote.kicad_pcb │ ├── remote.kicad_pro │ ├── remote.kicad_sch │ ├── remote.pdf │ └── remote_bom │ │ └── ibom.html ├── ISA rev8 │ ├── ISA rev8.kicad_pcb │ ├── ISA rev8.kicad_pro │ ├── ISA rev8.kicad_sch │ ├── bom │ │ └── ibom.html │ ├── fp-lib-table │ ├── gbr │ │ ├── ISA rev8-B_Cu.gbr │ │ ├── ISA rev8-B_Mask.gbr │ │ ├── ISA rev8-B_Paste.gbr │ │ ├── ISA rev8-B_Silkscreen.gbr │ │ ├── ISA rev8-Edge_Cuts.gbr │ │ ├── ISA rev8-F_Cu.gbr │ │ ├── ISA rev8-F_Mask.gbr │ │ ├── ISA rev8-F_Paste.gbr │ │ ├── ISA rev8-F_Silkscreen.gbr │ │ ├── ISA rev8-NPTH.drl │ │ ├── ISA rev8-PTH.drl │ │ ├── ISA rev8-User_1.gbr │ │ ├── ISA rev8-job.gbrjob │ │ ├── ISA rev8.zip │ │ ├── remote-B_Cu.gbr │ │ ├── remote-B_Mask.gbr │ │ ├── remote-B_Paste.gbr │ │ ├── remote-B_Silkscreen.gbr │ │ ├── remote-Edge_Cuts.gbr │ │ ├── remote-F_Cu.gbr │ │ ├── remote-F_Mask.gbr │ │ ├── remote-F_Paste.gbr │ │ ├── remote-F_Silkscreen.gbr │ │ ├── remote-NPTH.drl │ │ ├── remote-PTH.drl │ │ ├── remote-User_1.gbr │ │ ├── remote-job.gbrjob │ │ └── remote.zip │ ├── main board schematic.pdf │ ├── remote schematic.pdf │ ├── remote.kicad_pcb │ ├── remote.kicad_pro │ ├── remote.kicad_sch │ ├── remote_bom │ │ └── ibom.html │ └── ~remote.kicad_sch.lck ├── Pro rev1 │ ├── Pro rev1.kicad_dru │ ├── Pro rev1.kicad_pcb │ ├── Pro rev1.kicad_pro │ ├── Pro rev1.kicad_sch │ ├── Pro rev1.kicad_sch_old │ ├── Pro rev1.pdf │ ├── fp-lib-table │ ├── jlcpcb │ │ ├── gerber │ │ │ ├── Pro rev1-CuBottom.gbr │ │ │ ├── Pro rev1-CuIn1.gbr │ │ │ ├── Pro rev1-CuIn2.gbr │ │ │ ├── Pro rev1-CuTop.gbr │ │ │ ├── Pro rev1-EdgeCuts.gbr │ │ │ ├── Pro rev1-MaskBottom.gbr │ │ │ ├── Pro rev1-MaskTop.gbr │ │ │ ├── Pro rev1-NPTH-drl_map.pdf │ │ │ ├── Pro rev1-NPTH.drl │ │ │ ├── Pro rev1-PTH-drl_map.pdf │ │ │ ├── Pro rev1-PTH.drl │ │ │ ├── Pro rev1-SilkBottom.gbr │ │ │ └── Pro rev1-SilkTop.gbr │ │ ├── production_files │ │ │ └── GERBER-Pro rev1.zip │ │ └── project.db │ ├── pro-isa.kicad_sch │ ├── pro-pwr-syslgc.kicad_sch │ ├── pro-rp2040.kicad_sch │ ├── pro-rp2350.kicad_sch │ └── sym-lib-table ├── RP-Pico Libraries │ ├── MCU_RaspberryPi_and_Boards.kicad_sym │ ├── MCU_RaspberryPi_and_Boards.pretty │ │ ├── Crystal_SMD_HC49-US.kicad_mod │ │ ├── RP2040-QFN-56.kicad_mod │ │ └── RPi_Pico_SMD_TH.kicad_mod │ ├── Pico.wrl │ └── modified ICs.pretty │ │ ├── 2x03 solder jumper.kicad_mod │ │ ├── 6mm single side button.kicad_mod │ │ ├── 7.6mm side mount buzzer.kicad_mod │ │ ├── SC-59_diode_Handsoldering.kicad_mod │ │ ├── TO-236AB_diode.kicad_mod │ │ ├── TRW_logo.kicad_mod │ │ └── picopost_logo.kicad_mod └── project libraries │ ├── 1040310811.stp │ ├── BUS_AT.kicad_mod │ ├── IDEcardedge.pretty │ └── BUS_IDE8.kicad_mod │ ├── ISAfinger.kicad_sym │ ├── MCP23009-E_SO.kicad_sym │ ├── MCP23009 │ └── SOIC127P1030X265-18N.kicad_mod │ ├── RJ45_Hanrun_HR911105A.wrl │ ├── RP2350_KiCad-main │ ├── LICENSE │ ├── README.md │ ├── RP2350A-QFN60.step │ ├── RP2350A-QFN60.wrl │ ├── RP2350A_QFN-60_EP_7.75x7.75_Pitch0.4mm.kicad_mod │ ├── RP2350B-QFN80.step │ ├── RP2350B-QFN80.wrl │ ├── RP2350B_QFN-80_EP_10.573x10.573_Pitch0.4mm.kicad_mod │ ├── rp2350a-qfn60.kicad_sym │ └── rp2350b-qfn80.kicad_sym │ ├── TF-SMD_TF-PUSH.kicad_mod │ ├── TRW_logo.kicad_mod │ ├── XKTF-015-N_C381082.step │ ├── eec.dcm │ ├── eec.lib │ ├── eec.models │ ├── 470804001.stp │ └── Molex_-_47080-4001.step │ ├── eec.pretty │ └── Molex-47080-4001-0-0-0.kicad_mod │ ├── picopost_logo.kicad_mod │ └── postcard_stamp.kicad_mod └── readme_files ├── logo.png └── logo_big.png /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/README.md -------------------------------------------------------------------------------- /datasheets/MCP23009.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/MCP23009.pdf -------------------------------------------------------------------------------- /datasheets/Pico-R3-A4-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/Pico-R3-A4-Pinout.pdf -------------------------------------------------------------------------------- /datasheets/SH1106.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/SH1106.pdf -------------------------------------------------------------------------------- /datasheets/SSD1306.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/SSD1306.pdf -------------------------------------------------------------------------------- /datasheets/getting-started-with-pico.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/getting-started-with-pico.pdf -------------------------------------------------------------------------------- /datasheets/hardware-design-with-rp2040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/hardware-design-with-rp2040.pdf -------------------------------------------------------------------------------- /datasheets/pico-datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/pico-datasheet.pdf -------------------------------------------------------------------------------- /datasheets/raspberry-pi-pico-c-sdk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/raspberry-pi-pico-c-sdk.pdf -------------------------------------------------------------------------------- /datasheets/rp2040-datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/datasheets/rp2040-datasheet.pdf -------------------------------------------------------------------------------- /firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/.gitignore -------------------------------------------------------------------------------- /firmware/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/.vscode/extensions.json -------------------------------------------------------------------------------- /firmware/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/.vscode/launch.json -------------------------------------------------------------------------------- /firmware/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/.vscode/settings.json -------------------------------------------------------------------------------- /firmware/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/.vscode/tasks.json -------------------------------------------------------------------------------- /firmware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/cfg/calib.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/cfg/calib.h.in -------------------------------------------------------------------------------- /firmware/cfg/picopost-rp2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/cfg/picopost-rp2040.h -------------------------------------------------------------------------------- /firmware/cfg/pins.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/cfg/pins.h.in -------------------------------------------------------------------------------- /firmware/cfg/proj.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/cfg/proj.h.in -------------------------------------------------------------------------------- /firmware/lib/gpioexp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/lib/gpioexp/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/lib/gpioexp/gpioexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/lib/gpioexp/gpioexp.cpp -------------------------------------------------------------------------------- /firmware/lib/gpioexp/gpioexp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/lib/gpioexp/gpioexp.hpp -------------------------------------------------------------------------------- /firmware/lib/voltmon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/lib/voltmon/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/lib/voltmon/voltmon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/lib/voltmon/voltmon.cpp -------------------------------------------------------------------------------- /firmware/lib/voltmon/voltmon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/lib/voltmon/voltmon.hpp -------------------------------------------------------------------------------- /firmware/pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/pico_sdk_import.cmake -------------------------------------------------------------------------------- /firmware/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/app.cpp -------------------------------------------------------------------------------- /firmware/src/app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/app.hpp -------------------------------------------------------------------------------- /firmware/src/bitmaps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/bitmaps.hpp -------------------------------------------------------------------------------- /firmware/src/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/common.hpp -------------------------------------------------------------------------------- /firmware/src/fastread.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/fastread.pio -------------------------------------------------------------------------------- /firmware/src/logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/logic.cpp -------------------------------------------------------------------------------- /firmware/src/logic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/logic.hpp -------------------------------------------------------------------------------- /firmware/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/main.cpp -------------------------------------------------------------------------------- /firmware/src/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/ui.cpp -------------------------------------------------------------------------------- /firmware/src/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/firmware/src/ui.hpp -------------------------------------------------------------------------------- /pcb/ISA rev1/ISA card rev1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev1/ISA card rev1.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev1/ISA card rev1.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev1/ISA card rev1.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev1/ISA card rev1.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev1/ISA card rev1.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev1/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev1/fp-lib-table -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/ISA card rev2.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/ISA card rev2.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev2 with remote/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev2 with remote/fp-lib-table -------------------------------------------------------------------------------- /pcb/ISA rev4/ISA rev4.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/ISA rev4.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev4/ISA rev4.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/ISA rev4.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev4/ISA rev4.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/ISA rev4.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev4/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/fp-lib-table -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev4/gbr/ISA rev4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev4/gbr/ISA rev4.zip -------------------------------------------------------------------------------- /pcb/ISA rev5/ISA rev5.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/ISA rev5.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev5/ISA rev5.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/ISA rev5.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev5/ISA rev5.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/ISA rev5.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev5/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/fp-lib-table -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev4.zip -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/ISA rev5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/ISA rev5.zip -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev5/gbr/remote-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/gbr/remote-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev5/remote.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/remote.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev5/remote.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev5/remote.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev6/ISA rev6.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/ISA rev6.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev6/ISA rev6.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/ISA rev6.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev6/ISA rev6.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/ISA rev6.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev6/Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/Schematic.pdf -------------------------------------------------------------------------------- /pcb/ISA rev6/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/bom/ibom.html -------------------------------------------------------------------------------- /pcb/ISA rev6/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/fp-lib-table -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/ISA rev6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/ISA rev6.zip -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/complete.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/complete.zip -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev6/gbr/remote.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/gbr/remote.zip -------------------------------------------------------------------------------- /pcb/ISA rev6/remote.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/remote.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev6/remote.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/remote.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev6/remote.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev6/remote.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev7/ISA rev7.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/ISA rev7.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev7/ISA rev7.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/ISA rev7.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev7/ISA rev7.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/ISA rev7.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev7/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/bom/ibom.html -------------------------------------------------------------------------------- /pcb/ISA rev7/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/fp-lib-table -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/ISA rev7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/ISA rev7.zip -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev7/gbr/remote.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/gbr/remote.zip -------------------------------------------------------------------------------- /pcb/ISA rev7/main board schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/main board schematic.pdf -------------------------------------------------------------------------------- /pcb/ISA rev7/remote schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/remote schematic.pdf -------------------------------------------------------------------------------- /pcb/ISA rev7/remote.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/remote.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev7/remote.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/remote.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev7/remote.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/remote.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev7/remote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/remote.pdf -------------------------------------------------------------------------------- /pcb/ISA rev7/remote_bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev7/remote_bom/ibom.html -------------------------------------------------------------------------------- /pcb/ISA rev8/ISA rev8.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/ISA rev8.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev8/ISA rev8.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/ISA rev8.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev8/ISA rev8.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/ISA rev8.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev8/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/bom/ibom.html -------------------------------------------------------------------------------- /pcb/ISA rev8/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/fp-lib-table -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/ISA rev8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/ISA rev8.zip -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-NPTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-PTH.drl -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-User_1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-User_1.gbr -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote-job.gbrjob -------------------------------------------------------------------------------- /pcb/ISA rev8/gbr/remote.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/gbr/remote.zip -------------------------------------------------------------------------------- /pcb/ISA rev8/main board schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/main board schematic.pdf -------------------------------------------------------------------------------- /pcb/ISA rev8/remote schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/remote schematic.pdf -------------------------------------------------------------------------------- /pcb/ISA rev8/remote.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/remote.kicad_pcb -------------------------------------------------------------------------------- /pcb/ISA rev8/remote.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/remote.kicad_pro -------------------------------------------------------------------------------- /pcb/ISA rev8/remote.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/remote.kicad_sch -------------------------------------------------------------------------------- /pcb/ISA rev8/remote_bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/remote_bom/ibom.html -------------------------------------------------------------------------------- /pcb/ISA rev8/~remote.kicad_sch.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/ISA rev8/~remote.kicad_sch.lck -------------------------------------------------------------------------------- /pcb/Pro rev1/Pro rev1.kicad_dru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/Pro rev1.kicad_dru -------------------------------------------------------------------------------- /pcb/Pro rev1/Pro rev1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/Pro rev1.kicad_pcb -------------------------------------------------------------------------------- /pcb/Pro rev1/Pro rev1.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/Pro rev1.kicad_pro -------------------------------------------------------------------------------- /pcb/Pro rev1/Pro rev1.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/Pro rev1.kicad_sch -------------------------------------------------------------------------------- /pcb/Pro rev1/Pro rev1.kicad_sch_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/Pro rev1.kicad_sch_old -------------------------------------------------------------------------------- /pcb/Pro rev1/Pro rev1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/Pro rev1.pdf -------------------------------------------------------------------------------- /pcb/Pro rev1/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/fp-lib-table -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-CuBottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-CuBottom.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-CuIn1.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-CuIn1.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-CuIn2.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-CuIn2.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-CuTop.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-CuTop.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-EdgeCuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-EdgeCuts.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-MaskBottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-MaskBottom.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-MaskTop.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-MaskTop.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-NPTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-NPTH-drl_map.pdf -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-NPTH.drl -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-PTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-PTH-drl_map.pdf -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-PTH.drl -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-SilkBottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-SilkBottom.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/gerber/Pro rev1-SilkTop.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/gerber/Pro rev1-SilkTop.gbr -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/production_files/GERBER-Pro rev1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/production_files/GERBER-Pro rev1.zip -------------------------------------------------------------------------------- /pcb/Pro rev1/jlcpcb/project.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/jlcpcb/project.db -------------------------------------------------------------------------------- /pcb/Pro rev1/pro-isa.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/pro-isa.kicad_sch -------------------------------------------------------------------------------- /pcb/Pro rev1/pro-pwr-syslgc.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/pro-pwr-syslgc.kicad_sch -------------------------------------------------------------------------------- /pcb/Pro rev1/pro-rp2040.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/pro-rp2040.kicad_sch -------------------------------------------------------------------------------- /pcb/Pro rev1/pro-rp2350.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/pro-rp2350.kicad_sch -------------------------------------------------------------------------------- /pcb/Pro rev1/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/Pro rev1/sym-lib-table -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.kicad_sym -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.pretty/Crystal_SMD_HC49-US.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.pretty/Crystal_SMD_HC49-US.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.pretty/RP2040-QFN-56.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.pretty/RP2040-QFN-56.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.pretty/RPi_Pico_SMD_TH.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.pretty/RPi_Pico_SMD_TH.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/Pico.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/Pico.wrl -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/modified ICs.pretty/2x03 solder jumper.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/modified ICs.pretty/2x03 solder jumper.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/modified ICs.pretty/6mm single side button.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/modified ICs.pretty/6mm single side button.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/modified ICs.pretty/7.6mm side mount buzzer.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/modified ICs.pretty/7.6mm side mount buzzer.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/modified ICs.pretty/SC-59_diode_Handsoldering.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/modified ICs.pretty/SC-59_diode_Handsoldering.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/modified ICs.pretty/TO-236AB_diode.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/modified ICs.pretty/TO-236AB_diode.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/modified ICs.pretty/TRW_logo.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/modified ICs.pretty/TRW_logo.kicad_mod -------------------------------------------------------------------------------- /pcb/RP-Pico Libraries/modified ICs.pretty/picopost_logo.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/RP-Pico Libraries/modified ICs.pretty/picopost_logo.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/1040310811.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/1040310811.stp -------------------------------------------------------------------------------- /pcb/project libraries/BUS_AT.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/BUS_AT.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/IDEcardedge.pretty/BUS_IDE8.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/IDEcardedge.pretty/BUS_IDE8.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/ISAfinger.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/ISAfinger.kicad_sym -------------------------------------------------------------------------------- /pcb/project libraries/MCP23009-E_SO.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/MCP23009-E_SO.kicad_sym -------------------------------------------------------------------------------- /pcb/project libraries/MCP23009/SOIC127P1030X265-18N.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/MCP23009/SOIC127P1030X265-18N.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/RJ45_Hanrun_HR911105A.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RJ45_Hanrun_HR911105A.wrl -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/LICENSE -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/README.md -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/RP2350A-QFN60.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/RP2350A-QFN60.step -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/RP2350A-QFN60.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/RP2350A-QFN60.wrl -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/RP2350A_QFN-60_EP_7.75x7.75_Pitch0.4mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/RP2350A_QFN-60_EP_7.75x7.75_Pitch0.4mm.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/RP2350B-QFN80.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/RP2350B-QFN80.step -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/RP2350B-QFN80.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/RP2350B-QFN80.wrl -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/RP2350B_QFN-80_EP_10.573x10.573_Pitch0.4mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/RP2350B_QFN-80_EP_10.573x10.573_Pitch0.4mm.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/rp2350a-qfn60.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/rp2350a-qfn60.kicad_sym -------------------------------------------------------------------------------- /pcb/project libraries/RP2350_KiCad-main/rp2350b-qfn80.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/RP2350_KiCad-main/rp2350b-qfn80.kicad_sym -------------------------------------------------------------------------------- /pcb/project libraries/TF-SMD_TF-PUSH.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/TF-SMD_TF-PUSH.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/TRW_logo.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/TRW_logo.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/XKTF-015-N_C381082.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/XKTF-015-N_C381082.step -------------------------------------------------------------------------------- /pcb/project libraries/eec.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/eec.dcm -------------------------------------------------------------------------------- /pcb/project libraries/eec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/eec.lib -------------------------------------------------------------------------------- /pcb/project libraries/eec.models/470804001.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/eec.models/470804001.stp -------------------------------------------------------------------------------- /pcb/project libraries/eec.models/Molex_-_47080-4001.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/eec.models/Molex_-_47080-4001.step -------------------------------------------------------------------------------- /pcb/project libraries/eec.pretty/Molex-47080-4001-0-0-0.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/eec.pretty/Molex-47080-4001-0-0-0.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/picopost_logo.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/picopost_logo.kicad_mod -------------------------------------------------------------------------------- /pcb/project libraries/postcard_stamp.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/pcb/project libraries/postcard_stamp.kicad_mod -------------------------------------------------------------------------------- /readme_files/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/readme_files/logo.png -------------------------------------------------------------------------------- /readme_files/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRetroWeb/PicoPOST/HEAD/readme_files/logo_big.png --------------------------------------------------------------------------------