symbol for new 3.3V LDO
[hw/altusmetrum] / packages / CR32.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 land_width = 3.3;
22 real land_h_gap = 1.8;
23 real land_height = 4.0;
24 real land_v_gap = 1.8;
25
26 real pad_width = (land_width - land_h_gap) / 2;
27 real pad_height = (land_height - land_v_gap) / 2;
28
29 real pad_x_off = land_h_gap / 2 + pad_width / 2;
30
31 real pad_y_off = land_v_gap / 2 + pad_height / 2;
32         
33 real package_width = 3.8;
34 real package_height = 3.5;
35
36 element_start("CR32");
37
38 pad_mm(pad_x_off, -pad_y_off, pad_width, pad_height, "1", "1");
39 pad_mm(pad_x_off,  pad_y_off, pad_width, pad_height, "1", "1");
40 pad_mm(-pad_x_off, pad_y_off, pad_width, pad_height, "2", "2");
41 pad_mm(-pad_x_off, -pad_y_off, pad_width, pad_height, "2", "2");
42
43 rect(-package_width/2, -package_height/2, package_width, package_height);
44
45 element_end();