├── .gitignore
├── PCB
├── IDE-SSD-ZIF.pdf
├── fp-lib-table
├── sym-lib-table
├── IDE-SSD-ZIF.kicad_prl
├── cust.pretty
│ ├── WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm.kicad_mod
│ ├── OMRON_XF2U-4015-3A.kicad_mod
│ ├── doslab_logo.kicad_mod
│ └── BGA-144_12x12_9.0x9.0mm.kicad_mod
├── IDE-SSD-ZIF.kicad_pro
└── cust.kicad_sym
├── Documentation
└── onfi_3_0_gold.pdf
├── README.md
├── Case
└── doslab_ssd_case.scad
└── LICENSE
/.gitignore:
--------------------------------------------------------------------------------
1 | PCB/IDE-SSD-ZIF-backups/
2 | PCB/plots
3 |
--------------------------------------------------------------------------------
/PCB/IDE-SSD-ZIF.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dosdude1/zif-ide-ssd/HEAD/PCB/IDE-SSD-ZIF.pdf
--------------------------------------------------------------------------------
/Documentation/onfi_3_0_gold.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dosdude1/zif-ide-ssd/HEAD/Documentation/onfi_3_0_gold.pdf
--------------------------------------------------------------------------------
/PCB/fp-lib-table:
--------------------------------------------------------------------------------
1 | (fp_lib_table
2 | (lib (name "cust")(type "KiCad")(uri "${KIPRJMOD}/cust.pretty")(options "")(descr ""))
3 | )
4 |
--------------------------------------------------------------------------------
/PCB/sym-lib-table:
--------------------------------------------------------------------------------
1 | (sym_lib_table
2 | (lib (name "cust")(type "KiCad")(uri "${KIPRJMOD}/cust.kicad_sym")(options "")(descr ""))
3 | (lib (name "symbols")(type "KiCad")(uri "/home/cmis/BenqS6-SSD/pcb/symbols.kicad_sym")(options "")(descr ""))
4 | )
5 |
--------------------------------------------------------------------------------
/PCB/IDE-SSD-ZIF.kicad_prl:
--------------------------------------------------------------------------------
1 | {
2 | "board": {
3 | "active_layer": 0,
4 | "active_layer_preset": "",
5 | "auto_track_width": false,
6 | "hidden_nets": [],
7 | "high_contrast_mode": 0,
8 | "net_color_mode": 1,
9 | "opacity": {
10 | "pads": 1.0,
11 | "tracks": 1.0,
12 | "vias": 1.0,
13 | "zones": 0.6
14 | },
15 | "ratsnest_display_mode": 0,
16 | "selection_filter": {
17 | "dimensions": true,
18 | "footprints": true,
19 | "graphics": true,
20 | "keepouts": true,
21 | "lockedItems": true,
22 | "otherItems": true,
23 | "pads": true,
24 | "text": true,
25 | "tracks": true,
26 | "vias": true,
27 | "zones": true
28 | },
29 | "visible_items": [
30 | 0,
31 | 1,
32 | 2,
33 | 3,
34 | 4,
35 | 5,
36 | 8,
37 | 9,
38 | 10,
39 | 12,
40 | 13,
41 | 14,
42 | 15,
43 | 16,
44 | 17,
45 | 18,
46 | 19,
47 | 20,
48 | 21,
49 | 22,
50 | 23,
51 | 24,
52 | 25,
53 | 26,
54 | 27,
55 | 28,
56 | 29,
57 | 30,
58 | 32,
59 | 33,
60 | 34,
61 | 35,
62 | 36
63 | ],
64 | "visible_layers": "ffcffff_ffffffff",
65 | "zone_display_mode": 0
66 | },
67 | "meta": {
68 | "filename": "IDE-SSD-ZIF.kicad_prl",
69 | "version": 3
70 | },
71 | "project": {
72 | "files": []
73 | }
74 | }
75 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ZIF IDE SSD
2 |
3 | A custom-designed IDE SSD for use in any machine that utilizies a 1.8" ZIF IDE hard disk.
4 |
5 | The design is based on the Silicon Motion SM2236 controller, and is compatible with up to four 512Gbit (64GB) BGA152 or BGA132 NANDs.
6 |
7 | ## Important Info
8 |
9 | WARNING: THE SILICON MOTION SM2236 CONTROLLER PINOUT AND IMPLEMENTATION HAVE BEEN REVERSE ENGINEERED FROM OPEN DOCUMENTS AND SALVAGED PCBS, ALL OF WHICH HAVE BEEN LEGALLY OBTAINED. DO NOT EXPECT THIS TO BE CORRECT, CHECK FOR YOURSELF.
10 |
11 | ### NAND Info
12 |
13 | - The NAND ICs used on this PCB must be explicitly supported by the SM2236 controller. All supported NAND ICs are listed in the SM2236 MPTool, or "Mass Production Tool". Be sure to verify compatibility before installing NANDs.
14 |
15 | - All installed NAND ICs must match.
16 |
17 | - Check the datasheet for your desired NAND ICs to determine their rated I/O voltage, and populate the correct resistor position on the board to set either 3.3V or 1.8V. This is shown in the schematic diagram.
18 |
19 | ## Programming
20 |
21 | Upon the completion of board assembly, the SM2236 controller must be programmed for the NAND ICs you have installed. To do so, you must utilize an IDE to USB adapter to connect the drive to a PC running Windows (using native IDE for this will not work). Then, the SM2236 MPTool must be used to set all the desired drive information, select the part number of NAND ICs you have installed, and program the drive.
22 |
23 | ## 3D Printed Case
24 |
25 | In the `Case` directory you will find an OpenSCAD file to produce a case for the SSD. This has been tuned to prusaslicer with:
26 |
27 | - PETG filament
28 |
29 | - Monotonic solid infill
30 |
31 | - 0.35mm layer height
32 |
33 | - 3 perimiters
34 |
35 | It has not been printed under any other conditions. Because the case is only 8 layers thick it is very susceptible to poor bed adhesion and warping.
--------------------------------------------------------------------------------
/Case/doslab_ssd_case.scad:
--------------------------------------------------------------------------------
1 | // Created By: LogoiLab
2 | // https://doslabelectronics.com/
3 | // https://github.com/LogoiLab
4 | // LICENSE: GPL-3.0
5 | // UNITS: mm
6 | $fn = $preview ? 32 : 100;
7 |
8 | $board_thickness = 1;
9 | $board_width = 50;
10 | $board_height = 68;
11 | $case_width = 54;
12 | $case_height = 71;
13 | $case_thickness = 5;
14 | $top_components_thickness = 1.32;
15 | $bottom_components_thickness = 0.5;
16 | total_board_thickness = $board_thickness + $top_components_thickness + $bottom_components_thickness + 0.8;
17 | //total_board_thickness = 2.7;
18 |
19 | echo(total_board_thickness);
20 |
21 | body(true);
22 | translate([55,0,0]) rotate([180,0,0]) body(false);
23 |
24 | module body(main) {
25 | difference() {
26 | translate([0,0,0]) cube([$case_width, $case_height, $case_thickness], center = true);
27 | if(main) {
28 | translate([0,0,($case_thickness/2)]) cube([$case_width, $case_height, $case_thickness], center = true);
29 | //chamfer();
30 | } else {
31 | //rotate([0,180,0]) chamfer();
32 | translate([0,0,-($case_thickness/2)+1]) cube([$case_width, $case_height, $case_thickness], center = true);
33 | translate([1,32,0]) cube([23.5,8,10], center=true);
34 | translate([17,31.5,3]) #cylinder(4,1,1, center=true);
35 | }
36 | pcb();
37 | //scale([1.01,1.01,1]) translate([0,1.3,0]) linear_extrude(height = total_board_thickness, convexity = 10, center = true) import ("./IDE-SSD-ZIF-brd.svg", center = true);
38 | if (main) {
39 | holes(total_board_thickness);
40 | } else {
41 | holes(total_board_thickness * 3);
42 | }
43 | }
44 | }
45 |
46 | module holes(depth) {
47 | translate([24.5,28,0]) #cylinder(depth,0.75,0.75,center=true);
48 | rotate([0,180,0]) {
49 | translate([24.5,28,0]) #cylinder(depth,0.75,0.75,center=true);
50 | }
51 | translate([0,2,0]) rotate([180,0,0]) {
52 | translate([24.5,27.5,0]) #cylinder(depth,0.7,0.75,center=true);
53 | rotate([0,180,0]) {
54 | translate([24.5,27.5,0]) #cylinder(depth,0.75,0.75,center=true);
55 | }
56 | }
57 | }
58 |
59 | module chamfer() {
60 | translate([-($case_width/2) + 1,0,0]) difference() {
61 | cube([2, $case_height, $case_thickness], center = true);
62 | translate([0,0,1]) cube([$case_width, $case_height, $case_thickness], center = true);
63 | }
64 | translate([$case_width/2 - 1,0,0]) difference() {
65 | cube([2, $case_height, $case_thickness], center = true);
66 | translate([0,0,1]) cube([$case_width, $case_height, $case_thickness], center = true);
67 | }
68 | }
69 |
70 | module pcb() {
71 | difference() {
72 | union() {
73 | cube([$board_width,$board_height,total_board_thickness], center=true);
74 | translate([1,3,0]) cube([23.5,$board_height+3,total_board_thickness], center=true);
75 | }
76 | translate([24.5,28,0]) cube([3,3,total_board_thickness],center=true);
77 | rotate([0,180,0]) {
78 | translate([24.5,28,0]) cube([3,3,total_board_thickness],center=true);
79 | }
80 | translate([0,2,0]) rotate([180,0,0]) {
81 | translate([24.5,27.5,0]) cube([3,3,total_board_thickness],center=true);
82 | rotate([0,180,0]) {
83 | translate([24.5,27.5,0]) cube([3,3,total_board_thickness],center=true);
84 | }
85 | }
86 | }
87 | }
88 |
89 |
--------------------------------------------------------------------------------
/PCB/cust.pretty/WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm.kicad_mod:
--------------------------------------------------------------------------------
1 | (footprint "WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm" (version 20211014) (generator pcbnew)
2 | (layer "F.Cu")
3 | (tedit 5DC5FB10)
4 | (descr "WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py")
5 | (tags "WSON NoLead")
6 | (attr smd)
7 | (fp_text reference "REF**" (at 0 -2) (layer "F.SilkS")
8 | (effects (font (size 1 1) (thickness 0.15)))
9 | (tstamp 780c64d7-1a77-4d49-861e-e29a2bbb3427)
10 | )
11 | (fp_text value "WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm" (at 0 1.95) (layer "F.Fab")
12 | (effects (font (size 1 1) (thickness 0.15)))
13 | (tstamp 9536a4aa-ca1d-47f8-af3c-d813bb070100)
14 | )
15 | (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
16 | (effects (font (size 0.5 0.5) (thickness 0.08)))
17 | (tstamp f9961ff3-5a41-4643-b7d3-8092c37e64fe)
18 | )
19 | (fp_line (start -1 -1.11) (end 0 -1.11) (layer "F.SilkS") (width 0.12) (tstamp f11909ed-cd6d-4711-bc6e-4fcede03fe45))
20 | (fp_line (start -1.32 1.25) (end 1.32 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 2292a4cc-1d43-4a5a-af6d-c10235e928b8))
21 | (fp_line (start 1.32 1.25) (end 1.32 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 3e603c5e-fa87-465f-b805-bc339d216322))
22 | (fp_line (start 1.32 -1.25) (end -1.32 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 8c699b22-dcfb-4b92-862a-18a957d1b9dc))
23 | (fp_line (start -1.32 -1.25) (end -1.32 1.25) (layer "F.CrtYd") (width 0.05) (tstamp b4df9c39-44df-46a0-b55f-a5738749ec38))
24 | (fp_line (start -1 -0.5) (end -0.5 -1) (layer "F.Fab") (width 0.1) (tstamp 3a4ad05d-9106-4b1d-9593-8113624bf653))
25 | (fp_line (start 1 1) (end -1 1) (layer "F.Fab") (width 0.1) (tstamp 51bf23ed-672a-4677-8612-447abe8e021e))
26 | (fp_line (start 1 -1) (end 1 1) (layer "F.Fab") (width 0.1) (tstamp 895434e8-a508-4dfa-b827-12a0a0b5ddb2))
27 | (fp_line (start -1 1) (end -1 -0.5) (layer "F.Fab") (width 0.1) (tstamp c5ac423e-4818-4699-acf7-2fb17c133f5e))
28 | (fp_line (start -0.5 -1) (end 1 -1) (layer "F.Fab") (width 0.1) (tstamp dcf411cd-7279-4277-88b2-e3b87ab2552d))
29 | (pad "" smd roundrect (at 0 -0.4) (size 0.81 0.64) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 315a71cf-a8ee-4182-87f3-f070d7bf4282))
30 | (pad "" smd roundrect (at 0 0.4) (size 0.81 0.64) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 98432362-46c8-4d9d-92e4-4fd9dcabc7ff))
31 | (pad "1" smd roundrect (at -0.8875 -0.65) (size 0.375 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 94cc876b-64cd-455d-8d60-e263c480130b))
32 | (pad "2" smd roundrect (at -0.8875 0) (size 0.375 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp b156cb72-844c-4b35-9e8f-6f2b4493d23c))
33 | (pad "3" smd roundrect (at -0.8875 0.65) (size 0.375 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp fbfdb79b-51bd-4d79-ad67-d29c722381ab))
34 | (pad "4" smd roundrect (at 0.8875 0.65) (size 0.375 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp a6c663ae-642e-4bb8-a3fe-5037e052a9ce))
35 | (pad "5" smd roundrect (at 0.8875 0) (size 0.375 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 3a47b2f1-0773-4015-b42c-ab4eb6dba9d6))
36 | (pad "6" smd roundrect (at 0.8875 -0.65) (size 0.375 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 12bfff3c-d620-4d0a-80cb-3e0041396ced))
37 | (pad "7" smd rect (at 0 0) (size 1 1.6) (layers "F.Cu" "F.Mask") (tstamp 08809f74-f163-4af2-be75-b264c3d28cc2))
38 | (model "${KICAD6_3DMODEL_DIR}/Package_SON.3dshapes/WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm.wrl"
39 | (offset (xyz 0 0 0))
40 | (scale (xyz 1 1 1))
41 | (rotate (xyz 0 0 0))
42 | )
43 | )
44 |
--------------------------------------------------------------------------------
/PCB/cust.pretty/OMRON_XF2U-4015-3A.kicad_mod:
--------------------------------------------------------------------------------
1 | (footprint "OMRON_XF2U-4015-3A" (version 20211014) (generator pcbnew)
2 | (layer "F.Cu")
3 | (tedit 62F57997)
4 | (attr through_hole)
5 | (fp_text reference "REF**" (at 1.09243 -6.70702) (layer "F.SilkS")
6 | (effects (font (size 1.640346 1.640346) (thickness 0.15)))
7 | (tstamp fa1bbec3-2c52-4b5b-9424-7a2be9249d12)
8 | )
9 | (fp_text value "OMRON_XF2U-4015-3A" (at 13.04477 0.991715) (layer "F.Fab")
10 | (effects (font (size 1.641835 1.641835) (thickness 0.15)))
11 | (tstamp 2d5e505c-0e16-456d-a5c2-1211f8a0dacb)
12 | )
13 | (fp_line (start 9.3472 -0.762) (end 9.7536 0.0254) (layer "F.SilkS") (width 0.1524) (tstamp 001bc2d3-5236-42f2-a821-37a7e5a8cc68))
14 | (fp_line (start 10.9982 -5.0038) (end -10.9982 -5.0038) (layer "F.SilkS") (width 0.1524) (tstamp 26e00def-7355-484d-9605-0e85e55d2b3a))
15 | (fp_line (start -10.9982 -3.2512) (end -10.9982 -1.2446) (layer "F.SilkS") (width 0.1524) (tstamp 32f1c4c9-ea9f-4493-8b18-efb0170a05d3))
16 | (fp_line (start -10.9982 -5.0038) (end -10.9982 -4.7244) (layer "F.SilkS") (width 0.1524) (tstamp 6510f8b8-b0da-4b39-8e40-610deda78899))
17 | (fp_line (start -10.9982 -1.2446) (end -10.2362 -1.2446) (layer "F.SilkS") (width 0.1524) (tstamp 89435a82-02aa-4eaa-85b4-1c331e190121))
18 | (fp_line (start 10.3886 -1.2446) (end 10.9982 -1.2446) (layer "F.SilkS") (width 0.1524) (tstamp a7a3f29c-909e-4160-8a8d-6881bbe812f4))
19 | (fp_line (start 10.2362 -1.2446) (end 10.3886 -1.2446) (layer "F.SilkS") (width 0.1524) (tstamp c0dc5704-ba2e-43f6-9523-2d17d2d375e7))
20 | (fp_line (start 10.9982 -4.7244) (end 10.9982 -5.0038) (layer "F.SilkS") (width 0.1524) (tstamp c36fd147-fa9c-453e-95cc-fb09695320a2))
21 | (fp_line (start 10.9982 -1.2446) (end 10.9982 -3.2512) (layer "F.SilkS") (width 0.1524) (tstamp e504f208-3df5-4260-bd34-cc6997f92739))
22 | (fp_line (start 10.3886 -1.2446) (end 9.7536 0.0254) (layer "F.SilkS") (width 0.1524) (tstamp e79c7444-f57a-494a-9990-4cd984adbdb1))
23 | (fp_line (start 10.9982 -1.2446) (end 10.9982 -5.0038) (layer "F.Fab") (width 0.1524) (tstamp 25d35475-1355-470c-a745-312fcbaf5d2c))
24 | (fp_line (start 9.1186 -1.2446) (end 9.7536 0.0254) (layer "F.Fab") (width 0.1524) (tstamp 3af1e626-acb6-4ea9-b978-fa3f0d4929d8))
25 | (fp_line (start -10.9982 -5.0038) (end -10.9982 -1.2446) (layer "F.Fab") (width 0.1524) (tstamp 4b0db8de-be0e-4f92-a072-9025c77487f4))
26 | (fp_line (start -10.9982 -1.2446) (end 10.9982 -1.2446) (layer "F.Fab") (width 0.1524) (tstamp 4df0dd44-2be5-47e8-bd30-0c60bc9e8bf9))
27 | (fp_line (start 10.9982 -5.0038) (end -10.9982 -5.0038) (layer "F.Fab") (width 0.1524) (tstamp c6cd3a2e-197d-4583-a990-7271a75161a1))
28 | (fp_line (start 10.3886 -1.2446) (end 9.7536 0.0254) (layer "F.Fab") (width 0.1524) (tstamp fde82757-82bc-4d23-8cbc-a3822ce6364d))
29 | (pad "1" smd rect (at 9.7536 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 204870ea-3813-4584-9b3b-7f356eaa9fb3))
30 | (pad "2" smd rect (at 9.2456 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3fc4946a-0a92-4f1f-bcf0-00ba760f7d7d))
31 | (pad "3" smd rect (at 8.7376 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2fbf8689-e59c-42a7-90e7-2ce9113a78c1))
32 | (pad "4" smd rect (at 8.255 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp adea9335-a282-4dcb-9d84-d8f6472ec716))
33 | (pad "5" smd rect (at 7.747 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d8d9b161-1b00-4e44-b105-a284a98e4f16))
34 | (pad "6" smd rect (at 7.239 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1f51661b-8e29-4586-8260-35543d3078d8))
35 | (pad "7" smd rect (at 6.7564 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 18082c08-1b94-4ad3-b50d-d92a3b988709))
36 | (pad "8" smd rect (at 6.2484 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ffeaf62d-a1c5-4197-ad0f-1c3f654d6dc3))
37 | (pad "9" smd rect (at 5.7404 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9287f468-59ac-4fc5-af48-342298bf3036))
38 | (pad "10" smd rect (at 5.2578 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f99efc0f-e548-4cbd-b0bf-0787a3099f1b))
39 | (pad "11" smd rect (at 4.7498 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1b650523-c35e-447a-a35d-c38e5007e28a))
40 | (pad "12" smd rect (at 4.2418 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0be6f972-605c-430b-9880-6b1d793090ab))
41 | (pad "13" smd rect (at 3.7592 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d1b06a10-4133-4f5f-a90c-acb6c93532d6))
42 | (pad "14" smd rect (at 3.2512 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ed76236a-5f92-41b9-8adc-79b09a833f07))
43 | (pad "15" smd rect (at 2.7432 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8d211f3c-10a6-43bc-8b30-0b5a4a8cd77f))
44 | (pad "16" smd rect (at 2.2606 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a28fa21b-093e-4a4d-a513-8c745364a4cb))
45 | (pad "17" smd rect (at 1.7526 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6b09159e-e811-480d-ac72-6478c451cf61))
46 | (pad "18" smd rect (at 1.2446 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ab00f0ff-58af-43aa-b7e4-101abceb8d62))
47 | (pad "19" smd rect (at 0.762 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 89ef3bbf-000d-4aa8-b0d1-d7dbe4ede4f4))
48 | (pad "20" smd rect (at 0.254 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 795632ef-3782-4767-a441-8d9ee4792058))
49 | (pad "21" smd rect (at -0.254 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9b11de75-61c3-4a74-8998-27ddb505ecbd))
50 | (pad "22" smd rect (at -0.762 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7b249193-8ddf-405d-b440-3b9883b77d6c))
51 | (pad "23" smd rect (at -1.2446 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b6e06b39-ac44-4be6-aace-f7e1ac67d1a7))
52 | (pad "24" smd rect (at -1.7526 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e34eb2e0-33df-4362-b2b5-68dc3ed21f6f))
53 | (pad "25" smd rect (at -2.2606 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f93826c8-7141-417e-a1b5-64b49cc8bf0c))
54 | (pad "26" smd rect (at -2.7432 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e524c2c5-2a92-4afd-b544-51ea9bbcdb3c))
55 | (pad "27" smd rect (at -3.2512 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a8ac8837-26d2-4772-9a1b-563cfa23eec4))
56 | (pad "28" smd rect (at -3.7592 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a449b677-cac7-444d-97ac-f8d777e52e05))
57 | (pad "29" smd rect (at -4.2418 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b3e387a5-6b7b-46c4-9b65-5caa9b06d409))
58 | (pad "30" smd rect (at -4.7498 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 47596e41-5549-4d55-b94b-94bb4dfbe658))
59 | (pad "31" smd rect (at -5.2578 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 03a8830f-6c6f-4808-a9c2-61f01796dd71))
60 | (pad "32" smd rect (at -5.7404 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 382c6777-722d-4020-84a9-4cf42a0c182c))
61 | (pad "33" smd rect (at -6.2484 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8e352b2b-ce6e-47ce-8104-cbe4b8297f27))
62 | (pad "34" smd rect (at -6.7564 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6994fa38-3488-4b05-8fd2-1073d1b24fde))
63 | (pad "35" smd rect (at -7.239 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b8b3cd3c-bbeb-4c1e-8c6e-18e3ce2eb919))
64 | (pad "36" smd rect (at -7.747 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c4775c50-350e-4ab1-afd1-7c03b18a6408))
65 | (pad "37" smd rect (at -8.255 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1e65761f-67f6-49b5-93f4-81d0479869d5))
66 | (pad "38" smd rect (at -8.7376 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 74c9fffd-5c6f-4e0c-a5a4-d89eb7a55e30))
67 | (pad "39" smd rect (at -9.2456 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9c3781c3-aae9-4696-beb2-c963d13c6787))
68 | (pad "40" smd rect (at -9.7536 -1.4986 270) (size 0.8128 0.3048) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ecb139dd-1631-40be-902b-a1a6fee17bbf))
69 | (pad "41" smd rect (at -10.7696 -3.9878) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 86d16ff7-91b5-4cbd-b484-864e32138c11))
70 | (pad "42" smd rect (at 10.7696 -3.9878) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 43454960-8897-4b64-98bd-148d368f7d1c))
71 | )
72 |
--------------------------------------------------------------------------------
/PCB/IDE-SSD-ZIF.kicad_pro:
--------------------------------------------------------------------------------
1 | {
2 | "board": {
3 | "design_settings": {
4 | "defaults": {
5 | "board_outline_line_width": 0.049999999999999996,
6 | "copper_line_width": 0.19999999999999998,
7 | "copper_text_italic": false,
8 | "copper_text_size_h": 1.5,
9 | "copper_text_size_v": 1.5,
10 | "copper_text_thickness": 0.3,
11 | "copper_text_upright": false,
12 | "courtyard_line_width": 0.049999999999999996,
13 | "dimension_precision": 4,
14 | "dimension_units": 3,
15 | "dimensions": {
16 | "arrow_length": 1270000,
17 | "extension_offset": 500000,
18 | "keep_text_aligned": true,
19 | "suppress_zeroes": false,
20 | "text_position": 0,
21 | "units_format": 1
22 | },
23 | "fab_line_width": 0.09999999999999999,
24 | "fab_text_italic": false,
25 | "fab_text_size_h": 1.0,
26 | "fab_text_size_v": 1.0,
27 | "fab_text_thickness": 0.15,
28 | "fab_text_upright": false,
29 | "other_line_width": 0.09999999999999999,
30 | "other_text_italic": false,
31 | "other_text_size_h": 1.0,
32 | "other_text_size_v": 1.0,
33 | "other_text_thickness": 0.15,
34 | "other_text_upright": false,
35 | "pads": {
36 | "drill": 0.0,
37 | "height": 0.8128,
38 | "width": 0.4064
39 | },
40 | "silk_line_width": 0.12,
41 | "silk_text_italic": false,
42 | "silk_text_size_h": 0.7999999999999999,
43 | "silk_text_size_v": 0.7999999999999999,
44 | "silk_text_thickness": 0.12,
45 | "silk_text_upright": false,
46 | "zones": {
47 | "45_degree_only": false,
48 | "min_clearance": 0.0
49 | }
50 | },
51 | "diff_pair_dimensions": [
52 | {
53 | "gap": 0.0,
54 | "via_gap": 0.0,
55 | "width": 0.0
56 | }
57 | ],
58 | "drc_exclusions": [],
59 | "meta": {
60 | "version": 2
61 | },
62 | "rule_severities": {
63 | "annular_width": "error",
64 | "clearance": "error",
65 | "copper_edge_clearance": "error",
66 | "courtyards_overlap": "error",
67 | "diff_pair_gap_out_of_range": "error",
68 | "diff_pair_uncoupled_length_too_long": "error",
69 | "drill_out_of_range": "error",
70 | "duplicate_footprints": "warning",
71 | "extra_footprint": "warning",
72 | "footprint_type_mismatch": "error",
73 | "hole_clearance": "error",
74 | "hole_near_hole": "error",
75 | "invalid_outline": "error",
76 | "item_on_disabled_layer": "error",
77 | "items_not_allowed": "error",
78 | "length_out_of_range": "error",
79 | "malformed_courtyard": "error",
80 | "microvia_drill_out_of_range": "error",
81 | "missing_courtyard": "ignore",
82 | "missing_footprint": "warning",
83 | "net_conflict": "warning",
84 | "npth_inside_courtyard": "ignore",
85 | "padstack": "error",
86 | "pth_inside_courtyard": "ignore",
87 | "shorting_items": "error",
88 | "silk_over_copper": "error",
89 | "silk_overlap": "error",
90 | "skew_out_of_range": "error",
91 | "through_hole_pad_without_hole": "error",
92 | "too_many_vias": "error",
93 | "track_dangling": "warning",
94 | "track_width": "error",
95 | "tracks_crossing": "error",
96 | "unconnected_items": "error",
97 | "unresolved_variable": "error",
98 | "via_dangling": "warning",
99 | "zone_has_empty_net": "error",
100 | "zones_intersect": "error"
101 | },
102 | "rules": {
103 | "allow_blind_buried_vias": false,
104 | "allow_microvias": false,
105 | "max_error": 0.005,
106 | "min_clearance": 0.0,
107 | "min_copper_edge_clearance": 0.024999999999999998,
108 | "min_hole_clearance": 0.0,
109 | "min_hole_to_hole": 0.25,
110 | "min_microvia_diameter": 0.19999999999999998,
111 | "min_microvia_drill": 0.09999999999999999,
112 | "min_silk_clearance": 0.0,
113 | "min_through_hole_diameter": 0.19999999999999998,
114 | "min_track_width": 0.09999999999999999,
115 | "min_via_annular_width": 0.049999999999999996,
116 | "min_via_diameter": 0.44999999999999996,
117 | "solder_mask_clearance": 0.0,
118 | "solder_mask_min_width": 0.0,
119 | "use_height_for_length_calcs": true
120 | },
121 | "track_widths": [
122 | 0.0,
123 | 0.2,
124 | 0.3,
125 | 0.5
126 | ],
127 | "via_dimensions": [
128 | {
129 | "diameter": 0.0,
130 | "drill": 0.0
131 | }
132 | ],
133 | "zones_allow_external_fillets": false,
134 | "zones_use_no_outline": true
135 | },
136 | "layer_presets": []
137 | },
138 | "boards": [],
139 | "cvpcb": {
140 | "equivalence_files": []
141 | },
142 | "erc": {
143 | "erc_exclusions": [],
144 | "meta": {
145 | "version": 0
146 | },
147 | "pin_map": [
148 | [
149 | 0,
150 | 0,
151 | 0,
152 | 0,
153 | 0,
154 | 0,
155 | 1,
156 | 0,
157 | 0,
158 | 0,
159 | 0,
160 | 2
161 | ],
162 | [
163 | 0,
164 | 2,
165 | 0,
166 | 1,
167 | 0,
168 | 0,
169 | 1,
170 | 0,
171 | 2,
172 | 2,
173 | 2,
174 | 2
175 | ],
176 | [
177 | 0,
178 | 0,
179 | 0,
180 | 0,
181 | 0,
182 | 0,
183 | 1,
184 | 0,
185 | 1,
186 | 0,
187 | 1,
188 | 2
189 | ],
190 | [
191 | 0,
192 | 1,
193 | 0,
194 | 0,
195 | 0,
196 | 0,
197 | 1,
198 | 1,
199 | 2,
200 | 1,
201 | 1,
202 | 2
203 | ],
204 | [
205 | 0,
206 | 0,
207 | 0,
208 | 0,
209 | 0,
210 | 0,
211 | 1,
212 | 0,
213 | 0,
214 | 0,
215 | 0,
216 | 2
217 | ],
218 | [
219 | 0,
220 | 0,
221 | 0,
222 | 0,
223 | 0,
224 | 0,
225 | 0,
226 | 0,
227 | 0,
228 | 0,
229 | 0,
230 | 2
231 | ],
232 | [
233 | 1,
234 | 1,
235 | 1,
236 | 1,
237 | 1,
238 | 0,
239 | 1,
240 | 1,
241 | 1,
242 | 1,
243 | 1,
244 | 2
245 | ],
246 | [
247 | 0,
248 | 0,
249 | 0,
250 | 1,
251 | 0,
252 | 0,
253 | 1,
254 | 0,
255 | 0,
256 | 0,
257 | 0,
258 | 2
259 | ],
260 | [
261 | 0,
262 | 2,
263 | 1,
264 | 2,
265 | 0,
266 | 0,
267 | 1,
268 | 0,
269 | 2,
270 | 2,
271 | 2,
272 | 2
273 | ],
274 | [
275 | 0,
276 | 2,
277 | 0,
278 | 1,
279 | 0,
280 | 0,
281 | 1,
282 | 0,
283 | 2,
284 | 0,
285 | 0,
286 | 2
287 | ],
288 | [
289 | 0,
290 | 2,
291 | 1,
292 | 1,
293 | 0,
294 | 0,
295 | 1,
296 | 0,
297 | 2,
298 | 0,
299 | 0,
300 | 2
301 | ],
302 | [
303 | 2,
304 | 2,
305 | 2,
306 | 2,
307 | 2,
308 | 2,
309 | 2,
310 | 2,
311 | 2,
312 | 2,
313 | 2,
314 | 2
315 | ]
316 | ],
317 | "rule_severities": {
318 | "bus_definition_conflict": "error",
319 | "bus_entry_needed": "error",
320 | "bus_label_syntax": "error",
321 | "bus_to_bus_conflict": "error",
322 | "bus_to_net_conflict": "error",
323 | "different_unit_footprint": "error",
324 | "different_unit_net": "error",
325 | "duplicate_reference": "error",
326 | "duplicate_sheet_names": "error",
327 | "extra_units": "error",
328 | "global_label_dangling": "warning",
329 | "hier_label_mismatch": "error",
330 | "label_dangling": "error",
331 | "lib_symbol_issues": "warning",
332 | "multiple_net_names": "warning",
333 | "net_not_bus_member": "warning",
334 | "no_connect_connected": "warning",
335 | "no_connect_dangling": "warning",
336 | "pin_not_connected": "error",
337 | "pin_not_driven": "error",
338 | "pin_to_pin": "warning",
339 | "power_pin_not_driven": "error",
340 | "similar_labels": "warning",
341 | "unannotated": "error",
342 | "unit_value_mismatch": "error",
343 | "unresolved_variable": "error",
344 | "wire_dangling": "error"
345 | }
346 | },
347 | "libraries": {
348 | "pinned_footprint_libs": [],
349 | "pinned_symbol_libs": []
350 | },
351 | "meta": {
352 | "filename": "IDE-SSD-ZIF.kicad_pro",
353 | "version": 1
354 | },
355 | "net_settings": {
356 | "classes": [
357 | {
358 | "bus_width": 12.0,
359 | "clearance": 0.1,
360 | "diff_pair_gap": 0.25,
361 | "diff_pair_via_gap": 0.25,
362 | "diff_pair_width": 0.2,
363 | "line_style": 0,
364 | "microvia_diameter": 0.3,
365 | "microvia_drill": 0.1,
366 | "name": "Default",
367 | "pcb_color": "rgba(0, 0, 0, 0.000)",
368 | "schematic_color": "rgba(0, 0, 0, 0.000)",
369 | "track_width": 0.1,
370 | "via_diameter": 0.45,
371 | "via_drill": 0.2,
372 | "wire_width": 6.0
373 | }
374 | ],
375 | "meta": {
376 | "version": 2
377 | },
378 | "net_colors": null
379 | },
380 | "pcbnew": {
381 | "last_paths": {
382 | "gencad": "",
383 | "idf": "",
384 | "netlist": "IDE-SSD-ZIF.net",
385 | "specctra_dsn": "",
386 | "step": "",
387 | "vrml": ""
388 | },
389 | "page_layout_descr_file": ""
390 | },
391 | "schematic": {
392 | "annotate_start_num": 0,
393 | "drawing": {
394 | "default_line_thickness": 6.0,
395 | "default_text_size": 50.0,
396 | "field_names": [],
397 | "intersheets_ref_own_page": false,
398 | "intersheets_ref_prefix": "",
399 | "intersheets_ref_short": false,
400 | "intersheets_ref_show": false,
401 | "intersheets_ref_suffix": "",
402 | "junction_size_choice": 3,
403 | "label_size_ratio": 0.375,
404 | "pin_symbol_size": 25.0,
405 | "text_offset_ratio": 0.15
406 | },
407 | "legacy_lib_dir": "",
408 | "legacy_lib_list": [],
409 | "meta": {
410 | "version": 1
411 | },
412 | "net_format_name": "KiCad",
413 | "ngspice": {
414 | "fix_include_paths": true,
415 | "fix_passive_vals": false,
416 | "meta": {
417 | "version": 0
418 | },
419 | "model_mode": 0,
420 | "workbook_filename": ""
421 | },
422 | "page_layout_descr_file": "",
423 | "plot_directory": "./",
424 | "spice_adjust_passive_values": false,
425 | "spice_external_command": "spice \"%I\"",
426 | "subpart_first_id": 65,
427 | "subpart_id_separator": 0
428 | },
429 | "sheets": [
430 | [
431 | "2c3c6e1c-7a92-45fe-9c96-bb14be9bd723",
432 | ""
433 | ]
434 | ],
435 | "text_variables": {}
436 | }
437 |
--------------------------------------------------------------------------------
/PCB/cust.pretty/doslab_logo.kicad_mod:
--------------------------------------------------------------------------------
1 | (footprint "LOGO" (version 20210606) (generator bitmap2component) (layer "F.Cu")
2 | (at 0 0)
3 | (attr board_only exclude_from_pos_files exclude_from_bom)
4 | (fp_text reference "G***" (at 0 0) (layer F.SilkS)
5 | (effects (font (thickness 0.3)))
6 | )
7 | (fp_text value "LOGO" (at 0.75 0) (layer F.SilkS) hide
8 | (effects (font (thickness 0.3)))
9 | )
10 | (fp_poly (pts (xy -2.167346 -4.322720) (xy -1.961858 -4.322512) (xy -1.769398 -4.322323) (xy -1.589479 -4.322145) (xy -1.421614 -4.321970) (xy -1.265317 -4.321789) (xy -1.120101 -4.321595) (xy -0.985479 -4.321380)
11 | (xy -0.860964 -4.321135) (xy -0.746071 -4.320852) (xy -0.640312 -4.320524) (xy -0.543201 -4.320142) (xy -0.454250 -4.319698) (xy -0.372974 -4.319184) (xy -0.298886 -4.318592) (xy -0.231499 -4.317914)
12 | (xy -0.170326 -4.317142) (xy -0.114881 -4.316268) (xy -0.064677 -4.315284) (xy -0.019228 -4.314181) (xy 0.021954 -4.312952) (xy 0.059354 -4.311588) (xy 0.093460 -4.310082) (xy 0.124759 -4.308426)
13 | (xy 0.153736 -4.306610) (xy 0.180878 -4.304628) (xy 0.206673 -4.302471) (xy 0.231606 -4.300132) (xy 0.256165 -4.297601) (xy 0.280836 -4.294871) (xy 0.306105 -4.291934) (xy 0.332460 -4.288782)
14 | (xy 0.360387 -4.285407) (xy 0.390373 -4.281801) (xy 0.404961 -4.280066) (xy 0.666809 -4.243481) (xy 0.920161 -4.196675) (xy 1.165530 -4.139499) (xy 1.403431 -4.071803) (xy 1.634378 -3.993437)
15 | (xy 1.858885 -3.904253) (xy 2.077466 -3.804102) (xy 2.125113 -3.780429) (xy 2.333576 -3.668176) (xy 2.532476 -3.546424) (xy 2.721683 -3.415349) (xy 2.901067 -3.275129) (xy 3.070499 -3.125941)
16 | (xy 3.229847 -2.967962) (xy 3.378984 -2.801371) (xy 3.517777 -2.626343) (xy 3.646099 -2.443057) (xy 3.763819 -2.251690) (xy 3.870807 -2.052419) (xy 3.966933 -1.845421) (xy 4.052068 -1.630873)
17 | (xy 4.126082 -1.408954) (xy 4.188844 -1.179839) (xy 4.240225 -0.943708) (xy 4.252813 -0.874886) (xy 4.280421 -0.693233) (xy 4.301375 -0.502714) (xy 4.315573 -0.306283) (xy 4.322912 -0.106895)
18 | (xy 4.323292 0.092498) (xy 4.316610 0.288939) (xy 4.302762 0.479476) (xy 4.300462 0.503347) (xy 4.270024 0.747453) (xy 4.227776 0.985545) (xy 4.173785 1.217455) (xy 4.108120 1.443015)
19 | (xy 4.030850 1.662057) (xy 3.942041 1.874415) (xy 3.841763 2.079921) (xy 3.730084 2.278407) (xy 3.607071 2.469705) (xy 3.472794 2.653648) (xy 3.376587 2.772660) (xy 3.341355 2.813051)
20 | (xy 3.298169 2.860189) (xy 3.249061 2.912037) (xy 3.196063 2.966561) (xy 3.141205 3.021725) (xy 3.086519 3.075493) (xy 3.034035 3.125829) (xy 2.985786 3.170698) (xy 2.943802 3.208065)
21 | (xy 2.932588 3.217628) (xy 2.746237 3.365722) (xy 2.551402 3.503339) (xy 2.348178 3.630445) (xy 2.136658 3.747008) (xy 1.916936 3.852993) (xy 1.689107 3.948368) (xy 1.453263 4.033098)
22 | (xy 1.209499 4.107151) (xy 0.957909 4.170494) (xy 0.698587 4.223092) (xy 0.431625 4.264912) (xy 0.157119 4.295921) (xy -0.124838 4.316085) (xy -0.155414 4.317597) (xy -0.177575 4.318312)
23 | (xy -0.212988 4.318993) (xy -0.261390 4.319638) (xy -0.322519 4.320247) (xy -0.396113 4.320819) (xy -0.481909 4.321353) (xy -0.579645 4.321849) (xy -0.689058 4.322306) (xy -0.809886 4.322722)
24 | (xy -0.941866 4.323097) (xy -1.084737 4.323430) (xy -1.238235 4.323720) (xy -1.402099 4.323967) (xy -1.576065 4.324169) (xy -1.759872 4.324326) (xy -1.953257 4.324436) (xy -2.155958 4.324500)
25 | (xy -2.312624 4.324516) (xy -4.324555 4.324554) (xy -4.324555 3.054637) (xy -3.054217 3.054637) (xy -1.528798 3.052381) (xy -1.357994 3.052122) (xy -1.200151 3.051867) (xy -1.054716 3.051610)
26 | (xy -0.921138 3.051349) (xy -0.798862 3.051077) (xy -0.687336 3.050790) (xy -0.586008 3.050483) (xy -0.494325 3.050152) (xy -0.411733 3.049792) (xy -0.337680 3.049398) (xy -0.271613 3.048966)
27 | (xy -0.212980 3.048490) (xy -0.161227 3.047967) (xy -0.115802 3.047392) (xy -0.076151 3.046759) (xy -0.041723 3.046064) (xy -0.011964 3.045303) (xy 0.013679 3.044471) (xy 0.035758 3.043563)
28 | (xy 0.054826 3.042574) (xy 0.071436 3.041499) (xy 0.086142 3.040335) (xy 0.099494 3.039076) (xy 0.104735 3.038529) (xy 0.298308 3.014783) (xy 0.480794 2.986093) (xy 0.653843 2.952031)
29 | (xy 0.819106 2.912167) (xy 0.978233 2.866075) (xy 1.132875 2.813325) (xy 1.284680 2.753490) (xy 1.401003 2.702168) (xy 1.576378 2.614153) (xy 1.744003 2.515667) (xy 1.903415 2.407134)
30 | (xy 2.054148 2.288980) (xy 2.195737 2.161628) (xy 2.327718 2.025504) (xy 2.449626 1.881032) (xy 2.560997 1.728638) (xy 2.661365 1.568745) (xy 2.683105 1.530486) (xy 2.765580 1.369494)
31 | (xy 2.838622 1.199847) (xy 2.901782 1.022988) (xy 2.954607 0.840360) (xy 2.996648 0.653407) (xy 3.027452 0.463570) (xy 3.034429 0.406323) (xy 3.042313 0.336269) (xy 3.022925 0.320084)
32 | (xy 2.950433 0.266771) (xy 2.866074 0.217492) (xy 2.770946 0.172453) (xy 2.666141 0.131858) (xy 2.552755 0.095912) (xy 2.431883 0.064820) (xy 2.304619 0.038787) (xy 2.172058 0.018018)
33 | (xy 2.035296 0.002717) (xy 1.895426 -0.006910) (xy 1.753544 -0.010659) (xy 1.610744 -0.008325) (xy 1.468121 0.000298) (xy 1.367773 0.010325) (xy 1.326114 0.015513) (xy 1.282322 0.021512)
34 | (xy 1.238674 0.027954) (xy 1.197447 0.034467) (xy 1.160919 0.040681) (xy 1.131368 0.046227) (xy 1.111069 0.050732) (xy 1.102914 0.053399) (xy 1.104797 0.059416) (xy 1.115288 0.073544)
35 | (xy 1.133207 0.094578) (xy 1.157372 0.121314) (xy 1.186604 0.152546) (xy 1.219721 0.187068) (xy 1.255542 0.223676) (xy 1.292886 0.261164) (xy 1.330573 0.298327) (xy 1.367422 0.333960)
36 | (xy 1.402251 0.366857) (xy 1.433881 0.395814) (xy 1.461130 0.419625) (xy 1.464508 0.422462) (xy 1.557879 0.496056) (xy 1.647972 0.557844) (xy 1.736335 0.608644) (xy 1.824515 0.649272)
37 | (xy 1.914061 0.680547) (xy 1.989970 0.699867) (xy 2.039051 0.707419) (xy 2.097079 0.711527) (xy 2.159939 0.712226) (xy 2.223519 0.709548) (xy 2.283706 0.703526) (xy 2.322400 0.697184)
38 | (xy 2.420076 0.673426) (xy 2.518388 0.640507) (xy 2.618557 0.597865) (xy 2.721807 0.544936) (xy 2.829361 0.481159) (xy 2.917775 0.423006) (xy 2.949462 0.401337) (xy 2.978192 0.381693)
39 | (xy 3.001676 0.365639) (xy 3.017622 0.354743) (xy 3.022511 0.351406) (xy 3.027179 0.349713) (xy 3.023362 0.356487) (xy 3.012078 0.370589) (xy 2.994346 0.390878) (xy 2.971185 0.416215)
40 | (xy 2.943614 0.445458) (xy 2.912651 0.477468) (xy 2.883960 0.506468) (xy 2.780014 0.603992) (xy 2.676544 0.688127) (xy 2.573376 0.758984) (xy 2.470335 0.816674) (xy 2.367247 0.861306)
41 | (xy 2.280526 0.888777) (xy 2.225300 0.900063) (xy 2.161369 0.907711) (xy 2.093088 0.911552) (xy 2.024813 0.911417) (xy 1.960899 0.907141) (xy 1.925994 0.902439) (xy 1.835831 0.883198)
42 | (xy 1.743583 0.855080) (xy 1.648054 0.817583) (xy 1.548045 0.770209) (xy 1.442361 0.712456) (xy 1.375597 0.672534) (xy 1.332209 0.645383) (xy 1.287573 0.616518) (xy 1.240401 0.585042)
43 | (xy 1.189401 0.550054) (xy 1.133286 0.510656) (xy 1.070764 0.465950) (xy 1.000547 0.415037) (xy 0.921345 0.357018) (xy 0.894619 0.337340) (xy 0.794589 0.263848) (xy 0.704082 0.197891)
44 | (xy 0.621961 0.138703) (xy 0.547084 0.085520) (xy 0.478313 0.037573) (xy 0.414509 -0.005903) (xy 0.354532 -0.045674) (xy 0.297241 -0.082506) (xy 0.241500 -0.117166) (xy 0.186166 -0.150421)
45 | (xy 0.130102 -0.183036) (xy 0.072168 -0.215777) (xy 0.072007 -0.215867) (xy -0.089629 -0.300330) (xy -0.249459 -0.372059) (xy -0.408933 -0.431438) (xy -0.569497 -0.478849) (xy -0.732600 -0.514675)
46 | (xy -0.899691 -0.539300) (xy -1.072216 -0.553107) (xy -1.216281 -0.556621) (xy -1.343970 -0.554268) (xy -1.462209 -0.546543) (xy -1.574149 -0.532970) (xy -1.682939 -0.513068) (xy -1.791727 -0.486359)
47 | (xy -1.903662 -0.452366) (xy -1.904821 -0.451984) (xy -2.045277 -0.398919) (xy -2.177180 -0.335457) (xy -2.300397 -0.261774) (xy -2.414792 -0.178045) (xy -2.520230 -0.084446) (xy -2.616577 0.018848)
48 | (xy -2.703698 0.131660) (xy -2.781458 0.253814) (xy -2.849722 0.385137) (xy -2.908356 0.525451) (xy -2.957224 0.674581) (xy -2.996193 0.832351) (xy -3.025126 0.998586) (xy -3.026725 1.010188)
49 | (xy -3.030549 1.038853) (xy -3.033999 1.066129) (xy -3.037096 1.092825) (xy -3.039858 1.119746) (xy -3.042304 1.147700) (xy -3.044454 1.177492) (xy -3.046326 1.209929) (xy -3.047940 1.245818)
50 | (xy -3.049315 1.285965) (xy -3.050471 1.331177) (xy -3.051425 1.382260) (xy -3.052199 1.440021) (xy -3.052810 1.505266) (xy -3.053277 1.578802) (xy -3.053621 1.661436) (xy -3.053860 1.753973)
51 | (xy -3.054013 1.857221) (xy -3.054100 1.971986) (xy -3.054140 2.099075) (xy -3.054147 2.164176) (xy -3.054217 3.054637) (xy -4.324555 3.054637) (xy -4.324555 -0.804097) (xy -3.054217 -0.804097)
52 | (xy -2.290663 -0.804097) (xy -2.290663 -1.067625) (xy -3.054217 -1.067625) (xy -3.054217 -0.804097) (xy -4.324555 -0.804097) (xy -4.324555 -1.567651) (xy -3.054217 -1.567651) (xy -2.290663 -1.567651)
53 | (xy -2.290663 -1.831179) (xy -3.054217 -1.831179) (xy -3.054217 -1.567651) (xy -4.324555 -1.567651) (xy -4.324555 -2.331206) (xy -3.054217 -2.331206) (xy -2.290663 -2.331206) (xy -2.290663 -2.594733)
54 | (xy -3.054217 -2.594733) (xy -3.054217 -2.331206) (xy -4.324555 -2.331206) (xy -4.324555 -3.094760) (xy -3.054217 -3.094760) (xy -2.290663 -3.094760) (xy -2.290663 -3.358287) (xy -3.054217 -3.358287)
55 | (xy -3.054217 -3.094760) (xy -4.324555 -3.094760) (xy -4.324555 -4.324954) )(layer F.SilkS) (width 0.000000)
56 | )
57 | (fp_poly (pts (xy -1.743984 1.343449) (xy -1.679710 1.360416) (xy -1.619850 1.389475) (xy -1.563056 1.431190) (xy -1.538995 1.453402) (xy -1.511263 1.481979) (xy -1.490860 1.507003) (xy -1.474387 1.533136)
58 | (xy -1.460080 1.561516) (xy -1.433994 1.632025) (xy -1.421343 1.703013) (xy -1.422093 1.773851) (xy -1.436210 1.843908) (xy -1.463661 1.912556) (xy -1.480639 1.943294) (xy -1.516743 1.991614)
59 | (xy -1.563141 2.035665) (xy -1.616771 2.073251) (xy -1.674573 2.102179) (xy -1.724730 2.118328) (xy -1.767455 2.125114) (xy -1.815738 2.127552) (xy -1.863799 2.125656) (xy -1.905857 2.119441)
60 | (xy -1.912264 2.117885) (xy -1.980035 2.093373) (xy -2.041702 2.057459) (xy -2.096049 2.011342) (xy -2.141860 1.956218) (xy -2.177919 1.893286) (xy -2.199990 1.834557) (xy -2.209968 1.782339)
61 | (xy -2.212052 1.724323) (xy -2.206395 1.665568) (xy -2.193294 1.611572) (xy -2.163894 1.543753) (xy -2.124325 1.484177) (xy -2.075698 1.433646) (xy -2.019125 1.392961) (xy -1.955719 1.362925)
62 | (xy -1.886591 1.344340) (xy -1.814017 1.338008) )(layer F.SilkS) (width 0.000000)
63 | )
64 | (fp_poly (pts (xy -0.792965 0.587563) (xy -0.718803 0.606330) (xy -0.649675 0.636717) (xy -0.586683 0.677925) (xy -0.530926 0.729156) (xy -0.483506 0.789615) (xy -0.445523 0.858501) (xy -0.428226 0.902075)
65 | (xy -0.420280 0.926548) (xy -0.414956 0.947867) (xy -0.411744 0.969917) (xy -0.410132 0.996586) (xy -0.409611 1.031760) (xy -0.409592 1.043974) (xy -0.409891 1.082273) (xy -0.411131 1.110946)
66 | (xy -0.413823 1.133878) (xy -0.418477 1.154949) (xy -0.425605 1.178042) (xy -0.428278 1.185873) (xy -0.447451 1.235332) (xy -0.468944 1.277092) (xy -0.495483 1.315431) (xy -0.529793 1.354629)
67 | (xy -0.546826 1.372028) (xy -0.597805 1.417703) (xy -0.648965 1.452294) (xy -0.703767 1.477829) (xy -0.754159 1.493511) (xy -0.809197 1.503196) (xy -0.870118 1.506586) (xy -0.931172 1.503691)
68 | (xy -0.986606 1.494517) (xy -0.991840 1.493196) (xy -1.059616 1.468739) (xy -1.123987 1.432598) (xy -1.182983 1.386529) (xy -1.234632 1.332286) (xy -1.276961 1.271625) (xy -1.304823 1.214616)
69 | (xy -1.327450 1.139703) (xy -1.336688 1.063681) (xy -1.332565 0.987079) (xy -1.315106 0.910428) (xy -1.286113 0.837882) (xy -1.270045 0.806543) (xy -1.254476 0.781203) (xy -1.236358 0.757709)
70 | (xy -1.212645 0.731910) (xy -1.196164 0.715282) (xy -1.136982 0.664086) (xy -1.074844 0.625691) (xy -1.008306 0.599502) (xy -0.935923 0.584922) (xy -0.871060 0.581211) )(layer F.SilkS) (width 0.000000)
71 | )
72 | (fp_poly (pts (xy -1.682712 0.106513) (xy -1.677513 0.107414) (xy -1.619591 0.124181) (xy -1.569210 0.150780) (xy -1.526862 0.185666) (xy -1.493041 0.227292) (xy -1.468242 0.274115) (xy -1.452957 0.324588)
73 | (xy -1.447680 0.377168) (xy -1.452904 0.430308) (xy -1.469124 0.482464) (xy -1.496832 0.532090) (xy -1.529482 0.570826) (xy -1.569268 0.604887) (xy -1.610760 0.627955) (xy -1.657337 0.641456)
74 | (xy -1.709551 0.646724) (xy -1.745082 0.647192) (xy -1.771746 0.645383) (xy -1.794070 0.640804) (xy -1.809098 0.635850) (xy -1.864859 0.608515) (xy -1.911573 0.571836) (xy -1.948417 0.527078)
75 | (xy -1.974567 0.475502) (xy -1.989201 0.418373) (xy -1.991494 0.356954) (xy -1.991436 0.356093) (xy -1.981287 0.299696) (xy -1.959882 0.248020) (xy -1.928785 0.202303) (xy -1.889562 0.163786)
76 | (xy -1.843777 0.133709) (xy -1.792998 0.113311) (xy -1.738787 0.103832) )(layer F.SilkS) (width 0.000000)
77 | )
78 | )
79 |
--------------------------------------------------------------------------------
/PCB/cust.pretty/BGA-144_12x12_9.0x9.0mm.kicad_mod:
--------------------------------------------------------------------------------
1 | (footprint "BGA-144_12x12_9.0x9.0mm" (version 20211014) (generator pcbnew)
2 | (layer "F.Cu")
3 | (tedit 5F87D150)
4 | (attr smd)
5 | (fp_text reference "REF**" (at 0 -5.5) (layer "F.SilkS")
6 | (effects (font (size 1 1) (thickness 0.15)))
7 | (tstamp 9f3f6f0a-ec43-49db-aa5f-7ed0580b3b20)
8 | )
9 | (fp_text value "BGA-144_12x12_9.0x9.0mm" (at 0 5.5) (layer "F.Fab")
10 | (effects (font (size 1 1) (thickness 0.15)))
11 | (tstamp ee2bb4b0-56e6-429e-bf3a-ee357607852d)
12 | )
13 | (fp_line (start 2.37 -4.62) (end 4.62 -4.62) (layer "F.SilkS") (width 0.12) (tstamp 1fe0befe-63c4-485b-87d6-220e1bee0284))
14 | (fp_line (start 4.62 -4.62) (end 4.62 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 30d7d608-ca09-42d2-86e4-672ac9dcb746))
15 | (fp_line (start 2.37 -4.62) (end 4.62 -4.62) (layer "F.SilkS") (width 0.12) (tstamp 34f19e92-5858-4584-9b82-857704cc3251))
16 | (fp_line (start 2.37 -4.62) (end 4.62 -4.62) (layer "F.SilkS") (width 0.12) (tstamp 39cee737-72c9-4831-9afb-206bf4218e2b))
17 | (fp_line (start 2.37 4.62) (end 4.62 4.62) (layer "F.SilkS") (width 0.12) (tstamp 3a874777-24a3-4d14-ada3-34bd664f1e48))
18 | (fp_line (start -4.62 -3.5) (end -4.62 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 41f6e6d0-477a-4d1f-8e0f-ef0d20a674d1))
19 | (fp_line (start 4.62 -4.62) (end 4.62 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 4a0a9b05-6ceb-4d29-811e-77984430d6c4))
20 | (fp_line (start 4.62 -4.62) (end 4.62 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 4c084aa8-5998-402b-bf74-0503a390718b))
21 | (fp_line (start -4.62 4.62) (end -4.62 2.37) (layer "F.SilkS") (width 0.12) (tstamp 62f044ca-143e-48fb-8d80-b4f37ce514b7))
22 | (fp_line (start 4.62 4.62) (end 4.62 2.37) (layer "F.SilkS") (width 0.12) (tstamp a90feaaa-0fef-47ba-85ed-b41bb0e3023b))
23 | (fp_line (start -2.37 -4.62) (end -3.5 -4.62) (layer "F.SilkS") (width 0.12) (tstamp f1794ba6-629b-48cf-a273-7904ab95c5c8))
24 | (fp_line (start -2.37 4.62) (end -4.62 4.62) (layer "F.SilkS") (width 0.12) (tstamp f8a23601-3815-498c-a6b5-c3d18cecc608))
25 | (fp_circle (center -4.5 -4.5) (end -4.5 -4.4) (layer "F.SilkS") (width 0.2) (fill none) (tstamp 278660e5-3695-40c9-b156-32bd2d476d29))
26 | (fp_line (start -4.75 4.75) (end -4.75 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 06776c89-1006-4ff7-a297-a1bb41883f47))
27 | (fp_line (start 4.75 -4.75) (end 4.75 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 34d9d548-8897-4b5e-91af-b685bb98f744))
28 | (fp_line (start -4.75 -4.75) (end 4.75 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 568b3605-d160-4d8d-93a4-ef88ec5b060f))
29 | (fp_line (start 4.75 4.75) (end -4.75 4.75) (layer "F.CrtYd") (width 0.05) (tstamp bf9e4d36-8888-496c-ac53-6dad47e776c5))
30 | (fp_line (start -4.5 4.5) (end 4.5 4.5) (layer "F.Fab") (width 0.1) (tstamp 37340251-05b4-47e0-bc83-2c0332691a2d))
31 | (fp_line (start -4.5 -3.5) (end -4.5 4.5) (layer "F.Fab") (width 0.1) (tstamp 9f70ce01-55ed-4d86-a00b-b72edaa6332c))
32 | (fp_line (start 4.5 -4.5) (end -3.5 -4.5) (layer "F.Fab") (width 0.1) (tstamp aba1c77b-23ca-48ba-b7c1-030517a77c64))
33 | (fp_line (start 4.5 4.5) (end 4.5 -4.5) (layer "F.Fab") (width 0.1) (tstamp b1678b4f-964a-4fee-8dbf-22a8f642a7db))
34 | (pad "A1" smd circle (at -4.125 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d7884cb9-5e54-43e0-8ee9-b24d5e1e8882))
35 | (pad "A2" smd circle (at -3.375 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7ec82e3d-d032-4cd0-99e7-20342da271dc))
36 | (pad "A3" smd circle (at -2.625 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c7f98a9e-8450-4b94-af0d-7a9a0e486821))
37 | (pad "A4" smd circle (at -1.875 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3bafaf56-edd4-4d8e-ba2a-fc7b8a426d35))
38 | (pad "A5" smd circle (at -1.125 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bbf35112-4a4f-41e8-b027-92f3046061c0))
39 | (pad "A6" smd circle (at -0.375 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8d0118dc-97df-478b-9bdd-35bcd1fbedb4))
40 | (pad "A7" smd circle (at 0.375 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7df8bddf-385c-45fc-a73d-8e6f031c5e62))
41 | (pad "A8" smd circle (at 1.125 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e2bd09e5-61bd-4ccb-9b22-38a5f2564e79))
42 | (pad "A9" smd circle (at 1.875 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e4140131-dce3-4bd0-b0c0-2eb6c680618e))
43 | (pad "A10" smd circle (at 2.625 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3a4aa618-2000-4a8a-8f67-8e29f852aeab))
44 | (pad "A11" smd circle (at 3.375 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6dd811c7-9928-4df2-94e2-fd8d3c988529))
45 | (pad "A12" smd circle (at 4.125 -4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d6cf96bb-7294-4094-af58-530589fcb3fa))
46 | (pad "B1" smd circle (at -4.125 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c25e0945-7206-4751-92e7-c2ca1eba341a))
47 | (pad "B2" smd circle (at -3.375 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2cdd3f49-b1fc-436d-8f46-cafb8f953f64))
48 | (pad "B3" smd circle (at -2.625 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6460ff22-2e10-4aae-9088-16580cad943b))
49 | (pad "B4" smd circle (at -1.875 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 419b2e16-24d5-46a7-92ab-1cfd08736158))
50 | (pad "B5" smd circle (at -1.125 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2e9ab3a9-2c0c-487b-beb3-af910c99d579))
51 | (pad "B6" smd circle (at -0.375 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5d31ba1f-2a1d-4a79-bc53-1949391ec4b2))
52 | (pad "B7" smd circle (at 0.375 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3fd3fa5e-dbac-4e93-bbb2-ae05cb4731a4))
53 | (pad "B8" smd circle (at 1.125 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9b260bf3-6398-4f9c-9be0-e403c070948d))
54 | (pad "B9" smd circle (at 1.875 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fd3b6aad-683a-446f-82d5-0d08b174bc45))
55 | (pad "B10" smd circle (at 2.625 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 991da79e-b234-45cb-803f-39219202d748))
56 | (pad "B11" smd circle (at 3.375 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 60a1c284-f022-4fed-863b-2ab76e662789))
57 | (pad "B12" smd circle (at 4.125 -3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 99ec364f-c374-42a2-a848-7573a181e544))
58 | (pad "C1" smd circle (at -4.125 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 422f6bd5-36c0-45ae-bece-98673b02b7fd))
59 | (pad "C2" smd circle (at -3.375 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aa8b6ae4-e66b-4667-8bca-0c41930a8a17))
60 | (pad "C3" smd circle (at -2.625 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e228461d-3a39-4661-af7d-690c7fe27209))
61 | (pad "C4" smd circle (at -1.875 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b1b66dbf-31a3-4442-b3d4-5bd73bdf9c53))
62 | (pad "C5" smd circle (at -1.125 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 36d5adcf-3dd3-423b-89fb-aa2cd944a773))
63 | (pad "C6" smd circle (at -0.375 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e5a72a49-8ac1-42a2-b259-b69e4823f6d7))
64 | (pad "C7" smd circle (at 0.375 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp da40133c-1fa5-4992-97b5-60c6b0066785))
65 | (pad "C8" smd circle (at 1.125 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7147b65d-bce3-4305-a0c7-5a7ea88b9312))
66 | (pad "C9" smd circle (at 1.875 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1179afce-e293-4ffe-a320-b040292f1835))
67 | (pad "C10" smd circle (at 2.625 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2cee79db-9242-40c6-b978-8551b479430a))
68 | (pad "C11" smd circle (at 3.375 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 25eed1f4-c237-4858-8643-6f0d18e78d32))
69 | (pad "C12" smd circle (at 4.125 -2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4187f3f1-63ed-4a7f-8589-0ef97df21ef4))
70 | (pad "D1" smd circle (at -4.125 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e30cd2fc-e661-4d35-b1db-5d097ea2c07c))
71 | (pad "D2" smd circle (at -3.375 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp af10b920-99df-4890-b264-c1ec9f0e9571))
72 | (pad "D3" smd circle (at -2.625 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ab1d5a1e-6fe6-464d-9fea-fca207d56db4))
73 | (pad "D4" smd circle (at -1.875 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp af4bfc7f-82a2-4a20-a6b4-d944152ac5b1))
74 | (pad "D5" smd circle (at -1.125 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 10e58193-1073-4e10-bd28-77b2bb27db80))
75 | (pad "D6" smd circle (at -0.375 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3fb53f9c-8fb9-46b1-93be-04edfd51f91e))
76 | (pad "D7" smd circle (at 0.375 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 97292f78-3f2b-433a-b501-88d37ec44c05))
77 | (pad "D8" smd circle (at 1.125 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c6b8dc13-408b-4f72-ae82-32908f218cc1))
78 | (pad "D9" smd circle (at 1.875 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 57a70d70-52da-44c9-a1e0-f2af1ffe3ee2))
79 | (pad "D10" smd circle (at 2.625 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 59c2fd3b-bc1b-48da-966a-1eea593fff99))
80 | (pad "D11" smd circle (at 3.375 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e950859e-b29f-4388-aa34-83fee43722ac))
81 | (pad "D12" smd circle (at 4.125 -1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0178312b-15b0-48ba-b6a2-eed1e4c180f2))
82 | (pad "E1" smd circle (at -4.125 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c657addc-cf0c-4438-8b13-5d93ca08fc3e))
83 | (pad "E2" smd circle (at -3.375 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 06015d79-3be5-4909-a51d-86bf575cb3a5))
84 | (pad "E3" smd circle (at -2.625 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6cbfb95f-7452-4051-8752-0a3fec8b589d))
85 | (pad "E4" smd circle (at -1.875 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5af55707-551b-4e84-a41c-be35273b5ade))
86 | (pad "E5" smd circle (at -1.125 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 08c0a23a-3cd3-4d87-aa99-4792959cfefd))
87 | (pad "E6" smd circle (at -0.375 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8c3f221b-840b-4c1c-be99-64e0badc7cce))
88 | (pad "E7" smd circle (at 0.375 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 663d0783-d4f9-41b7-bb18-aaf0b582ad0b))
89 | (pad "E8" smd circle (at 1.125 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8b3b9ef7-12ab-40e3-93f2-ee663bcd1746))
90 | (pad "E9" smd circle (at 1.875 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3fb1ce2b-65b0-44a3-8dac-52c38c80996a))
91 | (pad "E10" smd circle (at 2.625 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e828028c-e273-40b4-a609-0dd31e586adc))
92 | (pad "E11" smd circle (at 3.375 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 943d4d75-17e1-4b89-b1eb-51fbeb81ba96))
93 | (pad "E12" smd circle (at 4.125 -1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7a23c5ca-ab84-447a-9fac-172fbbfb9c14))
94 | (pad "F1" smd circle (at -4.125 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 89e0d8ea-8d2d-4418-93e0-f660b941f761))
95 | (pad "F2" smd circle (at -3.375 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b1c4881e-8a40-4754-8156-e89b8be016b0))
96 | (pad "F3" smd circle (at -2.625 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f11b55c6-729f-4797-a15f-bf2ba8c91e52))
97 | (pad "F4" smd circle (at -1.875 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 53b192bc-d2c2-47fa-a28b-eea8fd8d05c0))
98 | (pad "F5" smd circle (at -1.125 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b58cca09-8541-4bb3-b7b3-4975b7a6e92b))
99 | (pad "F6" smd circle (at -0.375 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 41a0bfde-9512-45d4-9862-683508a287e4))
100 | (pad "F7" smd circle (at 0.375 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp cefadfe5-9a9a-4ac7-92a9-84c4a93e93a9))
101 | (pad "F8" smd circle (at 1.125 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8059a698-1aeb-4d6b-8b19-f178163c9156))
102 | (pad "F9" smd circle (at 1.875 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 12a8af56-a435-49c1-8f74-e23d3508ee00))
103 | (pad "F10" smd circle (at 2.625 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dea267ec-2655-4e3d-a26f-f666ae5e5162))
104 | (pad "F11" smd circle (at 3.375 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 46b7b089-3948-41f3-b1f0-222c13f5d38f))
105 | (pad "F12" smd circle (at 4.125 -0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 750eb1af-34d9-4cd1-8d98-11176972f779))
106 | (pad "G1" smd circle (at -4.125 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 560a03d9-988b-409a-8234-249913bb8fd2))
107 | (pad "G2" smd circle (at -3.375 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 92672a62-193d-4789-a494-f97da5da5a59))
108 | (pad "G3" smd circle (at -2.625 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5ff6ae38-d68d-495f-933b-84c11a8f9dfd))
109 | (pad "G4" smd circle (at -1.875 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 92657dc9-f982-4153-a89e-7071c5d5e12c))
110 | (pad "G5" smd circle (at -1.125 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7418b44f-b6f2-453c-a7dc-3bf8ca33d7de))
111 | (pad "G6" smd circle (at -0.375 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3a6f829d-06cd-4b8d-8e2f-d5157c839bd9))
112 | (pad "G7" smd circle (at 0.375 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 98e650a2-d76a-434a-adcc-75dbac282874))
113 | (pad "G8" smd circle (at 1.125 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1eef163e-56e1-4625-a1a4-59f1e1cf55c4))
114 | (pad "G9" smd circle (at 1.875 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 83ebc231-2da9-42d8-b461-3ae20647dcb9))
115 | (pad "G10" smd circle (at 2.625 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fa2786f5-8fb1-479d-834d-f13b7b0c8b14))
116 | (pad "G11" smd circle (at 3.375 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 13515e9a-8c0e-4a30-97b8-51de3840ade8))
117 | (pad "G12" smd circle (at 4.125 0.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ce3ac5da-4e34-43cc-9228-519525ddf480))
118 | (pad "H1" smd circle (at -4.125 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6fb2eaf3-e9fa-4cd7-963e-df4469e0d4e8))
119 | (pad "H2" smd circle (at -3.375 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3b45a74f-60a5-4ba9-86af-b023e9c9b77c))
120 | (pad "H3" smd circle (at -2.625 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0d7a0020-e23b-4e6f-9321-8d1e5bf49819))
121 | (pad "H4" smd circle (at -1.875 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d52889f7-d31e-420b-b195-6a16c9eb6448))
122 | (pad "H5" smd circle (at -1.125 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4ef593f0-e11b-420a-9a35-f8d6c9d8792f))
123 | (pad "H6" smd circle (at -0.375 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 83b8583b-48e7-4855-bc58-5ec190d2a3a2))
124 | (pad "H7" smd circle (at 0.375 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e41d4b60-d3c9-496c-8658-68ae23910f6b))
125 | (pad "H8" smd circle (at 1.125 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aa1328be-fef9-4bfb-aa74-c90ffc5d64d5))
126 | (pad "H9" smd circle (at 1.875 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f1ed67f2-46ce-4c19-bbcb-c6833de78176))
127 | (pad "H10" smd circle (at 2.625 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2e92672b-68cd-4aa9-8400-75eaa6d2c326))
128 | (pad "H11" smd circle (at 3.375 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 08b2fda4-d4a8-4800-90de-467402e43db2))
129 | (pad "H12" smd circle (at 4.125 1.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 27069690-1930-4e27-a9b7-aa762b04f383))
130 | (pad "J1" smd circle (at -4.125 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8e5df680-bdfc-4036-87c7-6788d244fc8f))
131 | (pad "J2" smd circle (at -3.375 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7ed6b8f3-8c86-45b0-91d7-5e47955a5609))
132 | (pad "J3" smd circle (at -2.625 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a9e94d0d-bada-4edc-aad2-cad2f837e151))
133 | (pad "J4" smd circle (at -1.875 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 524afcfd-bd91-423d-9206-cdcc3290f860))
134 | (pad "J5" smd circle (at -1.125 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 54b30e06-ff58-41ed-9f48-c4a6d82d1fb1))
135 | (pad "J6" smd circle (at -0.375 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1600208a-3b9f-4359-90b2-81c8f5aa9fc8))
136 | (pad "J7" smd circle (at 0.375 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fea30a1b-313b-455c-b225-abd929e098dc))
137 | (pad "J8" smd circle (at 1.125 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7b6d55a4-a1e1-47f6-88a1-8e18cdfefcea))
138 | (pad "J9" smd circle (at 1.875 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 061f0e2b-5424-4d18-9737-740f90af977f))
139 | (pad "J10" smd circle (at 2.625 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ca02e722-8461-4855-8bf7-469138b899cd))
140 | (pad "J11" smd circle (at 3.375 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp decc6c41-ee9c-4a56-b59d-caf2e1a9e9c2))
141 | (pad "J12" smd circle (at 4.125 1.875) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3cbc01a3-ccf6-462c-ba7f-bb1ccc88d03e))
142 | (pad "K1" smd circle (at -4.125 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 74f8eedf-5e3a-4772-8cfe-5ed7004c13c9))
143 | (pad "K2" smd circle (at -3.375 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 677c0f00-071a-4309-a8d3-c48165620cce))
144 | (pad "K3" smd circle (at -2.625 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e8560f8d-ad7f-4cc3-af0e-6a45daf9de37))
145 | (pad "K4" smd circle (at -1.875 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4ae3841b-4b47-4271-a81d-29493ab27632))
146 | (pad "K5" smd circle (at -1.125 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 963ed4be-28c8-41eb-a548-75f3ef59199a))
147 | (pad "K6" smd circle (at -0.375 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0fee191b-71b8-4c9c-9b09-ebd716182b57))
148 | (pad "K7" smd circle (at 0.375 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 45dbf2f1-b6af-4222-a2cb-8fc6515c4d3a))
149 | (pad "K8" smd circle (at 1.125 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fe8ebbd8-481b-4f5c-b22b-0853c25be1c2))
150 | (pad "K9" smd circle (at 1.875 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 259f289b-efb2-403c-967d-c53b4f8779ae))
151 | (pad "K10" smd circle (at 2.625 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ba011eee-4de0-416a-905f-6199ce674026))
152 | (pad "K11" smd circle (at 3.375 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 14082f49-762f-4d88-978d-7be864ae8f4c))
153 | (pad "K12" smd circle (at 4.125 2.625) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7924d24a-cedf-472b-8458-a14da0d87c4c))
154 | (pad "L1" smd circle (at -4.125 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4cfba573-1804-4c03-8077-0d0ec1ad6e4d))
155 | (pad "L2" smd circle (at -3.375 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 08439cab-ce1a-4b4b-96ee-051d61c9b802))
156 | (pad "L3" smd circle (at -2.625 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e34dc1c3-4baa-4494-a043-2f3098b8debe))
157 | (pad "L4" smd circle (at -1.875 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aa9fdc7a-4091-4270-ae0c-e0d540ca1e00))
158 | (pad "L5" smd circle (at -1.125 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b3bab1d5-cc5f-4379-a185-f81b6a90a756))
159 | (pad "L6" smd circle (at -0.375 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 14f297b4-a884-40b9-a3c6-c03a867b4885))
160 | (pad "L7" smd circle (at 0.375 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5b458fa6-1102-4e3a-abeb-350ee6f9ba8f))
161 | (pad "L8" smd circle (at 1.125 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9bb68aa0-90f9-45f4-bdd9-281e9a08d11e))
162 | (pad "L9" smd circle (at 1.875 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6733e7f5-f14f-4b0f-b4dc-018a929c0bfb))
163 | (pad "L10" smd circle (at 2.625 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2c8dc23b-349a-4c0b-83c5-782c496a94f2))
164 | (pad "L11" smd circle (at 3.375 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0fb01ced-3f7f-4d32-98d7-2cbdca0989dc))
165 | (pad "L12" smd circle (at 4.125 3.375) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0ef4db19-71bd-443e-8e90-519f5e9edf6f))
166 | (pad "M1" smd circle (at -4.125 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b097e0c7-c89b-402a-9963-656463259497))
167 | (pad "M2" smd circle (at -3.375 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7f1f0392-350a-4b67-ad77-c057ed191445))
168 | (pad "M3" smd circle (at -2.625 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 75b3b19b-1dab-4976-a2b7-02f95f9266f6))
169 | (pad "M4" smd circle (at -1.875 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 28dbfb9c-c8a6-4d0d-8703-0e563a7a3a6d))
170 | (pad "M5" smd circle (at -1.125 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4e1ad9bc-6730-4577-aea1-c0e4543cecf2))
171 | (pad "M6" smd circle (at -0.375 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp be4cb90e-1a82-4cfc-9804-614021d21d3e))
172 | (pad "M7" smd circle (at 0.375 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1b263924-8733-4dd0-b8cb-1d845c3cccbb))
173 | (pad "M8" smd circle (at 1.125 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3d34a216-0706-416c-8a41-d4ff24332af7))
174 | (pad "M9" smd circle (at 1.875 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f59b66bd-2022-492e-b724-61af19ddbec1))
175 | (pad "M10" smd circle (at 2.625 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 43aee0d6-f3ff-4bdd-b77f-54a7a60d3d91))
176 | (pad "M11" smd circle (at 3.375 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp df36a0da-5616-45f7-8c23-708d2a8cd3d2))
177 | (pad "M12" smd circle (at 4.125 4.125) (size 0.3 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f120d1d7-128b-42f6-b9da-160ce7f47dfa))
178 | )
179 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/PCB/cust.kicad_sym:
--------------------------------------------------------------------------------
1 | (kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor)
2 | (symbol "FlashBGA152" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
3 | (property "Reference" "U" (id 0) (at 0 0 0)
4 | (effects (font (size 1.27 1.27)))
5 | )
6 | (property "Value" "FlashBGA152" (id 1) (at 0 -2.54 0)
7 | (effects (font (size 1.27 1.27)))
8 | )
9 | (property "Footprint" "" (id 2) (at 0 0 0)
10 | (effects (font (size 1.27 1.27)) hide)
11 | )
12 | (property "Datasheet" "" (id 3) (at 0 0 0)
13 | (effects (font (size 1.27 1.27)) hide)
14 | )
15 | (symbol "FlashBGA152_0_1"
16 | (rectangle (start -10.16 -5.08) (end 10.16 -127)
17 | (stroke (width 0) (type default) (color 0 0 0 0))
18 | (fill (type background))
19 | )
20 | )
21 | (symbol "FlashBGA152_1_1"
22 | (pin input line (at -12.7 -119.38 0) (length 2.54)
23 | (name "NC" (effects (font (size 1.27 1.27))))
24 | (number "A1" (effects (font (size 1.27 1.27))))
25 | )
26 | (pin input line (at -35.56 -38.1 0) (length 2.54) hide
27 | (name "NC" (effects (font (size 1.27 1.27))))
28 | (number "A10" (effects (font (size 1.27 1.27))))
29 | )
30 | (pin input line (at -35.56 -40.64 0) (length 2.54) hide
31 | (name "NC" (effects (font (size 1.27 1.27))))
32 | (number "A11" (effects (font (size 1.27 1.27))))
33 | )
34 | (pin input line (at -35.56 -43.18 0) (length 2.54) hide
35 | (name "NC" (effects (font (size 1.27 1.27))))
36 | (number "A12" (effects (font (size 1.27 1.27))))
37 | )
38 | (pin input line (at -35.56 -45.72 0) (length 2.54) hide
39 | (name "NC" (effects (font (size 1.27 1.27))))
40 | (number "A13" (effects (font (size 1.27 1.27))))
41 | )
42 | (pin input line (at -35.56 -48.26 0) (length 2.54) hide
43 | (name "NC" (effects (font (size 1.27 1.27))))
44 | (number "A2" (effects (font (size 1.27 1.27))))
45 | )
46 | (pin input line (at -35.56 -50.8 0) (length 2.54) hide
47 | (name "NC" (effects (font (size 1.27 1.27))))
48 | (number "A3" (effects (font (size 1.27 1.27))))
49 | )
50 | (pin input line (at -35.56 -53.34 0) (length 2.54) hide
51 | (name "NC" (effects (font (size 1.27 1.27))))
52 | (number "A4" (effects (font (size 1.27 1.27))))
53 | )
54 | (pin input line (at -35.56 -55.88 0) (length 2.54) hide
55 | (name "NC" (effects (font (size 1.27 1.27))))
56 | (number "B1" (effects (font (size 1.27 1.27))))
57 | )
58 | (pin input line (at -35.56 -58.42 0) (length 2.54) hide
59 | (name "NC" (effects (font (size 1.27 1.27))))
60 | (number "B10" (effects (font (size 1.27 1.27))))
61 | )
62 | (pin input line (at -35.56 -60.96 0) (length 2.54) hide
63 | (name "NC" (effects (font (size 1.27 1.27))))
64 | (number "B11" (effects (font (size 1.27 1.27))))
65 | )
66 | (pin input line (at -35.56 -63.5 0) (length 2.54) hide
67 | (name "NC" (effects (font (size 1.27 1.27))))
68 | (number "B12" (effects (font (size 1.27 1.27))))
69 | )
70 | (pin input line (at -35.56 -66.04 0) (length 2.54) hide
71 | (name "NC" (effects (font (size 1.27 1.27))))
72 | (number "B13" (effects (font (size 1.27 1.27))))
73 | )
74 | (pin input line (at -35.56 -68.58 0) (length 2.54) hide
75 | (name "NC" (effects (font (size 1.27 1.27))))
76 | (number "B2" (effects (font (size 1.27 1.27))))
77 | )
78 | (pin input line (at -35.56 -71.12 0) (length 2.54) hide
79 | (name "NC" (effects (font (size 1.27 1.27))))
80 | (number "B3" (effects (font (size 1.27 1.27))))
81 | )
82 | (pin input line (at -35.56 -73.66 0) (length 2.54) hide
83 | (name "NC" (effects (font (size 1.27 1.27))))
84 | (number "B4" (effects (font (size 1.27 1.27))))
85 | )
86 | (pin input line (at -12.7 -121.92 0) (length 2.54)
87 | (name "NU" (effects (font (size 1.27 1.27))))
88 | (number "C1" (effects (font (size 1.27 1.27))))
89 | )
90 | (pin input line (at -25.4 -38.1 0) (length 2.54) hide
91 | (name "NU" (effects (font (size 1.27 1.27))))
92 | (number "C10" (effects (font (size 1.27 1.27))))
93 | )
94 | (pin input line (at -25.4 -40.64 0) (length 2.54) hide
95 | (name "NU" (effects (font (size 1.27 1.27))))
96 | (number "C11" (effects (font (size 1.27 1.27))))
97 | )
98 | (pin input line (at -25.4 -43.18 0) (length 2.54) hide
99 | (name "NU" (effects (font (size 1.27 1.27))))
100 | (number "C12" (effects (font (size 1.27 1.27))))
101 | )
102 | (pin input line (at -25.4 -45.72 0) (length 2.54) hide
103 | (name "NU" (effects (font (size 1.27 1.27))))
104 | (number "C13" (effects (font (size 1.27 1.27))))
105 | )
106 | (pin input line (at -25.4 -48.26 0) (length 2.54) hide
107 | (name "NU" (effects (font (size 1.27 1.27))))
108 | (number "C2" (effects (font (size 1.27 1.27))))
109 | )
110 | (pin input line (at -25.4 -50.8 0) (length 2.54) hide
111 | (name "NU" (effects (font (size 1.27 1.27))))
112 | (number "C3" (effects (font (size 1.27 1.27))))
113 | )
114 | (pin input line (at -25.4 -53.34 0) (length 2.54) hide
115 | (name "NU" (effects (font (size 1.27 1.27))))
116 | (number "C4" (effects (font (size 1.27 1.27))))
117 | )
118 | (pin input line (at -25.4 -55.88 0) (length 2.54) hide
119 | (name "NU" (effects (font (size 1.27 1.27))))
120 | (number "D1" (effects (font (size 1.27 1.27))))
121 | )
122 | (pin input line (at -12.7 -27.94 0) (length 2.54)
123 | (name "VCCQ" (effects (font (size 1.27 1.27))))
124 | (number "D10" (effects (font (size 1.27 1.27))))
125 | )
126 | (pin input line (at -12.7 -30.48 0) (length 2.54)
127 | (name "VCCQ" (effects (font (size 1.27 1.27))))
128 | (number "D11" (effects (font (size 1.27 1.27))))
129 | )
130 | (pin input line (at -25.4 -58.42 0) (length 2.54) hide
131 | (name "NU" (effects (font (size 1.27 1.27))))
132 | (number "D12" (effects (font (size 1.27 1.27))))
133 | )
134 | (pin input line (at -25.4 -60.96 0) (length 2.54) hide
135 | (name "NU" (effects (font (size 1.27 1.27))))
136 | (number "D13" (effects (font (size 1.27 1.27))))
137 | )
138 | (pin input line (at -25.4 -63.5 0) (length 2.54) hide
139 | (name "NU" (effects (font (size 1.27 1.27))))
140 | (number "D2" (effects (font (size 1.27 1.27))))
141 | )
142 | (pin input line (at -12.7 -22.86 0) (length 2.54)
143 | (name "VCCQ" (effects (font (size 1.27 1.27))))
144 | (number "D3" (effects (font (size 1.27 1.27))))
145 | )
146 | (pin input line (at -12.7 -25.4 0) (length 2.54)
147 | (name "VCCQ" (effects (font (size 1.27 1.27))))
148 | (number "D4" (effects (font (size 1.27 1.27))))
149 | )
150 | (pin input line (at 12.7 -111.76 180) (length 2.54)
151 | (name "DQ3_1" (effects (font (size 1.27 1.27))))
152 | (number "D5" (effects (font (size 1.27 1.27))))
153 | )
154 | (pin input line (at -12.7 -73.66 0) (length 2.54)
155 | (name "VSS" (effects (font (size 1.27 1.27))))
156 | (number "D6" (effects (font (size 1.27 1.27))))
157 | )
158 | (pin input line (at -12.7 -10.16 0) (length 2.54)
159 | (name "VCC" (effects (font (size 1.27 1.27))))
160 | (number "D8" (effects (font (size 1.27 1.27))))
161 | )
162 | (pin input line (at 12.7 -114.3 180) (length 2.54)
163 | (name "DQ4_1" (effects (font (size 1.27 1.27))))
164 | (number "D9" (effects (font (size 1.27 1.27))))
165 | )
166 | (pin input line (at -25.4 -66.04 0) (length 2.54) hide
167 | (name "NU" (effects (font (size 1.27 1.27))))
168 | (number "E1" (effects (font (size 1.27 1.27))))
169 | )
170 | (pin input line (at 12.7 -116.84 180) (length 2.54)
171 | (name "DQ5_1" (effects (font (size 1.27 1.27))))
172 | (number "E10" (effects (font (size 1.27 1.27))))
173 | )
174 | (pin input line (at -12.7 -93.98 0) (length 2.54)
175 | (name "VSSQ" (effects (font (size 1.27 1.27))))
176 | (number "E11" (effects (font (size 1.27 1.27))))
177 | )
178 | (pin input line (at -25.4 -68.58 0) (length 2.54) hide
179 | (name "NU" (effects (font (size 1.27 1.27))))
180 | (number "E12" (effects (font (size 1.27 1.27))))
181 | )
182 | (pin input line (at -25.4 -71.12 0) (length 2.54) hide
183 | (name "NU" (effects (font (size 1.27 1.27))))
184 | (number "E13" (effects (font (size 1.27 1.27))))
185 | )
186 | (pin input line (at -25.4 -73.66 0) (length 2.54) hide
187 | (name "NU" (effects (font (size 1.27 1.27))))
188 | (number "E2" (effects (font (size 1.27 1.27))))
189 | )
190 | (pin input line (at -12.7 -86.36 0) (length 2.54)
191 | (name "VSSQ" (effects (font (size 1.27 1.27))))
192 | (number "E3" (effects (font (size 1.27 1.27))))
193 | )
194 | (pin input line (at 12.7 -109.22 180) (length 2.54)
195 | (name "DQ2_1" (effects (font (size 1.27 1.27))))
196 | (number "E4" (effects (font (size 1.27 1.27))))
197 | )
198 | (pin input line (at -12.7 -88.9 0) (length 2.54)
199 | (name "VSSQ" (effects (font (size 1.27 1.27))))
200 | (number "E5" (effects (font (size 1.27 1.27))))
201 | )
202 | (pin input line (at 12.7 -86.36 180) (length 2.54)
203 | (name "DQS_1" (effects (font (size 1.27 1.27))))
204 | (number "E6" (effects (font (size 1.27 1.27))))
205 | )
206 | (pin input line (at 12.7 -96.52 180) (length 2.54)
207 | (name "RE#_1" (effects (font (size 1.27 1.27))))
208 | (number "E8" (effects (font (size 1.27 1.27))))
209 | )
210 | (pin input line (at -12.7 -91.44 0) (length 2.54)
211 | (name "VSSQ" (effects (font (size 1.27 1.27))))
212 | (number "E9" (effects (font (size 1.27 1.27))))
213 | )
214 | (pin input line (at 12.7 -119.38 180) (length 2.54)
215 | (name "DQ6_1" (effects (font (size 1.27 1.27))))
216 | (number "F10" (effects (font (size 1.27 1.27))))
217 | )
218 | (pin input line (at 12.7 -121.92 180) (length 2.54)
219 | (name "DQ7_1" (effects (font (size 1.27 1.27))))
220 | (number "F11" (effects (font (size 1.27 1.27))))
221 | )
222 | (pin input line (at 12.7 -104.14 180) (length 2.54)
223 | (name "DQ0_1" (effects (font (size 1.27 1.27))))
224 | (number "F3" (effects (font (size 1.27 1.27))))
225 | )
226 | (pin input line (at 12.7 -106.68 180) (length 2.54)
227 | (name "DQ1_1" (effects (font (size 1.27 1.27))))
228 | (number "F4" (effects (font (size 1.27 1.27))))
229 | )
230 | (pin input line (at 12.7 -88.9 180) (length 2.54)
231 | (name "DQS#_1" (effects (font (size 1.27 1.27))))
232 | (number "F5" (effects (font (size 1.27 1.27))))
233 | )
234 | (pin input line (at 12.7 -93.98 180) (length 2.54)
235 | (name "RE_1" (effects (font (size 1.27 1.27))))
236 | (number "F6" (effects (font (size 1.27 1.27))))
237 | )
238 | (pin input line (at 12.7 -91.44 180) (length 2.54)
239 | (name "WE#_1" (effects (font (size 1.27 1.27))))
240 | (number "F8" (effects (font (size 1.27 1.27))))
241 | )
242 | (pin input line (at -12.7 -58.42 0) (length 2.54)
243 | (name "VREF_1" (effects (font (size 1.27 1.27))))
244 | (number "F9" (effects (font (size 1.27 1.27))))
245 | )
246 | (pin input line (at -12.7 -35.56 0) (length 2.54)
247 | (name "VCCQ" (effects (font (size 1.27 1.27))))
248 | (number "G10" (effects (font (size 1.27 1.27))))
249 | )
250 | (pin input line (at -12.7 -99.06 0) (length 2.54)
251 | (name "VSSQ" (effects (font (size 1.27 1.27))))
252 | (number "G11" (effects (font (size 1.27 1.27))))
253 | )
254 | (pin input line (at -12.7 -96.52 0) (length 2.54)
255 | (name "VSSQ" (effects (font (size 1.27 1.27))))
256 | (number "G3" (effects (font (size 1.27 1.27))))
257 | )
258 | (pin input line (at -12.7 -33.02 0) (length 2.54)
259 | (name "VCCQ" (effects (font (size 1.27 1.27))))
260 | (number "G4" (effects (font (size 1.27 1.27))))
261 | )
262 | (pin input line (at 12.7 -99.06 180) (length 2.54)
263 | (name "ALE_1" (effects (font (size 1.27 1.27))))
264 | (number "G5" (effects (font (size 1.27 1.27))))
265 | )
266 | (pin input line (at 12.7 -101.6 180) (length 2.54)
267 | (name "CLE_1" (effects (font (size 1.27 1.27))))
268 | (number "G6" (effects (font (size 1.27 1.27))))
269 | )
270 | (pin input line (at -25.4 -76.2 0) (length 2.54) hide
271 | (name "NU" (effects (font (size 1.27 1.27))))
272 | (number "H11" (effects (font (size 1.27 1.27))))
273 | )
274 | (pin input line (at -25.4 -78.74 0) (length 2.54) hide
275 | (name "NU" (effects (font (size 1.27 1.27))))
276 | (number "H3" (effects (font (size 1.27 1.27))))
277 | )
278 | (pin input line (at -25.4 -81.28 0) (length 2.54) hide
279 | (name "NU" (effects (font (size 1.27 1.27))))
280 | (number "H4" (effects (font (size 1.27 1.27))))
281 | )
282 | (pin input line (at 12.7 -83.82 180) (length 2.54)
283 | (name "WP#_1" (effects (font (size 1.27 1.27))))
284 | (number "H5" (effects (font (size 1.27 1.27))))
285 | )
286 | (pin input line (at -25.4 -83.82 0) (length 2.54) hide
287 | (name "NU" (effects (font (size 1.27 1.27))))
288 | (number "H6" (effects (font (size 1.27 1.27))))
289 | )
290 | (pin input line (at 12.7 -73.66 180) (length 2.54)
291 | (name "CE1_1" (effects (font (size 1.27 1.27))))
292 | (number "H8" (effects (font (size 1.27 1.27))))
293 | )
294 | (pin input line (at 12.7 -71.12 180) (length 2.54)
295 | (name "CE0_1" (effects (font (size 1.27 1.27))))
296 | (number "H9" (effects (font (size 1.27 1.27))))
297 | )
298 | (pin input line (at -12.7 -15.24 0) (length 2.54)
299 | (name "VCC" (effects (font (size 1.27 1.27))))
300 | (number "J10" (effects (font (size 1.27 1.27))))
301 | )
302 | (pin input line (at -12.7 -78.74 0) (length 2.54)
303 | (name "VSS" (effects (font (size 1.27 1.27))))
304 | (number "J11" (effects (font (size 1.27 1.27))))
305 | )
306 | (pin input line (at -12.7 -76.2 0) (length 2.54)
307 | (name "VSS" (effects (font (size 1.27 1.27))))
308 | (number "J3" (effects (font (size 1.27 1.27))))
309 | )
310 | (pin input line (at -12.7 -12.7 0) (length 2.54)
311 | (name "VCC" (effects (font (size 1.27 1.27))))
312 | (number "J4" (effects (font (size 1.27 1.27))))
313 | )
314 | (pin input line (at 12.7 -17.78 180) (length 2.54)
315 | (name "R/B#_0" (effects (font (size 1.27 1.27))))
316 | (number "J5" (effects (font (size 1.27 1.27))))
317 | )
318 | (pin input line (at 12.7 -20.32 180) (length 2.54)
319 | (name "R/B#_2" (effects (font (size 1.27 1.27))))
320 | (number "J6" (effects (font (size 1.27 1.27))))
321 | )
322 | (pin input line (at 12.7 -78.74 180) (length 2.54)
323 | (name "R/B#_3" (effects (font (size 1.27 1.27))))
324 | (number "J8" (effects (font (size 1.27 1.27))))
325 | )
326 | (pin input line (at 12.7 -76.2 180) (length 2.54)
327 | (name "R/B#_1" (effects (font (size 1.27 1.27))))
328 | (number "J9" (effects (font (size 1.27 1.27))))
329 | )
330 | (pin input line (at -25.4 -86.36 0) (length 2.54) hide
331 | (name "NU" (effects (font (size 1.27 1.27))))
332 | (number "K10" (effects (font (size 1.27 1.27))))
333 | )
334 | (pin input line (at -25.4 -88.9 0) (length 2.54) hide
335 | (name "NU" (effects (font (size 1.27 1.27))))
336 | (number "K11" (effects (font (size 1.27 1.27))))
337 | )
338 | (pin input line (at -25.4 -91.44 0) (length 2.54) hide
339 | (name "NU" (effects (font (size 1.27 1.27))))
340 | (number "K3" (effects (font (size 1.27 1.27))))
341 | )
342 | (pin input line (at 12.7 -12.7 180) (length 2.54)
343 | (name "CE0_0" (effects (font (size 1.27 1.27))))
344 | (number "K5" (effects (font (size 1.27 1.27))))
345 | )
346 | (pin input line (at 12.7 -15.24 180) (length 2.54)
347 | (name "CE1_0" (effects (font (size 1.27 1.27))))
348 | (number "K6" (effects (font (size 1.27 1.27))))
349 | )
350 | (pin input line (at -12.7 -60.96 0) (length 2.54)
351 | (name "VPP" (effects (font (size 1.27 1.27))))
352 | (number "K8" (effects (font (size 1.27 1.27))))
353 | )
354 | (pin input line (at 12.7 -25.4 180) (length 2.54)
355 | (name "WP#_0" (effects (font (size 1.27 1.27))))
356 | (number "K9" (effects (font (size 1.27 1.27))))
357 | )
358 | (pin input line (at -12.7 -40.64 0) (length 2.54)
359 | (name "VCCQ" (effects (font (size 1.27 1.27))))
360 | (number "L10" (effects (font (size 1.27 1.27))))
361 | )
362 | (pin input line (at -12.7 -104.14 0) (length 2.54)
363 | (name "VSSQ" (effects (font (size 1.27 1.27))))
364 | (number "L11" (effects (font (size 1.27 1.27))))
365 | )
366 | (pin input line (at -12.7 -101.6 0) (length 2.54)
367 | (name "VSSQ" (effects (font (size 1.27 1.27))))
368 | (number "L3" (effects (font (size 1.27 1.27))))
369 | )
370 | (pin input line (at -12.7 -38.1 0) (length 2.54)
371 | (name "VCCQ" (effects (font (size 1.27 1.27))))
372 | (number "L4" (effects (font (size 1.27 1.27))))
373 | )
374 | (pin input line (at 12.7 -43.18 180) (length 2.54)
375 | (name "CLE_0" (effects (font (size 1.27 1.27))))
376 | (number "L8" (effects (font (size 1.27 1.27))))
377 | )
378 | (pin input line (at 12.7 -40.64 180) (length 2.54)
379 | (name "ALE_0" (effects (font (size 1.27 1.27))))
380 | (number "L9" (effects (font (size 1.27 1.27))))
381 | )
382 | (pin input line (at 12.7 -48.26 180) (length 2.54)
383 | (name "DQ1_0" (effects (font (size 1.27 1.27))))
384 | (number "M10" (effects (font (size 1.27 1.27))))
385 | )
386 | (pin input line (at 12.7 -45.72 180) (length 2.54)
387 | (name "DQ0_0" (effects (font (size 1.27 1.27))))
388 | (number "M11" (effects (font (size 1.27 1.27))))
389 | )
390 | (pin input line (at 12.7 -63.5 180) (length 2.54)
391 | (name "DQ7_0" (effects (font (size 1.27 1.27))))
392 | (number "M3" (effects (font (size 1.27 1.27))))
393 | )
394 | (pin input line (at 12.7 -60.96 180) (length 2.54)
395 | (name "DQ6_0" (effects (font (size 1.27 1.27))))
396 | (number "M4" (effects (font (size 1.27 1.27))))
397 | )
398 | (pin input line (at -12.7 -55.88 0) (length 2.54)
399 | (name "VREF_0" (effects (font (size 1.27 1.27))))
400 | (number "M5" (effects (font (size 1.27 1.27))))
401 | )
402 | (pin input line (at 12.7 -33.02 180) (length 2.54)
403 | (name "WE#_0" (effects (font (size 1.27 1.27))))
404 | (number "M6" (effects (font (size 1.27 1.27))))
405 | )
406 | (pin input line (at 12.7 -35.56 180) (length 2.54)
407 | (name "RE_0" (effects (font (size 1.27 1.27))))
408 | (number "M8" (effects (font (size 1.27 1.27))))
409 | )
410 | (pin input line (at 12.7 -30.48 180) (length 2.54)
411 | (name "DQS#_0" (effects (font (size 1.27 1.27))))
412 | (number "M9" (effects (font (size 1.27 1.27))))
413 | )
414 | (pin input line (at -25.4 -93.98 0) (length 2.54) hide
415 | (name "NU" (effects (font (size 1.27 1.27))))
416 | (number "N1" (effects (font (size 1.27 1.27))))
417 | )
418 | (pin input line (at 12.7 -50.8 180) (length 2.54)
419 | (name "DQ2_0" (effects (font (size 1.27 1.27))))
420 | (number "N10" (effects (font (size 1.27 1.27))))
421 | )
422 | (pin input line (at -12.7 -114.3 0) (length 2.54)
423 | (name "VSSQ" (effects (font (size 1.27 1.27))))
424 | (number "N11" (effects (font (size 1.27 1.27))))
425 | )
426 | (pin input line (at -25.4 -96.52 0) (length 2.54) hide
427 | (name "NU" (effects (font (size 1.27 1.27))))
428 | (number "N12" (effects (font (size 1.27 1.27))))
429 | )
430 | (pin input line (at -25.4 -99.06 0) (length 2.54) hide
431 | (name "NU" (effects (font (size 1.27 1.27))))
432 | (number "N13" (effects (font (size 1.27 1.27))))
433 | )
434 | (pin input line (at -25.4 -101.6 0) (length 2.54) hide
435 | (name "NU" (effects (font (size 1.27 1.27))))
436 | (number "N2" (effects (font (size 1.27 1.27))))
437 | )
438 | (pin input line (at -12.7 -106.68 0) (length 2.54)
439 | (name "VSSQ" (effects (font (size 1.27 1.27))))
440 | (number "N3" (effects (font (size 1.27 1.27))))
441 | )
442 | (pin input line (at 12.7 -58.42 180) (length 2.54)
443 | (name "DQ5_0" (effects (font (size 1.27 1.27))))
444 | (number "N4" (effects (font (size 1.27 1.27))))
445 | )
446 | (pin input line (at -12.7 -109.22 0) (length 2.54)
447 | (name "VSSQ" (effects (font (size 1.27 1.27))))
448 | (number "N5" (effects (font (size 1.27 1.27))))
449 | )
450 | (pin input line (at 12.7 -38.1 180) (length 2.54)
451 | (name "RE#_0" (effects (font (size 1.27 1.27))))
452 | (number "N6" (effects (font (size 1.27 1.27))))
453 | )
454 | (pin input line (at 12.7 -27.94 180) (length 2.54)
455 | (name "DQS_0" (effects (font (size 1.27 1.27))))
456 | (number "N8" (effects (font (size 1.27 1.27))))
457 | )
458 | (pin input line (at -12.7 -111.76 0) (length 2.54)
459 | (name "VSSQ" (effects (font (size 1.27 1.27))))
460 | (number "N9" (effects (font (size 1.27 1.27))))
461 | )
462 | (pin input line (at -12.7 -48.26 0) (length 2.54)
463 | (name "VCCQ" (effects (font (size 1.27 1.27))))
464 | (number "P10" (effects (font (size 1.27 1.27))))
465 | )
466 | (pin input line (at -12.7 -50.8 0) (length 2.54)
467 | (name "VCCQ" (effects (font (size 1.27 1.27))))
468 | (number "P11" (effects (font (size 1.27 1.27))))
469 | )
470 | (pin input line (at -12.7 -43.18 0) (length 2.54)
471 | (name "VCCQ" (effects (font (size 1.27 1.27))))
472 | (number "P3" (effects (font (size 1.27 1.27))))
473 | )
474 | (pin input line (at -12.7 -45.72 0) (length 2.54)
475 | (name "VCCQ" (effects (font (size 1.27 1.27))))
476 | (number "P4" (effects (font (size 1.27 1.27))))
477 | )
478 | (pin input line (at 12.7 -55.88 180) (length 2.54)
479 | (name "DQ4_0" (effects (font (size 1.27 1.27))))
480 | (number "P5" (effects (font (size 1.27 1.27))))
481 | )
482 | (pin input line (at -12.7 -17.78 0) (length 2.54)
483 | (name "VCC" (effects (font (size 1.27 1.27))))
484 | (number "P6" (effects (font (size 1.27 1.27))))
485 | )
486 | (pin input line (at -12.7 -81.28 0) (length 2.54)
487 | (name "VSS" (effects (font (size 1.27 1.27))))
488 | (number "P8" (effects (font (size 1.27 1.27))))
489 | )
490 | (pin input line (at 12.7 -53.34 180) (length 2.54)
491 | (name "DQ3_0" (effects (font (size 1.27 1.27))))
492 | (number "P9" (effects (font (size 1.27 1.27))))
493 | )
494 | (pin input line (at -25.4 -104.14 0) (length 2.54) hide
495 | (name "NU" (effects (font (size 1.27 1.27))))
496 | (number "R1" (effects (font (size 1.27 1.27))))
497 | )
498 | (pin input line (at -25.4 -106.68 0) (length 2.54) hide
499 | (name "NU" (effects (font (size 1.27 1.27))))
500 | (number "R10" (effects (font (size 1.27 1.27))))
501 | )
502 | (pin input line (at -25.4 -109.22 0) (length 2.54) hide
503 | (name "NU" (effects (font (size 1.27 1.27))))
504 | (number "R11" (effects (font (size 1.27 1.27))))
505 | )
506 | (pin input line (at -25.4 -111.76 0) (length 2.54) hide
507 | (name "NU" (effects (font (size 1.27 1.27))))
508 | (number "R12" (effects (font (size 1.27 1.27))))
509 | )
510 | (pin input line (at -25.4 -114.3 0) (length 2.54) hide
511 | (name "NU" (effects (font (size 1.27 1.27))))
512 | (number "R13" (effects (font (size 1.27 1.27))))
513 | )
514 | (pin input line (at -25.4 -116.84 0) (length 2.54) hide
515 | (name "NU" (effects (font (size 1.27 1.27))))
516 | (number "R2" (effects (font (size 1.27 1.27))))
517 | )
518 | (pin input line (at -25.4 -119.38 0) (length 2.54) hide
519 | (name "NU" (effects (font (size 1.27 1.27))))
520 | (number "R3" (effects (font (size 1.27 1.27))))
521 | )
522 | (pin input line (at -25.4 -121.92 0) (length 2.54) hide
523 | (name "NU" (effects (font (size 1.27 1.27))))
524 | (number "R4" (effects (font (size 1.27 1.27))))
525 | )
526 | (pin input line (at -35.56 -76.2 0) (length 2.54) hide
527 | (name "NC" (effects (font (size 1.27 1.27))))
528 | (number "T1" (effects (font (size 1.27 1.27))))
529 | )
530 | (pin input line (at -35.56 -78.74 0) (length 2.54) hide
531 | (name "NC" (effects (font (size 1.27 1.27))))
532 | (number "T10" (effects (font (size 1.27 1.27))))
533 | )
534 | (pin input line (at -35.56 -81.28 0) (length 2.54) hide
535 | (name "NC" (effects (font (size 1.27 1.27))))
536 | (number "T11" (effects (font (size 1.27 1.27))))
537 | )
538 | (pin input line (at -35.56 -83.82 0) (length 2.54) hide
539 | (name "NC" (effects (font (size 1.27 1.27))))
540 | (number "T12" (effects (font (size 1.27 1.27))))
541 | )
542 | (pin input line (at -35.56 -86.36 0) (length 2.54) hide
543 | (name "NC" (effects (font (size 1.27 1.27))))
544 | (number "T13" (effects (font (size 1.27 1.27))))
545 | )
546 | (pin input line (at -35.56 -88.9 0) (length 2.54) hide
547 | (name "NC" (effects (font (size 1.27 1.27))))
548 | (number "T2" (effects (font (size 1.27 1.27))))
549 | )
550 | (pin input line (at -35.56 -91.44 0) (length 2.54) hide
551 | (name "NC" (effects (font (size 1.27 1.27))))
552 | (number "T3" (effects (font (size 1.27 1.27))))
553 | )
554 | (pin input line (at -35.56 -93.98 0) (length 2.54) hide
555 | (name "NC" (effects (font (size 1.27 1.27))))
556 | (number "T4" (effects (font (size 1.27 1.27))))
557 | )
558 | (pin input line (at -35.56 -96.52 0) (length 2.54) hide
559 | (name "NC" (effects (font (size 1.27 1.27))))
560 | (number "U1" (effects (font (size 1.27 1.27))))
561 | )
562 | (pin input line (at -35.56 -99.06 0) (length 2.54) hide
563 | (name "NC" (effects (font (size 1.27 1.27))))
564 | (number "U10" (effects (font (size 1.27 1.27))))
565 | )
566 | (pin input line (at -35.56 -101.6 0) (length 2.54) hide
567 | (name "NC" (effects (font (size 1.27 1.27))))
568 | (number "U11" (effects (font (size 1.27 1.27))))
569 | )
570 | (pin input line (at -35.56 -104.14 0) (length 2.54) hide
571 | (name "NC" (effects (font (size 1.27 1.27))))
572 | (number "U12" (effects (font (size 1.27 1.27))))
573 | )
574 | (pin input line (at -35.56 -106.68 0) (length 2.54) hide
575 | (name "NC" (effects (font (size 1.27 1.27))))
576 | (number "U13" (effects (font (size 1.27 1.27))))
577 | )
578 | (pin input line (at -35.56 -109.22 0) (length 2.54) hide
579 | (name "NC" (effects (font (size 1.27 1.27))))
580 | (number "U2" (effects (font (size 1.27 1.27))))
581 | )
582 | (pin input line (at -35.56 -111.76 0) (length 2.54) hide
583 | (name "NC" (effects (font (size 1.27 1.27))))
584 | (number "U3" (effects (font (size 1.27 1.27))))
585 | )
586 | (pin input line (at -35.56 -114.3 0) (length 2.54) hide
587 | (name "NC" (effects (font (size 1.27 1.27))))
588 | (number "U4" (effects (font (size 1.27 1.27))))
589 | )
590 | )
591 | )
592 | (symbol "SM2236" (in_bom yes) (on_board yes)
593 | (property "Reference" "U" (id 0) (at 0 0 0)
594 | (effects (font (size 1.27 1.27)))
595 | )
596 | (property "Value" "SM2236" (id 1) (at 0 -2.54 0)
597 | (effects (font (size 1.27 1.27)))
598 | )
599 | (property "Footprint" "cust:BGA-144_12x12_9.0x9.0mm" (id 2) (at 2.54 -232.41 0)
600 | (effects (font (size 1.27 1.27)) hide)
601 | )
602 | (property "Datasheet" "" (id 3) (at 0 0 0)
603 | (effects (font (size 1.27 1.27)) hide)
604 | )
605 | (symbol "SM2236_1_0"
606 | (text "For 50-pin IDE only" (at -2.54 -97.79 900)
607 | (effects (font (size 1.27 1.27)))
608 | )
609 | (text "NC when not used" (at -5.08 -125.73 0)
610 | (effects (font (size 1.27 1.27)))
611 | )
612 | (text "VSS when not used" (at -5.08 -114.3 0)
613 | (effects (font (size 1.27 1.27)))
614 | )
615 | (pin output line (at 21.59 -76.2 180) (length 2.54)
616 | (name "F1_DQS" (effects (font (size 1.27 1.27))))
617 | (number "A1" (effects (font (size 1.27 1.27))))
618 | )
619 | (pin bidirectional line (at -17.78 -48.26 0) (length 2.54)
620 | (name "HD_D12" (effects (font (size 1.27 1.27))))
621 | (number "A10" (effects (font (size 1.27 1.27))))
622 | )
623 | (pin bidirectional line (at -17.78 -33.02 0) (length 2.54)
624 | (name "HD_D6" (effects (font (size 1.27 1.27))))
625 | (number "A11" (effects (font (size 1.27 1.27))))
626 | )
627 | (pin bidirectional line (at -17.78 -53.34 0) (length 2.54)
628 | (name "HD_D14" (effects (font (size 1.27 1.27))))
629 | (number "A12" (effects (font (size 1.27 1.27))))
630 | )
631 | (pin bidirectional line (at 21.59 -93.98 180) (length 2.54)
632 | (name "F1_DQ2" (effects (font (size 1.27 1.27))))
633 | (number "A2" (effects (font (size 1.27 1.27))))
634 | )
635 | (pin bidirectional line (at 21.59 -88.9 180) (length 2.54)
636 | (name "F1_DQ0" (effects (font (size 1.27 1.27))))
637 | (number "A3" (effects (font (size 1.27 1.27))))
638 | )
639 | (pin output line (at 21.59 -17.78 180) (length 2.54)
640 | (name "FSH_CE4#" (effects (font (size 1.27 1.27))))
641 | (number "A4" (effects (font (size 1.27 1.27))))
642 | )
643 | (pin output line (at 21.59 -10.16 180) (length 2.54)
644 | (name "FSH_CE1#" (effects (font (size 1.27 1.27))))
645 | (number "A5" (effects (font (size 1.27 1.27))))
646 | )
647 | (pin input line (at -17.78 -138.43 0) (length 2.54)
648 | (name "VSS_Strap?" (effects (font (size 1.27 1.27))))
649 | (number "A6" (effects (font (size 1.27 1.27))))
650 | )
651 | (pin input line (at -17.78 -143.51 0) (length 2.54)
652 | (name "VSS_Strap?" (effects (font (size 1.27 1.27))))
653 | (number "A7" (effects (font (size 1.27 1.27))))
654 | )
655 | (pin output line (at -17.78 -156.21 0) (length 2.54)
656 | (name "DBG_SCL" (effects (font (size 1.27 1.27))))
657 | (number "A8" (effects (font (size 1.27 1.27))))
658 | )
659 | (pin bidirectional line (at -17.78 -25.4 0) (length 2.54)
660 | (name "HD_D3" (effects (font (size 1.27 1.27))))
661 | (number "A9" (effects (font (size 1.27 1.27))))
662 | )
663 | (pin bidirectional line (at 21.59 -99.06 180) (length 2.54)
664 | (name "F1_DQ4" (effects (font (size 1.27 1.27))))
665 | (number "B1" (effects (font (size 1.27 1.27))))
666 | )
667 | (pin bidirectional line (at -17.78 -27.94 0) (length 2.54)
668 | (name "HD_D4" (effects (font (size 1.27 1.27))))
669 | (number "B10" (effects (font (size 1.27 1.27))))
670 | )
671 | (pin bidirectional line (at -17.78 -50.8 0) (length 2.54)
672 | (name "HD_D13" (effects (font (size 1.27 1.27))))
673 | (number "B11" (effects (font (size 1.27 1.27))))
674 | )
675 | (pin bidirectional line (at -17.78 -35.56 0) (length 2.54)
676 | (name "HD_D7" (effects (font (size 1.27 1.27))))
677 | (number "B12" (effects (font (size 1.27 1.27))))
678 | )
679 | (pin bidirectional line (at 21.59 -96.52 180) (length 2.54)
680 | (name "F1_DQ3" (effects (font (size 1.27 1.27))))
681 | (number "B2" (effects (font (size 1.27 1.27))))
682 | )
683 | (pin bidirectional line (at 21.59 -91.44 180) (length 2.54)
684 | (name "F1_DQ1" (effects (font (size 1.27 1.27))))
685 | (number "B3" (effects (font (size 1.27 1.27))))
686 | )
687 | (pin output line (at 21.59 -15.24 180) (length 2.54)
688 | (name "FSH_CE3#" (effects (font (size 1.27 1.27))))
689 | (number "B4" (effects (font (size 1.27 1.27))))
690 | )
691 | (pin input line (at -17.78 -146.05 0) (length 2.54)
692 | (name "VSS_Strap?" (effects (font (size 1.27 1.27))))
693 | (number "B5" (effects (font (size 1.27 1.27))))
694 | )
695 | (pin no_connect line (at -17.78 -196.85 0) (length 2.54)
696 | (name "NC" (effects (font (size 1.27 1.27))))
697 | (number "B6" (effects (font (size 1.27 1.27))))
698 | )
699 | (pin no_connect line (at -17.78 -191.77 0) (length 2.54)
700 | (name "NC" (effects (font (size 1.27 1.27))))
701 | (number "B7" (effects (font (size 1.27 1.27))))
702 | )
703 | (pin bidirectional line (at -17.78 -158.75 0) (length 2.54)
704 | (name "DBG_SDA" (effects (font (size 1.27 1.27))))
705 | (number "B8" (effects (font (size 1.27 1.27))))
706 | )
707 | (pin input line (at -17.78 -161.29 0) (length 2.54)
708 | (name "DBG_RESET" (effects (font (size 1.27 1.27))))
709 | (number "B9" (effects (font (size 1.27 1.27))))
710 | )
711 | (pin bidirectional line (at 21.59 -104.14 180) (length 2.54)
712 | (name "F1_DQ6" (effects (font (size 1.27 1.27))))
713 | (number "C1" (effects (font (size 1.27 1.27))))
714 | )
715 | (pin bidirectional line (at -17.78 -45.72 0) (length 2.54)
716 | (name "HD_D11" (effects (font (size 1.27 1.27))))
717 | (number "C10" (effects (font (size 1.27 1.27))))
718 | )
719 | (pin bidirectional line (at -17.78 -30.48 0) (length 2.54)
720 | (name "HD_D5" (effects (font (size 1.27 1.27))))
721 | (number "C11" (effects (font (size 1.27 1.27))))
722 | )
723 | (pin bidirectional line (at -17.78 -55.88 0) (length 2.54)
724 | (name "HD_D15" (effects (font (size 1.27 1.27))))
725 | (number "C12" (effects (font (size 1.27 1.27))))
726 | )
727 | (pin bidirectional line (at 21.59 -101.6 180) (length 2.54)
728 | (name "F1_DQ5" (effects (font (size 1.27 1.27))))
729 | (number "C2" (effects (font (size 1.27 1.27))))
730 | )
731 | (pin bidirectional line (at 21.59 -68.58 180) (length 2.54)
732 | (name "F0_DQ7" (effects (font (size 1.27 1.27))))
733 | (number "C3" (effects (font (size 1.27 1.27))))
734 | )
735 | (pin output line (at 21.59 -12.7 180) (length 2.54)
736 | (name "FSH_CE2#" (effects (font (size 1.27 1.27))))
737 | (number "C4" (effects (font (size 1.27 1.27))))
738 | )
739 | (pin no_connect line (at -17.78 -194.31 0) (length 2.54)
740 | (name "NC" (effects (font (size 1.27 1.27))))
741 | (number "C5" (effects (font (size 1.27 1.27))))
742 | )
743 | (pin input line (at -17.78 -140.97 0) (length 2.54)
744 | (name "VSS_Strap?" (effects (font (size 1.27 1.27))))
745 | (number "C6" (effects (font (size 1.27 1.27))))
746 | )
747 | (pin bidirectional line (at -17.78 -153.67 0) (length 2.54)
748 | (name "I2C" (effects (font (size 1.27 1.27))))
749 | (number "C7" (effects (font (size 1.27 1.27))))
750 | )
751 | (pin power_out line (at 21.59 -214.63 180) (length 2.54)
752 | (name "VSS" (effects (font (size 1.27 1.27))))
753 | (number "C8" (effects (font (size 1.27 1.27))))
754 | )
755 | (pin power_out line (at 21.59 -204.47 180) (length 2.54)
756 | (name "VSS" (effects (font (size 1.27 1.27))))
757 | (number "C9" (effects (font (size 1.27 1.27))))
758 | )
759 | (pin output line (at 21.59 -30.48 180) (length 2.54)
760 | (name "FSH_WP#" (effects (font (size 1.27 1.27))))
761 | (number "D1" (effects (font (size 1.27 1.27))))
762 | )
763 | (pin input line (at -17.78 -63.5 0) (length 2.54)
764 | (name "HD_CS0#" (effects (font (size 1.27 1.27))))
765 | (number "D10" (effects (font (size 1.27 1.27))))
766 | )
767 | (pin input line (at -17.78 -66.04 0) (length 2.54)
768 | (name "HD_CS1#" (effects (font (size 1.27 1.27))))
769 | (number "D11" (effects (font (size 1.27 1.27))))
770 | )
771 | (pin output line (at -17.78 -106.68 0) (length 2.54)
772 | (name "HD_A10" (effects (font (size 1.27 1.27))))
773 | (number "D12" (effects (font (size 1.27 1.27))))
774 | )
775 | (pin bidirectional line (at 21.59 -106.68 180) (length 2.54)
776 | (name "F1_DQ7" (effects (font (size 1.27 1.27))))
777 | (number "D2" (effects (font (size 1.27 1.27))))
778 | )
779 | (pin bidirectional line (at 21.59 -66.04 180) (length 2.54)
780 | (name "F0_DQ6" (effects (font (size 1.27 1.27))))
781 | (number "D3" (effects (font (size 1.27 1.27))))
782 | )
783 | (pin power_in line (at -17.78 -214.63 0) (length 2.54)
784 | (name "VCC" (effects (font (size 1.27 1.27))))
785 | (number "D4" (effects (font (size 1.27 1.27))))
786 | )
787 | (pin power_in line (at -17.78 -204.47 0) (length 2.54)
788 | (name "VCC" (effects (font (size 1.27 1.27))))
789 | (number "D5" (effects (font (size 1.27 1.27))))
790 | )
791 | (pin input line (at -17.78 -133.35 0) (length 2.54)
792 | (name "VCC_Strap?" (effects (font (size 1.27 1.27))))
793 | (number "D6" (effects (font (size 1.27 1.27))))
794 | )
795 | (pin passive line (at -17.78 -171.45 0) (length 2.54)
796 | (name "VCC_FB?" (effects (font (size 1.27 1.27))))
797 | (number "D7" (effects (font (size 1.27 1.27))))
798 | )
799 | (pin power_out line (at 21.59 -217.17 180) (length 2.54)
800 | (name "VSS" (effects (font (size 1.27 1.27))))
801 | (number "D8" (effects (font (size 1.27 1.27))))
802 | )
803 | (pin power_out line (at 21.59 -207.01 180) (length 2.54)
804 | (name "VSS" (effects (font (size 1.27 1.27))))
805 | (number "D9" (effects (font (size 1.27 1.27))))
806 | )
807 | (pin output line (at 21.59 -83.82 180) (length 2.54)
808 | (name "F1_ALE" (effects (font (size 1.27 1.27))))
809 | (number "E1" (effects (font (size 1.27 1.27))))
810 | )
811 | (pin output line (at -17.78 -109.22 0) (length 2.54)
812 | (name "HD_CONN#" (effects (font (size 1.27 1.27))))
813 | (number "E10" (effects (font (size 1.27 1.27))))
814 | )
815 | (pin output line (at -17.78 -68.58 0) (length 2.54)
816 | (name "HD_IOR#" (effects (font (size 1.27 1.27))))
817 | (number "E11" (effects (font (size 1.27 1.27))))
818 | )
819 | (pin output line (at -17.78 -104.14 0) (length 2.54)
820 | (name "HD_A9" (effects (font (size 1.27 1.27))))
821 | (number "E12" (effects (font (size 1.27 1.27))))
822 | )
823 | (pin output line (at 21.59 -78.74 180) (length 2.54)
824 | (name "F1_WE#" (effects (font (size 1.27 1.27))))
825 | (number "E2" (effects (font (size 1.27 1.27))))
826 | )
827 | (pin bidirectional line (at 21.59 -63.5 180) (length 2.54)
828 | (name "F0_DQ5" (effects (font (size 1.27 1.27))))
829 | (number "E3" (effects (font (size 1.27 1.27))))
830 | )
831 | (pin power_in line (at -17.78 -226.06 0) (length 2.54)
832 | (name "VCCFQ" (effects (font (size 1.27 1.27))))
833 | (number "E4" (effects (font (size 1.27 1.27))))
834 | )
835 | (pin power_in line (at -17.78 -207.01 0) (length 2.54)
836 | (name "VCC" (effects (font (size 1.27 1.27))))
837 | (number "E5" (effects (font (size 1.27 1.27))))
838 | )
839 | (pin passive line (at -17.78 -168.91 0) (length 2.54)
840 | (name "VCC_FB?" (effects (font (size 1.27 1.27))))
841 | (number "E6" (effects (font (size 1.27 1.27))))
842 | )
843 | (pin passive line (at -17.78 -179.07 0) (length 2.54)
844 | (name "VCC_FB?" (effects (font (size 1.27 1.27))))
845 | (number "E7" (effects (font (size 1.27 1.27))))
846 | )
847 | (pin power_out line (at 21.59 -219.71 180) (length 2.54)
848 | (name "VSS" (effects (font (size 1.27 1.27))))
849 | (number "E8" (effects (font (size 1.27 1.27))))
850 | )
851 | (pin power_out line (at 21.59 -209.55 180) (length 2.54)
852 | (name "VSS" (effects (font (size 1.27 1.27))))
853 | (number "E9" (effects (font (size 1.27 1.27))))
854 | )
855 | (pin output line (at 21.59 -81.28 180) (length 2.54)
856 | (name "F1_RE#" (effects (font (size 1.27 1.27))))
857 | (number "F1" (effects (font (size 1.27 1.27))))
858 | )
859 | (pin output line (at -17.78 -81.28 0) (length 2.54)
860 | (name "HD_IOW#" (effects (font (size 1.27 1.27))))
861 | (number "F10" (effects (font (size 1.27 1.27))))
862 | )
863 | (pin output line (at -17.78 -101.6 0) (length 2.54)
864 | (name "HD_A8" (effects (font (size 1.27 1.27))))
865 | (number "F11" (effects (font (size 1.27 1.27))))
866 | )
867 | (pin output line (at -17.78 -123.19 0) (length 2.54)
868 | (name "HD_WE#" (effects (font (size 1.27 1.27))))
869 | (number "F12" (effects (font (size 1.27 1.27))))
870 | )
871 | (pin output line (at 21.59 -86.36 180) (length 2.54)
872 | (name "F1_CLE" (effects (font (size 1.27 1.27))))
873 | (number "F2" (effects (font (size 1.27 1.27))))
874 | )
875 | (pin bidirectional line (at 21.59 -60.96 180) (length 2.54)
876 | (name "F0_DQ4" (effects (font (size 1.27 1.27))))
877 | (number "F3" (effects (font (size 1.27 1.27))))
878 | )
879 | (pin power_out line (at 21.59 -224.79 180) (length 2.54)
880 | (name "VSS" (effects (font (size 1.27 1.27))))
881 | (number "F4" (effects (font (size 1.27 1.27))))
882 | )
883 | (pin power_out line (at 21.59 -189.23 180) (length 2.54)
884 | (name "VSS" (effects (font (size 1.27 1.27))))
885 | (number "F5" (effects (font (size 1.27 1.27))))
886 | )
887 | (pin power_out line (at 21.59 -199.39 180) (length 2.54)
888 | (name "VSS" (effects (font (size 1.27 1.27))))
889 | (number "F6" (effects (font (size 1.27 1.27))))
890 | )
891 | (pin power_out line (at 21.59 -194.31 180) (length 2.54)
892 | (name "VSS" (effects (font (size 1.27 1.27))))
893 | (number "F7" (effects (font (size 1.27 1.27))))
894 | )
895 | (pin power_out line (at 21.59 -222.25 180) (length 2.54)
896 | (name "VSS" (effects (font (size 1.27 1.27))))
897 | (number "F8" (effects (font (size 1.27 1.27))))
898 | )
899 | (pin power_out line (at 21.59 -212.09 180) (length 2.54)
900 | (name "VSS" (effects (font (size 1.27 1.27))))
901 | (number "F9" (effects (font (size 1.27 1.27))))
902 | )
903 | (pin output line (at 21.59 -38.1 180) (length 2.54)
904 | (name "F0_DQS" (effects (font (size 1.27 1.27))))
905 | (number "G1" (effects (font (size 1.27 1.27))))
906 | )
907 | (pin output line (at -17.78 -99.06 0) (length 2.54)
908 | (name "HD_A7" (effects (font (size 1.27 1.27))))
909 | (number "G10" (effects (font (size 1.27 1.27))))
910 | )
911 | (pin input line (at -17.78 -71.12 0) (length 2.54)
912 | (name "HD_INTRQ" (effects (font (size 1.27 1.27))))
913 | (number "G11" (effects (font (size 1.27 1.27))))
914 | )
915 | (pin output line (at -17.78 -96.52 0) (length 2.54)
916 | (name "HD_A6" (effects (font (size 1.27 1.27))))
917 | (number "G12" (effects (font (size 1.27 1.27))))
918 | )
919 | (pin bidirectional line (at 21.59 -58.42 180) (length 2.54)
920 | (name "F0_DQ3" (effects (font (size 1.27 1.27))))
921 | (number "G2" (effects (font (size 1.27 1.27))))
922 | )
923 | (pin bidirectional line (at 21.59 -55.88 180) (length 2.54)
924 | (name "F0_DQ2" (effects (font (size 1.27 1.27))))
925 | (number "G3" (effects (font (size 1.27 1.27))))
926 | )
927 | (pin bidirectional line (at 21.59 -53.34 180) (length 2.54)
928 | (name "F0_DQ1" (effects (font (size 1.27 1.27))))
929 | (number "G4" (effects (font (size 1.27 1.27))))
930 | )
931 | (pin power_out line (at 21.59 -191.77 180) (length 2.54)
932 | (name "VSS" (effects (font (size 1.27 1.27))))
933 | (number "G5" (effects (font (size 1.27 1.27))))
934 | )
935 | (pin power_out line (at 21.59 -201.93 180) (length 2.54)
936 | (name "VSS" (effects (font (size 1.27 1.27))))
937 | (number "G6" (effects (font (size 1.27 1.27))))
938 | )
939 | (pin power_out line (at 21.59 -196.85 180) (length 2.54)
940 | (name "VSS" (effects (font (size 1.27 1.27))))
941 | (number "G7" (effects (font (size 1.27 1.27))))
942 | )
943 | (pin passive line (at -17.78 -181.61 0) (length 2.54)
944 | (name "VCC_FB?" (effects (font (size 1.27 1.27))))
945 | (number "G8" (effects (font (size 1.27 1.27))))
946 | )
947 | (pin passive line (at -17.78 -173.99 0) (length 2.54)
948 | (name "VCC_FB?" (effects (font (size 1.27 1.27))))
949 | (number "G9" (effects (font (size 1.27 1.27))))
950 | )
951 | (pin bidirectional line (at 21.59 -50.8 180) (length 2.54)
952 | (name "F0_DQ0" (effects (font (size 1.27 1.27))))
953 | (number "H1" (effects (font (size 1.27 1.27))))
954 | )
955 | (pin output line (at -17.78 -111.76 0) (length 2.54)
956 | (name "HD_CSEL#" (effects (font (size 1.27 1.27))))
957 | (number "H10" (effects (font (size 1.27 1.27))))
958 | )
959 | (pin output line (at -17.78 -93.98 0) (length 2.54)
960 | (name "HD_A5" (effects (font (size 1.27 1.27))))
961 | (number "H11" (effects (font (size 1.27 1.27))))
962 | )
963 | (pin output line (at -17.78 -91.44 0) (length 2.54)
964 | (name "HD_A4" (effects (font (size 1.27 1.27))))
965 | (number "H12" (effects (font (size 1.27 1.27))))
966 | )
967 | (pin output line (at 21.59 -43.18 180) (length 2.54)
968 | (name "F0_RE#" (effects (font (size 1.27 1.27))))
969 | (number "H2" (effects (font (size 1.27 1.27))))
970 | )
971 | (pin input line (at 21.59 -20.32 180) (length 2.54)
972 | (name "FSH_R/B1#" (effects (font (size 1.27 1.27))))
973 | (number "H3" (effects (font (size 1.27 1.27))))
974 | )
975 | (pin input line (at 21.59 -22.86 180) (length 2.54)
976 | (name "FSH_R/B2#" (effects (font (size 1.27 1.27))))
977 | (number "H4" (effects (font (size 1.27 1.27))))
978 | )
979 | (pin power_in line (at -17.78 -220.98 0) (length 2.54)
980 | (name "VCCFQ" (effects (font (size 1.27 1.27))))
981 | (number "H5" (effects (font (size 1.27 1.27))))
982 | )
983 | (pin power_in line (at -17.78 -223.52 0) (length 2.54)
984 | (name "VCCFQ" (effects (font (size 1.27 1.27))))
985 | (number "H6" (effects (font (size 1.27 1.27))))
986 | )
987 | (pin power_in line (at -17.78 -212.09 0) (length 2.54)
988 | (name "VCC" (effects (font (size 1.27 1.27))))
989 | (number "H7" (effects (font (size 1.27 1.27))))
990 | )
991 | (pin power_in line (at -17.78 -209.55 0) (length 2.54)
992 | (name "VCC" (effects (font (size 1.27 1.27))))
993 | (number "H8" (effects (font (size 1.27 1.27))))
994 | )
995 | (pin passive line (at -17.78 -176.53 0) (length 2.54)
996 | (name "VCC_FB?" (effects (font (size 1.27 1.27))))
997 | (number "H9" (effects (font (size 1.27 1.27))))
998 | )
999 | (pin output line (at 21.59 -48.26 180) (length 2.54)
1000 | (name "F0_CLE" (effects (font (size 1.27 1.27))))
1001 | (number "J1" (effects (font (size 1.27 1.27))))
1002 | )
1003 | (pin output line (at -17.78 -58.42 0) (length 2.54)
1004 | (name "HD_RESET#" (effects (font (size 1.27 1.27))))
1005 | (number "J10" (effects (font (size 1.27 1.27))))
1006 | )
1007 | (pin output line (at -17.78 -88.9 0) (length 2.54)
1008 | (name "HD_A3" (effects (font (size 1.27 1.27))))
1009 | (number "J11" (effects (font (size 1.27 1.27))))
1010 | )
1011 | (pin output line (at -17.78 -83.82 0) (length 2.54)
1012 | (name "HD_IORDY" (effects (font (size 1.27 1.27))))
1013 | (number "J12" (effects (font (size 1.27 1.27))))
1014 | )
1015 | (pin output line (at 21.59 -45.72 180) (length 2.54)
1016 | (name "F0_ALE" (effects (font (size 1.27 1.27))))
1017 | (number "J2" (effects (font (size 1.27 1.27))))
1018 | )
1019 | (pin input line (at 21.59 -25.4 180) (length 2.54)
1020 | (name "FSH_R/B3#" (effects (font (size 1.27 1.27))))
1021 | (number "J3" (effects (font (size 1.27 1.27))))
1022 | )
1023 | (pin input line (at 21.59 -27.94 180) (length 2.54)
1024 | (name "FSH_R/B4#" (effects (font (size 1.27 1.27))))
1025 | (number "J4" (effects (font (size 1.27 1.27))))
1026 | )
1027 | (pin output line (at 21.59 -162.56 180) (length 2.54)
1028 | (name "F3_CLE" (effects (font (size 1.27 1.27))))
1029 | (number "J5" (effects (font (size 1.27 1.27))))
1030 | )
1031 | (pin bidirectional line (at 21.59 -182.88 180) (length 2.54)
1032 | (name "F3_DQ7" (effects (font (size 1.27 1.27))))
1033 | (number "J6" (effects (font (size 1.27 1.27))))
1034 | )
1035 | (pin bidirectional line (at 21.59 -172.72 180) (length 2.54)
1036 | (name "F3_DQ3" (effects (font (size 1.27 1.27))))
1037 | (number "J7" (effects (font (size 1.27 1.27))))
1038 | )
1039 | (pin bidirectional line (at -17.78 -43.18 0) (length 2.54)
1040 | (name "HD_D10" (effects (font (size 1.27 1.27))))
1041 | (number "J8" (effects (font (size 1.27 1.27))))
1042 | )
1043 | (pin bidirectional line (at -17.78 -38.1 0) (length 2.54)
1044 | (name "HD_D8" (effects (font (size 1.27 1.27))))
1045 | (number "J9" (effects (font (size 1.27 1.27))))
1046 | )
1047 | (pin output line (at 21.59 -40.64 180) (length 2.54)
1048 | (name "F0_WE#" (effects (font (size 1.27 1.27))))
1049 | (number "K1" (effects (font (size 1.27 1.27))))
1050 | )
1051 | (pin output line (at -17.78 -15.24 0) (length 2.54)
1052 | (name "HD_A2" (effects (font (size 1.27 1.27))))
1053 | (number "K10" (effects (font (size 1.27 1.27))))
1054 | )
1055 | (pin output line (at -17.78 -73.66 0) (length 2.54)
1056 | (name "HD_DMARQ" (effects (font (size 1.27 1.27))))
1057 | (number "K11" (effects (font (size 1.27 1.27))))
1058 | )
1059 | (pin output line (at -17.78 -12.7 0) (length 2.54)
1060 | (name "HD_A1" (effects (font (size 1.27 1.27))))
1061 | (number "K12" (effects (font (size 1.27 1.27))))
1062 | )
1063 | (pin output line (at 21.59 -119.38 180) (length 2.54)
1064 | (name "F2_RE#" (effects (font (size 1.27 1.27))))
1065 | (number "K2" (effects (font (size 1.27 1.27))))
1066 | )
1067 | (pin output line (at 21.59 -154.94 180) (length 2.54)
1068 | (name "F3_WE#" (effects (font (size 1.27 1.27))))
1069 | (number "K3" (effects (font (size 1.27 1.27))))
1070 | )
1071 | (pin output line (at 21.59 -160.02 180) (length 2.54)
1072 | (name "F3_ALE" (effects (font (size 1.27 1.27))))
1073 | (number "K4" (effects (font (size 1.27 1.27))))
1074 | )
1075 | (pin output line (at 21.59 -157.48 180) (length 2.54)
1076 | (name "F3_RE#" (effects (font (size 1.27 1.27))))
1077 | (number "K5" (effects (font (size 1.27 1.27))))
1078 | )
1079 | (pin bidirectional line (at 21.59 -180.34 180) (length 2.54)
1080 | (name "F3_DQ6" (effects (font (size 1.27 1.27))))
1081 | (number "K6" (effects (font (size 1.27 1.27))))
1082 | )
1083 | (pin output line (at 21.59 -152.4 180) (length 2.54)
1084 | (name "F3_DQS" (effects (font (size 1.27 1.27))))
1085 | (number "K7" (effects (font (size 1.27 1.27))))
1086 | )
1087 | (pin bidirectional line (at 21.59 -165.1 180) (length 2.54)
1088 | (name "F3_DQ0" (effects (font (size 1.27 1.27))))
1089 | (number "K8" (effects (font (size 1.27 1.27))))
1090 | )
1091 | (pin bidirectional line (at -17.78 -22.86 0) (length 2.54)
1092 | (name "HD_D2" (effects (font (size 1.27 1.27))))
1093 | (number "K9" (effects (font (size 1.27 1.27))))
1094 | )
1095 | (pin output line (at 21.59 -124.46 180) (length 2.54)
1096 | (name "F2_CLE" (effects (font (size 1.27 1.27))))
1097 | (number "L1" (effects (font (size 1.27 1.27))))
1098 | )
1099 | (pin input line (at -17.78 -60.96 0) (length 2.54)
1100 | (name "HD_PDIAG#" (effects (font (size 1.27 1.27))))
1101 | (number "L10" (effects (font (size 1.27 1.27))))
1102 | )
1103 | (pin output line (at -17.78 -76.2 0) (length 2.54)
1104 | (name "HD_DMACK#" (effects (font (size 1.27 1.27))))
1105 | (number "L11" (effects (font (size 1.27 1.27))))
1106 | )
1107 | (pin output line (at -17.78 -10.16 0) (length 2.54)
1108 | (name "HD_A0" (effects (font (size 1.27 1.27))))
1109 | (number "L12" (effects (font (size 1.27 1.27))))
1110 | )
1111 | (pin output line (at 21.59 -121.92 180) (length 2.54)
1112 | (name "F2_ALE" (effects (font (size 1.27 1.27))))
1113 | (number "L2" (effects (font (size 1.27 1.27))))
1114 | )
1115 | (pin bidirectional line (at 21.59 -129.54 180) (length 2.54)
1116 | (name "F2_DQ1" (effects (font (size 1.27 1.27))))
1117 | (number "L3" (effects (font (size 1.27 1.27))))
1118 | )
1119 | (pin bidirectional line (at 21.59 -134.62 180) (length 2.54)
1120 | (name "F2_DQ3" (effects (font (size 1.27 1.27))))
1121 | (number "L4" (effects (font (size 1.27 1.27))))
1122 | )
1123 | (pin bidirectional line (at 21.59 -137.16 180) (length 2.54)
1124 | (name "F2_DQ4" (effects (font (size 1.27 1.27))))
1125 | (number "L5" (effects (font (size 1.27 1.27))))
1126 | )
1127 | (pin bidirectional line (at 21.59 -142.24 180) (length 2.54)
1128 | (name "F2_DQ6" (effects (font (size 1.27 1.27))))
1129 | (number "L6" (effects (font (size 1.27 1.27))))
1130 | )
1131 | (pin bidirectional line (at 21.59 -175.26 180) (length 2.54)
1132 | (name "F3_DQ4" (effects (font (size 1.27 1.27))))
1133 | (number "L7" (effects (font (size 1.27 1.27))))
1134 | )
1135 | (pin bidirectional line (at 21.59 -167.64 180) (length 2.54)
1136 | (name "F3_DQ1" (effects (font (size 1.27 1.27))))
1137 | (number "L8" (effects (font (size 1.27 1.27))))
1138 | )
1139 | (pin bidirectional line (at -17.78 -40.64 0) (length 2.54)
1140 | (name "HD_D9" (effects (font (size 1.27 1.27))))
1141 | (number "L9" (effects (font (size 1.27 1.27))))
1142 | )
1143 | (pin output line (at 21.59 -116.84 180) (length 2.54)
1144 | (name "F2_WE#" (effects (font (size 1.27 1.27))))
1145 | (number "M1" (effects (font (size 1.27 1.27))))
1146 | )
1147 | (pin bidirectional line (at -17.78 -20.32 0) (length 2.54)
1148 | (name "HD_D1" (effects (font (size 1.27 1.27))))
1149 | (number "M10" (effects (font (size 1.27 1.27))))
1150 | )
1151 | (pin output line (at -17.78 -78.74 0) (length 2.54)
1152 | (name "HD_DASP#" (effects (font (size 1.27 1.27))))
1153 | (number "M11" (effects (font (size 1.27 1.27))))
1154 | )
1155 | (pin bidirectional line (at -17.78 -17.78 0) (length 2.54)
1156 | (name "HD_D0" (effects (font (size 1.27 1.27))))
1157 | (number "M12" (effects (font (size 1.27 1.27))))
1158 | )
1159 | (pin bidirectional line (at 21.59 -127 180) (length 2.54)
1160 | (name "F2_DQ0" (effects (font (size 1.27 1.27))))
1161 | (number "M2" (effects (font (size 1.27 1.27))))
1162 | )
1163 | (pin bidirectional line (at 21.59 -132.08 180) (length 2.54)
1164 | (name "F2_DQ2" (effects (font (size 1.27 1.27))))
1165 | (number "M3" (effects (font (size 1.27 1.27))))
1166 | )
1167 | (pin output line (at 21.59 -114.3 180) (length 2.54)
1168 | (name "F2_DQS" (effects (font (size 1.27 1.27))))
1169 | (number "M4" (effects (font (size 1.27 1.27))))
1170 | )
1171 | (pin bidirectional line (at 21.59 -139.7 180) (length 2.54)
1172 | (name "F2_DQ5" (effects (font (size 1.27 1.27))))
1173 | (number "M5" (effects (font (size 1.27 1.27))))
1174 | )
1175 | (pin bidirectional line (at 21.59 -144.78 180) (length 2.54)
1176 | (name "F2_DQ7" (effects (font (size 1.27 1.27))))
1177 | (number "M6" (effects (font (size 1.27 1.27))))
1178 | )
1179 | (pin bidirectional line (at 21.59 -177.8 180) (length 2.54)
1180 | (name "F3_DQ5" (effects (font (size 1.27 1.27))))
1181 | (number "M7" (effects (font (size 1.27 1.27))))
1182 | )
1183 | (pin bidirectional line (at 21.59 -170.18 180) (length 2.54)
1184 | (name "F3_DQ2" (effects (font (size 1.27 1.27))))
1185 | (number "M8" (effects (font (size 1.27 1.27))))
1186 | )
1187 | (pin output line (at -17.78 -120.65 0) (length 2.54)
1188 | (name "HD_IOCS16#" (effects (font (size 1.27 1.27))))
1189 | (number "M9" (effects (font (size 1.27 1.27))))
1190 | )
1191 | )
1192 | (symbol "SM2236_1_1"
1193 | (rectangle (start -15.24 -5.08) (end 19.05 -229.87)
1194 | (stroke (width 0) (type default) (color 0 0 0 0))
1195 | (fill (type background))
1196 | )
1197 | )
1198 | )
1199 | (symbol "XF2U-4015-3A" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
1200 | (property "Reference" "U" (id 0) (at -4.7244 29.4894 0)
1201 | (effects (font (size 1.27 1.27)) (justify left bottom))
1202 | )
1203 | (property "Value" "XF2U-4015-3A" (id 1) (at -6.35 -81.28 0)
1204 | (effects (font (size 1.27 1.27)) (justify left bottom))
1205 | )
1206 | (property "Footprint" "OMRON_XF2U-4015-3A" (id 2) (at -13.97 -88.9 0)
1207 | (effects (font (size 1.27 1.27)) (justify left bottom) hide)
1208 | )
1209 | (property "Datasheet" "" (id 3) (at 0 0 0)
1210 | (effects (font (size 1.27 1.27)) (justify left bottom) hide)
1211 | )
1212 | (property "PACKAGE" "CONNECTOR, FPC, 0.5MM, 40WAY" (id 4) (at -13.97 -83.82 0)
1213 | (effects (font (size 1.27 1.27)) (justify left bottom) hide)
1214 | )
1215 | (property "SUPPLIER" "OMRON ELECTRONIC COMPONENTS" (id 5) (at -19.05 -91.44 0)
1216 | (effects (font (size 1.27 1.27)) (justify left bottom) hide)
1217 | )
1218 | (property "OC_NEWARK" "88M4904" (id 6) (at 0 0 0)
1219 | (effects (font (size 1.27 1.27)) (justify left bottom) hide)
1220 | )
1221 | (property "OC_FARNELL" "1430947" (id 7) (at 0 0 0)
1222 | (effects (font (size 1.27 1.27)) (justify left bottom) hide)
1223 | )
1224 | (property "MPN" "XF2U-4015-3A" (id 8) (at -10.16 -86.36 0)
1225 | (effects (font (size 1.27 1.27)) (justify left bottom) hide)
1226 | )
1227 | (property "ki_locked" "" (id 9) (at 0 0 0)
1228 | (effects (font (size 1.27 1.27)))
1229 | )
1230 | (symbol "XF2U-4015-3A_0_0"
1231 | (rectangle (start -11.43 25.4) (end 12.7 -78.74)
1232 | (stroke (width 0.4064) (type default) (color 0 0 0 0))
1233 | (fill (type background))
1234 | )
1235 | (pin passive line (at 17.78 22.86 180) (length 5.08)
1236 | (name "1" (effects (font (size 1.016 1.016))))
1237 | (number "1" (effects (font (size 1.016 1.016))))
1238 | )
1239 | (pin passive line (at 17.78 0 180) (length 5.08)
1240 | (name "10" (effects (font (size 1.016 1.016))))
1241 | (number "10" (effects (font (size 1.016 1.016))))
1242 | )
1243 | (pin passive line (at 17.78 -2.54 180) (length 5.08)
1244 | (name "11" (effects (font (size 1.016 1.016))))
1245 | (number "11" (effects (font (size 1.016 1.016))))
1246 | )
1247 | (pin passive line (at 17.78 -5.08 180) (length 5.08)
1248 | (name "12" (effects (font (size 1.016 1.016))))
1249 | (number "12" (effects (font (size 1.016 1.016))))
1250 | )
1251 | (pin passive line (at 17.78 -7.62 180) (length 5.08)
1252 | (name "13" (effects (font (size 1.016 1.016))))
1253 | (number "13" (effects (font (size 1.016 1.016))))
1254 | )
1255 | (pin passive line (at 17.78 -10.16 180) (length 5.08)
1256 | (name "14" (effects (font (size 1.016 1.016))))
1257 | (number "14" (effects (font (size 1.016 1.016))))
1258 | )
1259 | (pin passive line (at 17.78 -12.7 180) (length 5.08)
1260 | (name "15" (effects (font (size 1.016 1.016))))
1261 | (number "15" (effects (font (size 1.016 1.016))))
1262 | )
1263 | (pin passive line (at 17.78 -15.24 180) (length 5.08)
1264 | (name "16" (effects (font (size 1.016 1.016))))
1265 | (number "16" (effects (font (size 1.016 1.016))))
1266 | )
1267 | (pin passive line (at 17.78 -17.78 180) (length 5.08)
1268 | (name "17" (effects (font (size 1.016 1.016))))
1269 | (number "17" (effects (font (size 1.016 1.016))))
1270 | )
1271 | (pin passive line (at 17.78 -20.32 180) (length 5.08)
1272 | (name "18" (effects (font (size 1.016 1.016))))
1273 | (number "18" (effects (font (size 1.016 1.016))))
1274 | )
1275 | (pin passive line (at 17.78 -22.86 180) (length 5.08)
1276 | (name "19" (effects (font (size 1.016 1.016))))
1277 | (number "19" (effects (font (size 1.016 1.016))))
1278 | )
1279 | (pin passive line (at 17.78 20.32 180) (length 5.08)
1280 | (name "2" (effects (font (size 1.016 1.016))))
1281 | (number "2" (effects (font (size 1.016 1.016))))
1282 | )
1283 | (pin passive line (at 17.78 -25.4 180) (length 5.08)
1284 | (name "20" (effects (font (size 1.016 1.016))))
1285 | (number "20" (effects (font (size 1.016 1.016))))
1286 | )
1287 | (pin passive line (at 17.78 -27.94 180) (length 5.08)
1288 | (name "21" (effects (font (size 1.016 1.016))))
1289 | (number "21" (effects (font (size 1.016 1.016))))
1290 | )
1291 | (pin passive line (at 17.78 -30.48 180) (length 5.08)
1292 | (name "22" (effects (font (size 1.016 1.016))))
1293 | (number "22" (effects (font (size 1.016 1.016))))
1294 | )
1295 | (pin passive line (at 17.78 -33.02 180) (length 5.08)
1296 | (name "23" (effects (font (size 1.016 1.016))))
1297 | (number "23" (effects (font (size 1.016 1.016))))
1298 | )
1299 | (pin passive line (at 17.78 -35.56 180) (length 5.08)
1300 | (name "24" (effects (font (size 1.016 1.016))))
1301 | (number "24" (effects (font (size 1.016 1.016))))
1302 | )
1303 | (pin passive line (at 17.78 -38.1 180) (length 5.08)
1304 | (name "25" (effects (font (size 1.016 1.016))))
1305 | (number "25" (effects (font (size 1.016 1.016))))
1306 | )
1307 | (pin passive line (at 17.78 -40.64 180) (length 5.08)
1308 | (name "26" (effects (font (size 1.016 1.016))))
1309 | (number "26" (effects (font (size 1.016 1.016))))
1310 | )
1311 | (pin passive line (at 17.78 -43.18 180) (length 5.08)
1312 | (name "27" (effects (font (size 1.016 1.016))))
1313 | (number "27" (effects (font (size 1.016 1.016))))
1314 | )
1315 | (pin passive line (at 17.78 -45.72 180) (length 5.08)
1316 | (name "28" (effects (font (size 1.016 1.016))))
1317 | (number "28" (effects (font (size 1.016 1.016))))
1318 | )
1319 | (pin passive line (at 17.78 -48.26 180) (length 5.08)
1320 | (name "29" (effects (font (size 1.016 1.016))))
1321 | (number "29" (effects (font (size 1.016 1.016))))
1322 | )
1323 | (pin passive line (at 17.78 17.78 180) (length 5.08)
1324 | (name "3" (effects (font (size 1.016 1.016))))
1325 | (number "3" (effects (font (size 1.016 1.016))))
1326 | )
1327 | (pin passive line (at 17.78 -50.8 180) (length 5.08)
1328 | (name "30" (effects (font (size 1.016 1.016))))
1329 | (number "30" (effects (font (size 1.016 1.016))))
1330 | )
1331 | (pin passive line (at 17.78 -53.34 180) (length 5.08)
1332 | (name "31" (effects (font (size 1.016 1.016))))
1333 | (number "31" (effects (font (size 1.016 1.016))))
1334 | )
1335 | (pin passive line (at 17.78 -55.88 180) (length 5.08)
1336 | (name "32" (effects (font (size 1.016 1.016))))
1337 | (number "32" (effects (font (size 1.016 1.016))))
1338 | )
1339 | (pin passive line (at 17.78 -58.42 180) (length 5.08)
1340 | (name "33" (effects (font (size 1.016 1.016))))
1341 | (number "33" (effects (font (size 1.016 1.016))))
1342 | )
1343 | (pin passive line (at 17.78 -60.96 180) (length 5.08)
1344 | (name "34" (effects (font (size 1.016 1.016))))
1345 | (number "34" (effects (font (size 1.016 1.016))))
1346 | )
1347 | (pin passive line (at 17.78 -63.5 180) (length 5.08)
1348 | (name "35" (effects (font (size 1.016 1.016))))
1349 | (number "35" (effects (font (size 1.016 1.016))))
1350 | )
1351 | (pin passive line (at 17.78 -66.04 180) (length 5.08)
1352 | (name "36" (effects (font (size 1.016 1.016))))
1353 | (number "36" (effects (font (size 1.016 1.016))))
1354 | )
1355 | (pin passive line (at 17.78 -68.58 180) (length 5.08)
1356 | (name "37" (effects (font (size 1.016 1.016))))
1357 | (number "37" (effects (font (size 1.016 1.016))))
1358 | )
1359 | (pin passive line (at 17.78 -71.12 180) (length 5.08)
1360 | (name "38" (effects (font (size 1.016 1.016))))
1361 | (number "38" (effects (font (size 1.016 1.016))))
1362 | )
1363 | (pin passive line (at 17.78 -73.66 180) (length 5.08)
1364 | (name "39" (effects (font (size 1.016 1.016))))
1365 | (number "39" (effects (font (size 1.016 1.016))))
1366 | )
1367 | (pin passive line (at 17.78 15.24 180) (length 5.08)
1368 | (name "4" (effects (font (size 1.016 1.016))))
1369 | (number "4" (effects (font (size 1.016 1.016))))
1370 | )
1371 | (pin passive line (at 17.78 -76.2 180) (length 5.08)
1372 | (name "40" (effects (font (size 1.016 1.016))))
1373 | (number "40" (effects (font (size 1.016 1.016))))
1374 | )
1375 | (pin passive line (at 17.78 12.7 180) (length 5.08)
1376 | (name "5" (effects (font (size 1.016 1.016))))
1377 | (number "5" (effects (font (size 1.016 1.016))))
1378 | )
1379 | (pin passive line (at 17.78 10.16 180) (length 5.08)
1380 | (name "6" (effects (font (size 1.016 1.016))))
1381 | (number "6" (effects (font (size 1.016 1.016))))
1382 | )
1383 | (pin passive line (at 17.78 7.62 180) (length 5.08)
1384 | (name "7" (effects (font (size 1.016 1.016))))
1385 | (number "7" (effects (font (size 1.016 1.016))))
1386 | )
1387 | (pin passive line (at 17.78 5.08 180) (length 5.08)
1388 | (name "8" (effects (font (size 1.016 1.016))))
1389 | (number "8" (effects (font (size 1.016 1.016))))
1390 | )
1391 | (pin passive line (at 17.78 2.54 180) (length 5.08)
1392 | (name "9" (effects (font (size 1.016 1.016))))
1393 | (number "9" (effects (font (size 1.016 1.016))))
1394 | )
1395 | )
1396 | )
1397 | )
1398 |
--------------------------------------------------------------------------------