From 6f7149cfdd6209185556494fa769fbc751e96bac Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Sat, 12 Jun 2021 16:32:58 -0400 Subject: [PATCH] add footprint for 16 MHz rock for TeleMega v5.0 --- packages/FA-20H.5c | 33 +++++++++++++++++++++++++++++++++ packages/Makefile | 3 ++- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100755 packages/FA-20H.5c 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 $@ -- 2.47.2