├── Library ├── PCIexpress.dcm └── PCIexpress.pretty │ ├── PCIexpress_bracket_full.kicad_mod │ ├── PCIexpress_bracket_adapter.kicad_mod │ ├── PCIexpress_bracket_low.kicad_mod │ ├── PCIexpress_x1.kicad_mod │ └── PCIexpress_x4.kicad_mod ├── example.jpg ├── PCIexpress_x16_full ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x16_half ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x16_low ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x1_full ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x1_half ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x1_low ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x4_full ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x4_half ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x4_low ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x8_full ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x8_half ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch ├── PCIexpress_x8_low ├── fp-lib-table ├── sym-lib-table ├── meta │ └── info.html ├── .gitignore ├── decap.kicad_sch └── term.kicad_sch └── README.md /Library/PCIexpress.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucanastasio/PCIexpress-KiCad/HEAD/example.jpg -------------------------------------------------------------------------------- /PCIexpress_x16_full/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_half/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_low/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_full/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_half/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_low/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_full/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_half/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_low/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_full/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_half/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_low/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_full/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_half/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_low/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_full/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_half/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_low/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_full/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_half/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_low/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_full/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_half/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_low/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "PCIexpress")(type "KiCad")(uri "${KIPRJMOD}/../Library/PCIexpress.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_low/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx16_low 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_full/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx1_full 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_half/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx1 half 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x1_low/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx1_low 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_full/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx4_full 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_half/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx4_half 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x4_low/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx4_low 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_full/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx8_full 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_half/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx8_half 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x8_low/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx8_low 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_full/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx16_full 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_half/meta/info.html: -------------------------------------------------------------------------------- 1 | PCIEx16_half 2 |

This is a KiCad 5 template 3 | 4 | -------------------------------------------------------------------------------- /PCIexpress_x16_full/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x16_half/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x16_low/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x1_full/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x1_half/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x1_low/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x4_full/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x4_half/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x4_low/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x8_full/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x8_half/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /PCIexpress_x8_low/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PCIexpress-KiCad 2 | PCI Express™ libraries and templates for KiCad 3 | Made using guidelines from PCI Express™ Card Electromechanical Specification Rev. 1.2 4 | 5 | Updated for KiCad 6 6 | 7 | ![](example.jpg) 8 | 9 | ### Contents 10 | **Templates:** 11 | * x1 cards: full size, half length, low profile 12 | * x4 cards: full size, half length, low profile 13 | * x8 cards: full size, half length, low profile 14 | * x16 cards: full size, half length, low profile 15 | 16 | **Symbols:** 17 | * x1 18 | * x4 19 | * x8 20 | * x16 21 | * Bracket 22 | 23 | **Footprints:** 24 | * x1 with multiple card outlines 25 | * x4 with multiple card outlines 26 | * x8 with multiple card outlines 27 | * x16 with multiple card outlines 28 | * Full height bracket (with 3D model) 29 | * Low profile bracket (with 3D model) 30 | * Low profile to full height adapter bracker (with 3D model) 31 | 32 | ### License 33 | This documentation describes Open Hardware and is licensed under the CERN OHL v.1.2. 34 | 35 | You may redistribute and modify this documentation under the terms of the CERN OHL v.1.2. (http://ohwr.org/cernohl). This documentation is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE. Please see the CERN OHL v.1.2 for applicable conditions. 36 | -------------------------------------------------------------------------------- /Library/PCIexpress.pretty/PCIexpress_bracket_full.kicad_mod: -------------------------------------------------------------------------------- 1 | (module PCIexpress_bracket_full (layer F.Cu) (tedit 5D33889E) 2 | (descr "PCIexpress full height bracket") 3 | (tags "PCIexpress bracket") 4 | (attr virtual) 5 | (fp_text reference REF** (at 0 -19.75) (layer F.SilkS) hide 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value PCIexpress_bracket_full (at 0 -23) (layer F.Fab) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start -46.18 -104.86) (end -46.18 10.09) (layer Dwgs.User) (width 0.12)) 12 | (fp_line (start -47.48188 15.140707) (end -46.62188 15.140707) (layer Dwgs.User) (width 0.12)) 13 | (fp_line (start -47.04 -104.86) (end -47.04 10.09) (layer Dwgs.User) (width 0.12)) 14 | (fp_arc (start -47.04 -104.86) (end -46.18 -104.86) (angle -90) (layer Dwgs.User) (width 0.12)) 15 | (fp_line (start -47.04 -104.86) (end -58.47 -104.86) (layer Dwgs.User) (width 0.12)) 16 | (fp_line (start -47.04 -105.72) (end -58.47 -105.72) (layer Dwgs.User) (width 0.12)) 17 | (fp_line (start -58.47 -104.86) (end -58.47 -105.72) (layer Dwgs.User) (width 0.12)) 18 | (fp_line (start -34.47 -97.455) (end -34.47 -92.045) (layer Dwgs.User) (width 0.12)) 19 | (fp_arc (start -35.74 -97.455) (end -34.47 -97.455) (angle -90) (layer Dwgs.User) (width 0.12)) 20 | (fp_arc (start -35.74 -92.045) (end -35.74 -90.775) (angle -90) (layer Dwgs.User) (width 0.12)) 21 | (fp_line (start -35.74 -98.725) (end -46.18 -98.725) (layer Dwgs.User) (width 0.12)) 22 | (fp_line (start -35.74 -90.775) (end -46.18 -90.775) (layer Dwgs.User) (width 0.12)) 23 | (fp_line (start -35.74 -13.325) (end -46.18 -13.325) (layer Dwgs.User) (width 0.12)) 24 | (fp_line (start -34.47 -12.055) (end -34.47 -6.645) (layer Dwgs.User) (width 0.12)) 25 | (fp_arc (start -35.74 -12.055) (end -34.47 -12.055) (angle -90) (layer Dwgs.User) (width 0.12)) 26 | (fp_arc (start -35.74 -6.645) (end -35.74 -5.375) (angle -90) (layer Dwgs.User) (width 0.12)) 27 | (fp_line (start -35.74 -5.375) (end -46.18 -5.375) (layer Dwgs.User) (width 0.12)) 28 | (fp_line (start -47.04 10.09) (end -47.48188 15.140707) (layer Dwgs.User) (width 0.12)) 29 | (fp_line (start -46.18 10.09) (end -46.62188 15.140707) (layer Dwgs.User) (width 0.12)) 30 | (fp_circle (center -37.65 -94.75) (end -36.05 -94.75) (layer Dwgs.User) (width 0.12)) 31 | (fp_circle (center -37.65 -9.35) (end -36.05 -9.35) (layer Dwgs.User) (width 0.12)) 32 | (model ${KIPRJMOD}/../Library/PCIexpress.3dshapes/PCIexpress_bracket_full.step 33 | (offset (xyz -46.18 104.86 15.86)) 34 | (scale (xyz 1 1 1)) 35 | (rotate (xyz 0 0 90)) 36 | ) 37 | ) 38 | -------------------------------------------------------------------------------- /Library/PCIexpress.pretty/PCIexpress_bracket_adapter.kicad_mod: -------------------------------------------------------------------------------- 1 | (module PCIexpress_bracket_adapter (layer F.Cu) (tedit 5D338897) 2 | (descr "PCIexpress low profile to full height bracket") 3 | (tags "PCIexpress bracket") 4 | (attr virtual) 5 | (fp_text reference REF** (at 0 -19.75) (layer F.SilkS) hide 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value PCIexpress_bracket_adapter (at 0 -23) (layer F.Fab) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_line (start -46.18 -104.86) (end -46.18 10.09) (layer Dwgs.User) (width 0.12)) 12 | (fp_line (start -47.48188 15.140707) (end -46.62188 15.140707) (layer Dwgs.User) (width 0.12)) 13 | (fp_line (start -47.04 -104.86) (end -47.04 10.09) (layer Dwgs.User) (width 0.12)) 14 | (fp_arc (start -47.04 -104.86) (end -46.18 -104.86) (angle -90) (layer Dwgs.User) (width 0.12)) 15 | (fp_line (start -47.04 -104.86) (end -58.47 -104.86) (layer Dwgs.User) (width 0.12)) 16 | (fp_line (start -47.04 -105.72) (end -58.47 -105.72) (layer Dwgs.User) (width 0.12)) 17 | (fp_line (start -58.47 -104.86) (end -58.47 -105.72) (layer Dwgs.User) (width 0.12)) 18 | (fp_line (start -35.74 -13.325) (end -46.18 -13.325) (layer Dwgs.User) (width 0.12)) 19 | (fp_line (start -34.47 -12.055) (end -34.47 -6.645) (layer Dwgs.User) (width 0.12)) 20 | (fp_arc (start -35.74 -12.055) (end -34.47 -12.055) (angle -90) (layer Dwgs.User) (width 0.12)) 21 | (fp_arc (start -35.74 -6.645) (end -35.74 -5.375) (angle -90) (layer Dwgs.User) (width 0.12)) 22 | (fp_line (start -35.74 -5.375) (end -46.18 -5.375) (layer Dwgs.User) (width 0.12)) 23 | (fp_line (start -47.04 10.09) (end -47.48188 15.140707) (layer Dwgs.User) (width 0.12)) 24 | (fp_line (start -46.18 10.09) (end -46.62188 15.140707) (layer Dwgs.User) (width 0.12)) 25 | (fp_circle (center -37.65 -9.35) (end -36.05 -9.35) (layer Dwgs.User) (width 0.12)) 26 | (fp_circle (center -37.65 -63.25) (end -36.05 -63.25) (layer Dwgs.User) (width 0.12)) 27 | (fp_line (start -34.47 -65.955) (end -34.47 -60.545) (layer Dwgs.User) (width 0.12)) 28 | (fp_line (start -35.74 -67.225) (end -46.18 -67.225) (layer Dwgs.User) (width 0.12)) 29 | (fp_line (start -35.74 -59.275) (end -46.18 -59.275) (layer Dwgs.User) (width 0.12)) 30 | (fp_arc (start -35.74 -65.955) (end -34.47 -65.955) (angle -90) (layer Dwgs.User) (width 0.12)) 31 | (fp_arc (start -35.74 -60.545) (end -35.74 -59.275) (angle -90) (layer Dwgs.User) (width 0.12)) 32 | (model ${KIPRJMOD}/../Library/PCIexpress.3dshapes/PCIexpress_bracket_adapter.step 33 | (offset (xyz -46.18 104.86 15.86)) 34 | (scale (xyz 1 1 1)) 35 | (rotate (xyz 0 0 90)) 36 | ) 37 | ) 38 | -------------------------------------------------------------------------------- /Library/PCIexpress.pretty/PCIexpress_bracket_low.kicad_mod: -------------------------------------------------------------------------------- 1 | (module PCIexpress_bracket_low (layer F.Cu) (tedit 5D3388A6) 2 | (descr "PCIexpress low profile bracket") 3 | (tags "PCIexpress bracket") 4 | (attr virtual) 5 | (fp_text reference REF** (at 0 -19.75) (layer F.SilkS) hide 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value PCIexpress_bracket_low (at 0 -23) (layer F.Fab) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center -37.65 -9.35) (end -36.05 -9.35) (layer Dwgs.User) (width 0.12)) 12 | (fp_line (start -46.18 -68.11) (end -46.18 6.059293) (layer Dwgs.User) (width 0.12)) 13 | (fp_line (start -47.48188 11.11) (end -46.62188 11.11) (layer Dwgs.User) (width 0.12)) 14 | (fp_line (start -47.04 -68.09) (end -47.04 6.059293) (layer Dwgs.User) (width 0.12)) 15 | (fp_arc (start -47.04 -68.11) (end -46.18 -68.11) (angle -90) (layer Dwgs.User) (width 0.12)) 16 | (fp_line (start -47.04 -68.09) (end -58.88 -68.09) (layer Dwgs.User) (width 0.12)) 17 | (fp_line (start -47.04 -68.97) (end -58.88 -68.97) (layer Dwgs.User) (width 0.12)) 18 | (fp_line (start -58.88 -68.11) (end -58.88 -68.97) (layer Dwgs.User) (width 0.12)) 19 | (fp_line (start -34.01 -13.325) (end -46.18 -13.325) (layer Dwgs.User) (width 0.12)) 20 | (fp_line (start -32.74 -12.055) (end -32.74 -6.645) (layer Dwgs.User) (width 0.12)) 21 | (fp_arc (start -34.01 -12.055) (end -32.74 -12.055) (angle -90) (layer Dwgs.User) (width 0.12)) 22 | (fp_arc (start -34.01 -6.645) (end -34.01 -5.375) (angle -90) (layer Dwgs.User) (width 0.12)) 23 | (fp_line (start -34.01 -5.375) (end -46.18 -5.375) (layer Dwgs.User) (width 0.12)) 24 | (fp_line (start -47.04 6.059293) (end -47.48188 11.11) (layer Dwgs.User) (width 0.12)) 25 | (fp_line (start -46.18 6.059293) (end -46.62188 11.11) (layer Dwgs.User) (width 0.12)) 26 | (fp_circle (center -37.65 -9.35) (end -36.05 -9.35) (layer Dwgs.User) (width 0.12)) 27 | (fp_circle (center -37.65 -63.25) (end -36.05 -63.25) (layer Dwgs.User) (width 0.12)) 28 | (fp_line (start -34.01 -59.275) (end -46.18 -59.275) (layer Dwgs.User) (width 0.12)) 29 | (fp_arc (start -34.01 -60.545) (end -34.01 -59.275) (angle -90) (layer Dwgs.User) (width 0.12)) 30 | (fp_arc (start -34.01 -65.955) (end -32.74 -65.955) (angle -90) (layer Dwgs.User) (width 0.12)) 31 | (fp_line (start -32.74 -65.955) (end -32.74 -60.545) (layer Dwgs.User) (width 0.12)) 32 | (fp_line (start -34.01 -67.225) (end -46.18 -67.225) (layer Dwgs.User) (width 0.12)) 33 | (model ${KIPRJMOD}/../Library/PCIexpress.3dshapes/PCIexpress_bracket_low.step 34 | (offset (xyz -46.18 68.09999999999999 15.86)) 35 | (scale (xyz 1 1 1)) 36 | (rotate (xyz 0 0 90)) 37 | ) 38 | ) 39 | -------------------------------------------------------------------------------- /PCIexpress_x1_low/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 91db1474-9ebd-4d2b-9803-9aca68c8aac3) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x1_low") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 41669280-d74b-4fd2-a032-1b60666b347a) 70 | ) 71 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 71bd6144-8f76-4649-8a82-a7ee40f1802c) 74 | ) 75 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid 96fb24eb-488b-460e-8768-f94a2ca30c9a) 78 | ) 79 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid bf368408-5b26-4fb8-90a8-92a15434260e) 82 | ) 83 | 84 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 85 | (effects (font (size 1.27 1.27)) (justify right)) 86 | (uuid 14450dd6-01e8-4057-b595-6053e735f609) 87 | ) 88 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 89 | (effects (font (size 1.27 1.27)) (justify left)) 90 | (uuid 745ab423-70dc-4015-96f1-a38198ed3db2) 91 | ) 92 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 93 | (effects (font (size 1.27 1.27)) (justify right)) 94 | (uuid 96ae0182-ec23-4202-b783-14c89a9257d4) 95 | ) 96 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 97 | (effects (font (size 1.27 1.27)) (justify left)) 98 | (uuid b7b09f25-33d2-41b4-9f29-43e4be0a5b10) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid eb594b4c-c503-4e55-8869-7aa19083a575)) 113 | (pin "2" (uuid 029e82a0-05e6-406b-b323-f65ee74f7512)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid e71ae72b-4076-4962-8cd7-0834ef494b63)) 128 | (pin "2" (uuid 07d97a9c-aef8-465f-b0ac-c8c5a7ae8c0d)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x4_low/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid c4358ca1-cef4-4c0d-8faf-827ca4fdd2d2) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x4_low") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 4a405287-db1d-4848-9219-98ea7371c852) 70 | ) 71 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 94557b50-31ab-4e98-8932-6a4813ea5b10) 74 | ) 75 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid c3ee87f3-6e3c-4b15-ac97-f9bf3b24eb70) 78 | ) 79 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid d848a02e-7e5a-4dc7-a165-015d8a2a4bf0) 82 | ) 83 | 84 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 0e182017-6ba6-44a3-8eb1-47bccd50eabb) 87 | ) 88 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 89 | (effects (font (size 1.27 1.27)) (justify right)) 90 | (uuid 34d24bdc-e119-4e57-bdac-d4022bf343e3) 91 | ) 92 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 93 | (effects (font (size 1.27 1.27)) (justify left)) 94 | (uuid 4c040bdc-2f5d-4283-9598-d4063710bfa8) 95 | ) 96 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 97 | (effects (font (size 1.27 1.27)) (justify right)) 98 | (uuid 5f2f35fd-3ab3-43cf-824a-e453e816ce57) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid 5a6347fb-b390-45a0-bb72-5dcde8841364)) 113 | (pin "2" (uuid 43716e53-7909-4d5f-8e2f-1d8fd53072b6)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid dbe88e23-7cc8-412d-861a-112451756060)) 128 | (pin "2" (uuid a43558a8-fb8b-4eef-b7d7-151def785b27)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x8_low/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid b709f44c-d854-45cb-a88d-eedf91eaeab4) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x8_low") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 6a023c1b-0429-4622-a2b0-bbfa789d4736) 70 | ) 71 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid a7a4878a-fabb-4330-9631-a808a5a9536a) 74 | ) 75 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid ac97d5e9-075d-4d1d-908c-0d5af41e1db0) 78 | ) 79 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid f651bc1a-1386-40e3-9a57-7fbcc100ccfe) 82 | ) 83 | 84 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 85 | (effects (font (size 1.27 1.27)) (justify right)) 86 | (uuid 4074c860-9c5a-4793-aecc-903dd2793b06) 87 | ) 88 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 89 | (effects (font (size 1.27 1.27)) (justify left)) 90 | (uuid 80456467-555e-4985-a85b-bfcd10e0bef0) 91 | ) 92 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 93 | (effects (font (size 1.27 1.27)) (justify right)) 94 | (uuid 8bbff0af-6c86-4e82-87b9-78c81618b9a2) 95 | ) 96 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 97 | (effects (font (size 1.27 1.27)) (justify left)) 98 | (uuid 8fa26698-2c58-4d1e-b82a-e1407e8c8ef9) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid ecaa334a-dcd3-451d-a637-2e525b29696a)) 113 | (pin "2" (uuid 967dc63e-b687-474b-8cb9-3ea369c12ab5)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid f01717d2-50e0-4b48-80a2-b51064818fc5)) 128 | (pin "2" (uuid 1b75870b-ec1f-4589-9508-7c75b9f8dbe3)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x16_full/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 0163badf-bf2e-4eab-ab2e-a38172dfe73d) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x16_full") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid af15cfa4-d902-437a-8033-182b455d37f8) 70 | ) 71 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid c1848e98-2d38-4999-88be-14622a919a86) 74 | ) 75 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid d86bdc9e-34a8-4d87-b9bf-82b604ebee00) 78 | ) 79 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid ede59f4e-2d15-466a-aa48-417e729af7d6) 82 | ) 83 | 84 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 0fcad533-7eaf-4998-aa8e-fdc06cc8d023) 87 | ) 88 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 89 | (effects (font (size 1.27 1.27)) (justify right)) 90 | (uuid 18340110-1114-4ad6-88e9-5cdaa9b7fc1c) 91 | ) 92 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 93 | (effects (font (size 1.27 1.27)) (justify left)) 94 | (uuid 7e2aab41-bbcd-4782-941e-b35b5901bb93) 95 | ) 96 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 97 | (effects (font (size 1.27 1.27)) (justify right)) 98 | (uuid a7fe43a5-d67f-4cef-8dcb-345c23eeb88c) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid 550795e2-7a92-4c39-bdd8-338c8469618f)) 113 | (pin "2" (uuid a63574cb-cbf0-450f-9bc9-a39ae4a9e78b)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid 4329a08e-5906-45be-90d4-f5b1db1b8151)) 128 | (pin "2" (uuid fcb9909b-09f0-4ef2-9edc-9af936891661)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x16_half/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 15b91cd1-7de1-4c48-a56d-547d12ec1e50) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x16_half") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 0d3841f9-4410-40c5-94fb-068a10094d2a) 70 | ) 71 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 127f4921-c338-473e-9621-b2aa4ef64c39) 74 | ) 75 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid 1c7d1364-7b32-4acd-ba5b-220222029ecb) 78 | ) 79 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid 988ee12e-71ae-4e05-9bbf-a9d8e38d71c9) 82 | ) 83 | 84 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 85 | (effects (font (size 1.27 1.27)) (justify right)) 86 | (uuid 08c3653c-8482-42fd-b311-5baa90b60665) 87 | ) 88 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 89 | (effects (font (size 1.27 1.27)) (justify left)) 90 | (uuid 3685d9b5-7715-4a7e-9bc8-42727972af6b) 91 | ) 92 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 93 | (effects (font (size 1.27 1.27)) (justify left)) 94 | (uuid b3241eeb-6309-4957-aa9a-cafa0d9a36a3) 95 | ) 96 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 97 | (effects (font (size 1.27 1.27)) (justify right)) 98 | (uuid c2948ebd-8ce5-4c4a-abae-56a17fdbb5a1) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid bf9e022e-95e3-4e17-a776-e4450f25beb0)) 113 | (pin "2" (uuid bd32a405-6567-4240-8f63-5772824be7e7)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid 18eda269-ddc1-4427-bc3e-9968869657d9)) 128 | (pin "2" (uuid 797794a7-d36f-4ff6-8854-feca0a9b426f)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x16_low/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 907bb27f-157b-4a0f-82c7-270d56dd0296) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x16_low") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 588768c9-b23a-4161-b085-7e15e3027c8d) 70 | ) 71 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 7687ea0a-ef6c-4ff1-9a57-1a89bfdf0d53) 74 | ) 75 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid 8afe6d93-6310-4697-9f2a-821238adefc1) 78 | ) 79 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid bbdda68c-e1f2-4e8e-a560-b9d9816adb9c) 82 | ) 83 | 84 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 19aa11fb-6fb1-46a3-8e10-19713abfd4ab) 87 | ) 88 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 89 | (effects (font (size 1.27 1.27)) (justify right)) 90 | (uuid 673ebe61-5784-49d1-a770-48abdff89e75) 91 | ) 92 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 93 | (effects (font (size 1.27 1.27)) (justify left)) 94 | (uuid cbe50f5e-9670-418c-a7ce-fca2f39df98f) 95 | ) 96 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 97 | (effects (font (size 1.27 1.27)) (justify right)) 98 | (uuid e64b1ce8-78bc-426e-9fa8-cd5abb8c6ad3) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid ca57e738-5dbf-4287-83b3-5326c48cef71)) 113 | (pin "2" (uuid 00a4e628-ba42-43f4-bb5b-0cb2a316000a)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid c8f7e2b3-9be8-48a6-94d4-3383406ec9fe)) 128 | (pin "2" (uuid 6a32280e-c5d3-4c15-a02e-214878e38df4)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x1_half/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 38a37408-1c65-4c01-99d9-fee9c13405e2) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x1_half") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 4cb55537-ec55-436f-9ce2-160f5f55ed4b) 70 | ) 71 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 514ee4d9-b387-481b-9c1b-bb15f9637427) 74 | ) 75 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid 9f01bc68-c49a-48e2-aef3-cbc00b4add7f) 78 | ) 79 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid b5a1670d-3c2b-4b60-a1e2-fa0048b033b8) 82 | ) 83 | 84 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 0a7f9dfc-d9d9-4006-9468-76725385c225) 87 | ) 88 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 89 | (effects (font (size 1.27 1.27)) (justify right)) 90 | (uuid 385c4ceb-3def-458e-9edd-84648679799f) 91 | ) 92 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 93 | (effects (font (size 1.27 1.27)) (justify left)) 94 | (uuid 3aea5de1-8b8c-48ec-8ffd-23e37deacf50) 95 | ) 96 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 97 | (effects (font (size 1.27 1.27)) (justify right)) 98 | (uuid 3d1adfd8-30b6-4b5d-9c26-0a0db0ff759d) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid 22223a61-137e-44d8-a8ad-6904a89a0dcd)) 113 | (pin "2" (uuid a9cdf7df-4072-4d05-9078-076a72ef6eb3)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid 6e2205c2-fb73-4cea-ba7d-11a9c83de3a3)) 128 | (pin "2" (uuid cfc314c5-c965-4d68-aac3-08ddb258b221)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x4_full/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid b79346eb-94bb-4a19-bc85-af2de30d0880) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x4_full") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 491ce31d-61c9-4616-99fe-785518b4d916) 70 | ) 71 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 7a8c224b-9e37-4855-8419-d8669e2d149b) 74 | ) 75 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid d1ff07e7-b5e6-40f7-b393-3791b8c5f6c1) 78 | ) 79 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid f309bbd2-5967-45e5-b63f-2c3d41512500) 82 | ) 83 | 84 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 0902c942-4467-4884-b941-48a02bff9365) 87 | ) 88 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 89 | (effects (font (size 1.27 1.27)) (justify right)) 90 | (uuid 31a74e70-7bb0-4d43-a14c-0b9ad061d5a3) 91 | ) 92 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 93 | (effects (font (size 1.27 1.27)) (justify right)) 94 | (uuid 70ab2a19-1b92-4737-a207-8d6cc8b3804f) 95 | ) 96 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 97 | (effects (font (size 1.27 1.27)) (justify left)) 98 | (uuid 83a27fdb-9d5a-480e-af12-2cb7d66de9f0) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid 83f518d1-9c02-4941-934f-c0fbd4487269)) 113 | (pin "2" (uuid 89aae662-8f7e-4642-ab85-20823c19a61c)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid 3b7ee7ce-02a1-44ad-8223-1631769de62d)) 128 | (pin "2" (uuid aeb9a153-30e0-4182-959c-26d6decaa167)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x4_half/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 67c14684-8c2b-4c11-8dfb-782a6cba41f0) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x4_half") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 3ae8c259-e9a5-4531-a92c-b409763f2d7a) 70 | ) 71 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 506e3659-d691-4324-84ed-63d62a1a3f75) 74 | ) 75 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid 76f63a77-82c6-4418-93f0-ff03217a9959) 78 | ) 79 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid 8fa6e30b-6b92-438d-92fe-377ebbc3523c) 82 | ) 83 | 84 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 549fc1ff-1a56-46ba-879e-046a460a6483) 87 | ) 88 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 89 | (effects (font (size 1.27 1.27)) (justify right)) 90 | (uuid 5f0baf70-1b3a-4264-81b4-18c5df286398) 91 | ) 92 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 93 | (effects (font (size 1.27 1.27)) (justify right)) 94 | (uuid 88663ba8-f158-4b9d-bc76-86b55a28106d) 95 | ) 96 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 97 | (effects (font (size 1.27 1.27)) (justify left)) 98 | (uuid 937dbc60-aa37-4a68-8a5b-bd12e7c2e9e1) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid e877c4ea-1bfa-40de-a0cb-c87d830d93d6)) 113 | (pin "2" (uuid c4f98773-929d-4b58-a669-9ca9f2db8b48)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid 2dea5c15-adc7-41d6-bde7-da0b0519c0be)) 128 | (pin "2" (uuid ff370bae-d866-4a32-ad23-5c41ada8ebfe)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x8_full/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid f5276572-76f0-41ca-9326-eea8a94c7dbe) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x8_full") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 006b6738-6760-47f0-b64d-e5de26f1c731) 70 | ) 71 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 007576b4-cd49-4fff-8e58-31a5991c294d) 74 | ) 75 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid 2754bb1b-0e6e-4996-8890-69701de52add) 78 | ) 79 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid 2f1fbb53-aacb-430b-8ca6-294170764a59) 82 | ) 83 | 84 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 0cc54828-8f15-4016-8a96-09d1fca999cd) 87 | ) 88 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 89 | (effects (font (size 1.27 1.27)) (justify right)) 90 | (uuid 2390139f-3a70-43ef-a40b-c4921b6670b1) 91 | ) 92 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 93 | (effects (font (size 1.27 1.27)) (justify left)) 94 | (uuid 37891958-85e4-40b8-bb8d-633dba932140) 95 | ) 96 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 97 | (effects (font (size 1.27 1.27)) (justify right)) 98 | (uuid ab66f269-b73b-4637-b4cc-f672d11e13dd) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid 64544669-a54d-4e83-a794-c11301882644)) 113 | (pin "2" (uuid a8539db8-a159-4cfc-9043-bb86afca3e70)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid ad92ac77-e83b-4708-abfe-430b256e5c86)) 128 | (pin "2" (uuid e14f0d52-1709-4507-b42f-b9ba7150cf9e)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x8_half/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 4b78f294-dff6-488a-b5e5-69cbb4e97907) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x8_half") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 1ef9340d-8894-4208-b5ef-81a1995027f6) 70 | ) 71 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid afa5d16a-6bc2-4bcc-ad0b-caeda0d3ac26) 74 | ) 75 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid bbfee6eb-527d-420c-9df9-9bf97548093f) 78 | ) 79 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid e254f666-64dd-45cf-bfd9-bc284658a9a1) 82 | ) 83 | 84 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 1b8e1f82-3a61-48c3-ae37-fab16ecd4c11) 87 | ) 88 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 89 | (effects (font (size 1.27 1.27)) (justify right)) 90 | (uuid 3a0f9588-f253-4d41-bb4f-0722832d5d42) 91 | ) 92 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 93 | (effects (font (size 1.27 1.27)) (justify right)) 94 | (uuid 59021103-3a88-42f0-aef5-be7b62f7b5a9) 95 | ) 96 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 97 | (effects (font (size 1.27 1.27)) (justify left)) 98 | (uuid 93ab979c-a6fa-4b45-a1ae-45c059975383) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C?" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid 8453df7b-0b1b-4123-965d-68a066cc7a9b)) 113 | (pin "2" (uuid 78ed94c8-5c7c-464f-b190-aaa9d0df9862)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C?" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid 2afcb89c-6388-44ee-8259-5df034cb225c)) 128 | (pin "2" (uuid e3ebef25-7732-4402-8d8a-949b5c0a26f0)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x1_full/decap.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 19b509c8-5f95-4d5b-b092-89a7e8da163f) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x1_full") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 14 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 15 | (effects (font (size 1.27 1.27)) (justify left)) 16 | ) 17 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 18 | (effects (font (size 1.27 1.27)) (justify left)) 19 | ) 20 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "C_0_1" 36 | (polyline 37 | (pts 38 | (xy -2.032 -0.762) 39 | (xy 2.032 -0.762) 40 | ) 41 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 42 | (fill (type none)) 43 | ) 44 | (polyline 45 | (pts 46 | (xy -2.032 0.762) 47 | (xy 2.032 0.762) 48 | ) 49 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 50 | (fill (type none)) 51 | ) 52 | ) 53 | (symbol "C_1_1" 54 | (pin passive line (at 0 3.81 270) (length 2.794) 55 | (name "~" (effects (font (size 1.27 1.27)))) 56 | (number "1" (effects (font (size 1.27 1.27)))) 57 | ) 58 | (pin passive line (at 0 -3.81 90) (length 2.794) 59 | (name "~" (effects (font (size 1.27 1.27)))) 60 | (number "2" (effects (font (size 1.27 1.27)))) 61 | ) 62 | ) 63 | ) 64 | ) 65 | 66 | 67 | (wire (pts (xy 156.21 93.98) (xy 153.67 93.98)) 68 | (stroke (width 0) (type default) (color 0 0 0 0)) 69 | (uuid 08e5c6cc-ccd1-4d7d-9024-82f114c9e9e5) 70 | ) 71 | (wire (pts (xy 163.83 93.98) (xy 166.37 93.98)) 72 | (stroke (width 0) (type default) (color 0 0 0 0)) 73 | (uuid 1cb08eec-b563-44e0-baa3-0ea854130d13) 74 | ) 75 | (wire (pts (xy 156.21 81.28) (xy 153.67 81.28)) 76 | (stroke (width 0) (type default) (color 0 0 0 0)) 77 | (uuid 337a7bea-85cf-4fe6-98b5-e546e71b3c52) 78 | ) 79 | (wire (pts (xy 163.83 81.28) (xy 166.37 81.28)) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (uuid f0e36f83-acb3-4ec1-9c4f-430b6a22fa20) 82 | ) 83 | 84 | (hierarchical_label "IN+" (shape input) (at 166.37 81.28 0) 85 | (effects (font (size 1.27 1.27)) (justify left)) 86 | (uuid 131a7017-13b8-477e-92e5-929c0753e666) 87 | ) 88 | (hierarchical_label "IN-" (shape input) (at 166.37 93.98 0) 89 | (effects (font (size 1.27 1.27)) (justify left)) 90 | (uuid 4693d00b-1ed7-45e5-b37e-b9414dca6297) 91 | ) 92 | (hierarchical_label "OUT-" (shape output) (at 153.67 93.98 180) 93 | (effects (font (size 1.27 1.27)) (justify right)) 94 | (uuid 9a6fcc9b-3743-4970-900d-f57e001b391f) 95 | ) 96 | (hierarchical_label "OUT+" (shape output) (at 153.67 81.28 180) 97 | (effects (font (size 1.27 1.27)) (justify right)) 98 | (uuid b7263323-d1fb-48f8-8395-91d702e917c5) 99 | ) 100 | 101 | (symbol (lib_id "Device:C") (at 160.02 81.28 270) (unit 1) 102 | (in_bom yes) (on_board yes) 103 | (uuid 00000000-0000-0000-0000-00005dab6859) 104 | (property "Reference" "C1" (id 0) (at 160.02 74.8792 90)) 105 | (property "Value" "100n" (id 1) (at 160.02 77.1906 90)) 106 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 156.21 82.2452 0) 107 | (effects (font (size 1.27 1.27)) hide) 108 | ) 109 | (property "Datasheet" "~" (id 3) (at 160.02 81.28 0) 110 | (effects (font (size 1.27 1.27)) hide) 111 | ) 112 | (pin "1" (uuid ee56b4cb-b3d6-4da6-b6d9-0c040677f202)) 113 | (pin "2" (uuid 29354fe3-c4f5-4735-915c-8d36dce7582d)) 114 | ) 115 | 116 | (symbol (lib_id "Device:C") (at 160.02 93.98 90) (mirror x) (unit 1) 117 | (in_bom yes) (on_board yes) 118 | (uuid 00000000-0000-0000-0000-00005dab685f) 119 | (property "Reference" "C2" (id 0) (at 160.02 87.5792 90)) 120 | (property "Value" "100n" (id 1) (at 160.02 89.8906 90)) 121 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 163.83 94.9452 0) 122 | (effects (font (size 1.27 1.27)) hide) 123 | ) 124 | (property "Datasheet" "~" (id 3) (at 160.02 93.98 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (pin "1" (uuid d0112f65-b2f2-4c4f-be6e-6fff6e505553)) 128 | (pin "2" (uuid 6fc834fe-898d-4621-9e75-d2d03d7aa51a)) 129 | ) 130 | ) 131 | -------------------------------------------------------------------------------- /PCIexpress_x16_low/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 250a3fd9-cb6e-4ecc-a3b2-66cec589ff05) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x16_low") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 48e48226-3a46-46da-92ec-1a1f5080b066) 96 | ) 97 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid bfc5d0d0-2b2d-499c-8176-3aa8e1229dc1) 99 | ) 100 | 101 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 000eb7f3-ec84-4174-8dc9-4d022e55c102) 104 | ) 105 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 378e9098-ce9a-4f1d-b5c0-81505698b0f4) 108 | ) 109 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 84315c16-b003-4e0a-98b3-aaa031a1f3a3) 112 | ) 113 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 97277a13-8d63-4101-8e32-3b089ff5d00a) 116 | ) 117 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid 9d22bc90-e3dd-468e-a720-61130979cbf5) 120 | ) 121 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid c93cc0f0-a279-4417-acf0-86bdfe3c2853) 124 | ) 125 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid e2ffe0c7-546d-49ab-bc3e-d42342b2ac1a) 128 | ) 129 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid fe25b220-9e75-4691-bf1f-e78e8e3872c0) 132 | ) 133 | 134 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 135 | (effects (font (size 1.27 1.27)) (justify right)) 136 | (uuid 2816234e-4bc8-4a37-a8e7-ee99776f501b) 137 | ) 138 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 526c894f-a1b0-4168-b22f-b67c007f7980) 141 | ) 142 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 143 | (effects (font (size 1.27 1.27)) (justify left)) 144 | (uuid 96bb3b7e-80e7-4e33-8a68-01f3884f4729) 145 | ) 146 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid b470f304-47fc-495e-9fee-1b7457b51402) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid 77757137-03f7-44cb-b4a2-47050cc410c8)) 167 | (pin "2" (uuid 120f7b0a-eef4-45db-a837-426e15874bf9)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid 061b404c-7465-4f3b-801d-af9adfcbe248)) 186 | (pin "2" (uuid 0c396645-f8a5-49c1-91a8-f6c58751540d)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 2f5e2823-5b88-4c8c-9924-203f0aeeb063)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid bbfd714e-4f77-4e2d-8dbe-b4bd8d38e281)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x1_half/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid ed8223dd-215c-4989-83f7-91dfcbbbb925) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x1_half") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 0b6bb563-179f-46ac-8090-3427722eace4) 96 | ) 97 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid ec0ad142-5783-4ed6-ab11-9dd8f7fea21c) 99 | ) 100 | 101 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 12b47cd8-2510-4276-9f6b-96f99cc391cd) 104 | ) 105 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 25ba6eac-905f-4542-9ad5-bb2ab3848383) 108 | ) 109 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 5a7c6f26-5dfd-40b2-8e1e-c076bac34794) 112 | ) 113 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 72eecb8e-6f5b-4e13-9cba-2d58503ad6ad) 116 | ) 117 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid 89967964-d15f-4a99-8dd0-b89a3e5883fa) 120 | ) 121 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid 99669a66-f6df-49a9-9a0d-27e91cfc0ea1) 124 | ) 125 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid ba23bc8d-d48e-405c-904d-7f42df5b6833) 128 | ) 129 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid e42e51e9-85a8-45e0-98c6-540d9aa23200) 132 | ) 133 | 134 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 17cb75d9-643d-43e4-a0cd-507487cfbef8) 137 | ) 138 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 8a35a9de-5aff-4ce1-b566-6ff82cdba365) 141 | ) 142 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 143 | (effects (font (size 1.27 1.27)) (justify right)) 144 | (uuid 98f1fc5e-d03c-404b-9563-5547d9f6d1a4) 145 | ) 146 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid ba3e71b0-8cee-4f1a-b90e-2a30cfe238f3) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid e357b22a-f6c0-4eda-b188-87895930e796)) 167 | (pin "2" (uuid e7b98e2c-3c19-42f8-84ca-af8a676244cf)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid 3a6625f6-1aa7-4345-ab22-0a6fabe5ab0c)) 186 | (pin "2" (uuid e65af0cd-04c5-4758-beff-6174d46fc680)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid fff50dcc-e39d-48e8-80db-780830931d74)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid 9cbb6d7f-9f56-4744-b0f9-61a7a953cff6)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x1_low/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid adf837af-9a0c-43d4-8154-83ba1b65c12e) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x1_low") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 25410a3d-3634-4975-bb2a-e3734cd7889a) 96 | ) 97 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid 7adced22-ed0d-4e37-89a3-8a04a97d3b1f) 99 | ) 100 | 101 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 01793114-c2d6-44ec-9955-eaa9a471a1d2) 104 | ) 105 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 212bce38-abc4-4707-a928-74c3ef370881) 108 | ) 109 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 554ee623-78db-43f3-9c61-08d48a3c7b98) 112 | ) 113 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 88eaac49-1e03-4e27-9809-91500da71aad) 116 | ) 117 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid 9fb73306-d606-4a84-be3e-b889d27d2fca) 120 | ) 121 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid ac46ae60-18dc-42ee-8ae1-5594023ee9e8) 124 | ) 125 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid cc442476-007a-45aa-9e94-3724914bfec7) 128 | ) 129 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid f2805a60-6169-4640-805d-c4b1e295eb6c) 132 | ) 133 | 134 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 1a329948-473e-4f5b-bbb6-ce520ae70111) 137 | ) 138 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 29a2b000-8dc8-44a3-ad75-ab38cdc0c030) 141 | ) 142 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 143 | (effects (font (size 1.27 1.27)) (justify left)) 144 | (uuid 94f9ac79-848c-48be-a8bf-2ef302a7fe78) 145 | ) 146 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 147 | (effects (font (size 1.27 1.27)) (justify right)) 148 | (uuid d18d180a-cd24-4b9f-9c42-ce306d2ec0f3) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid 3ea1b279-9ce8-4a76-9d98-4dca7164a1bb)) 167 | (pin "2" (uuid c7f50931-44a7-4278-966c-4fff78ff8657)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid d6110c1e-a684-4c84-9387-d70b3118f5f3)) 186 | (pin "2" (uuid a030c48a-1a44-403b-b30a-d493908f545b)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 12f18409-3b5e-4dbd-a9bc-ae0f54bd6a00)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid 6b73e00f-7282-4e83-b7ab-68c936abc7e4)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x4_full/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 128a9674-ec2a-4eff-bcb8-6d82ed43586d) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x4_full") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 062fedf4-1873-451e-8b43-7e89387bd752) 96 | ) 97 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid 36323ab6-a48f-4184-bcc1-78058f83a426) 99 | ) 100 | 101 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 02258f2a-4b4e-4447-a025-9c759398b733) 104 | ) 105 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 0916b27b-bdb3-4e44-bed6-02d325bb7129) 108 | ) 109 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 61c1d003-1ad2-49b5-bf67-f67918a9b895) 112 | ) 113 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 768cc90e-5b16-4b75-bcfe-543667f78a66) 116 | ) 117 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid 8ade48af-e6c2-426d-a112-384c79c2e616) 120 | ) 121 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid c41f0d62-1aff-4cf5-a581-c94ad177396a) 124 | ) 125 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid d39e7b08-2014-43ad-9563-f368753ad0b8) 128 | ) 129 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid f3e42046-94f2-4291-a89f-8f1702ce5510) 132 | ) 133 | 134 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 1903e581-13aa-4114-a4cc-7ae051db9f74) 137 | ) 138 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 139 | (effects (font (size 1.27 1.27)) (justify left)) 140 | (uuid 43e2f7d8-0593-434c-8031-4959590f1d6b) 141 | ) 142 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 143 | (effects (font (size 1.27 1.27)) (justify right)) 144 | (uuid 66393567-35d7-45b7-887a-c6d064aad835) 145 | ) 146 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 147 | (effects (font (size 1.27 1.27)) (justify right)) 148 | (uuid 869e4fd0-abf6-478b-b5b3-e05ad67162d8) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid 2f61d983-1e1e-400d-a02d-167ebd6ca240)) 167 | (pin "2" (uuid 7d4045d5-89f6-4f2f-b862-709a59792641)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid ef12be5d-4a65-45a8-8286-ebc7cd448667)) 186 | (pin "2" (uuid fa0477f0-629f-4aef-aebc-9812ebe5e760)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 45c3732f-2317-4c25-bfe8-b0e76e9a87ea)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid 93965d9a-cc1d-426a-b59c-06948f0e9d2e)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x4_half/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 99ca4bd8-2e63-4ea9-b98f-e74603651e6b) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x4_half") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 23a2014e-d81a-4c89-97b8-52255d3e846e) 96 | ) 97 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid 311beb69-b879-496d-b3d2-f597f0850932) 99 | ) 100 | 101 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 13eb3cb9-7ff0-4ae3-bc8d-59fc5b9ab7e8) 104 | ) 105 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 154f9799-bc5f-4518-9bd0-587ba8a8d0bc) 108 | ) 109 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 3b44821f-e994-48e6-a4a3-d1e1f9e6e8ef) 112 | ) 113 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 45fa70be-f5d7-4676-be05-d5cc8fc6b0c0) 116 | ) 117 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid 5a0974d0-8d27-44ca-b235-defd19478a1d) 120 | ) 121 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid 64d9d52b-eea5-4ea0-86c8-7b0e98f3f813) 124 | ) 125 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid f033382c-7cf9-4c93-9f73-001866da1cea) 128 | ) 129 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid fc08a65b-4b3d-4e86-8adf-93f8b583b1e1) 132 | ) 133 | 134 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 2e68228f-ae59-491d-bcb2-ba04659d4b02) 137 | ) 138 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid a4055922-a678-4d22-a692-b1df88eec3d6) 141 | ) 142 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 143 | (effects (font (size 1.27 1.27)) (justify right)) 144 | (uuid b1c17637-0bf4-43f5-a347-ec3723e1cf80) 145 | ) 146 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid e4ee9276-525d-4d29-85e6-0404431316d1) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid 4c54844b-d12b-4535-a626-3a4dd55b24f4)) 167 | (pin "2" (uuid 8736ae77-2027-4b91-9b7c-a4be19bb2169)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid 64ecabf6-7eda-4f1b-b906-f682d0e58cb1)) 186 | (pin "2" (uuid 7f45535d-e2da-4b27-8485-7d6026453d1f)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 5638ff06-cee5-42e7-bb72-8d2d825803c9)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid dc9c3413-1b56-4301-a8d7-41707326fbf7)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x4_low/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid b9e0c483-e79a-424b-9ea0-0c802172ffb7) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x4_low") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid cbe1d80d-fdf9-4e76-8dbc-9189d5f68d38) 96 | ) 97 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid f36bd5da-35a9-4869-97b4-1b572dd7a087) 99 | ) 100 | 101 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 00bd7167-341a-4bb4-a2d1-f968918efd93) 104 | ) 105 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 28cadfc7-bcc8-4d02-b677-5dd6fbbfa532) 108 | ) 109 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 2b75a342-0619-4c5f-8f65-0d5708c03f8d) 112 | ) 113 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid cc242e72-7d06-4dac-ac4a-d9dfafc32060) 116 | ) 117 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid da1df414-5631-411d-920b-c7ae94ef660c) 120 | ) 121 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid daf6e4a4-b021-48ee-aaba-7a5ec6513358) 124 | ) 125 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid e8861868-2993-4370-aff0-cc3521a127b5) 128 | ) 129 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid fbd84550-c285-46ed-beff-8b197fd0bdb8) 132 | ) 133 | 134 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 27870b84-1831-49bf-b024-e9661ee0c8e1) 137 | ) 138 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 512c4798-8da5-46f1-acf9-5744147324dd) 141 | ) 142 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 143 | (effects (font (size 1.27 1.27)) (justify right)) 144 | (uuid 5c8f8bd3-0fb5-42de-88fb-336878b927a6) 145 | ) 146 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid d34de92b-c726-4f6a-8a91-892a01ef7fb9) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid e4d805d8-f89d-47e7-bb1f-f8dbda6c1792)) 167 | (pin "2" (uuid 05169fc3-46a5-482d-ae9f-c796f395383e)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid 5e495437-76e7-47d8-b4d9-09e896b3403e)) 186 | (pin "2" (uuid f6024ebe-a4a6-41bc-8df0-f046110d06df)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid b099cefb-f499-4c74-9de3-8db47abe492f)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid 17d7f52a-535c-432f-a8dd-f4e5cfd38aa0)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x8_full/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 538a97f3-7718-40f4-8a6f-9fc30cbd9f4f) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x8_full") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 26b1505e-cf88-4793-a901-21e10f7dd5ec) 96 | ) 97 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid 8c20e126-deb5-4119-87ae-9d9ec0be5e7b) 99 | ) 100 | 101 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 157382ae-197f-45fe-b015-f1cabd6e7484) 104 | ) 105 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 1b7a443b-19bd-4a8f-bbf9-2d91fa981523) 108 | ) 109 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 31a1da60-b083-46f4-88a1-69dfad9deaf3) 112 | ) 113 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 4e5e0370-7c66-4518-b9c3-9e81de202189) 116 | ) 117 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid 4ec30ad0-fda2-4f91-b632-e0042757ee38) 120 | ) 121 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid 50b4707d-e8ed-498c-a7f5-dc735d35835a) 124 | ) 125 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid b3691bd3-9a76-4b15-85b4-62aed83bf257) 128 | ) 129 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid eb85705b-34df-4034-a8c0-b34ff25f2a48) 132 | ) 133 | 134 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 135 | (effects (font (size 1.27 1.27)) (justify right)) 136 | (uuid 08bbb0df-b29e-4739-9edc-542c906d747b) 137 | ) 138 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 2971dc5b-b37f-4cf9-a6aa-6476fcba786e) 141 | ) 142 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 143 | (effects (font (size 1.27 1.27)) (justify left)) 144 | (uuid 34571a83-d4cd-471f-926d-5940dba39258) 145 | ) 146 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid af76ea9a-bb53-4b71-8689-07405e823be0) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid ad9b9a0c-f77f-47a2-9321-f10e3badb376)) 167 | (pin "2" (uuid 10a87607-2773-4174-8941-4b4ba70e2647)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid 21940b30-194a-4a69-8a9c-b76b44053df3)) 186 | (pin "2" (uuid 98023dbd-67cb-465e-b278-ce6680f0b96c)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 540f43be-27d3-4b37-b339-4e39493302e4)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid 13100e1c-4541-4285-8d8d-9d722726cfb0)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x8_half/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 096a2e52-3aeb-4df9-928a-8d34a73f869f) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x8_half") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 5e5c63d5-9e21-4411-8a61-89260601cb7f) 96 | ) 97 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid e24dba93-93e8-4c0f-9a83-1660ff5dfcd5) 99 | ) 100 | 101 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 31043824-7424-4286-b3f6-a997cbd96c39) 104 | ) 105 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 3e6a230f-b2c8-4f79-ba4d-50a47bea0549) 108 | ) 109 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 43f88e5e-4189-4b59-b83e-f04420b90e1f) 112 | ) 113 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid a45dc612-324c-4f12-b2cd-16c0d9b056ef) 116 | ) 117 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid daa265f1-1259-4b94-bef4-5c4fbe28fb88) 120 | ) 121 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid e1ca0490-8e4f-48e3-bc42-a141c70f8314) 124 | ) 125 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid ec3b9f53-2141-4955-a8ec-8124c0ed33fa) 128 | ) 129 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid f366f15e-23e4-45be-8f47-b5cc09d24d3d) 132 | ) 133 | 134 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 0df542c7-4987-45f9-a9f9-be15324b8127) 137 | ) 138 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 157c1e8c-a853-47c7-a13c-85ba3ac312ea) 141 | ) 142 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 143 | (effects (font (size 1.27 1.27)) (justify right)) 144 | (uuid 7f0c58bb-f014-4771-a092-b7e1055cb285) 145 | ) 146 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid b85c4db5-00ad-4247-b5ad-d8a2bc24ffa0) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid bb17cc96-0b18-43b5-acd2-7201a84775a6)) 167 | (pin "2" (uuid 9b2430ca-c556-46e0-8624-535ee0f1eb6e)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid 3cac4c3b-213c-4988-960e-d9daac056a2f)) 186 | (pin "2" (uuid e1e6d499-b41b-4743-a9d0-dab8208b0a84)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 0270658f-2ed9-4bef-9682-fef9e503e15b)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid f8de67d2-20b0-4d0d-80c4-a2bc201452f8)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x8_low/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 138accee-b1f8-4d40-885b-a4c421af0b5f) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x8_low") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid a75797dc-33f8-44bd-ab50-2d7dad538a4c) 96 | ) 97 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid d989d5ba-dd83-475d-8326-0c1d9f0e6170) 99 | ) 100 | 101 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 06e13852-0801-4278-a8e1-39b67ac03067) 104 | ) 105 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 73521490-6bc8-4a54-bf62-022d98a6797b) 108 | ) 109 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 7c77275f-fcd6-4b03-9f73-e2cc435c04a2) 112 | ) 113 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid b27aeb11-0710-46a4-9b58-da66826cc23c) 116 | ) 117 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid b9d80a62-33c5-4c0f-8c85-a2e2778b852c) 120 | ) 121 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid ccc9129d-7d58-4b08-9c83-dc8bb223c3b0) 124 | ) 125 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid e28bd26d-0269-450a-a75a-925607c0334a) 128 | ) 129 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid f984b941-ac1b-4786-ac7e-5a3f8d530bf0) 132 | ) 133 | 134 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 135 | (effects (font (size 1.27 1.27)) (justify right)) 136 | (uuid 560c5408-35da-4f17-ad93-ebff4545c710) 137 | ) 138 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 595c76c5-b9dd-4911-8646-86cb029a2ea8) 141 | ) 142 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 143 | (effects (font (size 1.27 1.27)) (justify left)) 144 | (uuid 8e56861f-3e22-4790-90a2-8f08f13ad3b3) 145 | ) 146 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid 9478b91d-f06c-46c4-826a-83065824199c) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid 92e685dc-6258-40e8-88b3-b39b5d4e3eaa)) 167 | (pin "2" (uuid 41226e20-4e27-4e1b-8ecc-a5c74eb10528)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid b7bb03c1-865f-4526-9489-aa0f7043a7e0)) 186 | (pin "2" (uuid d5ee8607-b6f8-4805-857f-f8e7188c8825)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 7d7f3204-832e-42d0-ba6c-9e9dd86cee80)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid 17867cc3-9e6c-4166-9af7-20ba90430fea)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x16_full/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid b8934dd1-188a-4b5b-9b2d-808d093865e6) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x16_full") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid b0d26691-0309-4137-baa3-dcd8124ea6cc) 96 | ) 97 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid d453e801-90d3-40e2-86f0-7deb398650d7) 99 | ) 100 | 101 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 68067853-abdc-4741-bc6b-0c7ad2456b9a) 104 | ) 105 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 77aeecd1-f03c-414e-b2aa-2dbf37e3c963) 108 | ) 109 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 7c3da363-0a3a-41fb-83e1-6f67dc956281) 112 | ) 113 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 999307f4-ad7d-41a9-9257-4c18f0b61e97) 116 | ) 117 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid a39b2f5f-0b5d-4b28-acd9-442f08a94a42) 120 | ) 121 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid b08d4d60-26fa-49c5-af74-4c06392d1976) 124 | ) 125 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid c4f4abdb-0996-4a80-b74d-5ad5cd697065) 128 | ) 129 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid ef806744-fee2-4a16-8dcd-f30082a3548a) 132 | ) 133 | 134 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 0d548300-e022-45cd-be3a-329e9263e777) 137 | ) 138 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 157cd93d-435b-4f08-aecb-fb9691801350) 141 | ) 142 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 143 | (effects (font (size 1.27 1.27)) (justify right)) 144 | (uuid 5e98e2d4-430e-4aca-a75e-0a4bf882ae55) 145 | ) 146 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid 9355d3ac-199f-485c-9d26-e8600ae809d6) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid 096d1524-5069-4aee-8a98-fd900e2bb300)) 167 | (pin "2" (uuid cbd0dfd0-b62b-467b-8e31-2132a4b66807)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid ee247b23-66eb-4304-8a31-d0e7213ea0d7)) 186 | (pin "2" (uuid 3453744a-d022-4e09-ae7b-7825d937fe49)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 5fd3954c-ecc6-4115-b72c-e38a4c2e3bd2)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid 654fc9b0-af96-4ef0-8bfd-b2e1164fe55e)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x16_half/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid 05d0aa2b-6e6a-4215-8b40-75516d8855ed) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x16_half") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 65f70909-ce3d-4184-977c-d2c172ca5d29) 96 | ) 97 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid bc1a10a8-a65d-4c4b-bf5d-da24fb705fed) 99 | ) 100 | 101 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 327743e5-7ccd-459b-85a8-160c81c05c4f) 104 | ) 105 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 47529214-216d-4b63-9bd7-421604996be5) 108 | ) 109 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 4e8c264a-d0cd-4c65-a356-e38142431591) 112 | ) 113 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 67eed78b-5d3c-4ff2-8f43-7f60cc3c2b31) 116 | ) 117 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid 7e823f53-68cf-4669-9437-13f8874c162a) 120 | ) 121 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid b0946702-3925-47b5-89c5-d5e4fdc0f413) 124 | ) 125 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid b3a77e91-2c00-43ce-8209-6a4c3b4f3979) 128 | ) 129 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid ce7ad249-e378-48ed-bee8-bc465b1d6acc) 132 | ) 133 | 134 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 13a44d49-9024-44a0-96f3-656071f03d25) 137 | ) 138 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 6ebf156e-f513-4b28-a1ea-07c4286b0b95) 141 | ) 142 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 143 | (effects (font (size 1.27 1.27)) (justify right)) 144 | (uuid b06be224-7a36-4672-b9c4-d238b85ed9ea) 145 | ) 146 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid e742b5bf-05f8-4df4-aa44-829e811b7cf7) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid 27ec87de-5085-47e1-ba89-5a5ba1a0d372)) 167 | (pin "2" (uuid 02b079f7-023f-4c1a-a1d8-434b4d098428)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid d6dcdcdc-5472-4de8-9a8f-7a98a7f8f0c1)) 186 | (pin "2" (uuid 9c55c179-6e3f-45e2-8706-3b485861382d)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 0ade963a-47ec-4acf-9b97-ea363c6d60d5)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid c25b7a8d-2f87-459d-898c-78e90bcec21a)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /PCIexpress_x1_full/term.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid fceef7dc-ba0d-4455-81b3-92ef8ddf7113) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "PCIexpress_x1_full") 9 | (company "Author: Luca Anastasio") 10 | ) 11 | 12 | (lib_symbols 13 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 14 | (property "Reference" "R" (id 0) (at 2.032 0 90) 15 | (effects (font (size 1.27 1.27))) 16 | ) 17 | (property "Value" "R" (id 1) (at 0 0 90) 18 | (effects (font (size 1.27 1.27))) 19 | ) 20 | (property "Footprint" "" (id 2) (at -1.778 0 90) 21 | (effects (font (size 1.27 1.27)) hide) 22 | ) 23 | (property "Datasheet" "~" (id 3) (at 0 0 0) 24 | (effects (font (size 1.27 1.27)) hide) 25 | ) 26 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 27 | (effects (font (size 1.27 1.27)) hide) 28 | ) 29 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 30 | (effects (font (size 1.27 1.27)) hide) 31 | ) 32 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 33 | (effects (font (size 1.27 1.27)) hide) 34 | ) 35 | (symbol "R_0_1" 36 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | ) 41 | (symbol "R_1_1" 42 | (pin passive line (at 0 3.81 270) (length 1.27) 43 | (name "~" (effects (font (size 1.27 1.27)))) 44 | (number "1" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin passive line (at 0 -3.81 90) (length 1.27) 47 | (name "~" (effects (font (size 1.27 1.27)))) 48 | (number "2" (effects (font (size 1.27 1.27)))) 49 | ) 50 | ) 51 | ) 52 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 53 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 54 | (effects (font (size 1.27 1.27)) hide) 55 | ) 56 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 57 | (effects (font (size 1.27 1.27))) 58 | ) 59 | (property "Footprint" "" (id 2) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "Datasheet" "" (id 3) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_keywords" "global power" (id 4) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "GND_0_1" 72 | (polyline 73 | (pts 74 | (xy 0 0) 75 | (xy 0 -1.27) 76 | (xy 1.27 -1.27) 77 | (xy 0 -2.54) 78 | (xy -1.27 -1.27) 79 | (xy 0 -1.27) 80 | ) 81 | (stroke (width 0) (type default) (color 0 0 0 0)) 82 | (fill (type none)) 83 | ) 84 | ) 85 | (symbol "GND_1_1" 86 | (pin power_in line (at 0 0 270) (length 0) hide 87 | (name "GND" (effects (font (size 1.27 1.27)))) 88 | (number "1" (effects (font (size 1.27 1.27)))) 89 | ) 90 | ) 91 | ) 92 | ) 93 | 94 | (junction (at 146.05 90.17) (diameter 0) (color 0 0 0 0) 95 | (uuid 91286a85-64d5-449f-bc00-53d8007eaf22) 96 | ) 97 | (junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0) 98 | (uuid a7ff23ca-ea78-4b18-935c-dc5c3db2ccfb) 99 | ) 100 | 101 | (wire (pts (xy 120.65 90.17) (xy 123.19 90.17)) 102 | (stroke (width 0) (type default) (color 0 0 0 0)) 103 | (uuid 00c22fa8-a862-49ba-ac70-572ea74f4e1f) 104 | ) 105 | (wire (pts (xy 120.65 100.33) (xy 120.65 102.87)) 106 | (stroke (width 0) (type default) (color 0 0 0 0)) 107 | (uuid 2ded62a1-6588-411b-a4de-c1cfc79f8404) 108 | ) 109 | (wire (pts (xy 146.05 92.71) (xy 146.05 90.17)) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (uuid 2f9219ec-fdfe-4abf-821a-462ac242e37e) 112 | ) 113 | (wire (pts (xy 146.05 90.17) (xy 148.59 90.17)) 114 | (stroke (width 0) (type default) (color 0 0 0 0)) 115 | (uuid 6ae535d3-03bc-4110-9f6b-0054ead5a520) 116 | ) 117 | (wire (pts (xy 146.05 100.33) (xy 146.05 102.87)) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (uuid 90e610fd-41d4-468a-bd4c-ce509348846e) 120 | ) 121 | (wire (pts (xy 118.11 90.17) (xy 120.65 90.17)) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (uuid a71bfe3e-b86b-4109-a34c-3f716ddf8c16) 124 | ) 125 | (wire (pts (xy 120.65 92.71) (xy 120.65 90.17)) 126 | (stroke (width 0) (type default) (color 0 0 0 0)) 127 | (uuid c7621788-c9e7-468e-8ff0-b1040c93d865) 128 | ) 129 | (wire (pts (xy 143.51 90.17) (xy 146.05 90.17)) 130 | (stroke (width 0) (type default) (color 0 0 0 0)) 131 | (uuid cd6e8083-484c-49dc-9e19-c943c57a730f) 132 | ) 133 | 134 | (hierarchical_label "IN+" (shape input) (at 148.59 90.17 0) 135 | (effects (font (size 1.27 1.27)) (justify left)) 136 | (uuid 0156850d-5501-4be5-859c-3825c7f49014) 137 | ) 138 | (hierarchical_label "OUT-" (shape output) (at 118.11 90.17 180) 139 | (effects (font (size 1.27 1.27)) (justify right)) 140 | (uuid 0217cb72-a438-4dfc-a342-ec7cb13b84ed) 141 | ) 142 | (hierarchical_label "OUT+" (shape output) (at 143.51 90.17 180) 143 | (effects (font (size 1.27 1.27)) (justify right)) 144 | (uuid 4c139c79-c9b0-416a-8044-a0e2ca39795d) 145 | ) 146 | (hierarchical_label "IN-" (shape input) (at 123.19 90.17 0) 147 | (effects (font (size 1.27 1.27)) (justify left)) 148 | (uuid cc825e8f-a396-4d19-8ec4-eb92846b3cfd) 149 | ) 150 | 151 | (symbol (lib_id "Device:R") (at 120.65 96.52 0) (unit 1) 152 | (in_bom yes) (on_board yes) 153 | (uuid 00000000-0000-0000-0000-00005d52dcbc) 154 | (property "Reference" "R1" (id 0) (at 122.428 95.3516 0) 155 | (effects (font (size 1.27 1.27)) (justify left)) 156 | ) 157 | (property "Value" "49.9" (id 1) (at 122.428 97.663 0) 158 | (effects (font (size 1.27 1.27)) (justify left)) 159 | ) 160 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 118.872 96.52 90) 161 | (effects (font (size 1.27 1.27)) hide) 162 | ) 163 | (property "Datasheet" "~" (id 3) (at 120.65 96.52 0) 164 | (effects (font (size 1.27 1.27)) hide) 165 | ) 166 | (pin "1" (uuid 987ff506-cd9e-4223-8a21-2855f55f8373)) 167 | (pin "2" (uuid 11cad84a-f961-4b71-975b-1d30cfa505b7)) 168 | ) 169 | 170 | (symbol (lib_id "Device:R") (at 146.05 96.52 0) (unit 1) 171 | (in_bom yes) (on_board yes) 172 | (uuid 00000000-0000-0000-0000-00005d52e298) 173 | (property "Reference" "R2" (id 0) (at 147.828 95.3516 0) 174 | (effects (font (size 1.27 1.27)) (justify left)) 175 | ) 176 | (property "Value" "49.9" (id 1) (at 147.828 97.663 0) 177 | (effects (font (size 1.27 1.27)) (justify left)) 178 | ) 179 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 144.272 96.52 90) 180 | (effects (font (size 1.27 1.27)) hide) 181 | ) 182 | (property "Datasheet" "~" (id 3) (at 146.05 96.52 0) 183 | (effects (font (size 1.27 1.27)) hide) 184 | ) 185 | (pin "1" (uuid 9f981290-f9d1-434a-b4c7-a8ca641bfb44)) 186 | (pin "2" (uuid 5bb45b1a-d5bd-4835-bf6c-e049e03c3300)) 187 | ) 188 | 189 | (symbol (lib_id "power:GND") (at 120.65 102.87 0) (unit 1) 190 | (in_bom yes) (on_board yes) 191 | (uuid 00000000-0000-0000-0000-00005d52e619) 192 | (property "Reference" "#PWR0109" (id 0) (at 120.65 109.22 0) 193 | (effects (font (size 1.27 1.27)) hide) 194 | ) 195 | (property "Value" "GND" (id 1) (at 120.777 107.2642 0)) 196 | (property "Footprint" "" (id 2) (at 120.65 102.87 0) 197 | (effects (font (size 1.27 1.27)) hide) 198 | ) 199 | (property "Datasheet" "" (id 3) (at 120.65 102.87 0) 200 | (effects (font (size 1.27 1.27)) hide) 201 | ) 202 | (pin "1" (uuid 1214581f-6493-4495-8719-6a28995cf123)) 203 | ) 204 | 205 | (symbol (lib_id "power:GND") (at 146.05 102.87 0) (unit 1) 206 | (in_bom yes) (on_board yes) 207 | (uuid 00000000-0000-0000-0000-00005d52ec15) 208 | (property "Reference" "#PWR0110" (id 0) (at 146.05 109.22 0) 209 | (effects (font (size 1.27 1.27)) hide) 210 | ) 211 | (property "Value" "GND" (id 1) (at 146.177 107.2642 0)) 212 | (property "Footprint" "" (id 2) (at 146.05 102.87 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (property "Datasheet" "" (id 3) (at 146.05 102.87 0) 216 | (effects (font (size 1.27 1.27)) hide) 217 | ) 218 | (pin "1" (uuid 8343cbb1-080c-48e0-bfaf-3fa0d572bb4d)) 219 | ) 220 | ) 221 | -------------------------------------------------------------------------------- /Library/PCIexpress.pretty/PCIexpress_x1.kicad_mod: -------------------------------------------------------------------------------- 1 | (module PCIexpress_x1 (layer F.Cu) (tedit 5D338A37) 2 | (descr "PCIexpress x1 footprint") 3 | (tags PCIexpress) 4 | (attr virtual) 5 | (fp_text reference REF** (at 0 -19.75) (layer F.SilkS) hide 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value BUS_PCIexpress_x1 (at 0 -23) (layer F.Fab) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center 261.77 -106.13) (end 263.37 -106.13) (layer Dwgs.User) (width 0.12)) 12 | (fp_circle (center 261.77 -16.6) (end 263.37 -16.6) (layer Dwgs.User) (width 0.12)) 13 | (fp_line (start 261.77 -99.7) (end 261.77 -22.9) (layer Dwgs.User) (width 0.12)) 14 | (fp_line (start 256.65 -99.7) (end 261.77 -99.7) (layer Dwgs.User) (width 0.12)) 15 | (fp_line (start 256.65 -22.9) (end 261.77 -22.9) (layer Dwgs.User) (width 0.12)) 16 | (fp_line (start 256.65 -13.75) (end 256.65 -22.9) (layer Dwgs.User) (width 0.12)) 17 | (fp_line (start 122.5 -13.75) (end 256.65 -13.75) (layer Dwgs.User) (width 0.12)) 18 | (fp_line (start 256.65 -108.15) (end 256.65 -99.7) (layer Dwgs.User) (width 0.12)) 19 | (fp_line (start 122.5 -108.15) (end 256.65 -108.15) (layer Dwgs.User) (width 0.12)) 20 | (fp_line (start 107.5 -15) (end 108 -14.5) (layer Cmts.User) (width 0.12)) 21 | (fp_line (start 107.5 -15) (end 107 -14.5) (layer Cmts.User) (width 0.12)) 22 | (fp_line (start 107.5 -10) (end 107.5 -15) (layer Cmts.User) (width 0.12)) 23 | (fp_text user "Keep out components and traces component side" (at 107.75 -9 180) (layer Cmts.User) 24 | (effects (font (size 1 1) (thickness 0.15))) 25 | ) 26 | (fp_line (start 110.3 -16.1) (end 110.3 -13.75) (layer Dwgs.User) (width 0.12)) 27 | (fp_line (start 105.05 -16.1) (end 110.3 -16.1) (layer Dwgs.User) (width 0.12)) 28 | (fp_line (start 105.05 -14.1) (end 105.05 -16.1) (layer Dwgs.User) (width 0.12)) 29 | (fp_line (start 96.9 -14.1) (end 105.05 -14.1) (layer Dwgs.User) (width 0.12)) 30 | (fp_line (start 96.9 -14.1) (end 96.9 -13.75) (layer Dwgs.User) (width 0.12)) 31 | (fp_text user "Max component height: solder side 2,67mm component side 14,49mm" (at 40 -44.25) (layer Cmts.User) 32 | (effects (font (size 2 2) (thickness 0.25))) 33 | ) 34 | (fp_text user "Keep out components and traces solder side" (at -42.25 -77.5 180) (layer Cmts.User) 35 | (effects (font (size 1 1) (thickness 0.15))) 36 | ) 37 | (fp_line (start -40.07 -13.75) (end -40.07 -89.7) (layer Dwgs.User) (width 0.12)) 38 | (fp_text user "Keep out components and traces both sides" (at 120 -87.75 90) (layer Cmts.User) 39 | (effects (font (size 1 1) (thickness 0.15))) 40 | ) 41 | (fp_line (start 117.42 -108.15) (end 117.42 -13.75) (layer Dwgs.User) (width 0.12)) 42 | (fp_line (start -32.45 -110.15) (end -32.45 -89.7) (layer Dwgs.User) (width 0.12)) 43 | (fp_line (start -45.15 -89.7) (end -32.45 -89.7) (layer Dwgs.User) (width 0.12)) 44 | (fp_line (start -32.45 -67.9) (end 121.5 -67.9) (layer Dwgs.User) (width 0.12)) 45 | (fp_text user "Keep out components and traces both sides" (at 121.893243 -40.134926 90) (layer Cmts.User) 46 | (effects (font (size 1 1) (thickness 0.15))) 47 | ) 48 | (fp_text user "Keep out components and traces solder side" (at -44.75 -36 90) (layer Cmts.User) 49 | (effects (font (size 1 1) (thickness 0.15))) 50 | ) 51 | (fp_line (start -44.15 -58.5) (end -44.15 -13.75) (layer Dwgs.User) (width 0.12)) 52 | (fp_line (start 121.5 -67.9) (end 121.5 -13.75) (layer Dwgs.User) (width 0.12)) 53 | (fp_line (start 92 -108.15) (end 117.42 -108.15) (layer Dwgs.User) (width 0.12)) 54 | (fp_line (start 92 -110.15) (end 92 -108.15) (layer Dwgs.User) (width 0.12)) 55 | (fp_line (start 20.15 -13.75) (end 121.5 -13.75) (layer Dwgs.User) (width 0.12)) 56 | (fp_line (start -32.45 -110.15) (end 92 -110.15) (layer Dwgs.User) (width 0.12)) 57 | (fp_line (start -32.45 -58.5) (end -32.45 -67.9) (layer Dwgs.User) (width 0.12)) 58 | (fp_line (start -45.15 -58.5) (end -32.45 -58.5) (layer Dwgs.User) (width 0.12)) 59 | (fp_text user "Keep out components and traces both sides" (at -21.75 -12) (layer Cmts.User) 60 | (effects (font (size 1 1) (thickness 0.15))) 61 | ) 62 | (fp_line (start 20.15 -12.75) (end 20.15 -13.75) (layer Dwgs.User) (width 0.12)) 63 | (fp_line (start -0.15 -13.75) (end -45.15 -13.75) (layer Dwgs.User) (width 0.12)) 64 | (fp_line (start -0.15 -10.925) (end -0.15 -13.75) (layer Dwgs.User) (width 0.12)) 65 | (fp_text user "Full length max" (at 269 -74 90) (layer Cmts.User) 66 | (effects (font (size 2 2) (thickness 0.25))) 67 | ) 68 | (fp_line (start 266.85 -111.15) (end 266.8527 -12.75) (layer Dwgs.User) (width 0.12)) 69 | (fp_line (start 122.5 -111.15) (end 266.85 -111.15) (layer Dwgs.User) (width 0.12)) 70 | (fp_line (start 122.5027 -12.75) (end 266.8527 -12.75) (layer Dwgs.User) (width 0.12)) 71 | (fp_circle (center -37.65 -94.75) (end -36.05 -94.75) (layer Dwgs.User) (width 0.12)) 72 | (fp_circle (center -37.65 -63.25) (end -36.05 -63.25) (layer Dwgs.User) (width 0.12)) 73 | (fp_poly (pts (xy -11.8 -4.5) (xy -11.8 -8) (xy -3.8 -8) (xy -3.8 -4.5)) (layer B.Mask) (width 0)) 74 | (fp_poly (pts (xy -11.8 -4.5) (xy -11.8 -8) (xy -3.8 -8) (xy -3.8 -4.5)) (layer F.Mask) (width 0)) 75 | (fp_text user "Keep Out Cu" (at -7.75 -3.5) (layer Cmts.User) 76 | (effects (font (size 1 1) (thickness 0.15))) 77 | ) 78 | (fp_line (start -11.8 -8) (end -3.8 -8) (layer Dwgs.User) (width 0.12)) 79 | (fp_circle (center -37.65 -9.35) (end -36.05 -9.35) (layer Dwgs.User) (width 0.12)) 80 | (fp_text user "Half length max" (at 124.5 -72.25 90) (layer Cmts.User) 81 | (effects (font (size 2 2) (thickness 0.25))) 82 | ) 83 | (fp_text user "Full height max" (at 36.75 -108.25) (layer Cmts.User) 84 | (effects (font (size 2 2) (thickness 0.25))) 85 | ) 86 | (fp_text user "Low profile max height" (at 39.25 -71) (layer Cmts.User) 87 | (effects (font (size 2 2) (thickness 0.25))) 88 | ) 89 | (fp_line (start -45.15 -68.9) (end 122.5 -68.9) (layer Dwgs.User) (width 0.12)) 90 | (fp_line (start -45.15 -111.15) (end -45.15 -4.5) (layer Dwgs.User) (width 0.12)) 91 | (fp_line (start 122.5 -111.15) (end 122.5 -12.75) (layer Dwgs.User) (width 0.12)) 92 | (fp_line (start -45.15 -111.15) (end 122.5 -111.15) (layer Dwgs.User) (width 0.12)) 93 | (fp_line (start 20.15 -12.75) (end 122.5027 -12.75) (layer Dwgs.User) (width 0.12)) 94 | (fp_line (start -30.15 -4.5) (end -45.15 -4.5) (layer Dwgs.User) (width 0.12)) 95 | (fp_line (start -30.15 -4.5) (end -30.15 -12.75) (layer Dwgs.User) (width 0.12)) 96 | (fp_line (start -30.15 -12.75) (end -11.8 -12.75) (layer Dwgs.User) (width 0.12)) 97 | (fp_line (start -11.8 -4.5) (end -11.8 -12.75) (layer Dwgs.User) (width 0.12)) 98 | (fp_line (start -3.8 -4.5) (end -3.8 -10.925) (layer Dwgs.User) (width 0.12)) 99 | (fp_line (start -11.8 -4.5) (end -3.8 -4.5) (layer Dwgs.User) (width 0.12)) 100 | (fp_arc (start -1.975 -10.925) (end -0.15 -10.925) (angle -180) (layer Dwgs.User) (width 0.12)) 101 | (fp_poly (pts (xy -0.25 -5.5) (xy 20.25 -5.5) (xy 20.25 0) (xy -0.25 0)) (layer B.Mask) (width 0.2)) 102 | (fp_poly (pts (xy -0.25 -5.5) (xy 20.25 -5.5) (xy 20.25 0) (xy -0.25 0)) (layer F.Mask) (width 0.2)) 103 | (fp_line (start 20.15 -0.5) (end 19.65 0) (layer Dwgs.User) (width 0.12)) 104 | (fp_line (start -0.15 -0.5) (end 0.35 0) (layer Dwgs.User) (width 0.12)) 105 | (fp_line (start 20.15 -0.5) (end 20.15 -12.75) (layer Dwgs.User) (width 0.12)) 106 | (fp_line (start -0.15 -0.5) (end -0.15 -10.925) (layer Dwgs.User) (width 0.12)) 107 | (fp_line (start 13.45 0) (end 19.65 0) (layer Dwgs.User) (width 0.12)) 108 | (fp_line (start 12.95 -0.5) (end 13.45 0) (layer Dwgs.User) (width 0.12)) 109 | (fp_line (start 11.05 -0.5) (end 10.55 0) (layer Dwgs.User) (width 0.12)) 110 | (fp_arc (start 12 -7.45) (end 11.05 -7.45) (angle 180) (layer Dwgs.User) (width 0.12)) 111 | (fp_line (start 12.95 -7.45) (end 12.95 -0.5) (layer Dwgs.User) (width 0.12)) 112 | (fp_line (start 11.05 -7.45) (end 11.05 -0.5) (layer Dwgs.User) (width 0.12)) 113 | (fp_line (start 0.35 0) (end 10.55 0) (layer Dwgs.User) (width 0.12)) 114 | (fp_text user %R (at 0 -17.5) (layer F.Fab) 115 | (effects (font (size 1 1) (thickness 0.15))) 116 | ) 117 | (fp_text user "Keep out components and traces both sides" (at 264.25 -65.25 90) (layer Cmts.User) 118 | (effects (font (size 1 1) (thickness 0.15))) 119 | ) 120 | (pad A13 connect rect (at 14.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 121 | (pad A12 connect rect (at 13.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 122 | (pad A18 connect rect (at 19.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 123 | (pad A17 connect rect (at 18.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 124 | (pad A16 connect rect (at 17.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 125 | (pad A15 connect rect (at 16.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 126 | (pad A14 connect rect (at 15.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 127 | (pad A11 connect rect (at 10.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 128 | (pad A10 connect rect (at 9.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 129 | (pad A9 connect rect (at 8.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 130 | (pad A8 connect rect (at 7.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 131 | (pad A7 connect rect (at 6.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 132 | (pad A6 connect rect (at 5.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 133 | (pad A5 connect rect (at 4.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 134 | (pad A4 connect rect (at 3.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 135 | (pad A3 connect rect (at 2.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 136 | (pad A2 connect rect (at 1.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 137 | (pad A1 connect rect (at 0.5 -4) (size 0.7 3.2) (layers B.Cu)) 138 | (pad B13 connect rect (at 14.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 139 | (pad B12 connect rect (at 13.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 140 | (pad B18 connect rect (at 19.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 141 | (pad B17 connect rect (at 18.5 -4) (size 0.7 3.2) (layers F.Cu)) 142 | (pad B16 connect rect (at 17.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 143 | (pad B15 connect rect (at 16.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 144 | (pad B14 connect rect (at 15.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 145 | (pad B11 connect rect (at 10.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 146 | (pad B10 connect rect (at 9.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 147 | (pad B9 connect rect (at 8.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 148 | (pad B8 connect rect (at 7.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 149 | (pad B7 connect rect (at 6.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 150 | (pad B6 connect rect (at 5.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 151 | (pad B5 connect rect (at 4.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 152 | (pad B4 connect rect (at 3.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 153 | (pad B3 connect rect (at 2.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 154 | (pad B2 connect rect (at 1.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 155 | (pad B1 connect rect (at 0.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 156 | ) 157 | -------------------------------------------------------------------------------- /Library/PCIexpress.pretty/PCIexpress_x4.kicad_mod: -------------------------------------------------------------------------------- 1 | (module PCIexpress_x4 (layer F.Cu) (tedit 5D338A2E) 2 | (descr "PCIexpress x4 footprint") 3 | (tags PCIexpress) 4 | (attr virtual) 5 | (fp_text reference REF** (at 0 -19.75) (layer F.SilkS) hide 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_text value BUS_PCIexpress_x4 (at 0 -23) (layer F.Fab) 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | ) 11 | (fp_circle (center 261.77 -106.13) (end 263.37 -106.13) (layer Dwgs.User) (width 0.12)) 12 | (fp_circle (center 261.77 -16.6) (end 263.37 -16.6) (layer Dwgs.User) (width 0.12)) 13 | (fp_line (start 261.77 -99.7) (end 261.77 -22.9) (layer Dwgs.User) (width 0.12)) 14 | (fp_line (start 256.65 -99.7) (end 261.77 -99.7) (layer Dwgs.User) (width 0.12)) 15 | (fp_line (start 256.65 -22.9) (end 261.77 -22.9) (layer Dwgs.User) (width 0.12)) 16 | (fp_line (start 256.65 -13.75) (end 256.65 -22.9) (layer Dwgs.User) (width 0.12)) 17 | (fp_line (start 122.5 -13.75) (end 256.65 -13.75) (layer Dwgs.User) (width 0.12)) 18 | (fp_line (start 256.65 -108.15) (end 256.65 -99.7) (layer Dwgs.User) (width 0.12)) 19 | (fp_line (start 122.5 -108.15) (end 256.65 -108.15) (layer Dwgs.User) (width 0.12)) 20 | (fp_line (start 107.5 -15) (end 108 -14.5) (layer Cmts.User) (width 0.12)) 21 | (fp_line (start 107.5 -15) (end 107 -14.5) (layer Cmts.User) (width 0.12)) 22 | (fp_line (start 107.5 -10) (end 107.5 -15) (layer Cmts.User) (width 0.12)) 23 | (fp_text user "Keep out components and traces component side" (at 107.75 -9 180) (layer Cmts.User) 24 | (effects (font (size 1 1) (thickness 0.15))) 25 | ) 26 | (fp_line (start 110.3 -16.1) (end 110.3 -13.75) (layer Dwgs.User) (width 0.12)) 27 | (fp_line (start 105.05 -16.1) (end 110.3 -16.1) (layer Dwgs.User) (width 0.12)) 28 | (fp_line (start 105.05 -14.1) (end 105.05 -16.1) (layer Dwgs.User) (width 0.12)) 29 | (fp_line (start 96.9 -14.1) (end 105.05 -14.1) (layer Dwgs.User) (width 0.12)) 30 | (fp_line (start 96.9 -14.1) (end 96.9 -13.75) (layer Dwgs.User) (width 0.12)) 31 | (fp_text user "Max component height: solder side 2,67mm component side 14,49mm" (at 40 -44.25) (layer Cmts.User) 32 | (effects (font (size 2 2) (thickness 0.25))) 33 | ) 34 | (fp_text user "Keep out components and traces solder side" (at -42.25 -77.5 180) (layer Cmts.User) 35 | (effects (font (size 1 1) (thickness 0.15))) 36 | ) 37 | (fp_line (start -40.07 -13.75) (end -40.07 -89.7) (layer Dwgs.User) (width 0.12)) 38 | (fp_text user "Keep out components and traces both sides" (at 120 -87.75 90) (layer Cmts.User) 39 | (effects (font (size 1 1) (thickness 0.15))) 40 | ) 41 | (fp_line (start 117.42 -108.15) (end 117.42 -13.75) (layer Dwgs.User) (width 0.12)) 42 | (fp_line (start -32.45 -110.15) (end -32.45 -89.7) (layer Dwgs.User) (width 0.12)) 43 | (fp_line (start -45.15 -89.7) (end -32.45 -89.7) (layer Dwgs.User) (width 0.12)) 44 | (fp_line (start -32.45 -67.9) (end 121.5 -67.9) (layer Dwgs.User) (width 0.12)) 45 | (fp_text user "Keep out components and traces both sides" (at 121.893243 -40.134926 90) (layer Cmts.User) 46 | (effects (font (size 1 1) (thickness 0.15))) 47 | ) 48 | (fp_text user "Keep out components and traces solder side" (at -44.75 -36 90) (layer Cmts.User) 49 | (effects (font (size 1 1) (thickness 0.15))) 50 | ) 51 | (fp_line (start -44.15 -58.5) (end -44.15 -13.75) (layer Dwgs.User) (width 0.12)) 52 | (fp_line (start 121.5 -67.9) (end 121.5 -13.75) (layer Dwgs.User) (width 0.12)) 53 | (fp_line (start 92 -108.15) (end 117.42 -108.15) (layer Dwgs.User) (width 0.12)) 54 | (fp_line (start 92 -110.15) (end 92 -108.15) (layer Dwgs.User) (width 0.12)) 55 | (fp_line (start 34.15 -13.75) (end 121.5 -13.75) (layer Dwgs.User) (width 0.12)) 56 | (fp_line (start -32.45 -110.15) (end 92 -110.15) (layer Dwgs.User) (width 0.12)) 57 | (fp_line (start -32.45 -58.5) (end -32.45 -67.9) (layer Dwgs.User) (width 0.12)) 58 | (fp_line (start -45.15 -58.5) (end -32.45 -58.5) (layer Dwgs.User) (width 0.12)) 59 | (fp_text user "Keep out components and traces both sides" (at -21.75 -12) (layer Cmts.User) 60 | (effects (font (size 1 1) (thickness 0.15))) 61 | ) 62 | (fp_line (start 34.15 -12.75) (end 34.15 -13.75) (layer Dwgs.User) (width 0.12)) 63 | (fp_line (start -0.15 -13.75) (end -45.15 -13.75) (layer Dwgs.User) (width 0.12)) 64 | (fp_line (start -0.15 -10.925) (end -0.15 -13.75) (layer Dwgs.User) (width 0.12)) 65 | (fp_text user "Full length max" (at 269 -74 90) (layer Cmts.User) 66 | (effects (font (size 2 2) (thickness 0.25))) 67 | ) 68 | (fp_line (start 266.85 -111.15) (end 266.8527 -12.75) (layer Dwgs.User) (width 0.12)) 69 | (fp_line (start 122.5 -111.15) (end 266.85 -111.15) (layer Dwgs.User) (width 0.12)) 70 | (fp_line (start 122.5027 -12.75) (end 266.8527 -12.75) (layer Dwgs.User) (width 0.12)) 71 | (fp_circle (center -37.65 -94.75) (end -36.05 -94.75) (layer Dwgs.User) (width 0.12)) 72 | (fp_circle (center -37.65 -63.25) (end -36.05 -63.25) (layer Dwgs.User) (width 0.12)) 73 | (fp_poly (pts (xy -11.8 -4.5) (xy -11.8 -8) (xy -3.8 -8) (xy -3.8 -4.5)) (layer B.Mask) (width 0)) 74 | (fp_poly (pts (xy -11.8 -4.5) (xy -11.8 -8) (xy -3.8 -8) (xy -3.8 -4.5)) (layer F.Mask) (width 0)) 75 | (fp_text user "Keep Out Cu" (at -7.75 -3.5) (layer Cmts.User) 76 | (effects (font (size 1 1) (thickness 0.15))) 77 | ) 78 | (fp_line (start -11.8 -8) (end -3.8 -8) (layer Dwgs.User) (width 0.12)) 79 | (fp_circle (center -37.65 -9.35) (end -36.05 -9.35) (layer Dwgs.User) (width 0.12)) 80 | (fp_text user "Half length max" (at 124.5 -72.25 90) (layer Cmts.User) 81 | (effects (font (size 2 2) (thickness 0.25))) 82 | ) 83 | (fp_text user "Full height max" (at 36.75 -108.25) (layer Cmts.User) 84 | (effects (font (size 2 2) (thickness 0.25))) 85 | ) 86 | (fp_text user "Low profile max height" (at 39.25 -71) (layer Cmts.User) 87 | (effects (font (size 2 2) (thickness 0.25))) 88 | ) 89 | (fp_line (start -45.15 -68.9) (end 122.5 -68.9) (layer Dwgs.User) (width 0.12)) 90 | (fp_line (start -45.15 -111.15) (end -45.15 -4.5) (layer Dwgs.User) (width 0.12)) 91 | (fp_line (start 122.5 -111.15) (end 122.5 -12.75) (layer Dwgs.User) (width 0.12)) 92 | (fp_line (start -45.15 -111.15) (end 122.5 -111.15) (layer Dwgs.User) (width 0.12)) 93 | (fp_line (start 34.15 -12.75) (end 122.5027 -12.75) (layer Dwgs.User) (width 0.12)) 94 | (fp_line (start -30.15 -4.5) (end -45.15 -4.5) (layer Dwgs.User) (width 0.12)) 95 | (fp_line (start -30.15 -4.5) (end -30.15 -12.75) (layer Dwgs.User) (width 0.12)) 96 | (fp_line (start -30.15 -12.75) (end -11.8 -12.75) (layer Dwgs.User) (width 0.12)) 97 | (fp_line (start -11.8 -4.5) (end -11.8 -12.75) (layer Dwgs.User) (width 0.12)) 98 | (fp_line (start -3.8 -4.5) (end -3.8 -10.925) (layer Dwgs.User) (width 0.12)) 99 | (fp_line (start -11.8 -4.5) (end -3.8 -4.5) (layer Dwgs.User) (width 0.12)) 100 | (fp_arc (start -1.975 -10.925) (end -0.15 -10.925) (angle -180) (layer Dwgs.User) (width 0.12)) 101 | (fp_poly (pts (xy -0.25 -5.5) (xy 34.25 -5.5) (xy 34.25 0) (xy -0.25 0)) (layer B.Mask) (width 0.2)) 102 | (fp_poly (pts (xy -0.25 -5.5) (xy 34.25 -5.5) (xy 34.25 0) (xy -0.25 0)) (layer F.Mask) (width 0.2)) 103 | (fp_line (start 34.15 -0.5) (end 33.65 0) (layer Dwgs.User) (width 0.12)) 104 | (fp_line (start -0.15 -0.5) (end 0.35 0) (layer Dwgs.User) (width 0.12)) 105 | (fp_line (start 34.15 -0.5) (end 34.15 -12.75) (layer Dwgs.User) (width 0.12)) 106 | (fp_line (start -0.15 -0.5) (end -0.15 -10.925) (layer Dwgs.User) (width 0.12)) 107 | (fp_line (start 13.45 0) (end 33.65 0) (layer Dwgs.User) (width 0.12)) 108 | (fp_line (start 12.95 -0.5) (end 13.45 0) (layer Dwgs.User) (width 0.12)) 109 | (fp_line (start 11.05 -0.5) (end 10.55 0) (layer Dwgs.User) (width 0.12)) 110 | (fp_arc (start 12 -7.45) (end 11.05 -7.45) (angle 180) (layer Dwgs.User) (width 0.12)) 111 | (fp_line (start 12.95 -7.45) (end 12.95 -0.5) (layer Dwgs.User) (width 0.12)) 112 | (fp_line (start 11.05 -7.45) (end 11.05 -0.5) (layer Dwgs.User) (width 0.12)) 113 | (fp_line (start 0.35 0) (end 10.55 0) (layer Dwgs.User) (width 0.12)) 114 | (fp_text user %R (at 0 -17.5) (layer F.Fab) 115 | (effects (font (size 1 1) (thickness 0.15))) 116 | ) 117 | (fp_text user "Keep out components and traces both sides" (at 264.25 -65.25 90) (layer Cmts.User) 118 | (effects (font (size 1 1) (thickness 0.15))) 119 | ) 120 | (pad A13 connect rect (at 14.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 121 | (pad A12 connect rect (at 13.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 122 | (pad A18 connect rect (at 19.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 123 | (pad A17 connect rect (at 18.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 124 | (pad A16 connect rect (at 17.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 125 | (pad A15 connect rect (at 16.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 126 | (pad A14 connect rect (at 15.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 127 | (pad A11 connect rect (at 10.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 128 | (pad A10 connect rect (at 9.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 129 | (pad A9 connect rect (at 8.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 130 | (pad A8 connect rect (at 7.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 131 | (pad A7 connect rect (at 6.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 132 | (pad A6 connect rect (at 5.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 133 | (pad A5 connect rect (at 4.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 134 | (pad A4 connect rect (at 3.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 135 | (pad A3 connect rect (at 2.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 136 | (pad A2 connect rect (at 1.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 137 | (pad A1 connect rect (at 0.5 -4) (size 0.7 3.2) (layers B.Cu)) 138 | (pad B13 connect rect (at 14.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 139 | (pad B12 connect rect (at 13.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 140 | (pad B18 connect rect (at 19.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 141 | (pad B17 connect rect (at 18.5 -4) (size 0.7 3.2) (layers F.Cu)) 142 | (pad B16 connect rect (at 17.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 143 | (pad B15 connect rect (at 16.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 144 | (pad B14 connect rect (at 15.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 145 | (pad B11 connect rect (at 10.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 146 | (pad B10 connect rect (at 9.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 147 | (pad B9 connect rect (at 8.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 148 | (pad B8 connect rect (at 7.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 149 | (pad B7 connect rect (at 6.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 150 | (pad B6 connect rect (at 5.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 151 | (pad B5 connect rect (at 4.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 152 | (pad B4 connect rect (at 3.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 153 | (pad B3 connect rect (at 2.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 154 | (pad B2 connect rect (at 1.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 155 | (pad B1 connect rect (at 0.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 156 | (pad B19 connect rect (at 20.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 157 | (pad A19 connect rect (at 20.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 158 | (pad B20 connect rect (at 21.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 159 | (pad B21 connect rect (at 22.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 160 | (pad B22 connect rect (at 23.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 161 | (pad B23 connect rect (at 24.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 162 | (pad B24 connect rect (at 25.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 163 | (pad B25 connect rect (at 26.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 164 | (pad B26 connect rect (at 27.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 165 | (pad B27 connect rect (at 28.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 166 | (pad B28 connect rect (at 29.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 167 | (pad B29 connect rect (at 30.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 168 | (pad B30 connect rect (at 31.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 169 | (pad B31 connect rect (at 32.5 -4) (size 0.7 3.2) (layers F.Cu)) 170 | (pad B32 connect rect (at 33.5 -3.5) (size 0.7 4.2) (layers F.Cu)) 171 | (pad A20 connect rect (at 21.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 172 | (pad A21 connect rect (at 22.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 173 | (pad A22 connect rect (at 23.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 174 | (pad A23 connect rect (at 24.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 175 | (pad A24 connect rect (at 25.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 176 | (pad A25 connect rect (at 26.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 177 | (pad A26 connect rect (at 27.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 178 | (pad A27 connect rect (at 28.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 179 | (pad A28 connect rect (at 29.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 180 | (pad A29 connect rect (at 30.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 181 | (pad A30 connect rect (at 31.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 182 | (pad A31 connect rect (at 32.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 183 | (pad A32 connect rect (at 33.5 -3.5) (size 0.7 4.2) (layers B.Cu)) 184 | ) 185 | --------------------------------------------------------------------------------