-
Notifications
You must be signed in to change notification settings - Fork 0
/
ax5243-test-board.kicad_sch
3116 lines (3036 loc) · 122 KB
/
ax5243-test-board.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 20210406) (generator eeschema)
(uuid bfd64fb1-eabc-48e6-951f-c38797375307)
(paper "A4")
(title_block
(title "AX5243 Test Board")
(date "2021-02-03")
(rev "B")
)
(lib_symbols
(symbol "Connector:Conn_Coaxial" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0.254 3.048 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_Coaxial" (id 1) (at 2.921 0 90)
(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" "BNC SMA SMB SMC coaxial connector CINCH RCA" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*BNC* *SMA* *SMB* *SMC* *Cinch*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_Coaxial_0_1"
(arc (start -1.778 0.508) (end 1.778 0) (radius (at -0.0508 0) (length 1.8034) (angles 163.6 0))
(stroke (width 0.254)) (fill (type none))
)
(arc (start 1.778 0) (end -1.778 -0.508) (radius (at -0.0254 0) (length 1.8034) (angles 0 -163.8))
(stroke (width 0.254)) (fill (type none))
)
(circle (center 0 0) (radius 0.508) (stroke (width 0.2032)) (fill (type none)))
(polyline
(pts
(xy -2.54 0)
(xy -0.508 0)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -1.778)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "Conn_Coaxial_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "In" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 2.54)
(name "Ext" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x15" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 20.32 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x15" (id 1) (at 0 -20.32 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, 01x15, 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_01x15_1_1"
(rectangle (start -1.27 -17.653) (end 0 -17.907)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -15.113) (end 0 -15.367)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 12.827) (end 0 12.573)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 15.367) (end 0 15.113)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 17.907) (end 0 17.653)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 19.05) (end 1.27 -19.05)
(stroke (width 0.254)) (fill (type background))
)
(pin passive line (at -5.08 17.78 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 -5.08 -5.08 0) (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 -7.62 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 -5.08 -10.16 0) (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 -12.7 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 -5.08 -15.24 0) (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 -17.78 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 -5.08 15.24 0) (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 12.7 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 -5.08 10.16 0) (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 7.62 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 -5.08 5.08 0) (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 -5.08 0 0) (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 -2.54 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302)) (fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048)) (fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0.762 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Small_0_1"
(arc (start 0 -2.032) (end 0 -1.016) (radius (at 0 -1.524) (length 0.508) (angles -89.9 89.9))
(stroke (width 0)) (fill (type none))
)
(arc (start 0 -1.016) (end 0 0) (radius (at 0 -0.508) (length 0.508) (angles -89.9 89.9))
(stroke (width 0)) (fill (type none))
)
(arc (start 0 0) (end 0 1.016) (radius (at 0 0.508) (length 0.508) (angles -89.9 89.9))
(stroke (width 0)) (fill (type none))
)
(arc (start 0 1.016) (end 0 2.032) (radius (at 0 1.524) (length 0.508) (angles -89.9 89.9))
(stroke (width 0)) (fill (type none))
)
)
(symbol "L_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032)) (fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 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" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27) (stroke (width 1.27)) (fill (type none)))
)
)
(symbol "Oscillator:ASCO" (in_bom yes) (on_board yes)
(property "Reference" "X" (id 0) (at -7.62 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "ASCO" (id 1) (at 1.27 -6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm" (id 2) (at 2.54 -8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at -5.715 3.175 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Crystal Clock Oscillator" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Crystal Clock Oscillator, Abracon ASCO" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Oscillator*Abracon*ASCO*1.6x1.2mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ASCO_0_1"
(rectangle (start -7.62 5.08) (end 7.62 -5.08)
(stroke (width 0.254)) (fill (type background))
)
(polyline
(pts
(xy -5.715 2.54)
(xy -5.08 2.54)
(xy -5.08 3.81)
(xy -4.445 3.81)
(xy -4.445 2.54)
(xy -3.81 2.54)
(xy -3.81 3.81)
(xy -3.175 3.81)
(xy -3.175 2.54)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "ASCO_1_1"
(pin tri_state line (at -10.16 0 0) (length 2.54)
(name "Tri-State" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 0 180) (length 2.54)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "local:AX5243" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AX5243" (id 1) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -30.48 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -30.48 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AX5243_0_1"
(rectangle (start -12.7 17.78) (end 12.7 -17.78)
(stroke (width 0)) (fill (type background))
)
)
(symbol "AX5243_1_1"
(pin power_out line (at -15.24 15.24 0) (length 2.54)
(name "VDD_ANA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -2.54 180) (length 2.54)
(name "SEL" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -5.08 180) (length 2.54)
(name "CLK" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 15.24 -7.62 180) (length 2.54)
(name "MISO" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -10.16 180) (length 2.54)
(name "MOSI" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
(name "IRQ" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
(name "TCXO_EN" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 15.24 15.24 180) (length 2.54)
(name "VDD_IO" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -12.7 0) (length 2.54)
(name "GPADC1" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -15.24 0) (length 2.54)
(name "GPADC2" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 2.54)
(name "CLK16N" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 12.7 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 5.08 180) (length 2.54)
(name "CLK16P" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 15.24 12.7 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 10.16 0) (length 2.54)
(name "ANTP" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 7.62 0) (length 2.54)
(name "ANTN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -15.24 5.08 0) (length 2.54)
(name "VDD_ANA" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -15.24 -1.27 0) (length 2.54)
(name "FILT" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -15.24 -3.81 0) (length 2.54)
(name "L2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -15.24 -6.35 0) (length 2.54)
(name "L1" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 0 180) (length 2.54)
(name "SYSCLK" (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)) (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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0)) (fill (type none))
)
)
)
(symbol "power:VDD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VDD" (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 \"VDD\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VDD_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "VDD_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 39.37 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 54.61 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 62.23 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 73.66 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 73.66 85.09) (diameter 0.9144) (color 0 0 0 0))
(junction (at 73.66 96.52) (diameter 0.9144) (color 0 0 0 0))
(junction (at 76.2 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 76.2 127) (diameter 0.9144) (color 0 0 0 0))
(junction (at 86.36 157.48) (diameter 0.9144) (color 0 0 0 0))
(junction (at 102.87 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 102.87 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 113.03 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 113.03 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 135.89 73.66) (diameter 0.9144) (color 0 0 0 0))
(junction (at 152.4 101.6) (diameter 0.9144) (color 0 0 0 0))
(junction (at 189.23 62.23) (diameter 0.9144) (color 0 0 0 0))
(junction (at 198.12 105.41) (diameter 0.9144) (color 0 0 0 0))
(junction (at 209.55 114.3) (diameter 0.9144) (color 0 0 0 0))
(junction (at 214.63 71.12) (diameter 0.9144) (color 0 0 0 0))
(junction (at 214.63 81.28) (diameter 0.9144) (color 0 0 0 0))
(junction (at 245.11 59.69) (diameter 0.9144) (color 0 0 0 0))
(junction (at 260.35 81.28) (diameter 0.9144) (color 0 0 0 0))
(no_connect (at 41.91 124.46) (uuid 8f249f45-3aac-434e-8e4e-a1c5772be8a1))
(no_connect (at 41.91 127) (uuid 0b14eda8-6f9f-4c53-9e8c-518f61c9405d))
(no_connect (at 41.91 129.54) (uuid 907615af-df43-4412-8526-5ace72eade81))
(no_connect (at 41.91 134.62) (uuid edf52af3-5ccb-4259-b8b5-d3fcedfdb067))
(no_connect (at 41.91 137.16) (uuid c5f73a11-d21f-4ae6-84ca-e1354cbc4f33))
(no_connect (at 41.91 139.7) (uuid 62d6f5d2-ced3-47a1-88e4-c390a0631458))
(no_connect (at 41.91 142.24) (uuid a310c967-923f-4993-a6b7-88f4355f2ffc))
(no_connect (at 41.91 144.78) (uuid a7f4a8a9-544b-4ca4-96e6-897369eb9259))
(no_connect (at 41.91 147.32) (uuid d94da86a-a885-4773-b3e0-14c919696e02))
(no_connect (at 41.91 149.86) (uuid b4f32801-9421-4668-afd0-896a334e43c3))
(no_connect (at 69.85 124.46) (uuid 7f062944-0dff-4c93-9aba-a9e21bb2674d))
(no_connect (at 69.85 129.54) (uuid 07158d1c-1797-4263-9a46-2623255970e3))
(no_connect (at 69.85 132.08) (uuid 5d1d5ae0-2287-474f-b8c3-9577729cabdc))
(no_connect (at 69.85 134.62) (uuid 93c62c49-b700-4cca-82c1-68abe9e87bca))
(no_connect (at 69.85 137.16) (uuid 6676cdd1-d6bb-42c4-8e3c-ef20682f8e0c))
(no_connect (at 69.85 139.7) (uuid 465b9c71-7b40-4b38-8363-315c02982e13))
(no_connect (at 69.85 142.24) (uuid 308044f2-cf2b-444f-857d-7f5e65549fe7))
(no_connect (at 69.85 144.78) (uuid 39a53227-fe6e-47b9-b509-128636dd4353))
(no_connect (at 69.85 147.32) (uuid 90002b21-9402-4300-9cfc-6b6cbba83ab4))
(no_connect (at 69.85 154.94) (uuid e7af5524-4223-4dc3-82cd-89305755ce8c))
(wire (pts (xy 22.86 78.74) (xy 22.86 85.09))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4be7577c-0468-424a-955a-d480de3b70be)
)
(wire (pts (xy 27.94 73.66) (xy 39.37 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 58931ff1-baa3-4b04-a6e4-6f89fce8c532)
)
(wire (pts (xy 35.56 132.08) (xy 35.56 134.62))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9a1ffcff-0589-4534-9adf-af9affadb266)
)
(wire (pts (xy 38.1 152.4) (xy 41.91 152.4))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 44b7c69f-80c4-486a-9f82-35ef3789a11d)
)
(wire (pts (xy 38.1 154.94) (xy 41.91 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f2191b4f-275b-4b9e-beeb-c155f972c7c6)
)
(wire (pts (xy 38.1 157.48) (xy 41.91 157.48))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f3e7e3c3-d958-448e-8e1e-8df99ab29c98)
)
(wire (pts (xy 38.1 160.02) (xy 41.91 160.02))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 45e4025f-2e72-4c60-8ecd-e81fe85d8745)
)
(wire (pts (xy 39.37 62.23) (xy 39.37 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0ff28bd9-6367-456f-b727-cf5c118fc73b)
)
(wire (pts (xy 39.37 62.23) (xy 44.45 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0afce62b-e99e-4524-ac5d-e447ea8cc738)
)
(wire (pts (xy 39.37 73.66) (xy 39.37 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3253a46c-861c-4e19-a0e3-79bfc565af9a)
)
(wire (pts (xy 39.37 73.66) (xy 44.45 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fa0b92ff-4c92-475a-a61d-afbeec6390cf)
)
(wire (pts (xy 39.37 86.36) (xy 39.37 90.17))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cbb87f4d-f425-4a4b-91d3-0311fcf8f856)
)
(wire (pts (xy 41.91 132.08) (xy 35.56 132.08))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f8a08ecf-3e1d-41d4-a2df-b8f0f7b22470)
)
(wire (pts (xy 49.53 62.23) (xy 54.61 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 124984e9-6545-4224-a6ff-edbce993037d)
)
(wire (pts (xy 49.53 73.66) (xy 54.61 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e29ff776-a508-43b9-8cdd-f8d8ee9c262e)
)
(wire (pts (xy 54.61 62.23) (xy 54.61 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ba74cc8f-144f-4a67-9888-13fb5b8d914c)
)
(wire (pts (xy 54.61 73.66) (xy 54.61 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2826d4db-6540-419a-8216-979e2ede6a9f)
)
(wire (pts (xy 54.61 73.66) (xy 62.23 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 89718ec5-2b7c-4b49-aeb5-601c55ea851c)
)
(wire (pts (xy 54.61 86.36) (xy 54.61 90.17))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e35cb61a-20e6-4b8d-a10d-b7c35d7bd3d4)
)
(wire (pts (xy 62.23 73.66) (xy 62.23 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eb6b0196-5c17-427b-907b-29cac1b9eff0)
)
(wire (pts (xy 62.23 73.66) (xy 66.04 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9367fa6a-d857-4672-b3a0-84088fe56eb2)
)
(wire (pts (xy 66.04 81.28) (xy 62.23 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f4a12db1-d046-4b1f-ad68-2e76c991f825)
)
(wire (pts (xy 69.85 149.86) (xy 72.39 149.86))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c261cf71-6cdb-4828-b371-01c42bb078a1)
)
(wire (pts (xy 69.85 152.4) (xy 72.39 152.4))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f5b9549d-f367-48f0-bcb4-45dbba97c739)
)
(wire (pts (xy 69.85 157.48) (xy 86.36 157.48))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9b9d052b-8d0d-48a7-a8b9-331d79fddc22)
)
(wire (pts (xy 69.85 160.02) (xy 72.39 160.02))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b02ccc1-355b-4239-9d96-8d67089a118b)
)
(wire (pts (xy 71.12 73.66) (xy 76.2 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3fba2d56-b6f5-49e7-99c8-471d50ec76f7)
)
(wire (pts (xy 71.12 81.28) (xy 73.66 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fff8fcc9-65f0-46ca-ab06-c229766b7a4a)
)
(wire (pts (xy 73.66 81.28) (xy 73.66 85.09))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6872d785-3aca-4438-a232-8adc03347f9c)
)
(wire (pts (xy 73.66 81.28) (xy 81.28 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8f4acf73-9f3a-4191-af98-0299f8ce8ce3)
)
(wire (pts (xy 73.66 85.09) (xy 73.66 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6872d785-3aca-4438-a232-8adc03347f9c)
)
(wire (pts (xy 73.66 85.09) (xy 82.55 85.09))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c2b0a8c3-88b0-438f-9057-4cf90b855e98)
)
(wire (pts (xy 73.66 93.98) (xy 73.66 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2674c808-496c-4142-bd5e-9064db7f0cb1)
)
(wire (pts (xy 73.66 96.52) (xy 73.66 97.79))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2674c808-496c-4142-bd5e-9064db7f0cb1)
)
(wire (pts (xy 73.66 96.52) (xy 82.55 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6088fb74-6d8e-4aea-a3f4-d57d2613d2fa)
)
(wire (pts (xy 76.2 57.15) (xy 76.2 59.69))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f3f7b4a3-b306-4e46-8694-ef573d758490)
)
(wire (pts (xy 76.2 64.77) (xy 76.2 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6d2d980b-fdcc-4b92-a8f1-5eafcfa67359)
)
(wire (pts (xy 76.2 73.66) (xy 81.28 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7ba59389-a22c-4952-9761-60b3c392d8d2)
)
(wire (pts (xy 76.2 124.46) (xy 76.2 127))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 05b24fdc-718b-47ae-a359-7bc913bbc2af)
)
(wire (pts (xy 76.2 127) (xy 69.85 127))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid da758f68-4e33-49da-b705-5efe6fc90a67)
)
(wire (pts (xy 76.2 129.54) (xy 76.2 127))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1a700d4c-260f-4506-9cf9-65fa00d024cc)
)
(wire (pts (xy 82.55 88.9) (xy 82.55 85.09))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c2b0a8c3-88b0-438f-9057-4cf90b855e98)
)
(wire (pts (xy 82.55 93.98) (xy 82.55 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6088fb74-6d8e-4aea-a3f4-d57d2613d2fa)
)
(wire (pts (xy 86.36 73.66) (xy 93.98 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9b9e757f-07e9-4d95-ad17-773a0b97cbb1)
)
(wire (pts (xy 86.36 81.28) (xy 93.98 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 856502c9-902f-48c3-a889-501d3510537b)
)
(wire (pts (xy 86.36 157.48) (xy 86.36 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 63b0dfb2-3128-4fbf-a431-f8ec3b303d01)
)
(wire (pts (xy 93.98 156.21) (xy 93.98 157.48))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ff3e73d9-c2f7-4e4e-a771-e8962bc8eca1)
)
(wire (pts (xy 93.98 157.48) (xy 86.36 157.48))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bdb8b1bc-e9fe-4950-9554-8f88f8d83435)
)
(wire (pts (xy 99.06 73.66) (xy 102.87 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f876f82a-e5ab-4cd7-9881-da569a47a843)
)
(wire (pts (xy 102.87 57.15) (xy 102.87 59.69))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3a02313a-5d4b-4c13-b682-c96959e74c31)
)
(wire (pts (xy 102.87 64.77) (xy 102.87 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e05a5202-f05b-45ec-9de6-6cbab4c2ea23)
)
(wire (pts (xy 102.87 73.66) (xy 113.03 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b79ea62a-09a8-4559-92a8-c7b438c12d73)
)
(wire (pts (xy 102.87 81.28) (xy 99.06 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7ec73292-7f7e-454e-880e-8810308b21bd)
)
(wire (pts (xy 102.87 81.28) (xy 102.87 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dc4a95ba-6847-4c7b-91ae-6700d568d480)
)
(wire (pts (xy 102.87 93.98) (xy 102.87 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ee1da87c-d3f6-4801-85d8-cf8066b2455a)
)
(wire (pts (xy 113.03 57.15) (xy 113.03 59.69))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b39112c2-69c1-4528-91b6-434ce16fdcc1)
)
(wire (pts (xy 113.03 64.77) (xy 113.03 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8974a960-8a2a-4552-b3a5-3bcdffcb7381)
)
(wire (pts (xy 113.03 76.2) (xy 113.03 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5aaeeac1-7dd8-4e70-8c92-7a08ce7ad8e7)
)
(wire (pts (xy 113.03 76.2) (xy 156.21 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 61f72107-609d-4c04-a90e-34032cccb0ac)
)
(wire (pts (xy 113.03 78.74) (xy 113.03 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d7000b63-5b46-4897-b290-444c4e957d37)
)
(wire (pts (xy 113.03 78.74) (xy 156.21 78.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b48799b7-162e-46f3-bbf0-476b8ddea689)
)
(wire (pts (xy 113.03 81.28) (xy 102.87 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ca165eb0-ecc0-4e51-9317-34883e506f33)
)
(wire (pts (xy 113.03 81.28) (xy 113.03 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8b4b612c-aa44-4c1f-abe5-698c0a19bd53)
)
(wire (pts (xy 113.03 93.98) (xy 113.03 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dd241012-c066-4c05-9207-de32ca26f741)
)
(wire (pts (xy 128.27 87.63) (xy 128.27 88.9))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ab929752-5517-495f-8fc9-e7e37dcf73ca)
)
(wire (pts (xy 128.27 93.98) (xy 128.27 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eb357778-14d4-4782-9ef9-7a7ab0cd5d21)
)
(wire (pts (xy 133.35 73.66) (xy 135.89 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 38ef2b1a-3eb7-4ea8-9025-5bab7d2bb0eb)
)
(wire (pts (xy 133.35 81.28) (xy 138.43 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e969335a-4d3b-4b48-9417-a3fc6a74c3c5)
)
(wire (pts (xy 135.89 71.12) (xy 135.89 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4321bb1d-faae-43a0-a1ed-22e693ea607a)
)
(wire (pts (xy 135.89 73.66) (xy 156.21 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 78d54bed-bee2-472b-bdd5-1786a41524b9)
)
(wire (pts (xy 138.43 71.12) (xy 135.89 71.12))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 53f056c2-1300-4cec-a4a0-d48b826105b4)
)
(wire (pts (xy 138.43 90.17) (xy 156.21 90.17))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9a61fd09-6591-4547-b345-44b48d5cfff6)
)
(wire (pts (xy 138.43 92.71) (xy 138.43 90.17))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4a1cab78-c57c-4d27-b2d3-d40fe033b257)
)
(wire (pts (xy 138.43 97.79) (xy 138.43 100.33))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8e29fd82-bdf4-4b3f-8709-50ea9a462ff6)
)
(wire (pts (xy 138.43 100.33) (xy 149.86 100.33))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5385b006-695e-4eff-8921-0eefa98d7a01)
)