-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswd-jlink-adapter.kicad_sch
1297 lines (1278 loc) · 53.9 KB
/
swd-jlink-adapter.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x06_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x06_Male" (id 1) (at 0 -10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x06_Male_1_1"
(polyline
(pts
(xy 1.27 -7.62)
(xy 0.8636 -7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 5.08 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -7.62 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x05_Odd_Even" (id 1) (at 1.27 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x05_Odd_Even_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 3.81 -6.35)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x10_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x10_Odd_Even" (id 1) (at 1.27 -15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x10_Odd_Even_1_1"
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 11.43) (end 3.81 -13.97)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 -12.573) (end 2.54 -12.827)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -10.033) (end 2.54 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -7.493) (end 2.54 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 7.747) (end 2.54 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 10.287) (end 2.54 10.033)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -7.62 180) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -10.16 180) (length 3.81)
(name "Pin_18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 10.16 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -12.7 180) (length 3.81)
(name "Pin_20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 7.62 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 185.42 116.84) (diameter 0) (color 0 0 0 0)
(uuid 05703213-4716-4d94-9d2c-a4786dc65aec)
)
(junction (at 223.52 76.2) (diameter 0) (color 0 0 0 0)
(uuid 0893599f-9e67-45e4-823d-e60bef768fb8)
)
(junction (at 127 82.55) (diameter 0) (color 0 0 0 0)
(uuid 0feb073a-d146-4a2d-9dc2-336bf04c0922)
)
(junction (at 127 80.01) (diameter 0) (color 0 0 0 0)
(uuid 175511ab-bb3a-4956-83ec-996f95d463b1)
)
(junction (at 185.42 119.38) (diameter 0) (color 0 0 0 0)
(uuid 34e60281-0b03-4554-bd0e-fdd7d7220f28)
)
(junction (at 127 72.39) (diameter 0) (color 0 0 0 0)
(uuid 39393095-4d3d-4d1a-8bf1-08c3c5fdca36)
)
(junction (at 172.72 76.2) (diameter 0) (color 0 0 0 0)
(uuid 448327b9-3503-419b-a5da-c243d5c65a69)
)
(junction (at 223.52 78.74) (diameter 0) (color 0 0 0 0)
(uuid 501d31ed-609b-41f3-aa2b-942be84062cc)
)
(junction (at 127 87.63) (diameter 0) (color 0 0 0 0)
(uuid 581feb56-c7f9-448a-8973-e080dca47411)
)
(junction (at 172.72 73.66) (diameter 0) (color 0 0 0 0)
(uuid 5ef09475-baa7-4899-b3bd-7f1d96a86c3b)
)
(junction (at 185.42 111.76) (diameter 0) (color 0 0 0 0)
(uuid 60330e06-a31f-4263-a188-511bfa782020)
)
(junction (at 185.42 106.68) (diameter 0) (color 0 0 0 0)
(uuid 661e2c99-00de-4576-babf-6f2ade0f3175)
)
(junction (at 185.42 101.6) (diameter 0) (color 0 0 0 0)
(uuid 6a684b66-0bfb-4eec-93cd-cc5d07c35047)
)
(junction (at 185.42 109.22) (diameter 0) (color 0 0 0 0)
(uuid 6bf19e39-71a4-4214-8208-83cbb7eb1d39)
)
(junction (at 127 77.47) (diameter 0) (color 0 0 0 0)
(uuid 79c89361-cab9-44b2-ac22-93b8e96586d9)
)
(junction (at 185.42 104.14) (diameter 0) (color 0 0 0 0)
(uuid 94d140ee-8282-4dc9-8f1a-add1edb699a4)
)
(junction (at 127 74.93) (diameter 0) (color 0 0 0 0)
(uuid 958a3e01-03d1-46c3-9a7b-b8465a024977)
)
(junction (at 185.42 114.3) (diameter 0) (color 0 0 0 0)
(uuid 98f01e19-beb9-4d14-84ba-66238c5375e1)
)
(junction (at 127 85.09) (diameter 0) (color 0 0 0 0)
(uuid b677e041-1061-4fbc-9701-694996ed21b1)
)
(junction (at 127 69.85) (diameter 0) (color 0 0 0 0)
(uuid be8d685c-e85c-4988-9cbb-4db55fb14d87)
)
(junction (at 172.72 78.74) (diameter 0) (color 0 0 0 0)
(uuid d01d7603-b6e2-47f1-8d5c-de920d16417e)
)
(junction (at 223.52 73.66) (diameter 0) (color 0 0 0 0)
(uuid e8d24401-e0fd-4b6c-af70-c2af7808007b)
)
(no_connect (at 172.72 116.84) (uuid 8e0ad9c7-5a73-4932-8d65-8d52405c308b))
(no_connect (at 114.3 85.09) (uuid a990ec52-2b5d-4255-be23-725ee17db2ed))
(no_connect (at 114.3 87.63) (uuid a990ec52-2b5d-4255-be23-725ee17db2ee))
(no_connect (at 172.72 119.38) (uuid f7899419-7d6a-4492-8ac4-c6963422cda5))
(wire (pts (xy 111.76 64.77) (xy 114.3 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 015c73ed-8723-4601-9146-6b03c6a74621)
)
(wire (pts (xy 185.42 106.68) (xy 185.42 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02bea34e-f900-44be-92a0-d546a5060253)
)
(wire (pts (xy 127 69.85) (xy 127 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 038004f1-5056-4022-a917-f93f674e9cae)
)
(wire (pts (xy 172.72 73.66) (xy 172.72 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05bad93c-a4c6-4aea-ab6d-3dc93819cfca)
)
(wire (pts (xy 127 82.55) (xy 127 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 143e3232-b48c-44cf-9d6c-5d23f4f4f30d)
)
(wire (pts (xy 236.22 68.58) (xy 238.76 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15fed696-e622-4bfe-98e7-bc130647443b)
)
(wire (pts (xy 111.76 72.39) (xy 114.3 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 204278a4-b655-4d10-8b21-583dcaebea5f)
)
(wire (pts (xy 127 80.01) (xy 127 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27a0fcfc-f07f-411f-b42d-b83b038e2842)
)
(wire (pts (xy 170.18 109.22) (xy 172.72 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a857e05-d0a4-4004-8610-afb11c9aeb74)
)
(wire (pts (xy 185.42 116.84) (xy 185.42 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 312916e4-9d47-432e-8ea3-288cc27e2e27)
)
(wire (pts (xy 170.18 68.58) (xy 172.72 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 355525c3-6bae-4a8a-8b6b-7733976ef9c4)
)
(wire (pts (xy 236.22 71.12) (xy 238.76 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3840a24d-91d8-4b4f-9a22-1edb5034c72e)
)
(wire (pts (xy 185.42 109.22) (xy 185.42 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3862e6dc-2e6a-4bab-9541-47768de16765)
)
(wire (pts (xy 185.42 76.2) (xy 187.96 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ccb75a5-e45c-4618-99d2-1bb2edb18e74)
)
(wire (pts (xy 172.72 76.2) (xy 172.72 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d70e711-a9ec-4bd0-b746-023a74fdaaa4)
)
(wire (pts (xy 176.53 58.42) (xy 179.07 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40997062-008a-4e49-9f9f-e8d17d675065)
)
(wire (pts (xy 236.22 73.66) (xy 238.76 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 423f5a51-9dfc-4d7b-a2c8-278d9a1af5dc)
)
(wire (pts (xy 185.42 78.74) (xy 187.96 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bf62664-ad93-41b7-9378-ec99fe409a1c)
)
(wire (pts (xy 170.18 99.06) (xy 172.72 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bf9e631-bbf0-4251-b37e-55448f6756bf)
)
(wire (pts (xy 185.42 111.76) (xy 185.42 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c2e0dc6-9290-4e1a-9536-b603413f900c)
)
(wire (pts (xy 223.52 78.74) (xy 223.52 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4eaf017c-5b98-4b8f-941b-4fe380ed8153)
)
(wire (pts (xy 185.42 99.06) (xy 185.42 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 510ad7c1-1cb5-4786-9824-aa95d5e3afb3)
)
(wire (pts (xy 170.18 111.76) (xy 172.72 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 553a2283-c2a3-4d65-8363-816025f0e220)
)
(wire (pts (xy 172.72 71.12) (xy 172.72 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 599901c9-5a9c-4dcc-ae40-b0a073341e86)
)
(wire (pts (xy 170.18 104.14) (xy 172.72 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a434773-817e-415f-8aa6-c28818bab13a)
)
(wire (pts (xy 127 74.93) (xy 127 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d3b4c1e-95f0-402b-87d3-ef21132bc00d)
)
(wire (pts (xy 111.76 77.47) (xy 114.3 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61c0cdb3-4bec-4523-9b81-3c9c92442285)
)
(wire (pts (xy 127 67.31) (xy 127 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 625ca00e-8399-4f90-be2b-f7b2e8a07a9f)
)
(wire (pts (xy 185.42 96.52) (xy 187.96 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e7a183b-c830-4b10-ae62-3dd416f8e02b)
)
(wire (pts (xy 185.42 104.14) (xy 185.42 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e84e845-1fa6-45c7-9ffe-9c568abe3070)
)
(wire (pts (xy 176.53 55.88) (xy 179.07 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71c98d1e-0bd7-4726-aad8-143df95e234e)
)
(wire (pts (xy 111.76 69.85) (xy 114.3 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 777a9f77-ed93-4dd0-b0e1-92f3508e1f06)
)
(wire (pts (xy 223.52 76.2) (xy 223.52 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77c05c49-3d0c-40ff-aab6-dd6aa5fa5626)
)
(wire (pts (xy 176.53 50.8) (xy 196.85 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ce4c3ac-af36-468d-8d4a-7cd1732eef4c)
)
(wire (pts (xy 170.18 101.6) (xy 172.72 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ef6b4b4-5840-405b-bf96-cdb17a805b7c)
)
(wire (pts (xy 170.18 106.68) (xy 172.72 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 810a6385-8376-4b97-ac1b-49b008fbe002)
)
(wire (pts (xy 185.42 101.6) (xy 185.42 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a6271e4-b2f8-4d3a-a7a8-af6d5cd16a55)
)
(wire (pts (xy 236.22 76.2) (xy 238.76 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ae76f47-1fcc-4730-88c3-ef4248a02a0a)
)
(wire (pts (xy 185.42 71.12) (xy 187.96 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e2cc7d9-292e-49d5-8129-4d21d0795244)
)
(wire (pts (xy 223.52 71.12) (xy 223.52 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91cb47e9-85f8-4c80-96b2-c9e0ed26ca0c)
)
(wire (pts (xy 127 85.09) (xy 127 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91d57969-812a-41f8-a9ad-7a349eecedf0)
)
(wire (pts (xy 111.76 80.01) (xy 114.3 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92db4a2d-7f82-48cb-862a-46b7b362633f)
)
(wire (pts (xy 236.22 78.74) (xy 238.76 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94edab72-b6a2-4c14-9f8f-b9635f829c4f)
)
(wire (pts (xy 127 72.39) (xy 127 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97b931f7-d2ab-4d72-ad9e-c2bdcb62d138)
)
(wire (pts (xy 185.42 114.3) (xy 185.42 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 985bfb4e-bef2-4f6c-ae54-71e7b5a095af)
)
(wire (pts (xy 185.42 68.58) (xy 187.96 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99168fe8-f4c4-43ec-a845-7adba4c4ba6a)
)
(wire (pts (xy 220.98 68.58) (xy 223.52 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c12b448-9f8b-4638-8076-ccb23c981d23)
)
(wire (pts (xy 196.85 52.07) (xy 196.85 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a08b6870-94c0-4c72-8c3f-e5cb61234d4d)
)
(wire (pts (xy 172.72 78.74) (xy 172.72 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6e84534-b4e8-4d55-989b-559c8b42dbc6)
)
(wire (pts (xy 111.76 82.55) (xy 114.3 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9f2e03e-dfbd-422e-b151-8bdb0313080c)
)
(wire (pts (xy 185.42 73.66) (xy 187.96 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2d24bcf-e544-458a-adda-f7caf42dadab)
)
(wire (pts (xy 223.52 73.66) (xy 223.52 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b4739312-1501-4657-9d0f-9d3d73dd5891)
)
(wire (pts (xy 176.53 45.72) (xy 179.07 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b4e6da64-386c-460d-b5fc-7204a2098519)
)
(wire (pts (xy 127 77.47) (xy 127 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bbaf1393-16a2-490a-96b7-13ea7f4045db)
)
(wire (pts (xy 185.42 119.38) (xy 185.42 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0997918-4b97-468c-9079-fc790e31e5c3)
)
(wire (pts (xy 170.18 114.3) (xy 172.72 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c80413dc-8391-4299-a791-26c79d956621)
)
(wire (pts (xy 170.18 96.52) (xy 172.72 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d2633f90-4154-48ef-b70b-05fcb216d61c)
)
(wire (pts (xy 176.53 53.34) (xy 179.07 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d605fd6e-ef99-463f-a885-f60cf5e684ab)
)
(wire (pts (xy 127 87.63) (xy 127 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7a6b6eb-d514-4ba9-a0aa-b5ecb416458e)
)
(wire (pts (xy 176.53 48.26) (xy 179.07 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e280a5be-59f1-4e97-8086-94cf68021578)
)
(wire (pts (xy 111.76 67.31) (xy 114.3 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5bcbc12-8d13-4d6a-a41d-ce7735efbff7)
)
(wire (pts (xy 127 64.77) (xy 129.54 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb341917-c9ac-4a7f-abc5-9def26d9d22c)
)
(wire (pts (xy 111.76 74.93) (xy 114.3 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fad492b2-c626-4265-9fb3-ac23dc582f4d)
)
(global_label "TRST" (shape input) (at 111.76 67.31 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 011178d6-4025-413b-baf9-cf0b6cfe3bd2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.9321 67.2306 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "NRST" (shape input) (at 187.96 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 02736a03-ec14-4d1e-a175-827b8070d25e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 195.1507 78.8194 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TDI" (shape input) (at 111.76 69.85 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0489dffc-494f-44a7-bef4-1d6f41b97b42)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.5045 69.7706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TMS{slash}SWDIO" (shape input) (at 187.96 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0d8edac6-c9c6-4a34-9984-9399feacb150)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 201.1983 68.6594 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TCLK{slash}SWCLK" (shape input) (at 187.96 71.12 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1a3e71ca-6246-49bd-b597-3adff8ae02a3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 202.4683 71.1994 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RTCK" (shape input) (at 170.18 109.22 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3b429460-e0bb-4188-abac-63f63bd1ed1d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.9893 109.1406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TDI" (shape input) (at 238.76 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4b5076cf-3107-471a-8055-0c549a8fc40b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 244.0155 76.2794 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "VTREF" (shape input) (at 220.98 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4f35ebfb-15c5-4a5a-99f8-16f1e659fc96)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.0031 68.5006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TDI" (shape input) (at 170.18 101.6 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 51b36f8c-c953-41fe-b26c-8c76653d1002)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 164.9245 101.5206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VTREF" (shape input) (at 129.54 64.77 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5e14c1a8-7e4d-4106-9180-6229f7fc13aa)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 137.5169 64.8494 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TMS{slash}SWDIO" (shape input) (at 170.18 104.14 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5ebd7125-b5eb-4634-97ba-4abd4fbe489d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 156.9417 104.0606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VTREF" (shape input) (at 187.96 96.52 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 644fbaf8-ce7f-4401-a4ec-8e3fedaca724)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 195.9369 96.5994 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "NRST" (shape input) (at 111.76 82.55 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 654d1b34-7c39-4349-9200-12966b3bf1c6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.5693 82.4706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TDO{slash}SWO" (shape input) (at 170.18 111.76 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 679f7204-c70c-43cf-97a7-ad559c7cb8a4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 158.8769 111.6806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TCLK{slash}SWCLK" (shape input) (at 111.76 74.93 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6b74a168-5d7b-4d08-9a76-51b743083749)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 97.2517 74.8506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VTREF" (shape input) (at 170.18 96.52 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6f6a487d-0897-4d01-95a7-b0dad6218609)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.2031 96.4406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TMS{slash}SWDIO" (shape input) (at 238.76 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7ac93241-6bd8-4c3d-992e-17e25973d658)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 251.9983 68.6594 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "NRST" (shape input) (at 170.18 114.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7c0128dc-5309-4367-aa6e-727a67a06e2a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.9893 114.2206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TMS{slash}SWDIO" (shape input) (at 111.76 72.39 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8152e6f5-b60f-4c0c-ac89-7de02362ab60)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 98.5217 72.3106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VTREF" (shape input) (at 170.18 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 81c8d101-d657-45f0-b033-bc38c4102d77)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.2031 68.5006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VTREF" (shape input) (at 179.07 45.72 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8d8dcf5f-91d7-4c8d-b207-34d7fdfd0cb9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 187.0469 45.7994 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TDO{slash}SWO" (shape input) (at 238.76 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8dc5b620-dce2-40f8-92b5-def767e7d05e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 250.0631 73.7394 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TCLK{slash}SWCLK" (shape input) (at 238.76 71.12 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9995bd70-9671-4727-a7e3-12be09ffa354)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 253.2683 71.1994 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TRST" (shape input) (at 170.18 99.06 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9c14be63-2444-4572-a893-d77148da1797)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 163.3521 98.9806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "TCLK{slash}SWCLK" (shape input) (at 179.07 48.26 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b166d7c5-f4e7-4bb0-ab05-b9e69d75edbd)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 193.5783 48.3394 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TMS{slash}SWDIO" (shape input) (at 179.07 53.34 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid babdfb1f-4378-45bf-9995-04f226b7ad0b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.3083 53.4194 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "TDO{slash}SWO" (shape input) (at 179.07 58.42 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c3c462ec-5383-4ccb-8d7f-419971eef923)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 190.3731 58.4994 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "VTREF" (shape input) (at 111.76 64.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cb2084ec-bf02-4b3f-b3b1-2b9f517acb7d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 103.7831 64.6906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RTCK" (shape input) (at 111.76 77.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d2c61604-a816-4601-a1a6-18f90f86b771)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.5693 77.3906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "NRST" (shape input) (at 179.07 55.88 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d2de0f5c-5e41-4dfe-8444-8d6cb82185ba)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.2607 55.9594 0)