-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathETH_PHY.sch
3047 lines (3047 loc) · 142 KB
/
ETH_PHY.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
EESchema Schematic File Version 4
EELAYER 30 0
EELAYER END
$Descr A3 16535 11693
encoding utf-8
Sheet 25 25
Title "Marble-Mini"
Date "2020-09-25"
Rev "v1.1"
Comp "Michał Gąska / WUT"
Comment1 ""
Comment2 ""
Comment3 "ETHERNET PHY"
Comment4 ""
$EndDescr
$Comp
L power:GND #PWR?
U 1 1 5C6621C6
P 4800 6950
AR Path="/5C16C03C/5C6621C6" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C6621C6" Ref="#PWR072" Part="1"
F 0 "#PWR072" H 4800 6700 50 0001 C CNN
F 1 "GND" H 4805 6777 50 0000 C CNN
F 2 "" H 4800 6950 50 0001 C CNN
F 3 "" H 4800 6950 50 0001 C CNN
1 4800 6950
1 0 0 -1
$EndComp
Wire Wire Line
6500 7400 6350 7400
Wire Wire Line
6350 7400 6350 7000
Wire Wire Line
6350 7000 6500 7000
Connection ~ 4800 6950
$Comp
L power:+1V8 #PWR?
U 1 1 5C662EAD
P 3250 6600
AR Path="/5BD31F9A/5C662EAD" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C662EAD" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C662EAD" Ref="#PWR068" Part="1"
F 0 "#PWR068" H 3250 6450 50 0001 C CNN
F 1 "+1V8" H 3265 6773 50 0000 C CNN
F 2 "" H 3250 6600 50 0001 C CNN
F 3 "" H 3250 6600 50 0001 C CNN
1 3250 6600
1 0 0 -1
$EndComp
Wire Wire Line
3550 6650 3250 6650
Wire Wire Line
3250 6650 3250 6600
$Comp
L power:GND #PWR?
U 1 1 5C663336
P 5700 7900
AR Path="/5C16C03C/5C663336" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C663336" Ref="#PWR074" Part="1"
F 0 "#PWR074" H 5700 7650 50 0001 C CNN
F 1 "GND" H 5705 7727 50 0000 C CNN
F 2 "" H 5700 7900 50 0001 C CNN
F 3 "" H 5700 7900 50 0001 C CNN
1 5700 7900
1 0 0 -1
$EndComp
Wire Wire Line
4150 7600 4150 7550
$Comp
L power:+3V3 #PWR?
U 1 1 5C664FFA
P 4150 7550
AR Path="/5BD32060/5C664FFA" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C664FFA" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C664FFA" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C664FFA" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C664FFA" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C664FFA" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C664FFA" Ref="#PWR071" Part="1"
F 0 "#PWR071" H 4150 7400 50 0001 C CNN
F 1 "+3V3" H 4165 7723 50 0000 C CNN
F 2 "" H 4150 7550 50 0001 C CNN
F 3 "" H 4150 7550 50 0001 C CNN
1 4150 7550
1 0 0 -1
$EndComp
NoConn ~ 6500 4900
NoConn ~ 6500 5000
NoConn ~ 6500 5100
NoConn ~ 6500 8000
NoConn ~ 6500 8100
NoConn ~ 6500 7900
NoConn ~ 8100 7700
$Comp
L power:+1V0 #PWR082
U 1 1 5C6690CC
P 9550 7400
F 0 "#PWR082" H 9550 7250 50 0001 C CNN
F 1 "+1V0" H 9565 7573 50 0000 C CNN
F 2 "" H 9550 7400 50 0001 C CNN
F 3 "" H 9550 7400 50 0001 C CNN
1 9550 7400
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C671654
P 9250 7750
AR Path="/5C16C03C/5C671654" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C671654" Ref="#PWR080" Part="1"
F 0 "#PWR080" H 9250 7500 50 0001 C CNN
F 1 "GND" H 9255 7577 50 0000 C CNN
F 2 "" H 9250 7750 50 0001 C CNN
F 3 "" H 9250 7750 50 0001 C CNN
1 9250 7750
1 0 0 -1
$EndComp
Wire Wire Line
9250 7700 9250 7750
$Comp
L power:GND #PWR?
U 1 1 5C67280E
P 8100 8200
AR Path="/5C16C03C/5C67280E" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C67280E" Ref="#PWR078" Part="1"
F 0 "#PWR078" H 8100 7950 50 0001 C CNN
F 1 "GND" H 8105 8027 50 0000 C CNN
F 2 "" H 8100 8200 50 0001 C CNN
F 3 "" H 8100 8200 50 0001 C CNN
1 8100 8200
1 0 0 -1
$EndComp
Wire Wire Line
8100 8100 8100 8200
$Comp
L power:GND #PWR?
U 1 1 5C6758D9
P 9800 7050
AR Path="/5C16C03C/5C6758D9" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C6758D9" Ref="#PWR079" Part="1"
F 0 "#PWR079" H 9800 6800 50 0001 C CNN
F 1 "GND" H 9805 6877 50 0000 C CNN
F 2 "" H 9800 7050 50 0001 C CNN
F 3 "" H 9800 7050 50 0001 C CNN
1 9800 7050
1 0 0 -1
$EndComp
Wire Wire Line
9800 7050 9800 7000
$Comp
L power:+2V5 #PWR081
U 1 1 5C67A981
P 10100 6700
F 0 "#PWR081" H 10100 6550 50 0001 C CNN
F 1 "+2V5" H 10115 6873 50 0000 C CNN
F 2 "" H 10100 6700 50 0001 C CNN
F 3 "" H 10100 6700 50 0001 C CNN
1 10100 6700
1 0 0 -1
$EndComp
Text Label 8200 4400 0 50 ~ 10
RGMII_TXD0
Text Label 8200 4500 0 50 ~ 10
RGMII_TXD1
Text Label 8200 4600 0 50 ~ 10
RGMII_TXD2
Text Label 8200 4700 0 50 ~ 10
RGMII_TXD3
Text Label 8200 4200 0 50 ~ 10
RGMII_TX_EN
Text Label 8200 4300 0 50 ~ 10
RGMII_TX_CLK
Text Label 8600 3500 0 50 ~ 10
RGMII_RX_DV
Text Label 8600 3600 0 50 ~ 10
RGMII_RX_CLK
Wire Wire Line
6350 4700 6500 4700
Wire Wire Line
6500 4400 6350 4400
$Comp
L power:GND #PWR?
U 1 1 5C69824B
P 6000 4400
AR Path="/5C16C03C/5C69824B" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C69824B" Ref="#PWR076" Part="1"
F 0 "#PWR076" H 6000 4150 50 0001 C CNN
F 1 "GND" V 6000 4200 50 0000 C CNN
F 2 "" H 6000 4400 50 0001 C CNN
F 3 "" H 6000 4400 50 0001 C CNN
1 6000 4400
0 1 1 0
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C69B4F1
P 6000 4700
AR Path="/5C16C03C/5C69B4F1" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C69B4F1" Ref="#PWR077" Part="1"
F 0 "#PWR077" H 6000 4450 50 0001 C CNN
F 1 "GND" V 6000 4500 50 0000 C CNN
F 2 "" H 6000 4700 50 0001 C CNN
F 3 "" H 6000 4700 50 0001 C CNN
1 6000 4700
0 1 1 0
$EndComp
Wire Wire Line
6000 4400 6050 4400
Wire Wire Line
6000 4700 6050 4700
NoConn ~ 6500 4000
NoConn ~ 6500 3700
NoConn ~ 8100 5100
NoConn ~ 6500 7200
Text Label 5950 4200 0 50 ~ 10
PHY_RSTn
Text Label 5350 2600 0 50 ~ 10
SD_IN_P
Text Label 5350 2700 0 50 ~ 10
SD_IN_N
Text Label 5350 2900 0 50 ~ 10
SD_OUT_P
Text Label 5350 3000 0 50 ~ 10
SD_OUT_N
Text HLabel 5050 3000 0 50 Input ~ 10
SD_OUT_N
Text HLabel 5050 2900 0 50 Input ~ 10
SD_OUT_P
Text HLabel 5050 2700 0 50 Input ~ 10
SD_IN_N
Text HLabel 5050 2600 0 50 Input ~ 10
SD_IN_P
Wire Wire Line
5050 2600 6500 2600
Wire Wire Line
5050 2700 6500 2700
Wire Wire Line
5050 2900 6500 2900
Wire Wire Line
5050 3000 6500 3000
Wire Wire Line
6000 2150 6000 2300
Connection ~ 6000 2300
Wire Wire Line
6000 2300 6500 2300
$Comp
L power:+2V5 #PWR075
U 1 1 5C73A283
P 6000 1750
F 0 "#PWR075" H 6000 1600 50 0001 C CNN
F 1 "+2V5" H 6015 1923 50 0000 C CNN
F 2 "" H 6000 1750 50 0001 C CNN
F 3 "" H 6000 1750 50 0001 C CNN
1 6000 1750
1 0 0 -1
$EndComp
Text HLabel 5850 4200 0 50 Input ~ 10
PHY_RSTn
Wire Wire Line
5850 4200 6500 4200
Entry Wire Line
8800 4400 8900 4500
Entry Wire Line
8800 4500 8900 4600
Entry Wire Line
8800 4600 8900 4700
Entry Wire Line
8800 4700 8900 4800
Wire Wire Line
8100 4400 8800 4400
Wire Wire Line
8100 4500 8800 4500
Wire Wire Line
8100 4600 8800 4600
Wire Wire Line
8100 4700 8800 4700
Wire Bus Line
8900 4800 9350 4800
Text HLabel 9350 4100 2 50 Input ~ 10
RGMII_RXD[0..3]
Text HLabel 9350 4800 2 50 Input ~ 10
RGMII_TXD[0..3]
Text HLabel 9350 4200 2 50 Input ~ 10
RGMII_TX_EN
Text HLabel 9350 4300 2 50 Input ~ 10
RGMII_TX_CLK
Wire Wire Line
8100 4200 9350 4200
Wire Wire Line
8100 4300 9350 4300
Text HLabel 9350 3500 2 50 Input ~ 10
RGMII_RX_DV
Text HLabel 9350 3600 2 50 Input ~ 10
RGMII_RX_CLK
$Comp
L marble_misc:Oscillator OSC1
U 1 1 5C76AE78
P 4600 3400
F 0 "OSC1" H 4900 3567 50 0000 C CNN
F 1 "25MHz" H 4900 3476 50 0000 C CNN
F 2 "Marble:OSC_MICREL_2520" H 4600 3400 50 0001 C CNN
F 3 "" H 4600 3400 50 0001 C CNN
F 4 "ECS-2520MV-250-BN-TR" H 4600 3400 50 0001 C CNN "PN"
F 5 "dnf" H 4900 2950 50 0000 C CNN "config"
F 6 "Yes" H 4600 3400 50 0001 C CNN "SMD"
1 4600 3400
1 0 0 -1
$EndComp
Wire Wire Line
5400 3500 5600 3500
Wire Wire Line
4400 3700 4400 3500
$Comp
L power:GND #PWR?
U 1 1 5C76EB58
P 5400 3800
AR Path="/5C16C03C/5C76EB58" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C76EB58" Ref="#PWR073" Part="1"
F 0 "#PWR073" H 5400 3550 50 0001 C CNN
F 1 "GND" H 5405 3627 50 0000 C CNN
F 2 "" H 5400 3800 50 0001 C CNN
F 3 "" H 5400 3800 50 0001 C CNN
1 5400 3800
1 0 0 -1
$EndComp
Wire Wire Line
5400 3700 5400 3800
$Comp
L power:+1V8 #PWR?
U 1 1 5C77285B
P 4050 3500
AR Path="/5BD31F9A/5C77285B" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C77285B" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C77285B" Ref="#PWR069" Part="1"
F 0 "#PWR069" H 4050 3350 50 0001 C CNN
F 1 "+1V8" H 4065 3673 50 0000 C CNN
F 2 "" H 4050 3500 50 0001 C CNN
F 3 "" H 4050 3500 50 0001 C CNN
1 4050 3500
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C778036
P 4050 3850
AR Path="/5C16C03C/5C778036" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C778036" Ref="#PWR070" Part="1"
F 0 "#PWR070" H 4050 3600 50 0001 C CNN
F 1 "GND" H 4055 3677 50 0000 C CNN
F 2 "" H 4050 3850 50 0001 C CNN
F 3 "" H 4050 3850 50 0001 C CNN
1 4050 3850
1 0 0 -1
$EndComp
Wire Wire Line
4400 3500 4050 3500
Connection ~ 4400 3500
Wire Wire Line
4050 3550 4050 3500
Connection ~ 4050 3500
Wire Wire Line
8100 2300 12300 2300
Wire Wire Line
8100 2400 10800 2400
Wire Wire Line
10800 2400 10800 2500
Wire Wire Line
10800 2500 12300 2500
Wire Wire Line
8100 2600 10700 2600
Wire Wire Line
10700 2600 10700 2700
Wire Wire Line
10700 2700 12300 2700
Wire Wire Line
8100 2700 10600 2700
Wire Wire Line
10600 2700 10600 2900
Wire Wire Line
10600 2900 12300 2900
Wire Wire Line
8100 2900 10500 2900
Wire Wire Line
10500 2900 10500 3100
Wire Wire Line
10500 3100 12300 3100
Wire Wire Line
8100 3000 10400 3000
Wire Wire Line
10400 3000 10400 3300
Wire Wire Line
10400 3300 12300 3300
Wire Wire Line
10300 3200 10300 3500
Wire Wire Line
10300 3500 12300 3500
Wire Wire Line
8100 3200 10300 3200
Wire Wire Line
8100 3300 10200 3300
Wire Wire Line
10200 3300 10200 3700
Wire Wire Line
10200 3700 12300 3700
Wire Wire Line
8100 4900 8350 4900
Wire Wire Line
8100 5000 8350 5000
Wire Wire Line
8650 5000 11200 5000
Wire Wire Line
11200 5000 11200 4500
Wire Wire Line
11200 4500 12300 4500
$Comp
L power:+3V3 #PWR?
U 1 1 5C834415
P 12200 4800
AR Path="/5BD32060/5C834415" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C834415" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C834415" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C834415" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C834415" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C834415" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C834415" Ref="#PWR085" Part="1"
F 0 "#PWR085" H 12200 4650 50 0001 C CNN
F 1 "+3V3" V 12200 5000 50 0000 C CNN
F 2 "" H 12200 4800 50 0001 C CNN
F 3 "" H 12200 4800 50 0001 C CNN
1 12200 4800
0 -1 -1 0
$EndComp
$Comp
L power:+3V3 #PWR?
U 1 1 5C83EA6A
P 12200 2100
AR Path="/5BD32060/5C83EA6A" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C83EA6A" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C83EA6A" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C83EA6A" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C83EA6A" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C83EA6A" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C83EA6A" Ref="#PWR084" Part="1"
F 0 "#PWR084" H 12200 1950 50 0001 C CNN
F 1 "+3V3" V 12200 2300 50 0000 C CNN
F 2 "" H 12200 2100 50 0001 C CNN
F 3 "" H 12200 2100 50 0001 C CNN
1 12200 2100
0 -1 -1 0
$EndComp
Wire Wire Line
12200 2100 12300 2100
Wire Wire Line
12200 4800 12300 4800
Wire Wire Line
10050 4900 10050 2000
Wire Wire Line
12300 2400 11150 2400
Wire Wire Line
11150 2400 11150 3850
Wire Wire Line
12300 2800 10900 2800
Wire Wire Line
10900 2800 10900 3850
Wire Wire Line
12300 3200 10650 3200
Wire Wire Line
10650 3200 10650 3850
Wire Wire Line
12300 3600 10400 3600
Wire Wire Line
10400 3600 10400 3850
Entry Wire Line
11850 3800 11950 3900
Entry Wire Line
11850 3900 11950 4000
Entry Wire Line
11850 4000 11950 4100
Entry Wire Line
11850 4100 11950 4200
Text Label 11950 3900 0 50 ~ 10
POE_VC1
Text Label 11950 4000 0 50 ~ 10
POE_VC2
Text Label 11950 4100 0 50 ~ 10
POE_VC3
Text Label 11950 4200 0 50 ~ 10
POE_VC4
Text HLabel 11750 3800 0 50 Input ~ 10
POE_VC[1..4]
Wire Bus Line
11850 3800 11750 3800
Wire Wire Line
11950 3900 12300 3900
Wire Wire Line
11950 4000 12300 4000
Wire Wire Line
11950 4100 12300 4100
Wire Wire Line
11950 4200 12300 4200
Wire Wire Line
10400 4150 10400 4200
$Comp
L power:GND #PWR?
U 1 1 5C8A8A14
P 10400 4200
AR Path="/5C16C03C/5C8A8A14" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C8A8A14" Ref="#PWR083" Part="1"
F 0 "#PWR083" H 10400 3950 50 0001 C CNN
F 1 "GND" H 10405 4027 50 0000 C CNN
F 2 "" H 10400 4200 50 0001 C CNN
F 3 "" H 10400 4200 50 0001 C CNN
1 10400 4200
1 0 0 -1
$EndComp
Wire Wire Line
14500 4950 14500 5000
$Comp
L power:GND #PWR?
U 1 1 5C8D327F
P 14500 5000
AR Path="/5C16C03C/5C8D327F" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C8D327F" Ref="#PWR086" Part="1"
F 0 "#PWR086" H 14500 4750 50 0001 C CNN
F 1 "GND" H 14505 4827 50 0000 C CNN
F 2 "" H 14500 5000 50 0001 C CNN
F 3 "" H 14500 5000 50 0001 C CNN
1 14500 5000
1 0 0 -1
$EndComp
Wire Wire Line
3600 3250 4500 3250
Wire Wire Line
4500 3250 4500 3150
Wire Wire Line
4500 3150 5600 3150
Wire Wire Line
5600 3150 5600 3500
Connection ~ 5600 3500
Wire Wire Line
5600 3500 6500 3500
Text Notes 2850 3050 0 89 ~ 18
Clock source option\n
Wire Wire Line
2450 3250 3300 3250
Text HLabel 2450 3250 0 50 Input ~ 10
CLK_25MHZ
Text Label 3050 3250 2 50 ~ 10
CLK_25MHZ
$Comp
L power:+3V3 #PWR?
U 1 1 5C69E336
P 2800 2200
AR Path="/5BD32060/5C69E336" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C69E336" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C69E336" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C69E336" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C69E336" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C69E336" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C69E336" Ref="#PWR0553" Part="1"
F 0 "#PWR0553" H 2800 2050 50 0001 C CNN
F 1 "+3V3" H 2815 2373 50 0000 C CNN
F 2 "" H 2800 2200 50 0001 C CNN
F 3 "" H 2800 2200 50 0001 C CNN
1 2800 2200
1 0 0 -1
$EndComp
$Comp
L power:+2V5 #PWR?
U 1 1 5C69E33C
P 4350 2100
AR Path="/5BABAC65/5C69E33C" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C69E33C" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C69E33C" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C69E33C" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C69E33C" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C69E33C" Ref="#PWR0555" Part="1"
F 0 "#PWR0555" H 4350 1950 50 0001 C CNN
F 1 "+2V5" H 4365 2273 50 0000 C CNN
F 2 "" H 4350 2100 50 0001 C CNN
F 3 "" H 4350 2100 50 0001 C CNN
1 4350 2100
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C69E35A
P 2800 2500
AR Path="/5BD32060/5C69E35A" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C69E35A" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C69E35A" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C69E35A" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C69E35A" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C69E35A" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C69E35A" Ref="#PWR0552" Part="1"
F 0 "#PWR0552" H 2800 2250 50 0001 C CNN
F 1 "GND" H 2805 2327 50 0000 C CNN
F 2 "" H 2800 2500 50 0001 C CNN
F 3 "" H 2800 2500 50 0001 C CNN
1 2800 2500
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C69E360
P 4350 2500
AR Path="/5BD32060/5C69E360" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C69E360" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C69E360" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C69E360" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C69E360" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C69E360" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C69E360" Ref="#PWR0556" Part="1"
F 0 "#PWR0556" H 4350 2250 50 0001 C CNN
F 1 "GND" H 4355 2327 50 0000 C CNN
F 2 "" H 4350 2500 50 0001 C CNN
F 3 "" H 4350 2500 50 0001 C CNN
1 4350 2500
1 0 0 -1
$EndComp
Text HLabel 1750 1750 0 50 Input ~ 10
MII_MDIO
Text HLabel 1750 1950 0 50 Input ~ 10
MII_MDC
Wire Wire Line
5300 2400 6500 2400
Wire Wire Line
5400 2300 6000 2300
Wire Wire Line
2700 1600 2700 1750
$Comp
L power:+3V3 #PWR?
U 1 1 5C6F966C
P 2700 1300
AR Path="/5BD32060/5C6F966C" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C6F966C" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C6F966C" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C6F966C" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C6F966C" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C6F966C" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C6F966C" Ref="#PWR0551" Part="1"
F 0 "#PWR0551" H 2700 1150 50 0001 C CNN
F 1 "+3V3" H 2715 1473 50 0000 C CNN
F 2 "" H 2700 1300 50 0001 C CNN
F 3 "" H 2700 1300 50 0001 C CNN
1 2700 1300
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C6FFF97
P 3250 2100
AR Path="/5C16C03C/5C6FFF97" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5C6FFF97" Ref="#PWR0554" Part="1"
F 0 "#PWR0554" H 3250 1850 50 0001 C CNN
F 1 "GND" H 3255 1927 50 0000 C CNN
F 2 "" H 3250 2100 50 0001 C CNN
F 3 "" H 3250 2100 50 0001 C CNN
1 3250 2100
1 0 0 -1
$EndComp
Text Label 2050 1750 0 50 ~ 10
MII_MDIO
Text Label 2050 1950 0 50 ~ 10
MII_MDC
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C79
U 1 1 5DA94C18
P 8900 6700
F 0 "C79" V 9004 6810 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 8900 6440 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 8900 5630 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 8900 6260 60 0001 L CNN
F 4 "100nF" V 9095 6810 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 8900 6170 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 8900 6080 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 8900 5990 60 0001 L CNN "Library Path"
F 8 "=Value" H 8900 5900 60 0001 L CNN "Comment"
F 9 "Standard" H 8900 5810 60 0001 L CNN "Component Kind"
F 10 "Standard" H 8900 5720 60 0001 L CNN "Component Type"
F 11 "2" H 8900 5540 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 8900 5450 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 8900 5360 60 0001 L CNN "Footprint Ref"
F 14 " " H 8900 5270 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 8900 5090 60 0001 L CNN "Status"
F 16 " " H 8900 5000 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 8900 4910 60 0001 L CNN "Voltage"
F 18 "X5R" H 8900 4820 60 0001 L CNN "TC"
F 19 "±10%" H 8900 4730 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 8900 4640 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 8900 4550 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 8900 4460 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 8900 4370 60 0001 L CNN "Case"
F 24 "Yes" H 8900 4280 60 0001 L CNN "Mounted"
F 25 "No" H 8900 4190 60 0001 L CNN "Socket"
F 26 "Yes" H 8900 4100 60 0001 L CNN "SMD"
F 27 " " H 8900 4010 60 0001 L CNN "PressFit"
F 28 "No" H 8900 3920 60 0001 L CNN "Sense"
F 29 " " H 8900 3830 60 0001 L CNN "Sense Comment"
F 30 " " H 8900 3740 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 8900 3650 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 8900 3560 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 8900 3470 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 8900 3290 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 8900 3200 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 8900 3110 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 8900 3020 60 0001 L CNN "Library Name"
F 38 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 8900 2930 60 0001 L CNN "License"
1 8900 6700
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0603_4K99_1%_0.063W_50PPM R66
U 1 1 5DAA9D8C
P 6050 4700
F 0 "R66" H 6200 4800 50 0000 C CNN
F 1 "R0603_4K99_1%_0.063W_50PPM" H 6050 4490 60 0001 L CNN
F 2 "Marble:RESC1608X55N" H 6050 3680 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0603_TYCO_CPF.pdf" H 6050 4310 60 0001 L CNN
F 4 "4k99" H 6200 4600 50 0000 C CNN "Val"
F 5 "R0603_4K99_1%_0.063W_50PPM" H 6050 4220 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6050 4130 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6050 4040 60 0001 L CNN "Library Path"
F 8 "=Value" H 6050 3950 60 0001 L CNN "Comment"
F 9 "Standard" H 6050 3860 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6050 3770 60 0001 L CNN "Component Type"
F 11 " " H 6050 3590 60 0001 L CNN "PackageDescription"
F 12 "2" H 6050 3500 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6050 3410 60 0001 L CNN "Footprint Path"
F 14 "RESC1608X55N" H 6050 3320 60 0001 L CNN "Footprint Ref"
F 15 "None" H 6050 3140 60 0001 L CNN "Status"
F 16 "0.1W" H 6050 3050 60 0001 L CNN "Power"
F 17 "±50ppm/°C" H 6050 2960 60 0001 L CNN "TC"
F 18 " " H 6050 2870 60 0001 L CNN "Voltage"
F 19 "±1%" H 6050 2780 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6050 2690 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6050 2600 60 0001 L CNN "Manufacturer"
F 22 "R0603_4K99_1%_0.063W_50PPM" H 6050 2510 60 0001 L CNN "Manufacturer Part Number"
F 23 "0603" H 6050 2420 60 0001 L CNN "Case"
F 24 "No" H 6050 2330 60 0001 L CNN "PressFit"
F 25 "Yes" H 6050 2240 60 0001 L CNN "Mounted"
F 26 " " H 6050 2150 60 0001 L CNN "Sense Comment"
F 27 "No" H 6050 2060 60 0001 L CNN "Sense"
F 28 " " H 6050 1970 60 0001 L CNN "Status Comment"
F 29 "No" H 6050 1880 60 0001 L CNN "Socket"
F 30 "Yes" H 6050 1790 60 0001 L CNN "SMD"
F 31 " " H 6050 1700 60 0001 L CNN "ComponentHeight"
F 32 "TYCO NEOHM" H 6050 1610 60 0001 L CNN "Manufacturer1 Example"
F 33 "CPF0603F4K99C1" H 6050 1520 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.55mm" H 6050 1430 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6050 1250 60 0001 L CNN "Author"
F 36 "05/20/10 00:00:00" H 6050 1160 60 0001 L CNN "CreateDate"
F 37 "05/20/10 00:00:00" H 6050 1070 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6050 980 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6050 890 60 0001 L CNN "License"
1 6050 4700
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_5K1_1%_0.0625W_100PPM R64
U 1 1 5DAB73E5
P 6000 2150
F 0 "R64" H 6150 2250 50 0000 C CNN
F 1 "R0402_5K1_1%_0.0625W_100PPM" H 6000 1940 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 1130 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0603_TYCO_CPF.pdf" H 6000 1760 60 0001 L CNN
F 4 "5k1" H 6150 2050 50 0000 C CNN "Val"
F 5 "R0402_5K1_1%_0.0625W_100PPM" H 6000 1670 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 1580 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 1490 60 0001 L CNN "Library Path"
F 8 "=Value" H 6000 1400 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 1310 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 1220 60 0001 L CNN "Component Type"
F 11 " " H 6000 1040 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 950 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 860 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 770 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 590 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 500 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 410 60 0001 L CNN "TC"
F 18 " " H 6000 320 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 230 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 140 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 50 60 0001 L CNN "Manufacturer"
F 22 "R0402_5K1_1%_0.0625W_100PPM" H 6000 -40 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 -130 60 0001 L CNN "Case"
F 24 "No" H 6000 -220 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 -310 60 0001 L CNN "Mounted"
F 26 " " H 6000 -400 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 -490 60 0001 L CNN "Sense"
F 28 " " H 6000 -580 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 -670 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 -760 60 0001 L CNN "SMD"
F 31 " " H 6000 -850 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 -940 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270675102L" H 6000 -1030 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -1120 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -1300 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -1390 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -1480 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -1570 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -1660 60 0001 L CNN "License"
1 6000 2150
0 -1 -1 0
$EndComp
$Comp
L Resistors_SMD:R0402_5K1_1%_0.0625W_100PPM R62
U 1 1 5DAE5428
P 2700 1600
F 0 "R62" H 2850 1700 50 0000 C CNN
F 1 "R0402_5K1_1%_0.0625W_100PPM" H 2700 1390 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 2700 580 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0603_TYCO_CPF.pdf" H 2700 1210 60 0001 L CNN
F 4 "5k1" H 2850 1500 50 0000 C CNN "Val"
F 5 "R0402_5K1_1%_0.0625W_100PPM" H 2700 1120 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 2700 1030 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 2700 940 60 0001 L CNN "Library Path"
F 8 "=Value" H 2700 850 60 0001 L CNN "Comment"
F 9 "Standard" H 2700 760 60 0001 L CNN "Component Kind"
F 10 "Standard" H 2700 670 60 0001 L CNN "Component Type"
F 11 " " H 2700 490 60 0001 L CNN "PackageDescription"
F 12 "2" H 2700 400 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 2700 310 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 2700 220 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 2700 40 60 0001 L CNN "Status"
F 16 "0.0625W" H 2700 -50 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 2700 -140 60 0001 L CNN "TC"
F 18 " " H 2700 -230 60 0001 L CNN "Voltage"
F 19 "±1%" H 2700 -320 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 2700 -410 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 2700 -500 60 0001 L CNN "Manufacturer"
F 22 "R0402_5K1_1%_0.0625W_100PPM" H 2700 -590 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 2700 -680 60 0001 L CNN "Case"
F 24 "No" H 2700 -770 60 0001 L CNN "PressFit"
F 25 "Yes" H 2700 -860 60 0001 L CNN "Mounted"
F 26 " " H 2700 -950 60 0001 L CNN "Sense Comment"
F 27 "No" H 2700 -1040 60 0001 L CNN "Sense"
F 28 " " H 2700 -1130 60 0001 L CNN "Status Comment"
F 29 "No" H 2700 -1220 60 0001 L CNN "Socket"
F 30 "Yes" H 2700 -1310 60 0001 L CNN "SMD"
F 31 " " H 2700 -1400 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 2700 -1490 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270675102L" H 2700 -1580 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 2700 -1670 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 2700 -1850 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 2700 -1940 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 2700 -2030 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 2700 -2120 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 2700 -2210 60 0001 L CNN "License"
1 2700 1600
0 -1 -1 0
$EndComp
$Comp
L Resistors_SMD:R0402_240R_1%_0.0625W_100PPM R?
U 1 1 5DAEC4BD
P 8650 4900
AR Path="/5BD32060/5DAEC4BD" Ref="R?" Part="1"
AR Path="/5BCEDA59/5DAEC4BD" Ref="R67" Part="1"
F 0 "R67" H 9000 4950 50 0000 C CNN
F 1 "R0402_240R_1%_0.0625W_100PPM" H 8650 4690 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 8650 3880 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 8650 4510 60 0001 L CNN
F 4 "240" H 8600 4950 50 0000 C CNN "Val"
F 5 "R0402_240R_1%_0.0625W_100PPM" H 8650 4420 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 8650 4330 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 8650 4240 60 0001 L CNN "Library Path"
F 8 "=Value" H 8650 4150 60 0001 L CNN "Comment"
F 9 "Standard" H 8650 4060 60 0001 L CNN "Component Kind"
F 10 "Standard" H 8650 3970 60 0001 L CNN "Component Type"
F 11 " " H 8650 3790 60 0001 L CNN "PackageDescription"
F 12 "2" H 8650 3700 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 8650 3610 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 8650 3520 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 8650 3340 60 0001 L CNN "Status"
F 16 "0.0625W" H 8650 3250 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 8650 3160 60 0001 L CNN "TC"
F 18 " " H 8650 3070 60 0001 L CNN "Voltage"
F 19 "±1%" H 8650 2980 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 8650 2890 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 8650 2800 60 0001 L CNN "Manufacturer"
F 22 "R0402_240R_1%_0.0625W_100PPM" H 8650 2710 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 8650 2620 60 0001 L CNN "Case"
F 24 "No" H 8650 2530 60 0001 L CNN "PressFit"
F 25 "Yes" H 8650 2440 60 0001 L CNN "Mounted"
F 26 " " H 8650 2350 60 0001 L CNN "Sense Comment"
F 27 "No" H 8650 2260 60 0001 L CNN "Sense"
F 28 " " H 8650 2170 60 0001 L CNN "Status Comment"
F 29 "No" H 8650 2080 60 0001 L CNN "Socket"
F 30 "Yes" H 8650 1990 60 0001 L CNN "SMD"
F 31 " " H 8650 1900 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 8650 1810 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672401L" H 8650 1720 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 8650 1630 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 8650 1450 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 8650 1360 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 8650 1270 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 8650 1180 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 8650 1090 60 0001 L CNN "License"
1 8650 4900
-1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_240R_1%_0.0625W_100PPM R?
U 1 1 5DAF2CF6
P 8650 5000
AR Path="/5BD32060/5DAF2CF6" Ref="R?" Part="1"
AR Path="/5BCEDA59/5DAF2CF6" Ref="R156" Part="1"
F 0 "R156" H 9000 5050 50 0000 C CNN
F 1 "R0402_240R_1%_0.0625W_100PPM" H 8650 4790 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 8650 3980 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 8650 4610 60 0001 L CNN
F 4 "240" H 8600 5050 50 0000 C CNN "Val"
F 5 "R0402_240R_1%_0.0625W_100PPM" H 8650 4520 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 8650 4430 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 8650 4340 60 0001 L CNN "Library Path"
F 8 "=Value" H 8650 4250 60 0001 L CNN "Comment"
F 9 "Standard" H 8650 4160 60 0001 L CNN "Component Kind"
F 10 "Standard" H 8650 4070 60 0001 L CNN "Component Type"
F 11 " " H 8650 3890 60 0001 L CNN "PackageDescription"
F 12 "2" H 8650 3800 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 8650 3710 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 8650 3620 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 8650 3440 60 0001 L CNN "Status"
F 16 "0.0625W" H 8650 3350 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 8650 3260 60 0001 L CNN "TC"
F 18 " " H 8650 3170 60 0001 L CNN "Voltage"
F 19 "±1%" H 8650 3080 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 8650 2990 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 8650 2900 60 0001 L CNN "Manufacturer"
F 22 "R0402_240R_1%_0.0625W_100PPM" H 8650 2810 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 8650 2720 60 0001 L CNN "Case"
F 24 "No" H 8650 2630 60 0001 L CNN "PressFit"
F 25 "Yes" H 8650 2540 60 0001 L CNN "Mounted"
F 26 " " H 8650 2450 60 0001 L CNN "Sense Comment"
F 27 "No" H 8650 2360 60 0001 L CNN "Sense"
F 28 " " H 8650 2270 60 0001 L CNN "Status Comment"
F 29 "No" H 8650 2180 60 0001 L CNN "Socket"
F 30 "Yes" H 8650 2090 60 0001 L CNN "SMD"
F 31 " " H 8650 2000 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 8650 1910 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672401L" H 8650 1820 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 8650 1730 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 8650 1550 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 8650 1460 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 8650 1370 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 8650 1280 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 8650 1190 60 0001 L CNN "License"
1 8650 5000
-1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_0R_JUMPER R65
U 1 1 5DB0685F
P 6050 4400
F 0 "R65" H 6200 4500 50 0000 C CNN
F 1 "R0402_0R_JUMPER" H 6050 4190 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6050 3380 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6050 4010 60 0001 L CNN
F 4 "0" H 6200 4300 50 0000 C CNN "Val"
F 5 "R0402_0R_JUMPER" H 6050 3920 60 0001 L CNN "Part Number"
F 6 "Resistor" H 6050 3830 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6050 3740 60 0001 L CNN "Library Path"
F 8 "=Value" H 6050 3650 60 0001 L CNN "Comment"
F 9 "Standard" H 6050 3560 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6050 3470 60 0001 L CNN "Component Type"
F 11 " " H 6050 3290 60 0001 L CNN "PackageDescription"
F 12 "2" H 6050 3200 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6050 3110 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6050 3020 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6050 2840 60 0001 L CNN "Status"
F 16 " " H 6050 2750 60 0001 L CNN "Power"
F 17 " " H 6050 2660 60 0001 L CNN "TC"
F 18 " " H 6050 2570 60 0001 L CNN "Voltage"
F 19 " " H 6050 2480 60 0001 L CNN "Tolerance"
F 20 "1A (0.05R Max DC Resistance) Zero Ohm Jumper" H 6050 2390 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6050 2300 60 0001 L CNN "Manufacturer"
F 22 "R0402_0R_JUMPER" H 6050 2210 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6050 2120 60 0001 L CNN "Case"
F 24 "No" H 6050 2030 60 0001 L CNN "PressFit"
F 25 "Yes" H 6050 1940 60 0001 L CNN "Mounted"
F 26 " " H 6050 1850 60 0001 L CNN "Sense Comment"
F 27 "No" H 6050 1760 60 0001 L CNN "Sense"
F 28 " " H 6050 1670 60 0001 L CNN "Status Comment"
F 29 "No" H 6050 1580 60 0001 L CNN "Socket"
F 30 "Yes" H 6050 1490 60 0001 L CNN "SMD"
F 31 " " H 6050 1400 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6050 1310 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270591001L" H 6050 1220 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6050 1130 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6050 950 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6050 860 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6050 770 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6050 680 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6050 590 60 0001 L CNN "License"
1 6050 4400
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_0R_JUMPER R165
U 1 1 5DB27C8B