@tscircuit/schematic-trace-solver 0.0.47 → 0.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.d.ts +51 -1
- package/dist/index.js +750 -49
- package/lib/solvers/Example28Solver/Example28Solver.ts +182 -0
- package/lib/solvers/Example28Solver/geometry.ts +246 -0
- package/lib/solvers/Example28Solver/labelMovement.ts +82 -0
- package/lib/solvers/Example28Solver/reroute.ts +368 -0
- package/lib/solvers/Example28Solver/types.ts +47 -0
- package/lib/solvers/Example28Solver/visualize.ts +96 -0
- package/lib/solvers/NetLabelPlacementSolver/NetLabelPlacementSolver.ts +2 -0
- package/lib/solvers/NetLabelPlacementSolver/SingleNetLabelPlacementSolver/SingleNetLabelPlacementSolver_visualize.ts +12 -0
- package/lib/solvers/SchematicTracePipelineSolver/SchematicTracePipelineSolver.ts +16 -0
- package/package.json +1 -1
- package/site/SchematicTraceSingleLineSolver2/SchematicTraceSingleLineSolver2_01-example17-d1_1-u1_1.page.tsx +2 -0
- package/site/TraceCleanupSolver/TraceCleanupSolver.page.tsx +23 -0
- package/site/TraceLabelOverlapAvoidanceSolver/MergedNetLabelObstacles.page.tsx +18 -0
- package/site/TraceLabelOverlapAvoidanceSolver/OverlapAvoidanceStepSolver.page.tsx +24 -0
- package/site/TraceLabelOverlapAvoidanceSolver/SingleOverlapSolver.page.tsx +10 -0
- package/site/TraceLabelOverlapAvoidanceSolver/TraceLabelOverlapAvoidanceSolver.page.tsx +146 -0
- package/site/TraceLabelOverlapAvoidanceSolver/renderComparisonView01.page.tsx +32 -0
- package/site/TraceLabelOverlapAvoidanceSolver/renderComparisonView02.page.tsx +32 -0
- package/site/TraceLabelOverlapAvoidanceSolver/renderComparisonView03.page.tsx +35 -0
- package/site/examples/example01.page.tsx +6 -0
- package/site/examples/example02.page.tsx +4 -180
- package/site/examples/example03.page.tsx +3 -212
- package/site/examples/example04.page.tsx +6 -0
- package/site/examples/example05.page.tsx +3 -179
- package/site/examples/example06.page.tsx +3 -57
- package/site/examples/example07.page.tsx +3 -132
- package/site/examples/example08.page.tsx +3 -91
- package/site/examples/example09.page.tsx +3 -414
- package/site/examples/example10.page.tsx +3 -75
- package/site/examples/example11.page.tsx +3 -116
- package/site/examples/example12.page.tsx +3 -94
- package/site/examples/example13.page.tsx +3 -216
- package/site/examples/example14.page.tsx +3 -207
- package/site/examples/example15.page.tsx +6 -0
- package/site/examples/example16.page.tsx +6 -0
- package/site/examples/example17.page.tsx +6 -0
- package/site/examples/example18.page.tsx +3 -178
- package/site/examples/example19.page.tsx +3 -166
- package/site/examples/example20.page.tsx +3 -100
- package/site/examples/example21.page.tsx +3 -174
- package/site/examples/example22.page.tsx +3 -105
- package/site/examples/example23.page.tsx +3 -134
- package/site/examples/example24.page.tsx +3 -125
- package/site/examples/example25.page.tsx +2 -0
- package/site/examples/example26.page.tsx +2 -0
- package/site/examples/example27.page.tsx +2 -0
- package/site/examples/example28.page.tsx +6 -0
- package/site/examples/example29.page.tsx +6 -0
- package/site/examples/example30.page.tsx +6 -0
- package/site/examples/example31.page.tsx +4 -0
- package/tests/assets/example01.json +109 -0
- package/tests/assets/example02.json +178 -0
- package/tests/assets/example03.json +210 -0
- package/tests/assets/example04.json +41 -0
- package/tests/assets/example05.json +175 -0
- package/tests/assets/example06.json +55 -0
- package/tests/assets/example07.json +130 -0
- package/tests/assets/example08.json +89 -0
- package/tests/assets/example09.json +412 -0
- package/tests/assets/example10.json +73 -0
- package/tests/assets/example11.json +114 -0
- package/tests/assets/example12.json +92 -0
- package/tests/assets/example13.json +214 -0
- package/tests/assets/example14.json +205 -0
- package/tests/assets/example15.json +618 -0
- package/tests/assets/example16.json +102 -0
- package/tests/assets/example17.json +160 -0
- package/tests/assets/example18.json +176 -0
- package/tests/assets/example19.json +164 -0
- package/tests/assets/example20.json +98 -0
- package/tests/assets/example21.json +172 -0
- package/tests/assets/example22.json +103 -0
- package/tests/assets/example23.json +132 -0
- package/tests/assets/example24.json +123 -0
- package/tests/assets/example25.json +146 -33
- package/tests/assets/example26.json +51 -1134
- package/tests/assets/example27.json +151 -91
- package/tests/assets/example28.json +56 -0
- package/tests/assets/example29.json +1206 -0
- package/tests/assets/example30.json +168 -0
- package/tests/assets/example31.json +46 -0
- package/tests/examples/__snapshots__/example01.snap.svg +12 -6
- package/tests/examples/__snapshots__/example02.snap.svg +16 -8
- package/tests/examples/__snapshots__/example03.snap.svg +36 -18
- package/tests/examples/__snapshots__/example04.snap.svg +8 -4
- package/tests/examples/__snapshots__/example05.snap.svg +4 -2
- package/tests/examples/__snapshots__/example06.snap.svg +4 -2
- package/tests/examples/__snapshots__/example07.snap.svg +20 -10
- package/tests/examples/__snapshots__/example08.snap.svg +16 -8
- package/tests/examples/__snapshots__/example09.snap.svg +80 -40
- package/tests/examples/__snapshots__/example10.snap.svg +16 -8
- package/tests/examples/__snapshots__/example11.snap.svg +24 -12
- package/tests/examples/__snapshots__/example12.snap.svg +16 -8
- package/tests/examples/__snapshots__/example13.snap.svg +32 -16
- package/tests/examples/__snapshots__/example14.snap.svg +115 -48
- package/tests/examples/__snapshots__/example15.snap.svg +36 -18
- package/tests/examples/__snapshots__/example16.snap.svg +16 -8
- package/tests/examples/__snapshots__/example17.snap.svg +16 -8
- package/tests/examples/__snapshots__/example18.snap.svg +20 -10
- package/tests/examples/__snapshots__/example19.snap.svg +16 -8
- package/tests/examples/__snapshots__/example20.snap.svg +43 -135
- package/tests/examples/__snapshots__/example21.snap.svg +34 -18
- package/tests/examples/__snapshots__/example22.snap.svg +37 -23
- package/tests/examples/__snapshots__/example23.snap.svg +62 -26
- package/tests/examples/__snapshots__/example24.snap.svg +50 -28
- package/tests/examples/__snapshots__/example25.snap.svg +175 -49
- package/tests/examples/__snapshots__/example26.snap.svg +16 -8
- package/tests/examples/__snapshots__/example27.snap.svg +24 -12
- package/tests/examples/__snapshots__/example28.snap.svg +29 -189
- package/tests/examples/__snapshots__/example29.snap.svg +184 -92
- package/tests/examples/__snapshots__/example30.snap.svg +48 -24
- package/tests/examples/__snapshots__/example31.snap.svg +88 -0
- package/tests/examples/example01.test.ts +2 -2
- package/tests/examples/example02.test.ts +2 -2
- package/tests/examples/example03.test.ts +2 -2
- package/tests/examples/example04.test.ts +2 -2
- package/tests/examples/example05.test.ts +2 -2
- package/tests/examples/example06.test.ts +2 -2
- package/tests/examples/example07.test.ts +2 -2
- package/tests/examples/example08.test.ts +2 -2
- package/tests/examples/example09.test.ts +2 -2
- package/tests/examples/example10.test.ts +2 -2
- package/tests/examples/{example11.test.tsx → example11.test.ts} +2 -2
- package/tests/examples/{example12.test.tsx → example12.test.ts} +2 -2
- package/tests/examples/{example13.test.tsx → example13.test.ts} +2 -2
- package/tests/examples/example14.test.ts +12 -0
- package/tests/examples/example15.test.ts +12 -0
- package/tests/examples/example16.test.ts +12 -0
- package/tests/examples/example17.test.ts +12 -0
- package/tests/examples/example18.test.ts +12 -0
- package/tests/examples/example19.test.ts +12 -0
- package/tests/examples/example20.test.ts +12 -0
- package/tests/examples/example21.test.ts +12 -0
- package/tests/examples/example22.test.ts +12 -0
- package/tests/examples/example23.test.ts +12 -0
- package/tests/examples/example24.test.ts +12 -0
- package/tests/examples/example25.test.ts +12 -0
- package/tests/examples/example26.test.ts +12 -0
- package/tests/examples/example27.test.ts +3 -232
- package/tests/examples/example28.test.ts +1 -2
- package/tests/examples/example29.test.ts +1 -2
- package/tests/examples/example30.test.ts +2 -2
- package/tests/examples/example31.test.ts +12 -0
- package/site/examples/example01-basic.page.tsx +0 -105
- package/site/examples/example04-single-symbol.page.tsx +0 -46
- package/site/examples/example15-rp2040-caps.page.tsx +0 -623
- package/site/examples/example16-core-repro51.page.tsx +0 -107
- package/site/examples/example17-straight-line-trace.page.tsx +0 -165
- package/tests/examples/example14.test.tsx +0 -11
- package/tests/examples/example15.test.tsx +0 -629
- package/tests/examples/example16.test.tsx +0 -113
- package/tests/examples/example17.test.tsx +0 -171
- package/tests/examples/example18.test.tsx +0 -187
- package/tests/examples/example19.test.tsx +0 -175
- package/tests/examples/example20.test.tsx +0 -190
- package/tests/examples/example21.test.tsx +0 -183
- package/tests/examples/example22.test.tsx +0 -109
- package/tests/examples/example23.test.tsx +0 -109
- package/tests/examples/example24.test.tsx +0 -114
- package/tests/examples/example25.test.tsx +0 -143
- package/tests/examples/example26.test.tsx +0 -134
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chips": [
|
|
3
|
+
{
|
|
4
|
+
"chipId": "schematic_component_0",
|
|
5
|
+
"center": {
|
|
6
|
+
"x": 0,
|
|
7
|
+
"y": 0
|
|
8
|
+
},
|
|
9
|
+
"width": 2.3,
|
|
10
|
+
"height": 1,
|
|
11
|
+
"pins": [
|
|
12
|
+
{
|
|
13
|
+
"pinId": "U1.1",
|
|
14
|
+
"x": -1.15,
|
|
15
|
+
"y": 0.30000000000000004
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"pinId": "U1.2",
|
|
19
|
+
"x": -1.15,
|
|
20
|
+
"y": 0.10000000000000003
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"pinId": "U1.3",
|
|
24
|
+
"x": -1.15,
|
|
25
|
+
"y": -0.09999999999999998
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"pinId": "U1.4",
|
|
29
|
+
"x": -1.15,
|
|
30
|
+
"y": -0.30000000000000004
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"pinId": "U1.5",
|
|
34
|
+
"x": 1.15,
|
|
35
|
+
"y": -0.30000000000000004
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"pinId": "U1.6",
|
|
39
|
+
"x": 1.15,
|
|
40
|
+
"y": -0.10000000000000003
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"pinId": "U1.7",
|
|
44
|
+
"x": 1.15,
|
|
45
|
+
"y": 0.09999999999999998
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"pinId": "U1.8",
|
|
49
|
+
"x": 1.15,
|
|
50
|
+
"y": 0.30000000000000004
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"chipId": "schematic_component_1",
|
|
56
|
+
"center": {
|
|
57
|
+
"x": -1.1500000000000004,
|
|
58
|
+
"y": 1.6700000000000002
|
|
59
|
+
},
|
|
60
|
+
"width": 1.04,
|
|
61
|
+
"height": 1.0400000000000005,
|
|
62
|
+
"pins": [
|
|
63
|
+
{
|
|
64
|
+
"pinId": "D1.1",
|
|
65
|
+
"x": -1.1500000000000004,
|
|
66
|
+
"y": 1.15
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"pinId": "D1.2",
|
|
70
|
+
"x": -1.1500000000000004,
|
|
71
|
+
"y": 2.1900000000000004
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"chipId": "schematic_component_2",
|
|
77
|
+
"center": {
|
|
78
|
+
"x": -2.37,
|
|
79
|
+
"y": 0.10000000000000009
|
|
80
|
+
},
|
|
81
|
+
"width": 1.04,
|
|
82
|
+
"height": 0.54,
|
|
83
|
+
"pins": [
|
|
84
|
+
{
|
|
85
|
+
"pinId": "D2.1",
|
|
86
|
+
"x": -1.85,
|
|
87
|
+
"y": 0.10000000000000002
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"pinId": "D2.2",
|
|
91
|
+
"x": -2.89,
|
|
92
|
+
"y": 0.10000000000000016
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"chipId": "schematic_component_3",
|
|
98
|
+
"center": {
|
|
99
|
+
"x": 2.4,
|
|
100
|
+
"y": -0.3000000000000007
|
|
101
|
+
},
|
|
102
|
+
"width": 1.1000000000000005,
|
|
103
|
+
"height": 0.84,
|
|
104
|
+
"pins": [
|
|
105
|
+
{
|
|
106
|
+
"pinId": "C1.1",
|
|
107
|
+
"x": 1.8499999999999996,
|
|
108
|
+
"y": -0.3000000000000007
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"pinId": "C1.2",
|
|
112
|
+
"x": 2.95,
|
|
113
|
+
"y": -0.3000000000000007
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"chipId": "schematic_component_4",
|
|
119
|
+
"center": {
|
|
120
|
+
"x": 4.2,
|
|
121
|
+
"y": -0.3000000000000007
|
|
122
|
+
},
|
|
123
|
+
"width": 1.0999999999999996,
|
|
124
|
+
"height": 0.84,
|
|
125
|
+
"pins": [
|
|
126
|
+
{
|
|
127
|
+
"pinId": "C2.1",
|
|
128
|
+
"x": 3.6500000000000004,
|
|
129
|
+
"y": -0.3000000000000007
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"pinId": "C2.2",
|
|
133
|
+
"x": 4.75,
|
|
134
|
+
"y": -0.3000000000000007
|
|
135
|
+
}
|
|
136
|
+
]
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"directConnections": [
|
|
140
|
+
{
|
|
141
|
+
"pinIds": ["U1.5", "C1.1"],
|
|
142
|
+
"netId": ".U1 .VCC to .C1 .pin1"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"pinIds": ["C1.2", "C2.1"],
|
|
146
|
+
"netId": ".C1 .pin2 to .C2 .pin1"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"pinIds": ["U1.1", "D1.1"],
|
|
150
|
+
"netId": ".U1 .OUT1 to .D1 .pin1"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"pinIds": ["U1.2", "D2.1"],
|
|
154
|
+
"netId": ".U1 .OUT2 to .D2 .pin1"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"netConnections": [],
|
|
158
|
+
"availableNetLabelOrientations": {},
|
|
159
|
+
"maxMspPairDistance": 2.4
|
|
160
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chips": [
|
|
3
|
+
{
|
|
4
|
+
"chipId": "schematic_component_0",
|
|
5
|
+
"center": {
|
|
6
|
+
"x": 0,
|
|
7
|
+
"y": 0
|
|
8
|
+
},
|
|
9
|
+
"width": 2,
|
|
10
|
+
"height": 1.4,
|
|
11
|
+
"pins": [
|
|
12
|
+
{
|
|
13
|
+
"pinId": "U3.8",
|
|
14
|
+
"x": -1.4,
|
|
15
|
+
"y": 0.42500000000000004
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"pinId": "U3.4",
|
|
19
|
+
"x": -1.4,
|
|
20
|
+
"y": -0.42500000000000004
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"pinId": "U3.1",
|
|
24
|
+
"x": 1.4,
|
|
25
|
+
"y": 0.5
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"pinId": "U3.6",
|
|
29
|
+
"x": 1.4,
|
|
30
|
+
"y": 0.30000000000000004
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"pinId": "U3.5",
|
|
34
|
+
"x": 1.4,
|
|
35
|
+
"y": 0.10000000000000009
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"pinId": "U3.2",
|
|
39
|
+
"x": 1.4,
|
|
40
|
+
"y": -0.09999999999999998
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"pinId": "U3.3",
|
|
44
|
+
"x": 1.4,
|
|
45
|
+
"y": -0.3
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"pinId": "U3.7",
|
|
49
|
+
"x": 1.4,
|
|
50
|
+
"y": -0.5
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"chipId": "schematic_component_1",
|
|
56
|
+
"center": {
|
|
57
|
+
"x": -2.3145833,
|
|
58
|
+
"y": 0
|
|
59
|
+
},
|
|
60
|
+
"width": 0.5291665999999999,
|
|
61
|
+
"height": 1.0583333000000001,
|
|
62
|
+
"pins": [
|
|
63
|
+
{
|
|
64
|
+
"pinId": "C20.1",
|
|
65
|
+
"x": -2.3148566499999994,
|
|
66
|
+
"y": 0.5512093000000002
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"pinId": "C20.2",
|
|
70
|
+
"x": -2.31430995,
|
|
71
|
+
"y": -0.5512093000000002
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"chipId": "schematic_component_2",
|
|
77
|
+
"center": {
|
|
78
|
+
"x": 1.7577928249999983,
|
|
79
|
+
"y": 1.7512907000000002
|
|
80
|
+
},
|
|
81
|
+
"width": 0.3155856499999966,
|
|
82
|
+
"height": 1.0583332999999997,
|
|
83
|
+
"pins": [
|
|
84
|
+
{
|
|
85
|
+
"pinId": "R11.1",
|
|
86
|
+
"x": 1.7580660749999977,
|
|
87
|
+
"y": 2.3025814000000002
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"pinId": "R11.2",
|
|
91
|
+
"x": 1.757519574999999,
|
|
92
|
+
"y": 1.2
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"chipId": "schematic_component_3",
|
|
98
|
+
"center": {
|
|
99
|
+
"x": -1.7577928249999983,
|
|
100
|
+
"y": -2.7512907
|
|
101
|
+
},
|
|
102
|
+
"width": 0.3155856499999966,
|
|
103
|
+
"height": 1.0583332999999997,
|
|
104
|
+
"pins": [
|
|
105
|
+
{
|
|
106
|
+
"pinId": "R12.1",
|
|
107
|
+
"x": -1.7580660749999977,
|
|
108
|
+
"y": -3.3025814000000002
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"pinId": "R12.2",
|
|
112
|
+
"x": -1.757519574999999,
|
|
113
|
+
"y": -2.2
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"chipId": "schematic_component_4",
|
|
119
|
+
"center": {
|
|
120
|
+
"x": 1.7577928249999983,
|
|
121
|
+
"y": -2.7512907
|
|
122
|
+
},
|
|
123
|
+
"width": 0.3155856499999966,
|
|
124
|
+
"height": 1.0583332999999997,
|
|
125
|
+
"pins": [
|
|
126
|
+
{
|
|
127
|
+
"pinId": "R13.1",
|
|
128
|
+
"x": 1.7580660749999977,
|
|
129
|
+
"y": -3.3025814000000002
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"pinId": "R13.2",
|
|
133
|
+
"x": 1.757519574999999,
|
|
134
|
+
"y": -2.2
|
|
135
|
+
}
|
|
136
|
+
]
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"directConnections": [
|
|
140
|
+
{
|
|
141
|
+
"pinIds": ["C20.1", "U3.8"],
|
|
142
|
+
"netId": "capacitor.C20 > port.pin1 to .U3 > .VDD"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"pinIds": ["C20.2", "U3.4"],
|
|
146
|
+
"netId": "capacitor.C20 > port.pin2 to .U3 > .GND"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"pinIds": ["R11.2", "U3.1"],
|
|
150
|
+
"netId": "resistor.R11 > port.pin2 to .U3 > .N_CS"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"pinIds": ["R13.2", "R12.2"],
|
|
154
|
+
"netId": "resistor.R11 > port.pin1 to resistor.R12 > port.pin1"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"netConnections": [
|
|
158
|
+
{
|
|
159
|
+
"netId": "V3_3",
|
|
160
|
+
"pinIds": ["U3.8", "U3.3", "U3.7", "C20.1", "R11.1"]
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"netId": "GND",
|
|
164
|
+
"pinIds": ["U3.4", "C20.2"]
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"netId": "FLASH_N_CS",
|
|
168
|
+
"pinIds": ["U3.1", "R11.2"]
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"availableNetLabelOrientations": {
|
|
172
|
+
"V3_3": ["y+"],
|
|
173
|
+
"GND": ["y-"]
|
|
174
|
+
},
|
|
175
|
+
"maxMspPairDistance": 5
|
|
176
|
+
}
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chips": [
|
|
3
|
+
{
|
|
4
|
+
"chipId": "schematic_component_0",
|
|
5
|
+
"center": {
|
|
6
|
+
"x": 0,
|
|
7
|
+
"y": 0
|
|
8
|
+
},
|
|
9
|
+
"width": 0.4,
|
|
10
|
+
"height": 0.8,
|
|
11
|
+
"pins": [
|
|
12
|
+
{
|
|
13
|
+
"pinId": "U1.6",
|
|
14
|
+
"x": 0.6000000000000001,
|
|
15
|
+
"y": -0.2
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"pinId": "U1.8",
|
|
19
|
+
"x": 0.6000000000000001,
|
|
20
|
+
"y": 0
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"pinId": "U1.1",
|
|
24
|
+
"x": 0.6000000000000001,
|
|
25
|
+
"y": 0.2
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"chipId": "schematic_component_1",
|
|
31
|
+
"center": {
|
|
32
|
+
"x": 1.4,
|
|
33
|
+
"y": 0.55
|
|
34
|
+
},
|
|
35
|
+
"width": 0.5291665999999999,
|
|
36
|
+
"height": 1.0583333000000001,
|
|
37
|
+
"pins": [
|
|
38
|
+
{
|
|
39
|
+
"pinId": "C2.1",
|
|
40
|
+
"x": 1.4002733499999995,
|
|
41
|
+
"y": -0.0012093000000001908
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"pinId": "C2.2",
|
|
45
|
+
"x": 1.3997266500000003,
|
|
46
|
+
"y": 1.1012093000000003
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"chipId": "schematic_component_2",
|
|
52
|
+
"center": {
|
|
53
|
+
"x": 2.7,
|
|
54
|
+
"y": 1.3
|
|
55
|
+
},
|
|
56
|
+
"width": 1.0583332999999997,
|
|
57
|
+
"height": 0.388910699999999,
|
|
58
|
+
"pins": [
|
|
59
|
+
{
|
|
60
|
+
"pinId": "R1.1",
|
|
61
|
+
"x": 2.1487093,
|
|
62
|
+
"y": 1.3002732499999994
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"pinId": "R1.2",
|
|
66
|
+
"x": 3.2512907000000006,
|
|
67
|
+
"y": 1.2997267500000007
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"chipId": "schematic_component_3",
|
|
73
|
+
"center": {
|
|
74
|
+
"x": 4.4,
|
|
75
|
+
"y": 0
|
|
76
|
+
},
|
|
77
|
+
"width": 0.4,
|
|
78
|
+
"height": 0.4,
|
|
79
|
+
"pins": [
|
|
80
|
+
{
|
|
81
|
+
"pinId": "JP5.1",
|
|
82
|
+
"x": 3.8000000000000003,
|
|
83
|
+
"y": 0
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"chipId": "schematic_component_4",
|
|
89
|
+
"center": {
|
|
90
|
+
"x": 4.4,
|
|
91
|
+
"y": -0.9
|
|
92
|
+
},
|
|
93
|
+
"width": 0.4,
|
|
94
|
+
"height": 0.4,
|
|
95
|
+
"pins": [
|
|
96
|
+
{
|
|
97
|
+
"pinId": "JP9.1",
|
|
98
|
+
"x": 3.8000000000000003,
|
|
99
|
+
"y": -0.9
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"chipId": "schematic_component_5",
|
|
105
|
+
"center": {
|
|
106
|
+
"x": 2,
|
|
107
|
+
"y": -1.1
|
|
108
|
+
},
|
|
109
|
+
"width": 0.8843008999999997,
|
|
110
|
+
"height": 0.5299361999999987,
|
|
111
|
+
"pins": [
|
|
112
|
+
{
|
|
113
|
+
"pinId": "JP8.1",
|
|
114
|
+
"x": 2.4458007999999998,
|
|
115
|
+
"y": -1.2015872704999997
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"pinId": "JP8.2",
|
|
119
|
+
"x": 2.0034928,
|
|
120
|
+
"y": -0.8474009705000005
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"pinId": "JP8.3",
|
|
124
|
+
"x": 1.5541992,
|
|
125
|
+
"y": -1.2014628704999997
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"directConnections": [
|
|
131
|
+
{
|
|
132
|
+
"pinIds": ["C2.1", "U1.8"],
|
|
133
|
+
"netId": "capacitor.C2 > port.pin1 to .U1 > .pin8"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"pinIds": ["C2.2", "R1.1"],
|
|
137
|
+
"netId": "capacitor.C2 > port.pin2 to .R1 > .pin1"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"pinIds": ["R1.1", "U1.1"],
|
|
141
|
+
"netId": "resistor.R1 > port.pin1 to .U1 > .pin1"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"pinIds": ["JP5.1", "R1.2"],
|
|
145
|
+
"netId": "pinheader.JP5 > port.pin1 to .R1 > .pin2"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"pinIds": ["JP9.1", "R1.2"],
|
|
149
|
+
"netId": "pinheader.JP9 > port.pin1 to .R1 > .pin2"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"pinIds": ["JP8.2", "U1.6"],
|
|
153
|
+
"netId": "solderjumper.JP8 > port.pin2 to .U1 > .pin6"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"netConnections": [
|
|
157
|
+
{
|
|
158
|
+
"netId": "PAD",
|
|
159
|
+
"pinIds": ["R1.2", "JP5.1", "JP9.1"]
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"availableNetLabelOrientations": {},
|
|
163
|
+
"maxMspPairDistance": 5
|
|
164
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chips": [
|
|
3
|
+
{
|
|
4
|
+
"chipId": "schematic_component_0",
|
|
5
|
+
"center": {
|
|
6
|
+
"x": 0,
|
|
7
|
+
"y": 0
|
|
8
|
+
},
|
|
9
|
+
"width": 2.4000000000000004,
|
|
10
|
+
"height": 1,
|
|
11
|
+
"pins": [
|
|
12
|
+
{
|
|
13
|
+
"pinId": "U1.1",
|
|
14
|
+
"x": 1.2000000000000002,
|
|
15
|
+
"y": -0.30000000000000004
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"pinId": "U1.2",
|
|
19
|
+
"x": -1.2000000000000002,
|
|
20
|
+
"y": -0.30000000000000004
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"pinId": "U1.3",
|
|
24
|
+
"x": 1.2000000000000002,
|
|
25
|
+
"y": 0.09999999999999998
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"pinId": "U1.4",
|
|
29
|
+
"x": -1.2000000000000002,
|
|
30
|
+
"y": 0.30000000000000004
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"pinId": "U1.5",
|
|
34
|
+
"x": -1.2000000000000002,
|
|
35
|
+
"y": 0.10000000000000003
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"pinId": "U1.6",
|
|
39
|
+
"x": -1.2000000000000002,
|
|
40
|
+
"y": -0.09999999999999998
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"pinId": "U1.7",
|
|
44
|
+
"x": 1.2000000000000002,
|
|
45
|
+
"y": -0.10000000000000003
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"pinId": "U1.8",
|
|
49
|
+
"x": 1.2000000000000002,
|
|
50
|
+
"y": 0.30000000000000004
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"chipId": "schematic_component_1",
|
|
56
|
+
"center": {
|
|
57
|
+
"x": 2.7,
|
|
58
|
+
"y": 1.9049999999999998
|
|
59
|
+
},
|
|
60
|
+
"width": 2.2,
|
|
61
|
+
"height": 0.8,
|
|
62
|
+
"pins": [
|
|
63
|
+
{
|
|
64
|
+
"pinId": "J1.1",
|
|
65
|
+
"x": 1.6,
|
|
66
|
+
"y": 2.105
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"pinId": "J1.2",
|
|
70
|
+
"x": 1.6,
|
|
71
|
+
"y": 1.9049999999999998
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"pinId": "J1.3",
|
|
75
|
+
"x": 1.6,
|
|
76
|
+
"y": 1.7049999999999998
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"directConnections": [],
|
|
82
|
+
"netConnections": [
|
|
83
|
+
{
|
|
84
|
+
"netId": "GND",
|
|
85
|
+
"pinIds": ["U1.1", "J1.3"]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"netId": "VCC",
|
|
89
|
+
"pinIds": ["U1.8", "J1.1"]
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"availableNetLabelOrientations": {
|
|
93
|
+
"VCC": ["y+"],
|
|
94
|
+
"OUT": ["x-", "x+"],
|
|
95
|
+
"GND": ["y-"]
|
|
96
|
+
},
|
|
97
|
+
"maxMspPairDistance": 2.4
|
|
98
|
+
}
|