Fix process-specific values in nickle-generated footprints
[hw/altusmetrum] / packages / pinheader / 2mmpitch.5c
1 /*
2  * Copyright © 2013 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 load "../footprint.5c";
19 import Footprint;
20
21 real pin_spacing = 2;
22 real pin_hole = 0.8;
23 real pin_copper = 0.25;
24
25 pins = atoi(argv[1]);
26 if (pins < 2) {
27         File::fprintf (stderr, "must have at least two pins\n");
28         exit(1);
29 }
30
31 element_start(sprintf ("2mm%dpin", pins));
32
33 for (int pin = 0; pin < pins; pin++)
34         pin_mm_options(pin * pin_spacing, 0, pin_hole, pin_copper,
35                        sprintf ("%d", pin + 1),
36                        sprintf ("%d", pin + 1),
37                        pin == 0 ? "square" : "");
38 element_end();
39
40
41