-
Notifications
You must be signed in to change notification settings - Fork 0
/
w5500_eth_iface.kicad_sch
1711 lines (1680 loc) · 61.3 KB
/
w5500_eth_iface.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 20230121) (generator eeschema)
(uuid 1fbb0219-551e-409b-a61b-76e8cebdfb9d)
(paper "USLetter")
(title_block
(title "PoE Addon")
(date "2022-06-26")
(rev "1")
(company "Alex Martens")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Crystal" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Two pin crystal" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -1.27)
(xy 1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Crystal_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "newam:W5500" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -10.16 44.45 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "W5500" (at 0 -34.29 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Housings_QFP:LQFP-48_7x7mm_Pitch0.5mm" (at -10.16 49.53 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "http://wizwiki.net/wiki/lib/exe/fetch.php?media=products:w5500:w5500_ds_v108e.pdf" (at -10.16 46.99 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "DigiKey Part Number" "1278-1021-ND" (at -10.16 52.07 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "Ethernet Wiznet W5500 PHY IEEE 802.3 10BASE-T 100BASE-TX TCP IP" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "10/100 Ethernet Controller with TCP/IP Stack" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "W5500_0_1"
(rectangle (start -10.16 43.18) (end 10.16 -33.02)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "W5500_1_1"
(pin output line (at -15.24 -3.81 0) (length 5.08)
(name "TXON" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 -13.97 180) (length 5.08)
(name "EXRES" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 34.29 0) (length 5.08)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -15.24 11.43 0) (length 5.08)
(name "NC" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -15.24 8.89 0) (length 5.08)
(name "NC" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -21.59 0) (length 5.08)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 31.75 0) (length 5.08)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -24.13 0) (length 5.08)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 29.21 0) (length 5.08)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -15.24 19.05 0) (length 5.08)
(name "VBG" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -26.67 0) (length 5.08)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -1.27 0) (length 5.08)
(name "TXOP" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 -11.43 180) (length 5.08)
(name "TOCAP" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 26.67 0) (length 5.08)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -15.24 21.59 0) (length 5.08)
(name "1V2O" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 15.24 -19.05 180) (length 5.08)
(name "RSVD" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 8.89 180) (length 5.08)
(name "SPDLED" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 11.43 180) (length 5.08)
(name "LINKLED" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 13.97 180) (length 5.08)
(name "DUPLED" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 16.51 180) (length 5.08)
(name "ACTLED" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 24.13 0) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -31.75 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -16.51 0) (length 5.08)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 3.81 180) (length 5.08)
(name "XI" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -6.35 180) (length 5.08)
(name "XO" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at 15.24 31.75 180) (length 5.08)
(name "CS" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 24.13 180) (length 5.08)
(name "SCLK" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 29.21 180) (length 5.08)
(name "MISO" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 26.67 180) (length 5.08)
(name "MOSI" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 15.24 21.59 180) (length 5.08)
(name "INT" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -15.24 41.91 0) (length 5.08)
(name "RESET" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 15.24 -21.59 180) (length 5.08)
(name "RSVD" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 15.24 -24.13 180) (length 5.08)
(name "RSVD" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 39.37 0) (length 5.08)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 15.24 -26.67 180) (length 5.08)
(name "RSVD" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 15.24 -29.21 180) (length 5.08)
(name "RSVD" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 15.24 -31.75 180) (length 5.08)
(name "RSVD" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 36.83 180) (length 5.08)
(name "PMODE2" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 39.37 180) (length 5.08)
(name "PMODE1" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 41.91 180) (length 5.08)
(name "PMODE0" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -15.24 6.35 0) (length 5.08)
(name "NC" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -15.24 3.81 0) (length 5.08)
(name "NC" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -29.21 0) (length 5.08)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -8.89 0) (length 5.08)
(name "RXIN" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -6.35 0) (length 5.08)
(name "RXIP" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -15.24 13.97 0) (length 5.08)
(name "DNC" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 36.83 0) (length 5.08)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -19.05 0) (length 5.08)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (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" (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))
(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 91.44 73.66) (diameter 0) (color 0 0 0 0)
(uuid 2035ea48-3ef5-4d7f-8c3c-50981b30c89a)
)
(junction (at 149.86 109.22) (diameter 0) (color 0 0 0 0)
(uuid 2db910a0-b943-40b4-b81f-068ba5265f56)
)
(junction (at 104.14 134.62) (diameter 0) (color 0 0 0 0)
(uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
)
(junction (at 154.94 60.96) (diameter 0) (color 0 0 0 0)
(uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a)
)
(junction (at 91.44 63.5) (diameter 0) (color 0 0 0 0)
(uuid 593b8647-0095-46cc-ba23-3cf2a86edb5e)
)
(junction (at 83.82 95.25) (diameter 0) (color 0 0 0 0)
(uuid 5a222fb6-5159-4931-9015-19df65643140)
)
(junction (at 91.44 95.25) (diameter 0) (color 0 0 0 0)
(uuid 691af561-538d-4e8f-a916-26cad45eb7d6)
)
(junction (at 162.56 99.06) (diameter 0) (color 0 0 0 0)
(uuid 713e0777-58b2-4487-baca-60d0ebed27c3)
)
(junction (at 104.14 127) (diameter 0) (color 0 0 0 0)
(uuid 71c6e723-673c-45a9-a0e4-9742220c52a3)
)
(junction (at 91.44 78.74) (diameter 0) (color 0 0 0 0)
(uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
)
(junction (at 149.86 99.06) (diameter 0) (color 0 0 0 0)
(uuid 802c2dc3-ca9f-491e-9d66-7893e89ac34c)
)
(junction (at 104.14 132.08) (diameter 0) (color 0 0 0 0)
(uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
)
(junction (at 91.44 66.04) (diameter 0) (color 0 0 0 0)
(uuid 8cd050d6-228c-4da0-9533-b4f8d14cfb34)
)
(junction (at 104.14 129.54) (diameter 0) (color 0 0 0 0)
(uuid 935057d5-6882-4c15-9a35-54677912ba12)
)
(junction (at 154.94 63.5) (diameter 0) (color 0 0 0 0)
(uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec)
)
(junction (at 91.44 68.58) (diameter 0) (color 0 0 0 0)
(uuid a5be2cb8-c68d-4180-8412-69a6b4c5b1d4)
)
(junction (at 104.14 121.92) (diameter 0) (color 0 0 0 0)
(uuid a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)
)
(junction (at 91.44 81.28) (diameter 0) (color 0 0 0 0)
(uuid a90361cd-254c-4d27-ae1f-9a6c85bafe28)
)
(junction (at 83.82 81.28) (diameter 0) (color 0 0 0 0)
(uuid b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2)
)
(junction (at 91.44 71.12) (diameter 0) (color 0 0 0 0)
(uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155)
)
(junction (at 91.44 76.2) (diameter 0) (color 0 0 0 0)
(uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
)
(junction (at 104.14 124.46) (diameter 0) (color 0 0 0 0)
(uuid cc48dd41-7768-48d3-b096-2c4cc2126c9d)
)
(junction (at 162.56 109.22) (diameter 0) (color 0 0 0 0)
(uuid f3044f68-903d-4063-b253-30d8e3a83eae)
)
(no_connect (at 144.78 88.9) (uuid 269f19c3-6824-45a8-be29-fa58d70cbb42))
(no_connect (at 144.78 93.98) (uuid 38cfe839-c630-43d3-a9ec-6a89ba9e318a))
(no_connect (at 114.3 83.82) (uuid 7bfba61b-6752-4a45-9ee6-5984dcb15041))
(wire (pts (xy 165.1 139.7) (xy 165.1 129.54))
(stroke (width 0) (type default))
(uuid 011ee658-718d-416a-85fd-961729cd1ee5)
)
(wire (pts (xy 83.82 85.09) (xy 83.82 81.28))
(stroke (width 0) (type default))
(uuid 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592)
)
(wire (pts (xy 162.56 99.06) (xy 185.42 99.06))
(stroke (width 0) (type default))
(uuid 05f2859d-2820-4e84-b395-696011feb13b)
)
(wire (pts (xy 144.78 66.04) (xy 154.94 66.04))
(stroke (width 0) (type default))
(uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7)
)
(wire (pts (xy 162.56 91.44) (xy 185.42 91.44))
(stroke (width 0) (type default))
(uuid 0eb9ea90-a056-45c6-9c64-ddf79b0cdeaa)
)
(wire (pts (xy 91.44 73.66) (xy 91.44 76.2))
(stroke (width 0) (type default))
(uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb)
)
(wire (pts (xy 104.14 121.92) (xy 114.3 121.92))
(stroke (width 0) (type default))
(uuid 10e52e95-44f3-4059-a86d-dcda603e0623)
)
(wire (pts (xy 104.14 132.08) (xy 114.3 132.08))
(stroke (width 0) (type default))
(uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65)
)
(wire (pts (xy 104.14 134.62) (xy 114.3 134.62))
(stroke (width 0) (type default))
(uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea)
)
(wire (pts (xy 91.44 71.12) (xy 91.44 68.58))
(stroke (width 0) (type default))
(uuid 18c61c95-8af1-4986-b67e-c7af9c15ab6b)
)
(wire (pts (xy 91.44 85.09) (xy 91.44 81.28))
(stroke (width 0) (type default))
(uuid 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd)
)
(wire (pts (xy 91.44 78.74) (xy 91.44 81.28))
(stroke (width 0) (type default))
(uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b)
)
(wire (pts (xy 162.56 99.06) (xy 162.56 100.33))
(stroke (width 0) (type default))
(uuid 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce)
)
(wire (pts (xy 104.14 109.22) (xy 114.3 109.22))
(stroke (width 0) (type default))
(uuid 252f1275-081d-4d77-8bd5-3b9e6916ef42)
)
(wire (pts (xy 175.26 109.22) (xy 175.26 121.92))
(stroke (width 0) (type default))
(uuid 2a1de22d-6451-488d-af77-0bf8841bd695)
)
(wire (pts (xy 91.44 73.66) (xy 91.44 71.12))
(stroke (width 0) (type default))
(uuid 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6)
)
(wire (pts (xy 144.78 109.22) (xy 149.86 109.22))
(stroke (width 0) (type default))
(uuid 30c33e3e-fb78-498d-bffe-76273d527004)
)
(wire (pts (xy 144.78 91.44) (xy 154.94 91.44))
(stroke (width 0) (type default))
(uuid 3668ae15-d098-4f22-aac7-febd517a9903)
)
(wire (pts (xy 114.3 81.28) (xy 104.14 81.28))
(stroke (width 0) (type default))
(uuid 3b686d17-1000-4762-ba31-589d599a3edf)
)
(wire (pts (xy 104.14 129.54) (xy 114.3 129.54))
(stroke (width 0) (type default))
(uuid 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6)
)
(wire (pts (xy 114.3 76.2) (xy 91.44 76.2))
(stroke (width 0) (type default))
(uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
)
(wire (pts (xy 149.86 109.22) (xy 162.56 109.22))
(stroke (width 0) (type default))
(uuid 3f8a5430-68a9-4732-9b89-4e00dd8ae219)
)
(wire (pts (xy 104.14 119.38) (xy 104.14 121.92))
(stroke (width 0) (type default))
(uuid 4185c36c-c66e-4dbd-be5d-841e551f4885)
)
(wire (pts (xy 149.86 99.06) (xy 149.86 100.33))
(stroke (width 0) (type default))
(uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6)
)
(wire (pts (xy 175.26 139.7) (xy 175.26 129.54))
(stroke (width 0) (type default))
(uuid 4a54c707-7b6f-4a3d-a74d-5e3526114aba)
)
(wire (pts (xy 185.42 129.54) (xy 185.42 139.7))
(stroke (width 0) (type default))
(uuid 4aa97874-2fd2-414c-b381-9420384c2fd8)
)
(wire (pts (xy 104.14 60.96) (xy 114.3 60.96))
(stroke (width 0) (type default))
(uuid 4cafb73d-1ad8-4d24-acf7-63d78095ae46)
)
(wire (pts (xy 104.14 129.54) (xy 104.14 132.08))
(stroke (width 0) (type default))
(uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
)
(wire (pts (xy 114.3 71.12) (xy 91.44 71.12))
(stroke (width 0) (type default))
(uuid 4e27930e-1827-4788-aa6b-487321d46602)
)
(wire (pts (xy 104.14 132.08) (xy 104.14 134.62))
(stroke (width 0) (type default))
(uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
)
(wire (pts (xy 144.78 78.74) (xy 185.42 78.74))
(stroke (width 0) (type default))
(uuid 59fc765e-1357-4c94-9529-5635418c7d73)
)
(wire (pts (xy 144.78 60.96) (xy 154.94 60.96))
(stroke (width 0) (type default))
(uuid 5c7d6eaf-f256-4349-8203-d2e836872231)
)
(wire (pts (xy 114.3 68.58) (xy 91.44 68.58))
(stroke (width 0) (type default))
(uuid 60aa0ce8-9d0e-48ca-bbf9-866403979e9b)
)
(wire (pts (xy 114.3 106.68) (xy 104.14 106.68))
(stroke (width 0) (type default))
(uuid 62e8c4d4-266c-4e53-8981-1028251d724c)
)
(wire (pts (xy 104.14 85.09) (xy 104.14 81.28))
(stroke (width 0) (type default))
(uuid 6325c32f-c82a-4357-b022-f9c7e76f412e)
)
(wire (pts (xy 83.82 92.71) (xy 83.82 95.25))
(stroke (width 0) (type default))
(uuid 6afc19cf-38b4-47a3-bc2b-445b18724310)
)
(wire (pts (xy 114.3 111.76) (xy 104.14 111.76))
(stroke (width 0) (type default))
(uuid 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8)
)
(wire (pts (xy 154.94 129.54) (xy 154.94 139.7))
(stroke (width 0) (type default))
(uuid 6ffdf05e-e119-49f9-85e9-13e4901df42a)
)
(wire (pts (xy 144.78 81.28) (xy 185.42 81.28))
(stroke (width 0) (type default))
(uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
)
(wire (pts (xy 165.1 114.3) (xy 165.1 121.92))
(stroke (width 0) (type default))
(uuid 72508b1f-1505-46cb-9d37-2081c5a12aca)
)
(wire (pts (xy 104.14 124.46) (xy 114.3 124.46))
(stroke (width 0) (type default))
(uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
)
(wire (pts (xy 114.3 66.04) (xy 91.44 66.04))
(stroke (width 0) (type default))
(uuid 7a74c4b1-6243-4a12-85a2-bc41d346e7aa)
)
(wire (pts (xy 83.82 95.25) (xy 76.2 95.25))
(stroke (width 0) (type default))
(uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
)
(wire (pts (xy 114.3 63.5) (xy 91.44 63.5))
(stroke (width 0) (type default))
(uuid 7d76d925-f900-42af-a03f-bb32d2381b09)
)
(wire (pts (xy 114.3 73.66) (xy 91.44 73.66))
(stroke (width 0) (type default))
(uuid 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53)
)
(wire (pts (xy 91.44 92.71) (xy 91.44 95.25))
(stroke (width 0) (type default))
(uuid 84d296ba-3d39-4264-ad19-947f90c54396)
)
(wire (pts (xy 104.14 127) (xy 104.14 129.54))
(stroke (width 0) (type default))
(uuid 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)
)
(wire (pts (xy 83.82 81.28) (xy 91.44 81.28))
(stroke (width 0) (type default))
(uuid 90e761f6-1432-4f73-ad28-fa8869b7ec31)
)
(wire (pts (xy 104.14 134.62) (xy 104.14 139.7))
(stroke (width 0) (type default))
(uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)
)
(wire (pts (xy 144.78 76.2) (xy 185.42 76.2))
(stroke (width 0) (type default))
(uuid 96db52e2-6336-4f5e-846e-528c594d0509)
)
(wire (pts (xy 162.56 109.22) (xy 162.56 107.95))
(stroke (width 0) (type default))
(uuid 96de0051-7945-413a-9219-1ab367546962)
)
(wire (pts (xy 144.78 116.84) (xy 154.94 116.84))
(stroke (width 0) (type default))
(uuid 9a2d648d-863a-4b7b-80f9-d537185c212b)
)
(wire (pts (xy 104.14 92.71) (xy 104.14 96.52))
(stroke (width 0) (type default))
(uuid 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db)
)
(wire (pts (xy 162.56 109.22) (xy 175.26 109.22))
(stroke (width 0) (type default))
(uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)
)
(wire (pts (xy 185.42 99.06) (xy 185.42 121.92))
(stroke (width 0) (type default))
(uuid a8fb8ee0-623f-4870-a716-ecc88f37ef9a)
)
(wire (pts (xy 104.14 121.92) (xy 104.14 124.46))
(stroke (width 0) (type default))
(uuid b4833916-7a3e-4498-86fb-ec6d13262ffe)
)
(wire (pts (xy 91.44 95.25) (xy 83.82 95.25))
(stroke (width 0) (type default))
(uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
)
(wire (pts (xy 144.78 86.36) (xy 154.94 86.36))
(stroke (width 0) (type default))
(uuid b65afa5d-265a-4506-ab8f-4cbfcd7bdbfb)
)
(wire (pts (xy 91.44 96.52) (xy 91.44 95.25))
(stroke (width 0) (type default))
(uuid b7bf6e08-7978-4190-aff5-c90d967f0f9c)
)
(wire (pts (xy 104.14 119.38) (xy 114.3 119.38))
(stroke (width 0) (type default))
(uuid bd793ae5-cde5-43f6-8def-1f95f35b1be6)
)
(wire (pts (xy 91.44 68.58) (xy 91.44 66.04))
(stroke (width 0) (type default))
(uuid bde95c06-433a-4c03-bc48-e3abcdb4e054)
)
(wire (pts (xy 149.86 109.22) (xy 149.86 107.95))
(stroke (width 0) (type default))
(uuid c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)
)
(wire (pts (xy 154.94 116.84) (xy 154.94 121.92))
(stroke (width 0) (type default))
(uuid c4cab9c5-d6e5-4660-b910-603a51b56783)
)
(wire (pts (xy 144.78 63.5) (xy 154.94 63.5))
(stroke (width 0) (type default))
(uuid c7df8431-dcf5-4ab4-b8f8-21c1cafc5246)
)
(wire (pts (xy 154.94 63.5) (xy 154.94 60.96))
(stroke (width 0) (type default))
(uuid d38aa458-d7c4-47af-ba08-2b6be506a3fd)
)
(wire (pts (xy 154.94 60.96) (xy 154.94 43.18))
(stroke (width 0) (type default))
(uuid dde8619c-5a8c-40eb-9845-65e6a654222d)
)
(wire (pts (xy 104.14 124.46) (xy 104.14 127))
(stroke (width 0) (type default))
(uuid e091e263-c616-48ef-a460-465c70218987)
)
(wire (pts (xy 76.2 85.09) (xy 76.2 81.28))
(stroke (width 0) (type default))
(uuid e413cfad-d7bd-41ab-b8dd-4b67484671a6)
)
(wire (pts (xy 104.14 127) (xy 114.3 127))
(stroke (width 0) (type default))
(uuid e70b6168-f98e-4322-bc55-500948ef7b77)
)
(wire (pts (xy 154.94 66.04) (xy 154.94 63.5))
(stroke (width 0) (type default))
(uuid e7d81bce-286e-41e4-9181-3511e9c0455e)
)
(wire (pts (xy 91.44 66.04) (xy 91.44 63.5))
(stroke (width 0) (type default))
(uuid ed8a7f02-cf05-41d0-97b4-4388ef205e73)
)
(wire (pts (xy 144.78 114.3) (xy 165.1 114.3))
(stroke (width 0) (type default))
(uuid eed466bf-cd88-4860-9abf-41a594ca08bd)
)
(wire (pts (xy 144.78 73.66) (xy 185.42 73.66))
(stroke (width 0) (type default))
(uuid f0ff5d1c-5481-4958-b844-4f68a17d4166)
)
(wire (pts (xy 91.44 63.5) (xy 91.44 43.18))
(stroke (width 0) (type default))
(uuid f1e619ac-5067-41df-8384-776ec70a6093)
)
(wire (pts (xy 114.3 78.74) (xy 91.44 78.74))
(stroke (width 0) (type default))
(uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
)
(wire (pts (xy 144.78 99.06) (xy 149.86 99.06))
(stroke (width 0) (type default))
(uuid f64497d1-1d62-44a4-8e5e-6fba4ebc969a)
)
(wire (pts (xy 91.44 76.2) (xy 91.44 78.74))
(stroke (width 0) (type default))
(uuid f6983918-fe05-46ea-b355-bc522ec53440)
)
(wire (pts (xy 149.86 99.06) (xy 162.56 99.06))
(stroke (width 0) (type default))
(uuid f8bd6470-fafd-47f2-8ed5-9449988187ce)
)
(wire (pts (xy 76.2 81.28) (xy 83.82 81.28))
(stroke (width 0) (type default))
(uuid f9b1563b-384a-447c-9f47-736504e995c8)
)
(wire (pts (xy 104.14 104.14) (xy 114.3 104.14))
(stroke (width 0) (type default))
(uuid fc3d51c1-8b35-4da3-a742-0ebe104989d7)
)
(wire (pts (xy 144.78 71.12) (xy 185.42 71.12))
(stroke (width 0) (type default))
(uuid fdc60c06-30fa-4dfb-96b4-809b755999e1)
)
(wire (pts (xy 76.2 92.71) (xy 76.2 95.25))
(stroke (width 0) (type default))
(uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764)
)
(wire (pts (xy 162.56 86.36) (xy 185.42 86.36))
(stroke (width 0) (type default))
(uuid fea2f991-371e-45cb-831f-f0241acfab3a)
)
(label "1V2O" (at 104.14 81.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 25bc3602-3fb4-4a04-94e3-21ba22562c24)
)
(label "XRES" (at 146.05 116.84 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 283c990c-ae5a-4e41-a3ad-b40ca29fe90e)
)
(label "XCAP" (at 146.05 114.3 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 49575217-40b0-4890-8acf-12982cca52b5)
)
(label "XO" (at 170.18 109.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7760a75a-d74b-4185-b34e-cbc7b2c339b6)
)
(label "XI" (at 170.18 99.06 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09)
)
(hierarchical_label "INT" (shape output) (at 185.42 81.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
)
(hierarchical_label "RXIN" (shape input) (at 104.14 111.76 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1dfbf353-5b24-4c0f-8322-8fcd514ae75e)
)
(hierarchical_label "RESET" (shape input) (at 104.14 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a)
)
(hierarchical_label "TXON" (shape output) (at 104.14 106.68 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 337e8520-cbd2-42c0-8d17-743bab17cbbd)
)
(hierarchical_label "RXIP" (shape input) (at 104.14 109.22 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 582622a2-fad4-4737-9a80-be9fffbba8ab)
)
(hierarchical_label "ACTLED" (shape output) (at 185.42 86.36 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 78cc0bc1-e3cf-4bd5-a125-7df948ac5ba7)
)
(hierarchical_label "SCLK" (shape input) (at 185.42 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9aaeec6e-84fe-4644-b0bc-5de24626ff48)
)