-
Notifications
You must be signed in to change notification settings - Fork 6
/
SFP3.sch
1420 lines (1420 loc) · 65.6 KB
/
SFP3.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 A4 11693 8268
encoding utf-8
Sheet 9 25
Title "Marble-Mini"
Date "2020-09-25"
Rev "v1.1"
Comp "Michał Gąska / WUT"
Comment1 ""
Comment2 ""
Comment3 "SFP 3"
Comment4 ""
$EndDescr
$Comp
L power:GND #PWR?
U 1 1 5CB9B91C
P 4300 2500
AR Path="/5BD32060/5CB9B91C" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5CB9B91C" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5CB9B91C" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5CB9B91C" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5CB9B91C" Ref="#PWR0127" Part="1"
AR Path="/5CC8AFE1/5CB9B91C" Ref="#PWR?" Part="1"
F 0 "#PWR0127" H 4300 2250 50 0001 C CNN
F 1 "GND" H 4305 2327 50 0000 C CNN
F 2 "" H 4300 2500 50 0001 C CNN
F 3 "" H 4300 2500 50 0001 C CNN
1 4300 2500
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5CCD7563
P 4300 3350
AR Path="/5BD32060/5CCD7563" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5CCD7563" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5CCD7563" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5CCD7563" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5CCD7563" Ref="#PWR0128" Part="1"
AR Path="/5CC8AFE1/5CCD7563" Ref="#PWR?" Part="1"
F 0 "#PWR0128" H 4300 3100 50 0001 C CNN
F 1 "GND" H 4305 3177 50 0000 C CNN
F 2 "" H 4300 3350 50 0001 C CNN
F 3 "" H 4300 3350 50 0001 C CNN
1 4300 3350
1 0 0 -1
$EndComp
Text Label 6550 1050 0 50 ~ 10
SFP_3_RX_P
Text Label 6550 1250 0 50 ~ 10
SFP_3_RX_N
Text Label 6550 1550 0 50 ~ 10
SFP_3_TX_P
Text Label 6550 1750 0 50 ~ 10
SFP_3_TX_N
Text HLabel 7400 1050 2 50 Output ~ 10
SFP_3_RX_P
Text HLabel 7400 1250 2 50 Output ~ 10
SFP_3_RX_N
Text HLabel 7400 1550 2 50 Input ~ 10
SFP_3_TX_P
Text HLabel 7400 1750 2 50 Input ~ 10
SFP_3_TX_N
Wire Wire Line
6400 1750 7400 1750
$Comp
L power:+3V3 #PWR?
U 1 1 5CCD7537
P 6700 2650
AR Path="/5BD32060/5CCD7537" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5CCD7537" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5CCD7537" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5CCD7537" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5CCD7537" Ref="#PWR0130" Part="1"
AR Path="/5CC8AFE1/5CCD7537" Ref="#PWR?" Part="1"
F 0 "#PWR0130" H 6700 2500 50 0001 C CNN
F 1 "+3V3" H 6715 2823 50 0000 C CNN
F 2 "" H 6700 2650 50 0001 C CNN
F 3 "" H 6700 2650 50 0001 C CNN
1 6700 2650
1 0 0 -1
$EndComp
$Comp
L power:+3V3 #PWR?
U 1 1 5CCD7568
P 6950 2650
AR Path="/5BD32060/5CCD7568" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5CCD7568" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5CCD7568" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5CCD7568" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5CCD7568" Ref="#PWR0131" Part="1"
AR Path="/5CC8AFE1/5CCD7568" Ref="#PWR?" Part="1"
F 0 "#PWR0131" H 6950 2500 50 0001 C CNN
F 1 "+3V3" H 6965 2823 50 0000 C CNN
F 2 "" H 6950 2650 50 0001 C CNN
F 3 "" H 6950 2650 50 0001 C CNN
1 6950 2650
1 0 0 -1
$EndComp
$Comp
L power:+3V3 #PWR?
U 1 1 5CC63CA4
P 7200 2650
AR Path="/5BD32060/5CC63CA4" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5CC63CA4" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5CC63CA4" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5CC63CA4" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5CC63CA4" Ref="#PWR0132" Part="1"
AR Path="/5CC8AFE1/5CC63CA4" Ref="#PWR?" Part="1"
F 0 "#PWR0132" H 7200 2500 50 0001 C CNN
F 1 "+3V3" H 7215 2823 50 0000 C CNN
F 2 "" H 7200 2650 50 0001 C CNN
F 3 "" H 7200 2650 50 0001 C CNN
1 7200 2650
1 0 0 -1
$EndComp
$Comp
L power:+3V3 #PWR?
U 1 1 5CC63CA6
P 7450 2650
AR Path="/5BD32060/5CC63CA6" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5CC63CA6" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5CC63CA6" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5CC63CA6" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5CC63CA6" Ref="#PWR0133" Part="1"
AR Path="/5CC8AFE1/5CC63CA6" Ref="#PWR?" Part="1"
F 0 "#PWR0133" H 7450 2500 50 0001 C CNN
F 1 "+3V3" H 7465 2823 50 0000 C CNN
F 2 "" H 7450 2650 50 0001 C CNN
F 3 "" H 7450 2650 50 0001 C CNN
1 7450 2650
1 0 0 -1
$EndComp
$Comp
L power:+3V3 #PWR?
U 1 1 5CCD7572
P 7700 2650
AR Path="/5BD32060/5CCD7572" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5CCD7572" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5CCD7572" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5CCD7572" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5CCD7572" Ref="#PWR0134" Part="1"
AR Path="/5CC8AFE1/5CCD7572" Ref="#PWR?" Part="1"
F 0 "#PWR0134" H 7700 2500 50 0001 C CNN
F 1 "+3V3" H 7715 2823 50 0000 C CNN
F 2 "" H 7700 2650 50 0001 C CNN
F 3 "" H 7700 2650 50 0001 C CNN
1 7700 2650
1 0 0 -1
$EndComp
Wire Wire Line
6950 3150 6950 2950
Wire Wire Line
7200 3250 7200 2950
Wire Wire Line
7450 3350 7450 2950
$Comp
L power:GND #PWR?
U 1 1 5CCD753F
P 8050 3750
AR Path="/5BD32060/5CCD753F" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5CCD753F" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5CCD753F" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5CCD753F" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5CCD753F" Ref="#PWR0135" Part="1"
AR Path="/5CC8AFE1/5CCD753F" Ref="#PWR?" Part="1"
F 0 "#PWR0135" H 8050 3500 50 0001 C CNN
F 1 "GND" H 8055 3577 50 0000 C CNN
F 2 "" H 8050 3750 50 0001 C CNN
F 3 "" H 8050 3750 50 0001 C CNN
1 8050 3750
1 0 0 -1
$EndComp
Wire Wire Line
5700 1950 5950 1950
Wire Wire Line
5950 1950 5950 1050
Wire Wire Line
5950 1050 7400 1050
Wire Wire Line
5700 2150 6100 2150
Wire Wire Line
6100 2150 6100 1250
Wire Wire Line
6100 1250 7400 1250
Wire Wire Line
5700 2450 6250 2450
Wire Wire Line
6250 2450 6250 1550
Wire Wire Line
6250 1550 7400 1550
Wire Wire Line
5700 2650 6400 2650
Wire Wire Line
6400 2650 6400 1750
Wire Wire Line
7700 3650 6450 3650
Wire Wire Line
7450 3350 6550 3350
Wire Wire Line
7200 3250 5700 3250
Wire Wire Line
6950 3150 5700 3150
Wire Wire Line
6700 2950 6650 2950
Wire Wire Line
6750 4250 6750 3050
Wire Wire Line
6750 3050 5700 3050
Wire Wire Line
6650 4450 6650 2950
Connection ~ 6650 2950
Wire Wire Line
6650 2950 5700 2950
Wire Wire Line
6550 3350 6550 5500
Connection ~ 6550 3350
Wire Wire Line
6550 3350 5700 3350
Wire Wire Line
6450 5700 6450 3650
Wire Wire Line
6450 3650 5700 3650
Text Label 5850 2950 0 50 ~ 10
SFP3_TX_FAULT
Text Label 5850 3050 0 50 ~ 10
SFP3_TX_DIS
Text Label 5850 3150 0 50 ~ 10
I2C_SFP3_SDA
Text Label 5850 3250 0 50 ~ 10
I2C_SFP3_SCL
Text Label 5850 3350 0 50 ~ 10
SFP3_DEF0
Text Label 5850 3650 0 50 ~ 10
SFP3_LOS
Wire Wire Line
6950 3150 10100 3150
Connection ~ 6950 3150
Wire Wire Line
10100 3250 7200 3250
Connection ~ 7200 3250
Text HLabel 10100 3150 2 50 BiDi ~ 10
I2C_SFP3_SDA
Text HLabel 10100 3250 2 50 Input ~ 10
I2C_SFP3_SCL
Text HLabel 10100 4250 2 50 Output ~ 10
SFP3_TX_DIS
Text HLabel 10100 4450 2 50 Output ~ 10
SFP3_TX_FAULT
Text HLabel 10100 5500 2 50 Output ~ 10
SFP3_DEF0
Text HLabel 10100 5700 2 50 Output ~ 10
SFP3_LOS
Wire Wire Line
7750 4150 7750 4250
Connection ~ 7750 4250
Wire Wire Line
7750 4250 6750 4250
Wire Wire Line
8050 3750 7750 3750
Wire Wire Line
7750 3750 7750 3850
Wire Wire Line
7750 4250 10100 4250
Wire Wire Line
6650 4450 10100 4450
Wire Wire Line
6550 5500 10100 5500
Wire Wire Line
6450 5700 10100 5700
Text HLabel 10050 3450 2 50 Output ~ 10
SFP3_RS
Wire Wire Line
5700 3450 10050 3450
$Comp
L Resistors_SMD:R0402_10K_1%_0.0625W_100PPM R?
U 1 1 5C65F872
P 6700 2650
AR Path="/5CC393D3/5C65F872" Ref="R?" Part="1"
AR Path="/5CC6DBF7/5C65F872" Ref="R78" Part="1"
F 0 "R78" V 6804 2710 50 0000 L CNN
F 1 "R0402_10K_1%_0.0625W_100PPM" H 6700 2440 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6700 1630 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6700 2260 60 0001 L CNN
F 4 "10k" V 6895 2710 50 0000 L CNN "Val"
F 5 "R0402_10K_1%_0.0625W_100PPM" H 6700 2170 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6700 2080 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6700 1990 60 0001 L CNN "Library Path"
F 8 "=Value" H 6700 1900 60 0001 L CNN "Comment"
F 9 "Standard" H 6700 1810 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6700 1720 60 0001 L CNN "Component Type"
F 11 " " H 6700 1540 60 0001 L CNN "PackageDescription"
F 12 "2" H 6700 1450 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6700 1360 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6700 1270 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6700 1090 60 0001 L CNN "Status"
F 16 "0.0625W" H 6700 1000 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6700 910 60 0001 L CNN "TC"
F 18 " " H 6700 820 60 0001 L CNN "Voltage"
F 19 "±1%" H 6700 730 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6700 640 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6700 550 60 0001 L CNN "Manufacturer"
F 22 "R0402_10K_1%_0.0625W_100PPM" H 6700 460 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6700 370 60 0001 L CNN "Case"
F 24 "No" H 6700 280 60 0001 L CNN "PressFit"
F 25 "Yes" H 6700 190 60 0001 L CNN "Mounted"
F 26 " " H 6700 100 60 0001 L CNN "Sense Comment"
F 27 "No" H 6700 10 60 0001 L CNN "Sense"
F 28 " " H 6700 -80 60 0001 L CNN "Status Comment"
F 29 "No" H 6700 -170 60 0001 L CNN "Socket"
F 30 "Yes" H 6700 -260 60 0001 L CNN "SMD"
F 31 " " H 6700 -350 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6700 -440 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671003L" H 6700 -530 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6700 -620 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6700 -800 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6700 -890 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6700 -980 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6700 -1070 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 6700 -1160 60 0001 L CNN "License"
1 6700 2650
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0402_10K_1%_0.0625W_100PPM R?
U 1 1 5C65F89F
P 6950 2650
AR Path="/5CC393D3/5C65F89F" Ref="R?" Part="1"
AR Path="/5CC6DBF7/5C65F89F" Ref="R79" Part="1"
F 0 "R79" V 7054 2710 50 0000 L CNN
F 1 "R0402_10K_1%_0.0625W_100PPM" H 6950 2440 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6950 1630 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6950 2260 60 0001 L CNN
F 4 "10k" V 7145 2710 50 0000 L CNN "Val"
F 5 "R0402_10K_1%_0.0625W_100PPM" H 6950 2170 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6950 2080 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6950 1990 60 0001 L CNN "Library Path"
F 8 "=Value" H 6950 1900 60 0001 L CNN "Comment"
F 9 "Standard" H 6950 1810 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6950 1720 60 0001 L CNN "Component Type"
F 11 " " H 6950 1540 60 0001 L CNN "PackageDescription"
F 12 "2" H 6950 1450 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6950 1360 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6950 1270 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6950 1090 60 0001 L CNN "Status"
F 16 "0.0625W" H 6950 1000 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6950 910 60 0001 L CNN "TC"
F 18 " " H 6950 820 60 0001 L CNN "Voltage"
F 19 "±1%" H 6950 730 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6950 640 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6950 550 60 0001 L CNN "Manufacturer"
F 22 "R0402_10K_1%_0.0625W_100PPM" H 6950 460 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6950 370 60 0001 L CNN "Case"
F 24 "No" H 6950 280 60 0001 L CNN "PressFit"
F 25 "Yes" H 6950 190 60 0001 L CNN "Mounted"
F 26 " " H 6950 100 60 0001 L CNN "Sense Comment"
F 27 "No" H 6950 10 60 0001 L CNN "Sense"
F 28 " " H 6950 -80 60 0001 L CNN "Status Comment"
F 29 "No" H 6950 -170 60 0001 L CNN "Socket"
F 30 "Yes" H 6950 -260 60 0001 L CNN "SMD"
F 31 " " H 6950 -350 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6950 -440 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671003L" H 6950 -530 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6950 -620 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6950 -800 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6950 -890 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6950 -980 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6950 -1070 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 6950 -1160 60 0001 L CNN "License"
1 6950 2650
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0402_10K_1%_0.0625W_100PPM R?
U 1 1 5C65F8CC
P 7200 2650
AR Path="/5CC393D3/5C65F8CC" Ref="R?" Part="1"
AR Path="/5CC6DBF7/5C65F8CC" Ref="R80" Part="1"
F 0 "R80" V 7304 2710 50 0000 L CNN
F 1 "R0402_10K_1%_0.0625W_100PPM" H 7200 2440 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 7200 1630 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 7200 2260 60 0001 L CNN
F 4 "10k" V 7395 2710 50 0000 L CNN "Val"
F 5 "R0402_10K_1%_0.0625W_100PPM" H 7200 2170 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 7200 2080 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 7200 1990 60 0001 L CNN "Library Path"
F 8 "=Value" H 7200 1900 60 0001 L CNN "Comment"
F 9 "Standard" H 7200 1810 60 0001 L CNN "Component Kind"
F 10 "Standard" H 7200 1720 60 0001 L CNN "Component Type"
F 11 " " H 7200 1540 60 0001 L CNN "PackageDescription"
F 12 "2" H 7200 1450 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 7200 1360 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 7200 1270 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 7200 1090 60 0001 L CNN "Status"
F 16 "0.0625W" H 7200 1000 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 7200 910 60 0001 L CNN "TC"
F 18 " " H 7200 820 60 0001 L CNN "Voltage"
F 19 "±1%" H 7200 730 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 7200 640 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 7200 550 60 0001 L CNN "Manufacturer"
F 22 "R0402_10K_1%_0.0625W_100PPM" H 7200 460 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 7200 370 60 0001 L CNN "Case"
F 24 "No" H 7200 280 60 0001 L CNN "PressFit"
F 25 "Yes" H 7200 190 60 0001 L CNN "Mounted"
F 26 " " H 7200 100 60 0001 L CNN "Sense Comment"
F 27 "No" H 7200 10 60 0001 L CNN "Sense"
F 28 " " H 7200 -80 60 0001 L CNN "Status Comment"
F 29 "No" H 7200 -170 60 0001 L CNN "Socket"
F 30 "Yes" H 7200 -260 60 0001 L CNN "SMD"
F 31 " " H 7200 -350 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 7200 -440 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671003L" H 7200 -530 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 7200 -620 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 7200 -800 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 7200 -890 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 7200 -980 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 7200 -1070 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 7200 -1160 60 0001 L CNN "License"
1 7200 2650
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0402_10K_1%_0.0625W_100PPM R?
U 1 1 5C65F8F9
P 7450 2650
AR Path="/5CC393D3/5C65F8F9" Ref="R?" Part="1"
AR Path="/5CC6DBF7/5C65F8F9" Ref="R81" Part="1"
F 0 "R81" V 7554 2710 50 0000 L CNN
F 1 "R0402_10K_1%_0.0625W_100PPM" H 7450 2440 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 7450 1630 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 7450 2260 60 0001 L CNN
F 4 "10k" V 7645 2710 50 0000 L CNN "Val"
F 5 "R0402_10K_1%_0.0625W_100PPM" H 7450 2170 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 7450 2080 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 7450 1990 60 0001 L CNN "Library Path"
F 8 "=Value" H 7450 1900 60 0001 L CNN "Comment"
F 9 "Standard" H 7450 1810 60 0001 L CNN "Component Kind"
F 10 "Standard" H 7450 1720 60 0001 L CNN "Component Type"
F 11 " " H 7450 1540 60 0001 L CNN "PackageDescription"
F 12 "2" H 7450 1450 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 7450 1360 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 7450 1270 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 7450 1090 60 0001 L CNN "Status"
F 16 "0.0625W" H 7450 1000 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 7450 910 60 0001 L CNN "TC"
F 18 " " H 7450 820 60 0001 L CNN "Voltage"
F 19 "±1%" H 7450 730 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 7450 640 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 7450 550 60 0001 L CNN "Manufacturer"
F 22 "R0402_10K_1%_0.0625W_100PPM" H 7450 460 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 7450 370 60 0001 L CNN "Case"
F 24 "No" H 7450 280 60 0001 L CNN "PressFit"
F 25 "Yes" H 7450 190 60 0001 L CNN "Mounted"
F 26 " " H 7450 100 60 0001 L CNN "Sense Comment"
F 27 "No" H 7450 10 60 0001 L CNN "Sense"
F 28 " " H 7450 -80 60 0001 L CNN "Status Comment"
F 29 "No" H 7450 -170 60 0001 L CNN "Socket"
F 30 "Yes" H 7450 -260 60 0001 L CNN "SMD"
F 31 " " H 7450 -350 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 7450 -440 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671003L" H 7450 -530 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 7450 -620 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 7450 -800 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 7450 -890 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 7450 -980 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 7450 -1070 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 7450 -1160 60 0001 L CNN "License"
1 7450 2650
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0402_10K_1%_0.0625W_100PPM R?
U 1 1 5C65F926
P 7700 2650
AR Path="/5CC393D3/5C65F926" Ref="R?" Part="1"
AR Path="/5CC6DBF7/5C65F926" Ref="R82" Part="1"
F 0 "R82" V 7804 2710 50 0000 L CNN
F 1 "R0402_10K_1%_0.0625W_100PPM" H 7700 2440 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 7700 1630 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 7700 2260 60 0001 L CNN
F 4 "10k" V 7895 2710 50 0000 L CNN "Val"
F 5 "R0402_10K_1%_0.0625W_100PPM" H 7700 2170 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 7700 2080 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 7700 1990 60 0001 L CNN "Library Path"
F 8 "=Value" H 7700 1900 60 0001 L CNN "Comment"
F 9 "Standard" H 7700 1810 60 0001 L CNN "Component Kind"
F 10 "Standard" H 7700 1720 60 0001 L CNN "Component Type"
F 11 " " H 7700 1540 60 0001 L CNN "PackageDescription"
F 12 "2" H 7700 1450 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 7700 1360 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 7700 1270 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 7700 1090 60 0001 L CNN "Status"
F 16 "0.0625W" H 7700 1000 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 7700 910 60 0001 L CNN "TC"
F 18 " " H 7700 820 60 0001 L CNN "Voltage"
F 19 "±1%" H 7700 730 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 7700 640 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 7700 550 60 0001 L CNN "Manufacturer"
F 22 "R0402_10K_1%_0.0625W_100PPM" H 7700 460 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 7700 370 60 0001 L CNN "Case"
F 24 "No" H 7700 280 60 0001 L CNN "PressFit"
F 25 "Yes" H 7700 190 60 0001 L CNN "Mounted"
F 26 " " H 7700 100 60 0001 L CNN "Sense Comment"
F 27 "No" H 7700 10 60 0001 L CNN "Sense"
F 28 " " H 7700 -80 60 0001 L CNN "Status Comment"
F 29 "No" H 7700 -170 60 0001 L CNN "Socket"
F 30 "Yes" H 7700 -260 60 0001 L CNN "SMD"
F 31 " " H 7700 -350 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 7700 -440 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671003L" H 7700 -530 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 7700 -620 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 7700 -800 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 7700 -890 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 7700 -980 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 7700 -1070 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 7700 -1160 60 0001 L CNN "License"
1 7700 2650
0 1 1 0
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C66DA81
P 1150 2350
AR Path="/5BD32060/5C66DA81" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C66DA81" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C66DA81" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C66DA81" Ref="#PWR?" Part="1"
AR Path="/5CC5990B/5C66DA81" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C66DA81" Ref="#PWR0122" Part="1"
F 0 "#PWR0122" H 1150 2100 50 0001 C CNN
F 1 "GND" H 1155 2177 50 0000 C CNN
F 2 "" H 1150 2350 50 0001 C CNN
F 3 "" H 1150 2350 50 0001 C CNN
1 1150 2350
1 0 0 -1
$EndComp
Wire Wire Line
1150 2250 1150 2350
Wire Wire Line
1150 1750 1150 1950
$Comp
L power:+3V3 #PWR?
U 1 1 5C66DA89
P 1150 1750
AR Path="/5BD32060/5C66DA89" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C66DA89" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C66DA89" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C66DA89" Ref="#PWR?" Part="1"
AR Path="/5CC5990B/5C66DA89" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C66DA89" Ref="#PWR0121" Part="1"
F 0 "#PWR0121" H 1150 1600 50 0001 C CNN
F 1 "+3V3" H 1165 1923 50 0000 C CNN
F 2 "" H 1150 1750 50 0001 C CNN
F 3 "" H 1150 1750 50 0001 C CNN
1 1150 1750
1 0 0 -1
$EndComp
Wire Wire Line
3100 2950 2850 2950
Wire Wire Line
2850 2950 2850 2850
$Comp
L power:+3V3 #PWR?
U 1 1 5C66DA92
P 2850 2850
AR Path="/5BD32060/5C66DA92" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C66DA92" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C66DA92" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C66DA92" Ref="#PWR?" Part="1"
AR Path="/5CC5990B/5C66DA92" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C66DA92" Ref="#PWR0123" Part="1"
F 0 "#PWR0123" H 2850 2700 50 0001 C CNN
F 1 "+3V3" H 2865 3023 50 0000 C CNN
F 2 "" H 2850 2850 50 0001 C CNN
F 3 "" H 2850 2850 50 0001 C CNN
1 2850 2850
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C66DA98
P 3450 3250
AR Path="/5BD32060/5C66DA98" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C66DA98" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C66DA98" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C66DA98" Ref="#PWR?" Part="1"
AR Path="/5CC5990B/5C66DA98" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C66DA98" Ref="#PWR0124" Part="1"
F 0 "#PWR0124" H 3450 3000 50 0001 C CNN
F 1 "GND" H 3455 3077 50 0000 C CNN
F 2 "" H 3450 3250 50 0001 C CNN
F 3 "" H 3450 3250 50 0001 C CNN
1 3450 3250
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C66DA9E
P 3850 3250
AR Path="/5BD32060/5C66DA9E" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C66DA9E" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C66DA9E" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C66DA9E" Ref="#PWR?" Part="1"
AR Path="/5CC5990B/5C66DA9E" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C66DA9E" Ref="#PWR0145" Part="1"
F 0 "#PWR0145" H 3850 3000 50 0001 C CNN
F 1 "GND" H 3855 3077 50 0000 C CNN
F 2 "" H 3850 3250 50 0001 C CNN
F 3 "" H 3850 3250 50 0001 C CNN
1 3850 3250
1 0 0 -1
$EndComp
Wire Wire Line
6150 4000 6300 4000
$Comp
L power:+3V3 #PWR?
U 1 1 5C66DAA6
P 5800 4000
AR Path="/5BD32060/5C66DAA6" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C66DAA6" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C66DAA6" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C66DAA6" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C66DAA6" Ref="#PWR0126" Part="1"
AR Path="/5CC8AFE1/5C66DAA6" Ref="#PWR?" Part="1"
F 0 "#PWR0126" H 5800 3850 50 0001 C CNN
F 1 "+3V3" V 5800 4200 50 0000 C CNN
F 2 "" H 5800 4000 50 0001 C CNN
F 3 "" H 5800 4000 50 0001 C CNN
1 5800 4000
0 -1 -1 0
$EndComp
Wire Wire Line
5800 4000 5850 4000
$Comp
L power:GND #PWR?
U 1 1 5C66DAAD
P 6300 4300
AR Path="/5BD32060/5C66DAAD" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C66DAAD" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C66DAAD" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C66DAAD" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C66DAAD" Ref="#PWR0146" Part="1"
AR Path="/5CC8AFE1/5C66DAAD" Ref="#PWR?" Part="1"
F 0 "#PWR0146" H 6300 4050 50 0001 C CNN
F 1 "GND" H 6305 4127 50 0000 C CNN
F 2 "" H 6300 4300 50 0001 C CNN
F 3 "" H 6300 4300 50 0001 C CNN
1 6300 4300
1 0 0 -1
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5C66DAD8
P 1150 1950
AR Path="/5C16BF8E/5DB9B7E6/5C66DAD8" Ref="C?" Part="1"
AR Path="/5BCEDA3D/5C66DAD8" Ref="C?" Part="1"
AR Path="/5CC393D3/5C66DAD8" Ref="C?" Part="1"
AR Path="/5CC6DBF7/5C66DAD8" Ref="C82" Part="1"
F 0 "C82" V 1254 2060 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 1150 1690 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 1150 880 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 1150 1510 60 0001 L CNN
F 4 "100nF" V 1345 2060 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 1150 1420 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 1150 1330 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 1150 1240 60 0001 L CNN "Library Path"
F 8 "=Value" H 1150 1150 60 0001 L CNN "Comment"
F 9 "Standard" H 1150 1060 60 0001 L CNN "Component Kind"
F 10 "Standard" H 1150 970 60 0001 L CNN "Component Type"
F 11 "2" H 1150 790 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 1150 700 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 1150 610 60 0001 L CNN "Footprint Ref"
F 14 " " H 1150 520 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 1150 340 60 0001 L CNN "Status"
F 16 " " H 1150 250 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 1150 160 60 0001 L CNN "Voltage"
F 18 "X5R" H 1150 70 60 0001 L CNN "TC"
F 19 "±10%" H 1150 -20 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 1150 -110 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 1150 -200 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 1150 -290 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 1150 -380 60 0001 L CNN "Case"
F 24 "Yes" H 1150 -470 60 0001 L CNN "Mounted"
F 25 "No" H 1150 -560 60 0001 L CNN "Socket"
F 26 "Yes" H 1150 -650 60 0001 L CNN "SMD"
F 27 " " H 1150 -740 60 0001 L CNN "PressFit"
F 28 "No" H 1150 -830 60 0001 L CNN "Sense"
F 29 " " H 1150 -920 60 0001 L CNN "Sense Comment"
F 30 " " H 1150 -1010 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 1150 -1100 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 1150 -1190 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 1150 -1280 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 1150 -1460 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 1150 -1550 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 1150 -1640 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 1150 -1730 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 1150 -1820 60 0001 L CNN "License"
1 1150 1950
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5C66DB04
P 3100 1950
AR Path="/5C16BF8E/5DB9B7E6/5C66DB04" Ref="C?" Part="1"
AR Path="/5BCEDA3D/5C66DB04" Ref="C?" Part="1"
AR Path="/5CC393D3/5C66DB04" Ref="C?" Part="1"
AR Path="/5CC6DBF7/5C66DB04" Ref="C86" Part="1"
F 0 "C86" V 3204 2060 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 3100 1690 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 3100 880 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 3100 1510 60 0001 L CNN
F 4 "100nF" V 3295 2060 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 3100 1420 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 3100 1330 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 3100 1240 60 0001 L CNN "Library Path"
F 8 "=Value" H 3100 1150 60 0001 L CNN "Comment"
F 9 "Standard" H 3100 1060 60 0001 L CNN "Component Kind"
F 10 "Standard" H 3100 970 60 0001 L CNN "Component Type"
F 11 "2" H 3100 790 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 3100 700 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 3100 610 60 0001 L CNN "Footprint Ref"
F 14 " " H 3100 520 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 3100 340 60 0001 L CNN "Status"
F 16 " " H 3100 250 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 3100 160 60 0001 L CNN "Voltage"
F 18 "X5R" H 3100 70 60 0001 L CNN "TC"
F 19 "±10%" H 3100 -20 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 3100 -110 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 3100 -200 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 3100 -290 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 3100 -380 60 0001 L CNN "Case"
F 24 "Yes" H 3100 -470 60 0001 L CNN "Mounted"
F 25 "No" H 3100 -560 60 0001 L CNN "Socket"
F 26 "Yes" H 3100 -650 60 0001 L CNN "SMD"
F 27 " " H 3100 -740 60 0001 L CNN "PressFit"
F 28 "No" H 3100 -830 60 0001 L CNN "Sense"
F 29 " " H 3100 -920 60 0001 L CNN "Sense Comment"
F 30 " " H 3100 -1010 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 3100 -1100 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 3100 -1190 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 3100 -1280 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 3100 -1460 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 3100 -1550 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 3100 -1640 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 3100 -1730 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 3100 -1820 60 0001 L CNN "License"
1 3100 1950
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5C66DB30
P 3500 1950
AR Path="/5C16BF8E/5DB9B7E6/5C66DB30" Ref="C?" Part="1"
AR Path="/5BCEDA3D/5C66DB30" Ref="C?" Part="1"
AR Path="/5CC393D3/5C66DB30" Ref="C?" Part="1"
AR Path="/5CC6DBF7/5C66DB30" Ref="C88" Part="1"
F 0 "C88" V 3604 2060 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 3500 1690 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 3500 880 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 3500 1510 60 0001 L CNN
F 4 "100nF" V 3695 2060 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 3500 1420 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 3500 1330 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 3500 1240 60 0001 L CNN "Library Path"
F 8 "=Value" H 3500 1150 60 0001 L CNN "Comment"
F 9 "Standard" H 3500 1060 60 0001 L CNN "Component Kind"
F 10 "Standard" H 3500 970 60 0001 L CNN "Component Type"
F 11 "2" H 3500 790 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 3500 700 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 3500 610 60 0001 L CNN "Footprint Ref"
F 14 " " H 3500 520 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 3500 340 60 0001 L CNN "Status"
F 16 " " H 3500 250 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 3500 160 60 0001 L CNN "Voltage"
F 18 "X5R" H 3500 70 60 0001 L CNN "TC"
F 19 "±10%" H 3500 -20 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 3500 -110 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 3500 -200 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 3500 -290 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 3500 -380 60 0001 L CNN "Case"
F 24 "Yes" H 3500 -470 60 0001 L CNN "Mounted"
F 25 "No" H 3500 -560 60 0001 L CNN "Socket"
F 26 "Yes" H 3500 -650 60 0001 L CNN "SMD"
F 27 " " H 3500 -740 60 0001 L CNN "PressFit"
F 28 "No" H 3500 -830 60 0001 L CNN "Sense"
F 29 " " H 3500 -920 60 0001 L CNN "Sense Comment"
F 30 " " H 3500 -1010 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 3500 -1100 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 3500 -1190 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 3500 -1280 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 3500 -1460 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 3500 -1550 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 3500 -1640 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 3500 -1730 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 3500 -1820 60 0001 L CNN "License"
1 3500 1950
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5C66DB5C
P 3850 2950
AR Path="/5C16BF8E/5DB9B7E6/5C66DB5C" Ref="C?" Part="1"
AR Path="/5BCEDA3D/5C66DB5C" Ref="C?" Part="1"
AR Path="/5CC393D3/5C66DB5C" Ref="C?" Part="1"
AR Path="/5CC6DBF7/5C66DB5C" Ref="C89" Part="1"
F 0 "C89" V 3954 3060 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 3850 2690 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 3850 1880 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 3850 2510 60 0001 L CNN
F 4 "100nF" V 4045 3060 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 3850 2420 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 3850 2330 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 3850 2240 60 0001 L CNN "Library Path"
F 8 "=Value" H 3850 2150 60 0001 L CNN "Comment"
F 9 "Standard" H 3850 2060 60 0001 L CNN "Component Kind"
F 10 "Standard" H 3850 1970 60 0001 L CNN "Component Type"
F 11 "2" H 3850 1790 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 3850 1700 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 3850 1610 60 0001 L CNN "Footprint Ref"
F 14 " " H 3850 1520 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 3850 1340 60 0001 L CNN "Status"
F 16 " " H 3850 1250 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 3850 1160 60 0001 L CNN "Voltage"
F 18 "X5R" H 3850 1070 60 0001 L CNN "TC"
F 19 "±10%" H 3850 980 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 3850 890 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 3850 800 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 3850 710 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 3850 620 60 0001 L CNN "Case"
F 24 "Yes" H 3850 530 60 0001 L CNN "Mounted"
F 25 "No" H 3850 440 60 0001 L CNN "Socket"
F 26 "Yes" H 3850 350 60 0001 L CNN "SMD"
F 27 " " H 3850 260 60 0001 L CNN "PressFit"
F 28 "No" H 3850 170 60 0001 L CNN "Sense"
F 29 " " H 3850 80 60 0001 L CNN "Sense Comment"
F 30 " " H 3850 -10 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 3850 -100 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 3850 -190 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 3850 -280 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 3850 -460 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 3850 -550 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 3850 -640 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 3850 -730 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 3850 -820 60 0001 L CNN "License"
1 3850 2950
0 1 1 0
$EndComp
Connection ~ 1150 1950
Connection ~ 1150 2250
Connection ~ 3100 1950
Wire Wire Line
3100 1950 3500 1950
Connection ~ 3100 2250
Wire Wire Line
3100 2250 3500 2250
Connection ~ 3500 1950
Wire Wire Line
3500 1950 4300 1950
Connection ~ 3850 2950
Wire Wire Line
3850 2950 4300 2950
$Comp
L Inductors_SMD:IND0603_MURATA_BLM18SG121TN1D L?
U 1 1 5C66DB8E
P 1850 1950
AR Path="/5C16BF8E/5DB9B7E6/5C66DB8E" Ref="L?" Part="1"
AR Path="/5CC393D3/5C66DB8E" Ref="L?" Part="1"
AR Path="/5CC6DBF7/5C66DB8E" Ref="L5" Part="1"
F 0 "L5" H 2000 2167 50 0000 C CNN
F 1 "IND0603_MURATA_BLM18SG121TN1D" H 1850 1760 60 0001 L CNN
F 2 "Marble:INDC1608X65N" H 1850 950 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\IND0603_MURATA_BLM18S.pdf" H 1850 1580 60 0001 L CNN
F 4 "120R@100MHz" H 2000 2076 50 0000 C CNN "Val"
F 5 "IND0603_MURATA_BLM18SG121TN1D" H 1850 1490 60 0001 L CNN "Part Number"
F 6 "Inductor" H 1850 1400 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Inductors & Transformers.SchLib" H 1850 1310 60 0001 L CNN "Library Path"
F 8 "=Value" H 1850 1220 60 0001 L CNN "Comment"
F 9 "Standard" H 1850 1130 60 0001 L CNN "Component Kind"
F 10 "Standard" H 1850 1040 60 0001 L CNN "Component Type"
F 11 " " H 1850 860 60 0001 L CNN "PackageDescription"
F 12 "2" H 1850 770 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Inductors SMD.PcbLib" H 1850 680 60 0001 L CNN "Footprint Path"
F 14 "INDC1608X65N" H 1850 590 60 0001 L CNN "Footprint Ref"
F 15 "None" H 1850 410 60 0001 L CNN "Status"
F 16 "3A" H 1850 320 60 0001 L CNN "Power"
F 17 "0.025R" H 1850 230 60 0001 L CNN "Resistance"
F 18 "±25%" H 1850 140 60 0001 L CNN "Tolerance"
F 19 "SMD EMIFIL Suppression Chip Ferrite Bead" H 1850 50 60 0001 L CNN "Part Description"
F 20 "MURATA" H 1850 -40 60 0001 L CNN "Manufacturer"
F 21 "BLM18SG121TN1D" H 1850 -130 60 0001 L CNN "Manufacturer Part Number"
F 22 "0603" H 1850 -220 60 0001 L CNN "Case"
F 23 "Yes" H 1850 -310 60 0001 L CNN "Mounted"
F 24 "No" H 1850 -400 60 0001 L CNN "Socket"
F 25 "Yes" H 1850 -490 60 0001 L CNN "SMD"
F 26 " " H 1850 -580 60 0001 L CNN "Sense Comment"
F 27 "No" H 1850 -670 60 0001 L CNN "Sense"
F 28 " " H 1850 -760 60 0001 L CNN "Status Comment"
F 29 "0.65mm" H 1850 -850 60 0001 L CNN "ComponentHeight"
F 30 "CERN DEM JLC" H 1850 -1030 60 0001 L CNN "Author"
F 31 "07/23/14 00:00:00" H 1850 -1120 60 0001 L CNN "CreateDate"
F 32 "07/23/14 00:00:00" H 1850 -1210 60 0001 L CNN "LatestRevisionDate"
F 33 "Inductors SMD" H 1850 -1300 60 0001 L CNN "Library Name"
F 34 "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 1850 -1390 60 0001 L CNN "License"
1 1850 1950
1 0 0 -1
$EndComp
$Comp
L Inductors_SMD:IND0603_MURATA_BLM18SG121TN1D L?
U 1 1 5C66DBB6
P 3100 2950
AR Path="/5C16BF8E/5DB9B7E6/5C66DBB6" Ref="L?" Part="1"
AR Path="/5CC393D3/5C66DBB6" Ref="L?" Part="1"
AR Path="/5CC6DBF7/5C66DBB6" Ref="L6" Part="1"
F 0 "L6" H 3250 3167 50 0000 C CNN
F 1 "IND0603_MURATA_BLM18SG121TN1D" H 3100 2760 60 0001 L CNN
F 2 "Marble:INDC1608X65N" H 3100 1950 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\IND0603_MURATA_BLM18S.pdf" H 3100 2580 60 0001 L CNN
F 4 "120R@100MHz" H 3250 3076 50 0000 C CNN "Val"
F 5 "IND0603_MURATA_BLM18SG121TN1D" H 3100 2490 60 0001 L CNN "Part Number"
F 6 "Inductor" H 3100 2400 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Inductors & Transformers.SchLib" H 3100 2310 60 0001 L CNN "Library Path"
F 8 "=Value" H 3100 2220 60 0001 L CNN "Comment"
F 9 "Standard" H 3100 2130 60 0001 L CNN "Component Kind"
F 10 "Standard" H 3100 2040 60 0001 L CNN "Component Type"
F 11 " " H 3100 1860 60 0001 L CNN "PackageDescription"
F 12 "2" H 3100 1770 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Inductors SMD.PcbLib" H 3100 1680 60 0001 L CNN "Footprint Path"
F 14 "INDC1608X65N" H 3100 1590 60 0001 L CNN "Footprint Ref"
F 15 "None" H 3100 1410 60 0001 L CNN "Status"
F 16 "3A" H 3100 1320 60 0001 L CNN "Power"
F 17 "0.025R" H 3100 1230 60 0001 L CNN "Resistance"
F 18 "±25%" H 3100 1140 60 0001 L CNN "Tolerance"
F 19 "SMD EMIFIL Suppression Chip Ferrite Bead" H 3100 1050 60 0001 L CNN "Part Description"
F 20 "MURATA" H 3100 960 60 0001 L CNN "Manufacturer"
F 21 "BLM18SG121TN1D" H 3100 870 60 0001 L CNN "Manufacturer Part Number"
F 22 "0603" H 3100 780 60 0001 L CNN "Case"
F 23 "Yes" H 3100 690 60 0001 L CNN "Mounted"
F 24 "No" H 3100 600 60 0001 L CNN "Socket"
F 25 "Yes" H 3100 510 60 0001 L CNN "SMD"
F 26 " " H 3100 420 60 0001 L CNN "Sense Comment"
F 27 "No" H 3100 330 60 0001 L CNN "Sense"
F 28 " " H 3100 240 60 0001 L CNN "Status Comment"
F 29 "0.65mm" H 3100 150 60 0001 L CNN "ComponentHeight"
F 30 "CERN DEM JLC" H 3100 -30 60 0001 L CNN "Author"
F 31 "07/23/14 00:00:00" H 3100 -120 60 0001 L CNN "CreateDate"
F 32 "07/23/14 00:00:00" H 3100 -210 60 0001 L CNN "LatestRevisionDate"
F 33 "Inductors SMD" H 3100 -300 60 0001 L CNN "Library Name"
F 34 "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 3100 -390 60 0001 L CNN "License"
1 3100 2950
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_10K_1%_0.0625W_100PPM R?
U 1 1 5C66DBE3
P 6150 4000
AR Path="/5CC393D3/5C66DBE3" Ref="R?" Part="1"
AR Path="/5CC6DBF7/5C66DBE3" Ref="R76" Part="1"
F 0 "R76" H 6300 3803 50 0000 C CNN
F 1 "R0402_10K_1%_0.0625W_100PPM" H 6150 3790 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6150 2980 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6150 3610 60 0001 L CNN
F 4 "10k" H 6300 3894 50 0000 C CNN "Val"
F 5 "R0402_10K_1%_0.0625W_100PPM" H 6150 3520 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6150 3430 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6150 3340 60 0001 L CNN "Library Path"
F 8 "=Value" H 6150 3250 60 0001 L CNN "Comment"
F 9 "Standard" H 6150 3160 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6150 3070 60 0001 L CNN "Component Type"
F 11 " " H 6150 2890 60 0001 L CNN "PackageDescription"
F 12 "2" H 6150 2800 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6150 2710 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6150 2620 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6150 2440 60 0001 L CNN "Status"
F 16 "0.0625W" H 6150 2350 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6150 2260 60 0001 L CNN "TC"
F 18 " " H 6150 2170 60 0001 L CNN "Voltage"
F 19 "±1%" H 6150 2080 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6150 1990 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6150 1900 60 0001 L CNN "Manufacturer"
F 22 "R0402_10K_1%_0.0625W_100PPM" H 6150 1810 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6150 1720 60 0001 L CNN "Case"
F 24 "No" H 6150 1630 60 0001 L CNN "PressFit"
F 25 "Yes" H 6150 1540 60 0001 L CNN "Mounted"
F 26 " " H 6150 1450 60 0001 L CNN "Sense Comment"
F 27 "No" H 6150 1360 60 0001 L CNN "Sense"
F 28 " " H 6150 1270 60 0001 L CNN "Status Comment"
F 29 "No" H 6150 1180 60 0001 L CNN "Socket"
F 30 "Yes" H 6150 1090 60 0001 L CNN "SMD"
F 31 " " H 6150 1000 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6150 910 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671003L" H 6150 820 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6150 730 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6150 550 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6150 460 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6150 370 60 0001 L CNN "LatestRevisionDate"