@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,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chips": [
|
|
3
|
+
{
|
|
4
|
+
"chipId": "schematic_component_0",
|
|
5
|
+
"center": {
|
|
6
|
+
"x": 0,
|
|
7
|
+
"y": 0
|
|
8
|
+
},
|
|
9
|
+
"width": 0.4,
|
|
10
|
+
"height": 2.5999999999999996,
|
|
11
|
+
"pins": [
|
|
12
|
+
{
|
|
13
|
+
"pinId": "P.1",
|
|
14
|
+
"x": -0.6000000000000001,
|
|
15
|
+
"y": 1.0999999999999999
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"pinId": "P.2",
|
|
19
|
+
"x": -0.6000000000000001,
|
|
20
|
+
"y": 0.8999999999999999
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"pinId": "P.3",
|
|
24
|
+
"x": -0.6000000000000001,
|
|
25
|
+
"y": 0.6999999999999998
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"pinId": "P.4",
|
|
29
|
+
"x": -0.6000000000000001,
|
|
30
|
+
"y": 0.4999999999999998
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"pinId": "P.5",
|
|
34
|
+
"x": -0.6000000000000001,
|
|
35
|
+
"y": 0.2999999999999998
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"pinId": "P.6",
|
|
39
|
+
"x": -0.6000000000000001,
|
|
40
|
+
"y": 0.09999999999999987
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"pinId": "P.7",
|
|
44
|
+
"x": -0.6000000000000001,
|
|
45
|
+
"y": -0.10000000000000009
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"pinId": "P.8",
|
|
49
|
+
"x": -0.6000000000000001,
|
|
50
|
+
"y": -0.30000000000000004
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"pinId": "P.9",
|
|
54
|
+
"x": -0.6000000000000001,
|
|
55
|
+
"y": -0.5
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"pinId": "P.10",
|
|
59
|
+
"x": -0.6000000000000001,
|
|
60
|
+
"y": -0.7
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"pinId": "P.11",
|
|
64
|
+
"x": -0.6000000000000001,
|
|
65
|
+
"y": -0.8999999999999999
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"pinId": "P.12",
|
|
69
|
+
"x": -0.6000000000000001,
|
|
70
|
+
"y": -1.0999999999999999
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"pinId": "P.13",
|
|
74
|
+
"x": 0.6000000000000001,
|
|
75
|
+
"y": -1.0999999999999999
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"pinId": "P.14",
|
|
79
|
+
"x": 0.6000000000000001,
|
|
80
|
+
"y": -0.8999999999999999
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"pinId": "P.15",
|
|
84
|
+
"x": 0.6000000000000001,
|
|
85
|
+
"y": -0.6999999999999998
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"pinId": "P.16",
|
|
89
|
+
"x": 0.6000000000000001,
|
|
90
|
+
"y": -0.4999999999999998
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"pinId": "P.17",
|
|
94
|
+
"x": 0.6000000000000001,
|
|
95
|
+
"y": -0.2999999999999998
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"pinId": "P.18",
|
|
99
|
+
"x": 0.6000000000000001,
|
|
100
|
+
"y": -0.09999999999999987
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"pinId": "P.19",
|
|
104
|
+
"x": 0.6000000000000001,
|
|
105
|
+
"y": 0.10000000000000009
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"pinId": "P.20",
|
|
109
|
+
"x": 0.6000000000000001,
|
|
110
|
+
"y": 0.30000000000000004
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"pinId": "P.21",
|
|
114
|
+
"x": 0.6000000000000001,
|
|
115
|
+
"y": 0.5
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"pinId": "P.22",
|
|
119
|
+
"x": 0.6000000000000001,
|
|
120
|
+
"y": 0.7
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"pinId": "P.23",
|
|
124
|
+
"x": 0.6000000000000001,
|
|
125
|
+
"y": 0.8999999999999999
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"pinId": "P.24",
|
|
129
|
+
"x": 0.6000000000000001,
|
|
130
|
+
"y": 1.0999999999999999
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"directConnections": [
|
|
136
|
+
{
|
|
137
|
+
"pinIds": ["P.1", "P.18"],
|
|
138
|
+
"netId": "P.pin1 to P.pin18"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"pinIds": ["P.2", "P.17"],
|
|
142
|
+
"netId": "P.pin2 to P.pin17"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"pinIds": ["P.3", "P.16"],
|
|
146
|
+
"netId": "P.pin3 to P.pin16"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"pinIds": ["P.4", "P.15"],
|
|
150
|
+
"netId": "P.pin4 to P.pin15"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"pinIds": ["P.5", "P.14"],
|
|
154
|
+
"netId": "P.pin5 to P.pin14"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"pinIds": ["P.6", "P.13"],
|
|
158
|
+
"netId": "P.pin6 to P.pin13"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"pinIds": ["P.7", "P.19"],
|
|
162
|
+
"netId": "P.pin7 to P.pin19"
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"netConnections": [],
|
|
166
|
+
"availableNetLabelOrientations": {},
|
|
167
|
+
"maxMspPairDistance": 2.4
|
|
168
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"chipId": "schematic_component_1",
|
|
21
|
+
"center": {
|
|
22
|
+
"x": 2.45,
|
|
23
|
+
"y": -0.10000000000000009
|
|
24
|
+
},
|
|
25
|
+
"width": 1.0999999999999996,
|
|
26
|
+
"height": 0.388910699999999,
|
|
27
|
+
"pins": [
|
|
28
|
+
{
|
|
29
|
+
"pinId": "R1.1",
|
|
30
|
+
"x": 3,
|
|
31
|
+
"y": -0.10000000000000016
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"directConnections": [],
|
|
37
|
+
"netConnections": [
|
|
38
|
+
{
|
|
39
|
+
"netId": "VCC",
|
|
40
|
+
"pinIds": ["U1.1", "R1.1"]
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"availableNetLabelOrientations": {
|
|
44
|
+
"VCC": ["y+"]
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -41,13 +41,16 @@ y+" data-x="-4" data-y="0.5" cx="67.72277227722776" cy="245.14851485148515" r="3
|
|
|
41
41
|
y-" data-x="-4" data-y="-0.5" cx="67.72277227722776" cy="356.03960396039605" r="3" fill="hsl(3, 100%, 50%, 0.8)" />
|
|
42
42
|
</g>
|
|
43
43
|
<g>
|
|
44
|
-
<circle data-type="point" data-label="
|
|
44
|
+
<circle data-type="point" data-label="anchorPoint
|
|
45
|
+
orientation: y+" data-x="-1.1" data-y="0.20000000000000018" cx="389.3069306930693" cy="278.4158415841584" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
45
46
|
</g>
|
|
46
47
|
<g>
|
|
47
|
-
<circle data-type="point" data-label="
|
|
48
|
+
<circle data-type="point" data-label="anchorPoint
|
|
49
|
+
orientation: x-" data-x="-1.275" data-y="0" cx="369.90099009900996" cy="300.5940594059406" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
48
50
|
</g>
|
|
49
51
|
<g>
|
|
50
|
-
<circle data-type="point" data-label="
|
|
52
|
+
<circle data-type="point" data-label="anchorPoint
|
|
53
|
+
orientation: y-" data-x="-1.4" data-y="-0.7" cx="356.0396039603961" cy="378.2178217821782" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
51
54
|
</g>
|
|
52
55
|
<g>
|
|
53
56
|
<polyline data-points="-0.8,0.2 -2,0.5" data-type="line" data-label="" points="422.5742574257426,278.4158415841584 289.50495049504957,245.14851485148515" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1" />
|
|
@@ -86,13 +89,16 @@ y-" data-x="-4" data-y="-0.5" cx="67.72277227722776" cy="356.03960396039605" r="
|
|
|
86
89
|
<rect data-type="rect" data-label="C2" data-x="-4" data-y="0" x="40.00000000000006" y="245.14851485148515" width="55.44554455445541" height="110.8910891089109" fill="hsl(327, 100%, 50%, 0.8)" stroke="black" stroke-width="0.009017857142857143" />
|
|
87
90
|
</g>
|
|
88
91
|
<g>
|
|
89
|
-
<rect data-type="rect" data-label="
|
|
92
|
+
<rect data-type="rect" data-label="netId: VCC
|
|
93
|
+
globalConnNetId: connectivity_net0" data-x="-1.1" data-y="0.42500000000000016" x="378.21782178217825" y="228.51485148514848" width="22.178217821782198" height="49.9009900990099" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.009017857142857143" />
|
|
90
94
|
</g>
|
|
91
95
|
<g>
|
|
92
|
-
<rect data-type="rect" data-label="
|
|
96
|
+
<rect data-type="rect" data-label="netId: EN
|
|
97
|
+
globalConnNetId: connectivity_net1" data-x="-1.5" data-y="0" x="320" y="289.5049504950495" width="49.90099009900996" height="22.17821782178214" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.009017857142857143" />
|
|
93
98
|
</g>
|
|
94
99
|
<g>
|
|
95
|
-
<rect data-type="rect" data-label="
|
|
100
|
+
<rect data-type="rect" data-label="netId: GND
|
|
101
|
+
globalConnNetId: connectivity_net2" data-x="-1.4" data-y="-0.9249999999999999" x="344.950495049505" y="378.2178217821782" width="22.178217821782198" height="49.9009900990099" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.009017857142857143" />
|
|
96
102
|
</g>
|
|
97
103
|
<g id="crosshair" style="display: none">
|
|
98
104
|
<line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
|
|
@@ -53,16 +53,20 @@ x+" data-x="1" data-y="-0.1" cx="500.20151295522464" cy="341.11637364700744" r="
|
|
|
53
53
|
x+" data-x="1" data-y="0.1" cx="500.20151295522464" cy="324.189420823755" r="3" fill="hsl(323, 100%, 50%, 0.8)" />
|
|
54
54
|
</g>
|
|
55
55
|
<g>
|
|
56
|
-
<circle data-type="point" data-label="
|
|
56
|
+
<circle data-type="point" data-label="anchorPoint
|
|
57
|
+
orientation: y+" data-x="-1.4574283249999997" data-y="1.3024186000000004" cx="292.2176463362275" cy="222.4230062437483" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
57
58
|
</g>
|
|
58
59
|
<g>
|
|
59
|
-
<circle data-type="point" data-label="
|
|
60
|
+
<circle data-type="point" data-label="anchorPoint
|
|
61
|
+
orientation: y-" data-x="-3.0434765500000003" data-y="-0.2000000000000004" cx="157.98282893633558" cy="349.5798500586337" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
60
62
|
</g>
|
|
61
63
|
<g>
|
|
62
|
-
<circle data-type="point" data-label="
|
|
64
|
+
<circle data-type="point" data-label="anchorPoint
|
|
65
|
+
orientation: y-" data-x="1.9148566499999995" data-y="-1.0024186000000008" cx="577.6301897281687" cy="417.4923589921354" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
63
66
|
</g>
|
|
64
67
|
<g>
|
|
65
|
-
<circle data-type="point" data-label="
|
|
68
|
+
<circle data-type="point" data-label="anchorPoint
|
|
69
|
+
orientation: y+" data-x="1.4571549750000001" data-y="0.29999999999999966" cx="538.8927164289255" cy="307.26246800050245" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
66
70
|
</g>
|
|
67
71
|
<g>
|
|
68
72
|
<polyline data-points="-1,0.2 -1.9148566499999995,1.1024186000000005" data-type="line" data-label="" points="330.93198472269955,315.7259444121287 253.50330794975545,239.34995906700078" fill="none" stroke="hsl(248, 100%, 50%, 0.8)" stroke-width="1" />
|
|
@@ -191,16 +195,20 @@ x+" data-x="1" data-y="0.1" cx="500.20151295522464" cy="324.189420823755" r="3"
|
|
|
191
195
|
<rect data-type="rect" data-label="schematic_component_4" data-x="0" data-y="0" x="330.93198472269955" y="298.7989915888762" width="169.2695282325251" height="67.70781129300997" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.011815475714285715" />
|
|
192
196
|
</g>
|
|
193
197
|
<g>
|
|
194
|
-
<rect data-type="rect" data-label="
|
|
198
|
+
<rect data-type="rect" data-label="netId: VSYS
|
|
199
|
+
globalConnNetId: connectivity_net0" data-x="-1.4574283249999997" data-y="1.5274186000000005" x="283.75416992460123" y="184.33736239143013" width="16.926952823252577" height="38.08564385231816" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.011815475714285715" />
|
|
195
200
|
</g>
|
|
196
201
|
<g>
|
|
197
|
-
<rect data-type="rect" data-label="
|
|
202
|
+
<rect data-type="rect" data-label="netId: GND
|
|
203
|
+
globalConnNetId: connectivity_net1" data-x="-3.0434765500000003" data-y="-0.4250000000000004" x="149.51935252470935" y="349.5798500586337" width="16.926952823252492" height="38.085643852318185" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.011815475714285715" />
|
|
198
204
|
</g>
|
|
199
205
|
<g>
|
|
200
|
-
<rect data-type="rect" data-label="
|
|
206
|
+
<rect data-type="rect" data-label="netId: GND
|
|
207
|
+
globalConnNetId: connectivity_net1" data-x="1.9148566499999995" data-y="-1.2284186000000008" x="569.1667133165424" y="417.5769937562517" width="16.926952823252577" height="38.08564385231813" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.011815475714285715" />
|
|
201
208
|
</g>
|
|
202
209
|
<g>
|
|
203
|
-
<rect data-type="rect" data-label="
|
|
210
|
+
<rect data-type="rect" data-label="netId: V3_3
|
|
211
|
+
globalConnNetId: connectivity_net2" data-x="1.4571549750000001" data-y="0.5249999999999997" x="530.4292400172993" y="269.1768241481843" width="16.926952823252464" height="38.08564385231813" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.011815475714285715" />
|
|
204
212
|
</g>
|
|
205
213
|
<g id="crosshair" style="display: none">
|
|
206
214
|
<line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
|
|
@@ -97,31 +97,40 @@ x+" data-x="3.5005768910000006" data-y="-1.5514824999999997" cx="568.04313733901
|
|
|
97
97
|
x+" data-x="3.5005768910000006" data-y="-1.5514824999999997" cx="568.0431373390173" cy="429.0254427242018" r="3" fill="hsl(152, 100%, 50%, 0.8)" />
|
|
98
98
|
</g>
|
|
99
99
|
<g>
|
|
100
|
-
<circle data-type="point" data-label="
|
|
100
|
+
<circle data-type="point" data-label="anchorPoint
|
|
101
|
+
orientation: y+" data-x="-3.7005768910000008" data-y="1.4489565000000004" cx="57.78530493992605" cy="216.42097033915468" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
101
102
|
</g>
|
|
102
103
|
<g>
|
|
103
|
-
<circle data-type="point" data-label="
|
|
104
|
+
<circle data-type="point" data-label="anchorPoint
|
|
105
|
+
orientation: x-" data-x="2.4994231089999994" data-y="1.4489565000000004" cx="497.10359429268146" cy="216.42097033915468" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
104
106
|
</g>
|
|
105
107
|
<g>
|
|
106
|
-
<circle data-type="point" data-label="
|
|
108
|
+
<circle data-type="point" data-label="anchorPoint
|
|
109
|
+
orientation: x-" data-x="-3.5005768910000006" data-y="1.4489565000000004" cx="71.9568626609827" cy="216.42097033915468" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
107
110
|
</g>
|
|
108
111
|
<g>
|
|
109
|
-
<circle data-type="point" data-label="
|
|
112
|
+
<circle data-type="point" data-label="anchorPoint
|
|
113
|
+
orientation: y+" data-x="-3.7005768910000008" data-y="-1.5510434999999996" cx="57.78530493992605" cy="428.9943361550041" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
110
114
|
</g>
|
|
111
115
|
<g>
|
|
112
|
-
<circle data-type="point" data-label="
|
|
116
|
+
<circle data-type="point" data-label="anchorPoint
|
|
117
|
+
orientation: x+" data-x="0.5005768910000006" data-y="1.4485175000000003" cx="355.4697715231679" cy="216.4520769083524" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
113
118
|
</g>
|
|
114
119
|
<g>
|
|
115
|
-
<circle data-type="point" data-label="
|
|
120
|
+
<circle data-type="point" data-label="anchorPoint
|
|
121
|
+
orientation: x+" data-x="-2.4994231089999994" data-y="-1.5514824999999997" cx="142.8964057073185" cy="429.0254427242018" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
116
122
|
</g>
|
|
117
123
|
<g>
|
|
118
|
-
<circle data-type="point" data-label="
|
|
124
|
+
<circle data-type="point" data-label="anchorPoint
|
|
125
|
+
orientation: x+" data-x="3.5005768910000006" data-y="-1.5514824999999997" cx="568.0431373390173" cy="429.0254427242018" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
119
126
|
</g>
|
|
120
127
|
<g>
|
|
121
|
-
<circle data-type="point" data-label="
|
|
128
|
+
<circle data-type="point" data-label="anchorPoint
|
|
129
|
+
orientation: y+" data-x="3.7005768910000008" data-y="1.4485175000000003" cx="582.214695060074" cy="216.4520769083524" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
122
130
|
</g>
|
|
123
131
|
<g>
|
|
124
|
-
<circle data-type="point" data-label="
|
|
132
|
+
<circle data-type="point" data-label="anchorPoint
|
|
133
|
+
orientation: x+" data-x="0.5005768910000006" data-y="-1.5514824999999997" cx="355.4697715231679" cy="429.0254427242018" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
125
134
|
</g>
|
|
126
135
|
<g>
|
|
127
136
|
<polyline data-points="-3.5005768910000006,1.4489565000000004 -0.5005768910000006,1.4489565000000004" data-type="line" data-label="" points="71.9568626609827,216.42097033915468 284.5302284768321,216.42097033915468" fill="none" stroke="hsl(340, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
|
|
@@ -187,31 +196,40 @@ x+" data-x="3.5005768910000006" data-y="-1.5514824999999997" cx="568.04313733901
|
|
|
187
196
|
<rect data-type="rect" data-label="schematic_component_5" data-x="3" data-y="-1.5" x="497.10359429268146" y="409.4615364324946" width="70.93954304633587" height="31.831940379671494" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.014112774610714288" />
|
|
188
197
|
</g>
|
|
189
198
|
<g>
|
|
190
|
-
<rect data-type="rect" data-label="
|
|
199
|
+
<rect data-type="rect" data-label="netId: PIN1
|
|
200
|
+
globalConnNetId: connectivity_net0" data-x="-3.7005768910000008" data-y="1.6739565000000005" x="50.69952607939774" y="184.53496546677727" width="14.171557721056644" height="31.886004872377413" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
191
201
|
</g>
|
|
192
202
|
<g>
|
|
193
|
-
<rect data-type="rect" data-label="
|
|
203
|
+
<rect data-type="rect" data-label="netId: PIN1
|
|
204
|
+
globalConnNetId: connectivity_net0" data-x="2.2734231089999994" data-y="1.4489565000000004" x="465.1467316316988" y="209.33519147862637" width="31.88600487237744" height="14.171557721056615" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
194
205
|
</g>
|
|
195
206
|
<g>
|
|
196
|
-
<rect data-type="rect" data-label="
|
|
207
|
+
<rect data-type="rect" data-label="netId: PIN2
|
|
208
|
+
globalConnNetId: connectivity_net1" data-x="-3.7265768910000006" data-y="1.4489565000000004" x="40" y="209.33519147862637" width="31.88600487237744" height="14.171557721056615" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
197
209
|
</g>
|
|
198
210
|
<g>
|
|
199
|
-
<rect data-type="rect" data-label="
|
|
211
|
+
<rect data-type="rect" data-label="netId: PIN2
|
|
212
|
+
globalConnNetId: connectivity_net1" data-x="-3.7005768910000008" data-y="-1.3260434999999995" x="50.69952607939774" y="397.10833128262664" width="14.171557721056644" height="31.88600487237744" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
200
213
|
</g>
|
|
201
214
|
<g>
|
|
202
|
-
<rect data-type="rect" data-label="
|
|
215
|
+
<rect data-type="rect" data-label="netId: PIN3
|
|
216
|
+
globalConnNetId: connectivity_net2" data-x="0.7265768910000006" data-y="1.4485175000000003" x="355.54062931177316" y="209.3662980478241" width="31.88600487237744" height="14.171557721056615" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
203
217
|
</g>
|
|
204
218
|
<g>
|
|
205
|
-
<rect data-type="rect" data-label="
|
|
219
|
+
<rect data-type="rect" data-label="netId: PIN3
|
|
220
|
+
globalConnNetId: connectivity_net2" data-x="-2.2734231089999994" data-y="-1.5514824999999997" x="142.96726349592376" y="421.9396638636735" width="31.88600487237744" height="14.171557721056615" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
206
221
|
</g>
|
|
207
222
|
<g>
|
|
208
|
-
<rect data-type="rect" data-label="
|
|
223
|
+
<rect data-type="rect" data-label="netId: PIN3
|
|
224
|
+
globalConnNetId: connectivity_net2" data-x="3.7265768910000006" data-y="-1.5514824999999997" x="568.1139951276225" y="421.9396638636735" width="31.886004872377498" height="14.171557721056615" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
209
225
|
</g>
|
|
210
226
|
<g>
|
|
211
|
-
<rect data-type="rect" data-label="
|
|
227
|
+
<rect data-type="rect" data-label="netId: PIN4
|
|
228
|
+
globalConnNetId: connectivity_net3" data-x="3.7005768910000008" data-y="1.6735175000000004" x="575.1289161995456" y="184.566072035975" width="14.171557721056615" height="31.886004872377413" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
212
229
|
</g>
|
|
213
230
|
<g>
|
|
214
|
-
<rect data-type="rect" data-label="
|
|
231
|
+
<rect data-type="rect" data-label="netId: PIN4
|
|
232
|
+
globalConnNetId: connectivity_net3" data-x="0.7265768910000006" data-y="-1.5514824999999997" x="355.54062931177316" y="421.9396638636735" width="31.88600487237744" height="14.171557721056615" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.014112774610714288" />
|
|
215
233
|
</g>
|
|
216
234
|
<g id="crosshair" style="display: none">
|
|
217
235
|
<line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
|
|
@@ -13,10 +13,12 @@ y-" data-x="0.31067575550000137" data-y="-0.5800832909999993" cx="404.3668133305
|
|
|
13
13
|
x-" data-x="-0.4467558855000001" data-y="-0.10250625000000019" cx="198.67939570751895" cy="347.8364999709806" r="3" fill="hsl(317, 100%, 50%, 0.8)" />
|
|
14
14
|
</g>
|
|
15
15
|
<g>
|
|
16
|
-
<circle data-type="point" data-label="
|
|
16
|
+
<circle data-type="point" data-label="anchorPoint
|
|
17
|
+
orientation: y+" data-x="0.30397715550000004" data-y="0.5800832909999993" cx="402.5477478715151" cy="162.47313199841204" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
17
18
|
</g>
|
|
18
19
|
<g>
|
|
19
|
-
<circle data-type="point" data-label="
|
|
20
|
+
<circle data-type="point" data-label="anchorPoint
|
|
21
|
+
orientation: y-" data-x="0.31067575550000137" data-y="-0.5800832909999993" cx="404.36681333050564" cy="477.52686800158796" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
20
22
|
</g>
|
|
21
23
|
<g>
|
|
22
24
|
<polyline data-points="0.30397715550000004,0.5800832909999993 0.31067575550000137,-0.5800832909999993" data-type="line" data-label="" points="402.5477478715151,162.47313199841204 404.36681333050564,477.52686800158796" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
|
|
@@ -25,10 +27,12 @@ x-" data-x="-0.4467558855000001" data-y="-0.10250625000000019" cx="198.679395707
|
|
|
25
27
|
<rect data-type="rect" data-label="schematic_component_0" data-x="0" data-y="0" x="198.67939570751895" y="162.47313199841204" width="242.6412085849621" height="315.0537360031759" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.003682440324999998" />
|
|
26
28
|
</g>
|
|
27
29
|
<g>
|
|
28
|
-
<rect data-type="rect" data-label="
|
|
30
|
+
<rect data-type="rect" data-label="netId: V3_3
|
|
31
|
+
globalConnNetId: connectivity_net0" data-x="0.30397715550000004" data-y="0.8060832909999993" x="375.3918427720889" y="40" width="54.311810198852356" height="122.20157294741779" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.003682440324999998" />
|
|
29
32
|
</g>
|
|
30
33
|
<g>
|
|
31
|
-
<rect data-type="rect" data-label="
|
|
34
|
+
<rect data-type="rect" data-label="netId: V3_3
|
|
35
|
+
globalConnNetId: connectivity_net0" data-x="0.31067575550000137" data-y="-0.8060832909999993" x="377.2109082310795" y="477.7984270525822" width="54.3118101988523" height="122.20157294741779" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.003682440324999998" />
|
|
32
36
|
</g>
|
|
33
37
|
<g id="crosshair" style="display: none">
|
|
34
38
|
<line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
|
|
@@ -113,7 +113,8 @@ x-" data-x="1.4798754500000002" data-y="1.0005122999999987" cx="392.133726538461
|
|
|
113
113
|
x+" data-x="2.52012455" data-y="0.9994877000000013" cx="504.16055269230765" cy="223.1320938461537" r="3" fill="hsl(58, 100%, 50%, 0.8)" />
|
|
114
114
|
</g>
|
|
115
115
|
<g>
|
|
116
|
-
<circle data-type="point" data-label="
|
|
116
|
+
<circle data-type="point" data-label="anchorPoint
|
|
117
|
+
orientation: y-" data-x="2.6201245500000003" data-y="0.9994877000000013" cx="514.9297834615385" cy="223.1320938461537" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
117
118
|
</g>
|
|
118
119
|
<g>
|
|
119
120
|
<polyline data-points="2.52012455,0.9994877000000013 -0.9,0.7999999999999999" data-type="line" data-label="" points="504.16055269230765,223.1320938461537 135.8394473076923,244.61538461538464" fill="none" stroke="hsl(248, 100%, 50%, 0.8)" stroke-width="1" />
|
|
@@ -128,7 +129,8 @@ x+" data-x="2.52012455" data-y="0.9994877000000013" cx="504.16055269230765" cy="
|
|
|
128
129
|
<rect data-type="rect" data-label="schematic_component_1" data-x="2" data-y="1" x="392.13372653846153" y="193.58589076923082" width="112.02682615384612" height="58.98206461538453" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.009285714285714286" />
|
|
129
130
|
</g>
|
|
130
131
|
<g>
|
|
131
|
-
<rect data-type="rect" data-label="
|
|
132
|
+
<rect data-type="rect" data-label="netId: .LED1 > port.right to .U1 > .pin20
|
|
133
|
+
globalConnNetId: connectivity_net0" data-x="2.6201245500000003" data-y="0.7744877000000013" x="504.1605526923077" y="223.1320938461537" width="21.538461538461604" height="48.46153846153848" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.009285714285714286" />
|
|
132
134
|
</g>
|
|
133
135
|
<g id="crosshair" style="display: none">
|
|
134
136
|
<line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
|
|
@@ -17,7 +17,8 @@ x-" data-x="2.4487906999999995" data-y="-0.00027334999999961695" cx="516.6019026
|
|
|
17
17
|
x+" data-x="3.5512093000000005" data-y="0.00027334999999961695" cx="600" cy="318.8552321513003" r="3" fill="hsl(122, 100%, 50%, 0.8)" />
|
|
18
18
|
</g>
|
|
19
19
|
<g>
|
|
20
|
-
<circle data-type="point" data-label="
|
|
20
|
+
<circle data-type="point" data-label="anchorPoint
|
|
21
|
+
orientation: y-" data-x="-3.7512907000000006" data-y="0.0002732499999993365" cx="47.565011820330994" cy="318.8552397163121" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
21
22
|
</g>
|
|
22
23
|
<g>
|
|
23
24
|
<polyline data-points="-3.5512907000000005,0.0002732499999993365 2.4487906999999995,-0.00027334999999961695" data-type="line" data-label="" points="62.695035460992926,318.8552397163121 516.6019026004727,318.89659007092195" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1" />
|
|
@@ -32,7 +33,8 @@ x+" data-x="3.5512093000000005" data-y="0.00027334999999961695" cx="600" cy="318
|
|
|
32
33
|
<rect data-type="rect" data-label="schematic_component_1" data-x="3" data-y="0" x="516.6019026004727" y="287.10220709219846" width="83.39809739952727" height="63.547408037825335" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.013218750000000003" />
|
|
33
34
|
</g>
|
|
34
35
|
<g>
|
|
35
|
-
<rect data-type="rect" data-label="
|
|
36
|
+
<rect data-type="rect" data-label="netId: .R1 > .pin1 to .C1 > .pin1
|
|
37
|
+
globalConnNetId: connectivity_net0" data-x="-3.7512907000000006" data-y="-0.22472675000000067" x="40" y="318.8552397163121" width="15.130023640661989" height="34.04255319148939" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.013218750000000003" />
|
|
36
38
|
</g>
|
|
37
39
|
<g id="crosshair" style="display: none">
|
|
38
40
|
<line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
|
|
@@ -49,19 +49,24 @@ y+" data-x="1.7580660749999977" data-y="2.3025814000000002" cx="547.417910680137
|
|
|
49
49
|
y-" data-x="1.757519574999999" data-y="1.2" cx="547.3539750075635" cy="270.4175115470151" r="3" fill="hsl(126, 100%, 50%, 0.8)" />
|
|
50
50
|
</g>
|
|
51
51
|
<g>
|
|
52
|
-
<circle data-type="point" data-label="
|
|
52
|
+
<circle data-type="point" data-label="anchorPoint
|
|
53
|
+
orientation: y+" data-x="-1.8574283249999997" data-y="0.7512093000000004" cx="124.4370028081066" cy="322.9220591216218" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
53
54
|
</g>
|
|
54
55
|
<g>
|
|
55
|
-
<circle data-type="point" data-label="
|
|
56
|
+
<circle data-type="point" data-label="anchorPoint
|
|
57
|
+
orientation: y+" data-x="1.5999999999999999" data-y="-0.3" cx="528.9255761581237" cy="445.9042615218033" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
56
58
|
</g>
|
|
57
59
|
<g>
|
|
58
|
-
<circle data-type="point" data-label="
|
|
60
|
+
<circle data-type="point" data-label="anchorPoint
|
|
61
|
+
orientation: y+" data-x="1.7580660749999977" data-y="2.3025814000000002" cx="547.4179106801375" cy="141.42522723458046" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
59
62
|
</g>
|
|
60
63
|
<g>
|
|
61
|
-
<circle data-type="point" data-label="
|
|
64
|
+
<circle data-type="point" data-label="anchorPoint
|
|
65
|
+
orientation: y-" data-x="-2.31430995" data-y="-0.7512093000000004" cx="70.98588847847327" cy="498.6917639320694" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
62
66
|
</g>
|
|
63
67
|
<g>
|
|
64
|
-
<circle data-type="point" data-label="
|
|
68
|
+
<circle data-type="point" data-label="anchorPoint
|
|
69
|
+
orientation: x+" data-x="1.757519574999999" data-y="0.85" cx="547.3539750075635" cy="311.3644198744657" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
|
|
65
70
|
</g>
|
|
66
71
|
<g>
|
|
67
72
|
<polyline data-points="-2.3148566499999994,0.5512093000000002 -1.4,0.42500000000000004" data-type="line" data-label="" points="70.92192940766586,346.32029245159356 177.95207620854734,361.0856657006556" fill="none" stroke="hsl(256, 100%, 50%, 0.8)" stroke-width="1" />
|
|
@@ -130,19 +135,24 @@ y-" data-x="1.757519574999999" data-y="1.2" cx="547.3539750075635" cy="270.41751
|
|
|
130
135
|
<rect data-type="rect" data-label="schematic_component_2" data-x="1.7577928249999983" data-y="1.7512907000000002" x="528.9255761581237" y="141.42522723458046" width="36.92073337145359" height="128.99228431243466" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.00854765388392857" />
|
|
131
136
|
</g>
|
|
132
137
|
<g>
|
|
133
|
-
<rect data-type="rect" data-label="
|
|
138
|
+
<rect data-type="rect" data-label="netId: V3_3
|
|
139
|
+
globalConnNetId: connectivity_net0" data-x="-1.8574283249999997" data-y="0.9762093000000004" x="112.7378861431207" y="270.2760341291854" width="23.398233329971788" height="52.64602499243642" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.00854765388392857" />
|
|
134
140
|
</g>
|
|
135
141
|
<g>
|
|
136
|
-
<rect data-type="rect" data-label="
|
|
142
|
+
<rect data-type="rect" data-label="netId: V3_3
|
|
143
|
+
globalConnNetId: connectivity_net0" data-x="1.5999999999999999" data-y="-0.07499999999999998" x="517.2264594931378" y="393.2582365293668" width="23.39823332997173" height="52.64602499243648" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.00854765388392857" />
|
|
137
144
|
</g>
|
|
138
145
|
<g>
|
|
139
|
-
<rect data-type="rect" data-label="
|
|
146
|
+
<rect data-type="rect" data-label="netId: V3_3
|
|
147
|
+
globalConnNetId: connectivity_net0" data-x="1.7580660749999977" data-y="2.5285814" x="535.7187940151516" y="88.66221107549416" width="23.39823332997173" height="52.64602499243642" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.00854765388392857" />
|
|
140
148
|
</g>
|
|
141
149
|
<g>
|
|
142
|
-
<rect data-type="rect" data-label="
|
|
150
|
+
<rect data-type="rect" data-label="netId: GND
|
|
151
|
+
globalConnNetId: connectivity_net1" data-x="-2.31430995" data-y="-0.9762093000000004" x="59.28677181348735" y="498.6917639320694" width="23.398233329971788" height="52.64602499243642" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.00854765388392857" />
|
|
143
152
|
</g>
|
|
144
153
|
<g>
|
|
145
|
-
<rect data-type="rect" data-label="
|
|
154
|
+
<rect data-type="rect" data-label="netId: FLASH_N_CS
|
|
155
|
+
globalConnNetId: connectivity_net2" data-x="1.982519574999999" data-y="0.85" x="547.3539750075635" y="299.6653032094798" width="52.64602499243654" height="23.39823332997173" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.00854765388392857" />
|
|
146
156
|
</g>
|
|
147
157
|
<g id="crosshair" style="display: none">
|
|
148
158
|
<line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
|