├── KiCAD ├── PocketBeagle.dcm ├── plots │ ├── PocketBeagle.pdf │ ├── PocketBeagle-Top.pdf │ ├── PocketBeagle-VDD.pdf │ ├── PocketBeagle-back.png │ ├── PocketBeagle-front.png │ ├── PocketBeagle-B.SilkS.pdf │ ├── PocketBeagle-Bottom.pdf │ ├── PocketBeagle-F.SilkS.pdf │ ├── PocketBeagle-DigitalGND.pdf │ ├── PocketBeagle-NPTH.drl │ ├── PocketBeagle-B.Paste.gbr │ ├── PocketBeagle-Edge.Cuts.gbr │ ├── PocketBeagle-PTH.drl │ └── PocketBeagle-F.Paste.gbr ├── fp-lib-table ├── Makefile ├── pocketbeagle.pretty │ ├── VPAC0.kicad_mod │ ├── VPAC1.kicad_mod │ ├── VPAC2.kicad_mod │ ├── FIDUCIAL_40MIL.kicad_mod │ ├── TP06R.kicad_mod │ ├── TP06SQ.kicad_mod │ ├── TP07R.kicad_mod │ ├── TP07SQ.kicad_mod │ ├── TP08R.kicad_mod │ ├── TP08SQ.kicad_mod │ ├── TP09R.kicad_mod │ ├── TP09SQ.kicad_mod │ ├── TP10R.kicad_mod │ ├── TP10SQ.kicad_mod │ ├── TP11R.kicad_mod │ ├── TP11SQ.kicad_mod │ ├── TP12R.kicad_mod │ ├── TP12SQ.kicad_mod │ ├── TP13R.kicad_mod │ ├── TP13SQ.kicad_mod │ ├── TP14R.kicad_mod │ ├── TP14SQ.kicad_mod │ ├── TP15R.kicad_mod │ ├── TP15SQ.kicad_mod │ ├── TP16R.kicad_mod │ ├── TP16SQ.kicad_mod │ ├── TP17R.kicad_mod │ ├── TP17SQ.kicad_mod │ ├── TP18R.kicad_mod │ ├── TP18SQ.kicad_mod │ ├── TP19R.kicad_mod │ ├── TP19SQ.kicad_mod │ ├── TP20R.kicad_mod │ ├── TP20SQ.kicad_mod │ ├── B1_27.kicad_mod │ ├── B2_54.kicad_mod │ ├── P1-13.kicad_mod │ ├── P1-17.kicad_mod │ ├── CRYSTAL_5X3.2MM.kicad_mod │ ├── P1-13Y.kicad_mod │ ├── P1-20.kicad_mod │ ├── P1-20Y.kicad_mod │ ├── P1-17Y.kicad_mod │ ├── SON-6(TI)-DRY.kicad_mod │ ├── RN0804.kicad_mod │ ├── 0402.kicad_mod │ ├── 0603.kicad_mod │ ├── MINI_PUSHBUTTON.kicad_mod │ ├── SC70(TI-DCK).kicad_mod │ ├── 0805.kicad_mod │ ├── MICROSD.kicad_mod │ ├── 0805-LED.kicad_mod │ ├── 0603-LED.kicad_mod │ ├── 10118192-0001LF(MICRO-USB-B-AMPHENOL-FCI).kicad_mod │ ├── TH-2X18-W_O-SILK.kicad_mod │ ├── TH-2X18-(35MIL-DIA)-W_O-SILK.kicad_mod │ ├── OSD335X-BGA-256.kicad_mod │ └── TH-2X18.kicad_mod └── PocketBeagle.pro ├── PocketBeagle_sch.pdf ├── OSHW_mark_US000083.png ├── Fritzing ├── PocketBeagle.fzpz ├── README.md └── pcb │ └── PocketBeagle_pcb.svg ├── docs ├── PocketBeagle_pinout.png └── PocketBeagle_Short_Spec.pdf ├── models ├── PocketBeagle_3dmodel.png └── README.md ├── regulatory ├── compliance-testing.pdf └── PocketBeagle_Export_Classification.pdf ├── .gitignore ├── PocketBeagle_BOM.csv ├── README.md ├── kicad-scripts └── kicad-fab.py └── LICENSE /KiCAD/PocketBeagle.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /PocketBeagle_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/PocketBeagle_sch.pdf -------------------------------------------------------------------------------- /OSHW_mark_US000083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/OSHW_mark_US000083.png -------------------------------------------------------------------------------- /Fritzing/PocketBeagle.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/Fritzing/PocketBeagle.fzpz -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle.pdf -------------------------------------------------------------------------------- /docs/PocketBeagle_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/docs/PocketBeagle_pinout.png -------------------------------------------------------------------------------- /models/PocketBeagle_3dmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/models/PocketBeagle_3dmodel.png -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-Top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle-Top.pdf -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-VDD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle-VDD.pdf -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle-back.png -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle-front.png -------------------------------------------------------------------------------- /docs/PocketBeagle_Short_Spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/docs/PocketBeagle_Short_Spec.pdf -------------------------------------------------------------------------------- /regulatory/compliance-testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/regulatory/compliance-testing.pdf -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-B.SilkS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle-B.SilkS.pdf -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-Bottom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle-Bottom.pdf -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-F.SilkS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle-F.SilkS.pdf -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-DigitalGND.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/KiCAD/plots/PocketBeagle-DigitalGND.pdf -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- 1 | This model is courtesy of Steve Smitka. 2 | 3 | ![PocketBeagle 3D model](PocketBeagle_3dmodel.png "Render of 3D model") 4 | 5 | -------------------------------------------------------------------------------- /KiCAD/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name PocketBeagle.pretty)(type KiCad)(uri $KIPRJMOD/pocketbeagle.pretty)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /regulatory/PocketBeagle_Export_Classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beagleboard/pocketbeagle/HEAD/regulatory/PocketBeagle_Export_Classification.pdf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | 3 | # Temporary files 4 | *.000 5 | *.bak 6 | *.bck 7 | *.kicad_pcb-bak 8 | *~ 9 | _autosave-* 10 | *.tmp 11 | 12 | # Netlist files (exported from Eeschema) 13 | *.net 14 | 15 | # Autorouter files (exported from Pcbnew) 16 | .dsn 17 | -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ;DRILL file {KiCad (2017-08-02 revision 9760937)-master} date Tue Aug 15 11:40:44 2017 3 | ;FORMAT={-:-/ absolute / inch / decimal} 4 | FMAT,2 5 | INCH,TZ 6 | T1C0.039 7 | % 8 | G90 9 | G05 10 | M72 11 | T1 12 | X6.6521Y-4.0173 13 | X6.6521Y-4.3321 14 | T0 15 | M30 16 | -------------------------------------------------------------------------------- /KiCAD/Makefile: -------------------------------------------------------------------------------- 1 | # Create fab files. 2 | 3 | PocketBeagle-fab.zip: 4 | 5 | %-fab.zip : %-fab.kicad_pcb 6 | python ../kicad-scripts/kicad-fab.py $< plot/ 7 | zip -r $@ plot/ 8 | 9 | # Replacing any %%gitversion%% with a github version string. 10 | %-fab.kicad_pcb : %.kicad_pcb 11 | sed "s/%%gitversion%%/`git log --date=short --pretty=format:'%h@%cd' -n 1 $^`/" < $^ > $@ 12 | -------------------------------------------------------------------------------- /Fritzing/README.md: -------------------------------------------------------------------------------- 1 | # Fritzing model of PocketBeagle 2 | 3 | [Fritzing](http://fritzing.org/) is an easy way to document your projects and even design PCBs. 4 | 5 | This is now [upstream](https://github.com/fritzing/fritzing-parts/blob/master/core/PocketBeagle.fzp), so use the upstream version. 6 | 7 | ![PocketBeagle breadboard view](breadboard/PocketBeagle_breadboard.svg "Breadboard style view in Fritzing") 8 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/VPAC0.kicad_mod: -------------------------------------------------------------------------------- 1 | (module VPAC0 (layer F.Cu) (tedit 200000) 2 | (attr virtual) 3 | (fp_text reference "" (at 0 0) (layer F.SilkS) 4 | (effects (font (thickness 0.15))) 5 | ) 6 | (fp_text value "" (at 0 0) (layer F.SilkS) 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (pad VP thru_hole circle (at 0 0) (size 0.635 0.635) (drill 0.381) (layers *.Cu *.Paste *.Mask)) 10 | ) 11 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/VPAC1.kicad_mod: -------------------------------------------------------------------------------- 1 | (module VPAC1 (layer F.Cu) (tedit 200000) 2 | (attr virtual) 3 | (fp_text reference "" (at 0 0) (layer F.SilkS) 4 | (effects (font (thickness 0.15))) 5 | ) 6 | (fp_text value "" (at 0 0) (layer F.SilkS) 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (pad VP thru_hole circle (at 0 0) (size 0.8128 0.8128) (drill 0.508) (layers *.Cu *.Paste *.Mask)) 10 | ) 11 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/VPAC2.kicad_mod: -------------------------------------------------------------------------------- 1 | (module VPAC2 (layer F.Cu) (tedit 200000) 2 | (attr virtual) 3 | (fp_text reference "" (at 0 0) (layer F.SilkS) 4 | (effects (font (thickness 0.15))) 5 | ) 6 | (fp_text value "" (at 0 0) (layer F.SilkS) 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (pad VP thru_hole circle (at 0 0) (size 1.2192 1.2192) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 10 | ) 11 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/FIDUCIAL_40MIL.kicad_mod: -------------------------------------------------------------------------------- 1 | (module FIDUCIAL_40MIL (layer F.Cu) (tedit 59925435) 2 | (attr smd) 3 | (fp_text reference FUD1 (at 0.3 2.1) (layer F.SilkS) hide 4 | (effects (font (thickness 0.15))) 5 | ) 6 | (fp_text value FIDUCIAL (at -0.1 -2.2) (layer F.SilkS) hide 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (pad P$1 smd circle (at 0 0) (size 1.016 1.016) (layers F.Cu F.Mask) 10 | (solder_mask_margin 0.35) (clearance 0.35)) 11 | ) 12 | -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-B.Paste.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(2017-08-02 revision 9760937)-master* 2 | G04 #@! TF.CreationDate,2017-08-15T11:40:40-05:00* 3 | G04 #@! TF.ProjectId,PocketBeagle,506F636B6574426561676C652E6B6963,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Paste,Bot* 6 | G04 #@! TF.FilePolarity,Positive* 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (2017-08-02 revision 9760937)-master) date Tue Aug 15 11:40:40 2017* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP06R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP06R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.87274 -1.03378) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.1778 0.3683) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 0.59944 0.59944) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP06SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP06SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.87274 -1.03378) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.1778 0.3683) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 0.59944 0.59944) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP07R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP07R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.87274 -1.03378) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.1778 0.4953) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 0.6985 0.6985) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP07SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP07SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.87274 -1.03378) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.3048 0.3683) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 0.6985 0.6985) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP08R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP08R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.87274 -1.03378) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.3048 0.3683) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 0.79756 0.79756) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP08SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP08SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.87274 -1.03378) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.3048 0.4953) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 0.79756 0.79756) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP09R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP09R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.72288 -1.13284) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.3048 0.4953) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 0.89916 0.89916) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP09SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP09SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.72288 -1.13284) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.3048 0.4953) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 0.89916 0.89916) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP10R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP10R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.67462 -1.18364) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.3048 0.4953) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 0.99822 0.99822) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP10SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP10SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.67462 -1.18364) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.4318 0.6223) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 0.99822 0.99822) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP11R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP11R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.62382 -1.23444) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.4318 0.4953) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 1.40462) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.09982 1.09982) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP11SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP11SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.62382 -1.23444) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.4318 0.6223) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.09982 1.09982) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP12R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP12R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.57302 -1.2827) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.4318 0.6223) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP12SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP12SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.57302 -1.2827) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.4318 0.6223) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP13R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP13R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.52476 -1.3335) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.4318 0.6223) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.29794 1.29794) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP13SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP13SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.52476 -1.3335) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.5588 0.7493) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.29794 1.29794) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP14R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP14R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.47396 -1.3843) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.4318 0.7493) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.39954 1.39954) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP14SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP14SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.47396 -1.3843) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.5588 0.7493) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.39954 1.39954) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP15R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP15R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.42316 -1.4351) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.5588 0.7493) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.4986 1.4986) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP15SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP15SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.42316 -1.4351) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.6858 0.8763) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.4986 1.4986) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP16R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP16R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.3749 -1.48336) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.5588 0.7493) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.59766 1.59766) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP16SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP16SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.3749 -1.48336) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.6858 0.8763) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.59766 1.59766) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP17R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP17R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.3241 -1.53416) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.5588 0.8763) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.69926 1.69926) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP17SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP17SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.3241 -1.53416) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.6858 0.8763) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.69926 1.69926) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP18R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP18R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.2733 -1.58496) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.6858 0.8763) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.79832 1.79832) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP18SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP18SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.2733 -1.58496) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.8128 1.0033) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.79832 1.79832) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP19R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP19R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.2225 -1.63322) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.6858 0.8763) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.89992 1.89992) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP19SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP19SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.2225 -1.63322) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.8128 1.0033) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.89738 1.89738) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP20R.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP20R (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.17424 -1.68402) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.6858 1.0033) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd circle (at 0 0) (size 1.99898 1.99898) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TP20SQ.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TP20SQ (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.17424 -1.68402) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 7 | ) 8 | (fp_text value >VALUE (at -0.9398 1.1303) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_text user >TP_SIGNAL_NAME (at 7.49808 2.03962) (layer F.SilkS) 12 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 13 | ) 14 | (pad TP smd rect (at 0 0) (size 1.99898 1.99898) (layers F.Cu F.Paste F.Mask)) 15 | ) 16 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/B1_27.kicad_mod: -------------------------------------------------------------------------------- 1 | (module B1_27 (layer F.Cu) (tedit 59927130) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 2.54 -1.651) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.127))) 7 | ) 8 | (fp_text value >VALUE (at -0.5588 0.7493) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_line (start -0.635 0) (end 0.635 0) (layer F.SilkS) (width 0)) 12 | (fp_line (start 0 -0.635) (end 0 0.635) (layer F.SilkS) (width 0)) 13 | (fp_text user >TP_SIGNAL_NAME (at 6.86308 1.40462) (layer F.SilkS) hide 14 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 15 | ) 16 | (pad TP smd circle (at 0 0) (size 1.27 1.27) (layers F.Cu F.Mask)) 17 | ) 18 | -------------------------------------------------------------------------------- /KiCAD/PocketBeagle.pro: -------------------------------------------------------------------------------- 1 | update=Mon 16 Feb 2015 06:37:24 AM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead=PocketBeagle.net 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir= 31 | [eeschema/libraries] 32 | LibName1=PocketBeagle 33 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/B2_54.kicad_mod: -------------------------------------------------------------------------------- 1 | (module B2_54 (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr smd) 5 | (fp_text reference >NAME (at 1.905 -2.286) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.127))) 7 | ) 8 | (fp_text value >VALUE (at -1.1938 1.3843) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_line (start -0.635 0) (end 0.635 0) (layer F.SilkS) (width 0)) 12 | (fp_line (start 0 0.635) (end 0 -0.635) (layer F.SilkS) (width 0)) 13 | (fp_circle (center 0 0) (end 0 -0.635) (layer F.SilkS) (width 0.254)) 14 | (fp_text user >TP_SIGNAL_NAME (at 6.22808 2.67462) (layer F.SilkS) 15 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 16 | ) 17 | (pad TP smd circle (at 0 0) (size 2.54 2.54) (layers F.Cu F.Paste F.Mask)) 18 | ) 19 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/P1-13.kicad_mod: -------------------------------------------------------------------------------- 1 | (module P1-13 (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr virtual) 5 | (fp_text reference >NAME (at 2.159 -1.905) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.127))) 7 | ) 8 | (fp_text value >VALUE (at 0.0762 -0.0127) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_line (start -0.3302 0.3302) (end 0.3302 0.3302) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start 0.3302 0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -0.3302 -0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -0.3302 0.3302) (end -0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 15 | (fp_circle (center 0 0) (end 0 -0.762) (layer Dwgs.User) (width 0.1524)) 16 | (fp_text user >TP_SIGNAL_NAME (at 6.22808 2.03962) (layer F.SilkS) 17 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 18 | ) 19 | (pad TP thru_hole circle (at 0 0) (size 2.159 4.318) (drill 1.3208) (layers *.Cu *.Paste *.Mask)) 20 | ) 21 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/P1-17.kicad_mod: -------------------------------------------------------------------------------- 1 | (module P1-17 (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr virtual) 5 | (fp_text reference >NAME (at 2.032 -2.032) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.127))) 7 | ) 8 | (fp_text value >VALUE (at 0.0762 -0.0127) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_line (start -0.3302 0.3302) (end 0.3302 0.3302) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start 0.3302 0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -0.3302 -0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -0.3302 0.3302) (end -0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 15 | (fp_circle (center 0 0) (end 0 -0.8128) (layer Dwgs.User) (width 0.1524)) 16 | (fp_text user >TP_SIGNAL_NAME (at 6.22808 2.67462) (layer F.SilkS) 17 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 18 | ) 19 | (pad TP thru_hole circle (at 0 0) (size 2.54 5.08) (drill 1.7018) (layers *.Cu *.Paste *.Mask)) 20 | ) 21 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/CRYSTAL_5X3.2MM.kicad_mod: -------------------------------------------------------------------------------- 1 | (module CRYSTAL_5X3.2MM (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at -0.762 -2.4384) (layer F.SilkS) 4 | (effects (font (size 0.8128 0.8128) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at -0.6096 2.3876) (layer F.SilkS) 7 | (effects (font (size 0.8128 0.8128) (thickness 0.127))) 8 | ) 9 | (fp_line (start -2.59842 1.69926) (end 2.59842 1.69926) (layer F.SilkS) (width 0.127)) 10 | (fp_line (start 2.59842 1.69926) (end 2.59842 1.36906) (layer F.SilkS) (width 0.127)) 11 | (fp_line (start 2.59842 -1.36906) (end 2.59842 -1.69926) (layer F.SilkS) (width 0.127)) 12 | (fp_line (start 2.59842 -1.69926) (end -2.59842 -1.69926) (layer F.SilkS) (width 0.127)) 13 | (fp_line (start -2.59842 -1.69926) (end -2.59842 -1.36906) (layer F.SilkS) (width 0.127)) 14 | (fp_line (start -2.59842 1.36906) (end -2.59842 1.69926) (layer F.SilkS) (width 0.127)) 15 | (pad 1 smd rect (at -1.94818 0) (size 1.89992 2.39776) (layers F.Cu F.Paste F.Mask)) 16 | (pad 2 smd rect (at 1.94818 0) (size 1.89992 2.39776) (layers F.Cu F.Paste F.Mask)) 17 | ) 18 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/P1-13Y.kicad_mod: -------------------------------------------------------------------------------- 1 | (module P1-13Y (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr virtual) 5 | (fp_text reference >NAME (at 2.286 -2.794) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.127))) 7 | ) 8 | (fp_text value >VALUE (at 0.0762 -0.0127) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_line (start -0.3302 0.3302) (end 0.3302 0.3302) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start 0.3302 0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -0.3302 -0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -0.3302 0.3302) (end -0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 15 | (fp_circle (center 0 0) (end 0 -0.762) (layer Dwgs.User) (width 0.1524)) 16 | (fp_text user >TP_SIGNAL_NAME (at 6.22808 3.30962) (layer F.SilkS) 17 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 18 | ) 19 | (pad TP thru_hole oval (at 0 0 180) (size 1.905 3.81) (drill 1.3208) (layers *.Cu *.Paste *.Mask)) 20 | ) 21 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/P1-20.kicad_mod: -------------------------------------------------------------------------------- 1 | (module P1-20 (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr virtual) 5 | (fp_text reference >NAME (at 1.651 -2.413) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.127))) 7 | ) 8 | (fp_text value >VALUE (at 0.0762 -0.0127) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_line (start -0.3302 0.3302) (end 0.3302 0.3302) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start 0.3302 0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -0.3302 -0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -0.3302 0.3302) (end -0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 15 | (fp_circle (center 0 0) (end 0 -1.016) (layer Dwgs.User) (width 0.1524)) 16 | (fp_text user >TP_SIGNAL_NAME (at 6.22808 2.67462) (layer F.SilkS) 17 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 18 | ) 19 | (pad TP thru_hole circle (at 0 0) (size 3.1496 6.2992) (drill 2.0066) (layers *.Cu *.Paste *.Mask)) 20 | ) 21 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/P1-20Y.kicad_mod: -------------------------------------------------------------------------------- 1 | (module P1-20Y (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr virtual) 5 | (fp_text reference >NAME (at 1.905 -3.429) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.127))) 7 | ) 8 | (fp_text value >VALUE (at 0.0762 -0.0127) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_line (start -0.3302 0.3302) (end 0.3302 0.3302) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start 0.3302 0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -0.3302 -0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -0.3302 0.3302) (end -0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 15 | (fp_circle (center 0 0) (end 0 -1.016) (layer Dwgs.User) (width 0.1524)) 16 | (fp_text user >TP_SIGNAL_NAME (at 6.22808 3.94462) (layer F.SilkS) 17 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 18 | ) 19 | (pad TP thru_hole oval (at 0 0 180) (size 2.54 5.08) (drill 2.0066) (layers *.Cu *.Paste *.Mask)) 20 | ) 21 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/P1-17Y.kicad_mod: -------------------------------------------------------------------------------- 1 | (module P1-17Y (layer F.Cu) (tedit 200000) 2 | (descr "TEST PAD") 3 | (tags "TEST PAD") 4 | (attr virtual) 5 | (fp_text reference >NAME (at 2.032 -2.921) (layer F.SilkS) 6 | (effects (font (size 1.27 1.27) (thickness 0.127))) 7 | ) 8 | (fp_text value >VALUE (at 0.0762 -0.0127) (layer F.SilkS) 9 | (effects (font (size 0.0254 0.0254) (thickness 0.000001))) 10 | ) 11 | (fp_line (start -0.3302 0.3302) (end 0.3302 0.3302) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start 0.3302 0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -0.3302 -0.3302) (end 0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -0.3302 0.3302) (end -0.3302 -0.3302) (layer Dwgs.User) (width 0.06604)) 15 | (fp_circle (center 0 0) (end 0 -0.8128) (layer Dwgs.User) (width 0.1524)) 16 | (fp_text user >TP_SIGNAL_NAME (at 6.22808 3.30962) (layer F.SilkS) 17 | (effects (font (size 0.99822 0.99822) (thickness 0.0762))) 18 | ) 19 | (pad TP thru_hole oval (at 0 0 180) (size 2.11836 4.23926) (drill 1.7018) (layers *.Cu *.Paste *.Mask)) 20 | ) 21 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/SON-6(TI)-DRY.kicad_mod: -------------------------------------------------------------------------------- 1 | (module "SON-6(TI)-DRY" (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at 1.69418 -1.33096) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 2.16662 1.34112) (layer F.SilkS) 7 | (effects (font (size 1.016 1.016) (thickness 0.127))) 8 | ) 9 | (fp_line (start 0.81788 -0.49784) (end 0.81788 0.49784) (layer F.SilkS) (width 0.127)) 10 | (fp_line (start -0.81788 0.49784) (end -0.81788 -0.49784) (layer F.SilkS) (width 0.127)) 11 | (fp_circle (center -0.94488 0.61976) (end -0.94488 0.5969) (layer F.SilkS) (width 0.127)) 12 | (pad 1 smd rect (at -0.49784 0.37846) (size 0.29972 0.51816) (layers F.Cu F.Paste F.Mask)) 13 | (pad 2 smd rect (at 0 0.37338) (size 0.29972 0.48768) (layers F.Cu F.Paste F.Mask)) 14 | (pad 3 smd rect (at 0.49784 0.37338) (size 0.29972 0.48768) (layers F.Cu F.Paste F.Mask)) 15 | (pad 4 smd rect (at 0.49784 -0.37338) (size 0.29972 0.48768) (layers F.Cu F.Paste F.Mask)) 16 | (pad 5 smd rect (at 0 -0.37338) (size 0.29972 0.48768) (layers F.Cu F.Paste F.Mask)) 17 | (pad 6 smd rect (at -0.49784 -0.37338) (size 0.29972 0.48768) (layers F.Cu F.Paste F.Mask)) 18 | ) 19 | -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-Edge.Cuts.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(2017-08-02 revision 9760937)-master* 2 | G04 #@! TF.CreationDate,2017-08-15T11:40:40-05:00* 3 | G04 #@! TF.ProjectId,PocketBeagle,506F636B6574426561676C652E6B6963,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! 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 (2017-08-02 revision 9760937)-master) date Tue Aug 15 11:40:40 2017* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %ADD10C,0.150000*% 14 | G04 APERTURE END LIST* 15 | D10* 16 | X166001100Y-87503600D02* 17 | X131001100Y-87503600D01* 18 | X121001100Y-97503600D02* 19 | G75* 20 | G02X131001100Y-87503600I10000000J0D01* 21 | G01* 22 | X121001100Y-97503600D02* 23 | X121001100Y-112503600D01* 24 | X131001100Y-122503600D02* 25 | G75* 26 | G02X121001100Y-112503600I0J10000000D01* 27 | G01* 28 | X131001100Y-122503600D02* 29 | X166001100Y-122503600D01* 30 | X176001100Y-112503600D02* 31 | G75* 32 | G02X166001100Y-122503600I-10000000J0D01* 33 | G01* 34 | X176001100Y-112503600D02* 35 | X176001100Y-97503600D01* 36 | X166001100Y-87503600D02* 37 | G75* 38 | G02X176001100Y-97503600I0J-10000000D01* 39 | G01* 40 | M02* 41 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/RN0804.kicad_mod: -------------------------------------------------------------------------------- 1 | (module RN0804 (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at 2.54 -1.43256) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value "" (at 0 0) (layer F.SilkS) 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (fp_line (start -0.99822 -0.01778) (end -0.99822 0.01778) (layer F.SilkS) (width 0.254)) 10 | (fp_line (start 0.99822 -0.01778) (end 0.99822 0.01778) (layer F.SilkS) (width 0.254)) 11 | (pad 1 smd rect (at -0.8001 0.49784) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 12 | (pad 2 smd rect (at -0.24892 0.49784) (size 0.29972 0.49784) (layers F.Cu F.Paste F.Mask)) 13 | (pad 3 smd rect (at 0.24892 0.49784) (size 0.29972 0.49784) (layers F.Cu F.Paste F.Mask)) 14 | (pad 4 smd rect (at 0.8001 0.49784) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 15 | (pad 5 smd rect (at 0.8001 -0.49784) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 16 | (pad 6 smd rect (at 0.24892 -0.49784) (size 0.29972 0.49784) (layers F.Cu F.Paste F.Mask)) 17 | (pad 7 smd rect (at -0.24892 -0.49784) (size 0.29972 0.49784) (layers F.Cu F.Paste F.Mask)) 18 | (pad 8 smd rect (at -0.8001 -0.49784) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 19 | ) 20 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/0402.kicad_mod: -------------------------------------------------------------------------------- 1 | (module 0402 (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at 2.54 0.9906) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 3.048 -1.00584) (layer F.SilkS) 7 | (effects (font (size 1.016 1.016) (thickness 0.127))) 8 | ) 9 | (fp_line (start -0.49784 0.24892) (end -0.29972 0.24892) (layer Dwgs.User) (width 0.06604)) 10 | (fp_line (start -0.29972 0.24892) (end -0.29972 -0.24892) (layer Dwgs.User) (width 0.06604)) 11 | (fp_line (start -0.49784 -0.24892) (end -0.29972 -0.24892) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start -0.49784 0.24892) (end -0.49784 -0.24892) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start 0.29972 0.24892) (end 0.49784 0.24892) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start 0.49784 0.24892) (end 0.49784 -0.24892) (layer Dwgs.User) (width 0.06604)) 15 | (fp_line (start 0.29972 -0.24892) (end 0.49784 -0.24892) (layer Dwgs.User) (width 0.06604)) 16 | (fp_line (start 0.29972 0.24892) (end 0.29972 -0.24892) (layer Dwgs.User) (width 0.06604)) 17 | (fp_line (start -0.34798 0.19812) (end 0.34798 0.19812) (layer Dwgs.User) (width 0.09906)) 18 | (fp_line (start -0.34798 -0.19812) (end 0.34798 -0.19812) (layer Dwgs.User) (width 0.09906)) 19 | (pad 1 smd rect (at -0.49784 0) (size 0.49784 0.59944) (layers F.Cu F.Paste F.Mask)) 20 | (pad 2 smd rect (at 0.49784 0) (size 0.49784 0.59944) (layers F.Cu F.Paste F.Mask)) 21 | ) 22 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/0603.kicad_mod: -------------------------------------------------------------------------------- 1 | (module 0603 (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at 2.54 1.19126) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 3.048 -1.2065) (layer F.SilkS) 7 | (effects (font (size 1.016 1.016) (thickness 0.127))) 8 | ) 9 | (fp_line (start -0.79756 0.39878) (end -0.49784 0.39878) (layer Dwgs.User) (width 0.06604)) 10 | (fp_line (start -0.49784 0.39878) (end -0.49784 -0.39878) (layer Dwgs.User) (width 0.06604)) 11 | (fp_line (start -0.79756 -0.39878) (end -0.49784 -0.39878) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start -0.79756 0.39878) (end -0.79756 -0.39878) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start 0.49784 0.39878) (end 0.79756 0.39878) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start 0.79756 0.39878) (end 0.79756 -0.39878) (layer Dwgs.User) (width 0.06604)) 15 | (fp_line (start 0.49784 -0.39878) (end 0.79756 -0.39878) (layer Dwgs.User) (width 0.06604)) 16 | (fp_line (start 0.49784 0.39878) (end 0.49784 -0.39878) (layer Dwgs.User) (width 0.06604)) 17 | (fp_line (start -0.54864 -0.34798) (end 0.54864 -0.34798) (layer Dwgs.User) (width 0.09906)) 18 | (fp_line (start -0.54864 0.34798) (end 0.54864 0.34798) (layer Dwgs.User) (width 0.09906)) 19 | (pad 1 smd rect (at -0.84836 0) (size 0.99822 1.09982) (layers F.Cu F.Paste F.Mask)) 20 | (pad 2 smd rect (at 0.84836 0) (size 0.99822 1.09982) (layers F.Cu F.Paste F.Mask)) 21 | ) 22 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/MINI_PUSHBUTTON.kicad_mod: -------------------------------------------------------------------------------- 1 | (module MINI_PUSHBUTTON (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at 0.17272 -2.63398) (layer F.SilkS) 4 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 5 | ) 6 | (fp_text value >VALUE (at 0.80772 2.36474) (layer F.SilkS) 7 | (effects (font (size 1.27 1.27) (thickness 0.1016))) 8 | ) 9 | (fp_line (start -2.3495 1.4986) (end -2.3495 -1.4986) (layer Dwgs.User) (width 0.127)) 10 | (fp_line (start -2.3495 -1.4986) (end 2.3495 -1.4986) (layer Dwgs.User) (width 0.127)) 11 | (fp_line (start 2.3495 -1.4986) (end 2.3495 1.4986) (layer Dwgs.User) (width 0.127)) 12 | (fp_line (start 2.3495 1.4986) (end -2.3495 1.4986) (layer Dwgs.User) (width 0.127)) 13 | (fp_line (start -2.3495 0.04826) (end -2.3495 -0.04826) (layer F.SilkS) (width 0.2032)) 14 | (fp_line (start 2.3495 0.04826) (end 2.3495 -0.04826) (layer F.SilkS) (width 0.2032)) 15 | (fp_line (start -2.3495 -1.4986) (end 2.3495 -1.4986) (layer F.SilkS) (width 0.2032)) 16 | (fp_line (start -2.3495 1.4986) (end 2.3495 1.4986) (layer F.SilkS) (width 0.2032)) 17 | (fp_circle (center 0 0) (end 0 -0.69342) (layer F.SilkS) (width 0.2032)) 18 | (pad 1 smd rect (at -1.99898 -0.7493) (size 1.19888 0.89916) (layers F.Cu F.Paste F.Mask)) 19 | (pad 2 smd rect (at 1.99898 -0.7493) (size 1.19888 0.89916) (layers F.Cu F.Paste F.Mask)) 20 | (pad 3 smd rect (at -1.99898 0.7493) (size 1.19888 0.89916) (layers F.Cu F.Paste F.Mask)) 21 | (pad 4 smd rect (at 1.99898 0.7493) (size 1.19888 0.89916) (layers F.Cu F.Paste F.Mask)) 22 | ) 23 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/SC70(TI-DCK).kicad_mod: -------------------------------------------------------------------------------- 1 | (module "SC70(TI-DCK)" (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at 0.381 -2.54) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 0.889 2.54) (layer F.SilkS) 7 | (effects (font (size 1.016 1.016) (thickness 0.127))) 8 | ) 9 | (fp_line (start -0.99822 -0.49784) (end -0.99822 0.62484) (layer F.SilkS) (width 0.127)) 10 | (fp_line (start 0.99822 -0.49784) (end 0.99822 0.49784) (layer F.SilkS) (width 0.127)) 11 | (fp_line (start -0.2794 0.62484) (end 0.2794 0.62484) (layer F.SilkS) (width 0.127)) 12 | (fp_line (start -0.99822 0.62484) (end 0.99822 0.62484) (layer Dwgs.User) (width 0.127)) 13 | (fp_line (start 0.99822 0.62484) (end 0.99822 -0.62484) (layer Dwgs.User) (width 0.127)) 14 | (fp_line (start 0.99822 -0.62484) (end -0.99822 -0.62484) (layer Dwgs.User) (width 0.127)) 15 | (fp_line (start -0.99822 -0.62484) (end -0.99822 0.62484) (layer Dwgs.User) (width 0.127)) 16 | (fp_circle (center 1.27 -1.143) (end 1.27 -1.24206) (layer F.SilkS) (width 0.254)) 17 | (pad 1 smd rect (at 0.6477 -1.09982) (size 0.39878 0.89916) (layers F.Cu F.Paste F.Mask)) 18 | (pad 2 smd rect (at 0 -1.09982) (size 0.39878 0.89916) (layers F.Cu F.Paste F.Mask)) 19 | (pad 3 smd rect (at -0.6477 -1.09982) (size 0.39878 0.89916) (layers F.Cu F.Paste F.Mask)) 20 | (pad 4 smd rect (at -0.6477 1.09982) (size 0.39878 0.89916) (layers F.Cu F.Paste F.Mask)) 21 | (pad 5 smd rect (at 0.6477 1.09982) (size 0.39878 0.89916) (layers F.Cu F.Paste F.Mask)) 22 | ) 23 | -------------------------------------------------------------------------------- /PocketBeagle_BOM.csv: -------------------------------------------------------------------------------- 1 | Designator,Manufacturer/MPN,Qty,Description 2 | ,"PLACON GB1430A",1,"1-3/16 X1-7/8 X 1/2IN GRAPHIC BOX 770/CS" 3 | "C1,C5,C7",YAGEO CC0402KRX7R7BB104,3,"Cap,100nF,10%,16V,X7R,0402,YAGEO" 4 | "C2,C3",YAGEO CC0402JRNPO9BN180,2,CAP 18pF 5% 50V COG 0402 SMD 5 | C4,YAGEO CC0402KRX5R5BB105,1,"CAP,1UF,+/-10%,X5R,6.3V,SMD0402" 6 | C6,MURATA GRM21BR71A106KE51L,1,CAP CER 10UF 10V 10% X7R 0805 TR 7 | "D1,D2,D3,D4",SEMITEL ESDPSA0402V05,4,SMD Diode ESD 0.05pF;0402 8 | "FB1,FB2",Laird LI0603G121R-10,2,FERRITE BEAD 120 OHM 0603 1LN 9 | POWER,C&K Components KMR231GLFS,1,SWITCH TACTILE SPST-NO 0.05A 32V 10 | R1,YAGEO RC0402FR-071KL,1,"RES,1K,+/-1%,1/16W,SMD0402" 11 | R2,YAGEO RC0402FR-071ML,1,"RES,1M,+/-1%,1/16W,SMD0402" 12 | "R3,R12",YAGEO RC0402FR-0710KL,2,"RES,10K,+/-1%,1/16W,SMD0402" 13 | R4,YAGEO YC124-JR-071KL,1,"RES 4 Arrays,1K,+/-5%,1/16W,SMD0804(0402X4)" 14 | "R5,R10,R11",YAGEO YC124-JR-0710KL,3,"RES 4 Arrays,10K,+/-5%,1/16W,SMD0804(4x0402)" 15 | "R6,R7,R8,R9",YAGEO YC124-JR-07100KL,4,"RES 4 Arrays,100K,+/-5%,1/16W,SMD0804(0402X4)" 16 | U1,Octavo Systems OSD3358-512M-BSM,1,"IC,the smallest System-In-Package (SiP) device in the OSD335x Family,OSD3358-512M-BSM,BGA256,SMD" 17 | U2,Texas Instruments SN74LVC1G07DCKR,1,"IC,SINGLE BUFFER/DRIVER WITH OPEN-DRAIN OUTPUT,SN74LVC1G07DCKR,SC-70,SMD" 18 | ,"Nexperia 74LVC1G07GV,125",1,"IC,SINGLE BUFFER/DRIVER WITH OPEN-DRAIN OUTPUT,SN74LVC1G07DCKR,SC-70,SMD" 19 | "USR0,USR1,USR2,USR3,PWR",EVERLIGHT 19-217/BHC-AN1P2/3T,5,"LED,Blue,Water Clear,If25mA,SMD0603,464.5~476.5nm,Vf2.7~3.7v,-40~85," 20 | X1,"MTCONN UBAF-06082, FCI 10118192-0001LF",1,"Conn,Micro USB B,5pin,RA, SMT" 21 | X2,"MTCONN MCTF-0403, Suntech ST-TF-003A",1,"Connector,MicroSD Card CONN with detect switch,Gold Flash 1u,Black,SMD" 22 | Y1,"Interquip 5XBB24000183TF50Q3, CTS 445A35A24M00000, TXC 7A-24.000MAAJ-T",1,"24MHz crystal, SMD, 5x3.2mm" 23 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/0805.kicad_mod: -------------------------------------------------------------------------------- 1 | (module 0805 (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at 0.635 -1.778) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 1.143 2.032) (layer F.SilkS) 7 | (effects (font (size 1.016 1.016) (thickness 0.127))) 8 | ) 9 | (fp_line (start 0.4064 0.6985) (end 1.0541 0.6985) (layer Dwgs.User) (width 0.06604)) 10 | (fp_line (start 1.0541 0.6985) (end 1.0541 -0.70104) (layer Dwgs.User) (width 0.06604)) 11 | (fp_line (start 0.4064 -0.70104) (end 1.0541 -0.70104) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start 0.4064 0.6985) (end 0.4064 -0.70104) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -1.0668 0.6985) (end -0.41656 0.6985) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -0.41656 0.6985) (end -0.41656 -0.70104) (layer Dwgs.User) (width 0.06604)) 15 | (fp_line (start -1.0668 -0.70104) (end -0.41656 -0.70104) (layer Dwgs.User) (width 0.06604)) 16 | (fp_line (start -1.0668 0.6985) (end -1.0668 -0.70104) (layer Dwgs.User) (width 0.06604)) 17 | (fp_line (start -0.19812 0.49784) (end 0.19812 0.49784) (layer F.SilkS) (width 0.06604)) 18 | (fp_line (start 0.19812 0.49784) (end 0.19812 -0.49784) (layer F.SilkS) (width 0.06604)) 19 | (fp_line (start -0.19812 -0.49784) (end 0.19812 -0.49784) (layer F.SilkS) (width 0.06604)) 20 | (fp_line (start -0.19812 0.49784) (end -0.19812 -0.49784) (layer F.SilkS) (width 0.06604)) 21 | (fp_line (start -0.40894 -0.635) (end 0.40894 -0.635) (layer Dwgs.User) (width 0.1524)) 22 | (fp_line (start -0.40894 0.635) (end 0.40894 0.635) (layer Dwgs.User) (width 0.1524)) 23 | (fp_line (start -1.97104 -0.98298) (end 1.97104 -0.98298) (layer F.SilkS) (width 0.0508)) 24 | (fp_line (start 1.97104 -0.98298) (end 1.97104 0.98298) (layer F.SilkS) (width 0.0508)) 25 | (fp_line (start 1.97104 0.98298) (end -1.97104 0.98298) (layer F.SilkS) (width 0.0508)) 26 | (fp_line (start -1.97104 0.98298) (end -1.97104 -0.98298) (layer F.SilkS) (width 0.0508)) 27 | (pad 1 smd rect (at -0.94996 0) (size 1.29794 1.4986) (layers F.Cu F.Paste F.Mask)) 28 | (pad 2 smd rect (at 0.94742 0) (size 1.29794 1.4986) (layers F.Cu F.Paste F.Mask)) 29 | ) 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BeagleBoard.org PocketBeagle 2 | _An even more bare-bones-BeagleBone made super-tiny, affordable and cloneable_ 3 | 4 | [PocketBeagle](https://beagleboard.org/pocket) is an ultra-tiny-yet-complete open-source USB-key-fob computer. PocketBeagle features an incredible low cost, slick design and simple usage, making PocketBeagle the ideal development board for beginners and professionals alike. 5 | 6 | [![](OSHW_mark_US000083.png)](https://certification.oshwa.org/us000083.html) 7 | 8 | See [documentation](https://docs.beagleboard.org/latest/boards/pocketbeagle/original/index.html) for usage details and [the forum](https://forum.beagleboard.org/tag/pocketbeagle) for support. 9 | 10 | # Terms 11 | These design materials are *NOT SUPPORTED* and *DO NOT* constitute a reference design. Only “community” support is allowed via resources at [BeagleBoard.org/discuss](https://beagleboard.org/discuss). 12 | 13 | THERE IS NO WARRANTY FOR THE DESIGN MATERIALS, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE DESIGN MATERIALS “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE DESIGN MATERIALS IS WITH YOU. SHOULD THE DESIGN MATERIALS PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 14 | 15 | In other words, you may use the design materials as you choose and there is no license with regards to usage in the manufacturing process. We mean it, these design materials may be totally unsuitable for any purposes. Don't blame us! 16 | 17 | As a general rule, we don't encourage use of this or other off-the-shelf single board computers in commercial products without engaging with a manufacturer to create a supplier agreement and make sure that you can get material as your business demands. Further, we do update the design on occasions where we find it necessary and won't guarantee a supply of older revisions, though we do seek periodic manufacturing of all of our boards for a period of roughly 10 years and will make design changes to replace obsolete parts and that may impact your usage. If you do opt to use it in a product, you take full responsibility for that product. 18 | 19 | Do not use the BeagleBoard.org logo or trademarks (such as BeagleBoard, BeagleBone and PocketBeagle) on your products without a [logo license](https://beagleboard.org/logo) from the BeagleBoard.org Foundation, but feel free to reference BeagleBoard.org. 20 | 21 | See the [LICENSE](https://github.com/beagleboard/pocketbeagle/blob/master/LICENSE) file regarding the copyright of these materials. 22 | -------------------------------------------------------------------------------- /kicad-scripts/kicad-fab.py: -------------------------------------------------------------------------------- 1 | ''' 2 | H. Zeller 3 | Based on gen_gerber_and_drill_files_board.py in kicad/demos directory. 4 | ''' 5 | 6 | import sys 7 | import os 8 | 9 | from pcbnew import * 10 | filename=sys.argv[1] 11 | plotDir = sys.argv[2] if len(sys.argv) > 2 else "plot/" 12 | 13 | board = LoadBoard(filename) 14 | 15 | plotDir = "plot/" 16 | 17 | pctl = PLOT_CONTROLLER(board) 18 | 19 | popt = pctl.GetPlotOptions() 20 | 21 | popt.SetOutputDirectory(plotDir) 22 | 23 | # Set some important plot options: 24 | popt.SetPlotFrameRef(False) 25 | popt.SetLineWidth(FromMM(0.35)) 26 | 27 | popt.SetAutoScale(False) 28 | popt.SetScale(1) 29 | popt.SetMirror(False) 30 | popt.SetUseGerberAttributes(True) 31 | popt.SetUseGerberProtelExtensions(True) 32 | popt.SetExcludeEdgeLayer(True); 33 | popt.SetScale(1) 34 | popt.SetUseAuxOrigin(True) 35 | 36 | # This by gerbers only (also the name is truly horrid!) 37 | popt.SetSubtractMaskFromSilk(False) 38 | 39 | # param 0 is the layer ID 40 | # param 1 is a string added to the file base name to identify the drawing 41 | # param 2 is a comment 42 | # Create filenames in a way that if they are sorted alphabetically, they 43 | # are shown in exactly the layering the board would look like. So 44 | # gerbv * 45 | # just makes sense. The drill-file will be numbered 00 so that it is first. 46 | plot_plan = [ 47 | ( Edge_Cuts, "01-Edge_Cuts", "Edges" ), 48 | 49 | ( F_SilkS, "02-SilkTop", "Silk top" ), 50 | ( F_Paste, "03-PasteTop", "Paste top" ), 51 | ( F_Cu, "04-CuTop", "Top layer" ), 52 | ( F_Mask, "05-MaskTop", "Mask top" ), 53 | 54 | ( In1_Cu, "06-CuIn1", "Inner Layer1" ), 55 | ( In2_Cu, "07-CuIn2", "Inner Layer2" ), 56 | 57 | ( B_Mask, "08-MaskBottom", "Mask bottom" ), 58 | ( B_Cu, "09-CuBottom", "Bottom layer" ), 59 | ( B_Paste, "10-PasteBottom", "Paste Bottom" ), 60 | ( B_SilkS, "11-SilkBottom", "Silk top" ), 61 | ] 62 | 63 | 64 | for layer_info in plot_plan: 65 | pctl.SetLayer(layer_info[0]) 66 | pctl.OpenPlotfile(layer_info[1], PLOT_FORMAT_GERBER, layer_info[2]) 67 | pctl.PlotLayer() 68 | 69 | # At the end you have to close the last plot, otherwise you don't know when 70 | # the object will be recycled! 71 | pctl.ClosePlot() 72 | 73 | # Fabricators need drill files. 74 | # sometimes a drill map file is asked (for verification purpose) 75 | drlwriter = EXCELLON_WRITER( board ) 76 | drlwriter.SetMapFileFormat( PLOT_FORMAT_PDF ) 77 | 78 | mirror = False 79 | minimalHeader = False 80 | offset = wxPoint(0,0) 81 | mergeNPTH = True # non-plated through-hole 82 | drlwriter.SetOptions( mirror, minimalHeader, offset, mergeNPTH ) 83 | 84 | metricFmt = True 85 | drlwriter.SetFormat( metricFmt ) 86 | 87 | genDrl = True 88 | genMap = True 89 | drlwriter.CreateDrillandMapFilesSet( plotDir, genDrl, genMap ); 90 | 91 | # We can't give just the filename for the name of the drill file at generation 92 | # time, but we do want its name to be a bit different to show up on top. 93 | # So this is an ugly hack to rename the drl-file to have a 0 in the beginning. 94 | base_name = filename[:-10] 95 | print plotDir + base_name + ".drl" 96 | os.rename(plotDir + base_name + ".drl", plotDir + base_name + "-00.drl") 97 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/MICROSD.kicad_mod: -------------------------------------------------------------------------------- 1 | (module MICROSD (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at 5.715 -3.175) (layer F.SilkS) 4 | (effects (font (size 1.27 1.27) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 6.35 -0.635) (layer F.SilkS) 7 | (effects (font (size 1.27 1.27) (thickness 0.127))) 8 | ) 9 | (fp_line (start 4.39928 3.8989) (end 6.39826 3.8989) (layer F.SilkS) (width 0.06604)) 10 | (fp_line (start 6.39826 3.8989) (end 6.39826 -5.09778) (layer F.SilkS) (width 0.06604)) 11 | (fp_line (start 4.39928 -5.09778) (end 6.39826 -5.09778) (layer F.SilkS) (width 0.06604)) 12 | (fp_line (start 4.39928 3.8989) (end 4.39928 -5.09778) (layer F.SilkS) (width 0.06604)) 13 | (fp_line (start 1.79832 5.79882) (end 5.79882 5.79882) (layer F.SilkS) (width 0.06604)) 14 | (fp_line (start 5.79882 5.79882) (end 5.79882 4.79806) (layer F.SilkS) (width 0.06604)) 15 | (fp_line (start 1.79832 4.79806) (end 5.79882 4.79806) (layer F.SilkS) (width 0.06604)) 16 | (fp_line (start 1.79832 5.79882) (end 1.79832 4.79806) (layer F.SilkS) (width 0.06604)) 17 | (fp_line (start 1.143 -9.779) (end 14.986 -9.779) (layer F.SilkS) (width 0.127)) 18 | (fp_line (start 14.986 -9.779) (end 14.986 -7.24662) (layer F.SilkS) (width 0.127)) 19 | (fp_line (start 13.97 -1.72466) (end 13.97 5.207) (layer F.SilkS) (width 0.127)) 20 | (fp_line (start 13.97 5.207) (end 0 5.207) (layer F.SilkS) (width 0.127)) 21 | (fp_line (start 0 5.207) (end 0 -8.382) (layer F.SilkS) (width 0.127)) 22 | (fp_line (start 0 -8.382) (end 1.143 -8.382) (layer F.SilkS) (width 0.127)) 23 | (fp_line (start 1.143 -8.382) (end 1.143 -9.779) (layer F.SilkS) (width 0.127)) 24 | (fp_arc (start 12.17676 -7.24662) (end 14.986 -7.24662) (angle 20.8) (layer F.SilkS) (width 0.127)) 25 | (fp_arc (start 26.67 -1.72466) (end 13.97 -1.72466) (angle 20.8) (layer F.SilkS) (width 0.127)) 26 | (pad 1 smd rect (at 0 -4.39928) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 27 | (pad 2 smd rect (at 0 -3.29946) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 28 | (pad 3 smd rect (at 0 -2.19964) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 29 | (pad 4 smd rect (at 0 -1.09982) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 30 | (pad 5 smd rect (at 0 0) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 31 | (pad 6 smd rect (at 0 1.09982) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 32 | (pad 7 smd rect (at 0 2.19964) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 33 | (pad 8 smd rect (at 0 3.29946) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 34 | (pad 9 smd rect (at 0 4.39928) (size 1.59766 0.6985) (layers F.Cu F.Paste F.Mask)) 35 | (pad G1 smd rect (at 0.59944 5.56006) (size 1.59766 1.19888) (layers F.Cu F.Paste F.Mask)) 36 | (pad G2 smd rect (at 10.09904 5.5499) (size 2.19964 1.19888) (layers F.Cu F.Paste F.Mask)) 37 | (pad G3 smd rect (at 10.09904 -9.94918) (size 2.19964 1.19888) (layers F.Cu F.Paste F.Mask)) 38 | (pad G4 smd rect (at 0.49784 -9.04748) (size 1.39954 1.59766) (layers F.Cu F.Paste F.Mask)) 39 | (pad "" np_thru_hole circle (at 10.49782 2.74828) (size 0.99822 0.99822) (drill 0.99822) (layers *.Cu *.Mask)) 40 | (pad "" np_thru_hole circle (at 10.49782 -5.24764) (size 0.99822 0.99822) (drill 0.99822) (layers *.Cu *.Mask)) 41 | ) 42 | -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ;DRILL file {KiCad (2017-08-02 revision 9760937)-master} date Tue Aug 15 11:40:44 2017 3 | ;FORMAT={-:-/ absolute / inch / decimal} 4 | FMAT,2 5 | INCH,TZ 6 | T1C0.015 7 | T2C0.016 8 | T3C0.020 9 | T4C0.030 10 | T5C0.035 11 | % 12 | G90 13 | G05 14 | M72 15 | T1 16 | X4.8448Y-4.306 17 | X4.8538Y-3.803 18 | X4.9028Y-3.984 19 | X4.9028Y-4.04 20 | X4.9088Y-3.848 21 | X4.9088Y-3.883 22 | X4.9088Y-3.918 23 | X4.9398Y-3.984 24 | X4.9398Y-4.04 25 | X4.9408Y-4.526 26 | X4.9618Y-3.818 27 | X5.0038Y-4.333 28 | X5.0038Y-4.373 29 | X5.0038Y-4.413 30 | X5.0038Y-4.453 31 | X5.0938Y-4.433 32 | X5.1358Y-4.184 33 | X5.1438Y-3.753 34 | X5.1588Y-4.008 35 | X5.1738Y-3.773 36 | X5.1748Y-4.121 37 | X5.1748Y-4.154 38 | X5.1988Y-4.178 39 | X5.2038Y-3.988 40 | X5.2038Y-4.02 41 | X5.2038Y-4.053 42 | X5.2038Y-4.086 43 | X5.2338Y-3.833 44 | X5.2338Y-3.883 45 | X5.2338Y-3.933 46 | X5.2338Y-4.383 47 | X5.2338Y-4.433 48 | X5.2338Y-4.483 49 | X5.2838Y-3.933 50 | X5.2838Y-4.033 51 | X5.2838Y-4.383 52 | X5.2838Y-4.433 53 | X5.2838Y-4.483 54 | X5.3338Y-3.783 55 | X5.3338Y-3.833 56 | X5.3338Y-3.883 57 | X5.3338Y-3.983 58 | X5.3338Y-4.033 59 | X5.3338Y-4.383 60 | X5.3368Y-3.932 61 | X5.3438Y-4.183 62 | X5.3838Y-3.933 63 | X5.3838Y-3.983 64 | X5.3838Y-4.033 65 | X5.3838Y-4.233 66 | X5.3838Y-4.283 67 | X5.3838Y-4.333 68 | X5.4338Y-3.833 69 | X5.4338Y-3.883 70 | X5.4338Y-4.383 71 | X5.4338Y-4.433 72 | X5.4838Y-3.839 73 | X5.4838Y-3.928 74 | X5.4838Y-4.373 75 | X5.5288Y-4.643 76 | X5.5638Y-4.643 77 | X5.6338Y-4.483 78 | X5.6538Y-4.616 79 | X5.6538Y-4.653 80 | X5.6838Y-4.483 81 | X5.7838Y-3.833 82 | X5.7868Y-4.49 83 | X5.8838Y-4.233 84 | X5.8838Y-4.273 85 | X5.8838Y-4.323 86 | X5.8838Y-4.493 87 | X5.8838Y-4.528 88 | X5.9238Y-4.333 89 | X5.9238Y-4.483 90 | X5.9338Y-3.933 91 | X5.9338Y-4.283 92 | X5.9338Y-4.528 93 | X5.9838Y-4.283 94 | X5.9838Y-4.528 95 | X6.0238Y-4.283 96 | X6.0538Y-3.776 97 | X6.0598Y-3.887 98 | X6.1078Y-3.767 99 | X6.1108Y-4.484 100 | X6.1168Y-4.4 101 | X6.1438Y-4.484 102 | X6.1498Y-4.4 103 | X6.1638Y-3.808 104 | X6.1638Y-3.858 105 | X6.1678Y-4.271 106 | X6.1768Y-4.451 107 | X6.1768Y-4.484 108 | X6.1858Y-3.944 109 | X6.2098Y-4.451 110 | X6.2458Y-3.725 111 | X6.2458Y-3.851 112 | X6.2458Y-3.884 113 | X6.2518Y-3.953 114 | X6.2728Y-3.851 115 | X6.2728Y-3.884 116 | X6.2788Y-4.433 117 | X6.2848Y-3.953 118 | X6.2908Y-4.25 119 | X6.3178Y-3.953 120 | X6.3508Y-3.953 121 | X6.3838Y-3.953 122 | X6.3838Y-4.04 123 | X6.3838Y-4.076 124 | X6.3988Y-3.824 125 | X6.4168Y-3.953 126 | X6.4438Y-4.484 127 | X6.4498Y-3.953 128 | X6.6058Y-4.433 129 | X6.6058Y-4.454 130 | X6.6358Y-4.433 131 | X6.6358Y-4.454 132 | X6.6448Y-4.52 133 | X6.6478Y-3.746 134 | X6.6658Y-4.433 135 | X6.6658Y-4.454 136 | X6.7126Y-4.0897 137 | X6.7126Y-4.1783 138 | X6.7126Y-4.2669 139 | X6.7717Y-4.0454 140 | X6.7717Y-4.134 141 | X6.7717Y-4.2226 142 | X6.7717Y-4.3112 143 | T2 144 | X4.7968Y-3.962 145 | X4.7968Y-4.007 146 | X4.7968Y-4.062 147 | X4.7968Y-4.111 148 | X4.7968Y-4.157 149 | X4.7968Y-4.206 150 | X4.7968Y-4.261 151 | X4.7968Y-4.306 152 | X4.8448Y-3.962 153 | X4.8448Y-4.007 154 | X4.8448Y-4.062 155 | X4.8448Y-4.111 156 | X4.8448Y-4.157 157 | X4.8448Y-4.206 158 | X4.8448Y-4.261 159 | X4.9028Y-4.228 160 | X4.9028Y-4.284 161 | X4.9398Y-4.228 162 | X4.9398Y-4.284 163 | X5.8338Y-4.133 164 | X6.1708Y-4.088 165 | X6.1828Y-4.382 166 | X6.6058Y-3.821 167 | X6.6058Y-3.842 168 | X6.6358Y-3.821 169 | X6.6358Y-3.842 170 | X6.6658Y-3.821 171 | X6.6658Y-3.842 172 | T3 173 | X5.1388Y-4.103 174 | X5.4338Y-4.133 175 | X5.4838Y-3.983 176 | X5.4838Y-4.283 177 | X5.5288Y-4.033 178 | X5.5288Y-4.233 179 | X5.5378Y-3.782 180 | X5.5888Y-3.833 181 | X5.6338Y-3.933 182 | X5.6338Y-4.333 183 | X5.7338Y-4.033 184 | X5.7338Y-4.233 185 | X5.7838Y-3.983 186 | X5.7838Y-4.283 187 | X6.6838Y-4.496 188 | T4 189 | X4.9948Y-4.181 190 | T5 191 | X4.9965Y-4.584 192 | X4.9965Y-4.684 193 | X5.0965Y-4.584 194 | X5.0965Y-4.684 195 | X5.1965Y-4.584 196 | X5.1965Y-4.684 197 | X5.2965Y-4.584 198 | X5.2965Y-4.684 199 | X5.3965Y-4.584 200 | X5.3965Y-4.684 201 | X5.4965Y-4.584 202 | X5.4965Y-4.684 203 | X5.5965Y-4.584 204 | X5.5965Y-4.684 205 | X5.6965Y-4.584 206 | X5.6965Y-4.684 207 | X5.7965Y-4.584 208 | X5.7965Y-4.684 209 | X5.8965Y-4.584 210 | X5.8965Y-4.684 211 | X5.9965Y-4.584 212 | X5.9965Y-4.684 213 | X6.0965Y-4.584 214 | X6.0965Y-4.684 215 | X6.1965Y-4.584 216 | X6.1965Y-4.684 217 | X6.2965Y-4.584 218 | X6.2965Y-4.684 219 | X6.3965Y-4.584 220 | X6.3965Y-4.684 221 | X6.4965Y-4.584 222 | X6.4965Y-4.684 223 | X6.5965Y-4.584 224 | X6.5965Y-4.684 225 | X6.6965Y-4.584 226 | X6.6965Y-4.684 227 | X4.9965Y-3.584 228 | X4.9965Y-3.684 229 | X5.0965Y-3.584 230 | X5.0965Y-3.684 231 | X5.1965Y-3.584 232 | X5.1965Y-3.684 233 | X5.2965Y-3.584 234 | X5.2965Y-3.684 235 | X5.3965Y-3.584 236 | X5.3965Y-3.684 237 | X5.4965Y-3.584 238 | X5.4965Y-3.684 239 | X5.5965Y-3.584 240 | X5.5965Y-3.684 241 | X5.6965Y-3.584 242 | X5.6965Y-3.684 243 | X5.7965Y-3.584 244 | X5.7965Y-3.684 245 | X5.8965Y-3.584 246 | X5.8965Y-3.684 247 | X5.9965Y-3.584 248 | X5.9965Y-3.684 249 | X6.0965Y-3.584 250 | X6.0965Y-3.684 251 | X6.1965Y-3.584 252 | X6.1965Y-3.684 253 | X6.2965Y-3.584 254 | X6.2965Y-3.684 255 | X6.3965Y-3.584 256 | X6.3965Y-3.684 257 | X6.4965Y-3.584 258 | X6.4965Y-3.684 259 | X6.5965Y-3.584 260 | X6.5965Y-3.684 261 | X6.6965Y-3.584 262 | X6.6965Y-3.684 263 | T0 264 | M30 265 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/0805-LED.kicad_mod: -------------------------------------------------------------------------------- 1 | (module 0805-LED (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at -1.651 -2.54 90) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 1.651 -1.5748 90) (layer F.SilkS) 7 | (effects (font (size 1.016 1.016) (thickness 0.127))) 8 | ) 9 | (fp_line (start -0.62484 0.99822) (end -0.29972 0.99822) (layer Dwgs.User) (width 0.06604)) 10 | (fp_line (start -0.29972 0.99822) (end -0.29972 0.49784) (layer Dwgs.User) (width 0.06604)) 11 | (fp_line (start -0.62484 0.49784) (end -0.29972 0.49784) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start -0.62484 0.99822) (end -0.62484 0.49784) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start 0.17272 0.7493) (end 0.32258 0.7493) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start 0.32258 0.7493) (end 0.32258 0.49784) (layer Dwgs.User) (width 0.06604)) 15 | (fp_line (start 0.17272 0.49784) (end 0.32258 0.49784) (layer Dwgs.User) (width 0.06604)) 16 | (fp_line (start 0.17272 0.7493) (end 0.17272 0.49784) (layer Dwgs.User) (width 0.06604)) 17 | (fp_line (start -0.32258 0.7493) (end -0.17272 0.7493) (layer Dwgs.User) (width 0.06604)) 18 | (fp_line (start -0.17272 0.7493) (end -0.17272 0.49784) (layer Dwgs.User) (width 0.06604)) 19 | (fp_line (start -0.32258 0.49784) (end -0.17272 0.49784) (layer Dwgs.User) (width 0.06604)) 20 | (fp_line (start -0.32258 0.7493) (end -0.32258 0.49784) (layer Dwgs.User) (width 0.06604)) 21 | (fp_line (start -0.19812 0.6731) (end 0.19812 0.6731) (layer Dwgs.User) (width 0.06604)) 22 | (fp_line (start 0.19812 0.6731) (end 0.19812 0.49784) (layer Dwgs.User) (width 0.06604)) 23 | (fp_line (start -0.19812 0.49784) (end 0.19812 0.49784) (layer Dwgs.User) (width 0.06604)) 24 | (fp_line (start -0.19812 0.6731) (end -0.19812 0.49784) (layer Dwgs.User) (width 0.06604)) 25 | (fp_line (start -0.62484 -0.49784) (end -0.29972 -0.49784) (layer Dwgs.User) (width 0.06604)) 26 | (fp_line (start -0.29972 -0.49784) (end -0.29972 -0.99822) (layer Dwgs.User) (width 0.06604)) 27 | (fp_line (start -0.62484 -0.99822) (end -0.29972 -0.99822) (layer Dwgs.User) (width 0.06604)) 28 | (fp_line (start -0.62484 -0.49784) (end -0.62484 -0.99822) (layer Dwgs.User) (width 0.06604)) 29 | (fp_line (start 0.29972 -0.49784) (end 0.62484 -0.49784) (layer Dwgs.User) (width 0.06604)) 30 | (fp_line (start 0.62484 -0.49784) (end 0.62484 -0.99822) (layer Dwgs.User) (width 0.06604)) 31 | (fp_line (start 0.29972 -0.99822) (end 0.62484 -0.99822) (layer Dwgs.User) (width 0.06604)) 32 | (fp_line (start 0.29972 -0.49784) (end 0.29972 -0.99822) (layer Dwgs.User) (width 0.06604)) 33 | (fp_line (start -0.32258 -0.49784) (end -0.17272 -0.49784) (layer Dwgs.User) (width 0.06604)) 34 | (fp_line (start -0.17272 -0.49784) (end -0.17272 -0.7493) (layer Dwgs.User) (width 0.06604)) 35 | (fp_line (start -0.32258 -0.7493) (end -0.17272 -0.7493) (layer Dwgs.User) (width 0.06604)) 36 | (fp_line (start -0.32258 -0.49784) (end -0.32258 -0.7493) (layer Dwgs.User) (width 0.06604)) 37 | (fp_line (start 0.17272 -0.49784) (end 0.32258 -0.49784) (layer Dwgs.User) (width 0.06604)) 38 | (fp_line (start 0.32258 -0.49784) (end 0.32258 -0.7493) (layer Dwgs.User) (width 0.06604)) 39 | (fp_line (start 0.17272 -0.7493) (end 0.32258 -0.7493) (layer Dwgs.User) (width 0.06604)) 40 | (fp_line (start 0.17272 -0.49784) (end 0.17272 -0.7493) (layer Dwgs.User) (width 0.06604)) 41 | (fp_line (start -0.19812 -0.49784) (end 0.19812 -0.49784) (layer Dwgs.User) (width 0.06604)) 42 | (fp_line (start 0.19812 -0.49784) (end 0.19812 -0.6731) (layer Dwgs.User) (width 0.06604)) 43 | (fp_line (start -0.19812 -0.6731) (end 0.19812 -0.6731) (layer Dwgs.User) (width 0.06604)) 44 | (fp_line (start -0.19812 -0.49784) (end -0.19812 -0.6731) (layer Dwgs.User) (width 0.06604)) 45 | (fp_line (start 0.29972 0.79756) (end 0.59944 0.79756) (layer Dwgs.User) (width 0.06604)) 46 | (fp_line (start 0.59944 0.79756) (end 0.59944 0.49784) (layer Dwgs.User) (width 0.06604)) 47 | (fp_line (start 0.29972 0.49784) (end 0.59944 0.49784) (layer Dwgs.User) (width 0.06604)) 48 | (fp_line (start 0.29972 0.79756) (end 0.29972 0.49784) (layer Dwgs.User) (width 0.06604)) 49 | (fp_line (start 0.29972 0.99822) (end 0.62484 0.99822) (layer Dwgs.User) (width 0.06604)) 50 | (fp_line (start 0.62484 0.99822) (end 0.62484 0.92456) (layer Dwgs.User) (width 0.06604)) 51 | (fp_line (start 0.29972 0.92456) (end 0.62484 0.92456) (layer Dwgs.User) (width 0.06604)) 52 | (fp_line (start 0.29972 0.99822) (end 0.29972 0.92456) (layer Dwgs.User) (width 0.06604)) 53 | (fp_line (start -0.57404 0.52324) (end -0.57404 -0.52324) (layer Dwgs.User) (width 0.1016)) 54 | (fp_line (start 0.57404 -0.49784) (end 0.57404 0.92456) (layer Dwgs.User) (width 0.1016)) 55 | (fp_line (start 0 0.2032) (end 0.4064 -0.2032) (layer F.SilkS) (width 0.254)) 56 | (fp_line (start 0 0.2032) (end -0.4064 -0.2032) (layer F.SilkS) (width 0.254)) 57 | (fp_line (start -0.4064 -0.2032) (end 0.4064 -0.2032) (layer F.SilkS) (width 0.254)) 58 | (fp_circle (center 0.44958 0.84836) (end 0.44958 0.74676) (layer Dwgs.User) (width 0.1016)) 59 | (fp_arc (start 0 0.9779) (end -0.34798 0.92456) (angle 162.3) (layer Dwgs.User) (width 0.1016)) 60 | (fp_arc (start 0 -0.9779) (end 0.34798 -0.92456) (angle 162.3) (layer Dwgs.User) (width 0.1016)) 61 | (pad A smd rect (at 0 -1.04902 180) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)) 62 | (pad K smd rect (at 0 1.04902 180) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)) 63 | ) 64 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/0603-LED.kicad_mod: -------------------------------------------------------------------------------- 1 | (module 0603-LED (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at -1.1557 -2.54 90) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 1.14046 -0.74676 90) (layer F.SilkS) 7 | (effects (font (size 1.016 1.016) (thickness 0.127))) 8 | ) 9 | (fp_line (start 0 0.16764) (end 0.34798 -0.16764) (layer F.SilkS) (width 0.1524)) 10 | (fp_line (start 0 0.16764) (end -0.34798 -0.16764) (layer F.SilkS) (width 0.1524)) 11 | (fp_line (start -0.34798 -0.16764) (end 0.34798 -0.16764) (layer F.SilkS) (width 0.1524)) 12 | (fp_line (start -0.14986 0.10922) (end 0 0.10922) (layer Dwgs.User) (width 0.04826)) 13 | (fp_line (start 0 0.10922) (end 0.14986 0.10922) (layer Dwgs.User) (width 0.04826)) 14 | (fp_line (start 0 0.10922) (end -0.14986 -0.10922) (layer Dwgs.User) (width 0.04826)) 15 | (fp_line (start -0.14986 -0.10922) (end 0 -0.10922) (layer Dwgs.User) (width 0.04826)) 16 | (fp_line (start 0 -0.10922) (end 0.14986 -0.10922) (layer Dwgs.User) (width 0.04826)) 17 | (fp_line (start 0.14986 -0.10922) (end 0 0.10922) (layer Dwgs.User) (width 0.04826)) 18 | (fp_line (start 0 -0.10922) (end 0 -0.25908) (layer Dwgs.User) (width 0.04826)) 19 | (fp_line (start 0 0.10922) (end 0 0.25908) (layer Dwgs.User) (width 0.04826)) 20 | (fp_line (start -0.21336 -0.04318) (end 0.21336 -0.04318) (layer F.SilkS) (width 0.1524)) 21 | (fp_line (start -0.0889 0.05334) (end 0.0889 0.05334) (layer F.SilkS) (width 0.1524)) 22 | (fp_line (start 0.14986 0.79756) (end 0.39878 0.79756) (layer Dwgs.User) (width 0.04826)) 23 | (fp_line (start 0.39878 0.79756) (end 0.39878 0.39878) (layer Dwgs.User) (width 0.04826)) 24 | (fp_line (start 0.39878 0.39878) (end -0.39878 0.39878) (layer Dwgs.User) (width 0.04826)) 25 | (fp_line (start -0.39878 0.39878) (end -0.39878 0.79756) (layer Dwgs.User) (width 0.04826)) 26 | (fp_line (start -0.39878 0.79756) (end -0.14986 0.79756) (layer Dwgs.User) (width 0.04826)) 27 | (fp_line (start -0.14986 0.79756) (end -0.14478 0.75946) (layer Dwgs.User) (width 0.04826)) 28 | (fp_line (start -0.14478 0.75946) (end -0.12954 0.7239) (layer Dwgs.User) (width 0.04826)) 29 | (fp_line (start -0.12954 0.7239) (end -0.10414 0.69342) (layer Dwgs.User) (width 0.04826)) 30 | (fp_line (start -0.10414 0.69342) (end -0.07366 0.66802) (layer Dwgs.User) (width 0.04826)) 31 | (fp_line (start -0.07366 0.66802) (end -0.0381 0.65278) (layer Dwgs.User) (width 0.04826)) 32 | (fp_line (start -0.0381 0.65278) (end 0 0.6477) (layer Dwgs.User) (width 0.04826)) 33 | (fp_line (start 0 0.6477) (end 0.0381 0.65278) (layer Dwgs.User) (width 0.04826)) 34 | (fp_line (start 0.0381 0.65278) (end 0.07366 0.66802) (layer Dwgs.User) (width 0.04826)) 35 | (fp_line (start 0.07366 0.66802) (end 0.10414 0.69342) (layer Dwgs.User) (width 0.04826)) 36 | (fp_line (start 0.10414 0.69342) (end 0.12954 0.7239) (layer Dwgs.User) (width 0.04826)) 37 | (fp_line (start 0.12954 0.7239) (end 0.14478 0.75946) (layer Dwgs.User) (width 0.04826)) 38 | (fp_line (start 0.14478 0.75946) (end 0.14986 0.79756) (layer Dwgs.User) (width 0.04826)) 39 | (fp_line (start -0.14986 -0.79756) (end -0.39878 -0.79756) (layer Dwgs.User) (width 0.04826)) 40 | (fp_line (start -0.39878 -0.79756) (end -0.39878 -0.39878) (layer Dwgs.User) (width 0.04826)) 41 | (fp_line (start -0.39878 -0.39878) (end 0.39878 -0.39878) (layer Dwgs.User) (width 0.04826)) 42 | (fp_line (start 0.39878 -0.39878) (end 0.39878 -0.79756) (layer Dwgs.User) (width 0.04826)) 43 | (fp_line (start 0.39878 -0.79756) (end 0.14986 -0.79756) (layer Dwgs.User) (width 0.04826)) 44 | (fp_line (start 0.14986 -0.79756) (end 0.14478 -0.75946) (layer Dwgs.User) (width 0.04826)) 45 | (fp_line (start 0.14478 -0.75946) (end 0.12954 -0.7239) (layer Dwgs.User) (width 0.04826)) 46 | (fp_line (start 0.12954 -0.7239) (end 0.10414 -0.69342) (layer Dwgs.User) (width 0.04826)) 47 | (fp_line (start 0.10414 -0.69342) (end 0.07366 -0.66802) (layer Dwgs.User) (width 0.04826)) 48 | (fp_line (start 0.07366 -0.66802) (end 0.0381 -0.65278) (layer Dwgs.User) (width 0.04826)) 49 | (fp_line (start 0.0381 -0.65278) (end 0 -0.6477) (layer Dwgs.User) (width 0.04826)) 50 | (fp_line (start 0 -0.6477) (end -0.0381 -0.65278) (layer Dwgs.User) (width 0.04826)) 51 | (fp_line (start -0.0381 -0.65278) (end -0.07366 -0.66802) (layer Dwgs.User) (width 0.04826)) 52 | (fp_line (start -0.07366 -0.66802) (end -0.10414 -0.69342) (layer Dwgs.User) (width 0.04826)) 53 | (fp_line (start -0.10414 -0.69342) (end -0.12954 -0.7239) (layer Dwgs.User) (width 0.04826)) 54 | (fp_line (start -0.12954 -0.7239) (end -0.14478 -0.75946) (layer Dwgs.User) (width 0.04826)) 55 | (fp_line (start -0.14478 -0.75946) (end -0.14986 -0.79756) (layer Dwgs.User) (width 0.04826)) 56 | (fp_line (start -0.39878 -0.39878) (end -0.29972 -0.39878) (layer Dwgs.User) (width 0.04826)) 57 | (fp_line (start -0.29972 -0.39878) (end -0.29972 0.39878) (layer Dwgs.User) (width 0.04826)) 58 | (fp_line (start -0.29972 0.39878) (end -0.39878 0.39878) (layer Dwgs.User) (width 0.04826)) 59 | (fp_line (start -0.39878 0.39878) (end -0.39878 -0.39878) (layer Dwgs.User) (width 0.04826)) 60 | (fp_line (start 0.29972 -0.39878) (end 0.39878 -0.39878) (layer Dwgs.User) (width 0.04826)) 61 | (fp_line (start 0.39878 -0.39878) (end 0.39878 0.39878) (layer Dwgs.User) (width 0.04826)) 62 | (fp_line (start 0.39878 0.39878) (end 0.29972 0.39878) (layer Dwgs.User) (width 0.04826)) 63 | (fp_line (start 0.29972 0.39878) (end 0.29972 -0.39878) (layer Dwgs.User) (width 0.04826)) 64 | (pad A smd rect (at 0 -0.7493) (size 0.79756 0.79756) (layers F.Cu F.Paste F.Mask)) 65 | (pad K smd rect (at 0 0.7493) (size 0.79756 0.79756) (layers F.Cu F.Paste F.Mask)) 66 | ) 67 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/10118192-0001LF(MICRO-USB-B-AMPHENOL-FCI).kicad_mod: -------------------------------------------------------------------------------- 1 | (module "10118192-0001LF(MICRO-USB-B-AMPHENOL-FCI)" (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference >NAME (at -1.20904 -4.05638) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value >VALUE (at 5.6896 -1.59766 90) (layer F.SilkS) 7 | (effects (font (size 1.016 1.016) (thickness 0.127))) 8 | ) 9 | (fp_line (start -3.74904 1.4478) (end 3.74904 1.4478) (layer F.SilkS) (width 0.127)) 10 | (fp_line (start -3.74904 1.4478) (end -3.74904 1.1176) (layer F.SilkS) (width 0.127)) 11 | (fp_line (start 3.74904 1.4478) (end 3.74904 1.1176) (layer F.SilkS) (width 0.127)) 12 | (fp_line (start 3.74904 -1.1176) (end 3.74904 -1.57988) (layer F.SilkS) (width 0.127)) 13 | (fp_line (start -3.74904 -1.1176) (end -3.74904 -1.57988) (layer F.SilkS) (width 0.127)) 14 | (fp_line (start -3.74904 1.4478) (end -3.74904 2.14884) (layer Dwgs.User) (width 0.127)) 15 | (fp_line (start -3.74904 2.14884) (end 3.74904 2.14884) (layer Dwgs.User) (width 0.127)) 16 | (fp_line (start 3.74904 2.14884) (end 3.74904 1.4478) (layer Dwgs.User) (width 0.127)) 17 | (fp_line (start -1.8796 -2.84988) (end -1.66878 -2.84988) (layer F.SilkS) (width 0.127)) 18 | (fp_line (start 1.66878 -2.84988) (end 1.8796 -2.84988) (layer F.SilkS) (width 0.127)) 19 | (fp_line (start -1.99898 -2.84988) (end -3.74904 -2.84988) (layer Dwgs.User) (width 0.127)) 20 | (fp_line (start -3.74904 -2.84988) (end -3.74904 -1.69926) (layer Dwgs.User) (width 0.127)) 21 | (fp_line (start 1.99898 -2.84988) (end 3.74904 -2.84988) (layer Dwgs.User) (width 0.127)) 22 | (fp_line (start 3.74904 -2.84988) (end 3.74904 -1.69926) (layer Dwgs.User) (width 0.127)) 23 | (fp_line (start 3.74904 -0.99822) (end 3.74904 0.99822) (layer Dwgs.User) (width 0.127)) 24 | (fp_line (start -3.74904 -0.99822) (end -3.74904 0.99822) (layer Dwgs.User) (width 0.127)) 25 | (fp_line (start -1.59766 1.84912) (end -1.59766 1.59766) (layer F.SilkS) (width 0.0381)) 26 | (fp_line (start -1.59766 1.59766) (end -1.4986 1.69926) (layer F.SilkS) (width 0.0381)) 27 | (fp_line (start -1.59766 1.59766) (end -1.69926 1.69926) (layer F.SilkS) (width 0.0381)) 28 | (fp_line (start -1.99898 1.84912) (end -1.99898 1.59766) (layer F.SilkS) (width 0.0381)) 29 | (fp_line (start -1.99898 1.59766) (end -1.89992 1.69926) (layer F.SilkS) (width 0.0381)) 30 | (fp_line (start -1.99898 1.59766) (end -2.09804 1.69926) (layer F.SilkS) (width 0.0381)) 31 | (fp_line (start -2.39776 1.84912) (end -2.39776 1.59766) (layer F.SilkS) (width 0.0381)) 32 | (fp_line (start -2.39776 1.59766) (end -2.2987 1.69926) (layer F.SilkS) (width 0.0381)) 33 | (fp_line (start -2.39776 1.59766) (end -2.49936 1.69926) (layer F.SilkS) (width 0.0381)) 34 | (fp_line (start -2.79908 1.84912) (end -2.79908 1.59766) (layer F.SilkS) (width 0.0381)) 35 | (fp_line (start -2.79908 1.59766) (end -2.69748 1.69926) (layer F.SilkS) (width 0.0381)) 36 | (fp_line (start -2.79908 1.59766) (end -2.89814 1.69926) (layer F.SilkS) (width 0.0381)) 37 | (fp_line (start -3.19786 1.84912) (end -3.19786 1.59766) (layer F.SilkS) (width 0.0381)) 38 | (fp_line (start -3.19786 1.59766) (end -3.0988 1.69926) (layer F.SilkS) (width 0.0381)) 39 | (fp_line (start -3.19786 1.59766) (end -3.29946 1.69926) (layer F.SilkS) (width 0.0381)) 40 | (fp_line (start 3.19786 1.84912) (end 3.19786 1.59766) (layer F.SilkS) (width 0.0381)) 41 | (fp_line (start 3.19786 1.59766) (end 3.29946 1.69926) (layer F.SilkS) (width 0.0381)) 42 | (fp_line (start 3.19786 1.59766) (end 3.0988 1.69926) (layer F.SilkS) (width 0.0381)) 43 | (fp_line (start 2.79908 1.84912) (end 2.79908 1.59766) (layer F.SilkS) (width 0.0381)) 44 | (fp_line (start 2.79908 1.59766) (end 2.89814 1.69926) (layer F.SilkS) (width 0.0381)) 45 | (fp_line (start 2.79908 1.59766) (end 2.69748 1.69926) (layer F.SilkS) (width 0.0381)) 46 | (fp_line (start 2.39776 1.84912) (end 2.39776 1.59766) (layer F.SilkS) (width 0.0381)) 47 | (fp_line (start 2.39776 1.59766) (end 2.49936 1.69926) (layer F.SilkS) (width 0.0381)) 48 | (fp_line (start 2.39776 1.59766) (end 2.2987 1.69926) (layer F.SilkS) (width 0.0381)) 49 | (fp_line (start 1.99898 1.84912) (end 1.99898 1.59766) (layer F.SilkS) (width 0.0381)) 50 | (fp_line (start 1.99898 1.59766) (end 2.09804 1.69926) (layer F.SilkS) (width 0.0381)) 51 | (fp_line (start 1.99898 1.59766) (end 1.89992 1.69926) (layer F.SilkS) (width 0.0381)) 52 | (fp_line (start 1.59766 1.84912) (end 1.59766 1.59766) (layer F.SilkS) (width 0.0381)) 53 | (fp_line (start 1.59766 1.59766) (end 1.69926 1.69926) (layer F.SilkS) (width 0.0381)) 54 | (fp_line (start 1.59766 1.59766) (end 1.4986 1.69926) (layer F.SilkS) (width 0.0381)) 55 | (fp_text user "Edge of PCB" (at 1.397 1.47066) (layer F.SilkS) 56 | (effects (font (size 0.254 0.254) (thickness 0.0254))) 57 | ) 58 | (pad CGND smd rect (at -3.79984 0) (size 1.79832 1.89992) (layers F.Cu F.Paste F.Mask)) 59 | (pad CGND smd rect (at -1.19888 0) (size 1.89992 1.89992) (layers F.Cu F.Paste F.Mask)) 60 | (pad CGND smd rect (at 1.19888 0) (size 1.89992 1.89992) (layers F.Cu F.Paste F.Mask)) 61 | (pad CGND smd rect (at 3.79984 0) (size 1.79832 1.89992) (layers F.Cu F.Paste F.Mask)) 62 | (pad CGND smd rect (at 3.0988 -2.54762) (size 2.09804 1.59766) (layers F.Cu F.Paste F.Mask)) 63 | (pad CGND smd rect (at -3.0988 -2.54762) (size 2.09804 1.59766) (layers F.Cu F.Paste F.Mask)) 64 | (pad D+ smd rect (at 0 -2.67462) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask)) 65 | (pad D- smd rect (at -0.6477 -2.67462) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask)) 66 | (pad GND smd rect (at 1.29794 -2.67462) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask)) 67 | (pad ID smd rect (at 0.6477 -2.67462) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask)) 68 | (pad VBUS smd rect (at -1.29794 -2.67462) (size 0.39878 1.34874) (layers F.Cu F.Paste F.Mask)) 69 | ) 70 | -------------------------------------------------------------------------------- /KiCAD/plots/PocketBeagle-F.Paste.gbr: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(2017-08-02 revision 9760937)-master* 2 | G04 #@! TF.CreationDate,2017-08-15T11:40:40-05:00* 3 | G04 #@! TF.ProjectId,PocketBeagle,506F636B6574426561676C652E6B6963,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Paste,Top* 6 | G04 #@! TF.FilePolarity,Positive* 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (2017-08-02 revision 9760937)-master) date Tue Aug 15 11:40:40 2017* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10R,0.797560X0.797560*% 15 | %ADD11R,1.198880X0.899160*% 16 | %ADD12R,1.399540X1.597660*% 17 | %ADD13R,2.199640X1.198880*% 18 | %ADD14R,1.597660X1.198880*% 19 | %ADD15R,1.597660X0.698500*% 20 | %ADD16R,0.497840X0.497840*% 21 | %ADD17R,0.497840X0.299720*% 22 | %ADD18R,0.299720X0.497840*% 23 | %ADD19R,0.487680X0.299720*% 24 | %ADD20R,0.518160X0.299720*% 25 | %ADD21R,2.397760X1.899920*% 26 | %ADD22R,1.348740X0.398780*% 27 | %ADD23R,1.597660X2.098040*% 28 | %ADD24R,1.899920X1.798320*% 29 | %ADD25R,1.899920X1.899920*% 30 | %ADD26R,0.899160X0.398780*% 31 | %ADD27C,0.497840*% 32 | %ADD28R,0.497840X0.599440*% 33 | %ADD29R,0.599440X0.497840*% 34 | %ADD30R,0.998220X1.099820*% 35 | G04 APERTURE END LIST* 36 | D10* 37 | X125433400Y-95071600D03* 38 | X123934800Y-95071600D03* 39 | X123668100Y-113346900D03* 40 | X123668100Y-111848300D03* 41 | X125954100Y-113346900D03* 42 | X125954100Y-111848300D03* 43 | X128240100Y-113346900D03* 44 | X128240100Y-111848300D03* 45 | X130526100Y-113346900D03* 46 | X130526100Y-111848300D03* 47 | D11* 48 | X131255080Y-109028900D03* 49 | X127257120Y-109028900D03* 50 | X131255080Y-107530300D03* 51 | X127257120Y-107530300D03* 52 | D12* 53 | X158962540Y-98240120D03* 54 | D13* 55 | X168563740Y-97338420D03* 56 | X168563740Y-112837500D03* 57 | D14* 58 | X159064140Y-112847660D03* 59 | D15* 60 | X158464700Y-111686880D03* 61 | X158464700Y-110587060D03* 62 | X158464700Y-109487240D03* 63 | X158464700Y-108387420D03* 64 | X158464700Y-107287600D03* 65 | X158464700Y-106187780D03* 66 | X158464700Y-105087960D03* 67 | X158464700Y-103988140D03* 68 | X158464700Y-102888320D03* 69 | D16* 70 | X155636540Y-96557500D03* 71 | D17* 72 | X155636540Y-97108680D03* 73 | X155636540Y-97606520D03* 74 | D16* 75 | X155636540Y-98157700D03* 76 | X154640860Y-98157700D03* 77 | D17* 78 | X154640860Y-97606520D03* 79 | X154640860Y-97108680D03* 80 | D16* 81 | X154640860Y-96557500D03* 82 | X124849200Y-116524440D03* 83 | D18* 84 | X124298020Y-116524440D03* 85 | X123800180Y-116524440D03* 86 | D16* 87 | X123249000Y-116524440D03* 88 | X123249000Y-115528760D03* 89 | D18* 90 | X123800180Y-115528760D03* 91 | X124298020Y-115528760D03* 92 | D16* 93 | X124849200Y-115528760D03* 94 | X155636540Y-105015700D03* 95 | D17* 96 | X155636540Y-105566880D03* 97 | X155636540Y-106064720D03* 98 | D16* 99 | X155636540Y-106615900D03* 100 | X154640860Y-106615900D03* 101 | D17* 102 | X154640860Y-106064720D03* 103 | X154640860Y-105566880D03* 104 | D16* 105 | X154640860Y-105015700D03* 106 | X155636540Y-102577300D03* 107 | D17* 108 | X155636540Y-103128480D03* 109 | X155636540Y-103626320D03* 110 | D16* 111 | X155636540Y-104177500D03* 112 | X154640860Y-104177500D03* 113 | D17* 114 | X154640860Y-103626320D03* 115 | X154640860Y-103128480D03* 116 | D16* 117 | X154640860Y-102577300D03* 118 | X155636540Y-100138900D03* 119 | D17* 120 | X155636540Y-100690080D03* 121 | X155636540Y-101187920D03* 122 | D16* 123 | X155636540Y-101739100D03* 124 | X154640860Y-101739100D03* 125 | D17* 126 | X154640860Y-101187920D03* 127 | X154640860Y-100690080D03* 128 | D16* 129 | X154640860Y-100138900D03* 130 | X160282200Y-95335760D03* 131 | D18* 132 | X160833380Y-95335760D03* 133 | X161331220Y-95335760D03* 134 | D16* 135 | X161882400Y-95335760D03* 136 | X161882400Y-96331440D03* 137 | D18* 138 | X161331220Y-96331440D03* 139 | X160833380Y-96331440D03* 140 | D16* 141 | X160282200Y-96331440D03* 142 | X164778000Y-96331440D03* 143 | D18* 144 | X164226820Y-96331440D03* 145 | X163728980Y-96331440D03* 146 | D16* 147 | X163177800Y-96331440D03* 148 | X163177800Y-95335760D03* 149 | D18* 150 | X163728980Y-95335760D03* 151 | X164226820Y-95335760D03* 152 | D16* 153 | X164778000Y-95335760D03* 154 | X154640860Y-109054300D03* 155 | D17* 156 | X154640860Y-108503120D03* 157 | X154640860Y-108005280D03* 158 | D16* 159 | X154640860Y-107454100D03* 160 | X155636540Y-107454100D03* 161 | D17* 162 | X155636540Y-108005280D03* 163 | X155636540Y-108503120D03* 164 | D16* 165 | X155636540Y-109054300D03* 166 | D19* 167 | X130660720Y-103443440D03* 168 | X130660720Y-102945600D03* 169 | X130660720Y-102447760D03* 170 | X131407480Y-102447760D03* 171 | X131407480Y-102945600D03* 172 | D20* 173 | X131412560Y-103443440D03* 174 | D21* 175 | X128621100Y-96679420D03* 176 | X128621100Y-100575780D03* 177 | D22* 178 | X125125720Y-103705660D03* 179 | X125125720Y-105651300D03* 180 | X125125720Y-106301540D03* 181 | X125125720Y-104355900D03* 182 | X125125720Y-105003600D03* 183 | D23* 184 | X124998720Y-101904800D03* 185 | X124998720Y-108102400D03* 186 | D24* 187 | X122451100Y-108803440D03* 188 | D25* 189 | X122451100Y-106202480D03* 190 | X122451100Y-103804720D03* 191 | D24* 192 | X122451100Y-101203760D03* 193 | D26* 194 | X125783920Y-97979900D03* 195 | X125783920Y-99275300D03* 196 | X123584280Y-99275300D03* 197 | X123584280Y-98627600D03* 198 | X123584280Y-97979900D03* 199 | D27* 200 | X133576640Y-95455140D03* 201 | X134846640Y-95455140D03* 202 | X136116640Y-95455140D03* 203 | X137386640Y-95455140D03* 204 | X138656640Y-95455140D03* 205 | X139926640Y-95455140D03* 206 | X141196640Y-95455140D03* 207 | X142466640Y-95455140D03* 208 | X143734100Y-95455140D03* 209 | X145004100Y-95455140D03* 210 | X146274100Y-95455140D03* 211 | X147544100Y-95455140D03* 212 | X148814100Y-95455140D03* 213 | X150084100Y-95455140D03* 214 | X151354100Y-95455140D03* 215 | X152624100Y-95455140D03* 216 | X133576640Y-96725140D03* 217 | X134846640Y-96725140D03* 218 | X136116640Y-96725140D03* 219 | X137386640Y-96725140D03* 220 | X138656640Y-96725140D03* 221 | X139926640Y-96725140D03* 222 | X141196640Y-96725140D03* 223 | X142466640Y-96725140D03* 224 | X143734100Y-96725140D03* 225 | X145004100Y-96725140D03* 226 | X146274100Y-96725140D03* 227 | X147544100Y-96725140D03* 228 | X148814100Y-96725140D03* 229 | X150084100Y-96725140D03* 230 | X151354100Y-96725140D03* 231 | X152624100Y-96725140D03* 232 | X133576640Y-97995140D03* 233 | X134846640Y-97995140D03* 234 | X136116640Y-97995140D03* 235 | X137386640Y-97995140D03* 236 | X138656640Y-97995140D03* 237 | X139926640Y-97995140D03* 238 | X141196640Y-97995140D03* 239 | X142466640Y-97995140D03* 240 | X143734100Y-97995140D03* 241 | X145004100Y-97995140D03* 242 | X146274100Y-97995140D03* 243 | X147544100Y-97995140D03* 244 | X148814100Y-97995140D03* 245 | X150084100Y-97995140D03* 246 | X151354100Y-97995140D03* 247 | X152624100Y-97995140D03* 248 | X133576640Y-99265140D03* 249 | X134846640Y-99265140D03* 250 | X136116640Y-99265140D03* 251 | X137386640Y-99265140D03* 252 | X138656640Y-99265140D03* 253 | X139926640Y-99265140D03* 254 | X141196640Y-99265140D03* 255 | X142466640Y-99265140D03* 256 | X143734100Y-99265140D03* 257 | X145004100Y-99265140D03* 258 | X146274100Y-99265140D03* 259 | X147544100Y-99265140D03* 260 | X148814100Y-99265140D03* 261 | X150084100Y-99265140D03* 262 | X151354100Y-99265140D03* 263 | X152624100Y-99265140D03* 264 | X133576640Y-100535140D03* 265 | X134846640Y-100535140D03* 266 | X136116640Y-100535140D03* 267 | X137386640Y-100535140D03* 268 | X138656640Y-100535140D03* 269 | X139926640Y-100535140D03* 270 | X141196640Y-100535140D03* 271 | X142466640Y-100535140D03* 272 | X143734100Y-100535140D03* 273 | X145004100Y-100535140D03* 274 | X146274100Y-100535140D03* 275 | X147544100Y-100535140D03* 276 | X148814100Y-100535140D03* 277 | X150084100Y-100535140D03* 278 | X151354100Y-100535140D03* 279 | X152624100Y-100535140D03* 280 | X133576640Y-101805140D03* 281 | X134846640Y-101805140D03* 282 | X136116640Y-101805140D03* 283 | X137386640Y-101805140D03* 284 | X138656640Y-101805140D03* 285 | X139926640Y-101805140D03* 286 | X141196640Y-101805140D03* 287 | X142466640Y-101805140D03* 288 | X143734100Y-101805140D03* 289 | X145004100Y-101805140D03* 290 | X146274100Y-101805140D03* 291 | X147544100Y-101805140D03* 292 | X148814100Y-101805140D03* 293 | X150084100Y-101805140D03* 294 | X151354100Y-101805140D03* 295 | X152624100Y-101805140D03* 296 | X133576640Y-103075140D03* 297 | X134846640Y-103075140D03* 298 | X136116640Y-103075140D03* 299 | X137386640Y-103075140D03* 300 | X138656640Y-103075140D03* 301 | X139926640Y-103075140D03* 302 | X141196640Y-103075140D03* 303 | X142466640Y-103075140D03* 304 | X143734100Y-103075140D03* 305 | X145004100Y-103075140D03* 306 | X146274100Y-103075140D03* 307 | X147544100Y-103075140D03* 308 | X148814100Y-103075140D03* 309 | X150084100Y-103075140D03* 310 | X151354100Y-103075140D03* 311 | X152624100Y-103075140D03* 312 | X133576640Y-104345140D03* 313 | X134846640Y-104345140D03* 314 | X136116640Y-104345140D03* 315 | X137386640Y-104345140D03* 316 | X138656640Y-104345140D03* 317 | X139926640Y-104345140D03* 318 | X141196640Y-104345140D03* 319 | X142466640Y-104345140D03* 320 | X143734100Y-104345140D03* 321 | X145004100Y-104345140D03* 322 | X146274100Y-104345140D03* 323 | X147544100Y-104345140D03* 324 | X148814100Y-104345140D03* 325 | X150084100Y-104345140D03* 326 | X151354100Y-104345140D03* 327 | X152624100Y-104345140D03* 328 | X133576640Y-105612600D03* 329 | X134846640Y-105612600D03* 330 | X136116640Y-105612600D03* 331 | X137386640Y-105612600D03* 332 | X138656640Y-105612600D03* 333 | X139926640Y-105612600D03* 334 | X141196640Y-105612600D03* 335 | X142466640Y-105612600D03* 336 | X143734100Y-105612600D03* 337 | X145004100Y-105612600D03* 338 | X146274100Y-105612600D03* 339 | X147544100Y-105612600D03* 340 | X148814100Y-105612600D03* 341 | X150084100Y-105612600D03* 342 | X151354100Y-105612600D03* 343 | X152624100Y-105612600D03* 344 | X133576640Y-106882600D03* 345 | X134846640Y-106882600D03* 346 | X136116640Y-106882600D03* 347 | X137386640Y-106882600D03* 348 | X138656640Y-106882600D03* 349 | X139926640Y-106882600D03* 350 | X141196640Y-106882600D03* 351 | X142466640Y-106882600D03* 352 | X143734100Y-106882600D03* 353 | X145004100Y-106882600D03* 354 | X146274100Y-106882600D03* 355 | X147544100Y-106882600D03* 356 | X148814100Y-106882600D03* 357 | X150084100Y-106882600D03* 358 | X151354100Y-106882600D03* 359 | X152624100Y-106882600D03* 360 | X133576640Y-108152600D03* 361 | X134846640Y-108152600D03* 362 | X136116640Y-108152600D03* 363 | X137386640Y-108152600D03* 364 | X138656640Y-108152600D03* 365 | X139926640Y-108152600D03* 366 | X141196640Y-108152600D03* 367 | X142466640Y-108152600D03* 368 | X143734100Y-108152600D03* 369 | X145004100Y-108152600D03* 370 | X146274100Y-108152600D03* 371 | X147544100Y-108152600D03* 372 | X148814100Y-108152600D03* 373 | X150084100Y-108152600D03* 374 | X151354100Y-108152600D03* 375 | X152624100Y-108152600D03* 376 | X133576640Y-109422600D03* 377 | X134846640Y-109422600D03* 378 | X136116640Y-109422600D03* 379 | X137386640Y-109422600D03* 380 | X138656640Y-109422600D03* 381 | X139926640Y-109422600D03* 382 | X141196640Y-109422600D03* 383 | X142466640Y-109422600D03* 384 | X143734100Y-109422600D03* 385 | X145004100Y-109422600D03* 386 | X146274100Y-109422600D03* 387 | X147544100Y-109422600D03* 388 | X148814100Y-109422600D03* 389 | X150084100Y-109422600D03* 390 | X151354100Y-109422600D03* 391 | X152624100Y-109422600D03* 392 | X133576640Y-110692600D03* 393 | X134846640Y-110692600D03* 394 | X136116640Y-110692600D03* 395 | X137386640Y-110692600D03* 396 | X138656640Y-110692600D03* 397 | X139926640Y-110692600D03* 398 | X141196640Y-110692600D03* 399 | X142466640Y-110692600D03* 400 | X143734100Y-110692600D03* 401 | X145004100Y-110692600D03* 402 | X146274100Y-110692600D03* 403 | X147544100Y-110692600D03* 404 | X148814100Y-110692600D03* 405 | X150084100Y-110692600D03* 406 | X151354100Y-110692600D03* 407 | X152624100Y-110692600D03* 408 | X133576640Y-111962600D03* 409 | X134846640Y-111962600D03* 410 | X136116640Y-111962600D03* 411 | X137386640Y-111962600D03* 412 | X138656640Y-111962600D03* 413 | X139926640Y-111962600D03* 414 | X141196640Y-111962600D03* 415 | X142466640Y-111962600D03* 416 | X143734100Y-111962600D03* 417 | X145004100Y-111962600D03* 418 | X146274100Y-111962600D03* 419 | X147544100Y-111962600D03* 420 | X148814100Y-111962600D03* 421 | X150084100Y-111962600D03* 422 | X151354100Y-111962600D03* 423 | X152624100Y-111962600D03* 424 | X133576640Y-113232600D03* 425 | X134846640Y-113232600D03* 426 | X136116640Y-113232600D03* 427 | X137386640Y-113232600D03* 428 | X138656640Y-113232600D03* 429 | X139926640Y-113232600D03* 430 | X141196640Y-113232600D03* 431 | X142466640Y-113232600D03* 432 | X143734100Y-113232600D03* 433 | X145004100Y-113232600D03* 434 | X146274100Y-113232600D03* 435 | X147544100Y-113232600D03* 436 | X148814100Y-113232600D03* 437 | X150084100Y-113232600D03* 438 | X151354100Y-113232600D03* 439 | X152624100Y-113232600D03* 440 | X133576640Y-114502600D03* 441 | X134846640Y-114502600D03* 442 | X136116640Y-114502600D03* 443 | X137386640Y-114502600D03* 444 | X138656640Y-114502600D03* 445 | X139926640Y-114502600D03* 446 | X141196640Y-114502600D03* 447 | X142466640Y-114502600D03* 448 | X143734100Y-114502600D03* 449 | X145004100Y-114502600D03* 450 | X146274100Y-114502600D03* 451 | X147544100Y-114502600D03* 452 | X148814100Y-114502600D03* 453 | X150084100Y-114502600D03* 454 | X151354100Y-114502600D03* 455 | X152624100Y-114502600D03* 456 | D28* 457 | X130917260Y-100278600D03* 458 | X131912940Y-100278600D03* 459 | D29* 460 | X156738900Y-104632160D03* 461 | X156738900Y-105627840D03* 462 | D30* 463 | X155052340Y-110235400D03* 464 | X156749060Y-110235400D03* 465 | D28* 466 | X128991940Y-105866600D03* 467 | X127996260Y-105866600D03* 468 | X130917260Y-96976600D03* 469 | X131912940Y-96976600D03* 470 | D29* 471 | X131415100Y-98129760D03* 472 | X131415100Y-99125440D03* 473 | D30* 474 | X128580460Y-102945600D03* 475 | X126883740Y-102945600D03* 476 | D29* 477 | X129764100Y-102447760D03* 478 | X129764100Y-103443440D03* 479 | D28* 480 | X125181940Y-93547600D03* 481 | X124186260Y-93547600D03* 482 | X124186260Y-96595600D03* 483 | X125181940Y-96595600D03* 484 | D30* 485 | X170901940Y-114197800D03* 486 | X172598660Y-114197800D03* 487 | D28* 488 | X168057140Y-114197800D03* 489 | X167061460Y-114197800D03* 490 | X161879860Y-113893000D03* 491 | X162875540Y-113893000D03* 492 | M02* 493 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TH-2X18-W_O-SILK.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TH-2X18-W_O-SILK (layer F.Cu) (tedit 200000) 2 | (attr virtual) 3 | (fp_text reference >NAME (at -24.638 -2.64668 90) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value "" (at 0 0) (layer F.SilkS) 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (fp_line (start -21.844 1.524) (end -21.336 1.524) (layer Dwgs.User) (width 0.06604)) 10 | (fp_line (start -21.336 1.524) (end -21.336 1.016) (layer Dwgs.User) (width 0.06604)) 11 | (fp_line (start -21.844 1.016) (end -21.336 1.016) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start -21.844 1.524) (end -21.844 1.016) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -21.844 -1.016) (end -21.336 -1.016) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -21.336 -1.016) (end -21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 15 | (fp_line (start -21.844 -1.524) (end -21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 16 | (fp_line (start -21.844 -1.016) (end -21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 17 | (fp_line (start -19.304 -1.016) (end -18.796 -1.016) (layer Dwgs.User) (width 0.06604)) 18 | (fp_line (start -18.796 -1.016) (end -18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 19 | (fp_line (start -19.304 -1.524) (end -18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 20 | (fp_line (start -19.304 -1.016) (end -19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 21 | (fp_line (start -19.304 1.524) (end -18.796 1.524) (layer Dwgs.User) (width 0.06604)) 22 | (fp_line (start -18.796 1.524) (end -18.796 1.016) (layer Dwgs.User) (width 0.06604)) 23 | (fp_line (start -19.304 1.016) (end -18.796 1.016) (layer Dwgs.User) (width 0.06604)) 24 | (fp_line (start -19.304 1.524) (end -19.304 1.016) (layer Dwgs.User) (width 0.06604)) 25 | (fp_line (start -16.764 -1.016) (end -16.256 -1.016) (layer Dwgs.User) (width 0.06604)) 26 | (fp_line (start -16.256 -1.016) (end -16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 27 | (fp_line (start -16.764 -1.524) (end -16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 28 | (fp_line (start -16.764 -1.016) (end -16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 29 | (fp_line (start -16.764 1.524) (end -16.256 1.524) (layer Dwgs.User) (width 0.06604)) 30 | (fp_line (start -16.256 1.524) (end -16.256 1.016) (layer Dwgs.User) (width 0.06604)) 31 | (fp_line (start -16.764 1.016) (end -16.256 1.016) (layer Dwgs.User) (width 0.06604)) 32 | (fp_line (start -16.764 1.524) (end -16.764 1.016) (layer Dwgs.User) (width 0.06604)) 33 | (fp_line (start -14.224 -1.016) (end -13.716 -1.016) (layer Dwgs.User) (width 0.06604)) 34 | (fp_line (start -13.716 -1.016) (end -13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 35 | (fp_line (start -14.224 -1.524) (end -13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 36 | (fp_line (start -14.224 -1.016) (end -14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 37 | (fp_line (start -11.684 -1.016) (end -11.176 -1.016) (layer Dwgs.User) (width 0.06604)) 38 | (fp_line (start -11.176 -1.016) (end -11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 39 | (fp_line (start -11.684 -1.524) (end -11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 40 | (fp_line (start -11.684 -1.016) (end -11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 41 | (fp_line (start -9.144 -1.016) (end -8.636 -1.016) (layer Dwgs.User) (width 0.06604)) 42 | (fp_line (start -8.636 -1.016) (end -8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 43 | (fp_line (start -9.144 -1.524) (end -8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 44 | (fp_line (start -9.144 -1.016) (end -9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 45 | (fp_line (start -14.224 1.524) (end -13.716 1.524) (layer Dwgs.User) (width 0.06604)) 46 | (fp_line (start -13.716 1.524) (end -13.716 1.016) (layer Dwgs.User) (width 0.06604)) 47 | (fp_line (start -14.224 1.016) (end -13.716 1.016) (layer Dwgs.User) (width 0.06604)) 48 | (fp_line (start -14.224 1.524) (end -14.224 1.016) (layer Dwgs.User) (width 0.06604)) 49 | (fp_line (start -11.684 1.524) (end -11.176 1.524) (layer Dwgs.User) (width 0.06604)) 50 | (fp_line (start -11.176 1.524) (end -11.176 1.016) (layer Dwgs.User) (width 0.06604)) 51 | (fp_line (start -11.684 1.016) (end -11.176 1.016) (layer Dwgs.User) (width 0.06604)) 52 | (fp_line (start -11.684 1.524) (end -11.684 1.016) (layer Dwgs.User) (width 0.06604)) 53 | (fp_line (start -9.144 1.524) (end -8.636 1.524) (layer Dwgs.User) (width 0.06604)) 54 | (fp_line (start -8.636 1.524) (end -8.636 1.016) (layer Dwgs.User) (width 0.06604)) 55 | (fp_line (start -9.144 1.016) (end -8.636 1.016) (layer Dwgs.User) (width 0.06604)) 56 | (fp_line (start -9.144 1.524) (end -9.144 1.016) (layer Dwgs.User) (width 0.06604)) 57 | (fp_line (start -6.604 -1.016) (end -6.096 -1.016) (layer Dwgs.User) (width 0.06604)) 58 | (fp_line (start -6.096 -1.016) (end -6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 59 | (fp_line (start -6.604 -1.524) (end -6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 60 | (fp_line (start -6.604 -1.016) (end -6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 61 | (fp_line (start -6.604 1.524) (end -6.096 1.524) (layer Dwgs.User) (width 0.06604)) 62 | (fp_line (start -6.096 1.524) (end -6.096 1.016) (layer Dwgs.User) (width 0.06604)) 63 | (fp_line (start -6.604 1.016) (end -6.096 1.016) (layer Dwgs.User) (width 0.06604)) 64 | (fp_line (start -6.604 1.524) (end -6.604 1.016) (layer Dwgs.User) (width 0.06604)) 65 | (fp_line (start -4.064 -1.016) (end -3.556 -1.016) (layer Dwgs.User) (width 0.06604)) 66 | (fp_line (start -3.556 -1.016) (end -3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 67 | (fp_line (start -4.064 -1.524) (end -3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 68 | (fp_line (start -4.064 -1.016) (end -4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 69 | (fp_line (start -4.064 1.524) (end -3.556 1.524) (layer Dwgs.User) (width 0.06604)) 70 | (fp_line (start -3.556 1.524) (end -3.556 1.016) (layer Dwgs.User) (width 0.06604)) 71 | (fp_line (start -4.064 1.016) (end -3.556 1.016) (layer Dwgs.User) (width 0.06604)) 72 | (fp_line (start -4.064 1.524) (end -4.064 1.016) (layer Dwgs.User) (width 0.06604)) 73 | (fp_line (start -1.524 -1.016) (end -1.016 -1.016) (layer Dwgs.User) (width 0.06604)) 74 | (fp_line (start -1.016 -1.016) (end -1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 75 | (fp_line (start -1.524 -1.524) (end -1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 76 | (fp_line (start -1.524 -1.016) (end -1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 77 | (fp_line (start -1.524 1.524) (end -1.016 1.524) (layer Dwgs.User) (width 0.06604)) 78 | (fp_line (start -1.016 1.524) (end -1.016 1.016) (layer Dwgs.User) (width 0.06604)) 79 | (fp_line (start -1.524 1.016) (end -1.016 1.016) (layer Dwgs.User) (width 0.06604)) 80 | (fp_line (start -1.524 1.524) (end -1.524 1.016) (layer Dwgs.User) (width 0.06604)) 81 | (fp_line (start 1.016 -1.016) (end 1.524 -1.016) (layer Dwgs.User) (width 0.06604)) 82 | (fp_line (start 1.524 -1.016) (end 1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 83 | (fp_line (start 1.016 -1.524) (end 1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 84 | (fp_line (start 1.016 -1.016) (end 1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 85 | (fp_line (start 1.016 1.524) (end 1.524 1.524) (layer Dwgs.User) (width 0.06604)) 86 | (fp_line (start 1.524 1.524) (end 1.524 1.016) (layer Dwgs.User) (width 0.06604)) 87 | (fp_line (start 1.016 1.016) (end 1.524 1.016) (layer Dwgs.User) (width 0.06604)) 88 | (fp_line (start 1.016 1.524) (end 1.016 1.016) (layer Dwgs.User) (width 0.06604)) 89 | (fp_line (start 3.556 -1.016) (end 4.064 -1.016) (layer Dwgs.User) (width 0.06604)) 90 | (fp_line (start 4.064 -1.016) (end 4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 91 | (fp_line (start 3.556 -1.524) (end 4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 92 | (fp_line (start 3.556 -1.016) (end 3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 93 | (fp_line (start 3.556 1.524) (end 4.064 1.524) (layer Dwgs.User) (width 0.06604)) 94 | (fp_line (start 4.064 1.524) (end 4.064 1.016) (layer Dwgs.User) (width 0.06604)) 95 | (fp_line (start 3.556 1.016) (end 4.064 1.016) (layer Dwgs.User) (width 0.06604)) 96 | (fp_line (start 3.556 1.524) (end 3.556 1.016) (layer Dwgs.User) (width 0.06604)) 97 | (fp_line (start 6.096 -1.016) (end 6.604 -1.016) (layer Dwgs.User) (width 0.06604)) 98 | (fp_line (start 6.604 -1.016) (end 6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 99 | (fp_line (start 6.096 -1.524) (end 6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 100 | (fp_line (start 6.096 -1.016) (end 6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 101 | (fp_line (start 6.096 1.524) (end 6.604 1.524) (layer Dwgs.User) (width 0.06604)) 102 | (fp_line (start 6.604 1.524) (end 6.604 1.016) (layer Dwgs.User) (width 0.06604)) 103 | (fp_line (start 6.096 1.016) (end 6.604 1.016) (layer Dwgs.User) (width 0.06604)) 104 | (fp_line (start 6.096 1.524) (end 6.096 1.016) (layer Dwgs.User) (width 0.06604)) 105 | (fp_line (start 8.636 -1.016) (end 9.144 -1.016) (layer Dwgs.User) (width 0.06604)) 106 | (fp_line (start 9.144 -1.016) (end 9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 107 | (fp_line (start 8.636 -1.524) (end 9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 108 | (fp_line (start 8.636 -1.016) (end 8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 109 | (fp_line (start 8.636 1.524) (end 9.144 1.524) (layer Dwgs.User) (width 0.06604)) 110 | (fp_line (start 9.144 1.524) (end 9.144 1.016) (layer Dwgs.User) (width 0.06604)) 111 | (fp_line (start 8.636 1.016) (end 9.144 1.016) (layer Dwgs.User) (width 0.06604)) 112 | (fp_line (start 8.636 1.524) (end 8.636 1.016) (layer Dwgs.User) (width 0.06604)) 113 | (fp_line (start 11.176 -1.016) (end 11.684 -1.016) (layer Dwgs.User) (width 0.06604)) 114 | (fp_line (start 11.684 -1.016) (end 11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 115 | (fp_line (start 11.176 -1.524) (end 11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 116 | (fp_line (start 11.176 -1.016) (end 11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 117 | (fp_line (start 11.176 1.524) (end 11.684 1.524) (layer Dwgs.User) (width 0.06604)) 118 | (fp_line (start 11.684 1.524) (end 11.684 1.016) (layer Dwgs.User) (width 0.06604)) 119 | (fp_line (start 11.176 1.016) (end 11.684 1.016) (layer Dwgs.User) (width 0.06604)) 120 | (fp_line (start 11.176 1.524) (end 11.176 1.016) (layer Dwgs.User) (width 0.06604)) 121 | (fp_line (start 13.716 -1.016) (end 14.224 -1.016) (layer Dwgs.User) (width 0.06604)) 122 | (fp_line (start 14.224 -1.016) (end 14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 123 | (fp_line (start 13.716 -1.524) (end 14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 124 | (fp_line (start 13.716 -1.016) (end 13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 125 | (fp_line (start 13.716 1.524) (end 14.224 1.524) (layer Dwgs.User) (width 0.06604)) 126 | (fp_line (start 14.224 1.524) (end 14.224 1.016) (layer Dwgs.User) (width 0.06604)) 127 | (fp_line (start 13.716 1.016) (end 14.224 1.016) (layer Dwgs.User) (width 0.06604)) 128 | (fp_line (start 13.716 1.524) (end 13.716 1.016) (layer Dwgs.User) (width 0.06604)) 129 | (fp_line (start 16.256 -1.016) (end 16.764 -1.016) (layer Dwgs.User) (width 0.06604)) 130 | (fp_line (start 16.764 -1.016) (end 16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 131 | (fp_line (start 16.256 -1.524) (end 16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 132 | (fp_line (start 16.256 -1.016) (end 16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 133 | (fp_line (start 16.256 1.524) (end 16.764 1.524) (layer Dwgs.User) (width 0.06604)) 134 | (fp_line (start 16.764 1.524) (end 16.764 1.016) (layer Dwgs.User) (width 0.06604)) 135 | (fp_line (start 16.256 1.016) (end 16.764 1.016) (layer Dwgs.User) (width 0.06604)) 136 | (fp_line (start 16.256 1.524) (end 16.256 1.016) (layer Dwgs.User) (width 0.06604)) 137 | (fp_line (start 18.796 -1.016) (end 19.304 -1.016) (layer Dwgs.User) (width 0.06604)) 138 | (fp_line (start 19.304 -1.016) (end 19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 139 | (fp_line (start 18.796 -1.524) (end 19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 140 | (fp_line (start 18.796 -1.016) (end 18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 141 | (fp_line (start 18.796 1.524) (end 19.304 1.524) (layer Dwgs.User) (width 0.06604)) 142 | (fp_line (start 19.304 1.524) (end 19.304 1.016) (layer Dwgs.User) (width 0.06604)) 143 | (fp_line (start 18.796 1.016) (end 19.304 1.016) (layer Dwgs.User) (width 0.06604)) 144 | (fp_line (start 18.796 1.524) (end 18.796 1.016) (layer Dwgs.User) (width 0.06604)) 145 | (fp_line (start 21.336 -1.016) (end 21.844 -1.016) (layer Dwgs.User) (width 0.06604)) 146 | (fp_line (start 21.844 -1.016) (end 21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 147 | (fp_line (start 21.336 -1.524) (end 21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 148 | (fp_line (start 21.336 -1.016) (end 21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 149 | (fp_line (start 21.336 1.524) (end 21.844 1.524) (layer Dwgs.User) (width 0.06604)) 150 | (fp_line (start 21.844 1.524) (end 21.844 1.016) (layer Dwgs.User) (width 0.06604)) 151 | (fp_line (start 21.336 1.016) (end 21.844 1.016) (layer Dwgs.User) (width 0.06604)) 152 | (fp_line (start 21.336 1.524) (end 21.336 1.016) (layer Dwgs.User) (width 0.06604)) 153 | (pad 1 thru_hole rect (at -21.59 1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 154 | (pad 2 thru_hole circle (at -21.59 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 155 | (pad 3 thru_hole circle (at -19.05 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 156 | (pad 4 thru_hole circle (at -19.05 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 157 | (pad 5 thru_hole circle (at -16.51 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 158 | (pad 6 thru_hole circle (at -16.51 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 159 | (pad 7 thru_hole circle (at -13.97 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 160 | (pad 8 thru_hole circle (at -13.97 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 161 | (pad 9 thru_hole circle (at -11.43 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 162 | (pad 10 thru_hole circle (at -11.43 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 163 | (pad 11 thru_hole circle (at -8.89 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 164 | (pad 12 thru_hole circle (at -8.89 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 165 | (pad 13 thru_hole circle (at -6.35 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 166 | (pad 14 thru_hole circle (at -6.35 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 167 | (pad 15 thru_hole circle (at -3.81 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 168 | (pad 16 thru_hole circle (at -3.81 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 169 | (pad 17 thru_hole circle (at -1.27 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 170 | (pad 18 thru_hole circle (at -1.27 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 171 | (pad 19 thru_hole circle (at 1.27 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 172 | (pad 20 thru_hole circle (at 1.27 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 173 | (pad 21 thru_hole circle (at 3.81 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 174 | (pad 22 thru_hole circle (at 3.81 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 175 | (pad 23 thru_hole circle (at 6.35 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 176 | (pad 24 thru_hole circle (at 6.35 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 177 | (pad 25 thru_hole circle (at 8.89 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 178 | (pad 26 thru_hole circle (at 8.89 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 179 | (pad 27 thru_hole circle (at 11.43 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 180 | (pad 28 thru_hole circle (at 11.43 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 181 | (pad 29 thru_hole circle (at 13.97 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 182 | (pad 30 thru_hole circle (at 13.97 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 183 | (pad 31 thru_hole circle (at 16.51 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 184 | (pad 32 thru_hole circle (at 16.51 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 185 | (pad 33 thru_hole circle (at 19.05 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 186 | (pad 34 thru_hole circle (at 19.05 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 187 | (pad 35 thru_hole circle (at 21.59 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 188 | (pad 36 thru_hole circle (at 21.59 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 189 | ) 190 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TH-2X18-(35MIL-DIA)-W_O-SILK.kicad_mod: -------------------------------------------------------------------------------- 1 | (module "TH-2X18-(35MIL-DIA)-W_O-SILK" (layer F.Cu) (tedit 59924F19) 2 | (attr virtual) 3 | (fp_text reference >NAME (at -24.638 -2.64668 90) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value Val** (at 0 0) (layer F.SilkS) 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (fp_line (start -21.844 1.524) (end -21.336 1.524) (layer Dwgs.User) (width 0.06604)) 10 | (fp_line (start -21.336 1.524) (end -21.336 1.016) (layer Dwgs.User) (width 0.06604)) 11 | (fp_line (start -21.844 1.016) (end -21.336 1.016) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start -21.844 1.524) (end -21.844 1.016) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -21.844 -1.016) (end -21.336 -1.016) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -21.336 -1.016) (end -21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 15 | (fp_line (start -21.844 -1.524) (end -21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 16 | (fp_line (start -21.844 -1.016) (end -21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 17 | (fp_line (start -19.304 -1.016) (end -18.796 -1.016) (layer Dwgs.User) (width 0.06604)) 18 | (fp_line (start -18.796 -1.016) (end -18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 19 | (fp_line (start -19.304 -1.524) (end -18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 20 | (fp_line (start -19.304 -1.016) (end -19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 21 | (fp_line (start -19.304 1.524) (end -18.796 1.524) (layer Dwgs.User) (width 0.06604)) 22 | (fp_line (start -18.796 1.524) (end -18.796 1.016) (layer Dwgs.User) (width 0.06604)) 23 | (fp_line (start -19.304 1.016) (end -18.796 1.016) (layer Dwgs.User) (width 0.06604)) 24 | (fp_line (start -19.304 1.524) (end -19.304 1.016) (layer Dwgs.User) (width 0.06604)) 25 | (fp_line (start -16.764 -1.016) (end -16.256 -1.016) (layer Dwgs.User) (width 0.06604)) 26 | (fp_line (start -16.256 -1.016) (end -16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 27 | (fp_line (start -16.764 -1.524) (end -16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 28 | (fp_line (start -16.764 -1.016) (end -16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 29 | (fp_line (start -16.764 1.524) (end -16.256 1.524) (layer Dwgs.User) (width 0.06604)) 30 | (fp_line (start -16.256 1.524) (end -16.256 1.016) (layer Dwgs.User) (width 0.06604)) 31 | (fp_line (start -16.764 1.016) (end -16.256 1.016) (layer Dwgs.User) (width 0.06604)) 32 | (fp_line (start -16.764 1.524) (end -16.764 1.016) (layer Dwgs.User) (width 0.06604)) 33 | (fp_line (start -14.224 -1.016) (end -13.716 -1.016) (layer Dwgs.User) (width 0.06604)) 34 | (fp_line (start -13.716 -1.016) (end -13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 35 | (fp_line (start -14.224 -1.524) (end -13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 36 | (fp_line (start -14.224 -1.016) (end -14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 37 | (fp_line (start -11.684 -1.016) (end -11.176 -1.016) (layer Dwgs.User) (width 0.06604)) 38 | (fp_line (start -11.176 -1.016) (end -11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 39 | (fp_line (start -11.684 -1.524) (end -11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 40 | (fp_line (start -11.684 -1.016) (end -11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 41 | (fp_line (start -9.144 -1.016) (end -8.636 -1.016) (layer Dwgs.User) (width 0.06604)) 42 | (fp_line (start -8.636 -1.016) (end -8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 43 | (fp_line (start -9.144 -1.524) (end -8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 44 | (fp_line (start -9.144 -1.016) (end -9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 45 | (fp_line (start -14.224 1.524) (end -13.716 1.524) (layer Dwgs.User) (width 0.06604)) 46 | (fp_line (start -13.716 1.524) (end -13.716 1.016) (layer Dwgs.User) (width 0.06604)) 47 | (fp_line (start -14.224 1.016) (end -13.716 1.016) (layer Dwgs.User) (width 0.06604)) 48 | (fp_line (start -14.224 1.524) (end -14.224 1.016) (layer Dwgs.User) (width 0.06604)) 49 | (fp_line (start -11.684 1.524) (end -11.176 1.524) (layer Dwgs.User) (width 0.06604)) 50 | (fp_line (start -11.176 1.524) (end -11.176 1.016) (layer Dwgs.User) (width 0.06604)) 51 | (fp_line (start -11.684 1.016) (end -11.176 1.016) (layer Dwgs.User) (width 0.06604)) 52 | (fp_line (start -11.684 1.524) (end -11.684 1.016) (layer Dwgs.User) (width 0.06604)) 53 | (fp_line (start -9.144 1.524) (end -8.636 1.524) (layer Dwgs.User) (width 0.06604)) 54 | (fp_line (start -8.636 1.524) (end -8.636 1.016) (layer Dwgs.User) (width 0.06604)) 55 | (fp_line (start -9.144 1.016) (end -8.636 1.016) (layer Dwgs.User) (width 0.06604)) 56 | (fp_line (start -9.144 1.524) (end -9.144 1.016) (layer Dwgs.User) (width 0.06604)) 57 | (fp_line (start -6.604 -1.016) (end -6.096 -1.016) (layer Dwgs.User) (width 0.06604)) 58 | (fp_line (start -6.096 -1.016) (end -6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 59 | (fp_line (start -6.604 -1.524) (end -6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 60 | (fp_line (start -6.604 -1.016) (end -6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 61 | (fp_line (start -6.604 1.524) (end -6.096 1.524) (layer Dwgs.User) (width 0.06604)) 62 | (fp_line (start -6.096 1.524) (end -6.096 1.016) (layer Dwgs.User) (width 0.06604)) 63 | (fp_line (start -6.604 1.016) (end -6.096 1.016) (layer Dwgs.User) (width 0.06604)) 64 | (fp_line (start -6.604 1.524) (end -6.604 1.016) (layer Dwgs.User) (width 0.06604)) 65 | (fp_line (start -4.064 -1.016) (end -3.556 -1.016) (layer Dwgs.User) (width 0.06604)) 66 | (fp_line (start -3.556 -1.016) (end -3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 67 | (fp_line (start -4.064 -1.524) (end -3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 68 | (fp_line (start -4.064 -1.016) (end -4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 69 | (fp_line (start -4.064 1.524) (end -3.556 1.524) (layer Dwgs.User) (width 0.06604)) 70 | (fp_line (start -3.556 1.524) (end -3.556 1.016) (layer Dwgs.User) (width 0.06604)) 71 | (fp_line (start -4.064 1.016) (end -3.556 1.016) (layer Dwgs.User) (width 0.06604)) 72 | (fp_line (start -4.064 1.524) (end -4.064 1.016) (layer Dwgs.User) (width 0.06604)) 73 | (fp_line (start -1.524 -1.016) (end -1.016 -1.016) (layer Dwgs.User) (width 0.06604)) 74 | (fp_line (start -1.016 -1.016) (end -1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 75 | (fp_line (start -1.524 -1.524) (end -1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 76 | (fp_line (start -1.524 -1.016) (end -1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 77 | (fp_line (start -1.524 1.524) (end -1.016 1.524) (layer Dwgs.User) (width 0.06604)) 78 | (fp_line (start -1.016 1.524) (end -1.016 1.016) (layer Dwgs.User) (width 0.06604)) 79 | (fp_line (start -1.524 1.016) (end -1.016 1.016) (layer Dwgs.User) (width 0.06604)) 80 | (fp_line (start -1.524 1.524) (end -1.524 1.016) (layer Dwgs.User) (width 0.06604)) 81 | (fp_line (start 1.016 -1.016) (end 1.524 -1.016) (layer Dwgs.User) (width 0.06604)) 82 | (fp_line (start 1.524 -1.016) (end 1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 83 | (fp_line (start 1.016 -1.524) (end 1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 84 | (fp_line (start 1.016 -1.016) (end 1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 85 | (fp_line (start 1.016 1.524) (end 1.524 1.524) (layer Dwgs.User) (width 0.06604)) 86 | (fp_line (start 1.524 1.524) (end 1.524 1.016) (layer Dwgs.User) (width 0.06604)) 87 | (fp_line (start 1.016 1.016) (end 1.524 1.016) (layer Dwgs.User) (width 0.06604)) 88 | (fp_line (start 1.016 1.524) (end 1.016 1.016) (layer Dwgs.User) (width 0.06604)) 89 | (fp_line (start 3.556 -1.016) (end 4.064 -1.016) (layer Dwgs.User) (width 0.06604)) 90 | (fp_line (start 4.064 -1.016) (end 4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 91 | (fp_line (start 3.556 -1.524) (end 4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 92 | (fp_line (start 3.556 -1.016) (end 3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 93 | (fp_line (start 3.556 1.524) (end 4.064 1.524) (layer Dwgs.User) (width 0.06604)) 94 | (fp_line (start 4.064 1.524) (end 4.064 1.016) (layer Dwgs.User) (width 0.06604)) 95 | (fp_line (start 3.556 1.016) (end 4.064 1.016) (layer Dwgs.User) (width 0.06604)) 96 | (fp_line (start 3.556 1.524) (end 3.556 1.016) (layer Dwgs.User) (width 0.06604)) 97 | (fp_line (start 6.096 -1.016) (end 6.604 -1.016) (layer Dwgs.User) (width 0.06604)) 98 | (fp_line (start 6.604 -1.016) (end 6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 99 | (fp_line (start 6.096 -1.524) (end 6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 100 | (fp_line (start 6.096 -1.016) (end 6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 101 | (fp_line (start 6.096 1.524) (end 6.604 1.524) (layer Dwgs.User) (width 0.06604)) 102 | (fp_line (start 6.604 1.524) (end 6.604 1.016) (layer Dwgs.User) (width 0.06604)) 103 | (fp_line (start 6.096 1.016) (end 6.604 1.016) (layer Dwgs.User) (width 0.06604)) 104 | (fp_line (start 6.096 1.524) (end 6.096 1.016) (layer Dwgs.User) (width 0.06604)) 105 | (fp_line (start 8.636 -1.016) (end 9.144 -1.016) (layer Dwgs.User) (width 0.06604)) 106 | (fp_line (start 9.144 -1.016) (end 9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 107 | (fp_line (start 8.636 -1.524) (end 9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 108 | (fp_line (start 8.636 -1.016) (end 8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 109 | (fp_line (start 8.636 1.524) (end 9.144 1.524) (layer Dwgs.User) (width 0.06604)) 110 | (fp_line (start 9.144 1.524) (end 9.144 1.016) (layer Dwgs.User) (width 0.06604)) 111 | (fp_line (start 8.636 1.016) (end 9.144 1.016) (layer Dwgs.User) (width 0.06604)) 112 | (fp_line (start 8.636 1.524) (end 8.636 1.016) (layer Dwgs.User) (width 0.06604)) 113 | (fp_line (start 11.176 -1.016) (end 11.684 -1.016) (layer Dwgs.User) (width 0.06604)) 114 | (fp_line (start 11.684 -1.016) (end 11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 115 | (fp_line (start 11.176 -1.524) (end 11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 116 | (fp_line (start 11.176 -1.016) (end 11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 117 | (fp_line (start 11.176 1.524) (end 11.684 1.524) (layer Dwgs.User) (width 0.06604)) 118 | (fp_line (start 11.684 1.524) (end 11.684 1.016) (layer Dwgs.User) (width 0.06604)) 119 | (fp_line (start 11.176 1.016) (end 11.684 1.016) (layer Dwgs.User) (width 0.06604)) 120 | (fp_line (start 11.176 1.524) (end 11.176 1.016) (layer Dwgs.User) (width 0.06604)) 121 | (fp_line (start 13.716 -1.016) (end 14.224 -1.016) (layer Dwgs.User) (width 0.06604)) 122 | (fp_line (start 14.224 -1.016) (end 14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 123 | (fp_line (start 13.716 -1.524) (end 14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 124 | (fp_line (start 13.716 -1.016) (end 13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 125 | (fp_line (start 13.716 1.524) (end 14.224 1.524) (layer Dwgs.User) (width 0.06604)) 126 | (fp_line (start 14.224 1.524) (end 14.224 1.016) (layer Dwgs.User) (width 0.06604)) 127 | (fp_line (start 13.716 1.016) (end 14.224 1.016) (layer Dwgs.User) (width 0.06604)) 128 | (fp_line (start 13.716 1.524) (end 13.716 1.016) (layer Dwgs.User) (width 0.06604)) 129 | (fp_line (start 16.256 -1.016) (end 16.764 -1.016) (layer Dwgs.User) (width 0.06604)) 130 | (fp_line (start 16.764 -1.016) (end 16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 131 | (fp_line (start 16.256 -1.524) (end 16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 132 | (fp_line (start 16.256 -1.016) (end 16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 133 | (fp_line (start 16.256 1.524) (end 16.764 1.524) (layer Dwgs.User) (width 0.06604)) 134 | (fp_line (start 16.764 1.524) (end 16.764 1.016) (layer Dwgs.User) (width 0.06604)) 135 | (fp_line (start 16.256 1.016) (end 16.764 1.016) (layer Dwgs.User) (width 0.06604)) 136 | (fp_line (start 16.256 1.524) (end 16.256 1.016) (layer Dwgs.User) (width 0.06604)) 137 | (fp_line (start 18.796 -1.016) (end 19.304 -1.016) (layer Dwgs.User) (width 0.06604)) 138 | (fp_line (start 19.304 -1.016) (end 19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 139 | (fp_line (start 18.796 -1.524) (end 19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 140 | (fp_line (start 18.796 -1.016) (end 18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 141 | (fp_line (start 18.796 1.524) (end 19.304 1.524) (layer Dwgs.User) (width 0.06604)) 142 | (fp_line (start 19.304 1.524) (end 19.304 1.016) (layer Dwgs.User) (width 0.06604)) 143 | (fp_line (start 18.796 1.016) (end 19.304 1.016) (layer Dwgs.User) (width 0.06604)) 144 | (fp_line (start 18.796 1.524) (end 18.796 1.016) (layer Dwgs.User) (width 0.06604)) 145 | (fp_line (start 21.336 -1.016) (end 21.844 -1.016) (layer Dwgs.User) (width 0.06604)) 146 | (fp_line (start 21.844 -1.016) (end 21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 147 | (fp_line (start 21.336 -1.524) (end 21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 148 | (fp_line (start 21.336 -1.016) (end 21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 149 | (fp_line (start 21.336 1.524) (end 21.844 1.524) (layer Dwgs.User) (width 0.06604)) 150 | (fp_line (start 21.844 1.524) (end 21.844 1.016) (layer Dwgs.User) (width 0.06604)) 151 | (fp_line (start 21.336 1.016) (end 21.844 1.016) (layer Dwgs.User) (width 0.06604)) 152 | (fp_line (start 21.336 1.524) (end 21.336 1.016) (layer Dwgs.User) (width 0.06604)) 153 | (pad 1 thru_hole rect (at -21.59 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 154 | (pad 2 thru_hole circle (at -21.59 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 155 | (pad 3 thru_hole circle (at -19.05 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 156 | (pad 4 thru_hole circle (at -19.05 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 157 | (pad 5 thru_hole circle (at -16.51 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 158 | (pad 6 thru_hole circle (at -16.51 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 159 | (pad 7 thru_hole circle (at -13.97 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 160 | (pad 8 thru_hole circle (at -13.97 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 161 | (pad 9 thru_hole circle (at -11.43 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 162 | (pad 10 thru_hole circle (at -11.43 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 163 | (pad 11 thru_hole circle (at -8.89 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 164 | (pad 12 thru_hole circle (at -8.89 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 165 | (pad 13 thru_hole circle (at -6.35 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 166 | (pad 14 thru_hole circle (at -6.35 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 167 | (pad 15 thru_hole circle (at -3.81 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 168 | (pad 16 thru_hole circle (at -3.81 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 169 | (pad 17 thru_hole circle (at -1.27 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 170 | (pad 18 thru_hole circle (at -1.27 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 171 | (pad 19 thru_hole circle (at 1.27 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 172 | (pad 20 thru_hole circle (at 1.27 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 173 | (pad 21 thru_hole circle (at 3.81 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 174 | (pad 22 thru_hole circle (at 3.81 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 175 | (pad 23 thru_hole circle (at 6.35 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 176 | (pad 24 thru_hole circle (at 6.35 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 177 | (pad 25 thru_hole circle (at 8.89 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 178 | (pad 26 thru_hole circle (at 8.89 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 179 | (pad 27 thru_hole circle (at 11.43 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 180 | (pad 28 thru_hole circle (at 11.43 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 181 | (pad 29 thru_hole circle (at 13.97 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 182 | (pad 30 thru_hole circle (at 13.97 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 183 | (pad 31 thru_hole circle (at 16.51 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 184 | (pad 32 thru_hole circle (at 16.51 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 185 | (pad 33 thru_hole circle (at 19.05 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 186 | (pad 34 thru_hole circle (at 19.05 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 187 | (pad 35 thru_hole circle (at 21.59 1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 188 | (pad 36 thru_hole circle (at 21.59 -1.27) (size 1.524 1.524) (drill 0.889) (layers *.Cu *.Mask F.SilkS)) 189 | ) 190 | -------------------------------------------------------------------------------- /Fritzing/pcb/PocketBeagle_pcb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | PocketBeagle_pcb.svg 7 | 8 | Fritzing footprint generated by brd2svg 9 | 10 | 11 | 12 | 13 | element:P1 14 | 15 | package:TH-2X18-(35MIL-DIA)-W/O-SILK 16 | 17 | 18 | 19 | element:P2 20 | 21 | package:TH-2X18-(35MIL-DIA)-W/O-SILK 22 | 23 | 24 | 25 | element:U1 26 | 27 | package:OSD335X-BGA-256 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | element:X2 60 | 61 | package:microsd-simple 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | pocketBeagle 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC-BY-4.0 2 | 3 | Copyright (c) 2017 Jason Kridner, Texas Instruments 4 | Copyright (c) 2017 Aron Phillips, GHI Electronics 5 | Copyright (c) 2017 Michael Welling, QWERTY Embedded 6 | 7 | Attribution 4.0 International 8 | 9 | ======================================================================= 10 | 11 | Creative Commons Corporation ("Creative Commons") is not a law firm and 12 | does not provide legal services or legal advice. Distribution of 13 | Creative Commons public licenses does not create a lawyer-client or 14 | other relationship. Creative Commons makes its licenses and related 15 | information available on an "as-is" basis. Creative Commons gives no 16 | warranties regarding its licenses, any material licensed under their 17 | terms and conditions, or any related information. Creative Commons 18 | disclaims all liability for damages resulting from their use to the 19 | fullest extent possible. 20 | 21 | Using Creative Commons Public Licenses 22 | 23 | Creative Commons public licenses provide a standard set of terms and 24 | conditions that creators and other rights holders may use to share 25 | original works of authorship and other material subject to copyright 26 | and certain other rights specified in the public license below. The 27 | following considerations are for informational purposes only, are not 28 | exhaustive, and do not form part of our licenses. 29 | 30 | Considerations for licensors: Our public licenses are 31 | intended for use by those authorized to give the public 32 | permission to use material in ways otherwise restricted by 33 | copyright and certain other rights. Our licenses are 34 | irrevocable. Licensors should read and understand the terms 35 | and conditions of the license they choose before applying it. 36 | Licensors should also secure all rights necessary before 37 | applying our licenses so that the public can reuse the 38 | material as expected. Licensors should clearly mark any 39 | material not subject to the license. This includes other CC- 40 | licensed material, or material used under an exception or 41 | limitation to copyright. More considerations for licensors: 42 | wiki.creativecommons.org/Considerations_for_licensors 43 | 44 | Considerations for the public: By using one of our public 45 | licenses, a licensor grants the public permission to use the 46 | licensed material under specified terms and conditions. If 47 | the licensor's permission is not necessary for any reason--for 48 | example, because of any applicable exception or limitation to 49 | copyright--then that use is not regulated by the license. Our 50 | licenses grant only permissions under copyright and certain 51 | other rights that a licensor has authority to grant. Use of 52 | the licensed material may still be restricted for other 53 | reasons, including because others have copyright or other 54 | rights in the material. A licensor may make special requests, 55 | such as asking that all changes be marked or described. 56 | Although not required by our licenses, you are encouraged to 57 | respect those requests where reasonable. More_considerations 58 | for the public: 59 | wiki.creativecommons.org/Considerations_for_licensees 60 | 61 | ======================================================================= 62 | 63 | Creative Commons Attribution 4.0 International Public License 64 | 65 | By exercising the Licensed Rights (defined below), You accept and agree 66 | to be bound by the terms and conditions of this Creative Commons 67 | Attribution 4.0 International Public License ("Public License"). To the 68 | extent this Public License may be interpreted as a contract, You are 69 | granted the Licensed Rights in consideration of Your acceptance of 70 | these terms and conditions, and the Licensor grants You such rights in 71 | consideration of benefits the Licensor receives from making the 72 | Licensed Material available under these terms and conditions. 73 | 74 | 75 | Section 1 -- Definitions. 76 | 77 | a. Adapted Material means material subject to Copyright and Similar 78 | Rights that is derived from or based upon the Licensed Material 79 | and in which the Licensed Material is translated, altered, 80 | arranged, transformed, or otherwise modified in a manner requiring 81 | permission under the Copyright and Similar Rights held by the 82 | Licensor. For purposes of this Public License, where the Licensed 83 | Material is a musical work, performance, or sound recording, 84 | Adapted Material is always produced where the Licensed Material is 85 | synched in timed relation with a moving image. 86 | 87 | b. Adapter's License means the license You apply to Your Copyright 88 | and Similar Rights in Your contributions to Adapted Material in 89 | accordance with the terms and conditions of this Public License. 90 | 91 | c. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | d. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | e. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | f. Licensed Material means the artistic or literary work, database, 110 | or other material to which the Licensor applied this Public 111 | License. 112 | 113 | g. Licensed Rights means the rights granted to You subject to the 114 | terms and conditions of this Public License, which are limited to 115 | all Copyright and Similar Rights that apply to Your use of the 116 | Licensed Material and that the Licensor has authority to license. 117 | 118 | h. Licensor means the individual(s) or entity(ies) granting rights 119 | under this Public License. 120 | 121 | i. Share means to provide material to the public by any means or 122 | process that requires permission under the Licensed Rights, such 123 | as reproduction, public display, public performance, distribution, 124 | dissemination, communication, or importation, and to make material 125 | available to the public including in ways that members of the 126 | public may access the material from a place and at a time 127 | individually chosen by them. 128 | 129 | j. Sui Generis Database Rights means rights other than copyright 130 | resulting from Directive 96/9/EC of the European Parliament and of 131 | the Council of 11 March 1996 on the legal protection of databases, 132 | as amended and/or succeeded, as well as other essentially 133 | equivalent rights anywhere in the world. 134 | 135 | k. You means the individual or entity exercising the Licensed Rights 136 | under this Public License. Your has a corresponding meaning. 137 | 138 | 139 | Section 2 -- Scope. 140 | 141 | a. License grant. 142 | 143 | 1. Subject to the terms and conditions of this Public License, 144 | the Licensor hereby grants You a worldwide, royalty-free, 145 | non-sublicensable, non-exclusive, irrevocable license to 146 | exercise the Licensed Rights in the Licensed Material to: 147 | 148 | a. reproduce and Share the Licensed Material, in whole or 149 | in part; and 150 | 151 | b. produce, reproduce, and Share Adapted Material. 152 | 153 | 2. Exceptions and Limitations. For the avoidance of doubt, where 154 | Exceptions and Limitations apply to Your use, this Public 155 | License does not apply, and You do not need to comply with 156 | its terms and conditions. 157 | 158 | 3. Term. The term of this Public License is specified in Section 159 | 6(a). 160 | 161 | 4. Media and formats; technical modifications allowed. The 162 | Licensor authorizes You to exercise the Licensed Rights in 163 | all media and formats whether now known or hereafter created, 164 | and to make technical modifications necessary to do so. The 165 | Licensor waives and/or agrees not to assert any right or 166 | authority to forbid You from making technical modifications 167 | necessary to exercise the Licensed Rights, including 168 | technical modifications necessary to circumvent Effective 169 | Technological Measures. For purposes of this Public License, 170 | simply making modifications authorized by this Section 2(a) 171 | (4) never produces Adapted Material. 172 | 173 | 5. Downstream recipients. 174 | 175 | a. Offer from the Licensor -- Licensed Material. Every 176 | recipient of the Licensed Material automatically 177 | receives an offer from the Licensor to exercise the 178 | Licensed Rights under the terms and conditions of this 179 | Public License. 180 | 181 | b. No downstream restrictions. You may not offer or impose 182 | any additional or different terms or conditions on, or 183 | apply any Effective Technological Measures to, the 184 | Licensed Material if doing so restricts exercise of the 185 | Licensed Rights by any recipient of the Licensed 186 | Material. 187 | 188 | 6. No endorsement. Nothing in this Public License constitutes or 189 | may be construed as permission to assert or imply that You 190 | are, or that Your use of the Licensed Material is, connected 191 | with, or sponsored, endorsed, or granted official status by, 192 | the Licensor or others designated to receive attribution as 193 | provided in Section 3(a)(1)(A)(i). 194 | 195 | b. Other rights. 196 | 197 | 1. Moral rights, such as the right of integrity, are not 198 | licensed under this Public License, nor are publicity, 199 | privacy, and/or other similar personality rights; however, to 200 | the extent possible, the Licensor waives and/or agrees not to 201 | assert any such rights held by the Licensor to the limited 202 | extent necessary to allow You to exercise the Licensed 203 | Rights, but not otherwise. 204 | 205 | 2. Patent and trademark rights are not licensed under this 206 | Public License. 207 | 208 | 3. To the extent possible, the Licensor waives any right to 209 | collect royalties from You for the exercise of the Licensed 210 | Rights, whether directly or through a collecting society 211 | under any voluntary or waivable statutory or compulsory 212 | licensing scheme. In all other cases the Licensor expressly 213 | reserves any right to collect such royalties. 214 | 215 | 216 | Section 3 -- License Conditions. 217 | 218 | Your exercise of the Licensed Rights is expressly made subject to the 219 | following conditions. 220 | 221 | a. Attribution. 222 | 223 | 1. If You Share the Licensed Material (including in modified 224 | form), You must: 225 | 226 | a. retain the following if it is supplied by the Licensor 227 | with the Licensed Material: 228 | 229 | i. identification of the creator(s) of the Licensed 230 | Material and any others designated to receive 231 | attribution, in any reasonable manner requested by 232 | the Licensor (including by pseudonym if 233 | designated); 234 | 235 | ii. a copyright notice; 236 | 237 | iii. a notice that refers to this Public License; 238 | 239 | iv. a notice that refers to the disclaimer of 240 | warranties; 241 | 242 | v. a URI or hyperlink to the Licensed Material to the 243 | extent reasonably practicable; 244 | 245 | b. indicate if You modified the Licensed Material and 246 | retain an indication of any previous modifications; and 247 | 248 | c. indicate the Licensed Material is licensed under this 249 | Public License, and include the text of, or the URI or 250 | hyperlink to, this Public License. 251 | 252 | 2. You may satisfy the conditions in Section 3(a)(1) in any 253 | reasonable manner based on the medium, means, and context in 254 | which You Share the Licensed Material. For example, it may be 255 | reasonable to satisfy the conditions by providing a URI or 256 | hyperlink to a resource that includes the required 257 | information. 258 | 259 | 3. If requested by the Licensor, You must remove any of the 260 | information required by Section 3(a)(1)(A) to the extent 261 | reasonably practicable. 262 | 263 | 4. If You Share Adapted Material You produce, the Adapter's 264 | License You apply must not prevent recipients of the Adapted 265 | Material from complying with this Public License. 266 | 267 | 268 | Section 4 -- Sui Generis Database Rights. 269 | 270 | Where the Licensed Rights include Sui Generis Database Rights that 271 | apply to Your use of the Licensed Material: 272 | 273 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 274 | to extract, reuse, reproduce, and Share all or a substantial 275 | portion of the contents of the database; 276 | 277 | b. if You include all or a substantial portion of the database 278 | contents in a database in which You have Sui Generis Database 279 | Rights, then the database in which You have Sui Generis Database 280 | Rights (but not its individual contents) is Adapted Material; and 281 | 282 | c. You must comply with the conditions in Section 3(a) if You Share 283 | all or a substantial portion of the contents of the database. 284 | 285 | For the avoidance of doubt, this Section 4 supplements and does not 286 | replace Your obligations under this Public License where the Licensed 287 | Rights include other Copyright and Similar Rights. 288 | 289 | 290 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 291 | 292 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 293 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 294 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 295 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 296 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 297 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 298 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 299 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 300 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 301 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 302 | 303 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 304 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 305 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 306 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 307 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 308 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 309 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 310 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 311 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 312 | 313 | c. The disclaimer of warranties and limitation of liability provided 314 | above shall be interpreted in a manner that, to the extent 315 | possible, most closely approximates an absolute disclaimer and 316 | waiver of all liability. 317 | 318 | 319 | Section 6 -- Term and Termination. 320 | 321 | a. This Public License applies for the term of the Copyright and 322 | Similar Rights licensed here. However, if You fail to comply with 323 | this Public License, then Your rights under this Public License 324 | terminate automatically. 325 | 326 | b. Where Your right to use the Licensed Material has terminated under 327 | Section 6(a), it reinstates: 328 | 329 | 1. automatically as of the date the violation is cured, provided 330 | it is cured within 30 days of Your discovery of the 331 | violation; or 332 | 333 | 2. upon express reinstatement by the Licensor. 334 | 335 | For the avoidance of doubt, this Section 6(b) does not affect any 336 | right the Licensor may have to seek remedies for Your violations 337 | of this Public License. 338 | 339 | c. For the avoidance of doubt, the Licensor may also offer the 340 | Licensed Material under separate terms or conditions or stop 341 | distributing the Licensed Material at any time; however, doing so 342 | will not terminate this Public License. 343 | 344 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 345 | License. 346 | 347 | 348 | Section 7 -- Other Terms and Conditions. 349 | 350 | a. The Licensor shall not be bound by any additional or different 351 | terms or conditions communicated by You unless expressly agreed. 352 | 353 | b. Any arrangements, understandings, or agreements regarding the 354 | Licensed Material not stated herein are separate from and 355 | independent of the terms and conditions of this Public License. 356 | 357 | 358 | Section 8 -- Interpretation. 359 | 360 | a. For the avoidance of doubt, this Public License does not, and 361 | shall not be interpreted to, reduce, limit, restrict, or impose 362 | conditions on any use of the Licensed Material that could lawfully 363 | be made without permission under this Public License. 364 | 365 | b. To the extent possible, if any provision of this Public License is 366 | deemed unenforceable, it shall be automatically reformed to the 367 | minimum extent necessary to make it enforceable. If the provision 368 | cannot be reformed, it shall be severed from this Public License 369 | without affecting the enforceability of the remaining terms and 370 | conditions. 371 | 372 | c. No term or condition of this Public License will be waived and no 373 | failure to comply consented to unless expressly agreed to by the 374 | Licensor. 375 | 376 | d. Nothing in this Public License constitutes or may be interpreted 377 | as a limitation upon, or waiver of, any privileges and immunities 378 | that apply to the Licensor or You, including from the legal 379 | processes of any jurisdiction or authority. 380 | 381 | 382 | ======================================================================= 383 | 384 | Creative Commons is not a party to its public 385 | licenses. Notwithstanding, Creative Commons may elect to apply one of 386 | its public licenses to material it publishes and in those instances 387 | will be considered the “Licensor.” The text of the Creative Commons 388 | public licenses is dedicated to the public domain under the CC0 Public 389 | Domain Dedication. Except for the limited purpose of indicating that 390 | material is shared under a Creative Commons public license or as 391 | otherwise permitted by the Creative Commons policies published at 392 | creativecommons.org/policies, Creative Commons does not authorize the 393 | use of the trademark "Creative Commons" or any other trademark or logo 394 | of Creative Commons without its prior written consent including, 395 | without limitation, in connection with any unauthorized modifications 396 | to any of its public licenses or any other arrangements, 397 | understandings, or agreements concerning use of licensed material. For 398 | the avoidance of doubt, this paragraph does not form part of the 399 | public licenses. 400 | 401 | Creative Commons may be contacted at creativecommons.org. 402 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/OSD335X-BGA-256.kicad_mod: -------------------------------------------------------------------------------- 1 | (module OSD335X-BGA-256 (layer F.Cu) (tedit 200000) 2 | (attr smd) 3 | (fp_text reference "" (at 0 0) (layer F.SilkS) 4 | (effects (font (thickness 0.15))) 5 | ) 6 | (fp_text value "" (at 0 0) (layer F.SilkS) 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (fp_line (start 10.53846 -10.53846) (end -10.45972 -10.53846) (layer F.SilkS) (width 0.127)) 10 | (fp_line (start -10.45972 -10.53846) (end -10.45972 10.45972) (layer F.SilkS) (width 0.127)) 11 | (fp_line (start -10.45972 10.45972) (end 10.53846 10.45972) (layer F.SilkS) (width 0.127)) 12 | (fp_line (start 10.53846 10.45972) (end 10.53846 -10.53846) (layer F.SilkS) (width 0.127)) 13 | (fp_text user A (at -9.2202 10.36066) (layer F.SilkS) 14 | (effects (font (size 0.6096 0.6096) (thickness 0.0762))) 15 | ) 16 | (fp_text user T (at 9.8298 10.36066) (layer F.SilkS) 17 | (effects (font (size 0.6096 0.6096) (thickness 0.0762))) 18 | ) 19 | (fp_text user 1 (at -10.2362 9.2202) (layer F.SilkS) 20 | (effects (font (size 0.6096 0.6096) (thickness 0.0762))) 21 | ) 22 | (fp_text user 16 (at -9.9314 -9.8298) (layer F.SilkS) 23 | (effects (font (size 0.6096 0.6096) (thickness 0.0762))) 24 | ) 25 | (pad A1 smd circle (at -9.525 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 26 | (pad A2 smd circle (at -9.525 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 27 | (pad A3 smd circle (at -9.525 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 28 | (pad A4 smd circle (at -9.525 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 29 | (pad A5 smd circle (at -9.525 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 30 | (pad A6 smd circle (at -9.525 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 31 | (pad A7 smd circle (at -9.525 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 32 | (pad A8 smd circle (at -9.525 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 33 | (pad A9 smd circle (at -9.525 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 34 | (pad A10 smd circle (at -9.525 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 35 | (pad A11 smd circle (at -9.525 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 36 | (pad A12 smd circle (at -9.525 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 37 | (pad A13 smd circle (at -9.525 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 38 | (pad A14 smd circle (at -9.525 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 39 | (pad A15 smd circle (at -9.525 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 40 | (pad A16 smd circle (at -9.525 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 41 | (pad B1 smd circle (at -8.255 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 42 | (pad B2 smd circle (at -8.255 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 43 | (pad B3 smd circle (at -8.255 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 44 | (pad B4 smd circle (at -8.255 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 45 | (pad B5 smd circle (at -8.255 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 46 | (pad B6 smd circle (at -8.255 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 47 | (pad B7 smd circle (at -8.255 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 48 | (pad B8 smd circle (at -8.255 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 49 | (pad B9 smd circle (at -8.255 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 50 | (pad B10 smd circle (at -8.255 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 51 | (pad B11 smd circle (at -8.255 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 52 | (pad B12 smd circle (at -8.255 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 53 | (pad B13 smd circle (at -8.255 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 54 | (pad B14 smd circle (at -8.255 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 55 | (pad B15 smd circle (at -8.255 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 56 | (pad B16 smd circle (at -8.255 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 57 | (pad C1 smd circle (at -6.985 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 58 | (pad C2 smd circle (at -6.985 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 59 | (pad C3 smd circle (at -6.985 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 60 | (pad C4 smd circle (at -6.985 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 61 | (pad C5 smd circle (at -6.985 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 62 | (pad C6 smd circle (at -6.985 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 63 | (pad C7 smd circle (at -6.985 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 64 | (pad C8 smd circle (at -6.985 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 65 | (pad C9 smd circle (at -6.985 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 66 | (pad C10 smd circle (at -6.985 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 67 | (pad C11 smd circle (at -6.985 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 68 | (pad C12 smd circle (at -6.985 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 69 | (pad C13 smd circle (at -6.985 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 70 | (pad C14 smd circle (at -6.985 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 71 | (pad C15 smd circle (at -6.985 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 72 | (pad C16 smd circle (at -6.985 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 73 | (pad D1 smd circle (at -5.715 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 74 | (pad D2 smd circle (at -5.715 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 75 | (pad D3 smd circle (at -5.715 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 76 | (pad D4 smd circle (at -5.715 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 77 | (pad D5 smd circle (at -5.715 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 78 | (pad D6 smd circle (at -5.715 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 79 | (pad D7 smd circle (at -5.715 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 80 | (pad D8 smd circle (at -5.715 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 81 | (pad D9 smd circle (at -5.715 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 82 | (pad D10 smd circle (at -5.715 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 83 | (pad D11 smd circle (at -5.715 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 84 | (pad D12 smd circle (at -5.715 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 85 | (pad D13 smd circle (at -5.715 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 86 | (pad D14 smd circle (at -5.715 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 87 | (pad D15 smd circle (at -5.715 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 88 | (pad D16 smd circle (at -5.715 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 89 | (pad E1 smd circle (at -4.445 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 90 | (pad E2 smd circle (at -4.445 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 91 | (pad E3 smd circle (at -4.445 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 92 | (pad E4 smd circle (at -4.445 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 93 | (pad E5 smd circle (at -4.445 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 94 | (pad E6 smd circle (at -4.445 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 95 | (pad E7 smd circle (at -4.445 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 96 | (pad E8 smd circle (at -4.445 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 97 | (pad E9 smd circle (at -4.445 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 98 | (pad E10 smd circle (at -4.445 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 99 | (pad E11 smd circle (at -4.445 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 100 | (pad E12 smd circle (at -4.445 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 101 | (pad E13 smd circle (at -4.445 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 102 | (pad E14 smd circle (at -4.445 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 103 | (pad E15 smd circle (at -4.445 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 104 | (pad E16 smd circle (at -4.445 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 105 | (pad F1 smd circle (at -3.175 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 106 | (pad F2 smd circle (at -3.175 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 107 | (pad F3 smd circle (at -3.175 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 108 | (pad F4 smd circle (at -3.175 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 109 | (pad F5 smd circle (at -3.175 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 110 | (pad F6 smd circle (at -3.175 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 111 | (pad F7 smd circle (at -3.175 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 112 | (pad F8 smd circle (at -3.175 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 113 | (pad F9 smd circle (at -3.175 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 114 | (pad F10 smd circle (at -3.175 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 115 | (pad F11 smd circle (at -3.175 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 116 | (pad F12 smd circle (at -3.175 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 117 | (pad F13 smd circle (at -3.175 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 118 | (pad F14 smd circle (at -3.175 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 119 | (pad F15 smd circle (at -3.175 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 120 | (pad F16 smd circle (at -3.175 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 121 | (pad G1 smd circle (at -1.905 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 122 | (pad G2 smd circle (at -1.905 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 123 | (pad G3 smd circle (at -1.905 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 124 | (pad G4 smd circle (at -1.905 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 125 | (pad G5 smd circle (at -1.905 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 126 | (pad G6 smd circle (at -1.905 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 127 | (pad G7 smd circle (at -1.905 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 128 | (pad G8 smd circle (at -1.905 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 129 | (pad G9 smd circle (at -1.905 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 130 | (pad G10 smd circle (at -1.905 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 131 | (pad G11 smd circle (at -1.905 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 132 | (pad G12 smd circle (at -1.905 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 133 | (pad G13 smd circle (at -1.905 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 134 | (pad G14 smd circle (at -1.905 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 135 | (pad G15 smd circle (at -1.905 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 136 | (pad G16 smd circle (at -1.905 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 137 | (pad H1 smd circle (at -0.635 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 138 | (pad H2 smd circle (at -0.635 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 139 | (pad H3 smd circle (at -0.635 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 140 | (pad H4 smd circle (at -0.635 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 141 | (pad H5 smd circle (at -0.635 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 142 | (pad H6 smd circle (at -0.635 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 143 | (pad H7 smd circle (at -0.635 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 144 | (pad H8 smd circle (at -0.635 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 145 | (pad H9 smd circle (at -0.635 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 146 | (pad H10 smd circle (at -0.635 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 147 | (pad H11 smd circle (at -0.635 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 148 | (pad H12 smd circle (at -0.635 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 149 | (pad H13 smd circle (at -0.635 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 150 | (pad H14 smd circle (at -0.635 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 151 | (pad H15 smd circle (at -0.635 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 152 | (pad H16 smd circle (at -0.635 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 153 | (pad J1 smd circle (at 0.63246 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 154 | (pad J2 smd circle (at 0.63246 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 155 | (pad J3 smd circle (at 0.63246 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 156 | (pad J4 smd circle (at 0.63246 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 157 | (pad J5 smd circle (at 0.63246 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 158 | (pad J6 smd circle (at 0.63246 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 159 | (pad J7 smd circle (at 0.63246 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 160 | (pad J8 smd circle (at 0.63246 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 161 | (pad J9 smd circle (at 0.63246 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 162 | (pad J10 smd circle (at 0.63246 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 163 | (pad J11 smd circle (at 0.63246 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 164 | (pad J12 smd circle (at 0.63246 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 165 | (pad J13 smd circle (at 0.63246 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 166 | (pad J14 smd circle (at 0.63246 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 167 | (pad J15 smd circle (at 0.63246 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 168 | (pad J16 smd circle (at 0.63246 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 169 | (pad K1 smd circle (at 1.90246 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 170 | (pad K2 smd circle (at 1.90246 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 171 | (pad K3 smd circle (at 1.90246 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 172 | (pad K4 smd circle (at 1.90246 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 173 | (pad K5 smd circle (at 1.90246 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 174 | (pad K6 smd circle (at 1.90246 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 175 | (pad K7 smd circle (at 1.90246 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 176 | (pad K8 smd circle (at 1.90246 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 177 | (pad K9 smd circle (at 1.90246 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 178 | (pad K10 smd circle (at 1.90246 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 179 | (pad K11 smd circle (at 1.90246 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 180 | (pad K12 smd circle (at 1.90246 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 181 | (pad K13 smd circle (at 1.90246 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 182 | (pad K14 smd circle (at 1.90246 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 183 | (pad K15 smd circle (at 1.90246 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 184 | (pad K16 smd circle (at 1.90246 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 185 | (pad L1 smd circle (at 3.17246 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 186 | (pad L2 smd circle (at 3.17246 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 187 | (pad L3 smd circle (at 3.17246 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 188 | (pad L4 smd circle (at 3.17246 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 189 | (pad L5 smd circle (at 3.17246 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 190 | (pad L6 smd circle (at 3.17246 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 191 | (pad L7 smd circle (at 3.17246 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 192 | (pad L8 smd circle (at 3.17246 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 193 | (pad L9 smd circle (at 3.17246 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 194 | (pad L10 smd circle (at 3.17246 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 195 | (pad L11 smd circle (at 3.17246 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 196 | (pad L12 smd circle (at 3.17246 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 197 | (pad L13 smd circle (at 3.17246 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 198 | (pad L14 smd circle (at 3.17246 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 199 | (pad L15 smd circle (at 3.17246 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 200 | (pad L16 smd circle (at 3.17246 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 201 | (pad M1 smd circle (at 4.44246 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 202 | (pad M2 smd circle (at 4.44246 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 203 | (pad M3 smd circle (at 4.44246 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 204 | (pad M4 smd circle (at 4.44246 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 205 | (pad M5 smd circle (at 4.44246 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 206 | (pad M6 smd circle (at 4.44246 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 207 | (pad M7 smd circle (at 4.44246 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 208 | (pad M8 smd circle (at 4.44246 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 209 | (pad M9 smd circle (at 4.44246 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 210 | (pad M10 smd circle (at 4.44246 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 211 | (pad M11 smd circle (at 4.44246 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 212 | (pad M12 smd circle (at 4.44246 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 213 | (pad M13 smd circle (at 4.44246 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 214 | (pad M14 smd circle (at 4.44246 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 215 | (pad M15 smd circle (at 4.44246 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 216 | (pad M16 smd circle (at 4.44246 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 217 | (pad N1 smd circle (at 5.71246 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 218 | (pad N2 smd circle (at 5.71246 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 219 | (pad N3 smd circle (at 5.71246 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 220 | (pad N4 smd circle (at 5.71246 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 221 | (pad N5 smd circle (at 5.71246 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 222 | (pad N6 smd circle (at 5.71246 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 223 | (pad N7 smd circle (at 5.71246 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 224 | (pad N8 smd circle (at 5.71246 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 225 | (pad N9 smd circle (at 5.71246 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 226 | (pad N10 smd circle (at 5.71246 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 227 | (pad N11 smd circle (at 5.71246 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 228 | (pad N12 smd circle (at 5.71246 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 229 | (pad N13 smd circle (at 5.71246 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 230 | (pad N14 smd circle (at 5.71246 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 231 | (pad N15 smd circle (at 5.71246 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 232 | (pad N16 smd circle (at 5.71246 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 233 | (pad P1 smd circle (at 6.98246 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 234 | (pad P2 smd circle (at 6.98246 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 235 | (pad P3 smd circle (at 6.98246 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 236 | (pad P4 smd circle (at 6.98246 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 237 | (pad P5 smd circle (at 6.98246 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 238 | (pad P6 smd circle (at 6.98246 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 239 | (pad P7 smd circle (at 6.98246 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 240 | (pad P8 smd circle (at 6.98246 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 241 | (pad P9 smd circle (at 6.98246 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 242 | (pad P10 smd circle (at 6.98246 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 243 | (pad P11 smd circle (at 6.98246 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 244 | (pad P12 smd circle (at 6.98246 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 245 | (pad P13 smd circle (at 6.98246 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 246 | (pad P14 smd circle (at 6.98246 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 247 | (pad P15 smd circle (at 6.98246 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 248 | (pad P16 smd circle (at 6.98246 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 249 | (pad R1 smd circle (at 8.25246 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 250 | (pad R2 smd circle (at 8.25246 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 251 | (pad R3 smd circle (at 8.25246 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 252 | (pad R4 smd circle (at 8.25246 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 253 | (pad R5 smd circle (at 8.25246 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 254 | (pad R6 smd circle (at 8.25246 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 255 | (pad R7 smd circle (at 8.25246 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 256 | (pad R8 smd circle (at 8.25246 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 257 | (pad R9 smd circle (at 8.25246 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 258 | (pad R10 smd circle (at 8.25246 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 259 | (pad R11 smd circle (at 8.25246 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 260 | (pad R12 smd circle (at 8.25246 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 261 | (pad R13 smd circle (at 8.25246 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 262 | (pad R14 smd circle (at 8.25246 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 263 | (pad R15 smd circle (at 8.25246 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 264 | (pad R16 smd circle (at 8.25246 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 265 | (pad T1 smd circle (at 9.52246 9.525) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 266 | (pad T2 smd circle (at 9.52246 8.255) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 267 | (pad T3 smd circle (at 9.52246 6.985) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 268 | (pad T4 smd circle (at 9.52246 5.715) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 269 | (pad T5 smd circle (at 9.52246 4.445) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 270 | (pad T6 smd circle (at 9.52246 3.175) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 271 | (pad T7 smd circle (at 9.52246 1.905) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 272 | (pad T8 smd circle (at 9.52246 0.635) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 273 | (pad T9 smd circle (at 9.52246 -0.63246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 274 | (pad T10 smd circle (at 9.52246 -1.90246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 275 | (pad T11 smd circle (at 9.52246 -3.17246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 276 | (pad T12 smd circle (at 9.52246 -4.44246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 277 | (pad T13 smd circle (at 9.52246 -5.71246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 278 | (pad T14 smd circle (at 9.52246 -6.98246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 279 | (pad T15 smd circle (at 9.52246 -8.25246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 280 | (pad T16 smd circle (at 9.52246 -9.52246) (size 0.49784 0.49784) (layers F.Cu F.Paste F.Mask)) 281 | ) 282 | -------------------------------------------------------------------------------- /KiCAD/pocketbeagle.pretty/TH-2X18.kicad_mod: -------------------------------------------------------------------------------- 1 | (module TH-2X18 (layer F.Cu) (tedit 200000) 2 | (attr virtual) 3 | (fp_text reference >NAME (at -24.638 -2.64668 90) (layer F.SilkS) 4 | (effects (font (size 1.016 1.016) (thickness 0.127))) 5 | ) 6 | (fp_text value "" (at 0 0) (layer F.SilkS) 7 | (effects (font (thickness 0.15))) 8 | ) 9 | (fp_line (start -21.844 1.524) (end -21.336 1.524) (layer Dwgs.User) (width 0.06604)) 10 | (fp_line (start -21.336 1.524) (end -21.336 1.016) (layer Dwgs.User) (width 0.06604)) 11 | (fp_line (start -21.844 1.016) (end -21.336 1.016) (layer Dwgs.User) (width 0.06604)) 12 | (fp_line (start -21.844 1.524) (end -21.844 1.016) (layer Dwgs.User) (width 0.06604)) 13 | (fp_line (start -21.844 -1.016) (end -21.336 -1.016) (layer Dwgs.User) (width 0.06604)) 14 | (fp_line (start -21.336 -1.016) (end -21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 15 | (fp_line (start -21.844 -1.524) (end -21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 16 | (fp_line (start -21.844 -1.016) (end -21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 17 | (fp_line (start -19.304 -1.016) (end -18.796 -1.016) (layer Dwgs.User) (width 0.06604)) 18 | (fp_line (start -18.796 -1.016) (end -18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 19 | (fp_line (start -19.304 -1.524) (end -18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 20 | (fp_line (start -19.304 -1.016) (end -19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 21 | (fp_line (start -19.304 1.524) (end -18.796 1.524) (layer Dwgs.User) (width 0.06604)) 22 | (fp_line (start -18.796 1.524) (end -18.796 1.016) (layer Dwgs.User) (width 0.06604)) 23 | (fp_line (start -19.304 1.016) (end -18.796 1.016) (layer Dwgs.User) (width 0.06604)) 24 | (fp_line (start -19.304 1.524) (end -19.304 1.016) (layer Dwgs.User) (width 0.06604)) 25 | (fp_line (start -16.764 -1.016) (end -16.256 -1.016) (layer Dwgs.User) (width 0.06604)) 26 | (fp_line (start -16.256 -1.016) (end -16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 27 | (fp_line (start -16.764 -1.524) (end -16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 28 | (fp_line (start -16.764 -1.016) (end -16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 29 | (fp_line (start -16.764 1.524) (end -16.256 1.524) (layer Dwgs.User) (width 0.06604)) 30 | (fp_line (start -16.256 1.524) (end -16.256 1.016) (layer Dwgs.User) (width 0.06604)) 31 | (fp_line (start -16.764 1.016) (end -16.256 1.016) (layer Dwgs.User) (width 0.06604)) 32 | (fp_line (start -16.764 1.524) (end -16.764 1.016) (layer Dwgs.User) (width 0.06604)) 33 | (fp_line (start -14.224 -1.016) (end -13.716 -1.016) (layer Dwgs.User) (width 0.06604)) 34 | (fp_line (start -13.716 -1.016) (end -13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 35 | (fp_line (start -14.224 -1.524) (end -13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 36 | (fp_line (start -14.224 -1.016) (end -14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 37 | (fp_line (start -11.684 -1.016) (end -11.176 -1.016) (layer Dwgs.User) (width 0.06604)) 38 | (fp_line (start -11.176 -1.016) (end -11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 39 | (fp_line (start -11.684 -1.524) (end -11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 40 | (fp_line (start -11.684 -1.016) (end -11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 41 | (fp_line (start -9.144 -1.016) (end -8.636 -1.016) (layer Dwgs.User) (width 0.06604)) 42 | (fp_line (start -8.636 -1.016) (end -8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 43 | (fp_line (start -9.144 -1.524) (end -8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 44 | (fp_line (start -9.144 -1.016) (end -9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 45 | (fp_line (start -14.224 1.524) (end -13.716 1.524) (layer Dwgs.User) (width 0.06604)) 46 | (fp_line (start -13.716 1.524) (end -13.716 1.016) (layer Dwgs.User) (width 0.06604)) 47 | (fp_line (start -14.224 1.016) (end -13.716 1.016) (layer Dwgs.User) (width 0.06604)) 48 | (fp_line (start -14.224 1.524) (end -14.224 1.016) (layer Dwgs.User) (width 0.06604)) 49 | (fp_line (start -11.684 1.524) (end -11.176 1.524) (layer Dwgs.User) (width 0.06604)) 50 | (fp_line (start -11.176 1.524) (end -11.176 1.016) (layer Dwgs.User) (width 0.06604)) 51 | (fp_line (start -11.684 1.016) (end -11.176 1.016) (layer Dwgs.User) (width 0.06604)) 52 | (fp_line (start -11.684 1.524) (end -11.684 1.016) (layer Dwgs.User) (width 0.06604)) 53 | (fp_line (start -9.144 1.524) (end -8.636 1.524) (layer Dwgs.User) (width 0.06604)) 54 | (fp_line (start -8.636 1.524) (end -8.636 1.016) (layer Dwgs.User) (width 0.06604)) 55 | (fp_line (start -9.144 1.016) (end -8.636 1.016) (layer Dwgs.User) (width 0.06604)) 56 | (fp_line (start -9.144 1.524) (end -9.144 1.016) (layer Dwgs.User) (width 0.06604)) 57 | (fp_line (start -6.604 -1.016) (end -6.096 -1.016) (layer Dwgs.User) (width 0.06604)) 58 | (fp_line (start -6.096 -1.016) (end -6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 59 | (fp_line (start -6.604 -1.524) (end -6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 60 | (fp_line (start -6.604 -1.016) (end -6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 61 | (fp_line (start -6.604 1.524) (end -6.096 1.524) (layer Dwgs.User) (width 0.06604)) 62 | (fp_line (start -6.096 1.524) (end -6.096 1.016) (layer Dwgs.User) (width 0.06604)) 63 | (fp_line (start -6.604 1.016) (end -6.096 1.016) (layer Dwgs.User) (width 0.06604)) 64 | (fp_line (start -6.604 1.524) (end -6.604 1.016) (layer Dwgs.User) (width 0.06604)) 65 | (fp_line (start -4.064 -1.016) (end -3.556 -1.016) (layer Dwgs.User) (width 0.06604)) 66 | (fp_line (start -3.556 -1.016) (end -3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 67 | (fp_line (start -4.064 -1.524) (end -3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 68 | (fp_line (start -4.064 -1.016) (end -4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 69 | (fp_line (start -4.064 1.524) (end -3.556 1.524) (layer Dwgs.User) (width 0.06604)) 70 | (fp_line (start -3.556 1.524) (end -3.556 1.016) (layer Dwgs.User) (width 0.06604)) 71 | (fp_line (start -4.064 1.016) (end -3.556 1.016) (layer Dwgs.User) (width 0.06604)) 72 | (fp_line (start -4.064 1.524) (end -4.064 1.016) (layer Dwgs.User) (width 0.06604)) 73 | (fp_line (start -1.524 -1.016) (end -1.016 -1.016) (layer Dwgs.User) (width 0.06604)) 74 | (fp_line (start -1.016 -1.016) (end -1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 75 | (fp_line (start -1.524 -1.524) (end -1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 76 | (fp_line (start -1.524 -1.016) (end -1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 77 | (fp_line (start -1.524 1.524) (end -1.016 1.524) (layer Dwgs.User) (width 0.06604)) 78 | (fp_line (start -1.016 1.524) (end -1.016 1.016) (layer Dwgs.User) (width 0.06604)) 79 | (fp_line (start -1.524 1.016) (end -1.016 1.016) (layer Dwgs.User) (width 0.06604)) 80 | (fp_line (start -1.524 1.524) (end -1.524 1.016) (layer Dwgs.User) (width 0.06604)) 81 | (fp_line (start 1.016 -1.016) (end 1.524 -1.016) (layer Dwgs.User) (width 0.06604)) 82 | (fp_line (start 1.524 -1.016) (end 1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 83 | (fp_line (start 1.016 -1.524) (end 1.524 -1.524) (layer Dwgs.User) (width 0.06604)) 84 | (fp_line (start 1.016 -1.016) (end 1.016 -1.524) (layer Dwgs.User) (width 0.06604)) 85 | (fp_line (start 1.016 1.524) (end 1.524 1.524) (layer Dwgs.User) (width 0.06604)) 86 | (fp_line (start 1.524 1.524) (end 1.524 1.016) (layer Dwgs.User) (width 0.06604)) 87 | (fp_line (start 1.016 1.016) (end 1.524 1.016) (layer Dwgs.User) (width 0.06604)) 88 | (fp_line (start 1.016 1.524) (end 1.016 1.016) (layer Dwgs.User) (width 0.06604)) 89 | (fp_line (start 3.556 -1.016) (end 4.064 -1.016) (layer Dwgs.User) (width 0.06604)) 90 | (fp_line (start 4.064 -1.016) (end 4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 91 | (fp_line (start 3.556 -1.524) (end 4.064 -1.524) (layer Dwgs.User) (width 0.06604)) 92 | (fp_line (start 3.556 -1.016) (end 3.556 -1.524) (layer Dwgs.User) (width 0.06604)) 93 | (fp_line (start 3.556 1.524) (end 4.064 1.524) (layer Dwgs.User) (width 0.06604)) 94 | (fp_line (start 4.064 1.524) (end 4.064 1.016) (layer Dwgs.User) (width 0.06604)) 95 | (fp_line (start 3.556 1.016) (end 4.064 1.016) (layer Dwgs.User) (width 0.06604)) 96 | (fp_line (start 3.556 1.524) (end 3.556 1.016) (layer Dwgs.User) (width 0.06604)) 97 | (fp_line (start 6.096 -1.016) (end 6.604 -1.016) (layer Dwgs.User) (width 0.06604)) 98 | (fp_line (start 6.604 -1.016) (end 6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 99 | (fp_line (start 6.096 -1.524) (end 6.604 -1.524) (layer Dwgs.User) (width 0.06604)) 100 | (fp_line (start 6.096 -1.016) (end 6.096 -1.524) (layer Dwgs.User) (width 0.06604)) 101 | (fp_line (start 6.096 1.524) (end 6.604 1.524) (layer Dwgs.User) (width 0.06604)) 102 | (fp_line (start 6.604 1.524) (end 6.604 1.016) (layer Dwgs.User) (width 0.06604)) 103 | (fp_line (start 6.096 1.016) (end 6.604 1.016) (layer Dwgs.User) (width 0.06604)) 104 | (fp_line (start 6.096 1.524) (end 6.096 1.016) (layer Dwgs.User) (width 0.06604)) 105 | (fp_line (start 8.636 -1.016) (end 9.144 -1.016) (layer Dwgs.User) (width 0.06604)) 106 | (fp_line (start 9.144 -1.016) (end 9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 107 | (fp_line (start 8.636 -1.524) (end 9.144 -1.524) (layer Dwgs.User) (width 0.06604)) 108 | (fp_line (start 8.636 -1.016) (end 8.636 -1.524) (layer Dwgs.User) (width 0.06604)) 109 | (fp_line (start 8.636 1.524) (end 9.144 1.524) (layer Dwgs.User) (width 0.06604)) 110 | (fp_line (start 9.144 1.524) (end 9.144 1.016) (layer Dwgs.User) (width 0.06604)) 111 | (fp_line (start 8.636 1.016) (end 9.144 1.016) (layer Dwgs.User) (width 0.06604)) 112 | (fp_line (start 8.636 1.524) (end 8.636 1.016) (layer Dwgs.User) (width 0.06604)) 113 | (fp_line (start 11.176 -1.016) (end 11.684 -1.016) (layer Dwgs.User) (width 0.06604)) 114 | (fp_line (start 11.684 -1.016) (end 11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 115 | (fp_line (start 11.176 -1.524) (end 11.684 -1.524) (layer Dwgs.User) (width 0.06604)) 116 | (fp_line (start 11.176 -1.016) (end 11.176 -1.524) (layer Dwgs.User) (width 0.06604)) 117 | (fp_line (start 11.176 1.524) (end 11.684 1.524) (layer Dwgs.User) (width 0.06604)) 118 | (fp_line (start 11.684 1.524) (end 11.684 1.016) (layer Dwgs.User) (width 0.06604)) 119 | (fp_line (start 11.176 1.016) (end 11.684 1.016) (layer Dwgs.User) (width 0.06604)) 120 | (fp_line (start 11.176 1.524) (end 11.176 1.016) (layer Dwgs.User) (width 0.06604)) 121 | (fp_line (start 13.716 -1.016) (end 14.224 -1.016) (layer Dwgs.User) (width 0.06604)) 122 | (fp_line (start 14.224 -1.016) (end 14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 123 | (fp_line (start 13.716 -1.524) (end 14.224 -1.524) (layer Dwgs.User) (width 0.06604)) 124 | (fp_line (start 13.716 -1.016) (end 13.716 -1.524) (layer Dwgs.User) (width 0.06604)) 125 | (fp_line (start 13.716 1.524) (end 14.224 1.524) (layer Dwgs.User) (width 0.06604)) 126 | (fp_line (start 14.224 1.524) (end 14.224 1.016) (layer Dwgs.User) (width 0.06604)) 127 | (fp_line (start 13.716 1.016) (end 14.224 1.016) (layer Dwgs.User) (width 0.06604)) 128 | (fp_line (start 13.716 1.524) (end 13.716 1.016) (layer Dwgs.User) (width 0.06604)) 129 | (fp_line (start 16.256 -1.016) (end 16.764 -1.016) (layer Dwgs.User) (width 0.06604)) 130 | (fp_line (start 16.764 -1.016) (end 16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 131 | (fp_line (start 16.256 -1.524) (end 16.764 -1.524) (layer Dwgs.User) (width 0.06604)) 132 | (fp_line (start 16.256 -1.016) (end 16.256 -1.524) (layer Dwgs.User) (width 0.06604)) 133 | (fp_line (start 16.256 1.524) (end 16.764 1.524) (layer Dwgs.User) (width 0.06604)) 134 | (fp_line (start 16.764 1.524) (end 16.764 1.016) (layer Dwgs.User) (width 0.06604)) 135 | (fp_line (start 16.256 1.016) (end 16.764 1.016) (layer Dwgs.User) (width 0.06604)) 136 | (fp_line (start 16.256 1.524) (end 16.256 1.016) (layer Dwgs.User) (width 0.06604)) 137 | (fp_line (start 18.796 -1.016) (end 19.304 -1.016) (layer Dwgs.User) (width 0.06604)) 138 | (fp_line (start 19.304 -1.016) (end 19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 139 | (fp_line (start 18.796 -1.524) (end 19.304 -1.524) (layer Dwgs.User) (width 0.06604)) 140 | (fp_line (start 18.796 -1.016) (end 18.796 -1.524) (layer Dwgs.User) (width 0.06604)) 141 | (fp_line (start 18.796 1.524) (end 19.304 1.524) (layer Dwgs.User) (width 0.06604)) 142 | (fp_line (start 19.304 1.524) (end 19.304 1.016) (layer Dwgs.User) (width 0.06604)) 143 | (fp_line (start 18.796 1.016) (end 19.304 1.016) (layer Dwgs.User) (width 0.06604)) 144 | (fp_line (start 18.796 1.524) (end 18.796 1.016) (layer Dwgs.User) (width 0.06604)) 145 | (fp_line (start 21.336 -1.016) (end 21.844 -1.016) (layer Dwgs.User) (width 0.06604)) 146 | (fp_line (start 21.844 -1.016) (end 21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 147 | (fp_line (start 21.336 -1.524) (end 21.844 -1.524) (layer Dwgs.User) (width 0.06604)) 148 | (fp_line (start 21.336 -1.016) (end 21.336 -1.524) (layer Dwgs.User) (width 0.06604)) 149 | (fp_line (start 21.336 1.524) (end 21.844 1.524) (layer Dwgs.User) (width 0.06604)) 150 | (fp_line (start 21.844 1.524) (end 21.844 1.016) (layer Dwgs.User) (width 0.06604)) 151 | (fp_line (start 21.336 1.016) (end 21.844 1.016) (layer Dwgs.User) (width 0.06604)) 152 | (fp_line (start 21.336 1.524) (end 21.336 1.016) (layer Dwgs.User) (width 0.06604)) 153 | (fp_line (start -22.86 1.905) (end -22.225 2.54) (layer F.SilkS) (width 0.1524)) 154 | (fp_line (start -22.225 2.54) (end -20.955 2.54) (layer F.SilkS) (width 0.1524)) 155 | (fp_line (start -20.955 2.54) (end -20.32 1.905) (layer F.SilkS) (width 0.1524)) 156 | (fp_line (start -20.32 1.905) (end -19.685 2.54) (layer F.SilkS) (width 0.1524)) 157 | (fp_line (start -19.685 2.54) (end -18.415 2.54) (layer F.SilkS) (width 0.1524)) 158 | (fp_line (start -18.415 2.54) (end -17.78 1.905) (layer F.SilkS) (width 0.1524)) 159 | (fp_line (start -17.78 1.905) (end -17.145 2.54) (layer F.SilkS) (width 0.1524)) 160 | (fp_line (start -17.145 2.54) (end -15.875 2.54) (layer F.SilkS) (width 0.1524)) 161 | (fp_line (start -15.875 2.54) (end -15.24 1.905) (layer F.SilkS) (width 0.1524)) 162 | (fp_line (start -15.24 1.905) (end -14.605 2.54) (layer F.SilkS) (width 0.1524)) 163 | (fp_line (start -14.605 2.54) (end -13.335 2.54) (layer F.SilkS) (width 0.1524)) 164 | (fp_line (start -13.335 2.54) (end -12.7 1.905) (layer F.SilkS) (width 0.1524)) 165 | (fp_line (start -12.7 1.905) (end -12.065 2.54) (layer F.SilkS) (width 0.1524)) 166 | (fp_line (start -12.065 2.54) (end -10.795 2.54) (layer F.SilkS) (width 0.1524)) 167 | (fp_line (start -10.795 2.54) (end -10.16 1.905) (layer F.SilkS) (width 0.1524)) 168 | (fp_line (start -10.16 1.905) (end -9.525 2.54) (layer F.SilkS) (width 0.1524)) 169 | (fp_line (start -9.525 2.54) (end -8.255 2.54) (layer F.SilkS) (width 0.1524)) 170 | (fp_line (start -8.255 2.54) (end -7.62 1.905) (layer F.SilkS) (width 0.1524)) 171 | (fp_line (start -22.86 1.905) (end -22.86 -1.905) (layer F.SilkS) (width 0.1524)) 172 | (fp_line (start -22.86 -1.905) (end -22.225 -2.54) (layer F.SilkS) (width 0.1524)) 173 | (fp_line (start -22.225 -2.54) (end -20.955 -2.54) (layer F.SilkS) (width 0.1524)) 174 | (fp_line (start -20.955 -2.54) (end -20.32 -1.905) (layer F.SilkS) (width 0.1524)) 175 | (fp_line (start -20.32 -1.905) (end -19.685 -2.54) (layer F.SilkS) (width 0.1524)) 176 | (fp_line (start -19.685 -2.54) (end -18.415 -2.54) (layer F.SilkS) (width 0.1524)) 177 | (fp_line (start -18.415 -2.54) (end -17.78 -1.905) (layer F.SilkS) (width 0.1524)) 178 | (fp_line (start -17.78 -1.905) (end -17.145 -2.54) (layer F.SilkS) (width 0.1524)) 179 | (fp_line (start -17.145 -2.54) (end -15.875 -2.54) (layer F.SilkS) (width 0.1524)) 180 | (fp_line (start -15.875 -2.54) (end -15.24 -1.905) (layer F.SilkS) (width 0.1524)) 181 | (fp_line (start -15.24 -1.905) (end -14.605 -2.54) (layer F.SilkS) (width 0.1524)) 182 | (fp_line (start -14.605 -2.54) (end -13.335 -2.54) (layer F.SilkS) (width 0.1524)) 183 | (fp_line (start -13.335 -2.54) (end -12.7 -1.905) (layer F.SilkS) (width 0.1524)) 184 | (fp_line (start -12.7 -1.905) (end -12.065 -2.54) (layer F.SilkS) (width 0.1524)) 185 | (fp_line (start -12.065 -2.54) (end -10.795 -2.54) (layer F.SilkS) (width 0.1524)) 186 | (fp_line (start -10.795 -2.54) (end -10.16 -1.905) (layer F.SilkS) (width 0.1524)) 187 | (fp_line (start -10.16 -1.905) (end -9.525 -2.54) (layer F.SilkS) (width 0.1524)) 188 | (fp_line (start -9.525 -2.54) (end -8.255 -2.54) (layer F.SilkS) (width 0.1524)) 189 | (fp_line (start -8.255 -2.54) (end -7.62 -1.905) (layer F.SilkS) (width 0.1524)) 190 | (fp_line (start -7.62 -1.905) (end -6.985 -2.54) (layer F.SilkS) (width 0.1524)) 191 | (fp_line (start -6.985 -2.54) (end -5.715 -2.54) (layer F.SilkS) (width 0.1524)) 192 | (fp_line (start -5.715 -2.54) (end -5.08 -1.905) (layer F.SilkS) (width 0.1524)) 193 | (fp_line (start -5.08 -1.905) (end -4.445 -2.54) (layer F.SilkS) (width 0.1524)) 194 | (fp_line (start -4.445 -2.54) (end -3.175 -2.54) (layer F.SilkS) (width 0.1524)) 195 | (fp_line (start -3.175 -2.54) (end -2.54 -1.905) (layer F.SilkS) (width 0.1524)) 196 | (fp_line (start -2.54 -1.905) (end -1.905 -2.54) (layer F.SilkS) (width 0.1524)) 197 | (fp_line (start -1.905 -2.54) (end -0.635 -2.54) (layer F.SilkS) (width 0.1524)) 198 | (fp_line (start -0.635 -2.54) (end 0 -1.905) (layer F.SilkS) (width 0.1524)) 199 | (fp_line (start 0 -1.905) (end 0.635 -2.54) (layer F.SilkS) (width 0.1524)) 200 | (fp_line (start 0.635 -2.54) (end 1.905 -2.54) (layer F.SilkS) (width 0.1524)) 201 | (fp_line (start 1.905 -2.54) (end 2.54 -1.905) (layer F.SilkS) (width 0.1524)) 202 | (fp_line (start 2.54 -1.905) (end 3.175 -2.54) (layer F.SilkS) (width 0.1524)) 203 | (fp_line (start 3.175 -2.54) (end 4.445 -2.54) (layer F.SilkS) (width 0.1524)) 204 | (fp_line (start 4.445 -2.54) (end 5.08 -1.905) (layer F.SilkS) (width 0.1524)) 205 | (fp_line (start 5.08 -1.905) (end 5.715 -2.54) (layer F.SilkS) (width 0.1524)) 206 | (fp_line (start 5.715 -2.54) (end 6.985 -2.54) (layer F.SilkS) (width 0.1524)) 207 | (fp_line (start 7.62 -1.905) (end 6.985 -2.54) (layer F.SilkS) (width 0.1524)) 208 | (fp_line (start 7.62 -1.905) (end 8.255 -2.54) (layer F.SilkS) (width 0.1524)) 209 | (fp_line (start 9.525 -2.54) (end 8.255 -2.54) (layer F.SilkS) (width 0.1524)) 210 | (fp_line (start 9.525 -2.54) (end 10.16 -1.905) (layer F.SilkS) (width 0.1524)) 211 | (fp_line (start 10.16 -1.905) (end 10.795 -2.54) (layer F.SilkS) (width 0.1524)) 212 | (fp_line (start 12.065 -2.54) (end 10.795 -2.54) (layer F.SilkS) (width 0.1524)) 213 | (fp_line (start 12.065 -2.54) (end 12.7 -1.905) (layer F.SilkS) (width 0.1524)) 214 | (fp_line (start 12.7 -1.905) (end 13.335 -2.54) (layer F.SilkS) (width 0.1524)) 215 | (fp_line (start 14.605 -2.54) (end 13.335 -2.54) (layer F.SilkS) (width 0.1524)) 216 | (fp_line (start 14.605 -2.54) (end 15.24 -1.905) (layer F.SilkS) (width 0.1524)) 217 | (fp_line (start 15.24 -1.905) (end 15.875 -2.54) (layer F.SilkS) (width 0.1524)) 218 | (fp_line (start 17.145 -2.54) (end 15.875 -2.54) (layer F.SilkS) (width 0.1524)) 219 | (fp_line (start 17.145 -2.54) (end 17.78 -1.905) (layer F.SilkS) (width 0.1524)) 220 | (fp_line (start 17.78 -1.905) (end 18.415 -2.54) (layer F.SilkS) (width 0.1524)) 221 | (fp_line (start 19.685 -2.54) (end 18.415 -2.54) (layer F.SilkS) (width 0.1524)) 222 | (fp_line (start 19.685 -2.54) (end 20.32 -1.905) (layer F.SilkS) (width 0.1524)) 223 | (fp_line (start 20.32 -1.905) (end 20.955 -2.54) (layer F.SilkS) (width 0.1524)) 224 | (fp_line (start 22.225 -2.54) (end 20.955 -2.54) (layer F.SilkS) (width 0.1524)) 225 | (fp_line (start 22.225 -2.54) (end 22.86 -1.905) (layer F.SilkS) (width 0.1524)) 226 | (fp_line (start 22.86 1.905) (end 22.225 2.54) (layer F.SilkS) (width 0.1524)) 227 | (fp_line (start 22.225 2.54) (end 20.955 2.54) (layer F.SilkS) (width 0.1524)) 228 | (fp_line (start 20.32 1.905) (end 20.955 2.54) (layer F.SilkS) (width 0.1524)) 229 | (fp_line (start 20.32 1.905) (end 19.685 2.54) (layer F.SilkS) (width 0.1524)) 230 | (fp_line (start 19.685 2.54) (end 18.415 2.54) (layer F.SilkS) (width 0.1524)) 231 | (fp_line (start 17.78 1.905) (end 18.415 2.54) (layer F.SilkS) (width 0.1524)) 232 | (fp_line (start 17.78 1.905) (end 17.145 2.54) (layer F.SilkS) (width 0.1524)) 233 | (fp_line (start 15.875 2.54) (end 17.145 2.54) (layer F.SilkS) (width 0.1524)) 234 | (fp_line (start 15.875 2.54) (end 15.24 1.905) (layer F.SilkS) (width 0.1524)) 235 | (fp_line (start 15.24 1.905) (end 14.605 2.54) (layer F.SilkS) (width 0.1524)) 236 | (fp_line (start 13.335 2.54) (end 14.605 2.54) (layer F.SilkS) (width 0.1524)) 237 | (fp_line (start 13.335 2.54) (end 12.7 1.905) (layer F.SilkS) (width 0.1524)) 238 | (fp_line (start 12.7 1.905) (end 12.065 2.54) (layer F.SilkS) (width 0.1524)) 239 | (fp_line (start 12.065 2.54) (end 10.795 2.54) (layer F.SilkS) (width 0.1524)) 240 | (fp_line (start 10.16 1.905) (end 10.795 2.54) (layer F.SilkS) (width 0.1524)) 241 | (fp_line (start 10.16 1.905) (end 9.525 2.54) (layer F.SilkS) (width 0.1524)) 242 | (fp_line (start 9.525 2.54) (end 8.255 2.54) (layer F.SilkS) (width 0.1524)) 243 | (fp_line (start 7.62 1.905) (end 8.255 2.54) (layer F.SilkS) (width 0.1524)) 244 | (fp_line (start 7.62 1.905) (end 6.985 2.54) (layer F.SilkS) (width 0.1524)) 245 | (fp_line (start 6.985 2.54) (end 5.715 2.54) (layer F.SilkS) (width 0.1524)) 246 | (fp_line (start 5.08 1.905) (end 5.715 2.54) (layer F.SilkS) (width 0.1524)) 247 | (fp_line (start 5.08 1.905) (end 4.445 2.54) (layer F.SilkS) (width 0.1524)) 248 | (fp_line (start 4.445 2.54) (end 3.175 2.54) (layer F.SilkS) (width 0.1524)) 249 | (fp_line (start 2.54 1.905) (end 3.175 2.54) (layer F.SilkS) (width 0.1524)) 250 | (fp_line (start 2.54 1.905) (end 1.905 2.54) (layer F.SilkS) (width 0.1524)) 251 | (fp_line (start 1.905 2.54) (end 0.635 2.54) (layer F.SilkS) (width 0.1524)) 252 | (fp_line (start 0 1.905) (end 0.635 2.54) (layer F.SilkS) (width 0.1524)) 253 | (fp_line (start 0 1.905) (end -0.635 2.54) (layer F.SilkS) (width 0.1524)) 254 | (fp_line (start -0.635 2.54) (end -1.905 2.54) (layer F.SilkS) (width 0.1524)) 255 | (fp_line (start -2.54 1.905) (end -1.905 2.54) (layer F.SilkS) (width 0.1524)) 256 | (fp_line (start -2.54 1.905) (end -3.175 2.54) (layer F.SilkS) (width 0.1524)) 257 | (fp_line (start -3.175 2.54) (end -4.445 2.54) (layer F.SilkS) (width 0.1524)) 258 | (fp_line (start -5.08 1.905) (end -4.445 2.54) (layer F.SilkS) (width 0.1524)) 259 | (fp_line (start -5.08 1.905) (end -5.715 2.54) (layer F.SilkS) (width 0.1524)) 260 | (fp_line (start -5.715 2.54) (end -6.985 2.54) (layer F.SilkS) (width 0.1524)) 261 | (fp_line (start -7.62 1.905) (end -6.985 2.54) (layer F.SilkS) (width 0.1524)) 262 | (fp_line (start -20.32 -1.905) (end -20.32 1.905) (layer F.SilkS) (width 0.1524)) 263 | (fp_line (start -17.78 -1.905) (end -17.78 1.905) (layer F.SilkS) (width 0.1524)) 264 | (fp_line (start -15.24 -1.905) (end -15.24 1.905) (layer F.SilkS) (width 0.1524)) 265 | (fp_line (start -12.7 -1.905) (end -12.7 1.905) (layer F.SilkS) (width 0.1524)) 266 | (fp_line (start -10.16 -1.905) (end -10.16 1.905) (layer F.SilkS) (width 0.1524)) 267 | (fp_line (start -7.62 -1.905) (end -7.62 1.905) (layer F.SilkS) (width 0.1524)) 268 | (fp_line (start -5.08 -1.905) (end -5.08 1.905) (layer F.SilkS) (width 0.1524)) 269 | (fp_line (start -2.54 -1.905) (end -2.54 1.905) (layer F.SilkS) (width 0.1524)) 270 | (fp_line (start 0 -1.905) (end 0 1.905) (layer F.SilkS) (width 0.1524)) 271 | (fp_line (start 2.54 -1.905) (end 2.54 1.905) (layer F.SilkS) (width 0.1524)) 272 | (fp_line (start 5.08 -1.905) (end 5.08 1.905) (layer F.SilkS) (width 0.1524)) 273 | (fp_line (start 7.62 -1.905) (end 7.62 1.905) (layer F.SilkS) (width 0.1524)) 274 | (fp_line (start 10.16 -1.905) (end 10.16 1.905) (layer F.SilkS) (width 0.1524)) 275 | (fp_line (start 12.7 -1.905) (end 12.7 1.905) (layer F.SilkS) (width 0.1524)) 276 | (fp_line (start 15.24 -1.905) (end 15.24 1.905) (layer F.SilkS) (width 0.1524)) 277 | (fp_line (start 17.78 -1.905) (end 17.78 1.905) (layer F.SilkS) (width 0.1524)) 278 | (fp_line (start 20.32 -1.905) (end 20.32 1.905) (layer F.SilkS) (width 0.1524)) 279 | (fp_line (start 22.86 -1.905) (end 22.86 1.905) (layer F.SilkS) (width 0.1524)) 280 | (fp_text user 1 (at -23.3934 1.6764 180) (layer F.SilkS) 281 | (effects (font (size 0.8128 0.8128) (thickness 0.127))) 282 | ) 283 | (fp_text user 2 (at -23.3934 -0.8636 180) (layer F.SilkS) 284 | (effects (font (size 0.8128 0.8128) (thickness 0.127))) 285 | ) 286 | (fp_text user 35 (at 24.0538 0.8636) (layer F.SilkS) 287 | (effects (font (size 0.8128 0.8128) (thickness 0.127))) 288 | ) 289 | (fp_text user 36 (at 24.0538 -1.6764) (layer F.SilkS) 290 | (effects (font (size 0.8128 0.8128) (thickness 0.127))) 291 | ) 292 | (fp_text user 2 (at -22.7076 -1.6764) (layer F.SilkS) 293 | (effects (font (size 0.8128 0.8128) (thickness 0.127)) (justify mirror)) 294 | ) 295 | (fp_text user 1 (at -22.7076 0.8636) (layer F.SilkS) 296 | (effects (font (size 0.8128 0.8128) (thickness 0.127)) (justify mirror)) 297 | ) 298 | (fp_text user 36 (at 25.4508 -1.6764) (layer F.SilkS) 299 | (effects (font (size 0.8128 0.8128) (thickness 0.127)) (justify mirror)) 300 | ) 301 | (fp_text user 35 (at 25.4508 0.8636) (layer F.SilkS) 302 | (effects (font (size 0.8128 0.8128) (thickness 0.127)) (justify mirror)) 303 | ) 304 | (pad 1 thru_hole rect (at -21.59 1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 305 | (pad 2 thru_hole circle (at -21.59 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 306 | (pad 3 thru_hole circle (at -19.05 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 307 | (pad 4 thru_hole circle (at -19.05 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 308 | (pad 5 thru_hole circle (at -16.51 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 309 | (pad 6 thru_hole circle (at -16.51 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 310 | (pad 7 thru_hole circle (at -13.97 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 311 | (pad 8 thru_hole circle (at -13.97 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 312 | (pad 9 thru_hole circle (at -11.43 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 313 | (pad 10 thru_hole circle (at -11.43 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 314 | (pad 11 thru_hole circle (at -8.89 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 315 | (pad 12 thru_hole circle (at -8.89 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 316 | (pad 13 thru_hole circle (at -6.35 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 317 | (pad 14 thru_hole circle (at -6.35 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 318 | (pad 15 thru_hole circle (at -3.81 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 319 | (pad 16 thru_hole circle (at -3.81 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 320 | (pad 17 thru_hole circle (at -1.27 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 321 | (pad 18 thru_hole circle (at -1.27 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 322 | (pad 19 thru_hole circle (at 1.27 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 323 | (pad 20 thru_hole circle (at 1.27 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 324 | (pad 21 thru_hole circle (at 3.81 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 325 | (pad 22 thru_hole circle (at 3.81 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 326 | (pad 23 thru_hole circle (at 6.35 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 327 | (pad 24 thru_hole circle (at 6.35 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 328 | (pad 25 thru_hole circle (at 8.89 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 329 | (pad 26 thru_hole circle (at 8.89 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 330 | (pad 27 thru_hole circle (at 11.43 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 331 | (pad 28 thru_hole circle (at 11.43 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 332 | (pad 29 thru_hole circle (at 13.97 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 333 | (pad 30 thru_hole circle (at 13.97 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 334 | (pad 31 thru_hole circle (at 16.51 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 335 | (pad 32 thru_hole circle (at 16.51 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 336 | (pad 33 thru_hole circle (at 19.05 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 337 | (pad 34 thru_hole circle (at 19.05 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 338 | (pad 35 thru_hole circle (at 21.59 1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 339 | (pad 36 thru_hole circle (at 21.59 -1.27) (size 1.524 3.048) (drill 0.762) (layers *.Cu *.Paste *.Mask)) 340 | ) 341 | --------------------------------------------------------------------------------