├── .gitignore ├── README.md ├── images ├── PCEGT-Back-Original.png ├── PCEGT-Back-Remaster.png ├── PCEGT-Front-Original-small.png ├── PCEGT-Front-Original.png ├── PCEGT-Front-Remaster-small.png ├── PCEGT-Front-Remaster.png ├── PCEGT-Original-small.png ├── PCEGT-Remaster-small.png └── PCEGT-banner.png ├── original-7610-0641-A ├── GT Controller.pretty │ ├── BoardFolk.kicad_mod │ ├── CC800 Electrolytic.kicad_mod │ ├── CN800.kicad_mod │ ├── CN801.kicad_mod │ ├── Diode SOT-23.kicad_mod │ ├── Ferrite.kicad_mod │ ├── IC800.kicad_mod │ ├── J800.kicad_mod │ ├── Resistor 0805 SMD.kicad_mod │ ├── Switch Type 1.kicad_mod │ ├── Switch Type 2.kicad_mod │ ├── Switch Type 3.kicad_mod │ ├── Switch Type 4.kicad_mod │ ├── Switch Type 5.kicad_mod │ └── Turbo Switch.kicad_mod ├── Gerbers │ ├── Controller-Gerbers.zip │ ├── pce-gt-controller-B_Cu.gbr │ ├── pce-gt-controller-B_Mask.gbr │ ├── pce-gt-controller-B_Paste.gbr │ ├── pce-gt-controller-B_Silkscreen.gbr │ ├── pce-gt-controller-Edge_Cuts.gbr │ ├── pce-gt-controller-F_Cu.gbr │ ├── pce-gt-controller-F_Mask.gbr │ ├── pce-gt-controller-F_Paste.gbr │ ├── pce-gt-controller-F_Silkscreen.gbr │ ├── pce-gt-controller-NPTH-drl_map.gbr │ ├── pce-gt-controller-NPTH.drl │ ├── pce-gt-controller-PTH-drl_map.gbr │ ├── pce-gt-controller-PTH.drl │ └── pce-gt-controller-job.gbrjob ├── bom │ └── PC Engine GT Controller PCB.html ├── fp-lib-table ├── ibom.config.ini ├── images │ ├── gt_controller_back.jpg │ ├── gt_controller_back.xcf │ ├── gt_controller_front.jpg │ ├── gt_controller_front.xcf │ ├── original_gt_controller_back.png │ └── original_gt_controller_front.png ├── libs │ ├── BoardFolk.kicad_mod │ └── PCE.kicad_sym ├── pce-gt-controller.kicad_pcb ├── pce-gt-controller.kicad_prl ├── pce-gt-controller.kicad_pro ├── pce-gt-controller.kicad_sch ├── pce-gt-controller.pdf └── sym-lib-table └── remaster ├── bom └── PC Engine GT Controller BOM.html ├── fp-lib-table ├── gerbers ├── pce-gt-controller-B_Cu.gbr ├── pce-gt-controller-B_Mask.gbr ├── pce-gt-controller-B_Paste.gbr ├── pce-gt-controller-B_Silkscreen.gbr ├── pce-gt-controller-Edge_Cuts.gbr ├── pce-gt-controller-F_Cu.gbr ├── pce-gt-controller-F_Mask.gbr ├── pce-gt-controller-F_Paste.gbr ├── pce-gt-controller-F_Silkscreen.gbr ├── pce-gt-controller-NPTH-drl_map.gbr ├── pce-gt-controller-NPTH.drl ├── pce-gt-controller-PTH-drl_map.gbr ├── pce-gt-controller-PTH.drl ├── pce-gt-controller-job.gbrjob └── pce-gt-controller-remaster.zip ├── ibom.config.ini ├── libs ├── BoardFolk.kicad_mod ├── GT Controller.pretty │ ├── BoardFolk.kicad_mod │ ├── CC800 Electrolytic.kicad_mod │ ├── CN800.kicad_mod │ ├── CN801.kicad_mod │ ├── Diode SOT-23.kicad_mod │ ├── Ferrite.kicad_mod │ ├── IC800.kicad_mod │ ├── J800.kicad_mod │ ├── Resistor 0805 SMD.kicad_mod │ ├── Switch Type 1.kicad_mod │ ├── Switch Type 2.kicad_mod │ ├── Switch Type 3.kicad_mod │ ├── Switch Type 4.kicad_mod │ ├── Switch Type 5.kicad_mod │ └── Turbo Switch.kicad_mod └── PCE.kicad_sym ├── pce-gt-controller.kicad_pcb ├── pce-gt-controller.kicad_prl ├── pce-gt-controller.kicad_pro ├── pce-gt-controller.kicad_sch ├── pce-gt-controller.pdf └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- 1 | pce-gt-controller-backups/ 2 | *.lck 3 | fp-info-cache 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PC-Engine-GT-Controller 2 | This repository contains a recreation and a remaster of the 3 | controller board PCB for PC Engine GT Handheld. 4 | 5 | ## Original Controller PCB 6 | ![PCB-Original](images/PCEGT-Original-small.png) 7 | 8 | The original recreation is based on the reverse engineering of the original 9 | PCB and schematics using scanned images of the original 10 | board's copper layers, so should be a reasonably accurate reproduction. 11 | 12 | ## Remaster Controller PCB 13 | ![PCB-Remaster](images/PCEGT-Remaster-small.png) 14 | 15 | The remaster is based on the schematics of the pc engine console controller which 16 | uses logic chips to control the user input into the GT Handheld. 17 | Some functionality is lost using this board, such as using the Link Cable and 18 | no sleep functionality for the screen. 19 | 20 | ## PCB Production 21 | 22 | Minimum track widths, clearances and via sizes are within the standard 23 | offering of modern PCB fabricators. Development was done using JLCPCB and as 24 | such the Gerber files are provided to their specification. 25 | 26 | The design is verified to work as a 2-layer PCB. 27 | 28 | ## Bill of Materials 29 | 30 | Most parts are marked on the board and it is expected that these will be reused 31 | from a donor board. It is completely possible that your particular board uses 32 | different (but compatible) parts so it's advisable to take photos before starting. 33 | 34 | [**Interactive BOM Original**][IBOM-Original] 35 | 36 | [**Interactive BOM Remaster**][IBOM-Remaster] 37 | 38 | ## Thanks 39 | 40 | * Rob Taylor ([@PeepoUK](https://github.com/PeepoUK)) for doing most of 41 | the PCB layout.\ 42 |   43 | * Simon "Aergan" Lock ([@Aergan](https://github.com/Aergan)),\ 44 | Cosam (@cosam_the_great),\ 45 | Dennis (@PointerFunction),\ 46 | Leo Oliveria (@leo__oliveira),\ 47 | Zaxour 阿宅, (@zaxour),\ 48 | Ian Cudlip (@grandoldian)\ 49 | for their insights, support and testing of the prototype boards.\ 50 |   51 | * The rest of the Board Folk Team for their support and general 52 | coolness.\ 53 |   54 | 55 | ## Legal 56 | 57 | As the product of this project is a replica of a proprietary product, the 58 | the author makes no claim of copyright to the schematics nor PCB layouts and 59 | releases these into the public domain, solely for the purposes of study and 60 | historical preservation. 61 | 62 | You are free to produce PCBs based on this project's designs at your own risk 63 | and without limitation, for your own use or for sale and/or repair at a 64 | reasonable price. Attribution is appreciated. The authors are not obliged to 65 | provide support of any kind. 66 | 67 | Under no circumstances will the authors be held responsible or liable in any 68 | way for losses, damages or costs resulting from the use of the information 69 | and/or resources of this project. 70 | 71 | The resources are provided "as-is" without warranty of any kind, either 72 | expressed or implied, including, but not limited to, the implied warranties 73 | of merchantability and fitness for a particular purpose. 74 | 75 | [IBOM-Original]: http://htmlpreview.github.io/?https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/main/original-7610-0641-A/bom/PC%20Engine%20GT%20Controller%20PCB.html 76 | 77 | [IBOM-Remaster]: http://htmlpreview.github.io/?https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/main/remaster/bom/PC%20Engine%20GT%20Controller%20BOM.html 78 | -------------------------------------------------------------------------------- /images/PCEGT-Back-Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-Back-Original.png -------------------------------------------------------------------------------- /images/PCEGT-Back-Remaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-Back-Remaster.png -------------------------------------------------------------------------------- /images/PCEGT-Front-Original-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-Front-Original-small.png -------------------------------------------------------------------------------- /images/PCEGT-Front-Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-Front-Original.png -------------------------------------------------------------------------------- /images/PCEGT-Front-Remaster-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-Front-Remaster-small.png -------------------------------------------------------------------------------- /images/PCEGT-Front-Remaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-Front-Remaster.png -------------------------------------------------------------------------------- /images/PCEGT-Original-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-Original-small.png -------------------------------------------------------------------------------- /images/PCEGT-Remaster-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-Remaster-small.png -------------------------------------------------------------------------------- /images/PCEGT-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/images/PCEGT-banner.png -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/CC800 Electrolytic.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CC800 Electrolytic" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") 4 | (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Polarized capacitor, small symbol") 8 | (property "ki_keywords" "cap capacitor") 9 | (attr through_hole) 10 | (fp_text reference "CC800" (at 1.25 -3.75) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 80708695-ff75-4ed3-97d3-34656ded82b6) 13 | ) 14 | (fp_text value "47uF 6.3v" (at 1.25 3.75) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp c7f19b8c-45d9-41d7-9bcc-d3e0f52a8e7a) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | (tstamp 8a436764-5d46-4d7a-b015-d7227114e84e) 21 | ) 22 | (fp_circle (center -0.01 0) (end 0.27 0.28) 23 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 81a5965a-938e-4c75-9629-57242827dc1a)) 24 | (fp_circle (center 2.484021 0) (end 2.764021 0.28) 25 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 7cde3e57-5ea4-4ce2-bde4-f60e276e2789)) 26 | (fp_circle (center 1.25 0) (end 4 0) 27 | (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp db478fe7-3acb-4fbb-8d92-bb18314232a7)) 28 | (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) 29 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5df90f38-2e2a-438d-9fc5-21da75af2bf2)) 30 | (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) 31 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e84e7e15-248c-497d-b60c-3667264cbb68)) 32 | (fp_circle (center 1.25 0) (end 3.75 0) 33 | (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 4ae98dd9-1ee7-4055-9f3e-f5b13936b5f5)) 34 | (pad "1" smd circle (at 0 0) (size 1.6 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 307cfa0e-2209-4be8-9092-90884ea4414c)) 35 | (pad "2" smd circle (at 2.494021 0) (size 1.6 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f9c190a2-4adb-4527-b75e-71ee5abd85bf)) 36 | (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" 37 | (offset (xyz 0 0 0)) 38 | (scale (xyz 1 1 1)) 39 | (rotate (xyz 0 0 0)) 40 | ) 41 | ) 42 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/CN800.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CN800" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x12, 1.27mm pitch, single row") 4 | (tags "Through hole pin header THT 1x12 1.27mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Generic connector, single row, 01x12, script generated (kicad-library-utils/schlib/autogen/connector/)") 8 | (property "ki_keywords" "connector") 9 | (attr through_hole) 10 | (fp_text reference "CN800" (at 1.05 4.08 180) (layer "F.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp 4806d2ac-96fe-4aa6-a213-c5f576ba58ec) 13 | ) 14 | (fp_text value "Conn_01x12" (at 0.05 5.96 180) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp ec58a6a8-9ea0-4041-b33b-4b44b4a35a77) 17 | ) 18 | (fp_text user "1" (at 8.2 2.26 unlocked) (layer "F.SilkS") 19 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify left bottom)) 20 | (tstamp 97945b01-daf6-499c-9b1f-0214136c511e) 21 | ) 22 | (fp_text user "12" (at -9.89 2.33 unlocked) (layer "F.SilkS") 23 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify left bottom)) 24 | (tstamp c3d16eb4-c6c7-495e-aa0b-fbe3e59fd978) 25 | ) 26 | (fp_text user "${REFERENCE}" (at 6.14 7.31 90) (layer "F.Fab") 27 | (effects (font (size 1 1) (thickness 0.15))) 28 | (tstamp 674ef515-4391-4690-886b-bd02d4ab7437) 29 | ) 30 | (fp_line (start -6.4 -4.61) (end -6.4 -4.61) 31 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 4da9c671-2197-4c3e-99fd-08aae3094390)) 32 | (fp_line (start -6.4 -4.61) (end -6.4 2.16) 33 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 0624027a-6534-4f6a-bac1-6f5ed242b26b)) 34 | (fp_line (start -6.4 2.16) (end 7.54 2.16) 35 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 5e94b650-43a4-4203-8629-5fdf72231896)) 36 | (fp_line (start 7.54 2.16) (end 7.54 -4.61) 37 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 9e4df69a-2662-4bf9-9001-7b6723ff067d)) 38 | (pad "1" smd rect (at 5.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 4f9c1c37-4031-4a55-ac7f-142ec41774dd)) 39 | (pad "2" smd rect (at 4.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 537a2d95-56ce-44c7-af85-fb36ef90e715)) 40 | (pad "3" smd rect (at 3.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp b6150136-2d17-4755-9421-8357ab6726f8)) 41 | (pad "4" smd rect (at 2.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp f458561a-87c1-40b7-bbf7-827ea53a97f7)) 42 | (pad "5" smd rect (at 1.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 9ec8e286-041c-4327-b358-fe235e38a9ab)) 43 | (pad "6" smd rect (at 0.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 4859cbbe-fd0e-4a26-941d-fff8fa877b8d)) 44 | (pad "7" smd rect (at -0.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 4ea7de80-fb64-4711-8170-e997ae2509b1)) 45 | (pad "8" smd rect (at -1.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 097a0ba4-eeb9-44c9-9214-d18be875855d)) 46 | (pad "9" smd rect (at -2.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp dadf5149-a547-42a5-aa41-133f4210209b)) 47 | (pad "10" smd rect (at -3.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp bd052433-1d6d-40d3-849d-5c6bb10d89ed)) 48 | (pad "11" smd rect (at -4.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 9278898b-65cd-4c46-80f1-96e7d43eea8d)) 49 | (pad "12" smd rect (at -5.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 934837a5-c759-4a93-9230-00eb770b5422)) 50 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x12_P1.27mm_Vertical.wrl" 51 | (offset (xyz 0 0 0)) 52 | (scale (xyz 1 1 1)) 53 | (rotate (xyz 0 0 0)) 54 | ) 55 | ) 56 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/CN801.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CN801" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)") 8 | (property "ki_keywords" "connector") 9 | (attr through_hole) 10 | (fp_text reference "CN801" (at 0 -1.56) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp dcb0d819-ba2e-4687-95ba-33857cbc27a8) 13 | ) 14 | (fp_text value "AUDIO" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 25fdb507-dbec-4c0c-9e97-7a198053c8b7) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 4.2 0.68 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp 0fe523f5-9b5f-4946-bf72-6d537f6d4c0e) 21 | ) 22 | (fp_circle (center -1 0.840917) (end -0.59 1.110917) 23 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 350f3ce2-428f-42d9-bd77-a37c69f69786)) 24 | (fp_circle (center 1 0.840917) (end 1.41 1.110917) 25 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp f353e924-2abe-423e-84c6-3cbc33ed4719)) 26 | (pad "1" smd oval (at -1.04125 0.664334) (size 1.6425 2.715) (layers "F.Cu" "F.Mask") (tstamp 47d6a8b6-02fb-48e7-a760-90e2d82c059e)) 27 | (pad "2" smd oval (at 1.04 0.664334) (size 1.6425 2.715) (layers "F.Cu" "F.Mask") (tstamp c4928c62-0f74-42a5-8b2d-9e7cfd1695b2)) 28 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 29 | (offset (xyz 0 0 0)) 30 | (scale (xyz 1 1 1)) 31 | (rotate (xyz 0 0 0)) 32 | ) 33 | ) 34 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Diode SOT-23.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Diode SOT-23" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") 4 | (tags "SOT TO_SOT_SMD") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Dual 100V 215mA high-speed switching diodes, common cathode, SOT-23") 8 | (property "ki_keywords" "diode") 9 | (attr smd) 10 | (fp_text reference "D802" (at 0.16 3.1) (layer "F.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp c97dacf7-2e98-4687-9ecf-4025efc5da62) 13 | ) 14 | (fp_text value "BAV70" (at 0 -2.39) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp ec525560-b84a-4c57-a3dc-6633d57a7503) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0.01) (layer "F.Fab") 19 | (effects (font (size 0.32 0.32) (thickness 0.05))) 20 | (tstamp eee78031-c76e-4bf7-af1e-897741be2113) 21 | ) 22 | (fp_line (start -0.24 0) (end 0.19 0) 23 | (stroke (width 0.4) (type default)) (layer "F.SilkS") (tstamp 07d16174-d89b-4b12-a890-6057565748f6)) 24 | (fp_line (start -1.92 -1.69) (end -1.92 1.71) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2929c9f8-6bdd-4c29-9ca0-0f55987831c9)) 26 | (fp_line (start -1.92 1.71) (end 1.92 1.71) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 766e575f-1d82-4065-8f35-b3b62f23fbc1)) 28 | (fp_line (start 1.92 -1.69) (end -1.92 -1.69) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 347f4a2f-bbf6-4476-9c63-5699a8b13a9b)) 30 | (fp_line (start 1.92 1.71) (end 1.92 -1.69) 31 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f64c781-fae5-4a75-af08-170f36d3546a)) 32 | (fp_line (start -0.65 -1.44) (end 0.65 -1.44) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cae632f-8619-404d-8db2-cf232d386ea8)) 34 | (fp_line (start -0.65 1.46) (end -0.65 -1.44) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 739599bc-c76d-44ca-a851-f547601de0fb)) 36 | (fp_line (start 0.325 1.46) (end -0.65 1.46) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6a4987b-1a02-44a6-b5cf-b209ab927e41)) 38 | (fp_line (start 0.65 -1.44) (end 0.65 1.135) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c8826e6-d81e-4254-9777-7ce664114dd0)) 40 | (fp_line (start 0.65 1.135) (end 0.325 1.46) 41 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c573f68e-a861-4cfe-9b95-3cd4ea6936d2)) 42 | (pad "1" smd roundrect (at 1.1675 0.96 180) (size 1.015 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp dc5fcba9-99b1-4bfc-b276-eeeba4b5cdfe)) 43 | (pad "2" smd roundrect (at 1.1675 -0.94 180) (size 1.015 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp f98c6ca6-d735-46e6-9f47-2c570e2f377d)) 44 | (pad "3" smd roundrect (at -1.1325 0.01 180) (size 1.085 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 84affe80-b70a-425e-bfd6-d0b105dcdb98)) 45 | (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" 46 | (offset (xyz 0 0 0)) 47 | (scale (xyz 1 1 1)) 48 | (rotate (xyz 0 0 0)) 49 | ) 50 | ) 51 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Ferrite.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Ferrite" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 4 | (tags "resistor") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Ferrite bead, small symbol") 8 | (property "ki_keywords" "L ferrite bead inductor filter") 9 | (attr smd) 10 | (fp_text reference "L800" (at -2.56 -0.17 90) (layer "F.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp a50e7e6d-8c98-4286-a01b-a095dbace622) 13 | ) 14 | (fp_text value "FerriteBead_Small" (at 1.66 -0.53 90) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 4a8dafce-4301-4c25-a465-12d39abe1dfd) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0.01 -0.53 90) (layer "F.Fab") 19 | (effects (font (size 0.5 0.5) (thickness 0.08))) 20 | (tstamp d55365ec-d55a-4165-8b40-4739023ef56f) 21 | ) 22 | (fp_line (start 0.01 0.217064) (end 0.01 -0.237064) 23 | (stroke (width 0.3) (type solid)) (layer "F.SilkS") (tstamp eb445175-2247-4e90-8cba-0ed841ad2610)) 24 | (fp_line (start -0.94 -2.21) (end 0.96 -2.21) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9013c75a-e9e9-4387-af97-455e8f0c684a)) 26 | (fp_line (start -0.94 1.15) (end -0.94 -2.21) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e671f47-da57-4d04-9939-788cb5c7e8ec)) 28 | (fp_line (start 0.96 -2.21) (end 0.96 1.15) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bae1a579-5b9d-4510-bbd2-7defab588a22)) 30 | (fp_line (start 0.96 1.15) (end -0.94 1.15) 31 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc9423f6-9461-4423-b3e8-24c99248d016)) 32 | (fp_line (start -0.615 -1.53) (end 0.635 -1.53) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f804009-cfca-432c-845f-778b609345af)) 34 | (fp_line (start -0.615 0.47) (end -0.615 -1.53) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efe3803f-c0b9-402b-8e7e-b8e28001ee1f)) 36 | (fp_line (start 0.635 -1.53) (end 0.635 0.47) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2c6ee37-5ea1-4209-b0a2-1388326d7f38)) 38 | (fp_line (start 0.635 0.47) (end -0.615 0.47) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86c3fc5d-8aa1-47a1-b48b-ab8c4191a55f)) 40 | (pad "1" smd roundrect (at 0.054717 1.614717 90) (size 1.154417 1.854417) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) (tstamp accf5676-b0c3-4f89-828d-17311e5acafa)) 41 | (pad "2" smd roundrect (at 0.01 -1.44 90) (size 1.154417 1.854417) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) (tstamp f86fac6a-e9dd-4ce0-ba29-6683655ac538)) 42 | (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" 43 | (offset (xyz 0 0 0)) 44 | (scale (xyz 1 1 1)) 45 | (rotate (xyz 0 0 0)) 46 | ) 47 | ) 48 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/IC800.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "IC800" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") 4 | (tags "LQFP QFP") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (attr smd) 8 | (fp_text reference "UIC800" (at -8.6 5.68 180) (layer "F.SilkS") 9 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 10 | (tstamp c1dc44cf-2585-466b-8316-d5b265d05d53) 11 | ) 12 | (fp_text value "BU5782K" (at -0.17 5.64 180) (layer "F.Fab") 13 | (effects (font (size 1 1) (thickness 0.15))) 14 | (tstamp d7eac66e-1b36-4ce4-947e-bf2405b0efaa) 15 | ) 16 | (fp_text user "${REFERENCE}" (at -0.17 -0.24 180) (layer "F.Fab") 17 | (effects (font (size 1 1) (thickness 0.15))) 18 | (tstamp 8bc78115-b779-4fa5-a4b8-0929a3d9dd66) 19 | ) 20 | (fp_line (start -3.335 -1.985) (end -1.825 -3.495) 21 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 59257db7-7763-47ea-a109-b98a1d2ee5f5)) 22 | (fp_rect (start -3.35 -3.51) (end 3.4 3.24) 23 | (stroke (width 0.25) (type default)) (fill none) (layer "F.SilkS") (tstamp 3dca18cc-791f-44c7-a3ef-2f2c8ed3412b)) 24 | (fp_line (start -5.35 -3.54) (end -5.35 -0.24) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f86a50e-0054-485a-a851-8aa8ad8eb4eb)) 26 | (fp_line (start -5.35 3.06) (end -5.35 -0.24) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8194e184-a3b5-46c9-ab38-c7b01fe81921)) 28 | (fp_line (start -3.92 -3.99) (end -3.92 -3.54) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed60bf4a-aa11-4abe-80a7-848d2437d3c9)) 30 | (fp_line (start -3.92 -3.54) (end -5.35 -3.54) 31 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c26d534-722c-4cad-a5f6-5b709b906cf8)) 32 | (fp_line (start -3.92 3.06) (end -5.35 3.06) 33 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4eadea6f-0104-4d92-b271-1255415df1fe)) 34 | (fp_line (start -3.92 3.51) (end -3.92 3.06) 35 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96f4d87a-c24f-4661-a1a0-7077378e661d)) 36 | (fp_line (start -3.47 -5.42) (end -3.47 -3.99) 37 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 450fa49a-7383-43cf-bed5-45c7ca8a228e)) 38 | (fp_line (start -3.47 -3.99) (end -3.92 -3.99) 39 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 671f208d-0d83-4b46-83b5-ef2dbc7d8499)) 40 | (fp_line (start -3.47 3.51) (end -3.92 3.51) 41 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48c2e83a-c245-42ab-9014-1c778b4ccc11)) 42 | (fp_line (start -3.47 4.94) (end -3.47 3.51) 43 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 788b11f8-4fd3-45e9-9a2b-92f42a1f51c0)) 44 | (fp_line (start -0.17 -5.42) (end -3.47 -5.42) 45 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d24d9d37-d2ac-4102-8f8d-c5143b9a313c)) 46 | (fp_line (start -0.17 -5.42) (end 3.13 -5.42) 47 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f216d31-ee47-4e7b-a70f-a4f72ef7ae28)) 48 | (fp_line (start -0.17 4.94) (end -3.47 4.94) 49 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51c20af8-2898-4795-8fbb-2c8ea6528e61)) 50 | (fp_line (start -0.17 4.94) (end 3.13 4.94) 51 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 805c1325-50d5-4d92-b927-211cf8da725a)) 52 | (fp_line (start 3.13 -5.42) (end 3.13 -3.99) 53 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 07138540-fc52-476c-b62b-e299aff8c2ba)) 54 | (fp_line (start 3.13 -3.99) (end 3.58 -3.99) 55 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c69c88c-0a26-44e8-bf50-bdbccaa50b9c)) 56 | (fp_line (start 3.13 3.51) (end 3.58 3.51) 57 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f180f3ad-2471-4be1-9260-c7ef17bfee23)) 58 | (fp_line (start 3.13 4.94) (end 3.13 3.51) 59 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bf32070-384a-4d27-b7fa-d37f06830543)) 60 | (fp_line (start 3.58 -3.99) (end 3.58 -3.54) 61 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14640696-5b94-49b4-a5f0-8a2a2b306f40)) 62 | (fp_line (start 3.58 -3.54) (end 5.01 -3.54) 63 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a823ff3-122b-42c6-9bcb-93b8d489235b)) 64 | (fp_line (start 3.58 3.06) (end 5.01 3.06) 65 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 881599ce-207b-42f3-a277-60c2cfc57cea)) 66 | (fp_line (start 3.58 3.51) (end 3.58 3.06) 67 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e1f8f3b-3c6b-426e-bad6-44baf36436e4)) 68 | (fp_line (start 5.01 -3.54) (end 5.01 -0.24) 69 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1be3111-d7aa-4aa6-afe7-c6ca3aaab0e5)) 70 | (fp_line (start 5.01 3.06) (end 5.01 -0.24) 71 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ef21a6b-61af-4b9c-a700-208ba4aaa9f1)) 72 | (fp_line (start -3.67 -2.74) (end -2.67 -3.74) 73 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07575b0b-2e45-4296-a942-da6fc54548bd)) 74 | (fp_line (start -3.67 3.26) (end -3.67 -2.74) 75 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8190eb8c-2d10-4b85-8e0c-c2929990a8fe)) 76 | (fp_line (start -2.67 -3.74) (end 3.33 -3.74) 77 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c5cb490-8cf4-4f8a-b556-ccce9dccfa08)) 78 | (fp_line (start 3.33 -3.74) (end 3.33 3.26) 79 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98a4ebe0-bf8b-4db4-bca6-6fc76b5292e4)) 80 | (fp_line (start 3.33 3.26) (end -3.67 3.26) 81 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a8db27b-a298-429b-b484-bfada67aebc7)) 82 | (pad "1" smd roundrect (at -4.345 -3.04) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp d3cc5016-0bc1-48e6-aed4-6189d747e51e)) 83 | (pad "2" smd roundrect (at -4.345 -2.24) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 7a3803f2-9eef-4d96-8036-fe6ac7b41af4)) 84 | (pad "3" smd roundrect (at -4.345 -1.44) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp ad1cf93d-0905-49c8-863d-32f77bc2b3a0)) 85 | (pad "4" smd roundrect (at -4.345 -0.64) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp c0e7ec49-f35a-4bce-8def-e6e10dc24840)) 86 | (pad "5" smd roundrect (at -4.345 0.16) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b2bbcf1c-6803-44c6-9568-841f1602c156)) 87 | (pad "6" smd roundrect (at -4.345 0.96) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b7553011-330b-49cb-8dd1-0310304ae413)) 88 | (pad "7" smd roundrect (at -4.345 1.76) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 09e83646-f745-4813-bb72-f9561075ff32)) 89 | (pad "8" smd roundrect (at -4.345 2.56) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b863ade0-3f15-434c-bb64-24ded6483618)) 90 | (pad "9" smd roundrect (at -2.9 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 6c9e81be-b4c9-4846-a465-ad01f7705a43)) 91 | (pad "10" smd roundrect (at -2.1 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp e5e56268-fb2c-4876-9f98-357da0152c9e)) 92 | (pad "11" smd roundrect (at -1.3 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 2c9d1046-fc1f-429f-9fa5-a9bc539f5d74)) 93 | (pad "12" smd roundrect (at -0.5 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 06a9bfd5-0e60-4f37-a0c6-89ff05d76a8c)) 94 | (pad "13" smd roundrect (at 0.3 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 90a8a566-14a8-4c16-a017-970f5edbf627)) 95 | (pad "14" smd roundrect (at 1.1 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 17e716ce-1221-4302-b0e2-b27f10fd6b90)) 96 | (pad "15" smd roundrect (at 1.9 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp bc4e9ca0-d13e-47a7-a06f-a9f2374d30c3)) 97 | (pad "16" smd roundrect (at 2.7 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 5f73f251-649e-4c05-8df4-d38fe58de98d)) 98 | (pad "17" smd roundrect (at 4.43 2.56) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 7f64b553-5ac8-4009-b59e-59174d650812)) 99 | (pad "18" smd roundrect (at 4.43 1.76) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp a81aa008-8a53-41d7-9880-b11845056d90)) 100 | (pad "19" smd roundrect (at 4.43 0.96) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 687b20f1-5d3b-463d-a323-adf259d48ead)) 101 | (pad "20" smd roundrect (at 4.43 0.16) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 2eb1572f-f7ab-4d26-8830-2e45d70a4d34)) 102 | (pad "21" smd roundrect (at 4.43 -0.64) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 1edfee17-f62b-40ce-a144-a663bf1b637c)) 103 | (pad "22" smd roundrect (at 4.43 -1.44) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 3a530d4c-2ce7-44ae-86f8-c58c796142c1)) 104 | (pad "23" smd roundrect (at 4.43 -2.24) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 19d46d57-dbbb-4ce4-853c-c03a6517cf97)) 105 | (pad "24" smd roundrect (at 4.43 -3.04) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp fa503179-adca-45eb-9291-be353fdb29a1)) 106 | (pad "25" smd roundrect (at 2.7 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp edf4efbc-ba79-4ca2-bb12-181d4d64a0fb)) 107 | (pad "26" smd roundrect (at 1.9 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 61ae6d41-04ca-43d9-8879-8333a4e39960)) 108 | (pad "27" smd roundrect (at 1.1 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp de463765-ab72-4b73-8b03-0357a3e6358f)) 109 | (pad "28" smd roundrect (at 0.3 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 5aac07ad-0bea-4efa-8c8a-d6190dc9f7db)) 110 | (pad "29" smd roundrect (at -0.5 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 628efb2a-fac3-4270-a0d1-6114f280a462)) 111 | (pad "30" smd roundrect (at -1.3 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 4f5c4111-bb20-4501-9296-b9a4949ff524)) 112 | (pad "31" smd roundrect (at -2.1 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 7caf9c01-0227-4715-8178-c5fbe07c18bb)) 113 | (pad "32" smd roundrect (at -2.9 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 5538ac4f-e372-49d4-ad46-f6ffd4da60d0)) 114 | (model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-32_7x7mm_P0.8mm.wrl" 115 | (offset (xyz 0 0 0)) 116 | (scale (xyz 1 1 1)) 117 | (rotate (xyz 0 0 0)) 118 | ) 119 | ) 120 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/J800.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "J800" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row") 4 | (tags "Through hole pin header THT 1x05 2.54mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Grounded Sleeve") 8 | (property "ki_keywords" "audio jack receptacle mono phone headphone TS connector") 9 | (attr through_hole) 10 | (fp_text reference "J800" (at 0 -2.33) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 94f541ce-ce32-4303-884c-396e66e0f7dd) 13 | ) 14 | (fp_text value "LINK" (at 0.04 3.39) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 141d5d8e-e769-4aed-81b7-e97947ae761b) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0.06 5.17) (layer "F.Fab") 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | (tstamp e019d119-36e9-471d-a4a0-964e68a185f7) 21 | ) 22 | (fp_circle (center -0.02 0.79) (end 1.070413 0.79) 23 | (stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 499c799d-460a-4298-99ee-f7a3b616f3c2)) 24 | (fp_rect (start -5.41 -0.02) (end -4.6 1.61) 25 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp da1b44de-ae08-450a-9ed8-0bf4f0a163f0)) 26 | (fp_rect (start -2.98 -0.02) (end -2.17 1.61) 27 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 7724f59a-9099-4db1-872e-b045fcabcd62)) 28 | (fp_rect (start 1.97 -0.02) (end 2.78 1.61) 29 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp e31d06ef-c60e-4d2a-a716-895c6cc7de17)) 30 | (fp_rect (start 4.52 -0.02) (end 5.33 1.61) 31 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 52ccae70-c3d5-41d9-bfd3-c6c280ebacf1)) 32 | (fp_circle (center -0.042681 0.78) (end 0.627319 0.84) 33 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 6d236921-a653-49e3-b2a4-2b3c2e8c080a)) 34 | (pad "G" smd oval (at -2.48 0.4975) (size 2.165 3.685) (layers "F.Cu" "F.Mask") (tstamp bce56e07-672a-4431-a96d-16fdf9377afd)) 35 | (pad "G" smd oval (at 2.46 0.4975) (size 2.165 3.685) (layers "F.Cu" "F.Mask") (tstamp 557263f8-873b-40f5-b364-a0b6cbefc928)) 36 | (pad "S" smd oval (at -5.0125 0.4975) (size 2.165 3.685) (layers "F.Cu" "F.Mask") (tstamp 03b1e7d5-c3de-463c-a0bd-f1ae816b6d51)) 37 | (pad "T" smd oval (at 4.96 0.4975) (size 2.165 3.685) (layers "F.Cu" "F.Mask") (tstamp 4b269564-0c40-4b61-bce7-84474e18ac47)) 38 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl" 39 | (offset (xyz 0 0 0)) 40 | (scale (xyz 1 1 1)) 41 | (rotate (xyz 0 0 0)) 42 | ) 43 | ) 44 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Resistor 0805 SMD.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Resistor 0805 SMD" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 4 | (tags "resistor") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Resistor, small symbol") 8 | (property "ki_keywords" "R resistor") 9 | (attr smd) 10 | (fp_text reference "R800" (at 0 -1.65) (layer "F.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp 1ae4106e-b034-4ab5-8fc6-3eb450acae0d) 13 | ) 14 | (fp_text value "R_Small" (at 0 1.65) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 523a99e0-3074-45ca-aa89-96baed177537) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") 19 | (effects (font (size 0.5 0.5) (thickness 0.08))) 20 | (tstamp 3dc325fd-5a39-43f6-aeeb-bc2f5bcaa91c) 21 | ) 22 | (fp_line (start -0.217064 -0.01) (end 0.237064 -0.01) 23 | (stroke (width 0.3) (type solid)) (layer "F.SilkS") (tstamp 9ba8e289-ad6c-4f80-a004-f2532fcf74ba)) 24 | (fp_line (start -1.68 -0.95) (end 1.68 -0.95) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f1b0fca-a347-49ad-b86f-7f3e9df6c79f)) 26 | (fp_line (start -1.68 0.95) (end -1.68 -0.95) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a26f0e99-a796-4479-b13c-5feb534d1b0f)) 28 | (fp_line (start 1.68 -0.95) (end 1.68 0.95) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a36566d-6295-4c62-82e8-abc95c3a383f)) 30 | (fp_line (start 1.68 0.95) (end -1.68 0.95) 31 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec25b330-032e-4cc9-a285-1148c9f7f9d3)) 32 | (fp_line (start -1 -0.625) (end 1 -0.625) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fad9c936-12ac-4e30-8c1f-ed50f3c7d17f)) 34 | (fp_line (start -1 0.625) (end -1 -0.625) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5be1b929-33df-4fb0-84f2-c7f9ca855d02)) 36 | (fp_line (start 1 -0.625) (end 1 0.625) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09997d6f-e3e8-4d69-a7b3-90e1080f89c3)) 38 | (fp_line (start 1 0.625) (end -1 0.625) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 761d3a5a-b9da-40ad-b69c-97c94d29cfd7)) 40 | (pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) (tstamp 0c1e88c3-78bf-4b27-8934-d07363001cd4)) 41 | (pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) (tstamp 295795ef-ddcd-49aa-8b39-a5b694753d6f)) 42 | (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" 43 | (offset (xyz 0 0 0)) 44 | (scale (xyz 1 1 1)) 45 | (rotate (xyz 0 0 0)) 46 | ) 47 | ) 48 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Switch Type 1.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 1" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW803" (at -5.93 -1.78) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 3e710eff-c4a0-4c71-86a3-eaaec2a04e0f) 13 | ) 14 | (fp_text value "SELECT" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 343d5742-84d4-4ac4-9982-43774756247b) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 5 0.48 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp 285bef75-94ea-47cc-a8de-269c6938706d) 21 | ) 22 | (pad "1" smd custom (at 0.1 -8.95) (size 2.18 2.18) (layers "F.Cu" "F.Mask") 23 | (thermal_bridge_angle 45) 24 | (options (clearance outline) (anchor circle)) 25 | (primitives 26 | (gr_line (start 0 0) (end 0 1.75) (width 0.7)) 27 | (gr_arc (start -1.827175 6.683322) (mid -1.26 2.15) (end 2.711194 4.408831) (width 0.7)) 28 | (gr_line (start -1.898993 2.631007) (end 0 4.53) (width 0.7)) 29 | (gr_circle (center 0 4.53) (end 0.494975 4.53) (width 0.2) (fill yes)) 30 | (gr_line (start 0 4.53) (end 0 4.53) (width 0.2)) 31 | ) (tstamp 84238bad-645d-40fe-80ba-07fb4083ad24)) 32 | (pad "2" smd custom (at 0.04 0.05) (size 2.177119 2.177119) (layers "F.Cu" "F.Mask") 33 | (options (clearance outline) (anchor circle)) 34 | (primitives 35 | (gr_poly 36 | (pts 37 | (xy 0.103508 -1.08363) 38 | (xy 0.306717 -1.044465) 39 | (xy 0.498841 -0.96755) 40 | (xy 0.672937 -0.855665) 41 | (xy 0.822712 -0.712855) 42 | (xy 0.942754 -0.544279) 43 | (xy 1.028723 -0.356033) 44 | (xy 1.077513 -0.154918) 45 | (xy 1.08736 0.051796) 46 | (xy 1.057908 0.256638) 47 | (xy 0.990222 0.452204) 48 | (xy 0.886748 0.631426) 49 | (xy 0.751226 0.787827) 50 | (xy 0.588553 0.915754) 51 | (xy 0.404611 1.010583) 52 | (xy 0.206045 1.068887) 53 | (xy 0.000034 1.088559) 54 | (xy -0.000034 1.088559) 55 | (xy -0.103508 1.08363) 56 | (xy -0.306717 1.044465) 57 | (xy -0.498841 0.96755) 58 | (xy -0.672937 0.855665) 59 | (xy -0.822712 0.712855) 60 | (xy -0.942754 0.544279) 61 | (xy -1.028723 0.356033) 62 | (xy -1.077513 0.154918) 63 | (xy -1.08736 -0.051796) 64 | (xy -1.057908 -0.256638) 65 | (xy -0.990222 -0.452204) 66 | (xy -0.886748 -0.631426) 67 | (xy -0.751226 -0.787827) 68 | (xy -0.588553 -0.915754) 69 | (xy -0.404611 -1.010583) 70 | (xy -0.206045 -1.068887) 71 | (xy -0.000034 -1.088559) 72 | (xy 0.000034 -1.088559) 73 | ) 74 | (width 0) (fill yes)) 75 | (gr_line (start 0.000033 0.000066) (end 0.000033 -2.95) (width 0.7)) 76 | (gr_arc (start 0.044194 -5.96) (mid 1.10782 -3.392181) (end -1.46 -4.455804) (width 0.7)) 77 | ) (tstamp 60829272-7f59-4891-999e-547ef77b5374)) 78 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 79 | (offset (xyz 0 0 0)) 80 | (scale (xyz 1 1 1)) 81 | (rotate (xyz 0 0 0)) 82 | ) 83 | ) 84 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Switch Type 2.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 2" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW804" (at 0.4374 -9.870721) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 54d0fceb-e773-4f09-831d-6d123f6eac20) 13 | ) 14 | (fp_text value "RUN" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 682bff2a-040d-42aa-af18-2f4812d40da3) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 5 0.48 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp 228d8d38-d18f-41de-af3a-bdab5db41348) 21 | ) 22 | (pad "1" smd custom (at -2.29 -3.87) (size 2.18 2.18) (layers "F.Cu" "F.Mask") 23 | (thermal_bridge_angle 45) 24 | (options (clearance outline) (anchor circle)) 25 | (primitives 26 | (gr_line (start 0 0) (end 0.97 1.51) (width 0.7)) 27 | (gr_arc (start 0.512825 6.033322) (mid 1.08 1.5) (end 5.051194 3.758831) (width 0.7)) 28 | (gr_line (start 0.441007 1.981007) (end 2.34 3.88) (width 0.7)) 29 | (gr_line (start 2.34 3.88) (end 2.34 3.88) (width 0.2)) 30 | (gr_circle (center 2.34 3.88) (end 2.834975 3.88) (width 0.2) (fill yes)) 31 | ) (tstamp 0e9f0d52-bad9-4eb8-9cc4-c8e206e69024)) 32 | (pad "2" smd custom (at 2.28 3.91) (size 2.177119 2.177119) (layers "F.Cu" "F.Mask") 33 | (thermal_bridge_angle 45) 34 | (options (clearance outline) (anchor circle)) 35 | (primitives 36 | (gr_line (start 0 0) (end -1.55 -2.49) (width 0.7)) 37 | (gr_arc (start -2.245806 -5.39) (mid -1.18218 -2.822181) (end -3.75 -3.885804) (width 0.7)) 38 | ) (tstamp 36c4bd3d-b159-476f-ac03-893f8bc2e4e6)) 39 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 40 | (offset (xyz 0 0 0)) 41 | (scale (xyz 1 1 1)) 42 | (rotate (xyz 0 0 0)) 43 | ) 44 | ) 45 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Switch Type 3.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 3" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW802" (at 0.4374 -9.870721) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 2ba4aeac-fbfc-4d07-b76c-86ecb0bd745b) 13 | ) 14 | (fp_text value "II" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 11a7a867-1ff4-4c5c-8f8b-9d43c2c2b753) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 5 0.48 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp 3aabdba2-a16d-4f13-8af8-77dffdc5d5ba) 21 | ) 22 | (pad "1" smd custom (at -5.17 -2.64) (size 2.18 2.18) (layers "F.Cu" "F.Mask") 23 | (thermal_bridge_angle 45) 24 | (options (clearance outline) (anchor circle)) 25 | (primitives 26 | (gr_line (start 0 0) (end 2.48 -1.25) (width 0.7)) 27 | (gr_arc (start 3.342825 0.113322) (mid 3.91 -4.42) (end 7.881194 -2.161169) (width 0.7)) 28 | (gr_line (start 3.271007 -3.938993) (end 5.17 -2.04) (width 0.7)) 29 | (gr_circle (center 5.17 -2.04) (end 5.664975 -2.04) (width 0.2) (fill yes)) 30 | (gr_line (start 5.17 -2.04) (end 5.17 -2.04) (width 0.2)) 31 | ) (tstamp b61420b2-d778-4575-9e4c-292927f76dd0)) 32 | (pad "2" smd custom (at 2.23 -0.78) (size 2.177119 2.177119) (layers "F.Cu" "F.Mask") 33 | (thermal_bridge_angle 45) 34 | (options (clearance outline) (anchor circle)) 35 | (primitives 36 | (gr_line (start 0 0) (end -1.55 -2.49) (width 0.7)) 37 | (gr_arc (start -2.245806 -5.39) (mid -1.18218 -2.822181) (end -3.75 -3.885804) (width 0.7)) 38 | ) (tstamp c411eac7-1380-45c4-95d1-0b45f3140aac)) 39 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 40 | (offset (xyz 0 0 0)) 41 | (scale (xyz 1 1 1)) 42 | (rotate (xyz 0 0 0)) 43 | ) 44 | ) 45 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Switch Type 4.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 4" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW805" (at -9.3105 2.224) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp beda7140-af22-48fb-8913-572a5ceccaa9) 13 | ) 14 | (fp_text value "UP" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 213b2d60-ea80-4366-a423-ef14bf98e787) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0.5 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp ad8ea464-40bf-4b57-a1f1-2f12f4790ce3) 21 | ) 22 | (fp_line (start -1.15 -1) (end -1.15 2) 23 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dacaff0-5c65-418b-9884-0c5669121d03)) 24 | (fp_line (start -1.15 2) (end 1.15 2) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3df7d6c-31bd-4a9f-a223-02957b8ea1c1)) 26 | (fp_line (start 1.15 -1) (end -1.15 -1) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbe19c5f-e83f-4ca0-9978-10369bd296b9)) 28 | (fp_line (start 1.15 2) (end 1.15 -1) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d5e24b6-cc1e-48ab-8f87-ee777f88e727)) 30 | (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) 31 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e335d250-b451-4ae3-a3b2-89546490c892)) 32 | (fp_line (start -0.635 1.5) (end -0.635 -0.1825) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2e16d66-1efd-4a99-bab3-ac1a43fb2e34)) 34 | (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f49014b4-0c46-42f5-ae3b-9cec8319102a)) 36 | (fp_line (start 0.635 -0.5) (end 0.635 1.5) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f9a7db4-ed83-49da-84aa-13ab8b59899e)) 38 | (fp_line (start 0.635 1.5) (end -0.635 1.5) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bc32796-d487-4009-8e0d-5478fd8b2212)) 40 | (pad "1" smd custom (at 1.5065 1.2975) (size 2.665 3.345) (layers "F.Cu" "F.Mask") 41 | (thermal_bridge_angle 45) 42 | (options (clearance outline) (anchor rect)) 43 | (primitives 44 | (gr_rect (start -1.2425 1.6725) (end -0.1975 2.7325) (width 0.2) (fill yes)) 45 | (gr_rect (start -1.2425 2.6725) (end 1.2325 5.8325) (width 0.2) (fill yes)) 46 | (gr_rect (start 0.5225 3.2625) (end 3.628001 4.5625) (width 0.2) (fill yes)) 47 | (gr_circle (center 3.628001 3.9125) (end 4.852501 3.9125) (width 0.2) (fill yes)) 48 | ) (tstamp 4a503d0e-1e8b-41aa-809e-c0879b0b25c3)) 49 | (pad "2" smd custom (at -1.551 5.56 180) (size 2.665 3.345) (layers "F.Cu" "F.Mask") 50 | (thermal_bridge_angle 45) 51 | (options (clearance outline) (anchor rect)) 52 | (primitives 53 | (gr_rect (start -1.2425 1.6725) (end -0.1975 2.7325) (width 0.2) (fill yes)) 54 | (gr_rect (start -1.2425 2.6725) (end 1.2325 5.8325) (width 0.2) (fill yes)) 55 | (gr_circle (center 1.4645 6.06) (end 2.689 6.06) (width 0.2) (fill yes)) 56 | ) (tstamp 8e180d7f-a86e-44f3-80c0-a6f6bb103b4f)) 57 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 58 | (offset (xyz 0 0 0)) 59 | (scale (xyz 1 1 1)) 60 | (rotate (xyz 0 0 0)) 61 | ) 62 | ) 63 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Switch Type 5.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 5" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW805" (at -9.3105 2.224) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp beda7140-af22-48fb-8913-572a5ceccaa9) 13 | ) 14 | (fp_text value "UP" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 213b2d60-ea80-4366-a423-ef14bf98e787) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0.5 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp ad8ea464-40bf-4b57-a1f1-2f12f4790ce3) 21 | ) 22 | (fp_line (start -1.15 -1) (end -1.15 2) 23 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dacaff0-5c65-418b-9884-0c5669121d03)) 24 | (fp_line (start -1.15 2) (end 1.15 2) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3df7d6c-31bd-4a9f-a223-02957b8ea1c1)) 26 | (fp_line (start 1.15 -1) (end -1.15 -1) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbe19c5f-e83f-4ca0-9978-10369bd296b9)) 28 | (fp_line (start 1.15 2) (end 1.15 -1) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d5e24b6-cc1e-48ab-8f87-ee777f88e727)) 30 | (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) 31 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e335d250-b451-4ae3-a3b2-89546490c892)) 32 | (fp_line (start -0.635 1.5) (end -0.635 -0.1825) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2e16d66-1efd-4a99-bab3-ac1a43fb2e34)) 34 | (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f49014b4-0c46-42f5-ae3b-9cec8319102a)) 36 | (fp_line (start 0.635 -0.5) (end 0.635 1.5) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f9a7db4-ed83-49da-84aa-13ab8b59899e)) 38 | (fp_line (start 0.635 1.5) (end -0.635 1.5) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bc32796-d487-4009-8e0d-5478fd8b2212)) 40 | (pad "1" smd custom (at -2.01 -1.54 90) (size 2.665 3.345) (layers "F.Cu" "F.Mask") 41 | (thermal_bridge_angle 45) 42 | (options (clearance outline) (anchor rect)) 43 | (primitives 44 | (gr_rect (start -1.2425 1.6725) (end -0.1975 2.7325) (width 0.2) (fill yes)) 45 | (gr_rect (start -1.2425 2.6725) (end 1.2325 5.8325) (width 0.2) (fill yes)) 46 | (gr_circle (center 1.4645 6.06) (end 2.689 6.06) (width 0.2) (fill yes)) 47 | ) (tstamp 9175ac85-7eb4-4ebb-944d-c1b676c4d8da)) 48 | (pad "2" smd custom (at 2.24 1.56 270) (size 2.665 3.345) (layers "F.Cu" "F.Mask") 49 | (thermal_bridge_angle 45) 50 | (options (clearance outline) (anchor rect)) 51 | (primitives 52 | (gr_rect (start -1.2425 1.6725) (end -0.1975 2.7325) (width 0.2) (fill yes)) 53 | (gr_rect (start -1.2425 2.6725) (end 1.2325 5.8325) (width 0.2) (fill yes)) 54 | (gr_circle (center 1.4645 6.06) (end 2.689 6.06) (width 0.2) (fill yes)) 55 | ) (tstamp 8e180d7f-a86e-44f3-80c0-a6f6bb103b4f)) 56 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 57 | (offset (xyz 0 0 0)) 58 | (scale (xyz 1 1 1)) 59 | (rotate (xyz 0 0 0)) 60 | ) 61 | ) 62 | -------------------------------------------------------------------------------- /original-7610-0641-A/GT Controller.pretty/Turbo Switch.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Turbo Switch" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") 4 | (tags "Through hole pin header THT 1x04 2.54mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Switch, three position, single pole triple throw, 3 position switch, SP3T") 8 | (property "ki_keywords" "switch sp3t ON-ON-ON") 9 | (attr through_hole) 10 | (fp_text reference "SW809" (at 0 -2.33) (layer "F.SilkS") hide 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp 6d8dfb28-d4f3-4a7f-a5cd-979852c6f87c) 13 | ) 14 | (fp_text value "I TURBO" (at 0 9.95) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp c23032d6-625c-4c1d-bf2c-00e3a71b94f2) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 5.79 3.25 270) (layer "F.Fab") 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | (tstamp bcfff676-e74b-4e19-b214-108deb295d65) 21 | ) 22 | (pad "1" smd rect (at -3.35 5.14) (size 3.25 2.15) (layers "F.Cu" "F.Mask") (tstamp d4757696-ed43-402b-b42d-df5c6dfeac5d)) 23 | (pad "2" smd rect (at -0.065 5.14) (size 2.2 2.15) (layers "F.Cu" "F.Mask") (tstamp 6404dfce-dd92-44f2-b254-8edd5bd6c245)) 24 | (pad "3" smd rect (at -0.0425 1.1625) (size 9.875 2.125) (layers "F.Cu" "F.Mask") (tstamp fada0ebe-6058-4c0a-ba2f-ddd8591e0f31)) 25 | (pad "4" smd rect (at 3.225 5.14) (size 3.25 2.15) (layers "F.Cu" "F.Mask") (tstamp 8b07a18a-ff2e-4e8f-9648-b43db96c44e1)) 26 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" 27 | (offset (xyz 0 0 0)) 28 | (scale (xyz 1 1 1)) 29 | (rotate (xyz 0 0 0)) 30 | ) 31 | ) 32 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/Controller-Gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/original-7610-0641-A/Gerbers/Controller-Gerbers.zip -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-B_Cu.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:43:44+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Copper,L2,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:43:44* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %TA.AperFunction,ViaPad*% 15 | %ADD10C,2.000000*% 16 | %TD*% 17 | %TA.AperFunction,Conductor*% 18 | %ADD11C,0.700000*% 19 | %TD*% 20 | G04 APERTURE END LIST* 21 | D10* 22 | %TO.N,TURBO FAST*% 23 | X185280000Y-106210000D03* 24 | X190890000Y-106180000D03* 25 | %TO.N,LINK 1*% 26 | X185320000Y-96590000D03* 27 | X181280000Y-91510000D03* 28 | %TO.N,LINK 2*% 29 | X181230000Y-96660000D03* 30 | X176650000Y-95600000D03* 31 | %TO.N,DOWN*% 32 | X137940000Y-91540000D03* 33 | X143190000Y-80290000D03* 34 | %TO.N,SELECT*% 35 | X120250000Y-111290000D03* 36 | X120250000Y-101640000D03* 37 | %TO.N,RUN*% 38 | X124350000Y-101610000D03* 39 | X124320000Y-111240000D03* 40 | %TO.N,II*% 41 | X168480000Y-82870000D03* 42 | X156910000Y-92000000D03* 43 | %TO.N,TURBO SLOW*% 44 | X190770000Y-109780000D03* 45 | X159850000Y-112340000D03* 46 | X186290000Y-109780000D03* 47 | X151810000Y-106260000D03* 48 | X157380000Y-116940000D03* 49 | X143150000Y-104250000D03* 50 | %TO.N,I*% 51 | X160910000Y-88970000D03* 52 | X164460000Y-82870000D03* 53 | %TO.N,Net-(SW802-Pad2)*% 54 | X183800000Y-86420000D03* 55 | X186320000Y-101590000D03* 56 | %TO.N,Net-(SW801-Pad2)*% 57 | X187860000Y-86460000D03* 58 | X181240000Y-104190000D03* 59 | %TD*% 60 | D11* 61 | %TO.N,TURBO FAST*% 62 | X185310000Y-106180000D02* 63 | X185280000Y-106210000D01* 64 | X190890000Y-106180000D02* 65 | X185310000Y-106180000D01* 66 | %TO.N,LINK 1*% 67 | X185320000Y-96590000D02* 68 | X181280000Y-91510000D01* 69 | %TO.N,LINK 2*% 70 | X181230000Y-96660000D02* 71 | X176650000Y-95600000D01* 72 | %TO.N,DOWN*% 73 | X143190000Y-80290000D02* 74 | X143190000Y-86320000D01* 75 | X137970000Y-91540000D02* 76 | X137940000Y-91540000D01* 77 | X143190000Y-86320000D02* 78 | X137970000Y-91540000D01* 79 | %TO.N,SELECT*% 80 | X120250000Y-101640000D02* 81 | X120250000Y-111290000D01* 82 | %TO.N,RUN*% 83 | X124350000Y-101610000D02* 84 | X124350000Y-111210000D01* 85 | %TO.N,II*% 86 | X168480000Y-82870000D02* 87 | X168480000Y-87420000D01* 88 | X168480000Y-87420000D02* 89 | X163900000Y-92000000D01* 90 | X163900000Y-92000000D02* 91 | X156910000Y-92000000D01* 92 | %TO.N,TURBO SLOW*% 93 | X159850000Y-112340000D02* 94 | X157380000Y-114810000D01* 95 | X149110000Y-105640000D02* 96 | X143150000Y-104250000D01* 97 | X157380000Y-114810000D02* 98 | X157380000Y-116940000D01* 99 | X190770000Y-109780000D02* 100 | X186290000Y-109780000D01* 101 | X186280000Y-109770000D02* 102 | X186290000Y-109780000D01* 103 | X151810000Y-106260000D02* 104 | X149110000Y-105640000D01* 105 | %TO.N,I*% 106 | X160910000Y-88970000D02* 107 | X164460000Y-82870000D01* 108 | %TO.N,Net-(SW802-Pad2)*% 109 | X183800000Y-86420000D02* 110 | X183800000Y-90010000D01* 111 | X188110000Y-99800000D02* 112 | X186320000Y-101590000D01* 113 | X183800000Y-90010000D02* 114 | X188110000Y-94320000D01* 115 | X186320000Y-101690000D02* 116 | X186320000Y-101590000D01* 117 | X188110000Y-94320000D02* 118 | X188110000Y-99800000D01* 119 | %TO.N,Net-(SW801-Pad2)*% 120 | X190100000Y-93230000D02* 121 | X186370000Y-89500000D01* 122 | X186370000Y-87950000D02* 123 | X187860000Y-86460000D01* 124 | X181240000Y-104190000D02* 125 | X181550000Y-103940000D01* 126 | X181550000Y-103940000D02* 127 | X188510000Y-103940000D01* 128 | X186370000Y-89500000D02* 129 | X186370000Y-87950000D01* 130 | X190100000Y-102350000D02* 131 | X190100000Y-93230000D01* 132 | X188510000Y-103940000D02* 133 | X190100000Y-102350000D01* 134 | %TD*% 135 | M02* 136 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-B_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:43:44+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Bot*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:43:44* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-B_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:43:44+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:43:44* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-Edge_Cuts.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:43:44+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Profile,NP*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:43:44* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %TA.AperFunction,Profile*% 14 | %ADD10C,0.100000*% 15 | %TD*% 16 | %TA.AperFunction,Profile*% 17 | %ADD11C,0.050000*% 18 | %TD*% 19 | G04 APERTURE END LIST* 20 | D10* 21 | X160199730Y-66897406D02* 22 | X172820000Y-66897406D01* 23 | X109340000Y-78872445D02* 24 | G75* 25 | G03* 26 | X109697545Y-78514910I0J357545D01* 27 | G01* 28 | X157194910Y-138347545D02* 29 | X154350000Y-138350000D01* 30 | X133237545Y-59680000D02* 31 | G75* 32 | G03* 33 | X132880000Y-59322455I-357545J0D01* 34 | G01* 35 | X138842455Y-136315090D02* 36 | G75* 37 | G03* 38 | X137342323Y-136315090I-750066J0D01* 39 | G01* 40 | X200157545Y-110810000D02* 41 | X192170000Y-118797545D01* 42 | X173184723Y-66540000D02* 43 | X173184723Y-59780000D01* 44 | X173542822Y-59415277D02* 45 | X199620000Y-59415277D01* 46 | X167292323Y-136270000D02* 47 | X167292323Y-137980000D01* 48 | X114180000Y-118752455D02* 49 | X106230000Y-110802455D01* 50 | X200157545Y-110380000D02* 51 | X200157545Y-110810000D01* 52 | X148692455Y-137210000D02* 53 | G75* 54 | G03* 55 | X147572455Y-137210000I-560000J0D01* 56 | G01* 57 | X196085255Y-78530000D02* 58 | G75* 59 | G03* 60 | X196442822Y-78887545I357545J0D01* 61 | G01* 62 | X158672455Y-137980000D02* 63 | G75* 64 | G03* 65 | X159030000Y-138337545I357545J0D01* 66 | G01* 67 | X157194910Y-138347555D02* 68 | G75* 69 | G03* 70 | X157552455Y-137990000I-10J357555D01* 71 | G01* 72 | X146320270Y-66897406D02* 73 | X133560000Y-66897406D01* 74 | X125217045Y-119110000D02* 75 | G75* 76 | G03* 77 | X124859467Y-118752455I-357545J0D01* 78 | G01* 79 | X200157555Y-79245090D02* 80 | G75* 81 | G03* 82 | X199800000Y-78887545I-357555J-10D01* 83 | G01* 84 | X124859467Y-118752455D02* 85 | X114180000Y-118752455D01* 86 | X181530000Y-118797555D02* 87 | G75* 88 | G03* 89 | X181172455Y-119155090I0J-357545D01* 90 | G01* 91 | X136984778Y-138382623D02* 92 | G75* 93 | G03* 94 | X137342323Y-138025090I22J357523D01* 95 | G01* 96 | X168792455Y-137954910D02* 97 | X168792455Y-136270000D01* 98 | X109340000Y-69292455D02* 99 | X106590000Y-69292455D01* 100 | X198353949Y-61900000D02* 101 | G75* 102 | G03* 103 | X198353949Y-61900000I-1330000J0D01* 104 | G01* 105 | X172827178Y-66897523D02* 106 | G75* 107 | G03* 108 | X173184723Y-66540000I22J357523D01* 109 | G01* 110 | X138842455Y-138000000D02* 111 | X138842455Y-136315090D01* 112 | X166934778Y-138337523D02* 113 | G75* 114 | G03* 115 | X167292323Y-137980000I22J357523D01* 116 | G01* 117 | X125217012Y-130339647D02* 118 | X125217012Y-119110000D01* 119 | X133202494Y-66539861D02* 120 | G75* 121 | G03* 122 | X133560000Y-66897406I357506J-39D01* 123 | G01* 124 | X136984778Y-138382635D02* 125 | X133260000Y-138382635D01* 126 | X106232455Y-68934910D02* 127 | X106232455Y-59680000D01* 128 | X106232445Y-68934910D02* 129 | G75* 130 | G03* 131 | X106590000Y-69292455I357555J10D01* 132 | G01* 133 | X196980000Y-69307545D02* 134 | X196442822Y-69307545D01* 135 | X196442822Y-78887545D02* 136 | X199800000Y-78887545D01* 137 | X106590000Y-59322455D02* 138 | X132880000Y-59322455D01* 139 | X148692455Y-137990000D02* 140 | X148692455Y-137210000D01* 141 | X181172455Y-130290000D02* 142 | X173150000Y-138312455D01* 143 | X200214723Y-68950000D02* 144 | X200214723Y-68440000D01* 145 | X151987178Y-138354723D02* 146 | G75* 147 | G03* 148 | X152344723Y-137997178I22J357523D01* 149 | G01* 150 | X192170000Y-118797545D02* 151 | X181530000Y-118797545D01* 152 | X106230000Y-110802455D02* 153 | X106230000Y-79230000D01* 154 | X153990000Y-136930000D02* 155 | X153992455Y-137992455D01* 156 | X200214723Y-59772822D02* 157 | X200214723Y-68440000D01* 158 | X106590000Y-59322455D02* 159 | G75* 160 | G03* 161 | X106232455Y-59680000I0J-357545D01* 162 | G01* 163 | X147214910Y-138357555D02* 164 | G75* 165 | G03* 166 | X147572455Y-138000000I-10J357555D01* 167 | G01* 168 | X157552455Y-137200000D02* 169 | X157552455Y-137990000D01* 170 | X166934778Y-138337545D02* 171 | X159030000Y-138337545D01* 172 | X147572455Y-137210000D02* 173 | X147572455Y-138000000D01* 174 | X199857178Y-69307545D02* 175 | X196980000Y-69307545D01* 176 | X196442822Y-69307577D02* 177 | G75* 178 | G03* 179 | X196085277Y-69665090I-22J-357523D01* 180 | G01* 181 | X146320270Y-66897406D02* 182 | G75* 183 | G03* 184 | X160199730Y-66897406I6939730J4859253D01* 185 | G01* 186 | X153992500Y-137992455D02* 187 | G75* 188 | G03* 189 | X154350000Y-138350000I357500J-45D01* 190 | G01* 191 | X137342323Y-136315090D02* 192 | X137342323Y-138025090D01* 193 | X133260000Y-138382635D02* 194 | X125217012Y-130339647D01* 195 | X152344723Y-137997178D02* 196 | X152344723Y-136930000D01* 197 | X154510000Y-115850000D02* 198 | G75* 199 | G03* 200 | X154510000Y-115850000I-1330000J0D01* 201 | G01* 202 | X196085277Y-69665090D02* 203 | X196085277Y-78530000D01* 204 | X109697545Y-78514910D02* 205 | X109697545Y-69650000D01* 206 | X151987178Y-138354723D02* 207 | X149050000Y-138347545D01* 208 | X173150000Y-138312455D02* 209 | X169150000Y-138312455D01* 210 | X170420001Y-126610000D02* 211 | G75* 212 | G03* 213 | X170420001Y-126610000I-1032376J0D01* 214 | G01* 215 | X173542822Y-59415277D02* 216 | G75* 217 | G03* 218 | X173185277Y-59772822I-22J-357523D01* 219 | G01* 220 | X199857178Y-59415277D02* 221 | X199620000Y-59415277D01* 222 | X152344723Y-136930000D02* 223 | X153990000Y-136930000D01* 224 | X109697545Y-69650000D02* 225 | G75* 226 | G03* 227 | X109340000Y-69292455I-357545J0D01* 228 | G01* 229 | X168792445Y-137954910D02* 230 | G75* 231 | G03* 232 | X169150000Y-138312455I357555J10D01* 233 | G01* 234 | X199857178Y-69307523D02* 235 | G75* 236 | G03* 237 | X200214723Y-68950000I22J357523D01* 238 | G01* 239 | X138842455Y-138000000D02* 240 | G75* 241 | G03* 242 | X139200000Y-138357545I357545J0D01* 243 | G01* 244 | X106587545Y-78872455D02* 245 | X109340000Y-78872455D01* 246 | X109980000Y-61900000D02* 247 | G75* 248 | G03* 249 | X109980000Y-61900000I-1330000J0D01* 250 | G01* 251 | X181172455Y-119155090D02* 252 | X181172455Y-130290000D01* 253 | X110023949Y-90360000D02* 254 | G75* 255 | G03* 256 | X110023949Y-90360000I-1330000J0D01* 257 | G01* 258 | X200157545Y-79245090D02* 259 | X200157545Y-110380000D01* 260 | X158672455Y-137200000D02* 261 | G75* 262 | G03* 263 | X157552455Y-137200000I-560000J0D01* 264 | G01* 265 | X168792455Y-136270000D02* 266 | G75* 267 | G03* 268 | X167292323Y-136270000I-750066J0D01* 269 | G01* 270 | X133237545Y-59680000D02* 271 | X133202455Y-66539861D01* 272 | X148692455Y-137990000D02* 273 | G75* 274 | G03* 275 | X149050000Y-138347545I357545J0D01* 276 | G01* 277 | X158672455Y-137980000D02* 278 | X158672455Y-137200000D01* 279 | X200214723Y-59772822D02* 280 | G75* 281 | G03* 282 | X199857178Y-59415277I-357523J22D01* 283 | G01* 284 | X147214910Y-138357545D02* 285 | X139200000Y-138357545D01* 286 | X198373949Y-89820000D02* 287 | G75* 288 | G03* 289 | X198373949Y-89820000I-1330000J0D01* 290 | G01* 291 | X106587545Y-78872500D02* 292 | G75* 293 | G03* 294 | X106230000Y-79230000I-45J-357500D01* 295 | G01* 296 | D11* 297 | %TO.C,J800*% 298 | X147836250Y-131452500D02* 299 | X148646250Y-131452500D01* 300 | X148646250Y-131452500D02* 301 | X148646250Y-133082500D01* 302 | X148646250Y-133082500D02* 303 | X147836250Y-133082500D01* 304 | X147836250Y-133082500D02* 305 | X147836250Y-131452500D01* 306 | X150266250Y-131452500D02* 307 | X151076250Y-131452500D01* 308 | X151076250Y-131452500D02* 309 | X151076250Y-133082500D01* 310 | X151076250Y-133082500D02* 311 | X150266250Y-133082500D01* 312 | X150266250Y-133082500D02* 313 | X150266250Y-131452500D01* 314 | X155216250Y-131452500D02* 315 | X156026250Y-131452500D01* 316 | X156026250Y-131452500D02* 317 | X156026250Y-133082500D01* 318 | X156026250Y-133082500D02* 319 | X155216250Y-133082500D01* 320 | X155216250Y-133082500D02* 321 | X155216250Y-131452500D01* 322 | X157766250Y-131452500D02* 323 | X158576250Y-131452500D01* 324 | X158576250Y-131452500D02* 325 | X158576250Y-133082500D01* 326 | X158576250Y-133082500D02* 327 | X157766250Y-133082500D01* 328 | X157766250Y-133082500D02* 329 | X157766250Y-131452500D01* 330 | X153876250Y-132252500D02* 331 | G75* 332 | G03* 333 | X153876250Y-132252500I-672681J0D01* 334 | G01* 335 | %TO.C,CN801*% 336 | X120580918Y-64000917D02* 337 | G75* 338 | G03* 339 | X120580918Y-64000917I-490918J0D01* 340 | G01* 341 | X122580918Y-64000917D02* 342 | G75* 343 | G03* 344 | X122580918Y-64000917I-490918J0D01* 345 | G01* 346 | %TO.C,CC800*% 347 | X192995980Y-94380000D02* 348 | G75* 349 | G03* 350 | X192995980Y-94380000I-395980J0D01* 351 | G01* 352 | X192995980Y-96874021D02* 353 | G75* 354 | G03* 355 | X192995980Y-96874021I-395980J0D01* 356 | G01* 357 | %TD*% 358 | M02* 359 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-F_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:43:44+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:43:44* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10C,1.000000*% 33 | %ADD11RoundRect,0.250000X0.450000X-0.262500X0.450000X0.262500X-0.450000X0.262500X-0.450000X-0.262500X0*% 34 | %ADD12RoundRect,0.150000X0.357500X0.150000X-0.357500X0.150000X-0.357500X-0.150000X0.357500X-0.150000X0*% 35 | %ADD13RoundRect,0.150000X0.392500X0.150000X-0.392500X0.150000X-0.392500X-0.150000X0.392500X-0.150000X0*% 36 | %ADD14RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 37 | %ADD15C,1.500000*% 38 | %ADD16RoundRect,0.281565X-0.645643X0.295643X-0.645643X-0.295643X0.645643X-0.295643X0.645643X0.295643X0*% 39 | %ADD17C,1.600000*% 40 | %ADD18RoundRect,0.125000X-0.125000X0.625000X-0.125000X-0.625000X0.125000X-0.625000X0.125000X0.625000X0*% 41 | %ADD19RoundRect,0.125000X-0.625000X0.125000X-0.625000X-0.125000X0.625000X-0.125000X0.625000X0.125000X0*% 42 | G04 APERTURE END LIST* 43 | D10* 44 | %TO.C,*% 45 | X155870000Y-78880000D03* 46 | %TD*% 47 | %TO.C,*% 48 | X146790000Y-80370000D03* 49 | %TD*% 50 | D11* 51 | %TO.C,R800*% 52 | X149810000Y-97102500D03* 53 | X149810000Y-95277500D03* 54 | %TD*% 55 | D10* 56 | %TO.C,*% 57 | X167800000Y-96260000D03* 58 | %TD*% 59 | %TO.C,*% 60 | X149570000Y-93150000D03* 61 | %TD*% 62 | %TO.C,*% 63 | X144640000Y-93060000D03* 64 | %TD*% 65 | D12* 66 | %TO.C,D802*% 67 | X163227500Y-96610000D03* 68 | X163227500Y-94710000D03* 69 | D13* 70 | X160927500Y-95660000D03* 71 | %TD*% 72 | D14* 73 | %TO.C,L804*% 74 | X177010000Y-117577500D03* 75 | X177010000Y-119402500D03* 76 | %TD*% 77 | D10* 78 | %TO.C,*% 79 | X145200000Y-83410000D03* 80 | %TD*% 81 | %TO.C,*% 82 | X154290000Y-93080000D03* 83 | %TD*% 84 | %TO.C,*% 85 | X145670000Y-76830000D03* 86 | %TD*% 87 | %TO.C,*% 88 | X160950000Y-83450000D03* 89 | %TD*% 90 | %TO.C,*% 91 | X158820000Y-97280000D03* 92 | %TD*% 93 | %TO.C,*% 94 | X158620000Y-95290000D03* 95 | %TD*% 96 | %TO.C,*% 97 | X130350000Y-132170000D03* 98 | %TD*% 99 | D14* 100 | %TO.C,R804*% 101 | X165600000Y-94677500D03* 102 | X165600000Y-96502500D03* 103 | %TD*% 104 | D10* 105 | %TO.C,*% 106 | X160870000Y-81890000D03* 107 | %TD*% 108 | %TO.C,*% 109 | X160580000Y-96820000D03* 110 | %TD*% 111 | D14* 112 | %TO.C,L805*% 113 | X174480000Y-117577500D03* 114 | X174480000Y-119402500D03* 115 | %TD*% 116 | D15* 117 | %TO.C,*% 118 | X193550000Y-91290000D03* 119 | %TD*% 120 | D10* 121 | %TO.C,*% 122 | X158450000Y-79380000D03* 123 | %TD*% 124 | %TO.C,*% 125 | X191320000Y-89030000D03* 126 | %TD*% 127 | %TO.C,*% 128 | X159920000Y-80430000D03* 129 | %TD*% 130 | D11* 131 | %TO.C,C801*% 132 | X154910000Y-97112500D03* 133 | X154910000Y-95287500D03* 134 | %TD*% 135 | D10* 136 | %TO.C,*% 137 | X153340000Y-76850000D03* 138 | %TD*% 139 | %TO.C,*% 140 | X146750000Y-93080000D03* 141 | %TD*% 142 | %TO.C,*% 143 | X177050000Y-121070000D03* 144 | %TD*% 145 | %TO.C,*% 146 | X146310000Y-97780000D03* 147 | %TD*% 148 | %TO.C,*% 149 | X151440000Y-93130000D03* 150 | %TD*% 151 | D14* 152 | %TO.C,L803*% 153 | X131750000Y-122597500D03* 154 | X131750000Y-124422500D03* 155 | %TD*% 156 | D10* 157 | %TO.C,*% 158 | X156750000Y-97520000D03* 159 | %TD*% 160 | %TO.C,*% 161 | X176180000Y-64170000D03* 162 | %TD*% 163 | D16* 164 | %TO.C,L802*% 165 | X177065283Y-123005283D03* 166 | X177110000Y-126060000D03* 167 | %TD*% 168 | D10* 169 | %TO.C,*% 170 | X174500000Y-127610000D03* 171 | %TD*% 172 | %TO.C,*% 173 | X177050000Y-127600000D03* 174 | %TD*% 175 | D16* 176 | %TO.C,L800*% 177 | X131835283Y-127075283D03* 178 | X131880000Y-130130000D03* 179 | %TD*% 180 | D11* 181 | %TO.C,R801*% 182 | X152270000Y-97082500D03* 183 | X152270000Y-95257500D03* 184 | %TD*% 185 | D10* 186 | %TO.C,*% 187 | X157450000Y-80420000D03* 188 | %TD*% 189 | %TO.C,*% 190 | X163920000Y-88470000D03* 191 | %TD*% 192 | %TO.C,*% 193 | X147430000Y-96030000D03* 194 | %TD*% 195 | D15* 196 | %TO.C,*% 197 | X116110000Y-100690000D03* 198 | %TD*% 199 | D10* 200 | %TO.C,*% 201 | X178140000Y-67220000D03* 202 | %TD*% 203 | %TO.C,*% 204 | X174480000Y-121030000D03* 205 | %TD*% 206 | D15* 207 | %TO.C,*% 208 | X194690000Y-83770000D03* 209 | %TD*% 210 | D10* 211 | %TO.C,*% 212 | X156770000Y-95280000D03* 213 | %TD*% 214 | D14* 215 | %TO.C,R803*% 216 | X172660000Y-93667500D03* 217 | X172660000Y-95492500D03* 218 | %TD*% 219 | D17* 220 | %TO.C,CC800*% 221 | X192600000Y-94390000D03* 222 | X192600000Y-96884021D03* 223 | %TD*% 224 | D18* 225 | %TO.C,IC800*% 226 | X155090000Y-81162500D03* 227 | X154290000Y-81162500D03* 228 | X153490000Y-81162500D03* 229 | X152690000Y-81162500D03* 230 | X151890000Y-81162500D03* 231 | X151090000Y-81162500D03* 232 | X150290000Y-81162500D03* 233 | X149490000Y-81162500D03* 234 | D19* 235 | X147880000Y-82607500D03* 236 | X147880000Y-83407500D03* 237 | X147880000Y-84207500D03* 238 | X147880000Y-85007500D03* 239 | X147880000Y-85807500D03* 240 | X147880000Y-86607500D03* 241 | X147880000Y-87407500D03* 242 | X147880000Y-88207500D03* 243 | D18* 244 | X149490000Y-89937500D03* 245 | X150290000Y-89937500D03* 246 | X151090000Y-89937500D03* 247 | X151890000Y-89937500D03* 248 | X152690000Y-89937500D03* 249 | X153490000Y-89937500D03* 250 | X154290000Y-89937500D03* 251 | X155090000Y-89937500D03* 252 | D19* 253 | X156480000Y-88207500D03* 254 | X156480000Y-87407500D03* 255 | X156480000Y-86607500D03* 256 | X156480000Y-85807500D03* 257 | X156480000Y-85007500D03* 258 | X156480000Y-84207500D03* 259 | X156480000Y-83407500D03* 260 | X156480000Y-82607500D03* 261 | %TD*% 262 | D10* 263 | %TO.C,*% 264 | X188820000Y-89010000D03* 265 | %TD*% 266 | D16* 267 | %TO.C,L801*% 268 | X174475283Y-123005283D03* 269 | X174520000Y-126060000D03* 270 | %TD*% 271 | D12* 272 | %TO.C,D800*% 273 | X194760000Y-87110000D03* 274 | X194760000Y-85210000D03* 275 | D13* 276 | X192460000Y-86160000D03* 277 | %TD*% 278 | D10* 279 | %TO.C,*% 280 | X147210000Y-77810000D03* 281 | %TD*% 282 | %TO.C,*% 283 | X154830000Y-77870000D03* 284 | %TD*% 285 | %TO.C,*% 286 | X132290000Y-132150000D03* 287 | %TD*% 288 | D14* 289 | %TO.C,C800*% 290 | X196360000Y-94735000D03* 291 | X196360000Y-96560000D03* 292 | %TD*% 293 | D12* 294 | %TO.C,D801*% 295 | X170527500Y-95460000D03* 296 | X170527500Y-93560000D03* 297 | D13* 298 | X168227500Y-94510000D03* 299 | %TD*% 300 | M02* 301 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-NPTH-drl_map.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:43:47+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Drillmap*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX45Y45*% 8 | G04 Gerber Fmt 4.5, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:43:47* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,0.100000*% 15 | %ADD11C,0.200000*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X16019973Y-6689741D02* 19 | X17282000Y-6689741D01* 20 | X10934000Y-7887244D02* 21 | G75* 22 | G03* 23 | X10969755Y-7851491I0J35755D01* 24 | G01* 25 | X15719491Y-13834754D02* 26 | X15435000Y-13835000D01* 27 | X13323754Y-5968000D02* 28 | G75* 29 | G03* 30 | X13288000Y-5932245I-35755J0D01* 31 | G01* 32 | X13884245Y-13631509D02* 33 | G75* 34 | G03* 35 | X13734232Y-13631509I-75007J0D01* 36 | G01* 37 | X20015755Y-11081000D02* 38 | X19217000Y-11879754D01* 39 | X17318472Y-6654000D02* 40 | X17318472Y-5978000D01* 41 | X17354282Y-5941528D02* 42 | X19962000Y-5941528D01* 43 | X16729232Y-13627000D02* 44 | X16729232Y-13798000D01* 45 | X11418000Y-11875245D02* 46 | X10623000Y-11080246D01* 47 | X20015755Y-11038000D02* 48 | X20015755Y-11081000D01* 49 | X14869245Y-13721000D02* 50 | G75* 51 | G03* 52 | X14757245Y-13721000I-56000J0D01* 53 | G01* 54 | X19608526Y-7853000D02* 55 | G75* 56 | G03* 57 | X19644282Y-7888754I35755J0D01* 58 | G01* 59 | X15867245Y-13798000D02* 60 | G75* 61 | G03* 62 | X15903000Y-13833754I35755J0D01* 63 | G01* 64 | X15719491Y-13834755D02* 65 | G75* 66 | G03* 67 | X15755245Y-13799000I-1J35756D01* 68 | G01* 69 | X14632027Y-6689741D02* 70 | X13356000Y-6689741D01* 71 | X12521704Y-11911000D02* 72 | G75* 73 | G03* 74 | X12485947Y-11875245I-35755J0D01* 75 | G01* 76 | X20015756Y-7924509D02* 77 | G75* 78 | G03* 79 | X19980000Y-7888754I-35756J-1D01* 80 | G01* 81 | X12485947Y-11875245D02* 82 | X11418000Y-11875245D01* 83 | X18153000Y-11879755D02* 84 | G75* 85 | G03* 86 | X18117246Y-11915509I0J-35755D01* 87 | G01* 88 | X13698478Y-13838262D02* 89 | G75* 90 | G03* 91 | X13734232Y-13802509I2J35752D01* 92 | G01* 93 | X16879246Y-13795491D02* 94 | X16879246Y-13627000D01* 95 | X10934000Y-6929245D02* 96 | X10659000Y-6929245D01* 97 | X19835395Y-6190000D02* 98 | G75* 99 | G03* 100 | X19835395Y-6190000I-133000J0D01* 101 | G01* 102 | X17282718Y-6689752D02* 103 | G75* 104 | G03* 105 | X17318472Y-6654000I2J35752D01* 106 | G01* 107 | X13884245Y-13800000D02* 108 | X13884245Y-13631509D01* 109 | X16693478Y-13833752D02* 110 | G75* 111 | G03* 112 | X16729232Y-13798000I2J35752D01* 113 | G01* 114 | X12521701Y-13033965D02* 115 | X12521701Y-11911000D01* 116 | X13320249Y-6653986D02* 117 | G75* 118 | G03* 119 | X13356000Y-6689741I35751J-4D01* 120 | G01* 121 | X13698478Y-13838263D02* 122 | X13326000Y-13838263D01* 123 | X10623246Y-6893491D02* 124 | X10623246Y-5968000D01* 125 | X10623245Y-6893491D02* 126 | G75* 127 | G03* 128 | X10659000Y-6929245I35756J1D01* 129 | G01* 130 | X19698000Y-6930754D02* 131 | X19644282Y-6930754D01* 132 | X19644282Y-7888754D02* 133 | X19980000Y-7888754D01* 134 | X10659000Y-5932245D02* 135 | X13288000Y-5932245D01* 136 | X14869245Y-13799000D02* 137 | X14869245Y-13721000D01* 138 | X18117246Y-13029000D02* 139 | X17315000Y-13831245D01* 140 | X20021472Y-6895000D02* 141 | X20021472Y-6844000D01* 142 | X15198718Y-13835472D02* 143 | G75* 144 | G03* 145 | X15234472Y-13799718I2J35752D01* 146 | G01* 147 | X19217000Y-11879754D02* 148 | X18153000Y-11879754D01* 149 | X10623000Y-11080246D02* 150 | X10623000Y-7923000D01* 151 | X15399000Y-13693000D02* 152 | X15399245Y-13799245D01* 153 | X20021472Y-5977282D02* 154 | X20021472Y-6844000D01* 155 | X10659000Y-5932245D02* 156 | G75* 157 | G03* 158 | X10623246Y-5968000I0J-35755D01* 159 | G01* 160 | X14721491Y-13835755D02* 161 | G75* 162 | G03* 163 | X14757245Y-13800000I-1J35756D01* 164 | G01* 165 | X15755245Y-13720000D02* 166 | X15755245Y-13799000D01* 167 | X16693478Y-13833754D02* 168 | X15903000Y-13833754D01* 169 | X14757245Y-13721000D02* 170 | X14757245Y-13800000D01* 171 | X19985718Y-6930754D02* 172 | X19698000Y-6930754D01* 173 | X19644282Y-6930758D02* 174 | G75* 175 | G03* 176 | X19608528Y-6966509I-2J-35752D01* 177 | G01* 178 | X14632027Y-6689741D02* 179 | G75* 180 | G03* 181 | X16019973Y-6689741I693973J485925D01* 182 | G01* 183 | X15399250Y-13799245D02* 184 | G75* 185 | G03* 186 | X15435000Y-13835000I35750J-5D01* 187 | G01* 188 | X13734232Y-13631509D02* 189 | X13734232Y-13802509D01* 190 | X13326000Y-13838263D02* 191 | X12521701Y-13033965D01* 192 | X15234472Y-13799718D02* 193 | X15234472Y-13693000D01* 194 | X15451000Y-11585000D02* 195 | G75* 196 | G03* 197 | X15451000Y-11585000I-133000J0D01* 198 | G01* 199 | X19608528Y-6966509D02* 200 | X19608528Y-7853000D01* 201 | X10969755Y-7851491D02* 202 | X10969755Y-6965000D01* 203 | X15198718Y-13835472D02* 204 | X14905000Y-13834754D01* 205 | X17315000Y-13831245D02* 206 | X16915000Y-13831245D01* 207 | X17042000Y-12661000D02* 208 | G75* 209 | G03* 210 | X17042000Y-12661000I-103238J0D01* 211 | G01* 212 | X17354282Y-5941528D02* 213 | G75* 214 | G03* 215 | X17318528Y-5977282I-2J-35752D01* 216 | G01* 217 | X19985718Y-5941528D02* 218 | X19962000Y-5941528D01* 219 | X15234472Y-13693000D02* 220 | X15399000Y-13693000D01* 221 | X10969755Y-6965000D02* 222 | G75* 223 | G03* 224 | X10934000Y-6929245I-35755J0D01* 225 | G01* 226 | X16879245Y-13795491D02* 227 | G75* 228 | G03* 229 | X16915000Y-13831245I35756J1D01* 230 | G01* 231 | X19985718Y-6930752D02* 232 | G75* 233 | G03* 234 | X20021472Y-6895000I2J35752D01* 235 | G01* 236 | X13884245Y-13800000D02* 237 | G75* 238 | G03* 239 | X13920000Y-13835754I35755J0D01* 240 | G01* 241 | X10658755Y-7887245D02* 242 | X10934000Y-7887245D01* 243 | X10998000Y-6190000D02* 244 | G75* 245 | G03* 246 | X10998000Y-6190000I-133000J0D01* 247 | G01* 248 | X18117246Y-11915509D02* 249 | X18117246Y-13029000D01* 250 | X11002395Y-9036000D02* 251 | G75* 252 | G03* 253 | X11002395Y-9036000I-133000J0D01* 254 | G01* 255 | X20015755Y-7924509D02* 256 | X20015755Y-11038000D01* 257 | X15867245Y-13720000D02* 258 | G75* 259 | G03* 260 | X15755245Y-13720000I-56000J0D01* 261 | G01* 262 | X16879246Y-13627000D02* 263 | G75* 264 | G03* 265 | X16729232Y-13627000I-75007J0D01* 266 | G01* 267 | X13323754Y-5968000D02* 268 | X13320245Y-6653986D01* 269 | X14869245Y-13799000D02* 270 | G75* 271 | G03* 272 | X14905000Y-13834754I35755J0D01* 273 | G01* 274 | X15867245Y-13798000D02* 275 | X15867245Y-13720000D01* 276 | X20021472Y-5977282D02* 277 | G75* 278 | G03* 279 | X19985718Y-5941528I-35752J2D01* 280 | G01* 281 | X14721491Y-13835754D02* 282 | X13920000Y-13835754D01* 283 | X19837395Y-8982000D02* 284 | G75* 285 | G03* 286 | X19837395Y-8982000I-133000J0D01* 287 | G01* 288 | X10658755Y-7887250D02* 289 | G75* 290 | G03* 291 | X10623000Y-7923000I-5J-35750D01* 292 | G01* 293 | D11* 294 | X10878777Y-14154747D02* 295 | X10878777Y-13954747D01* 296 | X10878777Y-13954747D02* 297 | X10926396Y-13954747D01* 298 | X10926396Y-13954747D02* 299 | X10954967Y-13964271D01* 300 | X10954967Y-13964271D02* 301 | X10974015Y-13983319D01* 302 | X10974015Y-13983319D02* 303 | X10983539Y-14002366D01* 304 | X10983539Y-14002366D02* 305 | X10993063Y-14040461D01* 306 | X10993063Y-14040461D02* 307 | X10993063Y-14069033D01* 308 | X10993063Y-14069033D02* 309 | X10983539Y-14107128D01* 310 | X10983539Y-14107128D02* 311 | X10974015Y-14126176D01* 312 | X10974015Y-14126176D02* 313 | X10954967Y-14145223D01* 314 | X10954967Y-14145223D02* 315 | X10926396Y-14154747D01* 316 | X10926396Y-14154747D02* 317 | X10878777Y-14154747D01* 318 | X11078777Y-14154747D02* 319 | X11078777Y-14021414D01* 320 | X11078777Y-14059509D02* 321 | X11088301Y-14040461D01* 322 | X11088301Y-14040461D02* 323 | X11097824Y-14030938D01* 324 | X11097824Y-14030938D02* 325 | X11116872Y-14021414D01* 326 | X11116872Y-14021414D02* 327 | X11135920Y-14021414D01* 328 | X11202586Y-14154747D02* 329 | X11202586Y-14021414D01* 330 | X11202586Y-13954747D02* 331 | X11193062Y-13964271D01* 332 | X11193062Y-13964271D02* 333 | X11202586Y-13973795D01* 334 | X11202586Y-13973795D02* 335 | X11212110Y-13964271D01* 336 | X11212110Y-13964271D02* 337 | X11202586Y-13954747D01* 338 | X11202586Y-13954747D02* 339 | X11202586Y-13973795D01* 340 | X11326396Y-14154747D02* 341 | X11307348Y-14145223D01* 342 | X11307348Y-14145223D02* 343 | X11297824Y-14126176D01* 344 | X11297824Y-14126176D02* 345 | X11297824Y-13954747D01* 346 | X11431158Y-14154747D02* 347 | X11412110Y-14145223D01* 348 | X11412110Y-14145223D02* 349 | X11402586Y-14126176D01* 350 | X11402586Y-14126176D02* 351 | X11402586Y-13954747D01* 352 | X11659729Y-14154747D02* 353 | X11659729Y-13954747D01* 354 | X11659729Y-13954747D02* 355 | X11726396Y-14097604D01* 356 | X11726396Y-14097604D02* 357 | X11793062Y-13954747D01* 358 | X11793062Y-13954747D02* 359 | X11793062Y-14154747D01* 360 | X11974015Y-14154747D02* 361 | X11974015Y-14049985D01* 362 | X11974015Y-14049985D02* 363 | X11964491Y-14030938D01* 364 | X11964491Y-14030938D02* 365 | X11945443Y-14021414D01* 366 | X11945443Y-14021414D02* 367 | X11907348Y-14021414D01* 368 | X11907348Y-14021414D02* 369 | X11888301Y-14030938D01* 370 | X11974015Y-14145223D02* 371 | X11954967Y-14154747D01* 372 | X11954967Y-14154747D02* 373 | X11907348Y-14154747D01* 374 | X11907348Y-14154747D02* 375 | X11888301Y-14145223D01* 376 | X11888301Y-14145223D02* 377 | X11878777Y-14126176D01* 378 | X11878777Y-14126176D02* 379 | X11878777Y-14107128D01* 380 | X11878777Y-14107128D02* 381 | X11888301Y-14088081D01* 382 | X11888301Y-14088081D02* 383 | X11907348Y-14078557D01* 384 | X11907348Y-14078557D02* 385 | X11954967Y-14078557D01* 386 | X11954967Y-14078557D02* 387 | X11974015Y-14069033D01* 388 | X12069253Y-14021414D02* 389 | X12069253Y-14221414D01* 390 | X12069253Y-14030938D02* 391 | X12088301Y-14021414D01* 392 | X12088301Y-14021414D02* 393 | X12126396Y-14021414D01* 394 | X12126396Y-14021414D02* 395 | X12145443Y-14030938D01* 396 | X12145443Y-14030938D02* 397 | X12154967Y-14040461D01* 398 | X12154967Y-14040461D02* 399 | X12164491Y-14059509D01* 400 | X12164491Y-14059509D02* 401 | X12164491Y-14116652D01* 402 | X12164491Y-14116652D02* 403 | X12154967Y-14135700D01* 404 | X12154967Y-14135700D02* 405 | X12145443Y-14145223D01* 406 | X12145443Y-14145223D02* 407 | X12126396Y-14154747D01* 408 | X12126396Y-14154747D02* 409 | X12088301Y-14154747D01* 410 | X12088301Y-14154747D02* 411 | X12069253Y-14145223D01* 412 | X12250205Y-14135700D02* 413 | X12259729Y-14145223D01* 414 | X12259729Y-14145223D02* 415 | X12250205Y-14154747D01* 416 | X12250205Y-14154747D02* 417 | X12240682Y-14145223D01* 418 | X12240682Y-14145223D02* 419 | X12250205Y-14135700D01* 420 | X12250205Y-14135700D02* 421 | X12250205Y-14154747D01* 422 | X12250205Y-14030938D02* 423 | X12259729Y-14040461D01* 424 | X12259729Y-14040461D02* 425 | X12250205Y-14049985D01* 426 | X12250205Y-14049985D02* 427 | X12240682Y-14040461D01* 428 | X12240682Y-14040461D02* 429 | X12250205Y-14030938D01* 430 | X12250205Y-14030938D02* 431 | X12250205Y-14049985D01* 432 | M02* 433 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad 7.0.8} date 2023 December 31, Sunday 22:43:46 3 | ; FORMAT={-:-/ absolute / metric / decimal} 4 | ; #@! TF.CreationDate,2023-12-31T22:43:46+00:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.8 6 | ; #@! TF.FileFunction,NonPlated,1,2,NPTH 7 | FMAT,2 8 | METRIC 9 | % 10 | G90 11 | G05 12 | T0 13 | M30 14 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad 7.0.8} date 2023 December 31, Sunday 22:43:46 3 | ; FORMAT={-:-/ absolute / metric / decimal} 4 | ; #@! TF.CreationDate,2023-12-31T22:43:46+00:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.8 6 | ; #@! TF.FileFunction,Plated,1,2,PTH 7 | FMAT,2 8 | METRIC 9 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 10 | T1C0.400 11 | % 12 | G90 13 | G05 14 | T1 15 | X120.25Y-101.64 16 | X120.25Y-111.29 17 | X124.32Y-111.24 18 | X124.35Y-101.61 19 | X137.94Y-91.54 20 | X143.15Y-104.25 21 | X143.19Y-80.29 22 | X151.81Y-106.26 23 | X156.91Y-92.0 24 | X157.38Y-116.94 25 | X159.85Y-112.34 26 | X160.91Y-88.97 27 | X164.46Y-82.87 28 | X168.48Y-82.87 29 | X176.65Y-95.6 30 | X181.23Y-96.66 31 | X181.24Y-104.19 32 | X181.28Y-91.51 33 | X183.8Y-86.42 34 | X185.28Y-106.21 35 | X185.32Y-96.59 36 | X186.29Y-109.78 37 | X186.32Y-101.59 38 | X187.86Y-86.46 39 | X190.77Y-109.78 40 | X190.89Y-106.18 41 | T0 42 | M30 43 | -------------------------------------------------------------------------------- /original-7610-0641-A/Gerbers/pce-gt-controller-job.gbrjob: -------------------------------------------------------------------------------- 1 | { 2 | "Header": { 3 | "GenerationSoftware": { 4 | "Vendor": "KiCad", 5 | "Application": "Pcbnew", 6 | "Version": "7.0.8" 7 | }, 8 | "CreationDate": "2023-12-31T22:43:44+00:00" 9 | }, 10 | "GeneralSpecs": { 11 | "ProjectId": { 12 | "Name": "pce-gt-controller", 13 | "GUID": "7063652d-6774-42d6-936f-6e74726f6c6c", 14 | "Revision": "BF1.1" 15 | }, 16 | "Size": { 17 | "X": 94.0847, 18 | "Y": 79.1602 19 | }, 20 | "LayerNumber": 2, 21 | "BoardThickness": 1.6, 22 | "Finish": "None" 23 | }, 24 | "DesignRules": [ 25 | { 26 | "Layers": "Outer", 27 | "PadToPad": 0.0, 28 | "PadToTrack": 0.0, 29 | "TrackToTrack": 0.2, 30 | "MinLineWidth": 0.25, 31 | "TrackToRegion": 0.2, 32 | "RegionToRegion": 0.2 33 | } 34 | ], 35 | "FilesAttributes": [ 36 | { 37 | "Path": "pce-gt-controller-F_Cu.gbr", 38 | "FileFunction": "Copper,L1,Top", 39 | "FilePolarity": "Positive" 40 | }, 41 | { 42 | "Path": "pce-gt-controller-B_Cu.gbr", 43 | "FileFunction": "Copper,L2,Bot", 44 | "FilePolarity": "Positive" 45 | }, 46 | { 47 | "Path": "pce-gt-controller-F_Paste.gbr", 48 | "FileFunction": "SolderPaste,Top", 49 | "FilePolarity": "Positive" 50 | }, 51 | { 52 | "Path": "pce-gt-controller-B_Paste.gbr", 53 | "FileFunction": "SolderPaste,Bot", 54 | "FilePolarity": "Positive" 55 | }, 56 | { 57 | "Path": "pce-gt-controller-F_Silkscreen.gbr", 58 | "FileFunction": "Legend,Top", 59 | "FilePolarity": "Positive" 60 | }, 61 | { 62 | "Path": "pce-gt-controller-B_Silkscreen.gbr", 63 | "FileFunction": "Legend,Bot", 64 | "FilePolarity": "Positive" 65 | }, 66 | { 67 | "Path": "pce-gt-controller-F_Mask.gbr", 68 | "FileFunction": "SolderMask,Top", 69 | "FilePolarity": "Negative" 70 | }, 71 | { 72 | "Path": "pce-gt-controller-B_Mask.gbr", 73 | "FileFunction": "SolderMask,Bot", 74 | "FilePolarity": "Negative" 75 | }, 76 | { 77 | "Path": "pce-gt-controller-Edge_Cuts.gbr", 78 | "FileFunction": "Profile", 79 | "FilePolarity": "Positive" 80 | } 81 | ], 82 | "MaterialStackup": [ 83 | { 84 | "Type": "Legend", 85 | "Name": "Top Silk Screen" 86 | }, 87 | { 88 | "Type": "SolderPaste", 89 | "Name": "Top Solder Paste" 90 | }, 91 | { 92 | "Type": "SolderMask", 93 | "Name": "Top Solder Mask" 94 | }, 95 | { 96 | "Type": "Copper", 97 | "Name": "F.Cu" 98 | }, 99 | { 100 | "Type": "Dielectric", 101 | "Material": "FR4", 102 | "Name": "F.Cu/B.Cu", 103 | "Notes": "Type: dielectric layer 1 (from F.Cu to B.Cu)" 104 | }, 105 | { 106 | "Type": "Copper", 107 | "Name": "B.Cu" 108 | }, 109 | { 110 | "Type": "SolderMask", 111 | "Name": "Bottom Solder Mask" 112 | }, 113 | { 114 | "Type": "SolderPaste", 115 | "Name": "Bottom Solder Paste" 116 | }, 117 | { 118 | "Type": "Legend", 119 | "Name": "Bottom Silk Screen" 120 | } 121 | ] 122 | } 123 | -------------------------------------------------------------------------------- /original-7610-0641-A/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (version 7) 3 | (lib (name "GT Controller")(type "KiCad")(uri "${KIPRJMOD}/GT Controller.pretty")(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /original-7610-0641-A/ibom.config.ini: -------------------------------------------------------------------------------- 1 | [html_defaults] 2 | dark_mode=1 3 | show_pads=1 4 | show_fabrication=0 5 | show_silkscreen=1 6 | highlight_pin1=0 7 | redraw_on_drag=1 8 | board_rotation=0 9 | offset_back_rotation=0 10 | checkboxes=Placed 11 | bom_view=left-right 12 | layer_view=FB 13 | compression=1 14 | open_browser=1 15 | [general] 16 | bom_dest_dir=bom 17 | bom_name_format=PC Engine GT Controller PCB 18 | component_sort_order=C,R,L,D,U,Y,X,F,SW,A,~,HS,CNN,J,P,NT,MH 19 | component_blacklist=SW* 20 | blacklist_virtual=1 21 | blacklist_empty_val=1 22 | include_tracks=0 23 | include_nets=0 24 | [fields] 25 | show_fields=Value 26 | group_fields=Value 27 | normalize_field_case=0 28 | board_variant_field= 29 | board_variant_whitelist= 30 | board_variant_blacklist= 31 | dnp_field= 32 | -------------------------------------------------------------------------------- /original-7610-0641-A/images/gt_controller_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/original-7610-0641-A/images/gt_controller_back.jpg -------------------------------------------------------------------------------- /original-7610-0641-A/images/gt_controller_back.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/original-7610-0641-A/images/gt_controller_back.xcf -------------------------------------------------------------------------------- /original-7610-0641-A/images/gt_controller_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/original-7610-0641-A/images/gt_controller_front.jpg -------------------------------------------------------------------------------- /original-7610-0641-A/images/gt_controller_front.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/original-7610-0641-A/images/gt_controller_front.xcf -------------------------------------------------------------------------------- /original-7610-0641-A/images/original_gt_controller_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/original-7610-0641-A/images/original_gt_controller_back.png -------------------------------------------------------------------------------- /original-7610-0641-A/images/original_gt_controller_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/original-7610-0641-A/images/original_gt_controller_front.png -------------------------------------------------------------------------------- /original-7610-0641-A/libs/PCE.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor) 2 | (symbol "BU5782K" (in_bom yes) (on_board yes) 3 | (property "Reference" "U" (at 0 2.54 0) 4 | (effects (font (size 1.27 1.27))) 5 | ) 6 | (property "Value" "BU5782K" (at 0 0 0) 7 | (effects (font (size 1.27 1.27))) 8 | ) 9 | (property "Footprint" "" (at 0 0 0) 10 | (effects (font (size 1.27 1.27)) hide) 11 | ) 12 | (property "Datasheet" "" (at 0 0 0) 13 | (effects (font (size 1.27 1.27)) hide) 14 | ) 15 | (symbol "BU5782K_1_1" 16 | (rectangle (start -13.97 30.48) (end 13.97 -38.1) 17 | (stroke (width 0.254) (type default)) 18 | (fill (type background)) 19 | ) 20 | (pin input line (at -17.78 26.67 0) (length 3.81) 21 | (name "SEL" (effects (font (size 1.27 1.27)))) 22 | (number "1" (effects (font (size 1.27 1.27)))) 23 | ) 24 | (pin input line (at 17.78 19.05 180) (length 3.81) 25 | (name "RIGHT" (effects (font (size 1.27 1.27)))) 26 | (number "10" (effects (font (size 1.27 1.27)))) 27 | ) 28 | (pin no_connect line (at 17.78 -11.43 180) (length 3.81) 29 | (name "N.C" (effects (font (size 1.27 1.27)))) 30 | (number "11" (effects (font (size 1.27 1.27)))) 31 | ) 32 | (pin power_in line (at 0 -41.91 90) (length 3.81) 33 | (name "GND" (effects (font (size 1.27 1.27)))) 34 | (number "12" (effects (font (size 1.27 1.27)))) 35 | ) 36 | (pin no_connect line (at 17.78 -13.97 180) (length 3.81) 37 | (name "N.C" (effects (font (size 1.27 1.27)))) 38 | (number "13" (effects (font (size 1.27 1.27)))) 39 | ) 40 | (pin input line (at 17.78 6.35 180) (length 3.81) 41 | (name "SELECT" (effects (font (size 1.27 1.27)))) 42 | (number "14" (effects (font (size 1.27 1.27)))) 43 | ) 44 | (pin input line (at 17.78 3.81 180) (length 3.81) 45 | (name "RUN" (effects (font (size 1.27 1.27)))) 46 | (number "15" (effects (font (size 1.27 1.27)))) 47 | ) 48 | (pin input line (at 17.78 -26.67 180) (length 3.81) 49 | (name "LINK_1" (effects (font (size 1.27 1.27)))) 50 | (number "16" (effects (font (size 1.27 1.27)))) 51 | ) 52 | (pin output line (at 17.78 -29.21 180) (length 3.81) 53 | (name "LINK_1" (effects (font (size 1.27 1.27)))) 54 | (number "17" (effects (font (size 1.27 1.27)))) 55 | ) 56 | (pin input line (at 17.78 -31.75 180) (length 3.81) 57 | (name "LINK_2" (effects (font (size 1.27 1.27)))) 58 | (number "18" (effects (font (size 1.27 1.27)))) 59 | ) 60 | (pin output line (at 17.78 -34.29 180) (length 3.81) 61 | (name "LINK_2" (effects (font (size 1.27 1.27)))) 62 | (number "19" (effects (font (size 1.27 1.27)))) 63 | ) 64 | (pin input line (at -17.78 24.13 0) (length 3.81) 65 | (name "CLR" (effects (font (size 1.27 1.27)))) 66 | (number "2" (effects (font (size 1.27 1.27)))) 67 | ) 68 | (pin input line (at -17.78 -8.89 0) (length 3.81) 69 | (name "R800-OSC" (effects (font (size 1.27 1.27)))) 70 | (number "20" (effects (font (size 1.27 1.27)))) 71 | ) 72 | (pin input line (at -17.78 -11.43 0) (length 3.81) 73 | (name "R801-OSC" (effects (font (size 1.27 1.27)))) 74 | (number "21" (effects (font (size 1.27 1.27)))) 75 | ) 76 | (pin input line (at -17.78 -13.97 0) (length 3.81) 77 | (name "C801-OSC" (effects (font (size 1.27 1.27)))) 78 | (number "22" (effects (font (size 1.27 1.27)))) 79 | ) 80 | (pin input line (at 17.78 11.43 180) (length 3.81) 81 | (name "BUTTON_II" (effects (font (size 1.27 1.27)))) 82 | (number "23" (effects (font (size 1.27 1.27)))) 83 | ) 84 | (pin output line (at -17.78 -26.67 0) (length 3.81) 85 | (name "TURBO_FAST" (effects (font (size 1.27 1.27)))) 86 | (number "24" (effects (font (size 1.27 1.27)))) 87 | ) 88 | (pin output line (at -17.78 -29.21 0) (length 3.81) 89 | (name "TURBO_SLOW" (effects (font (size 1.27 1.27)))) 90 | (number "25" (effects (font (size 1.27 1.27)))) 91 | ) 92 | (pin no_connect line (at 17.78 -16.51 180) (length 3.81) 93 | (name "N.C" (effects (font (size 1.27 1.27)))) 94 | (number "26" (effects (font (size 1.27 1.27)))) 95 | ) 96 | (pin input line (at 17.78 13.97 180) (length 3.81) 97 | (name "BUTON_I" (effects (font (size 1.27 1.27)))) 98 | (number "27" (effects (font (size 1.27 1.27)))) 99 | ) 100 | (pin power_in line (at 0 34.29 270) (length 3.81) 101 | (name "VCC" (effects (font (size 1.27 1.27)))) 102 | (number "28" (effects (font (size 1.27 1.27)))) 103 | ) 104 | (pin output line (at -17.78 13.97 0) (length 3.81) 105 | (name "D0" (effects (font (size 1.27 1.27)))) 106 | (number "29" (effects (font (size 1.27 1.27)))) 107 | ) 108 | (pin output line (at -17.78 21.59 0) (length 3.81) 109 | (name "SLEEP" (effects (font (size 1.27 1.27)))) 110 | (number "3" (effects (font (size 1.27 1.27)))) 111 | ) 112 | (pin output line (at -17.78 11.43 0) (length 3.81) 113 | (name "D1" (effects (font (size 1.27 1.27)))) 114 | (number "30" (effects (font (size 1.27 1.27)))) 115 | ) 116 | (pin output line (at -17.78 8.89 0) (length 3.81) 117 | (name "D2" (effects (font (size 1.27 1.27)))) 118 | (number "31" (effects (font (size 1.27 1.27)))) 119 | ) 120 | (pin output line (at -17.78 6.35 0) (length 3.81) 121 | (name "D3" (effects (font (size 1.27 1.27)))) 122 | (number "32" (effects (font (size 1.27 1.27)))) 123 | ) 124 | (pin input line (at -17.78 19.05 0) (length 3.81) 125 | (name "RESET" (effects (font (size 1.27 1.27)))) 126 | (number "4" (effects (font (size 1.27 1.27)))) 127 | ) 128 | (pin no_connect line (at 17.78 -8.89 180) (length 3.81) 129 | (name "N.C" (effects (font (size 1.27 1.27)))) 130 | (number "5" (effects (font (size 1.27 1.27)))) 131 | ) 132 | (pin input line (at -17.78 -34.29 0) (length 3.81) 133 | (name "GND" (effects (font (size 1.27 1.27)))) 134 | (number "6" (effects (font (size 1.27 1.27)))) 135 | ) 136 | (pin input line (at 17.78 26.67 180) (length 3.81) 137 | (name "UP" (effects (font (size 1.27 1.27)))) 138 | (number "7" (effects (font (size 1.27 1.27)))) 139 | ) 140 | (pin input line (at 17.78 21.59 180) (length 3.81) 141 | (name "LEFT" (effects (font (size 1.27 1.27)))) 142 | (number "8" (effects (font (size 1.27 1.27)))) 143 | ) 144 | (pin input line (at 17.78 24.13 180) (length 3.81) 145 | (name "DOWN" (effects (font (size 1.27 1.27)))) 146 | (number "9" (effects (font (size 1.27 1.27)))) 147 | ) 148 | ) 149 | ) 150 | ) 151 | -------------------------------------------------------------------------------- /original-7610-0641-A/pce-gt-controller.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 36, 4 | "active_layer_preset": "", 5 | "auto_track_width": false, 6 | "hidden_netclasses": [], 7 | "hidden_nets": [], 8 | "high_contrast_mode": 0, 9 | "net_color_mode": 1, 10 | "opacity": { 11 | "images": 1.0, 12 | "pads": 1.0, 13 | "tracks": 1.0, 14 | "vias": 1.0, 15 | "zones": 0.6 16 | }, 17 | "selection_filter": { 18 | "dimensions": true, 19 | "footprints": true, 20 | "graphics": false, 21 | "keepouts": true, 22 | "lockedItems": true, 23 | "otherItems": true, 24 | "pads": true, 25 | "text": true, 26 | "tracks": true, 27 | "vias": true, 28 | "zones": true 29 | }, 30 | "visible_items": [ 31 | 0, 32 | 1, 33 | 2, 34 | 3, 35 | 4, 36 | 5, 37 | 8, 38 | 9, 39 | 10, 40 | 11, 41 | 12, 42 | 13, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36, 64 | 39, 65 | 40 66 | ], 67 | "visible_layers": "ff3ffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "pce-gt-controller.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /original-7610-0641-A/pce-gt-controller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/original-7610-0641-A/pce-gt-controller.pdf -------------------------------------------------------------------------------- /original-7610-0641-A/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (version 7) 3 | (lib (name "PCE")(type "KiCad")(uri "${KIPRJMOD}/libs/PCE.kicad_sym")(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /remaster/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (version 7) 3 | (lib (name "GT Controller")(type "KiCad")(uri "${KIPRJMOD}/libs/GT Controller.pretty")(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-B_Cu.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:49:09+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Copper,L2,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:49:09* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %TA.AperFunction,ComponentPad*% 33 | %ADD10O,1.642500X2.715000*% 34 | %TD*% 35 | %TA.AperFunction,ComponentPad*% 36 | %ADD11R,1.600000X1.600000*% 37 | %TD*% 38 | %TA.AperFunction,ComponentPad*% 39 | %ADD12C,1.600000*% 40 | %TD*% 41 | %TA.AperFunction,SMDPad,CuDef*% 42 | %ADD13RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 43 | %TD*% 44 | %TA.AperFunction,ViaPad*% 45 | %ADD14C,0.800000*% 46 | %TD*% 47 | %TA.AperFunction,Conductor*% 48 | %ADD15C,0.250000*% 49 | %TD*% 50 | G04 APERTURE END LIST* 51 | D10* 52 | %TO.P,CN801,1,Pin_1*% 53 | %TO.N,AUDIO_R*% 54 | X88136295Y-35824334D03* 55 | %TO.P,CN801,2,Pin_2*% 56 | %TO.N,AUDIO_L*% 57 | X90217545Y-35824334D03* 58 | %TD*% 59 | D11* 60 | %TO.P,CC800,1*% 61 | %TO.N,+5V*% 62 | X160570000Y-66380000D03* 63 | D12* 64 | %TO.P,CC800,2*% 65 | %TO.N,GND*% 66 | X160570000Y-68880000D03* 67 | %TD*% 68 | D13* 69 | %TO.P,R714,1*% 70 | %TO.N,D0*% 71 | X161690000Y-39445000D03* 72 | %TO.P,R714,2*% 73 | %TO.N,Net-(U1-Za)*% 74 | X161690000Y-41270000D03* 75 | %TD*% 76 | %TO.P,R716,1*% 77 | %TO.N,D2*% 78 | X157820000Y-39445000D03* 79 | %TO.P,R716,2*% 80 | %TO.N,Net-(U1-Zc)*% 81 | X157820000Y-41270000D03* 82 | %TD*% 83 | %TO.P,R715,1*% 84 | %TO.N,D1*% 85 | X159750000Y-39445000D03* 86 | %TO.P,R715,2*% 87 | %TO.N,Net-(U1-Zb)*% 88 | X159750000Y-41270000D03* 89 | %TD*% 90 | %TO.P,R717,1*% 91 | %TO.N,D3*% 92 | X155870000Y-39445000D03* 93 | %TO.P,R717,2*% 94 | %TO.N,Net-(U1-Zd)*% 95 | X155870000Y-41270000D03* 96 | %TD*% 97 | D14* 98 | %TO.N,+5V*% 99 | X107450000Y-68730000D03* 100 | X134380000Y-68132500D03* 101 | X117580000Y-53890000D03* 102 | X111420000Y-61490000D03* 103 | X117580000Y-61420000D03* 104 | %TO.N,D0*% 105 | X158810000Y-37060000D03* 106 | %TO.N,D1*% 107 | X157810000Y-37050000D03* 108 | %TO.N,D2*% 109 | X156810000Y-37050000D03* 110 | %TO.N,D3*% 111 | X155810000Y-37060000D03* 112 | %TO.N,SEL*% 113 | X154810000Y-37060000D03* 114 | X125500000Y-51940000D03* 115 | %TO.N,I*% 116 | X151597545Y-49280000D03* 117 | X138040000Y-66295000D03* 118 | X138080000Y-63450000D03* 119 | X125510000Y-55160000D03* 120 | %TO.N,II*% 121 | X140627545Y-51360000D03* 122 | X140000000Y-66295000D03* 123 | X125510000Y-58970000D03* 124 | %TO.N,SELECT*% 125 | X141950000Y-70310000D03* 126 | X143590000Y-66295000D03* 127 | %TO.N,RUN*% 128 | X145550000Y-66295000D03* 129 | X147390000Y-70260000D03* 130 | %TO.N,UP*% 131 | X99600000Y-47980600D03* 132 | X127020000Y-66307500D03* 133 | %TO.N,RIGHT*% 134 | X107315000Y-52190000D03* 135 | X125060000Y-66307500D03* 136 | %TO.N,DOWN*% 137 | X99517200Y-65938400D03* 138 | X130940000Y-66307500D03* 139 | %TO.N,LEFT*% 140 | X128980000Y-66307500D03* 141 | X89357200Y-52180000D03* 142 | %TO.N,Net-(U1-Za)*% 143 | X125510000Y-57700000D03* 144 | %TO.N,Net-(U1-Zb)*% 145 | X125510000Y-61510000D03* 146 | %TO.N,Net-(U1-Zc)*% 147 | X130460000Y-62780000D03* 148 | %TO.N,Net-(U1-Zd)*% 149 | X130460000Y-58970000D03* 150 | %TO.N,Net-(SW801-Pad2)*% 151 | X133807200Y-75210000D03* 152 | X159000000Y-51190000D03* 153 | %TO.N,Net-(SW802-Pad2)*% 154 | X145197545Y-59140000D03* 155 | X104851200Y-75158600D03* 156 | %TD*% 157 | D15* 158 | %TO.N,+5V*% 159 | X117510000Y-61490000D02* 160 | X117580000Y-61420000D01* 161 | X132102500Y-70410000D02* 162 | X129750000Y-70410000D01* 163 | X117580000Y-61420000D02* 164 | X117580000Y-53890000D01* 165 | X134380000Y-68132500D02* 166 | X132102500Y-70410000D01* 167 | X129750000Y-70410000D02* 168 | X109130000Y-70410000D01* 169 | X111420000Y-61490000D02* 170 | X117510000Y-61490000D01* 171 | X109130000Y-70410000D02* 172 | X107450000Y-68730000D01* 173 | %TO.N,D0*% 174 | X158810000Y-37060000D02* 175 | X159450000Y-37700000D01* 176 | X159450000Y-37700000D02* 177 | X161190000Y-37700000D01* 178 | X161690000Y-38200000D02* 179 | X161690000Y-39445000D01* 180 | X161190000Y-37700000D02* 181 | X161690000Y-38200000D01* 182 | %TO.N,D1*% 183 | X158350000Y-38090000D02* 184 | X157810000Y-37550000D01* 185 | X159750000Y-38230000D02* 186 | X159610000Y-38090000D01* 187 | X159610000Y-38090000D02* 188 | X158350000Y-38090000D01* 189 | X159750000Y-39445000D02* 190 | X159750000Y-38230000D01* 191 | X157810000Y-37550000D02* 192 | X157810000Y-37050000D01* 193 | %TO.N,D2*% 194 | X157820000Y-38510000D02* 195 | X157820000Y-39445000D01* 196 | X156810000Y-37050000D02* 197 | X156810000Y-37500000D01* 198 | X156810000Y-37500000D02* 199 | X157820000Y-38510000D01* 200 | %TO.N,D3*% 201 | X155810000Y-39385000D02* 202 | X155870000Y-39445000D01* 203 | X155810000Y-37060000D02* 204 | X155810000Y-39385000D01* 205 | %TO.N,SEL*% 206 | X125490000Y-50470000D02* 207 | X132310000Y-43650000D01* 208 | X154810000Y-38750000D02* 209 | X154810000Y-37060000D01* 210 | X125500000Y-51940000D02* 211 | X125490000Y-50470000D01* 212 | X150150000Y-39230000D02* 213 | X154330000Y-39230000D01* 214 | X154330000Y-39230000D02* 215 | X154810000Y-38750000D01* 216 | X145730000Y-43650000D02* 217 | X150150000Y-39230000D01* 218 | X132310000Y-43650000D02* 219 | X145730000Y-43650000D01* 220 | %TO.N,I*% 221 | X122840000Y-56980000D02* 222 | X124660000Y-55160000D01* 223 | X140030000Y-49230000D02* 224 | X151547545Y-49230000D01* 225 | X124660000Y-55160000D02* 226 | X125510000Y-55160000D01* 227 | X124010000Y-64870000D02* 228 | X122840000Y-63700000D01* 229 | X138080000Y-63450000D02* 230 | X138080000Y-51180000D01* 231 | X151547545Y-49230000D02* 232 | X151597545Y-49280000D01* 233 | X136615000Y-64870000D02* 234 | X124010000Y-64870000D01* 235 | X122840000Y-63700000D02* 236 | X122840000Y-56980000D01* 237 | X138080000Y-51180000D02* 238 | X140030000Y-49230000D01* 239 | X125500000Y-55150000D02* 240 | X125510000Y-55160000D01* 241 | X138040000Y-66295000D02* 242 | X136615000Y-64870000D01* 243 | %TO.N,II*% 244 | X125510000Y-58970000D02* 245 | X126370000Y-58970000D01* 246 | X126370000Y-58970000D02* 247 | X126980000Y-58360000D01* 248 | X126960000Y-58340000D02* 249 | X126960000Y-57400000D01* 250 | X140000000Y-61670000D02* 251 | X138750000Y-60420000D01* 252 | X138750000Y-53237545D02* 253 | X140627545Y-51360000D01* 254 | X140000000Y-65290000D02* 255 | X140000000Y-66295000D01* 256 | X124180000Y-64490000D02* 257 | X139200000Y-64490000D01* 258 | X138750000Y-60420000D02* 259 | X138750000Y-53237545D01* 260 | X140000000Y-66295000D02* 261 | X140000000Y-61670000D01* 262 | X139200000Y-64490000D02* 263 | X140000000Y-65290000D01* 264 | X123230000Y-63540000D02* 265 | X124180000Y-64490000D01* 266 | X123230000Y-57730000D02* 267 | X123230000Y-63540000D01* 268 | X126310000Y-56750000D02* 269 | X124210000Y-56750000D01* 270 | X124210000Y-56750000D02* 271 | X123230000Y-57730000D01* 272 | X126980000Y-58360000D02* 273 | X126960000Y-58340000D01* 274 | X126960000Y-57400000D02* 275 | X126310000Y-56750000D01* 276 | %TO.N,SELECT*% 277 | X141920000Y-70280000D02* 278 | X141950000Y-70310000D01* 279 | X143590000Y-66295000D02* 280 | X142485000Y-66295000D01* 281 | X142485000Y-66295000D02* 282 | X141920000Y-66860000D01* 283 | X141920000Y-66860000D02* 284 | X141920000Y-70280000D01* 285 | %TO.N,RUN*% 286 | X147390000Y-66890000D02* 287 | X146795000Y-66295000D01* 288 | X147390000Y-70260000D02* 289 | X147390000Y-66890000D01* 290 | X146795000Y-66295000D02* 291 | X145550000Y-66295000D01* 292 | %TO.N,UP*% 293 | X127020000Y-66307500D02* 294 | X126367500Y-66960000D01* 295 | X99611579Y-62308421D02* 296 | X99611579Y-47992179D01* 297 | X99611579Y-47992179D02* 298 | X99600000Y-47980600D01* 299 | X104263158Y-66960000D02* 300 | X99611579Y-62308421D01* 301 | X126367500Y-66960000D02* 302 | X104263158Y-66960000D01* 303 | %TO.N,RIGHT*% 304 | X109180000Y-62410000D02* 305 | X109180000Y-64450000D01* 306 | X107315000Y-52190000D02* 307 | X108436400Y-52190000D01* 308 | X111040000Y-66310000D02* 309 | X125057500Y-66310000D01* 310 | X109180000Y-62410000D02* 311 | X109180000Y-52933600D01* 312 | X108436400Y-52190000D02* 313 | X109180000Y-52933600D01* 314 | X125057500Y-66310000D02* 315 | X125060000Y-66307500D01* 316 | X109180000Y-64450000D02* 317 | X111040000Y-66310000D01* 318 | %TO.N,DOWN*% 319 | X104840000Y-67740000D02* 320 | X129507500Y-67740000D01* 321 | X102189000Y-65959000D02* 322 | X103960000Y-67730000D01* 323 | X102168400Y-65938400D02* 324 | X102189000Y-65959000D01* 325 | X129507500Y-67740000D02* 326 | X130940000Y-66307500D01* 327 | X99517200Y-65938400D02* 328 | X102168400Y-65938400D01* 329 | X104830000Y-67730000D02* 330 | X104840000Y-67740000D01* 331 | X103960000Y-67730000D02* 332 | X104830000Y-67730000D01* 333 | %TO.N,LEFT*% 334 | X89357200Y-52587200D02* 335 | X91150000Y-54380000D01* 336 | X103445000Y-66675000D02* 337 | X91150000Y-54380000D01* 338 | X127947500Y-67340000D02* 339 | X128980000Y-66307500D01* 340 | X104110000Y-67340000D02* 341 | X127947500Y-67340000D01* 342 | X103445000Y-66675000D02* 343 | X104110000Y-67340000D01* 344 | X89357200Y-52180000D02* 345 | X89357200Y-52587200D01* 346 | %TO.N,Net-(U1-Za)*% 347 | X148696158Y-42827000D02* 348 | X146333158Y-45190000D01* 349 | X138679474Y-45190000D02* 350 | X134007000Y-49862474D01* 351 | X160133000Y-42827000D02* 352 | X148696158Y-42827000D01* 353 | X124210000Y-57700000D02* 354 | X125510000Y-57700000D01* 355 | X134007000Y-49862474D02* 356 | X134007000Y-62060000D01* 357 | X134007000Y-62553000D02* 358 | X132460000Y-64100000D01* 359 | X123630000Y-63400000D02* 360 | X123630000Y-58280000D01* 361 | X123630000Y-58280000D02* 362 | X124210000Y-57700000D01* 363 | X124330000Y-64100000D02* 364 | X123630000Y-63400000D01* 365 | X146333158Y-45190000D02* 366 | X138679474Y-45190000D01* 367 | X134007000Y-62060000D02* 368 | X134007000Y-62553000D01* 369 | X161690000Y-41270000D02* 370 | X160133000Y-42827000D01* 371 | X132460000Y-64100000D02* 372 | X124330000Y-64100000D01* 373 | %TO.N,Net-(U1-Zb)*% 374 | X138526316Y-44810000D02* 375 | X133630000Y-49706316D01* 376 | X158570000Y-42450000D02* 377 | X148540000Y-42450000D01* 378 | X146180000Y-44810000D02* 379 | X138526316Y-44810000D01* 380 | X159750000Y-41270000D02* 381 | X158570000Y-42450000D01* 382 | X132300000Y-63720000D02* 383 | X124510000Y-63720000D01* 384 | X133630000Y-49706316D02* 385 | X133630000Y-62390000D01* 386 | X148540000Y-42450000D02* 387 | X146180000Y-44810000D01* 388 | X133630000Y-62390000D02* 389 | X132300000Y-63720000D01* 390 | X124510000Y-63720000D02* 391 | X124020000Y-63230000D01* 392 | X124710000Y-61510000D02* 393 | X125510000Y-61510000D01* 394 | X124020000Y-62200000D02* 395 | X124710000Y-61510000D01* 396 | X124020000Y-63230000D02* 397 | X124020000Y-62200000D01* 398 | %TO.N,Net-(U1-Zc)*% 399 | X157480000Y-42070000D02* 400 | X148376316Y-42070000D01* 401 | X148376316Y-42070000D02* 402 | X146026316Y-44420000D01* 403 | X157820000Y-41270000D02* 404 | X157820000Y-41730000D01* 405 | X138383158Y-44420000D02* 406 | X133250000Y-49553158D01* 407 | X133250000Y-62060000D02* 408 | X132530000Y-62780000D01* 409 | X157820000Y-41730000D02* 410 | X157480000Y-42070000D01* 411 | X132530000Y-62780000D02* 412 | X130460000Y-62780000D01* 413 | X146026316Y-44420000D02* 414 | X138383158Y-44420000D01* 415 | X133250000Y-49553158D02* 416 | X133250000Y-62060000D01* 417 | %TO.N,Net-(U1-Zd)*% 418 | X138230000Y-44040000D02* 419 | X132860000Y-49410000D01* 420 | X148643158Y-41270000D02* 421 | X145873158Y-44040000D01* 422 | X145873158Y-44040000D02* 423 | X138230000Y-44040000D01* 424 | X132860000Y-58370000D02* 425 | X132260000Y-58970000D01* 426 | X132860000Y-49410000D02* 427 | X132860000Y-58370000D01* 428 | X155870000Y-41270000D02* 429 | X148643158Y-41270000D01* 430 | X132260000Y-58970000D02* 431 | X130460000Y-58970000D01* 432 | %TO.N,Net-(SW801-Pad2)*% 433 | X147350000Y-75210000D02* 434 | X150320000Y-72240000D01* 435 | X150320000Y-59870000D02* 436 | X159000000Y-51190000D01* 437 | X133807200Y-75210000D02* 438 | X147350000Y-75210000D01* 439 | X150320000Y-72240000D02* 440 | X150320000Y-59870000D01* 441 | %TO.N,Net-(SW802-Pad2)*% 442 | X149943000Y-70430000D02* 443 | X149943000Y-61923000D01* 444 | X104851200Y-73432800D02* 445 | X106934000Y-71350000D01* 446 | X147160000Y-59140000D02* 447 | X145197545Y-59140000D01* 448 | X149023000Y-71350000D02* 449 | X149943000Y-70430000D01* 450 | X149943000Y-61923000D02* 451 | X147160000Y-59140000D01* 452 | X104851200Y-75158600D02* 453 | X104851200Y-73432800D01* 454 | X106934000Y-71350000D02* 455 | X149023000Y-71350000D01* 456 | %TD*% 457 | M02* 458 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-B_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:49:09+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Bot*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:49:09* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10O,1.642500X2.715000*% 33 | %ADD11R,1.600000X1.600000*% 34 | %ADD12C,1.600000*% 35 | %ADD13RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 36 | G04 APERTURE END LIST* 37 | D10* 38 | %TO.C,CN801*% 39 | X88136295Y-35824334D03* 40 | X90217545Y-35824334D03* 41 | %TD*% 42 | D11* 43 | %TO.C,CC800*% 44 | X160570000Y-66380000D03* 45 | D12* 46 | X160570000Y-68880000D03* 47 | %TD*% 48 | D13* 49 | %TO.C,R714*% 50 | X161690000Y-39445000D03* 51 | X161690000Y-41270000D03* 52 | %TD*% 53 | %TO.C,R716*% 54 | X157820000Y-39445000D03* 55 | X157820000Y-41270000D03* 56 | %TD*% 57 | %TO.C,R715*% 58 | X159750000Y-39445000D03* 59 | X159750000Y-41270000D03* 60 | %TD*% 61 | %TO.C,R717*% 62 | X155870000Y-39445000D03* 63 | X155870000Y-41270000D03* 64 | %TD*% 65 | M02* 66 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-B_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:49:09+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:49:09* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 33 | G04 APERTURE END LIST* 34 | D10* 35 | %TO.C,R714*% 36 | X161690000Y-39445000D03* 37 | X161690000Y-41270000D03* 38 | %TD*% 39 | %TO.C,R716*% 40 | X157820000Y-39445000D03* 41 | X157820000Y-41270000D03* 42 | %TD*% 43 | %TO.C,R715*% 44 | X159750000Y-39445000D03* 45 | X159750000Y-41270000D03* 46 | %TD*% 47 | %TO.C,R717*% 48 | X155870000Y-39445000D03* 49 | X155870000Y-41270000D03* 50 | %TD*% 51 | M02* 52 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-Edge_Cuts.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:49:09+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Profile,NP*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:49:09* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %TA.AperFunction,Profile*% 14 | %ADD10C,0.100000*% 15 | %TD*% 16 | %TA.AperFunction,Profile*% 17 | %ADD11C,0.050000*% 18 | %TD*% 19 | G04 APERTURE END LIST* 20 | D10* 21 | X74675090Y-50872445D02* 22 | G75* 23 | G03* 24 | X74317545Y-51230000I10J-357555D01* 25 | G01* 26 | X105072323Y-110382668D02* 27 | G75* 28 | G03* 29 | X105429868Y-110025090I-23J357568D01* 30 | G01* 31 | X82267545Y-90752455D02* 32 | X74317545Y-82802455D01* 33 | X125640000Y-109200000D02* 34 | X125640000Y-109990000D01* 35 | X122080000Y-109992455D02* 36 | G75* 37 | G03* 38 | X122437545Y-110350000I357600J55D01* 39 | G01* 40 | X135022323Y-110337568D02* 41 | G75* 42 | G03* 43 | X135379868Y-109980000I-23J357568D01* 44 | G01* 45 | X168245090Y-82380000D02* 46 | X168245090Y-82810000D01* 47 | X141272268Y-38540000D02* 48 | X141272268Y-31780000D01* 49 | X116780000Y-109990000D02* 50 | X116780000Y-109210000D01* 51 | X136880000Y-108270000D02* 52 | G75* 53 | G03* 54 | X135379868Y-108270000I-750066J0D01* 55 | G01* 56 | X114407815Y-38897406D02* 57 | G75* 58 | G03* 59 | X128287275Y-38897406I6939730J4859253D01* 60 | G01* 61 | X166461494Y-61820000D02* 62 | G75* 63 | G03* 64 | X166461494Y-61820000I-1330000J0D01* 65 | G01* 66 | X101289994Y-38539861D02* 67 | G75* 68 | G03* 69 | X101647545Y-38897406I357606J61D01* 70 | G01* 71 | X141237545Y-110312455D02* 72 | X137237545Y-110312455D01* 73 | X122597545Y-87850000D02* 74 | G75* 75 | G03* 76 | X122597545Y-87850000I-1330000J0D01* 77 | G01* 78 | X106930000Y-110000000D02* 79 | X106930000Y-108315090D01* 80 | X165067545Y-41307545D02* 81 | X164530367Y-41307545D01* 82 | X116780000Y-109210000D02* 83 | G75* 84 | G03* 85 | X115660000Y-109210000I-560000J0D01* 86 | G01* 87 | X77785045Y-41650000D02* 88 | G75* 89 | G03* 90 | X77427545Y-41292455I-357545J0D01* 91 | G01* 92 | X149260000Y-91155090D02* 93 | X149260000Y-102290000D01* 94 | X101325090Y-31680000D02* 95 | X101290000Y-38539861D01* 96 | X105072323Y-110382635D02* 97 | X101347545Y-110382635D01* 98 | X106930000Y-108315090D02* 99 | G75* 100 | G03* 101 | X105429868Y-108315090I-750066J0D01* 102 | G01* 103 | X74675090Y-50872455D02* 104 | X77427545Y-50872455D01* 105 | X92947012Y-90752455D02* 106 | X82267545Y-90752455D01* 107 | X168302268Y-31772822D02* 108 | X168302268Y-40440000D01* 109 | X164172822Y-41665090D02* 110 | X164172822Y-50530000D01* 111 | X120074723Y-110354768D02* 112 | G75* 113 | G03* 114 | X120432268Y-109997178I-23J357568D01* 115 | G01* 116 | X106929955Y-110000000D02* 117 | G75* 118 | G03* 119 | X107287545Y-110357545I357545J0D01* 120 | G01* 121 | X122077545Y-108930000D02* 122 | X122080000Y-109992455D01* 123 | X74677545Y-31322500D02* 124 | G75* 125 | G03* 126 | X74320000Y-31680000I-45J-357500D01* 127 | G01* 128 | X101325045Y-31680000D02* 129 | G75* 130 | G03* 131 | X100967545Y-31322455I-357545J0D01* 132 | G01* 133 | X74317545Y-82802455D02* 134 | X74317545Y-51230000D01* 135 | X136880000Y-109954910D02* 136 | X136880000Y-108270000D01* 137 | X160257545Y-90797545D02* 138 | X149617545Y-90797545D01* 139 | X114407815Y-38897406D02* 140 | X101647545Y-38897406D01* 141 | X93304557Y-102339647D02* 142 | X93304557Y-91110000D01* 143 | X164530367Y-50887545D02* 144 | X167887545Y-50887545D01* 145 | X74320000Y-40934910D02* 146 | X74320000Y-31680000D01* 147 | X126759955Y-109980000D02* 148 | G75* 149 | G03* 150 | X127117545Y-110337545I357545J0D01* 151 | G01* 152 | X140914723Y-38897568D02* 153 | G75* 154 | G03* 155 | X141272268Y-38540000I-23J357568D01* 156 | G01* 157 | X105429868Y-108315090D02* 158 | X105429868Y-110025090D01* 159 | X120432268Y-109997178D02* 160 | X120432268Y-108930000D01* 161 | X167944723Y-31415277D02* 162 | X167707545Y-31415277D01* 163 | X125282455Y-110347545D02* 164 | X122437545Y-110350000D01* 165 | X135022323Y-110337545D02* 166 | X127117545Y-110337545D01* 167 | X164530367Y-41307522D02* 168 | G75* 169 | G03* 170 | X164172822Y-41665090I33J-357578D01* 171 | G01* 172 | X74319945Y-40934910D02* 173 | G75* 174 | G03* 175 | X74677545Y-41292455I357555J10D01* 176 | G01* 177 | X120432268Y-108930000D02* 178 | X122077545Y-108930000D01* 179 | X168302323Y-31772822D02* 180 | G75* 181 | G03* 182 | X167944723Y-31415277I-357623J-78D01* 183 | G01* 184 | X135379868Y-108270000D02* 185 | X135379868Y-109980000D01* 186 | X126760000Y-109980000D02* 187 | X126760000Y-109200000D01* 188 | X93304545Y-91110000D02* 189 | G75* 190 | G03* 191 | X92947012Y-90752455I-357445J100D01* 192 | G01* 193 | X168245090Y-51245090D02* 194 | X168245090Y-82380000D01* 195 | X128287275Y-38897406D02* 196 | X140907545Y-38897406D01* 197 | X78067545Y-33900000D02* 198 | G75* 199 | G03* 200 | X78067545Y-33900000I-1330000J0D01* 201 | G01* 202 | X77427545Y-41292455D02* 203 | X74677545Y-41292455D01* 204 | X115660000Y-109210000D02* 205 | X115660000Y-110000000D01* 206 | X167944723Y-41307545D02* 207 | X165067545Y-41307545D01* 208 | X166441494Y-33900000D02* 209 | G75* 210 | G03* 211 | X166441494Y-33900000I-1330000J0D01* 212 | G01* 213 | X149617545Y-90797500D02* 214 | G75* 215 | G03* 216 | X149260000Y-91155090I55J-357600D01* 217 | G01* 218 | X167944723Y-41307568D02* 219 | G75* 220 | G03* 221 | X168302268Y-40950000I-23J357568D01* 222 | G01* 223 | X141630367Y-31415277D02* 224 | X167707545Y-31415277D01* 225 | X168245090Y-82810000D02* 226 | X160257545Y-90797545D01* 227 | X77427545Y-50872490D02* 228 | G75* 229 | G03* 230 | X77785090Y-50514910I-45J357590D01* 231 | G01* 232 | X126760000Y-109200000D02* 233 | G75* 234 | G03* 235 | X125640000Y-109200000I-560000J0D01* 236 | G01* 237 | X138507546Y-98610000D02* 238 | G75* 239 | G03* 240 | X138507546Y-98610000I-1032376J0D01* 241 | G01* 242 | X116779955Y-109990000D02* 243 | G75* 244 | G03* 245 | X117137545Y-110347545I357545J0D01* 246 | G01* 247 | X77785090Y-50514910D02* 248 | X77785090Y-41650000D01* 249 | X120074723Y-110354723D02* 250 | X117137545Y-110347545D01* 251 | X74677545Y-31322455D02* 252 | X100967545Y-31322455D01* 253 | X168302268Y-40950000D02* 254 | X168302268Y-40440000D01* 255 | X101347545Y-110382635D02* 256 | X93304557Y-102339647D01* 257 | X168245055Y-51245090D02* 258 | G75* 259 | G03* 260 | X167887545Y-50887545I-357455J90D01* 261 | G01* 262 | X115302455Y-110357545D02* 263 | X107287545Y-110357545D01* 264 | X149260000Y-102290000D02* 265 | X141237545Y-110312455D01* 266 | X115302455Y-110357500D02* 267 | G75* 268 | G03* 269 | X115660000Y-110000000I45J357500D01* 270 | G01* 271 | X136879945Y-109954910D02* 272 | G75* 273 | G03* 274 | X137237545Y-110312455I357555J10D01* 275 | G01* 276 | X164172855Y-50530000D02* 277 | G75* 278 | G03* 279 | X164530367Y-50887545I357445J-100D01* 280 | G01* 281 | X125282455Y-110347500D02* 282 | G75* 283 | G03* 284 | X125640000Y-109990000I45J357500D01* 285 | G01* 286 | X78111494Y-62360000D02* 287 | G75* 288 | G03* 289 | X78111494Y-62360000I-1330000J0D01* 290 | G01* 291 | X141630367Y-31415322D02* 292 | G75* 293 | G03* 294 | X141272822Y-31772822I-67J-357478D01* 295 | G01* 296 | D11* 297 | %TO.C,J800*% 298 | X115923795Y-103452500D02* 299 | X116733795Y-103452500D01* 300 | X116733795Y-103452500D02* 301 | X116733795Y-105082500D01* 302 | X116733795Y-105082500D02* 303 | X115923795Y-105082500D01* 304 | X115923795Y-105082500D02* 305 | X115923795Y-103452500D01* 306 | X118353795Y-103452500D02* 307 | X119163795Y-103452500D01* 308 | X119163795Y-103452500D02* 309 | X119163795Y-105082500D01* 310 | X119163795Y-105082500D02* 311 | X118353795Y-105082500D01* 312 | X118353795Y-105082500D02* 313 | X118353795Y-103452500D01* 314 | X123303795Y-103452500D02* 315 | X124113795Y-103452500D01* 316 | X124113795Y-103452500D02* 317 | X124113795Y-105082500D01* 318 | X124113795Y-105082500D02* 319 | X123303795Y-105082500D01* 320 | X123303795Y-105082500D02* 321 | X123303795Y-103452500D01* 322 | X125853795Y-103452500D02* 323 | X126663795Y-103452500D01* 324 | X126663795Y-103452500D02* 325 | X126663795Y-105082500D01* 326 | X126663795Y-105082500D02* 327 | X125853795Y-105082500D01* 328 | X125853795Y-105082500D02* 329 | X125853795Y-103452500D01* 330 | X121963795Y-104252500D02* 331 | G75* 332 | G03* 333 | X121963795Y-104252500I-672681J0D01* 334 | G01* 335 | %TD*% 336 | M02* 337 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-F_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:49:09+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:49:09* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 33 | %ADD11RoundRect,0.250000X0.450000X-0.262500X0.450000X0.262500X-0.450000X0.262500X-0.450000X-0.262500X0*% 34 | %ADD12RoundRect,0.150000X-0.825000X-0.150000X0.825000X-0.150000X0.825000X0.150000X-0.825000X0.150000X0*% 35 | %ADD13RoundRect,0.150000X0.357500X0.150000X-0.357500X0.150000X-0.357500X-0.150000X0.357500X-0.150000X0*% 36 | %ADD14RoundRect,0.150000X0.392500X0.150000X-0.392500X0.150000X-0.392500X-0.150000X0.392500X-0.150000X0*% 37 | %ADD15RoundRect,0.250000X-0.262500X-0.450000X0.262500X-0.450000X0.262500X0.450000X-0.262500X0.450000X0*% 38 | G04 APERTURE END LIST* 39 | D10* 40 | %TO.C,R707*% 41 | X130940000Y-66307500D03* 42 | X130940000Y-68132500D03* 43 | %TD*% 44 | %TO.C,R701*% 45 | X138040000Y-66295000D03* 46 | X138040000Y-68120000D03* 47 | %TD*% 48 | %TO.C,R702*% 49 | X140000000Y-66295000D03* 50 | X140000000Y-68120000D03* 51 | %TD*% 52 | %TO.C,R708*% 53 | X128980000Y-66307500D03* 54 | X128980000Y-68132500D03* 55 | %TD*% 56 | D11* 57 | %TO.C,R712*% 58 | X117560000Y-68132500D03* 59 | X117560000Y-66307500D03* 60 | %TD*% 61 | D10* 62 | %TO.C,R710*% 63 | X112440000Y-53337500D03* 64 | X112440000Y-55162500D03* 65 | %TD*% 66 | D12* 67 | %TO.C,U1*% 68 | X125510000Y-53890000D03* 69 | X125510000Y-55160000D03* 70 | X125510000Y-56430000D03* 71 | X125510000Y-57700000D03* 72 | X125510000Y-58970000D03* 73 | X125510000Y-60240000D03* 74 | X125510000Y-61510000D03* 75 | X125510000Y-62780000D03* 76 | X130460000Y-62780000D03* 77 | X130460000Y-61510000D03* 78 | X130460000Y-60240000D03* 79 | X130460000Y-58970000D03* 80 | X130460000Y-57700000D03* 81 | X130460000Y-56430000D03* 82 | X130460000Y-55160000D03* 83 | X130460000Y-53890000D03* 84 | %TD*% 85 | D11* 86 | %TO.C,R711*% 87 | X119510000Y-68132500D03* 88 | X119510000Y-66307500D03* 89 | %TD*% 90 | D10* 91 | %TO.C,R706*% 92 | X125060000Y-66307500D03* 93 | X125060000Y-68132500D03* 94 | %TD*% 95 | D13* 96 | %TO.C,D800*% 97 | X162847545Y-59110000D03* 98 | X162847545Y-57210000D03* 99 | D14* 100 | X160547545Y-58160000D03* 101 | %TD*% 102 | D10* 103 | %TO.C,R704*% 104 | X145550000Y-66295000D03* 105 | X145550000Y-68120000D03* 106 | %TD*% 107 | %TO.C,R703*% 108 | X143590000Y-66295000D03* 109 | X143590000Y-68120000D03* 110 | %TD*% 111 | D11* 112 | %TO.C,R713*% 113 | X115610000Y-68132500D03* 114 | X115610000Y-66307500D03* 115 | %TD*% 116 | D15* 117 | %TO.C,R709*% 118 | X123675000Y-51940000D03* 119 | X125500000Y-51940000D03* 120 | %TD*% 121 | D12* 122 | %TO.C,U2*% 123 | X115045000Y-53890000D03* 124 | X115045000Y-55160000D03* 125 | X115045000Y-56430000D03* 126 | X115045000Y-57700000D03* 127 | X115045000Y-58970000D03* 128 | X115045000Y-60240000D03* 129 | X115045000Y-61510000D03* 130 | X115045000Y-62780000D03* 131 | X119995000Y-62780000D03* 132 | X119995000Y-61510000D03* 133 | X119995000Y-60240000D03* 134 | X119995000Y-58970000D03* 135 | X119995000Y-57700000D03* 136 | X119995000Y-56430000D03* 137 | X119995000Y-55160000D03* 138 | X119995000Y-53890000D03* 139 | %TD*% 140 | D10* 141 | %TO.C,R705*% 142 | X127020000Y-66307500D03* 143 | X127020000Y-68132500D03* 144 | %TD*% 145 | D11* 146 | %TO.C,C703*% 147 | X130450000Y-50742500D03* 148 | X130450000Y-48917500D03* 149 | %TD*% 150 | %TO.C,C702*% 151 | X120010000Y-50742500D03* 152 | X120010000Y-48917500D03* 153 | %TD*% 154 | M02* 155 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-NPTH-drl_map.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.8*% 2 | %TF.CreationDate,2023-12-31T22:49:12+00:00*% 3 | %TF.ProjectId,pce-gt-controller,7063652d-6774-42d6-936f-6e74726f6c6c,BF1.1*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Drillmap*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX45Y45*% 8 | G04 Gerber Fmt 4.5, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.8) date 2023-12-31 22:49:12* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,0.100000*% 15 | %ADD11C,0.200000*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X7467509Y-5087245D02* 19 | G75* 20 | G03* 21 | X7431754Y-5123000I1J-35756D01* 22 | G01* 23 | X10507232Y-11038267D02* 24 | G75* 25 | G03* 26 | X10542987Y-11002509I-2J35757D01* 27 | G01* 28 | X8226754Y-9075246D02* 29 | X7431754Y-8280245D01* 30 | X12564000Y-10920000D02* 31 | X12564000Y-10999000D01* 32 | X12208000Y-10999246D02* 33 | G75* 34 | G03* 35 | X12243754Y-11035000I35760J6D01* 36 | G01* 37 | X13502232Y-11033757D02* 38 | G75* 39 | G03* 40 | X13537987Y-10998000I-2J35757D01* 41 | G01* 42 | X16824509Y-8238000D02* 43 | X16824509Y-8281000D01* 44 | X14127227Y-3854000D02* 45 | X14127227Y-3178000D01* 46 | X11678000Y-10999000D02* 47 | X11678000Y-10921000D01* 48 | X13688000Y-10827000D02* 49 | G75* 50 | G03* 51 | X13537987Y-10827000I-75007J0D01* 52 | G01* 53 | X11440781Y-3889741D02* 54 | G75* 55 | G03* 56 | X12828727Y-3889741I693973J485925D01* 57 | G01* 58 | X16646149Y-6182000D02* 59 | G75* 60 | G03* 61 | X16646149Y-6182000I-133000J0D01* 62 | G01* 63 | X10128999Y-3853986D02* 64 | G75* 65 | G03* 66 | X10164755Y-3889741I35761J6D01* 67 | G01* 68 | X14123754Y-11031246D02* 69 | X13723754Y-11031246D01* 70 | X12259754Y-8785000D02* 71 | G75* 72 | G03* 73 | X12259754Y-8785000I-133000J0D01* 74 | G01* 75 | X10693000Y-11000000D02* 76 | X10693000Y-10831509D01* 77 | X16506754Y-4130754D02* 78 | X16453037Y-4130754D01* 79 | X11678000Y-10921000D02* 80 | G75* 81 | G03* 82 | X11566000Y-10921000I-56000J0D01* 83 | G01* 84 | X7778504Y-4165000D02* 85 | G75* 86 | G03* 87 | X7742754Y-4129245I-35755J0D01* 88 | G01* 89 | X14926000Y-9115509D02* 90 | X14926000Y-10229000D01* 91 | X10132509Y-3168000D02* 92 | X10129000Y-3853986D01* 93 | X10507232Y-11038264D02* 94 | X10134755Y-11038264D01* 95 | X10693000Y-10831509D02* 96 | G75* 97 | G03* 98 | X10542987Y-10831509I-75007J0D01* 99 | G01* 100 | X7467509Y-5087246D02* 101 | X7742754Y-5087246D01* 102 | X9294701Y-9075246D02* 103 | X8226754Y-9075246D01* 104 | X16830227Y-3177282D02* 105 | X16830227Y-4044000D01* 106 | X16417282Y-4166509D02* 107 | X16417282Y-5053000D01* 108 | X12007472Y-11035477D02* 109 | G75* 110 | G03* 111 | X12043227Y-10999718I-2J35757D01* 112 | G01* 113 | X10692996Y-11000000D02* 114 | G75* 115 | G03* 116 | X10728755Y-11035755I35755J0D01* 117 | G01* 118 | X12207754Y-10893000D02* 119 | X12208000Y-10999246D01* 120 | X7467754Y-3132250D02* 121 | G75* 122 | G03* 123 | X7432000Y-3168000I-5J-35750D01* 124 | G01* 125 | X10132505Y-3168000D02* 126 | G75* 127 | G03* 128 | X10096755Y-3132245I-35755J0D01* 129 | G01* 130 | X7431754Y-8280245D02* 131 | X7431754Y-5123000D01* 132 | X13688000Y-10995491D02* 133 | X13688000Y-10827000D01* 134 | X16025754Y-9079755D02* 135 | X14961754Y-9079755D01* 136 | X11440781Y-3889741D02* 137 | X10164755Y-3889741D01* 138 | X9330456Y-10233965D02* 139 | X9330456Y-9111000D01* 140 | X16453037Y-5088755D02* 141 | X16788755Y-5088755D01* 142 | X7432000Y-4093491D02* 143 | X7432000Y-3168000D01* 144 | X12675995Y-10998000D02* 145 | G75* 146 | G03* 147 | X12711754Y-11033755I35755J0D01* 148 | G01* 149 | X14091472Y-3889757D02* 150 | G75* 151 | G03* 152 | X14127227Y-3854000I-2J35757D01* 153 | G01* 154 | X10542987Y-10831509D02* 155 | X10542987Y-11002509D01* 156 | X12043227Y-10999718D02* 157 | X12043227Y-10893000D01* 158 | X16794472Y-3141528D02* 159 | X16770754Y-3141528D01* 160 | X12528245Y-11034755D02* 161 | X12243754Y-11035000D01* 162 | X13502232Y-11033755D02* 163 | X12711754Y-11033755D01* 164 | X16453037Y-4130752D02* 165 | G75* 166 | G03* 167 | X16417282Y-4166509I3J-35758D01* 168 | G01* 169 | X7431994Y-4093491D02* 170 | G75* 171 | G03* 172 | X7467754Y-4129245I35756J1D01* 173 | G01* 174 | X12043227Y-10893000D02* 175 | X12207754Y-10893000D01* 176 | X16830232Y-3177282D02* 177 | G75* 178 | G03* 179 | X16794472Y-3141528I-35762J-8D01* 180 | G01* 181 | X13537987Y-10827000D02* 182 | X13537987Y-10998000D01* 183 | X12676000Y-10998000D02* 184 | X12676000Y-10920000D01* 185 | X9330455Y-9111000D02* 186 | G75* 187 | G03* 188 | X9294701Y-9075246I-35745J10D01* 189 | G01* 190 | X16824509Y-5124509D02* 191 | X16824509Y-8238000D01* 192 | X12828727Y-3889741D02* 193 | X14090754Y-3889741D01* 194 | X7806754Y-3390000D02* 195 | G75* 196 | G03* 197 | X7806754Y-3390000I-133000J0D01* 198 | G01* 199 | X7742754Y-4129245D02* 200 | X7467754Y-4129245D01* 201 | X11566000Y-10921000D02* 202 | X11566000Y-11000000D01* 203 | X16794472Y-4130754D02* 204 | X16506754Y-4130754D01* 205 | X16644149Y-3390000D02* 206 | G75* 207 | G03* 208 | X16644149Y-3390000I-133000J0D01* 209 | G01* 210 | X14961754Y-9079750D02* 211 | G75* 212 | G03* 213 | X14926000Y-9115509I6J-35760D01* 214 | G01* 215 | X16794472Y-4130757D02* 216 | G75* 217 | G03* 218 | X16830227Y-4095000I-2J35757D01* 219 | G01* 220 | X14163037Y-3141528D02* 221 | X16770754Y-3141528D01* 222 | X16824509Y-8281000D02* 223 | X16025754Y-9079755D01* 224 | X7742754Y-5087249D02* 225 | G75* 226 | G03* 227 | X7778509Y-5051491I-5J35759D01* 228 | G01* 229 | X12676000Y-10920000D02* 230 | G75* 231 | G03* 232 | X12564000Y-10920000I-56000J0D01* 233 | G01* 234 | X13850755Y-9861000D02* 235 | G75* 236 | G03* 237 | X13850755Y-9861000I-103238J0D01* 238 | G01* 239 | X11677995Y-10999000D02* 240 | G75* 241 | G03* 242 | X11713754Y-11034755I35755J0D01* 243 | G01* 244 | X7778509Y-5051491D02* 245 | X7778509Y-4165000D01* 246 | X12007472Y-11035472D02* 247 | X11713754Y-11034755D01* 248 | X7467754Y-3132245D02* 249 | X10096755Y-3132245D01* 250 | X16830227Y-4095000D02* 251 | X16830227Y-4044000D01* 252 | X10134755Y-11038264D02* 253 | X9330456Y-10233965D01* 254 | X16824506Y-5124509D02* 255 | G75* 256 | G03* 257 | X16788755Y-5088755I-35746J9D01* 258 | G01* 259 | X11530245Y-11035755D02* 260 | X10728755Y-11035755D01* 261 | X14926000Y-10229000D02* 262 | X14123754Y-11031246D01* 263 | X11530245Y-11035750D02* 264 | G75* 265 | G03* 266 | X11566000Y-11000000I5J35750D01* 267 | G01* 268 | X13687994Y-10995491D02* 269 | G75* 270 | G03* 271 | X13723754Y-11031246I35756J1D01* 272 | G01* 273 | X16417285Y-5053000D02* 274 | G75* 275 | G03* 276 | X16453037Y-5088755I35745J-10D01* 277 | G01* 278 | X12528245Y-11034750D02* 279 | G75* 280 | G03* 281 | X12564000Y-10999000I5J35750D01* 282 | G01* 283 | X7811149Y-6236000D02* 284 | G75* 285 | G03* 286 | X7811149Y-6236000I-133000J0D01* 287 | G01* 288 | X14163037Y-3141532D02* 289 | G75* 290 | G03* 291 | X14127282Y-3177282I-7J-35748D01* 292 | G01* 293 | D11* 294 | X7687531Y-11354747D02* 295 | X7687531Y-11154747D01* 296 | X7687531Y-11154747D02* 297 | X7735150Y-11154747D01* 298 | X7735150Y-11154747D02* 299 | X7763722Y-11164271D01* 300 | X7763722Y-11164271D02* 301 | X7782769Y-11183319D01* 302 | X7782769Y-11183319D02* 303 | X7792293Y-11202366D01* 304 | X7792293Y-11202366D02* 305 | X7801817Y-11240461D01* 306 | X7801817Y-11240461D02* 307 | X7801817Y-11269033D01* 308 | X7801817Y-11269033D02* 309 | X7792293Y-11307128D01* 310 | X7792293Y-11307128D02* 311 | X7782769Y-11326176D01* 312 | X7782769Y-11326176D02* 313 | X7763722Y-11345223D01* 314 | X7763722Y-11345223D02* 315 | X7735150Y-11354747D01* 316 | X7735150Y-11354747D02* 317 | X7687531Y-11354747D01* 318 | X7887531Y-11354747D02* 319 | X7887531Y-11221414D01* 320 | X7887531Y-11259509D02* 321 | X7897055Y-11240461D01* 322 | X7897055Y-11240461D02* 323 | X7906579Y-11230938D01* 324 | X7906579Y-11230938D02* 325 | X7925626Y-11221414D01* 326 | X7925626Y-11221414D02* 327 | X7944674Y-11221414D01* 328 | X8011341Y-11354747D02* 329 | X8011341Y-11221414D01* 330 | X8011341Y-11154747D02* 331 | X8001817Y-11164271D01* 332 | X8001817Y-11164271D02* 333 | X8011341Y-11173795D01* 334 | X8011341Y-11173795D02* 335 | X8020865Y-11164271D01* 336 | X8020865Y-11164271D02* 337 | X8011341Y-11154747D01* 338 | X8011341Y-11154747D02* 339 | X8011341Y-11173795D01* 340 | X8135150Y-11354747D02* 341 | X8116103Y-11345223D01* 342 | X8116103Y-11345223D02* 343 | X8106579Y-11326176D01* 344 | X8106579Y-11326176D02* 345 | X8106579Y-11154747D01* 346 | X8239912Y-11354747D02* 347 | X8220865Y-11345223D01* 348 | X8220865Y-11345223D02* 349 | X8211341Y-11326176D01* 350 | X8211341Y-11326176D02* 351 | X8211341Y-11154747D01* 352 | X8468484Y-11354747D02* 353 | X8468484Y-11154747D01* 354 | X8468484Y-11154747D02* 355 | X8535150Y-11297604D01* 356 | X8535150Y-11297604D02* 357 | X8601817Y-11154747D01* 358 | X8601817Y-11154747D02* 359 | X8601817Y-11354747D01* 360 | X8782769Y-11354747D02* 361 | X8782769Y-11249985D01* 362 | X8782769Y-11249985D02* 363 | X8773246Y-11230938D01* 364 | X8773246Y-11230938D02* 365 | X8754198Y-11221414D01* 366 | X8754198Y-11221414D02* 367 | X8716103Y-11221414D01* 368 | X8716103Y-11221414D02* 369 | X8697055Y-11230938D01* 370 | X8782769Y-11345223D02* 371 | X8763722Y-11354747D01* 372 | X8763722Y-11354747D02* 373 | X8716103Y-11354747D01* 374 | X8716103Y-11354747D02* 375 | X8697055Y-11345223D01* 376 | X8697055Y-11345223D02* 377 | X8687531Y-11326176D01* 378 | X8687531Y-11326176D02* 379 | X8687531Y-11307128D01* 380 | X8687531Y-11307128D02* 381 | X8697055Y-11288081D01* 382 | X8697055Y-11288081D02* 383 | X8716103Y-11278557D01* 384 | X8716103Y-11278557D02* 385 | X8763722Y-11278557D01* 386 | X8763722Y-11278557D02* 387 | X8782769Y-11269033D01* 388 | X8878008Y-11221414D02* 389 | X8878008Y-11421414D01* 390 | X8878008Y-11230938D02* 391 | X8897055Y-11221414D01* 392 | X8897055Y-11221414D02* 393 | X8935150Y-11221414D01* 394 | X8935150Y-11221414D02* 395 | X8954198Y-11230938D01* 396 | X8954198Y-11230938D02* 397 | X8963722Y-11240461D01* 398 | X8963722Y-11240461D02* 399 | X8973246Y-11259509D01* 400 | X8973246Y-11259509D02* 401 | X8973246Y-11316652D01* 402 | X8973246Y-11316652D02* 403 | X8963722Y-11335700D01* 404 | X8963722Y-11335700D02* 405 | X8954198Y-11345223D01* 406 | X8954198Y-11345223D02* 407 | X8935150Y-11354747D01* 408 | X8935150Y-11354747D02* 409 | X8897055Y-11354747D01* 410 | X8897055Y-11354747D02* 411 | X8878008Y-11345223D01* 412 | X9058960Y-11335700D02* 413 | X9068484Y-11345223D01* 414 | X9068484Y-11345223D02* 415 | X9058960Y-11354747D01* 416 | X9058960Y-11354747D02* 417 | X9049436Y-11345223D01* 418 | X9049436Y-11345223D02* 419 | X9058960Y-11335700D01* 420 | X9058960Y-11335700D02* 421 | X9058960Y-11354747D01* 422 | X9058960Y-11230938D02* 423 | X9068484Y-11240461D01* 424 | X9068484Y-11240461D02* 425 | X9058960Y-11249985D01* 426 | X9058960Y-11249985D02* 427 | X9049436Y-11240461D01* 428 | X9049436Y-11240461D02* 429 | X9058960Y-11230938D01* 430 | X9058960Y-11230938D02* 431 | X9058960Y-11249985D01* 432 | M02* 433 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad 7.0.8} date 2023 December 31, Sunday 22:49:11 3 | ; FORMAT={-:-/ absolute / metric / decimal} 4 | ; #@! TF.CreationDate,2023-12-31T22:49:11+00:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.8 6 | ; #@! TF.FileFunction,NonPlated,1,2,NPTH 7 | FMAT,2 8 | METRIC 9 | % 10 | G90 11 | G05 12 | T0 13 | M30 14 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad 7.0.8} date 2023 December 31, Sunday 22:49:11 3 | ; FORMAT={-:-/ absolute / metric / decimal} 4 | ; #@! TF.CreationDate,2023-12-31T22:49:11+00:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.8 6 | ; #@! TF.FileFunction,Plated,1,2,PTH 7 | FMAT,2 8 | METRIC 9 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 10 | T1C0.400 11 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 12 | T2C0.800 13 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 14 | T3C1.000 15 | % 16 | G90 17 | G05 18 | T1 19 | X89.357Y-52.18 20 | X99.517Y-65.938 21 | X99.6Y-47.981 22 | X104.851Y-75.159 23 | X107.315Y-52.19 24 | X107.45Y-68.73 25 | X111.42Y-61.49 26 | X117.58Y-53.89 27 | X117.58Y-61.42 28 | X125.06Y-66.307 29 | X125.5Y-51.94 30 | X125.51Y-55.16 31 | X125.51Y-57.7 32 | X125.51Y-58.97 33 | X125.51Y-61.51 34 | X127.02Y-66.307 35 | X128.98Y-66.307 36 | X130.46Y-58.97 37 | X130.46Y-62.78 38 | X130.94Y-66.307 39 | X133.807Y-75.21 40 | X134.38Y-68.132 41 | X138.04Y-66.295 42 | X138.08Y-63.45 43 | X140.0Y-66.295 44 | X140.628Y-51.36 45 | X141.95Y-70.31 46 | X143.59Y-66.295 47 | X145.198Y-59.14 48 | X145.55Y-66.295 49 | X147.39Y-70.26 50 | X151.598Y-49.28 51 | X154.81Y-37.06 52 | X155.81Y-37.06 53 | X156.81Y-37.05 54 | X157.81Y-37.05 55 | X158.81Y-37.06 56 | X159.0Y-51.19 57 | T2 58 | X160.57Y-66.38 59 | X160.57Y-68.88 60 | T3 61 | X88.136Y-35.824 62 | X90.218Y-35.824 63 | T0 64 | M30 65 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-job.gbrjob: -------------------------------------------------------------------------------- 1 | { 2 | "Header": { 3 | "GenerationSoftware": { 4 | "Vendor": "KiCad", 5 | "Application": "Pcbnew", 6 | "Version": "7.0.8" 7 | }, 8 | "CreationDate": "2023-12-31T22:49:09+00:00" 9 | }, 10 | "GeneralSpecs": { 11 | "ProjectId": { 12 | "Name": "pce-gt-controller", 13 | "GUID": "7063652d-6774-42d6-936f-6e74726f6c6c", 14 | "Revision": "BF1.1" 15 | }, 16 | "Size": { 17 | "X": 94.0847, 18 | "Y": 79.1602 19 | }, 20 | "LayerNumber": 2, 21 | "BoardThickness": 1.6, 22 | "Finish": "None" 23 | }, 24 | "DesignRules": [ 25 | { 26 | "Layers": "Outer", 27 | "PadToPad": 0.127, 28 | "PadToTrack": 0.127, 29 | "TrackToTrack": 0.127, 30 | "MinLineWidth": 0.25, 31 | "TrackToRegion": 0.25, 32 | "RegionToRegion": 0.25 33 | } 34 | ], 35 | "FilesAttributes": [ 36 | { 37 | "Path": "pce-gt-controller-F_Cu.gbr", 38 | "FileFunction": "Copper,L1,Top", 39 | "FilePolarity": "Positive" 40 | }, 41 | { 42 | "Path": "pce-gt-controller-B_Cu.gbr", 43 | "FileFunction": "Copper,L2,Bot", 44 | "FilePolarity": "Positive" 45 | }, 46 | { 47 | "Path": "pce-gt-controller-F_Paste.gbr", 48 | "FileFunction": "SolderPaste,Top", 49 | "FilePolarity": "Positive" 50 | }, 51 | { 52 | "Path": "pce-gt-controller-B_Paste.gbr", 53 | "FileFunction": "SolderPaste,Bot", 54 | "FilePolarity": "Positive" 55 | }, 56 | { 57 | "Path": "pce-gt-controller-F_Silkscreen.gbr", 58 | "FileFunction": "Legend,Top", 59 | "FilePolarity": "Positive" 60 | }, 61 | { 62 | "Path": "pce-gt-controller-B_Silkscreen.gbr", 63 | "FileFunction": "Legend,Bot", 64 | "FilePolarity": "Positive" 65 | }, 66 | { 67 | "Path": "pce-gt-controller-F_Mask.gbr", 68 | "FileFunction": "SolderMask,Top", 69 | "FilePolarity": "Negative" 70 | }, 71 | { 72 | "Path": "pce-gt-controller-B_Mask.gbr", 73 | "FileFunction": "SolderMask,Bot", 74 | "FilePolarity": "Negative" 75 | }, 76 | { 77 | "Path": "pce-gt-controller-Edge_Cuts.gbr", 78 | "FileFunction": "Profile", 79 | "FilePolarity": "Positive" 80 | } 81 | ], 82 | "MaterialStackup": [ 83 | { 84 | "Type": "Legend", 85 | "Name": "Top Silk Screen" 86 | }, 87 | { 88 | "Type": "SolderPaste", 89 | "Name": "Top Solder Paste" 90 | }, 91 | { 92 | "Type": "SolderMask", 93 | "Thickness": 0.01, 94 | "Name": "Top Solder Mask" 95 | }, 96 | { 97 | "Type": "Copper", 98 | "Thickness": 0.035, 99 | "Name": "F.Cu" 100 | }, 101 | { 102 | "Type": "Dielectric", 103 | "Thickness": 1.51, 104 | "Material": "FR4", 105 | "Name": "F.Cu/B.Cu", 106 | "Notes": "Type: dielectric layer 1 (from F.Cu to B.Cu)" 107 | }, 108 | { 109 | "Type": "Copper", 110 | "Thickness": 0.035, 111 | "Name": "B.Cu" 112 | }, 113 | { 114 | "Type": "SolderMask", 115 | "Thickness": 0.01, 116 | "Name": "Bottom Solder Mask" 117 | }, 118 | { 119 | "Type": "SolderPaste", 120 | "Name": "Bottom Solder Paste" 121 | }, 122 | { 123 | "Type": "Legend", 124 | "Name": "Bottom Silk Screen" 125 | } 126 | ] 127 | } 128 | -------------------------------------------------------------------------------- /remaster/gerbers/pce-gt-controller-remaster.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/remaster/gerbers/pce-gt-controller-remaster.zip -------------------------------------------------------------------------------- /remaster/ibom.config.ini: -------------------------------------------------------------------------------- 1 | [html_defaults] 2 | dark_mode=1 3 | show_pads=1 4 | show_fabrication=0 5 | show_silkscreen=1 6 | highlight_pin1=1 7 | redraw_on_drag=1 8 | board_rotation=0 9 | offset_back_rotation=0 10 | checkboxes=Placed 11 | bom_view=left-right 12 | layer_view=FB 13 | compression=1 14 | open_browser=1 15 | [general] 16 | bom_dest_dir=bom 17 | bom_name_format=PC Engine GT Controller BOM 18 | component_sort_order=C,R,L,D,U,Y,X,F,SW,A,~,HS,CNN,J,P,NT,MH 19 | component_blacklist=J800,SW* 20 | blacklist_virtual=1 21 | blacklist_empty_val=0 22 | include_tracks=0 23 | include_nets=0 24 | [fields] 25 | show_fields=Value 26 | group_fields=Value 27 | normalize_field_case=0 28 | board_variant_field= 29 | board_variant_whitelist= 30 | board_variant_blacklist= 31 | dnp_field= 32 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/CC800 Electrolytic.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CC800 Electrolytic" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") 4 | (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Polarized capacitor, small symbol") 8 | (property "ki_keywords" "cap capacitor") 9 | (attr through_hole) 10 | (fp_text reference "CC800" (at 1.25 -3.75) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 80708695-ff75-4ed3-97d3-34656ded82b6) 13 | ) 14 | (fp_text value "47uF 6.3v" (at 1.25 3.75) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp c7f19b8c-45d9-41d7-9bcc-d3e0f52a8e7a) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | (tstamp 8a436764-5d46-4d7a-b015-d7227114e84e) 21 | ) 22 | (fp_circle (center -0.01 0) (end 0.27 0.28) 23 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 81a5965a-938e-4c75-9629-57242827dc1a)) 24 | (fp_circle (center 2.484021 0) (end 2.764021 0.28) 25 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 7cde3e57-5ea4-4ce2-bde4-f60e276e2789)) 26 | (fp_circle (center 1.25 0) (end 4 0) 27 | (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp db478fe7-3acb-4fbb-8d92-bb18314232a7)) 28 | (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) 29 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5df90f38-2e2a-438d-9fc5-21da75af2bf2)) 30 | (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) 31 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e84e7e15-248c-497d-b60c-3667264cbb68)) 32 | (fp_circle (center 1.25 0) (end 3.75 0) 33 | (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 4ae98dd9-1ee7-4055-9f3e-f5b13936b5f5)) 34 | (pad "1" smd circle (at 0 0) (size 1.8 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 307cfa0e-2209-4be8-9092-90884ea4414c)) 35 | (pad "2" smd circle (at 2.494021 0) (size 1.8 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f9c190a2-4adb-4527-b75e-71ee5abd85bf)) 36 | (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" 37 | (offset (xyz 0 0 0)) 38 | (scale (xyz 1 1 1)) 39 | (rotate (xyz 0 0 0)) 40 | ) 41 | ) 42 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/CN800.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CN800" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x12, 1.27mm pitch, single row") 4 | (tags "Through hole pin header THT 1x12 1.27mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Generic connector, single row, 01x12, script generated (kicad-library-utils/schlib/autogen/connector/)") 8 | (property "ki_keywords" "connector") 9 | (attr through_hole) 10 | (fp_text reference "CN800" (at 1.05 4.08 180) (layer "F.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp 4806d2ac-96fe-4aa6-a213-c5f576ba58ec) 13 | ) 14 | (fp_text value "Conn_01x12" (at 0.05 5.96 180) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp ec58a6a8-9ea0-4041-b33b-4b44b4a35a77) 17 | ) 18 | (fp_text user "1" (at 8.2 2.26 unlocked) (layer "F.SilkS") 19 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify left bottom)) 20 | (tstamp 97945b01-daf6-499c-9b1f-0214136c511e) 21 | ) 22 | (fp_text user "12" (at -9.89 2.33 unlocked) (layer "F.SilkS") 23 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify left bottom)) 24 | (tstamp c3d16eb4-c6c7-495e-aa0b-fbe3e59fd978) 25 | ) 26 | (fp_text user "${REFERENCE}" (at 6.14 7.31 90) (layer "F.Fab") 27 | (effects (font (size 1 1) (thickness 0.15))) 28 | (tstamp 674ef515-4391-4690-886b-bd02d4ab7437) 29 | ) 30 | (fp_line (start -6.4 -4.61) (end -6.4 -4.61) 31 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 4da9c671-2197-4c3e-99fd-08aae3094390)) 32 | (fp_line (start -6.4 -4.61) (end -6.4 2.16) 33 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 0624027a-6534-4f6a-bac1-6f5ed242b26b)) 34 | (fp_line (start -6.4 2.16) (end 7.54 2.16) 35 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 5e94b650-43a4-4203-8629-5fdf72231896)) 36 | (fp_line (start 7.54 2.16) (end 7.54 -4.61) 37 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 9e4df69a-2662-4bf9-9001-7b6723ff067d)) 38 | (pad "1" smd rect (at 5.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 4f9c1c37-4031-4a55-ac7f-142ec41774dd)) 39 | (pad "2" smd rect (at 4.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 537a2d95-56ce-44c7-af85-fb36ef90e715)) 40 | (pad "3" smd rect (at 3.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp b6150136-2d17-4755-9421-8357ab6726f8)) 41 | (pad "4" smd rect (at 2.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp f458561a-87c1-40b7-bbf7-827ea53a97f7)) 42 | (pad "5" smd rect (at 1.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 9ec8e286-041c-4327-b358-fe235e38a9ab)) 43 | (pad "6" smd rect (at 0.98 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 4859cbbe-fd0e-4a26-941d-fff8fa877b8d)) 44 | (pad "7" smd rect (at -0.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 4ea7de80-fb64-4711-8170-e997ae2509b1)) 45 | (pad "8" smd rect (at -1.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 097a0ba4-eeb9-44c9-9214-d18be875855d)) 46 | (pad "9" smd rect (at -2.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp dadf5149-a547-42a5-aa41-133f4210209b)) 47 | (pad "10" smd rect (at -3.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp bd052433-1d6d-40d3-849d-5c6bb10d89ed)) 48 | (pad "11" smd rect (at -4.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 9278898b-65cd-4c46-80f1-96e7d43eea8d)) 49 | (pad "12" smd rect (at -5.02 -0.31 180) (size 0.71 3.21) (layers "F.Cu" "F.Mask") (tstamp 934837a5-c759-4a93-9230-00eb770b5422)) 50 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x12_P1.27mm_Vertical.wrl" 51 | (offset (xyz 0 0 0)) 52 | (scale (xyz 1 1 1)) 53 | (rotate (xyz 0 0 0)) 54 | ) 55 | ) 56 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/CN801.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CN801" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)") 8 | (property "ki_keywords" "connector") 9 | (attr through_hole) 10 | (fp_text reference "CN801" (at 0 -1.56) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp dcb0d819-ba2e-4687-95ba-33857cbc27a8) 13 | ) 14 | (fp_text value "AUDIO" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 25fdb507-dbec-4c0c-9e97-7a198053c8b7) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 4.2 0.68 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp 0fe523f5-9b5f-4946-bf72-6d537f6d4c0e) 21 | ) 22 | (pad "1" thru_hole oval (at -1.04125 0.664334) (size 1.6425 2.715) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 47d6a8b6-02fb-48e7-a760-90e2d82c059e)) 23 | (pad "2" thru_hole oval (at 1.04 0.664334) (size 1.6425 2.715) (drill 1) (layers "*.Cu" "*.Mask") (tstamp c4928c62-0f74-42a5-8b2d-9e7cfd1695b2)) 24 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 25 | (offset (xyz 0 0 0)) 26 | (scale (xyz 1 1 1)) 27 | (rotate (xyz 0 0 0)) 28 | ) 29 | ) 30 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Diode SOT-23.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Diode SOT-23" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") 4 | (tags "SOT TO_SOT_SMD") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Dual 100V 215mA high-speed switching diodes, common cathode, SOT-23") 8 | (property "ki_keywords" "diode") 9 | (attr smd) 10 | (fp_text reference "D802" (at 0.16 3.1) (layer "F.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp c97dacf7-2e98-4687-9ecf-4025efc5da62) 13 | ) 14 | (fp_text value "BAV70" (at 0 -2.39) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp ec525560-b84a-4c57-a3dc-6633d57a7503) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0.01) (layer "F.Fab") 19 | (effects (font (size 0.32 0.32) (thickness 0.05))) 20 | (tstamp eee78031-c76e-4bf7-af1e-897741be2113) 21 | ) 22 | (fp_line (start -0.24 0) (end 0.19 0) 23 | (stroke (width 0.4) (type default)) (layer "F.SilkS") (tstamp 07d16174-d89b-4b12-a890-6057565748f6)) 24 | (fp_line (start -1.92 -1.69) (end -1.92 1.71) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2929c9f8-6bdd-4c29-9ca0-0f55987831c9)) 26 | (fp_line (start -1.92 1.71) (end 1.92 1.71) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 766e575f-1d82-4065-8f35-b3b62f23fbc1)) 28 | (fp_line (start 1.92 -1.69) (end -1.92 -1.69) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 347f4a2f-bbf6-4476-9c63-5699a8b13a9b)) 30 | (fp_line (start 1.92 1.71) (end 1.92 -1.69) 31 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f64c781-fae5-4a75-af08-170f36d3546a)) 32 | (fp_line (start -0.65 -1.44) (end 0.65 -1.44) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cae632f-8619-404d-8db2-cf232d386ea8)) 34 | (fp_line (start -0.65 1.46) (end -0.65 -1.44) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 739599bc-c76d-44ca-a851-f547601de0fb)) 36 | (fp_line (start 0.325 1.46) (end -0.65 1.46) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6a4987b-1a02-44a6-b5cf-b209ab927e41)) 38 | (fp_line (start 0.65 -1.44) (end 0.65 1.135) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c8826e6-d81e-4254-9777-7ce664114dd0)) 40 | (fp_line (start 0.65 1.135) (end 0.325 1.46) 41 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c573f68e-a861-4cfe-9b95-3cd4ea6936d2)) 42 | (pad "1" smd roundrect (at 1.1675 0.96 180) (size 1.015 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp dc5fcba9-99b1-4bfc-b276-eeeba4b5cdfe)) 43 | (pad "2" smd roundrect (at 1.1675 -0.94 180) (size 1.015 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp f98c6ca6-d735-46e6-9f47-2c570e2f377d)) 44 | (pad "3" smd roundrect (at -1.1325 0.01 180) (size 1.085 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 84affe80-b70a-425e-bfd6-d0b105dcdb98)) 45 | (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" 46 | (offset (xyz 0 0 0)) 47 | (scale (xyz 1 1 1)) 48 | (rotate (xyz 0 0 0)) 49 | ) 50 | ) 51 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Ferrite.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Ferrite" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 4 | (tags "resistor") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Ferrite bead, small symbol") 8 | (property "ki_keywords" "L ferrite bead inductor filter") 9 | (attr smd) 10 | (fp_text reference "L800" (at -2.56 -0.17 90) (layer "F.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp a50e7e6d-8c98-4286-a01b-a095dbace622) 13 | ) 14 | (fp_text value "FerriteBead_Small" (at 1.66 -0.53 90) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 4a8dafce-4301-4c25-a465-12d39abe1dfd) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0.01 -0.53 90) (layer "F.Fab") 19 | (effects (font (size 0.5 0.5) (thickness 0.08))) 20 | (tstamp d55365ec-d55a-4165-8b40-4739023ef56f) 21 | ) 22 | (fp_line (start 0.01 0.217064) (end 0.01 -0.237064) 23 | (stroke (width 0.3) (type solid)) (layer "F.SilkS") (tstamp eb445175-2247-4e90-8cba-0ed841ad2610)) 24 | (fp_line (start -0.94 -2.21) (end 0.96 -2.21) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9013c75a-e9e9-4387-af97-455e8f0c684a)) 26 | (fp_line (start -0.94 1.15) (end -0.94 -2.21) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e671f47-da57-4d04-9939-788cb5c7e8ec)) 28 | (fp_line (start 0.96 -2.21) (end 0.96 1.15) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bae1a579-5b9d-4510-bbd2-7defab588a22)) 30 | (fp_line (start 0.96 1.15) (end -0.94 1.15) 31 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc9423f6-9461-4423-b3e8-24c99248d016)) 32 | (fp_line (start -0.615 -1.53) (end 0.635 -1.53) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f804009-cfca-432c-845f-778b609345af)) 34 | (fp_line (start -0.615 0.47) (end -0.615 -1.53) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efe3803f-c0b9-402b-8e7e-b8e28001ee1f)) 36 | (fp_line (start 0.635 -1.53) (end 0.635 0.47) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2c6ee37-5ea1-4209-b0a2-1388326d7f38)) 38 | (fp_line (start 0.635 0.47) (end -0.615 0.47) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86c3fc5d-8aa1-47a1-b48b-ab8c4191a55f)) 40 | (pad "1" smd roundrect (at 0.054717 1.614717 90) (size 1.154417 1.854417) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) (tstamp accf5676-b0c3-4f89-828d-17311e5acafa)) 41 | (pad "2" smd roundrect (at 0.01 -1.44 90) (size 1.154417 1.854417) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) (tstamp f86fac6a-e9dd-4ce0-ba29-6683655ac538)) 42 | (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" 43 | (offset (xyz 0 0 0)) 44 | (scale (xyz 1 1 1)) 45 | (rotate (xyz 0 0 0)) 46 | ) 47 | ) 48 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/IC800.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "IC800" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") 4 | (tags "LQFP QFP") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (attr smd) 8 | (fp_text reference "UIC800" (at -8.6 5.68 180) (layer "F.SilkS") 9 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 10 | (tstamp c1dc44cf-2585-466b-8316-d5b265d05d53) 11 | ) 12 | (fp_text value "BU5782K" (at -0.17 5.64 180) (layer "F.Fab") 13 | (effects (font (size 1 1) (thickness 0.15))) 14 | (tstamp d7eac66e-1b36-4ce4-947e-bf2405b0efaa) 15 | ) 16 | (fp_text user "${REFERENCE}" (at -0.17 -0.24 180) (layer "F.Fab") 17 | (effects (font (size 1 1) (thickness 0.15))) 18 | (tstamp 8bc78115-b779-4fa5-a4b8-0929a3d9dd66) 19 | ) 20 | (fp_line (start -3.335 -1.985) (end -1.825 -3.495) 21 | (stroke (width 0.25) (type default)) (layer "F.SilkS") (tstamp 59257db7-7763-47ea-a109-b98a1d2ee5f5)) 22 | (fp_rect (start -3.35 -3.51) (end 3.4 3.24) 23 | (stroke (width 0.25) (type default)) (fill none) (layer "F.SilkS") (tstamp 3dca18cc-791f-44c7-a3ef-2f2c8ed3412b)) 24 | (fp_line (start -5.35 -3.54) (end -5.35 -0.24) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f86a50e-0054-485a-a851-8aa8ad8eb4eb)) 26 | (fp_line (start -5.35 3.06) (end -5.35 -0.24) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8194e184-a3b5-46c9-ab38-c7b01fe81921)) 28 | (fp_line (start -3.92 -3.99) (end -3.92 -3.54) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed60bf4a-aa11-4abe-80a7-848d2437d3c9)) 30 | (fp_line (start -3.92 -3.54) (end -5.35 -3.54) 31 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c26d534-722c-4cad-a5f6-5b709b906cf8)) 32 | (fp_line (start -3.92 3.06) (end -5.35 3.06) 33 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4eadea6f-0104-4d92-b271-1255415df1fe)) 34 | (fp_line (start -3.92 3.51) (end -3.92 3.06) 35 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96f4d87a-c24f-4661-a1a0-7077378e661d)) 36 | (fp_line (start -3.47 -5.42) (end -3.47 -3.99) 37 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 450fa49a-7383-43cf-bed5-45c7ca8a228e)) 38 | (fp_line (start -3.47 -3.99) (end -3.92 -3.99) 39 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 671f208d-0d83-4b46-83b5-ef2dbc7d8499)) 40 | (fp_line (start -3.47 3.51) (end -3.92 3.51) 41 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48c2e83a-c245-42ab-9014-1c778b4ccc11)) 42 | (fp_line (start -3.47 4.94) (end -3.47 3.51) 43 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 788b11f8-4fd3-45e9-9a2b-92f42a1f51c0)) 44 | (fp_line (start -0.17 -5.42) (end -3.47 -5.42) 45 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d24d9d37-d2ac-4102-8f8d-c5143b9a313c)) 46 | (fp_line (start -0.17 -5.42) (end 3.13 -5.42) 47 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f216d31-ee47-4e7b-a70f-a4f72ef7ae28)) 48 | (fp_line (start -0.17 4.94) (end -3.47 4.94) 49 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51c20af8-2898-4795-8fbb-2c8ea6528e61)) 50 | (fp_line (start -0.17 4.94) (end 3.13 4.94) 51 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 805c1325-50d5-4d92-b927-211cf8da725a)) 52 | (fp_line (start 3.13 -5.42) (end 3.13 -3.99) 53 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 07138540-fc52-476c-b62b-e299aff8c2ba)) 54 | (fp_line (start 3.13 -3.99) (end 3.58 -3.99) 55 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c69c88c-0a26-44e8-bf50-bdbccaa50b9c)) 56 | (fp_line (start 3.13 3.51) (end 3.58 3.51) 57 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f180f3ad-2471-4be1-9260-c7ef17bfee23)) 58 | (fp_line (start 3.13 4.94) (end 3.13 3.51) 59 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bf32070-384a-4d27-b7fa-d37f06830543)) 60 | (fp_line (start 3.58 -3.99) (end 3.58 -3.54) 61 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14640696-5b94-49b4-a5f0-8a2a2b306f40)) 62 | (fp_line (start 3.58 -3.54) (end 5.01 -3.54) 63 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a823ff3-122b-42c6-9bcb-93b8d489235b)) 64 | (fp_line (start 3.58 3.06) (end 5.01 3.06) 65 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 881599ce-207b-42f3-a277-60c2cfc57cea)) 66 | (fp_line (start 3.58 3.51) (end 3.58 3.06) 67 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e1f8f3b-3c6b-426e-bad6-44baf36436e4)) 68 | (fp_line (start 5.01 -3.54) (end 5.01 -0.24) 69 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1be3111-d7aa-4aa6-afe7-c6ca3aaab0e5)) 70 | (fp_line (start 5.01 3.06) (end 5.01 -0.24) 71 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ef21a6b-61af-4b9c-a700-208ba4aaa9f1)) 72 | (fp_line (start -3.67 -2.74) (end -2.67 -3.74) 73 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07575b0b-2e45-4296-a942-da6fc54548bd)) 74 | (fp_line (start -3.67 3.26) (end -3.67 -2.74) 75 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8190eb8c-2d10-4b85-8e0c-c2929990a8fe)) 76 | (fp_line (start -2.67 -3.74) (end 3.33 -3.74) 77 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c5cb490-8cf4-4f8a-b556-ccce9dccfa08)) 78 | (fp_line (start 3.33 -3.74) (end 3.33 3.26) 79 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98a4ebe0-bf8b-4db4-bca6-6fc76b5292e4)) 80 | (fp_line (start 3.33 3.26) (end -3.67 3.26) 81 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a8db27b-a298-429b-b484-bfada67aebc7)) 82 | (pad "1" smd roundrect (at -4.345 -3.04) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp d3cc5016-0bc1-48e6-aed4-6189d747e51e)) 83 | (pad "2" smd roundrect (at -4.345 -2.24) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 7a3803f2-9eef-4d96-8036-fe6ac7b41af4)) 84 | (pad "3" smd roundrect (at -4.345 -1.44) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp ad1cf93d-0905-49c8-863d-32f77bc2b3a0)) 85 | (pad "4" smd roundrect (at -4.345 -0.64) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp c0e7ec49-f35a-4bce-8def-e6e10dc24840)) 86 | (pad "5" smd roundrect (at -4.345 0.16) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b2bbcf1c-6803-44c6-9568-841f1602c156)) 87 | (pad "6" smd roundrect (at -4.345 0.96) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b7553011-330b-49cb-8dd1-0310304ae413)) 88 | (pad "7" smd roundrect (at -4.345 1.76) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 09e83646-f745-4813-bb72-f9561075ff32)) 89 | (pad "8" smd roundrect (at -4.345 2.56) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b863ade0-3f15-434c-bb64-24ded6483618)) 90 | (pad "9" smd roundrect (at -2.9 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 6c9e81be-b4c9-4846-a465-ad01f7705a43)) 91 | (pad "10" smd roundrect (at -2.1 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp e5e56268-fb2c-4876-9f98-357da0152c9e)) 92 | (pad "11" smd roundrect (at -1.3 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 2c9d1046-fc1f-429f-9fa5-a9bc539f5d74)) 93 | (pad "12" smd roundrect (at -0.5 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 06a9bfd5-0e60-4f37-a0c6-89ff05d76a8c)) 94 | (pad "13" smd roundrect (at 0.3 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 90a8a566-14a8-4c16-a017-970f5edbf627)) 95 | (pad "14" smd roundrect (at 1.1 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 17e716ce-1221-4302-b0e2-b27f10fd6b90)) 96 | (pad "15" smd roundrect (at 1.9 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp bc4e9ca0-d13e-47a7-a06f-a9f2374d30c3)) 97 | (pad "16" smd roundrect (at 2.7 4.17) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 5f73f251-649e-4c05-8df4-d38fe58de98d)) 98 | (pad "17" smd roundrect (at 4.43 2.56) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 7f64b553-5ac8-4009-b59e-59174d650812)) 99 | (pad "18" smd roundrect (at 4.43 1.76) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp a81aa008-8a53-41d7-9880-b11845056d90)) 100 | (pad "19" smd roundrect (at 4.43 0.96) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 687b20f1-5d3b-463d-a323-adf259d48ead)) 101 | (pad "20" smd roundrect (at 4.43 0.16) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 2eb1572f-f7ab-4d26-8830-2e45d70a4d34)) 102 | (pad "21" smd roundrect (at 4.43 -0.64) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 1edfee17-f62b-40ce-a144-a663bf1b637c)) 103 | (pad "22" smd roundrect (at 4.43 -1.44) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 3a530d4c-2ce7-44ae-86f8-c58c796142c1)) 104 | (pad "23" smd roundrect (at 4.43 -2.24) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 19d46d57-dbbb-4ce4-853c-c03a6517cf97)) 105 | (pad "24" smd roundrect (at 4.43 -3.04) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp fa503179-adca-45eb-9291-be353fdb29a1)) 106 | (pad "25" smd roundrect (at 2.7 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp edf4efbc-ba79-4ca2-bb12-181d4d64a0fb)) 107 | (pad "26" smd roundrect (at 1.9 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 61ae6d41-04ca-43d9-8879-8333a4e39960)) 108 | (pad "27" smd roundrect (at 1.1 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp de463765-ab72-4b73-8b03-0357a3e6358f)) 109 | (pad "28" smd roundrect (at 0.3 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 5aac07ad-0bea-4efa-8c8a-d6190dc9f7db)) 110 | (pad "29" smd roundrect (at -0.5 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 628efb2a-fac3-4270-a0d1-6114f280a462)) 111 | (pad "30" smd roundrect (at -1.3 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 4f5c4111-bb20-4501-9296-b9a4949ff524)) 112 | (pad "31" smd roundrect (at -2.1 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 7caf9c01-0227-4715-8178-c5fbe07c18bb)) 113 | (pad "32" smd roundrect (at -2.9 -4.43) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 5538ac4f-e372-49d4-ad46-f6ffd4da60d0)) 114 | (model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-32_7x7mm_P0.8mm.wrl" 115 | (offset (xyz 0 0 0)) 116 | (scale (xyz 1 1 1)) 117 | (rotate (xyz 0 0 0)) 118 | ) 119 | ) 120 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/J800.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "J800" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row") 4 | (tags "Through hole pin header THT 1x05 2.54mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Grounded Sleeve") 8 | (property "ki_keywords" "audio jack receptacle mono phone headphone TS connector") 9 | (attr through_hole) 10 | (fp_text reference "J800" (at 0 -2.33) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 94f541ce-ce32-4303-884c-396e66e0f7dd) 13 | ) 14 | (fp_text value "LINK" (at 0.04 3.39) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 141d5d8e-e769-4aed-81b7-e97947ae761b) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0.06 5.17) (layer "F.Fab") 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | (tstamp e019d119-36e9-471d-a4a0-964e68a185f7) 21 | ) 22 | (fp_circle (center -0.02 0.79) (end 1.070413 0.79) 23 | (stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp 499c799d-460a-4298-99ee-f7a3b616f3c2)) 24 | (fp_rect (start -5.41 -0.02) (end -4.6 1.61) 25 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp da1b44de-ae08-450a-9ed8-0bf4f0a163f0)) 26 | (fp_rect (start -2.98 -0.02) (end -2.17 1.61) 27 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 7724f59a-9099-4db1-872e-b045fcabcd62)) 28 | (fp_rect (start 1.97 -0.02) (end 2.78 1.61) 29 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp e31d06ef-c60e-4d2a-a716-895c6cc7de17)) 30 | (fp_rect (start 4.52 -0.02) (end 5.33 1.61) 31 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 52ccae70-c3d5-41d9-bfd3-c6c280ebacf1)) 32 | (fp_circle (center -0.042681 0.78) (end 0.627319 0.84) 33 | (stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 6d236921-a653-49e3-b2a4-2b3c2e8c080a)) 34 | (pad "G" smd oval (at -2.48 0.4975) (size 2.165 3.685) (layers "F.Cu" "F.Mask") (tstamp bce56e07-672a-4431-a96d-16fdf9377afd)) 35 | (pad "G" smd oval (at 2.46 0.4975) (size 2.165 3.685) (layers "F.Cu" "F.Mask") (tstamp 557263f8-873b-40f5-b364-a0b6cbefc928)) 36 | (pad "S" smd oval (at -5.0125 0.4975) (size 2.165 3.685) (layers "F.Cu" "F.Mask") (tstamp 03b1e7d5-c3de-463c-a0bd-f1ae816b6d51)) 37 | (pad "T" smd oval (at 4.96 0.4975) (size 2.165 3.685) (layers "F.Cu" "F.Mask") (tstamp 4b269564-0c40-4b61-bce7-84474e18ac47)) 38 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl" 39 | (offset (xyz 0 0 0)) 40 | (scale (xyz 1 1 1)) 41 | (rotate (xyz 0 0 0)) 42 | ) 43 | ) 44 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Resistor 0805 SMD.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Resistor 0805 SMD" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 4 | (tags "resistor") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Resistor, small symbol") 8 | (property "ki_keywords" "R resistor") 9 | (attr smd) 10 | (fp_text reference "R800" (at 0 -1.65) (layer "F.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp 1ae4106e-b034-4ab5-8fc6-3eb450acae0d) 13 | ) 14 | (fp_text value "R_Small" (at 0 1.65) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 523a99e0-3074-45ca-aa89-96baed177537) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") 19 | (effects (font (size 0.5 0.5) (thickness 0.08))) 20 | (tstamp 3dc325fd-5a39-43f6-aeeb-bc2f5bcaa91c) 21 | ) 22 | (fp_line (start -0.217064 -0.01) (end 0.237064 -0.01) 23 | (stroke (width 0.3) (type solid)) (layer "F.SilkS") (tstamp 9ba8e289-ad6c-4f80-a004-f2532fcf74ba)) 24 | (fp_line (start -1.68 -0.95) (end 1.68 -0.95) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f1b0fca-a347-49ad-b86f-7f3e9df6c79f)) 26 | (fp_line (start -1.68 0.95) (end -1.68 -0.95) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a26f0e99-a796-4479-b13c-5feb534d1b0f)) 28 | (fp_line (start 1.68 -0.95) (end 1.68 0.95) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a36566d-6295-4c62-82e8-abc95c3a383f)) 30 | (fp_line (start 1.68 0.95) (end -1.68 0.95) 31 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec25b330-032e-4cc9-a285-1148c9f7f9d3)) 32 | (fp_line (start -1 -0.625) (end 1 -0.625) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fad9c936-12ac-4e30-8c1f-ed50f3c7d17f)) 34 | (fp_line (start -1 0.625) (end -1 -0.625) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5be1b929-33df-4fb0-84f2-c7f9ca855d02)) 36 | (fp_line (start 1 -0.625) (end 1 0.625) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09997d6f-e3e8-4d69-a7b3-90e1080f89c3)) 38 | (fp_line (start 1 0.625) (end -1 0.625) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 761d3a5a-b9da-40ad-b69c-97c94d29cfd7)) 40 | (pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) (tstamp 0c1e88c3-78bf-4b27-8934-d07363001cd4)) 41 | (pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902) (tstamp 295795ef-ddcd-49aa-8b39-a5b694753d6f)) 42 | (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl" 43 | (offset (xyz 0 0 0)) 44 | (scale (xyz 1 1 1)) 45 | (rotate (xyz 0 0 0)) 46 | ) 47 | ) 48 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Switch Type 1.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 1" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW803" (at -5.93 -1.78) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 3e710eff-c4a0-4c71-86a3-eaaec2a04e0f) 13 | ) 14 | (fp_text value "SELECT" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 343d5742-84d4-4ac4-9982-43774756247b) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 5 0.48 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp 285bef75-94ea-47cc-a8de-269c6938706d) 21 | ) 22 | (pad "1" smd custom (at 0.1 -8.95) (size 2.18 2.18) (layers "F.Cu" "F.Mask") 23 | (thermal_bridge_angle 45) 24 | (options (clearance outline) (anchor circle)) 25 | (primitives 26 | (gr_line (start 0 0) (end 0 1.75) (width 0.7)) 27 | (gr_arc (start -1.827175 6.683322) (mid -1.26 2.15) (end 2.711194 4.408831) (width 0.7)) 28 | (gr_line (start -1.898993 2.631007) (end 0 4.53) (width 0.7)) 29 | (gr_circle (center 0 4.53) (end 0.494975 4.53) (width 0.2) (fill yes)) 30 | (gr_line (start 0 4.53) (end 0 4.53) (width 0.2)) 31 | ) (tstamp 84238bad-645d-40fe-80ba-07fb4083ad24)) 32 | (pad "2" smd custom (at 0.04 0.05) (size 2.177119 2.177119) (layers "F.Cu" "F.Mask") 33 | (options (clearance outline) (anchor circle)) 34 | (primitives 35 | (gr_poly 36 | (pts 37 | (xy 0.103508 -1.08363) 38 | (xy 0.306717 -1.044465) 39 | (xy 0.498841 -0.96755) 40 | (xy 0.672937 -0.855665) 41 | (xy 0.822712 -0.712855) 42 | (xy 0.942754 -0.544279) 43 | (xy 1.028723 -0.356033) 44 | (xy 1.077513 -0.154918) 45 | (xy 1.08736 0.051796) 46 | (xy 1.057908 0.256638) 47 | (xy 0.990222 0.452204) 48 | (xy 0.886748 0.631426) 49 | (xy 0.751226 0.787827) 50 | (xy 0.588553 0.915754) 51 | (xy 0.404611 1.010583) 52 | (xy 0.206045 1.068887) 53 | (xy 0.000034 1.088559) 54 | (xy -0.000034 1.088559) 55 | (xy -0.103508 1.08363) 56 | (xy -0.306717 1.044465) 57 | (xy -0.498841 0.96755) 58 | (xy -0.672937 0.855665) 59 | (xy -0.822712 0.712855) 60 | (xy -0.942754 0.544279) 61 | (xy -1.028723 0.356033) 62 | (xy -1.077513 0.154918) 63 | (xy -1.08736 -0.051796) 64 | (xy -1.057908 -0.256638) 65 | (xy -0.990222 -0.452204) 66 | (xy -0.886748 -0.631426) 67 | (xy -0.751226 -0.787827) 68 | (xy -0.588553 -0.915754) 69 | (xy -0.404611 -1.010583) 70 | (xy -0.206045 -1.068887) 71 | (xy -0.000034 -1.088559) 72 | (xy 0.000034 -1.088559) 73 | ) 74 | (width 0) (fill yes)) 75 | (gr_line (start 0.000033 0.000066) (end 0.000033 -2.95) (width 0.7)) 76 | (gr_arc (start 0.044194 -5.96) (mid 1.10782 -3.392181) (end -1.46 -4.455804) (width 0.7)) 77 | ) (tstamp 60829272-7f59-4891-999e-547ef77b5374)) 78 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 79 | (offset (xyz 0 0 0)) 80 | (scale (xyz 1 1 1)) 81 | (rotate (xyz 0 0 0)) 82 | ) 83 | ) 84 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Switch Type 2.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 2" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW804" (at 0.4374 -9.870721) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 54d0fceb-e773-4f09-831d-6d123f6eac20) 13 | ) 14 | (fp_text value "RUN" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 682bff2a-040d-42aa-af18-2f4812d40da3) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 5 0.48 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp 228d8d38-d18f-41de-af3a-bdab5db41348) 21 | ) 22 | (pad "1" smd custom (at -2.29 -3.87) (size 2.18 2.18) (layers "F.Cu" "F.Mask") 23 | (thermal_bridge_angle 45) 24 | (options (clearance outline) (anchor circle)) 25 | (primitives 26 | (gr_line (start 0 0) (end 0.97 1.51) (width 0.7)) 27 | (gr_arc (start 0.512825 6.033322) (mid 1.08 1.5) (end 5.051194 3.758831) (width 0.7)) 28 | (gr_line (start 0.441007 1.981007) (end 2.34 3.88) (width 0.7)) 29 | (gr_line (start 2.34 3.88) (end 2.34 3.88) (width 0.2)) 30 | (gr_circle (center 2.34 3.88) (end 2.834975 3.88) (width 0.2) (fill yes)) 31 | ) (tstamp 0e9f0d52-bad9-4eb8-9cc4-c8e206e69024)) 32 | (pad "2" smd custom (at 2.28 3.91) (size 2.177119 2.177119) (layers "F.Cu" "F.Mask") 33 | (thermal_bridge_angle 45) 34 | (options (clearance outline) (anchor circle)) 35 | (primitives 36 | (gr_line (start 0 0) (end -1.55 -2.49) (width 0.7)) 37 | (gr_arc (start -2.245806 -5.39) (mid -1.18218 -2.822181) (end -3.75 -3.885804) (width 0.7)) 38 | ) (tstamp 36c4bd3d-b159-476f-ac03-893f8bc2e4e6)) 39 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 40 | (offset (xyz 0 0 0)) 41 | (scale (xyz 1 1 1)) 42 | (rotate (xyz 0 0 0)) 43 | ) 44 | ) 45 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Switch Type 3.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 3" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW802" (at 0.4374 -9.870721) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp 2ba4aeac-fbfc-4d07-b76c-86ecb0bd745b) 13 | ) 14 | (fp_text value "II" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 11a7a867-1ff4-4c5c-8f8b-9d43c2c2b753) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 5 0.48 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp 3aabdba2-a16d-4f13-8af8-77dffdc5d5ba) 21 | ) 22 | (pad "1" smd custom (at -5.17 -2.64) (size 2.18 2.18) (layers "F.Cu" "F.Mask") 23 | (thermal_bridge_angle 45) 24 | (options (clearance outline) (anchor circle)) 25 | (primitives 26 | (gr_line (start 0 0) (end 2.48 -1.25) (width 0.7)) 27 | (gr_arc (start 3.342825 0.113322) (mid 3.91 -4.42) (end 7.881194 -2.161169) (width 0.7)) 28 | (gr_line (start 3.271007 -3.938993) (end 5.17 -2.04) (width 0.7)) 29 | (gr_circle (center 5.17 -2.04) (end 5.664975 -2.04) (width 0.2) (fill yes)) 30 | (gr_line (start 5.17 -2.04) (end 5.17 -2.04) (width 0.2)) 31 | ) (tstamp b61420b2-d778-4575-9e4c-292927f76dd0)) 32 | (pad "2" smd custom (at 2.23 -0.78) (size 2.177119 2.177119) (layers "F.Cu" "F.Mask") 33 | (thermal_bridge_angle 45) 34 | (options (clearance outline) (anchor circle)) 35 | (primitives 36 | (gr_line (start 0 0) (end -1.55 -2.49) (width 0.7)) 37 | (gr_arc (start -2.245806 -5.39) (mid -1.18218 -2.822181) (end -3.75 -3.885804) (width 0.7)) 38 | ) (tstamp c411eac7-1380-45c4-95d1-0b45f3140aac)) 39 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 40 | (offset (xyz 0 0 0)) 41 | (scale (xyz 1 1 1)) 42 | (rotate (xyz 0 0 0)) 43 | ) 44 | ) 45 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Switch Type 4.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 4" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW805" (at -9.3105 2.224) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp beda7140-af22-48fb-8913-572a5ceccaa9) 13 | ) 14 | (fp_text value "UP" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 213b2d60-ea80-4366-a423-ef14bf98e787) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0.5 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp ad8ea464-40bf-4b57-a1f1-2f12f4790ce3) 21 | ) 22 | (fp_line (start -1.15 -1) (end -1.15 2) 23 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dacaff0-5c65-418b-9884-0c5669121d03)) 24 | (fp_line (start -1.15 2) (end 1.15 2) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3df7d6c-31bd-4a9f-a223-02957b8ea1c1)) 26 | (fp_line (start 1.15 -1) (end -1.15 -1) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbe19c5f-e83f-4ca0-9978-10369bd296b9)) 28 | (fp_line (start 1.15 2) (end 1.15 -1) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d5e24b6-cc1e-48ab-8f87-ee777f88e727)) 30 | (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) 31 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e335d250-b451-4ae3-a3b2-89546490c892)) 32 | (fp_line (start -0.635 1.5) (end -0.635 -0.1825) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2e16d66-1efd-4a99-bab3-ac1a43fb2e34)) 34 | (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f49014b4-0c46-42f5-ae3b-9cec8319102a)) 36 | (fp_line (start 0.635 -0.5) (end 0.635 1.5) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f9a7db4-ed83-49da-84aa-13ab8b59899e)) 38 | (fp_line (start 0.635 1.5) (end -0.635 1.5) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bc32796-d487-4009-8e0d-5478fd8b2212)) 40 | (pad "1" smd custom (at 1.5065 1.2975) (size 2.665 3.345) (layers "F.Cu" "F.Mask") 41 | (thermal_bridge_angle 45) 42 | (options (clearance outline) (anchor rect)) 43 | (primitives 44 | (gr_rect (start -1.2425 1.6725) (end -0.1975 2.7325) (width 0.2) (fill yes)) 45 | (gr_rect (start -1.2425 2.6725) (end 1.2325 5.8325) (width 0.2) (fill yes)) 46 | (gr_rect (start 0.5225 3.2625) (end 3.628001 4.5625) (width 0.2) (fill yes)) 47 | (gr_circle (center 3.628001 3.9125) (end 4.852501 3.9125) (width 0.2) (fill yes)) 48 | ) (tstamp 4a503d0e-1e8b-41aa-809e-c0879b0b25c3)) 49 | (pad "2" smd custom (at -1.551 5.56 180) (size 2.665 3.345) (layers "F.Cu" "F.Mask") 50 | (thermal_bridge_angle 45) 51 | (options (clearance outline) (anchor rect)) 52 | (primitives 53 | (gr_rect (start -1.2425 1.6725) (end -0.1975 2.7325) (width 0.2) (fill yes)) 54 | (gr_rect (start -1.2425 2.6725) (end 1.2325 5.8325) (width 0.2) (fill yes)) 55 | (gr_circle (center 1.4645 6.06) (end 2.689 6.06) (width 0.2) (fill yes)) 56 | ) (tstamp 8e180d7f-a86e-44f3-80c0-a6f6bb103b4f)) 57 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 58 | (offset (xyz 0 0 0)) 59 | (scale (xyz 1 1 1)) 60 | (rotate (xyz 0 0 0)) 61 | ) 62 | ) 63 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Switch Type 5.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Switch Type 5" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x02, 1.00mm pitch, single row") 4 | (tags "Through hole pin header THT 1x02 1.00mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Push button switch, generic, two pins") 8 | (property "ki_keywords" "switch normally-open pushbutton push-button") 9 | (attr through_hole) 10 | (fp_text reference "SW805" (at -9.3105 2.224) (layer "B.SilkS") 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold) (justify mirror)) 12 | (tstamp beda7140-af22-48fb-8913-572a5ceccaa9) 13 | ) 14 | (fp_text value "UP" (at 0 2.56) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp 213b2d60-ea80-4366-a423-ef14bf98e787) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0.5 90) (layer "F.Fab") 19 | (effects (font (size 0.76 0.76) (thickness 0.114))) 20 | (tstamp ad8ea464-40bf-4b57-a1f1-2f12f4790ce3) 21 | ) 22 | (fp_line (start -1.15 -1) (end -1.15 2) 23 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dacaff0-5c65-418b-9884-0c5669121d03)) 24 | (fp_line (start -1.15 2) (end 1.15 2) 25 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3df7d6c-31bd-4a9f-a223-02957b8ea1c1)) 26 | (fp_line (start 1.15 -1) (end -1.15 -1) 27 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbe19c5f-e83f-4ca0-9978-10369bd296b9)) 28 | (fp_line (start 1.15 2) (end 1.15 -1) 29 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d5e24b6-cc1e-48ab-8f87-ee777f88e727)) 30 | (fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) 31 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e335d250-b451-4ae3-a3b2-89546490c892)) 32 | (fp_line (start -0.635 1.5) (end -0.635 -0.1825) 33 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2e16d66-1efd-4a99-bab3-ac1a43fb2e34)) 34 | (fp_line (start -0.3175 -0.5) (end 0.635 -0.5) 35 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f49014b4-0c46-42f5-ae3b-9cec8319102a)) 36 | (fp_line (start 0.635 -0.5) (end 0.635 1.5) 37 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f9a7db4-ed83-49da-84aa-13ab8b59899e)) 38 | (fp_line (start 0.635 1.5) (end -0.635 1.5) 39 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bc32796-d487-4009-8e0d-5478fd8b2212)) 40 | (pad "1" smd custom (at -2.01 -1.54 90) (size 2.665 3.345) (layers "F.Cu" "F.Mask") 41 | (thermal_bridge_angle 45) 42 | (options (clearance outline) (anchor rect)) 43 | (primitives 44 | (gr_rect (start -1.2425 1.6725) (end -0.1975 2.7325) (width 0.2) (fill yes)) 45 | (gr_rect (start -1.2425 2.6725) (end 1.2325 5.8325) (width 0.2) (fill yes)) 46 | (gr_circle (center 1.4645 6.06) (end 2.689 6.06) (width 0.2) (fill yes)) 47 | ) (tstamp 9175ac85-7eb4-4ebb-944d-c1b676c4d8da)) 48 | (pad "2" smd custom (at 2.24 1.56 270) (size 2.665 3.345) (layers "F.Cu" "F.Mask") 49 | (thermal_bridge_angle 45) 50 | (options (clearance outline) (anchor rect)) 51 | (primitives 52 | (gr_rect (start -1.2425 1.6725) (end -0.1975 2.7325) (width 0.2) (fill yes)) 53 | (gr_rect (start -1.2425 2.6725) (end 1.2325 5.8325) (width 0.2) (fill yes)) 54 | (gr_circle (center 1.4645 6.06) (end 2.689 6.06) (width 0.2) (fill yes)) 55 | ) (tstamp 8e180d7f-a86e-44f3-80c0-a6f6bb103b4f)) 56 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x02_P1.00mm_Vertical.wrl" 57 | (offset (xyz 0 0 0)) 58 | (scale (xyz 1 1 1)) 59 | (rotate (xyz 0 0 0)) 60 | ) 61 | ) 62 | -------------------------------------------------------------------------------- /remaster/libs/GT Controller.pretty/Turbo Switch.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Turbo Switch" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") 4 | (tags "Through hole pin header THT 1x04 2.54mm single row") 5 | (property "Sheetfile" "pce-gt-controller.kicad_sch") 6 | (property "Sheetname" "") 7 | (property "ki_description" "Switch, three position, single pole triple throw, 3 position switch, SP3T") 8 | (property "ki_keywords" "switch sp3t ON-ON-ON") 9 | (attr through_hole) 10 | (fp_text reference "SW809" (at 0 -2.33) (layer "F.SilkS") hide 11 | (effects (font (size 1.3 1.3) (thickness 0.26) bold)) 12 | (tstamp 6d8dfb28-d4f3-4a7f-a5cd-979852c6f87c) 13 | ) 14 | (fp_text value "I TURBO" (at 0 9.95) (layer "F.Fab") 15 | (effects (font (size 1 1) (thickness 0.15))) 16 | (tstamp c23032d6-625c-4c1d-bf2c-00e3a71b94f2) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 5.79 3.25 270) (layer "F.Fab") 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | (tstamp bcfff676-e74b-4e19-b214-108deb295d65) 21 | ) 22 | (pad "1" smd rect (at -3.35 5.14) (size 3.25 2.15) (layers "F.Cu" "F.Mask") (tstamp d4757696-ed43-402b-b42d-df5c6dfeac5d)) 23 | (pad "2" smd rect (at -0.065 5.14) (size 2.2 2.15) (layers "F.Cu" "F.Mask") (tstamp 6404dfce-dd92-44f2-b254-8edd5bd6c245)) 24 | (pad "3" smd rect (at -0.0425 1.1625) (size 9.875 2.125) (layers "F.Cu" "F.Mask") (tstamp fada0ebe-6058-4c0a-ba2f-ddd8591e0f31)) 25 | (pad "4" smd rect (at 3.225 5.14) (size 3.25 2.15) (layers "F.Cu" "F.Mask") (tstamp 8b07a18a-ff2e-4e8f-9648-b43db96c44e1)) 26 | (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" 27 | (offset (xyz 0 0 0)) 28 | (scale (xyz 1 1 1)) 29 | (rotate (xyz 0 0 0)) 30 | ) 31 | ) 32 | -------------------------------------------------------------------------------- /remaster/libs/PCE.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor) 2 | (symbol "BU5782K" (in_bom yes) (on_board yes) 3 | (property "Reference" "U" (at 0 2.54 0) 4 | (effects (font (size 1.27 1.27))) 5 | ) 6 | (property "Value" "BU5782K" (at 0 0 0) 7 | (effects (font (size 1.27 1.27))) 8 | ) 9 | (property "Footprint" "" (at 0 0 0) 10 | (effects (font (size 1.27 1.27)) hide) 11 | ) 12 | (property "Datasheet" "" (at 0 0 0) 13 | (effects (font (size 1.27 1.27)) hide) 14 | ) 15 | (symbol "BU5782K_1_1" 16 | (rectangle (start -13.97 30.48) (end 13.97 -38.1) 17 | (stroke (width 0.254) (type default)) 18 | (fill (type background)) 19 | ) 20 | (pin input line (at -17.78 26.67 0) (length 3.81) 21 | (name "SEL" (effects (font (size 1.27 1.27)))) 22 | (number "1" (effects (font (size 1.27 1.27)))) 23 | ) 24 | (pin input line (at 17.78 19.05 180) (length 3.81) 25 | (name "RIGHT" (effects (font (size 1.27 1.27)))) 26 | (number "10" (effects (font (size 1.27 1.27)))) 27 | ) 28 | (pin no_connect line (at 17.78 -11.43 180) (length 3.81) 29 | (name "N.C" (effects (font (size 1.27 1.27)))) 30 | (number "11" (effects (font (size 1.27 1.27)))) 31 | ) 32 | (pin power_in line (at 0 -41.91 90) (length 3.81) 33 | (name "GND" (effects (font (size 1.27 1.27)))) 34 | (number "12" (effects (font (size 1.27 1.27)))) 35 | ) 36 | (pin no_connect line (at 17.78 -13.97 180) (length 3.81) 37 | (name "N.C" (effects (font (size 1.27 1.27)))) 38 | (number "13" (effects (font (size 1.27 1.27)))) 39 | ) 40 | (pin input line (at 17.78 6.35 180) (length 3.81) 41 | (name "SELECT" (effects (font (size 1.27 1.27)))) 42 | (number "14" (effects (font (size 1.27 1.27)))) 43 | ) 44 | (pin input line (at 17.78 3.81 180) (length 3.81) 45 | (name "RUN" (effects (font (size 1.27 1.27)))) 46 | (number "15" (effects (font (size 1.27 1.27)))) 47 | ) 48 | (pin input line (at 17.78 -26.67 180) (length 3.81) 49 | (name "LINK_1" (effects (font (size 1.27 1.27)))) 50 | (number "16" (effects (font (size 1.27 1.27)))) 51 | ) 52 | (pin output line (at 17.78 -29.21 180) (length 3.81) 53 | (name "LINK_1" (effects (font (size 1.27 1.27)))) 54 | (number "17" (effects (font (size 1.27 1.27)))) 55 | ) 56 | (pin input line (at 17.78 -31.75 180) (length 3.81) 57 | (name "LINK_2" (effects (font (size 1.27 1.27)))) 58 | (number "18" (effects (font (size 1.27 1.27)))) 59 | ) 60 | (pin output line (at 17.78 -34.29 180) (length 3.81) 61 | (name "LINK_2" (effects (font (size 1.27 1.27)))) 62 | (number "19" (effects (font (size 1.27 1.27)))) 63 | ) 64 | (pin input line (at -17.78 24.13 0) (length 3.81) 65 | (name "CLR" (effects (font (size 1.27 1.27)))) 66 | (number "2" (effects (font (size 1.27 1.27)))) 67 | ) 68 | (pin input line (at -17.78 -8.89 0) (length 3.81) 69 | (name "R800-OSC" (effects (font (size 1.27 1.27)))) 70 | (number "20" (effects (font (size 1.27 1.27)))) 71 | ) 72 | (pin input line (at -17.78 -11.43 0) (length 3.81) 73 | (name "R801-OSC" (effects (font (size 1.27 1.27)))) 74 | (number "21" (effects (font (size 1.27 1.27)))) 75 | ) 76 | (pin input line (at -17.78 -13.97 0) (length 3.81) 77 | (name "C801-OSC" (effects (font (size 1.27 1.27)))) 78 | (number "22" (effects (font (size 1.27 1.27)))) 79 | ) 80 | (pin input line (at 17.78 11.43 180) (length 3.81) 81 | (name "BUTTON_II" (effects (font (size 1.27 1.27)))) 82 | (number "23" (effects (font (size 1.27 1.27)))) 83 | ) 84 | (pin output line (at -17.78 -26.67 0) (length 3.81) 85 | (name "TURBO_FAST" (effects (font (size 1.27 1.27)))) 86 | (number "24" (effects (font (size 1.27 1.27)))) 87 | ) 88 | (pin output line (at -17.78 -29.21 0) (length 3.81) 89 | (name "TURBO_SLOW" (effects (font (size 1.27 1.27)))) 90 | (number "25" (effects (font (size 1.27 1.27)))) 91 | ) 92 | (pin no_connect line (at 17.78 -16.51 180) (length 3.81) 93 | (name "N.C" (effects (font (size 1.27 1.27)))) 94 | (number "26" (effects (font (size 1.27 1.27)))) 95 | ) 96 | (pin input line (at 17.78 13.97 180) (length 3.81) 97 | (name "BUTON_I" (effects (font (size 1.27 1.27)))) 98 | (number "27" (effects (font (size 1.27 1.27)))) 99 | ) 100 | (pin power_in line (at 0 34.29 270) (length 3.81) 101 | (name "VCC" (effects (font (size 1.27 1.27)))) 102 | (number "28" (effects (font (size 1.27 1.27)))) 103 | ) 104 | (pin output line (at -17.78 13.97 0) (length 3.81) 105 | (name "D0" (effects (font (size 1.27 1.27)))) 106 | (number "29" (effects (font (size 1.27 1.27)))) 107 | ) 108 | (pin output line (at -17.78 21.59 0) (length 3.81) 109 | (name "SLEEP" (effects (font (size 1.27 1.27)))) 110 | (number "3" (effects (font (size 1.27 1.27)))) 111 | ) 112 | (pin output line (at -17.78 11.43 0) (length 3.81) 113 | (name "D1" (effects (font (size 1.27 1.27)))) 114 | (number "30" (effects (font (size 1.27 1.27)))) 115 | ) 116 | (pin output line (at -17.78 8.89 0) (length 3.81) 117 | (name "D2" (effects (font (size 1.27 1.27)))) 118 | (number "31" (effects (font (size 1.27 1.27)))) 119 | ) 120 | (pin output line (at -17.78 6.35 0) (length 3.81) 121 | (name "D3" (effects (font (size 1.27 1.27)))) 122 | (number "32" (effects (font (size 1.27 1.27)))) 123 | ) 124 | (pin input line (at -17.78 19.05 0) (length 3.81) 125 | (name "RESET" (effects (font (size 1.27 1.27)))) 126 | (number "4" (effects (font (size 1.27 1.27)))) 127 | ) 128 | (pin no_connect line (at 17.78 -8.89 180) (length 3.81) 129 | (name "N.C" (effects (font (size 1.27 1.27)))) 130 | (number "5" (effects (font (size 1.27 1.27)))) 131 | ) 132 | (pin input line (at -17.78 -34.29 0) (length 3.81) 133 | (name "GND" (effects (font (size 1.27 1.27)))) 134 | (number "6" (effects (font (size 1.27 1.27)))) 135 | ) 136 | (pin input line (at 17.78 26.67 180) (length 3.81) 137 | (name "UP" (effects (font (size 1.27 1.27)))) 138 | (number "7" (effects (font (size 1.27 1.27)))) 139 | ) 140 | (pin input line (at 17.78 21.59 180) (length 3.81) 141 | (name "LEFT" (effects (font (size 1.27 1.27)))) 142 | (number "8" (effects (font (size 1.27 1.27)))) 143 | ) 144 | (pin input line (at 17.78 24.13 180) (length 3.81) 145 | (name "DOWN" (effects (font (size 1.27 1.27)))) 146 | (number "9" (effects (font (size 1.27 1.27)))) 147 | ) 148 | ) 149 | ) 150 | ) 151 | -------------------------------------------------------------------------------- /remaster/pce-gt-controller.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 31, 4 | "active_layer_preset": "All Layers", 5 | "auto_track_width": true, 6 | "hidden_netclasses": [], 7 | "hidden_nets": [], 8 | "high_contrast_mode": 0, 9 | "net_color_mode": 1, 10 | "opacity": { 11 | "images": 0.6, 12 | "pads": 1.0, 13 | "tracks": 1.0, 14 | "vias": 1.0, 15 | "zones": 0.6 16 | }, 17 | "selection_filter": { 18 | "dimensions": true, 19 | "footprints": true, 20 | "graphics": true, 21 | "keepouts": true, 22 | "lockedItems": false, 23 | "otherItems": true, 24 | "pads": true, 25 | "text": true, 26 | "tracks": true, 27 | "vias": true, 28 | "zones": true 29 | }, 30 | "visible_items": [ 31 | 0, 32 | 1, 33 | 2, 34 | 3, 35 | 4, 36 | 5, 37 | 8, 38 | 9, 39 | 10, 40 | 11, 41 | 12, 42 | 13, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36, 64 | 39, 65 | 40 66 | ], 67 | "visible_layers": "fffffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "pce-gt-controller.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /remaster/pce-gt-controller.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 0.762, 38 | "height": 1.524, 39 | "width": 1.524 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "min_clearance": 0.25 49 | } 50 | }, 51 | "diff_pair_dimensions": [ 52 | { 53 | "gap": 0.0, 54 | "via_gap": 0.0, 55 | "width": 0.0 56 | } 57 | ], 58 | "drc_exclusions": [ 59 | "copper_edge_clearance|116321295|104730000|63af7cdd-e386-4b16-867c-8a047f3690f8|d5d070ee-4fda-47ff-8117-631de82380aa", 60 | "copper_edge_clearance|118853795|104730000|512a4495-e8d9-48d9-9688-437fed4eebcd|79257135-0aeb-41bf-97c1-0f12a9b125b6", 61 | "copper_edge_clearance|123793795|104730000|966cb671-c6d2-4693-9854-b128a83adad1|e783a95d-4072-4d9e-a2d4-0dad72501835", 62 | "copper_edge_clearance|126293795|104730000|1e3bb568-caee-4576-80f5-7d674a612466|36e61abd-1d9f-4f1e-8799-2d97d8599f9e", 63 | "isolated_copper|76400584|31729685|edc9b72e-d483-4a2a-8e85-a2b218abd0e3|00000000-0000-0000-0000-000000000000", 64 | "silk_edge_clearance|129227545|110337545|a4eef4d3-606d-4cbb-ba37-bd7065506be6|9327480b-7920-41b1-9f28-202d59e5f44d", 65 | "unconnected_items|118853795|103970000|79257135-0aeb-41bf-97c1-0f12a9b125b6|e783a95d-4072-4d9e-a2d4-0dad72501835" 66 | ], 67 | "meta": { 68 | "version": 2 69 | }, 70 | "rule_severities": { 71 | "annular_width": "error", 72 | "clearance": "error", 73 | "connection_width": "warning", 74 | "copper_edge_clearance": "error", 75 | "copper_sliver": "warning", 76 | "courtyards_overlap": "error", 77 | "diff_pair_gap_out_of_range": "error", 78 | "diff_pair_uncoupled_length_too_long": "error", 79 | "drill_out_of_range": "error", 80 | "duplicate_footprints": "warning", 81 | "extra_footprint": "warning", 82 | "footprint": "error", 83 | "footprint_type_mismatch": "ignore", 84 | "hole_clearance": "error", 85 | "hole_near_hole": "error", 86 | "invalid_outline": "error", 87 | "isolated_copper": "warning", 88 | "item_on_disabled_layer": "error", 89 | "items_not_allowed": "error", 90 | "length_out_of_range": "error", 91 | "lib_footprint_issues": "warning", 92 | "lib_footprint_mismatch": "warning", 93 | "malformed_courtyard": "error", 94 | "microvia_drill_out_of_range": "error", 95 | "missing_courtyard": "ignore", 96 | "missing_footprint": "warning", 97 | "net_conflict": "warning", 98 | "npth_inside_courtyard": "ignore", 99 | "padstack": "warning", 100 | "pth_inside_courtyard": "ignore", 101 | "shorting_items": "error", 102 | "silk_edge_clearance": "warning", 103 | "silk_over_copper": "warning", 104 | "silk_overlap": "warning", 105 | "skew_out_of_range": "error", 106 | "solder_mask_bridge": "error", 107 | "starved_thermal": "error", 108 | "text_height": "warning", 109 | "text_thickness": "warning", 110 | "through_hole_pad_without_hole": "error", 111 | "too_many_vias": "error", 112 | "track_dangling": "warning", 113 | "track_width": "error", 114 | "tracks_crossing": "error", 115 | "unconnected_items": "error", 116 | "unresolved_variable": "error", 117 | "via_dangling": "warning", 118 | "zones_intersect": "error" 119 | }, 120 | "rules": { 121 | "max_error": 0.005, 122 | "min_clearance": 0.0, 123 | "min_connection": 0.0, 124 | "min_copper_edge_clearance": 0.0, 125 | "min_hole_clearance": 0.25, 126 | "min_hole_to_hole": 0.25, 127 | "min_microvia_diameter": 0.19999999999999998, 128 | "min_microvia_drill": 0.09999999999999999, 129 | "min_resolved_spokes": 2, 130 | "min_silk_clearance": 0.0, 131 | "min_text_height": 0.7, 132 | "min_text_thickness": 0.08, 133 | "min_through_hole_diameter": 0.3, 134 | "min_track_width": 0.0, 135 | "min_via_annular_width": 0.09999999999999999, 136 | "min_via_diameter": 0.5, 137 | "solder_mask_clearance": 0.0, 138 | "solder_mask_min_width": 0.0, 139 | "solder_mask_to_copper_clearance": 0.0, 140 | "use_height_for_length_calcs": true 141 | }, 142 | "teardrop_options": [ 143 | { 144 | "td_allow_use_two_tracks": true, 145 | "td_curve_segcount": 5, 146 | "td_on_pad_in_zone": false, 147 | "td_onpadsmd": true, 148 | "td_onroundshapesonly": false, 149 | "td_ontrackend": false, 150 | "td_onviapad": true 151 | } 152 | ], 153 | "teardrop_parameters": [ 154 | { 155 | "td_curve_segcount": 0, 156 | "td_height_ratio": 1.0, 157 | "td_length_ratio": 0.5, 158 | "td_maxheight": 2.0, 159 | "td_maxlen": 1.0, 160 | "td_target_name": "td_round_shape", 161 | "td_width_to_size_filter_ratio": 0.9 162 | }, 163 | { 164 | "td_curve_segcount": 0, 165 | "td_height_ratio": 1.0, 166 | "td_length_ratio": 0.5, 167 | "td_maxheight": 2.0, 168 | "td_maxlen": 1.0, 169 | "td_target_name": "td_rect_shape", 170 | "td_width_to_size_filter_ratio": 0.9 171 | }, 172 | { 173 | "td_curve_segcount": 0, 174 | "td_height_ratio": 1.0, 175 | "td_length_ratio": 0.5, 176 | "td_maxheight": 2.0, 177 | "td_maxlen": 1.0, 178 | "td_target_name": "td_track_end", 179 | "td_width_to_size_filter_ratio": 0.9 180 | } 181 | ], 182 | "track_widths": [ 183 | 0.0 184 | ], 185 | "via_dimensions": [ 186 | { 187 | "diameter": 0.0, 188 | "drill": 0.0 189 | } 190 | ], 191 | "zones_allow_external_fillets": false 192 | }, 193 | "layer_presets": [], 194 | "viewports": [] 195 | }, 196 | "boards": [], 197 | "cvpcb": { 198 | "equivalence_files": [] 199 | }, 200 | "erc": { 201 | "erc_exclusions": [], 202 | "meta": { 203 | "version": 0 204 | }, 205 | "pin_map": [ 206 | [ 207 | 0, 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 1, 214 | 0, 215 | 0, 216 | 0, 217 | 0, 218 | 2 219 | ], 220 | [ 221 | 0, 222 | 2, 223 | 0, 224 | 1, 225 | 0, 226 | 0, 227 | 1, 228 | 0, 229 | 2, 230 | 2, 231 | 2, 232 | 2 233 | ], 234 | [ 235 | 0, 236 | 0, 237 | 0, 238 | 0, 239 | 0, 240 | 0, 241 | 1, 242 | 0, 243 | 1, 244 | 0, 245 | 1, 246 | 2 247 | ], 248 | [ 249 | 0, 250 | 1, 251 | 0, 252 | 0, 253 | 0, 254 | 0, 255 | 1, 256 | 1, 257 | 2, 258 | 1, 259 | 1, 260 | 2 261 | ], 262 | [ 263 | 0, 264 | 0, 265 | 0, 266 | 0, 267 | 0, 268 | 0, 269 | 1, 270 | 0, 271 | 0, 272 | 0, 273 | 0, 274 | 2 275 | ], 276 | [ 277 | 0, 278 | 0, 279 | 0, 280 | 0, 281 | 0, 282 | 0, 283 | 0, 284 | 0, 285 | 0, 286 | 0, 287 | 0, 288 | 2 289 | ], 290 | [ 291 | 1, 292 | 1, 293 | 1, 294 | 1, 295 | 1, 296 | 0, 297 | 1, 298 | 1, 299 | 1, 300 | 1, 301 | 1, 302 | 2 303 | ], 304 | [ 305 | 0, 306 | 0, 307 | 0, 308 | 1, 309 | 0, 310 | 0, 311 | 1, 312 | 0, 313 | 0, 314 | 0, 315 | 0, 316 | 2 317 | ], 318 | [ 319 | 0, 320 | 2, 321 | 1, 322 | 2, 323 | 0, 324 | 0, 325 | 1, 326 | 0, 327 | 2, 328 | 2, 329 | 2, 330 | 2 331 | ], 332 | [ 333 | 0, 334 | 2, 335 | 0, 336 | 1, 337 | 0, 338 | 0, 339 | 1, 340 | 0, 341 | 2, 342 | 0, 343 | 0, 344 | 2 345 | ], 346 | [ 347 | 0, 348 | 2, 349 | 1, 350 | 1, 351 | 0, 352 | 0, 353 | 1, 354 | 0, 355 | 2, 356 | 0, 357 | 0, 358 | 2 359 | ], 360 | [ 361 | 2, 362 | 2, 363 | 2, 364 | 2, 365 | 2, 366 | 2, 367 | 2, 368 | 2, 369 | 2, 370 | 2, 371 | 2, 372 | 2 373 | ] 374 | ], 375 | "rule_severities": { 376 | "bus_definition_conflict": "error", 377 | "bus_entry_needed": "error", 378 | "bus_to_bus_conflict": "error", 379 | "bus_to_net_conflict": "error", 380 | "conflicting_netclasses": "error", 381 | "different_unit_footprint": "error", 382 | "different_unit_net": "error", 383 | "duplicate_reference": "error", 384 | "duplicate_sheet_names": "error", 385 | "endpoint_off_grid": "warning", 386 | "extra_units": "error", 387 | "global_label_dangling": "warning", 388 | "hier_label_mismatch": "error", 389 | "label_dangling": "error", 390 | "lib_symbol_issues": "warning", 391 | "missing_bidi_pin": "warning", 392 | "missing_input_pin": "warning", 393 | "missing_power_pin": "error", 394 | "missing_unit": "warning", 395 | "multiple_net_names": "warning", 396 | "net_not_bus_member": "warning", 397 | "no_connect_connected": "warning", 398 | "no_connect_dangling": "warning", 399 | "pin_not_connected": "error", 400 | "pin_not_driven": "error", 401 | "pin_to_pin": "warning", 402 | "power_pin_not_driven": "error", 403 | "similar_labels": "warning", 404 | "simulation_model_issue": "ignore", 405 | "unannotated": "error", 406 | "unit_value_mismatch": "error", 407 | "unresolved_variable": "error", 408 | "wire_dangling": "error" 409 | } 410 | }, 411 | "libraries": { 412 | "pinned_footprint_libs": [], 413 | "pinned_symbol_libs": [] 414 | }, 415 | "meta": { 416 | "filename": "pce-gt-controller.kicad_pro", 417 | "version": 1 418 | }, 419 | "net_settings": { 420 | "classes": [ 421 | { 422 | "bus_width": 12, 423 | "clearance": 0.127, 424 | "diff_pair_gap": 0.25, 425 | "diff_pair_via_gap": 0.25, 426 | "diff_pair_width": 0.2, 427 | "line_style": 0, 428 | "microvia_diameter": 0.3, 429 | "microvia_drill": 0.1, 430 | "name": "Default", 431 | "pcb_color": "rgba(0, 0, 0, 0.000)", 432 | "schematic_color": "rgba(0, 0, 0, 0.000)", 433 | "track_width": 0.25, 434 | "via_diameter": 0.8, 435 | "via_drill": 0.4, 436 | "wire_width": 6 437 | } 438 | ], 439 | "meta": { 440 | "version": 3 441 | }, 442 | "net_colors": null, 443 | "netclass_assignments": null, 444 | "netclass_patterns": [] 445 | }, 446 | "pcbnew": { 447 | "last_paths": { 448 | "gencad": "", 449 | "idf": "", 450 | "netlist": "", 451 | "specctra_dsn": "", 452 | "step": "", 453 | "vrml": "" 454 | }, 455 | "page_layout_descr_file": "" 456 | }, 457 | "schematic": { 458 | "annotate_start_num": 0, 459 | "drawing": { 460 | "dashed_lines_dash_length_ratio": 12.0, 461 | "dashed_lines_gap_length_ratio": 3.0, 462 | "default_line_thickness": 6.0, 463 | "default_text_size": 50.0, 464 | "field_names": [], 465 | "intersheets_ref_own_page": false, 466 | "intersheets_ref_prefix": "", 467 | "intersheets_ref_short": false, 468 | "intersheets_ref_show": false, 469 | "intersheets_ref_suffix": "", 470 | "junction_size_choice": 3, 471 | "label_size_ratio": 0.375, 472 | "pin_symbol_size": 25.0, 473 | "text_offset_ratio": 0.15 474 | }, 475 | "legacy_lib_dir": "", 476 | "legacy_lib_list": [], 477 | "meta": { 478 | "version": 1 479 | }, 480 | "net_format_name": "", 481 | "page_layout_descr_file": "", 482 | "plot_directory": "", 483 | "spice_current_sheet_as_root": false, 484 | "spice_external_command": "spice \"%I\"", 485 | "spice_model_current_sheet_as_root": true, 486 | "spice_save_all_currents": false, 487 | "spice_save_all_voltages": false, 488 | "subpart_first_id": 65, 489 | "subpart_id_separator": 0 490 | }, 491 | "sheets": [ 492 | [ 493 | "52f3b4a0-0cb2-4053-a708-cd12bdb7a704", 494 | "" 495 | ] 496 | ], 497 | "text_variables": {} 498 | } 499 | -------------------------------------------------------------------------------- /remaster/pce-gt-controller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Board-Folk/PC-Engine-GT-Controller/bed5e630c9d40706b20666142f9730dfb3605b37/remaster/pce-gt-controller.pdf -------------------------------------------------------------------------------- /remaster/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (version 7) 3 | (lib (name "PCE")(type "KiCad")(uri "${KIPRJMOD}/libs/PCE.kicad_sym")(options "")(descr "")) 4 | ) 5 | --------------------------------------------------------------------------------