@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,618 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chips": [
|
|
3
|
+
{
|
|
4
|
+
"chipId": "schematic_component_0",
|
|
5
|
+
"center": {
|
|
6
|
+
"x": 0.79,
|
|
7
|
+
"y": 0
|
|
8
|
+
},
|
|
9
|
+
"width": 3.8,
|
|
10
|
+
"height": 8.400000000000004,
|
|
11
|
+
"pins": [
|
|
12
|
+
{
|
|
13
|
+
"pinId": "U3.1",
|
|
14
|
+
"x": -1.1099999999999999,
|
|
15
|
+
"y": 1.2000000000000015
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"pinId": "U3.2",
|
|
19
|
+
"x": -1.1099999999999999,
|
|
20
|
+
"y": -1.8000000000000007
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"pinId": "U3.3",
|
|
24
|
+
"x": -1.1099999999999999,
|
|
25
|
+
"y": -2.000000000000001
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"pinId": "U3.4",
|
|
29
|
+
"x": -1.1099999999999999,
|
|
30
|
+
"y": -2.200000000000001
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"pinId": "U3.5",
|
|
34
|
+
"x": -1.1099999999999999,
|
|
35
|
+
"y": -2.4000000000000012
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"pinId": "U3.6",
|
|
39
|
+
"x": -1.1099999999999999,
|
|
40
|
+
"y": -2.6000000000000014
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"pinId": "U3.7",
|
|
44
|
+
"x": -1.1099999999999999,
|
|
45
|
+
"y": -2.8000000000000016
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"pinId": "U3.8",
|
|
49
|
+
"x": -1.1099999999999999,
|
|
50
|
+
"y": -3.0000000000000018
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"pinId": "U3.9",
|
|
54
|
+
"x": -1.1099999999999999,
|
|
55
|
+
"y": -3.200000000000002
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"pinId": "U3.10",
|
|
59
|
+
"x": -1.1099999999999999,
|
|
60
|
+
"y": 1.0000000000000013
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"pinId": "U3.11",
|
|
64
|
+
"x": -1.1099999999999999,
|
|
65
|
+
"y": -3.400000000000002
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"pinId": "U3.12",
|
|
69
|
+
"x": -1.1099999999999999,
|
|
70
|
+
"y": -3.6000000000000023
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"pinId": "U3.13",
|
|
74
|
+
"x": -1.1099999999999999,
|
|
75
|
+
"y": -3.8000000000000025
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"pinId": "U3.14",
|
|
79
|
+
"x": -1.1099999999999999,
|
|
80
|
+
"y": -4.000000000000002
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"pinId": "U3.15",
|
|
84
|
+
"x": 2.69,
|
|
85
|
+
"y": -0.5000000000000009
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"pinId": "U3.16",
|
|
89
|
+
"x": 2.69,
|
|
90
|
+
"y": -0.7000000000000011
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"pinId": "U3.17",
|
|
94
|
+
"x": 2.69,
|
|
95
|
+
"y": -0.9000000000000012
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"pinId": "U3.18",
|
|
99
|
+
"x": 2.69,
|
|
100
|
+
"y": -1.1000000000000014
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"pinId": "U3.19",
|
|
104
|
+
"x": 2.69,
|
|
105
|
+
"y": -1.3000000000000014
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"pinId": "U3.20",
|
|
109
|
+
"x": 2.69,
|
|
110
|
+
"y": -1.9000000000000015
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"pinId": "U3.21",
|
|
114
|
+
"x": 2.69,
|
|
115
|
+
"y": -2.1000000000000014
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"pinId": "U3.22",
|
|
119
|
+
"x": -1.1099999999999999,
|
|
120
|
+
"y": 0.8000000000000012
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"pinId": "U3.23",
|
|
124
|
+
"x": -1.1099999999999999,
|
|
125
|
+
"y": 2.8000000000000016
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"pinId": "U3.24",
|
|
129
|
+
"x": 2.69,
|
|
130
|
+
"y": -2.7000000000000015
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"pinId": "U3.25",
|
|
134
|
+
"x": 2.69,
|
|
135
|
+
"y": -2.9000000000000012
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"pinId": "U3.26",
|
|
139
|
+
"x": 2.69,
|
|
140
|
+
"y": -3.1000000000000014
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"pinId": "U3.27",
|
|
144
|
+
"x": 2.69,
|
|
145
|
+
"y": 0.0999999999999992
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"pinId": "U3.28",
|
|
149
|
+
"x": 2.69,
|
|
150
|
+
"y": 0.2999999999999994
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"pinId": "U3.29",
|
|
154
|
+
"x": 2.69,
|
|
155
|
+
"y": 0.49999999999999956
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"pinId": "U3.30",
|
|
159
|
+
"x": 2.69,
|
|
160
|
+
"y": 0.6999999999999997
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"pinId": "U3.31",
|
|
164
|
+
"x": 2.69,
|
|
165
|
+
"y": 0.8999999999999995
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"pinId": "U3.32",
|
|
169
|
+
"x": 2.69,
|
|
170
|
+
"y": 1.0999999999999996
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"pinId": "U3.33",
|
|
174
|
+
"x": -1.1099999999999999,
|
|
175
|
+
"y": 0.600000000000001
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"pinId": "U3.34",
|
|
179
|
+
"x": 2.69,
|
|
180
|
+
"y": 1.2999999999999998
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"pinId": "U3.35",
|
|
184
|
+
"x": 2.69,
|
|
185
|
+
"y": 1.5
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"pinId": "U3.36",
|
|
189
|
+
"x": 2.69,
|
|
190
|
+
"y": 1.7000000000000002
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"pinId": "U3.37",
|
|
194
|
+
"x": 2.69,
|
|
195
|
+
"y": 1.9000000000000004
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"pinId": "U3.38",
|
|
199
|
+
"x": 2.69,
|
|
200
|
+
"y": 2.500000000000001
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"pinId": "U3.39",
|
|
204
|
+
"x": 2.69,
|
|
205
|
+
"y": 2.700000000000001
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"pinId": "U3.40",
|
|
209
|
+
"x": 2.69,
|
|
210
|
+
"y": 2.9000000000000012
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"pinId": "U3.41",
|
|
214
|
+
"x": 2.69,
|
|
215
|
+
"y": 3.1000000000000014
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"pinId": "U3.42",
|
|
219
|
+
"x": -1.1099999999999999,
|
|
220
|
+
"y": 0.4000000000000008
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"pinId": "U3.43",
|
|
224
|
+
"x": -1.1099999999999999,
|
|
225
|
+
"y": -1.6000000000000005
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"pinId": "U3.44",
|
|
229
|
+
"x": -1.1099999999999999,
|
|
230
|
+
"y": 2.0000000000000018
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"pinId": "U3.45",
|
|
234
|
+
"x": -1.1099999999999999,
|
|
235
|
+
"y": 1.8000000000000016
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"pinId": "U3.46",
|
|
239
|
+
"x": -1.1099999999999999,
|
|
240
|
+
"y": -1.4000000000000004
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"pinId": "U3.47",
|
|
244
|
+
"x": -1.1099999999999999,
|
|
245
|
+
"y": -1.2000000000000002
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"pinId": "U3.48",
|
|
249
|
+
"x": -1.1099999999999999,
|
|
250
|
+
"y": -1
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"pinId": "U3.49",
|
|
254
|
+
"x": -1.1099999999999999,
|
|
255
|
+
"y": 0.20000000000000062
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"pinId": "U3.50",
|
|
259
|
+
"x": -1.1099999999999999,
|
|
260
|
+
"y": 2.600000000000002
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"pinId": "U3.51",
|
|
264
|
+
"x": -1.1099999999999999,
|
|
265
|
+
"y": 3.0000000000000018
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"pinId": "U3.52",
|
|
269
|
+
"x": -1.1099999999999999,
|
|
270
|
+
"y": 3.200000000000002
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"pinId": "U3.53",
|
|
274
|
+
"x": -1.1099999999999999,
|
|
275
|
+
"y": 3.4000000000000017
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"pinId": "U3.54",
|
|
279
|
+
"x": -1.1099999999999999,
|
|
280
|
+
"y": 3.600000000000002
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"pinId": "U3.55",
|
|
284
|
+
"x": -1.1099999999999999,
|
|
285
|
+
"y": 3.8000000000000016
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"pinId": "U3.56",
|
|
289
|
+
"x": -1.1099999999999999,
|
|
290
|
+
"y": 4.000000000000002
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"pinId": "U3.57",
|
|
294
|
+
"x": -1.1099999999999999,
|
|
295
|
+
"y": -0.39999999999999947
|
|
296
|
+
}
|
|
297
|
+
]
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"chipId": "schematic_component_1",
|
|
301
|
+
"center": {
|
|
302
|
+
"x": -1.5675,
|
|
303
|
+
"y": 5.955000000000002
|
|
304
|
+
},
|
|
305
|
+
"width": 0.53,
|
|
306
|
+
"height": 1.0999999999999996,
|
|
307
|
+
"pins": [
|
|
308
|
+
{
|
|
309
|
+
"pinId": "C12.1",
|
|
310
|
+
"x": -1.5675,
|
|
311
|
+
"y": 6.505000000000002
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"pinId": "C12.2",
|
|
315
|
+
"x": -1.5675,
|
|
316
|
+
"y": 5.405000000000002
|
|
317
|
+
}
|
|
318
|
+
]
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"chipId": "schematic_component_2",
|
|
322
|
+
"center": {
|
|
323
|
+
"x": -0.6374999999999998,
|
|
324
|
+
"y": 5.955000000000002
|
|
325
|
+
},
|
|
326
|
+
"width": 0.53,
|
|
327
|
+
"height": 1.0999999999999996,
|
|
328
|
+
"pins": [
|
|
329
|
+
{
|
|
330
|
+
"pinId": "C14.1",
|
|
331
|
+
"x": -0.6374999999999998,
|
|
332
|
+
"y": 6.505000000000002
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"pinId": "C14.2",
|
|
336
|
+
"x": -0.6374999999999998,
|
|
337
|
+
"y": 5.405000000000002
|
|
338
|
+
}
|
|
339
|
+
]
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"chipId": "schematic_component_3",
|
|
343
|
+
"center": {
|
|
344
|
+
"x": -2.4975,
|
|
345
|
+
"y": 5.955000000000002
|
|
346
|
+
},
|
|
347
|
+
"width": 0.53,
|
|
348
|
+
"height": 1.0999999999999996,
|
|
349
|
+
"pins": [
|
|
350
|
+
{
|
|
351
|
+
"pinId": "C8.1",
|
|
352
|
+
"x": -2.4975,
|
|
353
|
+
"y": 6.505000000000002
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"pinId": "C8.2",
|
|
357
|
+
"x": -2.4975,
|
|
358
|
+
"y": 5.405000000000002
|
|
359
|
+
}
|
|
360
|
+
]
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"chipId": "schematic_component_4",
|
|
364
|
+
"center": {
|
|
365
|
+
"x": 0.2925000000000004,
|
|
366
|
+
"y": 5.955000000000002
|
|
367
|
+
},
|
|
368
|
+
"width": 0.53,
|
|
369
|
+
"height": 1.0999999999999996,
|
|
370
|
+
"pins": [
|
|
371
|
+
{
|
|
372
|
+
"pinId": "C13.1",
|
|
373
|
+
"x": 0.29250000000000037,
|
|
374
|
+
"y": 6.505000000000002
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"pinId": "C13.2",
|
|
378
|
+
"x": 0.2925000000000005,
|
|
379
|
+
"y": 5.405000000000002
|
|
380
|
+
}
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"chipId": "schematic_component_5",
|
|
385
|
+
"center": {
|
|
386
|
+
"x": 1.2225000000000006,
|
|
387
|
+
"y": 5.955000000000002
|
|
388
|
+
},
|
|
389
|
+
"width": 0.53,
|
|
390
|
+
"height": 1.0999999999999996,
|
|
391
|
+
"pins": [
|
|
392
|
+
{
|
|
393
|
+
"pinId": "C15.1",
|
|
394
|
+
"x": 1.2225000000000006,
|
|
395
|
+
"y": 6.505000000000002
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"pinId": "C15.2",
|
|
399
|
+
"x": 1.2225000000000006,
|
|
400
|
+
"y": 5.405000000000002
|
|
401
|
+
}
|
|
402
|
+
]
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"chipId": "schematic_component_6",
|
|
406
|
+
"center": {
|
|
407
|
+
"x": 2.1525000000000007,
|
|
408
|
+
"y": 5.955000000000002
|
|
409
|
+
},
|
|
410
|
+
"width": 0.53,
|
|
411
|
+
"height": 1.0999999999999996,
|
|
412
|
+
"pins": [
|
|
413
|
+
{
|
|
414
|
+
"pinId": "C19.1",
|
|
415
|
+
"x": 2.1525000000000007,
|
|
416
|
+
"y": 6.505000000000002
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"pinId": "C19.2",
|
|
420
|
+
"x": 2.1525000000000007,
|
|
421
|
+
"y": 5.405000000000002
|
|
422
|
+
}
|
|
423
|
+
]
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"chipId": "schematic_component_7",
|
|
427
|
+
"center": {
|
|
428
|
+
"x": -4.6850000000000005,
|
|
429
|
+
"y": 3.218333333333335
|
|
430
|
+
},
|
|
431
|
+
"width": 0.53,
|
|
432
|
+
"height": 1.1000000000000005,
|
|
433
|
+
"pins": [
|
|
434
|
+
{
|
|
435
|
+
"pinId": "C18.1",
|
|
436
|
+
"x": -4.6850000000000005,
|
|
437
|
+
"y": 3.7683333333333353
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"pinId": "C18.2",
|
|
441
|
+
"x": -4.6850000000000005,
|
|
442
|
+
"y": 2.668333333333335
|
|
443
|
+
}
|
|
444
|
+
]
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"chipId": "schematic_component_8",
|
|
448
|
+
"center": {
|
|
449
|
+
"x": -3.7550000000000003,
|
|
450
|
+
"y": 3.218333333333335
|
|
451
|
+
},
|
|
452
|
+
"width": 0.53,
|
|
453
|
+
"height": 1.1000000000000005,
|
|
454
|
+
"pins": [
|
|
455
|
+
{
|
|
456
|
+
"pinId": "C7.1",
|
|
457
|
+
"x": -3.7550000000000003,
|
|
458
|
+
"y": 3.7683333333333353
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"pinId": "C7.2",
|
|
462
|
+
"x": -3.7550000000000003,
|
|
463
|
+
"y": 2.668333333333335
|
|
464
|
+
}
|
|
465
|
+
]
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"chipId": "schematic_component_9",
|
|
469
|
+
"center": {
|
|
470
|
+
"x": -6.415,
|
|
471
|
+
"y": 3.2183333333333355
|
|
472
|
+
},
|
|
473
|
+
"width": 0.53,
|
|
474
|
+
"height": 1.0999999999999996,
|
|
475
|
+
"pins": [
|
|
476
|
+
{
|
|
477
|
+
"pinId": "C9.1",
|
|
478
|
+
"x": -6.415,
|
|
479
|
+
"y": 3.7683333333333353
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"pinId": "C9.2",
|
|
483
|
+
"x": -6.415,
|
|
484
|
+
"y": 2.6683333333333357
|
|
485
|
+
}
|
|
486
|
+
]
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"chipId": "schematic_component_10",
|
|
490
|
+
"center": {
|
|
491
|
+
"x": -2.025,
|
|
492
|
+
"y": 1.450000000000001
|
|
493
|
+
},
|
|
494
|
+
"width": 0.53,
|
|
495
|
+
"height": 1.1,
|
|
496
|
+
"pins": [
|
|
497
|
+
{
|
|
498
|
+
"pinId": "C10.1",
|
|
499
|
+
"x": -2.025,
|
|
500
|
+
"y": 2.000000000000001
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"pinId": "C10.2",
|
|
504
|
+
"x": -2.025,
|
|
505
|
+
"y": 0.900000000000001
|
|
506
|
+
}
|
|
507
|
+
]
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"chipId": "schematic_component_11",
|
|
511
|
+
"center": {
|
|
512
|
+
"x": -2.025,
|
|
513
|
+
"y": -2.1500000000000004
|
|
514
|
+
},
|
|
515
|
+
"width": 0.53,
|
|
516
|
+
"height": 1.1,
|
|
517
|
+
"pins": [
|
|
518
|
+
{
|
|
519
|
+
"pinId": "C11.1",
|
|
520
|
+
"x": -2.025,
|
|
521
|
+
"y": -1.6000000000000003
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"pinId": "C11.2",
|
|
525
|
+
"x": -2.025,
|
|
526
|
+
"y": -2.7
|
|
527
|
+
}
|
|
528
|
+
]
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"directConnections": [
|
|
532
|
+
{
|
|
533
|
+
"pinIds": ["U3.1", "C12.1"],
|
|
534
|
+
"netId": "chip.U3 > port.IOVDD1 to C12.pin1"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"pinIds": ["U3.10", "C14.1"],
|
|
538
|
+
"netId": "chip.U3 > port.IOVDD2 to C14.pin1"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"pinIds": ["U3.22", "C8.1"],
|
|
542
|
+
"netId": "chip.U3 > port.IOVDD3 to C8.pin1"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"pinIds": ["U3.33", "C13.1"],
|
|
546
|
+
"netId": "chip.U3 > port.IOVDD4 to C13.pin1"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"pinIds": ["U3.42", "C15.1"],
|
|
550
|
+
"netId": "chip.U3 > port.IOVDD5 to C15.pin1"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"pinIds": ["U3.49", "C19.1"],
|
|
554
|
+
"netId": "chip.U3 > port.IOVDD6 to C19.pin1"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"pinIds": ["U3.23", "C18.1"],
|
|
558
|
+
"netId": "chip.U3 > port.DVDD1 to C18.1"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"pinIds": ["U3.50", "C7.1"],
|
|
562
|
+
"netId": "chip.U3 > port.DVDD2 to C7.1"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"pinIds": ["C10.1", "U3.44"],
|
|
566
|
+
"netId": "capacitor.C10 > port.pin1 to U3.VREG_VIN"
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"pinIds": ["C11.1", "U3.43"],
|
|
570
|
+
"netId": "capacitor.C11 > port.pin1 to U3.ADC_AVDD"
|
|
571
|
+
}
|
|
572
|
+
],
|
|
573
|
+
"netConnections": [
|
|
574
|
+
{
|
|
575
|
+
"netId": "V3_3",
|
|
576
|
+
"pinIds": [
|
|
577
|
+
"U3.1",
|
|
578
|
+
"U3.10",
|
|
579
|
+
"U3.22",
|
|
580
|
+
"U3.33",
|
|
581
|
+
"U3.42",
|
|
582
|
+
"U3.49",
|
|
583
|
+
"C12.1",
|
|
584
|
+
"C14.1",
|
|
585
|
+
"C8.1",
|
|
586
|
+
"C13.1",
|
|
587
|
+
"C15.1",
|
|
588
|
+
"C19.1"
|
|
589
|
+
]
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"netId": "V1_1",
|
|
593
|
+
"pinIds": ["U3.23", "U3.50", "C18.1", "C7.1", "C9.1"]
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"netId": "GND",
|
|
597
|
+
"pinIds": [
|
|
598
|
+
"C12.2",
|
|
599
|
+
"C14.2",
|
|
600
|
+
"C8.2",
|
|
601
|
+
"C13.2",
|
|
602
|
+
"C15.2",
|
|
603
|
+
"C19.2",
|
|
604
|
+
"C18.2",
|
|
605
|
+
"C7.2",
|
|
606
|
+
"C9.2",
|
|
607
|
+
"C10.2",
|
|
608
|
+
"C11.2"
|
|
609
|
+
]
|
|
610
|
+
}
|
|
611
|
+
],
|
|
612
|
+
"availableNetLabelOrientations": {
|
|
613
|
+
"V3_3": ["y+"],
|
|
614
|
+
"V1_1": ["y+"],
|
|
615
|
+
"GND": ["y-"]
|
|
616
|
+
},
|
|
617
|
+
"maxMspPairDistance": 2.4
|
|
618
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
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": "OUT",
|
|
89
|
+
"pinIds": ["U1.3", "J1.2"]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"netId": "VCC",
|
|
93
|
+
"pinIds": ["U1.8", "J1.1"]
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"availableNetLabelOrientations": {
|
|
97
|
+
"VCC": ["y+"],
|
|
98
|
+
"OUT": ["x-", "x+"],
|
|
99
|
+
"GND": ["y-"]
|
|
100
|
+
},
|
|
101
|
+
"maxMspPairDistance": 2.4
|
|
102
|
+
}
|