data sheet for flash part on TeleGPS v3.0
[hw/altusmetrum] / packages / 2013499-1.5c
1 /*
2  * Copyright © 2015 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 /* TE 2013499-1 USB micro B with solder tangs. Y origin is the board edge */
19
20 load "footprint.5c"
21 import Footprint;
22
23 real pad_width = 0.4;
24 real pad_height = 1.35;
25 real pad_spacing = 0.65;
26 real pad_y = 1.45 + 3.35 - pad_height/2;
27
28 real tab_width = 1.9;
29 real tab_height = 1.9;
30 real tab_x = 0.5 + tab_width / 2;
31 real tab_y = 1.45;
32
33 real tang_y = 1.45;
34 real tang_radius = 0.36;
35 real tang_length = 1.2;
36 real tang_x = 5.8/2 + tang_radius;
37 real tang_copper = 0.22;
38
39 real wing_width = 1.6;
40 real wing_height = 1.4;
41 real wing_x = 2.4 + wing_width/2;
42 real wing_y = 1.45 + 3.35 - 0.9;
43
44 real pkg_width = 6.1;
45 real pkg_height = 7.9;
46 real edge_height = 4.8;
47
48 element_start("2013499-1");
49
50 pad_mm(pad_spacing* 2, pad_y, pad_width, pad_height, "VBUS", "1");
51 pad_mm(pad_spacing* 1, pad_y, pad_width, pad_height, "D-", "2");
52 pad_mm(pad_spacing* 0, pad_y, pad_width, pad_height, "D+", "3");
53 pad_mm(pad_spacing*-1, pad_y, pad_width, pad_height, "HS", "4");
54 pad_mm(pad_spacing*-2, pad_y, pad_width, pad_height, "GND", "5");
55
56 /* "Wings", which are next to the signal pads */
57
58 pad_mm_space(-wing_x, wing_y, wing_width, wing_height, 0, "GND", "5");
59 pad_mm_space( wing_x, wing_y, wing_width, wing_height, 0, "GND", "5");
60
61 /* Tabs under package */
62
63 pad_mm_space(-tab_x, tab_y, tab_width, tab_height, 0, "GND", "5");
64 pad_mm_space( tab_x, tab_y, tab_width, tab_height, 0, "GND", "5");
65
66 /* tangs at edges of package */
67
68 pin_mm_space(-tang_x, tang_y - tang_length / 2, tang_radius * 2, tang_copper, 0, "GND", "5");
69 pin_mm_space(-tang_x, tang_y + tang_length / 2, tang_radius * 2, tang_copper, 0, "GND", "5");
70
71 pin_mm_space( tang_x, tang_y - tang_length / 2, tang_radius * 2, tang_copper, 0, "GND", "5");
72 pin_mm_space( tang_x, tang_y + tang_length / 2, tang_radius * 2, tang_copper, 0, "GND", "5");
73
74 pad_mm_space_options(-tang_x, tang_y, tang_radius * 2 + tang_copper * 2, tang_length + tang_radius * 2 + tang_copper * 2, 0, "GND", "5", "")
75 pad_mm_space_options(-tang_x, tang_y, tang_radius * 2 + tang_copper * 2, tang_length + tang_radius * 2 + tang_copper * 2, 0, "GND", "5", "onsolder")
76 pad_mm_space_options( tang_x, tang_y, tang_radius * 2 + tang_copper * 2, tang_length + tang_radius * 2 + tang_copper * 2, 0, "GND", "5", "")
77 pad_mm_space_options( tang_x, tang_y, tang_radius * 2 + tang_copper * 2, tang_length + tang_radius * 2 + tang_copper * 2, 0, "GND", "5", "onsolder")
78
79 element_end();