From: Bdale Garbee Date: Sat, 12 Jun 2021 20:32:58 +0000 (-0400) Subject: add footprint for 16 MHz rock for TeleMega v5.0 X-Git-Tag: telelco-v3.0~224 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=6f7149cfdd6209185556494fa769fbc751e96bac;p=hw%2Faltusmetrum add footprint for 16 MHz rock for TeleMega v5.0 --- diff --git a/packages/FA-20H.5c b/packages/FA-20H.5c new file mode 100755 index 0000000..45e2f18 --- /dev/null +++ b/packages/FA-20H.5c @@ -0,0 +1,33 @@ +/* + * Copyright © 2020 Bdale Garbee + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + */ + +load "footprint.5c" +import Footprint; + +real width = 1.2; +real height = 1.1; +real hgap = 1.7 - width; +real vgap = 1.4 - height; + +real hpos = hgap/2 + width/2; +real vpos = vgap/2 + height/2; + +element_start("FA-20H"); + +pad_mm(-hpos, vpos,width,height,"1","1"); +pad_mm( hpos, vpos,width,height,"2","2"); +pad_mm( hpos,-vpos,width,height,"3","3"); +pad_mm(-hpos,-vpos,width,height,"4","4"); + +element_end(); diff --git a/packages/Makefile b/packages/Makefile index a09abe6..15ccd96 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -146,7 +146,8 @@ FOOTPRINTS= \ SOIJ4.fp \ SOIJ8.fp \ AT1220.fp \ - LPH.fp + LPH.fp \ + FA-20H.fp .5c.fp: nickle $*.5c -o $@