-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFMC_2.sch
1987 lines (1987 loc) · 74.9 KB
/
FMC_2.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 2 25
Title "Marble-Mini"
Date "2020-09-25"
Rev "v1.1"
Comp "Michał Gąska / WUT"
Comment1 ""
Comment2 ""
Comment3 "FMC 2 connector"
Comment4 ""
$EndDescr
Wire Wire Line
3850 1950 3700 1950
Wire Wire Line
3700 1950 3700 2250
Wire Wire Line
3700 5850 3850 5850
Wire Wire Line
3850 5650 3700 5650
Connection ~ 3700 5650
Wire Wire Line
3700 5650 3700 5850
Wire Wire Line
3850 5450 3700 5450
Connection ~ 3700 5450
Wire Wire Line
3700 5450 3700 5650
Wire Wire Line
3850 5050 3700 5050
Connection ~ 3700 5050
Wire Wire Line
3850 5150 3700 5150
Wire Wire Line
3700 5050 3700 5150
Connection ~ 3700 5150
Wire Wire Line
3700 5150 3700 5450
Wire Wire Line
3850 2250 3700 2250
Connection ~ 3700 2250
Wire Wire Line
3700 2250 3700 2350
Wire Wire Line
3850 2350 3700 2350
Connection ~ 3700 2350
Wire Wire Line
3700 2350 3700 2650
Wire Wire Line
3850 2650 3700 2650
Connection ~ 3700 2650
Wire Wire Line
3700 2650 3700 2750
Wire Wire Line
3850 2750 3700 2750
Connection ~ 3700 2750
Wire Wire Line
3700 2750 3700 3050
Wire Wire Line
3850 3050 3700 3050
Connection ~ 3700 3050
Wire Wire Line
3700 3050 3700 3150
Wire Wire Line
3850 3150 3700 3150
Connection ~ 3700 3150
Wire Wire Line
3700 3150 3700 3450
Wire Wire Line
3850 3450 3700 3450
Connection ~ 3700 3450
Wire Wire Line
3700 3450 3700 3550
Wire Wire Line
3850 3550 3700 3550
Connection ~ 3700 3550
Wire Wire Line
3700 3550 3700 3850
Wire Wire Line
3850 3850 3700 3850
Connection ~ 3700 3850
Wire Wire Line
3850 3950 3700 3950
Wire Wire Line
3700 3850 3700 3950
Connection ~ 3700 3950
Wire Wire Line
3700 3950 3700 4250
Wire Wire Line
3850 4250 3700 4250
Connection ~ 3700 4250
Wire Wire Line
3700 4250 3700 4350
Wire Wire Line
3850 4350 3700 4350
Connection ~ 3700 4350
Wire Wire Line
3700 4350 3700 4650
Wire Wire Line
3850 4650 3700 4650
Connection ~ 3700 4650
Wire Wire Line
3700 4650 3700 4750
Wire Wire Line
3850 4750 3700 4750
Connection ~ 3700 4750
Wire Wire Line
3700 4750 3700 5050
Wire Wire Line
6150 2050 6000 2050
Wire Wire Line
6000 2050 6000 2150
Wire Wire Line
6150 5750 6000 5750
Connection ~ 6000 5750
Wire Wire Line
6150 5550 6000 5550
Connection ~ 6000 5550
Wire Wire Line
6000 5550 6000 5750
Wire Wire Line
6150 4650 6000 4650
Connection ~ 6000 4650
Wire Wire Line
6000 4650 6000 5550
Wire Wire Line
6150 4350 6000 4350
Connection ~ 6000 4350
Wire Wire Line
6000 4350 6000 4650
Wire Wire Line
6150 2150 6000 2150
Connection ~ 6000 2150
Wire Wire Line
6000 2150 6000 2450
Wire Wire Line
6150 2450 6000 2450
Connection ~ 6000 2450
Wire Wire Line
6000 2450 6000 2550
Wire Wire Line
6150 2550 6000 2550
Connection ~ 6000 2550
Wire Wire Line
6000 2550 6000 2850
Wire Wire Line
6150 4050 6000 4050
Connection ~ 6000 4050
Wire Wire Line
6000 4050 6000 4350
Wire Wire Line
6150 3750 6000 3750
Connection ~ 6000 3750
Wire Wire Line
6000 3750 6000 4050
Wire Wire Line
6150 3450 6000 3450
Connection ~ 6000 3450
Wire Wire Line
6000 3450 6000 3750
Wire Wire Line
6150 3150 6000 3150
Connection ~ 6000 3150
Wire Wire Line
6000 3150 6000 3450
Wire Wire Line
6150 2850 6000 2850
Connection ~ 6000 2850
Wire Wire Line
6000 2850 6000 3150
Wire Wire Line
8900 1950 8750 1950
Wire Wire Line
8750 1950 8750 2250
Wire Wire Line
8750 5850 8900 5850
Wire Wire Line
8900 5650 8750 5650
Connection ~ 8750 5650
Wire Wire Line
8750 5650 8750 5850
Wire Wire Line
8900 2250 8750 2250
Connection ~ 8750 2250
Wire Wire Line
8750 2250 8750 2350
Wire Wire Line
8900 2350 8750 2350
Connection ~ 8750 2350
Wire Wire Line
8750 2350 8750 2650
Wire Wire Line
8900 2650 8750 2650
Connection ~ 8750 2650
Wire Wire Line
8750 2650 8750 2950
Wire Wire Line
8900 2950 8750 2950
Connection ~ 8750 2950
Wire Wire Line
8750 2950 8750 3250
Wire Wire Line
8900 3250 8750 3250
Connection ~ 8750 3250
Wire Wire Line
8750 3250 8750 3550
Wire Wire Line
8900 3550 8750 3550
Connection ~ 8750 3550
Wire Wire Line
8750 3550 8750 3850
Wire Wire Line
8900 3850 8750 3850
Connection ~ 8750 3850
Wire Wire Line
8750 3850 8750 4150
Wire Wire Line
8900 4150 8750 4150
Connection ~ 8750 4150
Wire Wire Line
8750 4150 8750 4450
Wire Wire Line
8900 4450 8750 4450
Connection ~ 8750 4450
Wire Wire Line
8750 4450 8750 4750
Wire Wire Line
8900 4750 8750 4750
Connection ~ 8750 4750
Wire Wire Line
8750 4750 8750 5050
Wire Wire Line
8900 5050 8750 5050
Connection ~ 8750 5050
Wire Wire Line
8750 5050 8750 5350
Wire Wire Line
8900 5350 8750 5350
Connection ~ 8750 5350
Wire Wire Line
8750 5350 8750 5650
Wire Wire Line
11550 2150 11400 2150
Wire Wire Line
11400 2150 11400 2450
Wire Wire Line
11550 5750 11400 5750
Connection ~ 11400 5750
Wire Wire Line
11550 2450 11400 2450
Connection ~ 11400 2450
Wire Wire Line
11400 2450 11400 2750
Wire Wire Line
11550 2750 11400 2750
Connection ~ 11400 2750
Wire Wire Line
11400 2750 11400 3050
Wire Wire Line
11550 3050 11400 3050
Connection ~ 11400 3050
Wire Wire Line
11400 3050 11400 3350
Wire Wire Line
11550 3350 11400 3350
Connection ~ 11400 3350
Wire Wire Line
11400 3350 11400 3650
Wire Wire Line
11550 3650 11400 3650
Connection ~ 11400 3650
Wire Wire Line
11400 3650 11400 3950
Wire Wire Line
11550 3950 11400 3950
Connection ~ 11400 3950
Wire Wire Line
11400 3950 11400 4250
Wire Wire Line
11550 4250 11400 4250
Connection ~ 11400 4250
Wire Wire Line
11400 4250 11400 4550
Wire Wire Line
11550 4550 11400 4550
Connection ~ 11400 4550
Wire Wire Line
11400 4550 11400 4850
Wire Wire Line
11550 4850 11400 4850
Connection ~ 11400 4850
Wire Wire Line
11400 4850 11400 5150
Wire Wire Line
11550 5150 11400 5150
Connection ~ 11400 5150
Wire Wire Line
11400 5150 11400 5450
Wire Wire Line
11400 5450 11550 5450
Connection ~ 11400 5450
Wire Wire Line
11400 5450 11400 5750
Text Label 3150 4050 0 50 ~ 10
FMC2_P_LA_18
Text Label 3150 4150 0 50 ~ 10
FMC2_N_LA_18
Text Label 3150 4850 0 50 ~ 10
I2C_FMC2_SCL
Text Label 3150 4950 0 50 ~ 10
I2C_FMC2_SDA
Wire Wire Line
3850 5350 3550 5350
Wire Wire Line
6150 5450 5750 5450
Wire Wire Line
5750 5450 5750 5650
Wire Wire Line
5750 5850 6150 5850
Wire Wire Line
6150 5650 5750 5650
Connection ~ 5750 5650
Wire Wire Line
5750 5650 5750 5850
Wire Wire Line
5750 5850 5750 6000
Connection ~ 5750 5850
Wire Wire Line
3150 4850 3850 4850
Wire Wire Line
3150 4950 3850 4950
Text Notes 2700 4150 0 50 ~ 10
LA18_CC_P\nLA18_CC_N
Text Notes 5050 2750 0 50 ~ 10
LA1_CC_P\nLA1_CC_N
Text Label 5450 1950 0 50 ~ 10
FMC2_PG_C2M
Text Label 5100 2250 0 50 ~ 10
FMC2_GBTCLK0_M2C_P
Text Label 5100 2350 0 50 ~ 10
FMC2_GBTCLK0_M2C_N
Text Label 5450 4750 0 50 ~ 10
FMC2_TCK
Text Label 5450 4850 0 50 ~ 10
FMC2_TDI
Text Label 5450 4950 0 50 ~ 10
FMC2_TDO
Text Label 5400 5050 0 50 ~ 10
FMC2_3P3VAUX
Text Label 5450 5150 0 50 ~ 10
FMC2_TMS
Wire Wire Line
5450 1950 6150 1950
Wire Wire Line
5100 2250 6150 2250
Wire Wire Line
5100 2350 6150 2350
Wire Wire Line
5450 4750 6150 4750
Wire Wire Line
5450 4850 6150 4850
Wire Wire Line
5450 4950 6150 4950
Wire Wire Line
5400 5050 6150 5050
Wire Wire Line
5450 5150 6150 5150
Text Label 8000 2050 0 50 ~ 10
FMC2_CLK1_M2C_P
Text Label 8000 2150 0 50 ~ 10
FMC2_CLK1_M2C_N
Text Label 10750 2050 0 50 ~ 10
FMC2_PRSNT_M2C_L
Text Label 10650 2250 0 50 ~ 10
FMC2_CLK0_M2C_P
Text Label 10650 2350 0 50 ~ 10
FMC2_CLK0_M2C_N
Wire Wire Line
8600 5750 8900 5750
Wire Wire Line
8000 2050 8900 2050
Wire Wire Line
8000 2150 8900 2150
Wire Wire Line
10650 2250 11550 2250
Wire Wire Line
10650 2350 11550 2350
Wire Wire Line
9650 5850 11550 5850
Wire Wire Line
2650 4450 3850 4450
Wire Wire Line
2650 3650 3850 3650
Wire Wire Line
2650 3250 3850 3250
Wire Wire Line
2650 2850 3850 2850
Text Notes 7700 2550 0 50 ~ 10
LA0_CC_P\nLA0_CC_N
Wire Wire Line
2650 4050 3850 4050
Wire Wire Line
10500 2550 11550 2550
Wire Wire Line
10500 2850 11550 2850
Wire Wire Line
10500 3150 11550 3150
Wire Wire Line
10500 3450 11550 3450
Wire Wire Line
10500 3750 11550 3750
Wire Wire Line
10500 4050 11550 4050
Wire Wire Line
10500 4350 11550 4350
Wire Wire Line
10500 4650 11550 4650
Wire Wire Line
10500 4950 11550 4950
Wire Wire Line
10500 5250 11550 5250
Wire Wire Line
10500 5550 11550 5550
Text Label 13950 2000 0 50 ~ 10
FMC2_TCK
Text Label 13950 2100 0 50 ~ 10
FMC2_TDI
Text Label 13950 2200 0 50 ~ 10
FMC2_TDO
Text Label 13950 1550 0 50 ~ 10
I2C_FMC2_SCL
Text Label 13950 1650 0 50 ~ 10
I2C_FMC2_SDA
Text Label 13900 3500 0 50 ~ 10
FMC2_GBTCLK0_M2C_P
Text Label 13900 3600 0 50 ~ 10
FMC2_GBTCLK0_M2C_N
Text Label 13950 2300 0 50 ~ 10
FMC2_TMS
Text Label 13950 2400 0 50 ~ 10
FMC2_TRST
Text Label 13900 3750 0 50 ~ 10
FMC2_CLK1_M2C_P
Text Label 13900 3850 0 50 ~ 10
FMC2_CLK1_M2C_N
Wire Wire Line
13900 3750 14800 3750
Wire Wire Line
13900 3850 14800 3850
Text Label 13900 1200 0 50 ~ 10
FMC2_PRSNT_M2C_L
Text Label 13900 4000 0 50 ~ 10
FMC2_CLK0_M2C_P
Text Label 13900 4100 0 50 ~ 10
FMC2_CLK0_M2C_N
Wire Wire Line
13900 4000 14800 4000
Wire Wire Line
13900 4100 14800 4100
Text HLabel 14800 3500 2 50 Output ~ 10
FMC2_GBTCLK0_M2C_P
Text HLabel 14800 3600 2 50 Output ~ 10
FMC2_GBTCLK0_M2C_N
Text HLabel 14800 3750 2 50 Output ~ 10
FMC2_CLK1_M2C_P
Text HLabel 14800 3850 2 50 Output ~ 10
FMC2_CLK1_M2C_N
Text HLabel 14800 4000 2 50 Output ~ 10
FMC2_CLK0_M2C_P
Text HLabel 14800 4100 2 50 Output ~ 10
FMC2_CLK0_M2C_N
Wire Wire Line
13900 3500 14800 3500
Wire Wire Line
13900 3600 14800 3600
Text HLabel 14800 1200 2 50 Output ~ 10
FMC2_PRSNT_M2C_L
Text HLabel 14800 1550 2 50 Input ~ 10
I2C_FMC2_SCL
Text HLabel 14800 1650 2 50 BiDi ~ 10
I2C_FMC2_SDA
Text HLabel 14800 2000 2 50 Input ~ 10
FMC2_TCK
Text HLabel 14800 2100 2 50 Input ~ 10
FMC2_TDI
Text HLabel 14800 2200 2 50 Output ~ 10
FMC2_TDO
Text HLabel 14800 2300 2 50 Input ~ 10
FMC2_TMS
Text HLabel 14800 2400 2 50 Input ~ 10
FMC2_TRST
Wire Wire Line
13900 1200 14800 1200
Wire Wire Line
13950 1550 14800 1550
Wire Wire Line
13950 1650 14800 1650
Wire Wire Line
13950 2000 14800 2000
Wire Wire Line
13950 2100 14800 2100
Wire Wire Line
13950 2200 14800 2200
Wire Wire Line
13950 2300 14800 2300
Wire Wire Line
13950 2400 14800 2400
Text Label 13900 1000 0 50 ~ 10
FMC2_PG_C2M
$Comp
L power:GND #PWR?
U 1 1 5C2E6671
P 3700 6100
AR Path="/5BD32060/5C2E6671" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C2E6671" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C2E6671" Ref="#PWR04" Part="1"
F 0 "#PWR04" H 3700 5850 50 0001 C CNN
F 1 "GND" H 3705 5927 50 0000 C CNN
F 2 "" H 3700 6100 50 0001 C CNN
F 3 "" H 3700 6100 50 0001 C CNN
1 3700 6100
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C2E6677
P 6000 6100
AR Path="/5BD32060/5C2E6677" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C2E6677" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C2E6677" Ref="#PWR06" Part="1"
F 0 "#PWR06" H 6000 5850 50 0001 C CNN
F 1 "GND" H 6005 5927 50 0000 C CNN
F 2 "" H 6000 6100 50 0001 C CNN
F 3 "" H 6000 6100 50 0001 C CNN
1 6000 6100
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C2E667D
P 8750 6100
AR Path="/5BD32060/5C2E667D" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C2E667D" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C2E667D" Ref="#PWR09" Part="1"
F 0 "#PWR09" H 8750 5850 50 0001 C CNN
F 1 "GND" H 8755 5927 50 0000 C CNN
F 2 "" H 8750 6100 50 0001 C CNN
F 3 "" H 8750 6100 50 0001 C CNN
1 8750 6100
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C2E6683
P 11400 6100
AR Path="/5BD32060/5C2E6683" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C2E6683" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C2E6683" Ref="#PWR010" Part="1"
F 0 "#PWR010" H 11400 5850 50 0001 C CNN
F 1 "GND" H 11405 5927 50 0000 C CNN
F 2 "" H 11400 6100 50 0001 C CNN
F 3 "" H 11400 6100 50 0001 C CNN
1 11400 6100
1 0 0 -1
$EndComp
Wire Wire Line
11400 5750 11400 6100
Wire Wire Line
8750 5850 8750 6100
Connection ~ 8750 5850
Wire Wire Line
8600 5750 8600 5800
Wire Wire Line
8600 6000 9650 6000
Wire Wire Line
9650 6000 9650 5850
Wire Wire Line
6000 5750 6000 6100
Wire Wire Line
3700 5850 3700 6100
Connection ~ 3700 5850
$Comp
L power:+3V3 #PWR?
U 1 1 5C2E6698
P 3400 5750
AR Path="/5BD31F9A/5C2E6698" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C2E6698" Ref="#PWR03" Part="1"
F 0 "#PWR03" H 3400 5600 50 0001 C CNN
F 1 "+3V3" H 3415 5923 50 0000 C CNN
F 2 "" H 3400 5750 50 0001 C CNN
F 3 "" H 3400 5750 50 0001 C CNN
1 3400 5750
1 0 0 -1
$EndComp
Connection ~ 8600 5800
Wire Wire Line
8600 5800 8600 6000
Connection ~ 8750 6100
$Comp
L power:GND #PWR?
U 1 1 5C2E66D8
P 5150 6300
AR Path="/5BD32060/5C2E66D8" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C2E66D8" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C2E66D8" Ref="#PWR05" Part="1"
F 0 "#PWR05" H 5150 6050 50 0001 C CNN
F 1 "GND" H 5155 6127 50 0000 C CNN
F 2 "" H 5150 6300 50 0001 C CNN
F 3 "" H 5150 6300 50 0001 C CNN
1 5150 6300
1 0 0 -1
$EndComp
Wire Wire Line
4700 6300 5150 6300
Wire Wire Line
3850 5550 3550 5550
Wire Wire Line
3550 5550 3550 5350
Connection ~ 3550 5350
$Comp
L power:GND #PWR?
U 1 1 5C2E66F6
P 2500 5650
AR Path="/5BD32060/5C2E66F6" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C2E66F6" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C2E66F6" Ref="#PWR02" Part="1"
F 0 "#PWR02" H 2500 5400 50 0001 C CNN
F 1 "GND" H 2505 5477 50 0000 C CNN
F 2 "" H 2500 5650 50 0001 C CNN
F 3 "" H 2500 5650 50 0001 C CNN
1 2500 5650
1 0 0 -1
$EndComp
Wire Wire Line
2500 5650 3000 5650
Wire Wire Line
3400 5750 3400 6000
$Comp
L power:GND #PWR?
U 1 1 5C2E6711
P 6400 7200
AR Path="/5BD32060/5C2E6711" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C2E6711" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C2E6711" Ref="#PWR07" Part="1"
F 0 "#PWR07" H 6400 6950 50 0001 C CNN
F 1 "GND" H 6405 7027 50 0000 C CNN
F 2 "" H 6400 7200 50 0001 C CNN
F 3 "" H 6400 7200 50 0001 C CNN
1 6400 7200
1 0 0 -1
$EndComp
Wire Wire Line
5950 7200 6400 7200
Text Label 5950 6900 0 50 ~ 10
FMC2_3P3VAUX
Text HLabel 14800 1000 2 50 Output ~ 10
FMC2_PG_C2M
Wire Wire Line
13900 1000 14800 1000
$Comp
L marble_misc:+12V_FMC2 #PWR01
U 1 1 5BFC3656
P 2500 5350
F 0 "#PWR01" H 2500 5200 50 0001 C CNN
F 1 "+12V_FMC2" H 2515 5523 50 0000 C CNN
F 2 "" H 2500 5350 50 0001 C CNN
F 3 "" H 2500 5350 50 0001 C CNN
1 2500 5350
1 0 0 -1
$EndComp
$Comp
L power:+2V5 #PWR?
U 1 1 5C506817
P 7400 5800
AR Path="/5C16BF8E/5C506817" Ref="#PWR?" Part="1"
AR Path="/5C16BF8E/5DB9B7E6/5C506817" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5C506817" Ref="#PWR08" Part="1"
F 0 "#PWR08" H 7400 5650 50 0001 C CNN
F 1 "+2V5" H 7400 5950 50 0000 C CNN
F 2 "" H 7400 5800 50 0001 C CNN
F 3 "" H 7400 5800 50 0001 C CNN
1 7400 5800
1 0 0 -1
$EndComp
Wire Wire Line
3400 5750 3850 5750
Connection ~ 3400 5750
$Comp
L Resistors_SMD:R0402_10K_1%_0.0625W_100PPM R?
U 1 1 5EA24409
P 10650 1500
AR Path="/5BD31F9A/5EA24409" Ref="R?" Part="1"
AR Path="/5BD31F9F/5EA24409" Ref="R205" Part="1"
F 0 "R205" V 10754 1560 50 0000 L CNN
F 1 "R0402_10K_1%_0.0625W_100PPM" H 10650 1290 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 10650 480 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 10650 1110 60 0001 L CNN
F 4 "10k" V 10845 1560 50 0000 L CNN "Val"
F 5 "R0402_10K_1%_0.0625W_100PPM" H 10650 1020 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 10650 930 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 10650 840 60 0001 L CNN "Library Path"
F 8 "=Value" H 10650 750 60 0001 L CNN "Comment"
F 9 "Standard" H 10650 660 60 0001 L CNN "Component Kind"
F 10 "Standard" H 10650 570 60 0001 L CNN "Component Type"
F 11 " " H 10650 390 60 0001 L CNN "PackageDescription"
F 12 "2" H 10650 300 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 10650 210 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 10650 120 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 10650 -60 60 0001 L CNN "Status"
F 16 "0.0625W" H 10650 -150 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 10650 -240 60 0001 L CNN "TC"
F 18 " " H 10650 -330 60 0001 L CNN "Voltage"
F 19 "±1%" H 10650 -420 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 10650 -510 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 10650 -600 60 0001 L CNN "Manufacturer"
F 22 "R0402_10K_1%_0.0625W_100PPM" H 10650 -690 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 10650 -780 60 0001 L CNN "Case"
F 24 "No" H 10650 -870 60 0001 L CNN "PressFit"
F 25 "Yes" H 10650 -960 60 0001 L CNN "Mounted"
F 26 " " H 10650 -1050 60 0001 L CNN "Sense Comment"
F 27 "No" H 10650 -1140 60 0001 L CNN "Sense"
F 28 " " H 10650 -1230 60 0001 L CNN "Status Comment"
F 29 "No" H 10650 -1320 60 0001 L CNN "Socket"
F 30 "Yes" H 10650 -1410 60 0001 L CNN "SMD"
F 31 " " H 10650 -1500 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 10650 -1590 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671003L" H 10650 -1680 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 10650 -1770 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 10650 -1950 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 10650 -2040 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 10650 -2130 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 10650 -2220 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 10650 -2310 60 0001 L CNN "License"
1 10650 1500
0 1 1 0
$EndComp
Wire Wire Line
10650 2050 10650 1800
$Comp
L power:+3V3P #PWR?
U 1 1 5EA24411
P 10650 1500
AR Path="/5C16C03C/5EA24411" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5EA24411" Ref="#PWR?" Part="1"
AR Path="/5BD31F9F/5EA24411" Ref="#PWR0167" Part="1"
AR Path="/5C16BF8E/5EA24411" Ref="#PWR0167" Part="1"
AR Path="/5EA24411" Ref="#PWR0167" Part="1"
F 0 "#PWR0167" H 10650 1350 50 0001 C CNN
F 1 "+3V3P" H 10665 1673 50 0000 C CNN
F 2 "" H 10650 1500 50 0001 C CNN
F 3 "" H 10650 1500 50 0001 C CNN
1 10650 1500
1 0 0 -1
$EndComp
Wire Wire Line
10650 2050 11550 2050
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5C6E6EE8
P 7400 5800
AR Path="/5C16BF8E/5DB9B7E6/5C6E6EE8" Ref="C?" Part="1"
AR Path="/5BCEDA3D/5C6E6EE8" Ref="C?" Part="1"
AR Path="/5CC393D3/5C6E6EE8" Ref="C?" Part="1"
AR Path="/5BABAC65/5C6E6EE8" Ref="C?" Part="1"
AR Path="/5BD31F9F/5C6E6EE8" Ref="C11" Part="1"
F 0 "C11" V 7504 5910 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 7400 5540 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 7400 4730 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 7400 5360 60 0001 L CNN
F 4 "100nF" V 7595 5910 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 7400 5270 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 7400 5180 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 7400 5090 60 0001 L CNN "Library Path"
F 8 "=Value" H 7400 5000 60 0001 L CNN "Comment"
F 9 "Standard" H 7400 4910 60 0001 L CNN "Component Kind"
F 10 "Standard" H 7400 4820 60 0001 L CNN "Component Type"
F 11 "2" H 7400 4640 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 7400 4550 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 7400 4460 60 0001 L CNN "Footprint Ref"
F 14 " " H 7400 4370 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 7400 4190 60 0001 L CNN "Status"
F 16 " " H 7400 4100 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 7400 4010 60 0001 L CNN "Voltage"
F 18 "X5R" H 7400 3920 60 0001 L CNN "TC"
F 19 "±10%" H 7400 3830 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 7400 3740 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 7400 3650 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 7400 3560 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 7400 3470 60 0001 L CNN "Case"
F 24 "Yes" H 7400 3380 60 0001 L CNN "Mounted"
F 25 "No" H 7400 3290 60 0001 L CNN "Socket"
F 26 "Yes" H 7400 3200 60 0001 L CNN "SMD"
F 27 " " H 7400 3110 60 0001 L CNN "PressFit"
F 28 "No" H 7400 3020 60 0001 L CNN "Sense"
F 29 " " H 7400 2930 60 0001 L CNN "Sense Comment"
F 30 " " H 7400 2840 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 7400 2750 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 7400 2660 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 7400 2570 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 7400 2390 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 7400 2300 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 7400 2210 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 7400 2120 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 7400 2030 60 0001 L CNN "License"
1 7400 5800
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0805_22UF_25V_20%_X5R C6
U 1 1 5C7575B8
P 3000 5350
F 0 "C6" V 3104 5460 50 0000 L CNN
F 1 "CC0805_22UF_25V_20%_X5R" H 3000 5090 60 0001 L CNN
F 2 "Marble:CAPC2012X135N" H 3000 4280 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC1206_X7R_KEMET.pdf" H 3000 4910 60 0001 L CNN
F 4 "22uF" V 3195 5460 50 0000 L CNN "Val"
F 5 "CC0805_22UF_25V_20%_X5R" H 3000 4820 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 3000 4730 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 3000 4640 60 0001 L CNN "Library Path"
F 8 "=Value" H 3000 4550 60 0001 L CNN "Comment"
F 9 "Standard" H 3000 4460 60 0001 L CNN "Component Kind"
F 10 "Standard" H 3000 4370 60 0001 L CNN "Component Type"
F 11 "2" H 3000 4190 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 3000 4100 60 0001 L CNN "Footprint Path"
F 13 "CAPC2012X135N" H 3000 4010 60 0001 L CNN "Footprint Ref"
F 14 " " H 3000 3920 60 0001 L CNN "PackageDescription"
F 15 "Preferred" H 3000 3740 60 0001 L CNN "Status"
F 16 " " H 3000 3650 60 0001 L CNN "Status Comment"
F 17 "25V" H 3000 3560 60 0001 L CNN "Voltage"
F 18 "X5R" H 3000 3470 60 0001 L CNN "TC"
F 19 "±20%" H 3000 3380 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 3000 3290 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 3000 3200 60 0001 L CNN "Manufacturer"
F 22 "CC0805_22UF_25V_20%_X5R" H 3000 3110 60 0001 L CNN "Manufacturer Part Number"
F 23 "0805" H 3000 3020 60 0001 L CNN "Case"
F 24 "Yes" H 3000 2930 60 0001 L CNN "Mounted"
F 25 "No" H 3000 2840 60 0001 L CNN "Socket"
F 26 "Yes" H 3000 2750 60 0001 L CNN "SMD"
F 27 " " H 3000 2660 60 0001 L CNN "PressFit"
F 28 "No" H 3000 2570 60 0001 L CNN "Sense"
F 29 " " H 3000 2480 60 0001 L CNN "Sense Comment"
F 30 " " H 3000 2390 60 0001 L CNN "ComponentHeight"
F 31 "Yageo" H 3000 2300 60 0001 L CNN "Manufacturer1 Example"
F 32 "CC0805MKX5R8BB226" H 3000 2210 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "1.35mm" H 3000 2120 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 3000 1940 60 0001 L CNN "Author"
F 35 "10/25/12 00:00:00" H 3000 1850 60 0001 L CNN "CreateDate"
F 36 "05/24/20 00:00:00" H 3000 1760 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 3000 1670 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 3000 1580 60 0001 L CNN "License"
1 3000 5350
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5C76EED7
P 4700 6000
AR Path="/5C16BF8E/5DB9B7E6/5C76EED7" Ref="C?" Part="1"
AR Path="/5BCEDA3D/5C76EED7" Ref="C?" Part="1"
AR Path="/5CC393D3/5C76EED7" Ref="C?" Part="1"
AR Path="/5BABAC65/5C76EED7" Ref="C?" Part="1"
AR Path="/5BD31F9F/5C76EED7" Ref="C7" Part="1"
F 0 "C7" V 4804 6110 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 4700 5740 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 4700 4930 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 4700 5560 60 0001 L CNN
F 4 "100nF" V 4895 6110 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 4700 5470 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 4700 5380 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 4700 5290 60 0001 L CNN "Library Path"
F 8 "=Value" H 4700 5200 60 0001 L CNN "Comment"
F 9 "Standard" H 4700 5110 60 0001 L CNN "Component Kind"
F 10 "Standard" H 4700 5020 60 0001 L CNN "Component Type"
F 11 "2" H 4700 4840 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 4700 4750 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 4700 4660 60 0001 L CNN "Footprint Ref"
F 14 " " H 4700 4570 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 4700 4390 60 0001 L CNN "Status"
F 16 " " H 4700 4300 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 4700 4210 60 0001 L CNN "Voltage"
F 18 "X5R" H 4700 4120 60 0001 L CNN "TC"
F 19 "±10%" H 4700 4030 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 4700 3940 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 4700 3850 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 4700 3760 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 4700 3670 60 0001 L CNN "Case"
F 24 "Yes" H 4700 3580 60 0001 L CNN "Mounted"
F 25 "No" H 4700 3490 60 0001 L CNN "Socket"
F 26 "Yes" H 4700 3400 60 0001 L CNN "SMD"
F 27 " " H 4700 3310 60 0001 L CNN "PressFit"
F 28 "No" H 4700 3220 60 0001 L CNN "Sense"
F 29 " " H 4700 3130 60 0001 L CNN "Sense Comment"
F 30 " " H 4700 3040 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 4700 2950 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 4700 2860 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 4700 2770 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 4700 2590 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 4700 2500 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 4700 2410 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 4700 2320 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 4700 2230 60 0001 L CNN "License"
1 4700 6000
0 1 1 0
$EndComp
Wire Wire Line
3400 6000 4700 6000
Connection ~ 4700 6000
$Comp
L Capacitors_SMD:CC0603_10UF_6.3V_20%_X5R C?
U 1 1 5C84E991
P 8300 6100
AR Path="/5CC393D3/5C84E991" Ref="C?" Part="1"
AR Path="/5BABAC65/5C84E991" Ref="C?" Part="1"
AR Path="/5BD31F9F/5C84E991" Ref="C13" Part="1"
F 0 "C13" V 8496 5990 50 0000 R CNN
F 1 "CC0603_10UF_6.3V_20%_X5R" H 8300 5840 60 0001 L CNN
F 2 "Marble:CAPC1608X87N" H 8300 5030 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0603_X5R_KEMET.pdf" H 8300 5660 60 0001 L CNN
F 4 "10uF" V 8405 5990 50 0000 R CNN "Val"
F 5 "CC0603_10UF_6.3V_20%_X5R" H 8300 5570 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 8300 5480 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 8300 5390 60 0001 L CNN "Library Path"
F 8 "=Value" H 8300 5300 60 0001 L CNN "Comment"
F 9 "Standard" H 8300 5210 60 0001 L CNN "Component Kind"
F 10 "Standard" H 8300 5120 60 0001 L CNN "Component Type"
F 11 "2" H 8300 4940 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 8300 4850 60 0001 L CNN "Footprint Path"
F 13 "CAPC1608X87N" H 8300 4760 60 0001 L CNN "Footprint Ref"
F 14 " " H 8300 4670 60 0001 L CNN "PackageDescription"
F 15 "Preferred" H 8300 4490 60 0001 L CNN "Status"
F 16 " " H 8300 4400 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 8300 4310 60 0001 L CNN "Voltage"
F 18 "X5R" H 8300 4220 60 0001 L CNN "TC"
F 19 "±20%" H 8300 4130 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 8300 4040 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 8300 3950 60 0001 L CNN "Manufacturer"
F 22 "CC0603_10uF_6.3V_20%_X5R" H 8300 3860 60 0001 L CNN "Manufacturer Part Number"
F 23 "0603" H 8300 3770 60 0001 L CNN "Case"
F 24 "Yes" H 8300 3680 60 0001 L CNN "Mounted"
F 25 "No" H 8300 3590 60 0001 L CNN "Socket"
F 26 "Yes" H 8300 3500 60 0001 L CNN "SMD"
F 27 " " H 8300 3410 60 0001 L CNN "PressFit"
F 28 "No" H 8300 3320 60 0001 L CNN "Sense"
F 29 " " H 8300 3230 60 0001 L CNN "Sense Comment"
F 30 " " H 8300 3140 60 0001 L CNN "ComponentHeight"
F 31 "KEMET" H 8300 3050 60 0001 L CNN "Manufacturer1 Example"
F 32 "C0603C106M9PAC" H 8300 2960 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.95mm" H 8300 2870 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 8300 2690 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 8300 2600 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 8300 2510 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 8300 2420 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 8300 2330 60 0001 L CNN "License"
1 8300 6100
0 -1 -1 0
$EndComp
Connection ~ 7400 5800
Connection ~ 8300 5800
Wire Wire Line
8300 5800 8600 5800
Connection ~ 8300 6100
Wire Wire Line
8300 6100 8750 6100
Wire Wire Line
2500 5350 3000 5350
Connection ~ 3000 5350
Wire Wire Line
3000 5350 3550 5350
$Comp
L Capacitors_SMD:CC0402_100NF_25V_10%_X5R C?
U 1 1 5C8FFE06
P 2500 5350
AR Path="/5C16BF8E/5DB9B7E6/5C8FFE06" Ref="C?" Part="1"
AR Path="/5BD31F9F/5C8FFE06" Ref="C5" Part="1"
F 0 "C5" V 2550 5350 50 0000 L CNN
F 1 "CC0402_100NF_25V_10%_X5R" H 2500 5090 60 0001 L CNN
F 2 "Marble:CAPC1005X55N" H 2500 4280 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0402_X5R_MURATA_GRM.pdf" H 2500 4910 60 0001 L CNN
F 4 "100nF" V 2750 5350 50 0000 L CNN "Val"
F 5 "CC0402_100NF_25V_10%_X5R" H 2500 4820 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 2500 4730 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 2500 4640 60 0001 L CNN "Library Path"
F 8 "=Value" H 2500 4550 60 0001 L CNN "Comment"
F 9 "Standard" H 2500 4460 60 0001 L CNN "Component Kind"
F 10 "Standard" H 2500 4370 60 0001 L CNN "Component Type"
F 11 "2" H 2500 4190 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 2500 4100 60 0001 L CNN "Footprint Path"
F 13 "CAPC1005X55N" H 2500 4010 60 0001 L CNN "Footprint Ref"
F 14 " " H 2500 3920 60 0001 L CNN "PackageDescription"
F 15 "None" H 2500 3740 60 0001 L CNN "Status"
F 16 " " H 2500 3650 60 0001 L CNN "Status Comment"
F 17 "25V" H 2500 3560 60 0001 L CNN "Voltage"
F 18 "X5R" H 2500 3470 60 0001 L CNN "TC"
F 19 "±10%" H 2500 3380 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 2500 3290 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 2500 3200 60 0001 L CNN "Manufacturer"
F 22 "CC0402_100NF_25V_10%_X5R" H 2500 3110 60 0001 L CNN "Manufacturer Part Number"