-
Notifications
You must be signed in to change notification settings - Fork 6
/
FMC_1.sch
1976 lines (1976 loc) · 74.6 KB
/
FMC_1.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 22 25
Title "Marble-Mini"
Date "2020-09-25"
Rev "v1.1"
Comp "Michał Gąska / WUT"
Comment1 ""
Comment2 ""
Comment3 "FMC 1 connector"
Comment4 ""
$EndDescr
Wire Wire Line
3550 1650 3400 1650
Wire Wire Line
3400 1650 3400 1950
Wire Wire Line
3400 5550 3550 5550
Wire Wire Line
3550 5350 3400 5350
Connection ~ 3400 5350
Wire Wire Line
3400 5350 3400 5550
Wire Wire Line
3550 5150 3400 5150
Connection ~ 3400 5150
Wire Wire Line
3400 5150 3400 5350
Wire Wire Line
3550 4750 3400 4750
Connection ~ 3400 4750
Wire Wire Line
3550 4850 3400 4850
Wire Wire Line
3400 4750 3400 4850
Connection ~ 3400 4850
Wire Wire Line
3400 4850 3400 5150
Wire Wire Line
3550 1950 3400 1950
Connection ~ 3400 1950
Wire Wire Line
3400 1950 3400 2050
Wire Wire Line
3550 2050 3400 2050
Connection ~ 3400 2050
Wire Wire Line
3400 2050 3400 2350
Wire Wire Line
3550 2350 3400 2350
Connection ~ 3400 2350
Wire Wire Line
3400 2350 3400 2450
Wire Wire Line
3550 2450 3400 2450
Connection ~ 3400 2450
Wire Wire Line
3400 2450 3400 2750
Wire Wire Line
3550 2750 3400 2750
Connection ~ 3400 2750
Wire Wire Line
3400 2750 3400 2850
Wire Wire Line
3550 2850 3400 2850
Connection ~ 3400 2850
Wire Wire Line
3400 2850 3400 3150
Wire Wire Line
3550 3150 3400 3150
Connection ~ 3400 3150
Wire Wire Line
3400 3150 3400 3250
Wire Wire Line
3550 3250 3400 3250
Connection ~ 3400 3250
Wire Wire Line
3400 3250 3400 3550
Wire Wire Line
3550 3550 3400 3550
Connection ~ 3400 3550
Wire Wire Line
3550 3650 3400 3650
Wire Wire Line
3400 3550 3400 3650
Connection ~ 3400 3650
Wire Wire Line
3400 3650 3400 3950
Wire Wire Line
3550 3950 3400 3950
Connection ~ 3400 3950
Wire Wire Line
3400 3950 3400 4050
Wire Wire Line
3550 4050 3400 4050
Connection ~ 3400 4050
Wire Wire Line
3400 4050 3400 4350
Wire Wire Line
3550 4350 3400 4350
Connection ~ 3400 4350
Wire Wire Line
3400 4350 3400 4450
Wire Wire Line
3550 4450 3400 4450
Connection ~ 3400 4450
Wire Wire Line
3400 4450 3400 4750
Wire Wire Line
5850 1750 5700 1750
Wire Wire Line
5700 1750 5700 1850
Wire Wire Line
5850 5450 5700 5450
Connection ~ 5700 5450
Wire Wire Line
5850 5250 5700 5250
Connection ~ 5700 5250
Wire Wire Line
5700 5250 5700 5450
Wire Wire Line
5850 4350 5700 4350
Connection ~ 5700 4350
Wire Wire Line
5700 4350 5700 5250
Wire Wire Line
5850 4050 5700 4050
Connection ~ 5700 4050
Wire Wire Line
5700 4050 5700 4350
Wire Wire Line
5850 1850 5700 1850
Connection ~ 5700 1850
Wire Wire Line
5700 1850 5700 2150
Wire Wire Line
5850 2150 5700 2150
Connection ~ 5700 2150
Wire Wire Line
5700 2150 5700 2250
Wire Wire Line
5850 2250 5700 2250
Connection ~ 5700 2250
Wire Wire Line
5700 2250 5700 2550
Wire Wire Line
5850 3750 5700 3750
Connection ~ 5700 3750
Wire Wire Line
5700 3750 5700 4050
Wire Wire Line
5850 3450 5700 3450
Connection ~ 5700 3450
Wire Wire Line
5700 3450 5700 3750
Wire Wire Line
5850 3150 5700 3150
Connection ~ 5700 3150
Wire Wire Line
5700 3150 5700 3450
Wire Wire Line
5850 2850 5700 2850
Connection ~ 5700 2850
Wire Wire Line
5700 2850 5700 3150
Wire Wire Line
5850 2550 5700 2550
Connection ~ 5700 2550
Wire Wire Line
5700 2550 5700 2850
Wire Wire Line
8600 1650 8450 1650
Wire Wire Line
8450 1650 8450 1950
Wire Wire Line
8450 5550 8600 5550
Wire Wire Line
8600 5350 8450 5350
Connection ~ 8450 5350
Wire Wire Line
8450 5350 8450 5550
Wire Wire Line
8600 1950 8450 1950
Connection ~ 8450 1950
Wire Wire Line
8450 1950 8450 2050
Wire Wire Line
8600 2050 8450 2050
Connection ~ 8450 2050
Wire Wire Line
8450 2050 8450 2350
Wire Wire Line
8600 2350 8450 2350
Connection ~ 8450 2350
Wire Wire Line
8450 2350 8450 2650
Wire Wire Line
8600 2650 8450 2650
Connection ~ 8450 2650
Wire Wire Line
8450 2650 8450 2950
Wire Wire Line
8600 2950 8450 2950
Connection ~ 8450 2950
Wire Wire Line
8450 2950 8450 3250
Wire Wire Line
8600 3250 8450 3250
Connection ~ 8450 3250
Wire Wire Line
8450 3250 8450 3550
Wire Wire Line
8600 3550 8450 3550
Connection ~ 8450 3550
Wire Wire Line
8450 3550 8450 3850
Wire Wire Line
8600 3850 8450 3850
Connection ~ 8450 3850
Wire Wire Line
8450 3850 8450 4150
Wire Wire Line
8600 4150 8450 4150
Connection ~ 8450 4150
Wire Wire Line
8450 4150 8450 4450
Wire Wire Line
8600 4450 8450 4450
Connection ~ 8450 4450
Wire Wire Line
8450 4450 8450 4750
Wire Wire Line
8600 4750 8450 4750
Connection ~ 8450 4750
Wire Wire Line
8450 4750 8450 5050
Wire Wire Line
8600 5050 8450 5050
Connection ~ 8450 5050
Wire Wire Line
8450 5050 8450 5350
Wire Wire Line
11250 1850 11100 1850
Wire Wire Line
11100 1850 11100 2150
Wire Wire Line
11250 5450 11100 5450
Connection ~ 11100 5450
Wire Wire Line
11250 2150 11100 2150
Connection ~ 11100 2150
Wire Wire Line
11100 2150 11100 2450
Wire Wire Line
11250 2450 11100 2450
Connection ~ 11100 2450
Wire Wire Line
11100 2450 11100 2750
Wire Wire Line
11250 2750 11100 2750
Connection ~ 11100 2750
Wire Wire Line
11100 2750 11100 3050
Wire Wire Line
11250 3050 11100 3050
Connection ~ 11100 3050
Wire Wire Line
11100 3050 11100 3350
Wire Wire Line
11250 3350 11100 3350
Connection ~ 11100 3350
Wire Wire Line
11100 3350 11100 3650
Wire Wire Line
11250 3650 11100 3650
Connection ~ 11100 3650
Wire Wire Line
11100 3650 11100 3950
Wire Wire Line
11250 3950 11100 3950
Connection ~ 11100 3950
Wire Wire Line
11100 3950 11100 4250
Wire Wire Line
11250 4250 11100 4250
Connection ~ 11100 4250
Wire Wire Line
11100 4250 11100 4550
Wire Wire Line
11250 4550 11100 4550
Connection ~ 11100 4550
Wire Wire Line
11100 4550 11100 4850
Wire Wire Line
11250 4850 11100 4850
Connection ~ 11100 4850
Wire Wire Line
11100 4850 11100 5150
Wire Wire Line
11100 5150 11250 5150
Connection ~ 11100 5150
Wire Wire Line
11100 5150 11100 5450
Text Label 2850 4550 0 50 ~ 10
I2C_FMC1_SCL
Text Label 2850 4650 0 50 ~ 10
I2C_FMC1_SDA
Wire Wire Line
3550 5050 3250 5050
Wire Wire Line
5850 5150 5450 5150
Wire Wire Line
5450 5150 5450 5350
Wire Wire Line
5450 5550 5850 5550
Wire Wire Line
5850 5350 5450 5350
Connection ~ 5450 5350
Wire Wire Line
5450 5350 5450 5550
Wire Wire Line
5450 5550 5450 5700
Connection ~ 5450 5550
Wire Wire Line
2850 4550 3550 4550
Wire Wire Line
2850 4650 3550 4650
Text Notes 2400 3850 0 50 ~ 10
LA18_CC_P\nLA18_CC_N
Text Notes 4650 2450 0 50 ~ 10
LA1_CC_P\nLA1_CC_N
Text Label 5150 1650 0 50 ~ 10
FMC1_PG_C2M
Text Label 4800 1950 0 50 ~ 10
FMC1_GBTCLK0_M2C_P
Text Label 4800 2050 0 50 ~ 10
FMC1_GBTCLK0_M2C_N
Text Label 5150 4450 0 50 ~ 10
FMC1_TCK
Text Label 5150 4550 0 50 ~ 10
FMC1_TDI
Text Label 5150 4650 0 50 ~ 10
FMC1_TDO
Text Label 5100 4750 0 50 ~ 10
FMC1_3P3VAUX
Text Label 5150 4850 0 50 ~ 10
FMC1_TMS
Wire Wire Line
5150 1650 5850 1650
Wire Wire Line
4800 1950 5850 1950
Wire Wire Line
4800 2050 5850 2050
Wire Wire Line
5150 4450 5850 4450
Wire Wire Line
5150 4550 5850 4550
Wire Wire Line
5150 4650 5850 4650
Wire Wire Line
5100 4750 5850 4750
Wire Wire Line
5150 4850 5850 4850
Text Notes 4650 3650 0 50 ~ 10
LA17_CC_P\nLA17_CC_N
Text Label 7700 1750 0 50 ~ 10
FMC1_CLK1_M2C_P
Text Label 7700 1850 0 50 ~ 10
FMC1_CLK1_M2C_N
Text Label 10450 1750 0 50 ~ 10
FMC1_PRSNT_M2C_L
Text Label 10350 1950 0 50 ~ 10
FMC1_CLK0_M2C_P
Text Label 10350 2050 0 50 ~ 10
FMC1_CLK0_M2C_N
Wire Wire Line
8300 5450 8600 5450
Wire Wire Line
7700 1750 8600 1750
Wire Wire Line
7700 1850 8600 1850
Wire Wire Line
10350 1950 11250 1950
Wire Wire Line
10350 2050 11250 2050
Wire Wire Line
9350 5550 11250 5550
Wire Wire Line
2350 4150 3550 4150
Wire Wire Line
2350 3350 3550 3350
Wire Wire Line
2350 2950 3550 2950
Wire Wire Line
2350 2550 3550 2550
Wire Wire Line
4650 3850 5850 3850
Wire Wire Line
4650 3250 5850 3250
Wire Wire Line
4650 2950 5850 2950
Wire Wire Line
4650 2650 5850 2650
Wire Wire Line
4650 3550 5850 3550
Wire Wire Line
4650 4150 5850 4150
Wire Wire Line
2350 3750 3550 3750
Wire Wire Line
4650 2350 5850 2350
Wire Wire Line
7550 2150 8600 2150
Wire Wire Line
7550 2450 8600 2450
Wire Wire Line
7550 2750 8600 2750
Wire Wire Line
7550 3050 8600 3050
Wire Wire Line
7550 3350 8600 3350
Wire Wire Line
7550 3650 8600 3650
Wire Wire Line
7550 3950 8600 3950
Wire Wire Line
7550 4250 8600 4250
Wire Wire Line
7550 4550 8600 4550
Wire Wire Line
7550 4850 8600 4850
Wire Wire Line
7550 5150 8600 5150
Wire Wire Line
10200 2250 11250 2250
Wire Wire Line
10200 2550 11250 2550
Wire Wire Line
10200 2850 11250 2850
Wire Wire Line
10200 3150 11250 3150
Wire Wire Line
10200 3450 11250 3450
Wire Wire Line
10200 3750 11250 3750
Wire Wire Line
10200 4050 11250 4050
Wire Wire Line
10200 4350 11250 4350
Wire Wire Line
10200 4650 11250 4650
Wire Wire Line
10200 4950 11250 4950
Wire Wire Line
10200 5250 11250 5250
Text Label 13650 1700 0 50 ~ 10
FMC1_TCK
Text Label 13650 1800 0 50 ~ 10
FMC1_TDI
Text Label 13650 1900 0 50 ~ 10
FMC1_TDO
Text Label 13650 1250 0 50 ~ 10
I2C_FMC1_SCL
Text Label 13650 1350 0 50 ~ 10
I2C_FMC1_SDA
Text Label 13600 3200 0 50 ~ 10
FMC1_GBTCLK0_M2C_P
Text Label 13600 3300 0 50 ~ 10
FMC1_GBTCLK0_M2C_N
Text Label 13650 2000 0 50 ~ 10
FMC1_TMS
Text Label 13650 2100 0 50 ~ 10
FMC1_TRST
Text Label 13600 3450 0 50 ~ 10
FMC1_CLK1_M2C_P
Text Label 13600 3550 0 50 ~ 10
FMC1_CLK1_M2C_N
Wire Wire Line
13600 3450 14500 3450
Wire Wire Line
13600 3550 14500 3550
Text Label 13600 3700 0 50 ~ 10
FMC1_CLK0_M2C_P
Text Label 13600 3800 0 50 ~ 10
FMC1_CLK0_M2C_N
Wire Wire Line
13600 3700 14500 3700
Wire Wire Line
13600 3800 14500 3800
Text HLabel 14500 3200 2 50 Output ~ 10
FMC1_GBTCLK0_M2C_P
Text HLabel 14500 3300 2 50 Output ~ 10
FMC1_GBTCLK0_M2C_N
Text HLabel 14500 3450 2 50 Output ~ 10
FMC1_CLK1_M2C_P
Text HLabel 14500 3550 2 50 Output ~ 10
FMC1_CLK1_M2C_N
Text HLabel 14500 3700 2 50 Output ~ 10
FMC1_CLK0_M2C_P
Text HLabel 14500 3800 2 50 Output ~ 10
FMC1_CLK0_M2C_N
Wire Wire Line
13600 3200 14500 3200
Wire Wire Line
13600 3300 14500 3300
Text HLabel 14500 900 2 50 Output ~ 10
FMC1_PRSNT_M2C_L
Text HLabel 14500 1250 2 50 Input ~ 10
I2C_FMC1_SCL
Text HLabel 14500 1350 2 50 BiDi ~ 10
I2C_FMC1_SDA
Text HLabel 14500 1700 2 50 Input ~ 10
FMC1_TCK
Text HLabel 14500 1800 2 50 Input ~ 10
FMC1_TDI
Text HLabel 14500 1900 2 50 Output ~ 10
FMC1_TDO
Text HLabel 14500 2000 2 50 Input ~ 10
FMC1_TMS
Text HLabel 14500 2100 2 50 Input ~ 10
FMC1_TRST
Wire Wire Line
13600 900 14500 900
Wire Wire Line
13650 1250 14500 1250
Wire Wire Line
13650 1350 14500 1350
Wire Wire Line
13650 1700 14500 1700
Wire Wire Line
13650 1800 14500 1800
Wire Wire Line
13650 1900 14500 1900
Wire Wire Line
13650 2000 14500 2000
Wire Wire Line
13650 2100 14500 2100
Text Label 13600 700 0 50 ~ 10
FMC1_PG_C2M
$Comp
L power:GND #PWR?
U 1 1 5BF0356B
P 3400 5800
AR Path="/5BD32060/5BF0356B" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5BF0356B" Ref="#PWR090" Part="1"
F 0 "#PWR090" H 3400 5550 50 0001 C CNN
F 1 "GND" H 3405 5627 50 0000 C CNN
F 2 "" H 3400 5800 50 0001 C CNN
F 3 "" H 3400 5800 50 0001 C CNN
1 3400 5800
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5BF16660
P 5700 5800
AR Path="/5BD32060/5BF16660" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5BF16660" Ref="#PWR092" Part="1"
F 0 "#PWR092" H 5700 5550 50 0001 C CNN
F 1 "GND" H 5705 5627 50 0000 C CNN
F 2 "" H 5700 5800 50 0001 C CNN
F 3 "" H 5700 5800 50 0001 C CNN
1 5700 5800
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5BF29775
P 8450 5800
AR Path="/5BD32060/5BF29775" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5BF29775" Ref="#PWR095" Part="1"
F 0 "#PWR095" H 8450 5550 50 0001 C CNN
F 1 "GND" H 8455 5627 50 0000 C CNN
F 2 "" H 8450 5800 50 0001 C CNN
F 3 "" H 8450 5800 50 0001 C CNN
1 8450 5800
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5BF74C3A
P 11100 5800
AR Path="/5BD32060/5BF74C3A" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5BF74C3A" Ref="#PWR096" Part="1"
F 0 "#PWR096" H 11100 5550 50 0001 C CNN
F 1 "GND" H 11105 5627 50 0000 C CNN
F 2 "" H 11100 5800 50 0001 C CNN
F 3 "" H 11100 5800 50 0001 C CNN
1 11100 5800
1 0 0 -1
$EndComp
Wire Wire Line
11100 5450 11100 5800
Wire Wire Line
8450 5550 8450 5800
Connection ~ 8450 5550
Wire Wire Line
8300 5450 8300 5500
Wire Wire Line
8300 5700 9350 5700
Wire Wire Line
9350 5700 9350 5550
Wire Wire Line
5700 5450 5700 5800
Wire Wire Line
3400 5550 3400 5800
Connection ~ 3400 5550
$Comp
L power:+3V3 #PWR089
U 1 1 5BFEE1AE
P 3100 5450
F 0 "#PWR089" H 3100 5300 50 0001 C CNN
F 1 "+3V3" H 3115 5623 50 0000 C CNN
F 2 "" H 3100 5450 50 0001 C CNN
F 3 "" H 3100 5450 50 0001 C CNN
1 3100 5450
1 0 0 -1
$EndComp
Connection ~ 8300 5500
Wire Wire Line
8300 5500 8300 5700
Connection ~ 8450 5800
$Comp
L power:GND #PWR?
U 1 1 5C0F84D7
P 4850 6000
AR Path="/5BD32060/5C0F84D7" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C0F84D7" Ref="#PWR091" Part="1"
F 0 "#PWR091" H 4850 5750 50 0001 C CNN
F 1 "GND" H 4855 5827 50 0000 C CNN
F 2 "" H 4850 6000 50 0001 C CNN
F 3 "" H 4850 6000 50 0001 C CNN
1 4850 6000
1 0 0 -1
$EndComp
Wire Wire Line
4400 6000 4850 6000
Wire Wire Line
3550 5250 3250 5250
Wire Wire Line
3250 5250 3250 5050
Connection ~ 3250 5050
$Comp
L power:GND #PWR?
U 1 1 5C2296F3
P 2200 5350
AR Path="/5BD32060/5C2296F3" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C2296F3" Ref="#PWR088" Part="1"
F 0 "#PWR088" H 2200 5100 50 0001 C CNN
F 1 "GND" H 2205 5177 50 0000 C CNN
F 2 "" H 2200 5350 50 0001 C CNN
F 3 "" H 2200 5350 50 0001 C CNN
1 2200 5350
1 0 0 -1
$EndComp
Wire Wire Line
2200 5350 2700 5350
Wire Wire Line
3100 5450 3100 5700
$Comp
L power:GND #PWR?
U 1 1 5C299745
P 6100 6900
AR Path="/5BD32060/5C299745" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C299745" Ref="#PWR093" Part="1"
F 0 "#PWR093" H 6100 6650 50 0001 C CNN
F 1 "GND" H 6105 6727 50 0000 C CNN
F 2 "" H 6100 6900 50 0001 C CNN
F 3 "" H 6100 6900 50 0001 C CNN
1 6100 6900
1 0 0 -1
$EndComp
Wire Wire Line
5650 6900 6100 6900
Text Label 5650 6600 0 50 ~ 10
FMC1_3P3VAUX
Text HLabel 14500 700 2 50 Output ~ 10
FMC1_PG_C2M
Wire Wire Line
13600 700 14500 700
$Comp
L marble_misc:+12V_FMC1 #PWR087
U 1 1 5BF95847
P 2200 5050
F 0 "#PWR087" H 2200 4900 50 0001 C CNN
F 1 "+12V_FMC1" H 2215 5223 50 0000 C CNN
F 2 "" H 2200 5050 50 0001 C CNN
F 3 "" H 2200 5050 50 0001 C CNN
1 2200 5050
1 0 0 -1
$EndComp
$Comp
L power:+3V3P #PWR?
U 1 1 5DD348B7
P 8300 6600
AR Path="/5C16C03C/5DD348B7" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5DD348B7" Ref="#PWR?" Part="1"
AR Path="/5C16BF8E/5DD348B7" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5DD348B7" Ref="#PWR0550" Part="1"
AR Path="/5DD348B7" Ref="#PWR0550" Part="1"
F 0 "#PWR0550" H 8300 6450 50 0001 C CNN
F 1 "+3V3P" V 8300 6850 50 0000 C CNN
F 2 "" H 8300 6600 50 0001 C CNN
F 3 "" H 8300 6600 50 0001 C CNN
1 8300 6600
0 1 1 0
$EndComp
Wire Wire Line
8150 6600 8300 6600
$Comp
L power:+2V5 #PWR?
U 1 1 5C447357
P 7100 5500
AR Path="/5C16BF8E/5C447357" Ref="#PWR?" Part="1"
AR Path="/5C16BF8E/5DB9B7E6/5C447357" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5C447357" Ref="#PWR059" Part="1"
F 0 "#PWR059" H 7100 5350 50 0001 C CNN
F 1 "+2V5" H 7100 5650 50 0000 C CNN
F 2 "" H 7100 5500 50 0001 C CNN
F 3 "" H 7100 5500 50 0001 C CNN
1 7100 5500
1 0 0 -1
$EndComp
Text Label 13600 900 0 50 ~ 10
FMC1_PRSNT_M2C_L
Wire Wire Line
3100 5450 3550 5450
Connection ~ 3100 5450
$Comp
L Resistors_SMD:R0402_10K_1%_0.0625W_100PPM R234
U 1 1 5E9E074C
P 10350 1200
F 0 "R234" V 10454 1260 50 0000 L CNN
F 1 "R0402_10K_1%_0.0625W_100PPM" H 10350 990 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 10350 180 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 10350 810 60 0001 L CNN
F 4 "10k" V 10545 1260 50 0000 L CNN "Val"
F 5 "R0402_10K_1%_0.0625W_100PPM" H 10350 720 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 10350 630 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 10350 540 60 0001 L CNN "Library Path"
F 8 "=Value" H 10350 450 60 0001 L CNN "Comment"
F 9 "Standard" H 10350 360 60 0001 L CNN "Component Kind"
F 10 "Standard" H 10350 270 60 0001 L CNN "Component Type"
F 11 " " H 10350 90 60 0001 L CNN "PackageDescription"
F 12 "2" H 10350 0 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 10350 -90 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 10350 -180 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 10350 -360 60 0001 L CNN "Status"
F 16 "0.0625W" H 10350 -450 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 10350 -540 60 0001 L CNN "TC"
F 18 " " H 10350 -630 60 0001 L CNN "Voltage"
F 19 "±1%" H 10350 -720 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 10350 -810 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 10350 -900 60 0001 L CNN "Manufacturer"
F 22 "R0402_10K_1%_0.0625W_100PPM" H 10350 -990 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 10350 -1080 60 0001 L CNN "Case"
F 24 "No" H 10350 -1170 60 0001 L CNN "PressFit"
F 25 "Yes" H 10350 -1260 60 0001 L CNN "Mounted"
F 26 " " H 10350 -1350 60 0001 L CNN "Sense Comment"
F 27 "No" H 10350 -1440 60 0001 L CNN "Sense"
F 28 " " H 10350 -1530 60 0001 L CNN "Status Comment"
F 29 "No" H 10350 -1620 60 0001 L CNN "Socket"
F 30 "Yes" H 10350 -1710 60 0001 L CNN "SMD"
F 31 " " H 10350 -1800 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 10350 -1890 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671003L" H 10350 -1980 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 10350 -2070 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 10350 -2250 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 10350 -2340 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 10350 -2430 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 10350 -2520 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 10350 -2610 60 0001 L CNN "License"
1 10350 1200
0 1 1 0
$EndComp
Wire Wire Line
10350 1750 10350 1500
Wire Wire Line
10350 1750 11250 1750
$Comp
L power:+3V3P #PWR?
U 1 1 5E9F763B
P 10350 1200
AR Path="/5C16C03C/5E9F763B" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5E9F763B" Ref="#PWR?" Part="1"
AR Path="/5BD31F9A/5E9F763B" Ref="#PWR0503" Part="1"
AR Path="/5C16BF8E/5E9F763B" Ref="#PWR0503" Part="1"
AR Path="/5E9F763B" Ref="#PWR0503" Part="1"
F 0 "#PWR0503" H 10350 1050 50 0001 C CNN
F 1 "+3V3P" H 10365 1373 50 0000 C CNN
F 2 "" H 10350 1200 50 0001 C CNN
F 3 "" H 10350 1200 50 0001 C CNN
1 10350 1200
1 0 0 -1
$EndComp
$Comp
L Capacitors_SMD:CC0603_10UF_6.3V_20%_X5R C?
U 1 1 5C959A0B
P 7600 5800
AR Path="/5CC393D3/5C959A0B" Ref="C?" Part="1"
AR Path="/5BABAC65/5C959A0B" Ref="C?" Part="1"
AR Path="/5BD31F9F/5C959A0B" Ref="C?" Part="1"
AR Path="/5BD31F9A/5C959A0B" Ref="C68" Part="1"
F 0 "C68" V 7796 5690 50 0000 R CNN
F 1 "CC0603_10UF_6.3V_20%_X5R" H 7600 5540 60 0001 L CNN
F 2 "Marble:CAPC1608X87N" H 7600 4730 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0603_X5R_KEMET.pdf" H 7600 5360 60 0001 L CNN
F 4 "10uF" V 7705 5690 50 0000 R CNN "Val"
F 5 "CC0603_10UF_6.3V_20%_X5R" H 7600 5270 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 7600 5180 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 7600 5090 60 0001 L CNN "Library Path"
F 8 "=Value" H 7600 5000 60 0001 L CNN "Comment"
F 9 "Standard" H 7600 4910 60 0001 L CNN "Component Kind"
F 10 "Standard" H 7600 4820 60 0001 L CNN "Component Type"
F 11 "2" H 7600 4640 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 7600 4550 60 0001 L CNN "Footprint Path"
F 13 "CAPC1608X87N" H 7600 4460 60 0001 L CNN "Footprint Ref"
F 14 " " H 7600 4370 60 0001 L CNN "PackageDescription"
F 15 "Preferred" H 7600 4190 60 0001 L CNN "Status"
F 16 " " H 7600 4100 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 7600 4010 60 0001 L CNN "Voltage"
F 18 "X5R" H 7600 3920 60 0001 L CNN "TC"
F 19 "±20%" H 7600 3830 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 7600 3740 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 7600 3650 60 0001 L CNN "Manufacturer"
F 22 "CC0603_10uF_6.3V_20%_X5R" H 7600 3560 60 0001 L CNN "Manufacturer Part Number"
F 23 "0603" H 7600 3470 60 0001 L CNN "Case"
F 24 "Yes" H 7600 3380 60 0001 L CNN "Mounted"
F 25 "No" H 7600 3290 60 0001 L CNN "Socket"
F 26 "Yes" H 7600 3200 60 0001 L CNN "SMD"
F 27 " " H 7600 3110 60 0001 L CNN "PressFit"
F 28 "No" H 7600 3020 60 0001 L CNN "Sense"
F 29 " " H 7600 2930 60 0001 L CNN "Sense Comment"
F 30 " " H 7600 2840 60 0001 L CNN "ComponentHeight"
F 31 "KEMET" H 7600 2750 60 0001 L CNN "Manufacturer1 Example"
F 32 "C0603C106M9PAC" H 7600 2660 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.95mm" H 7600 2570 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 7600 2390 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 7600 2300 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 7600 2210 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 7600 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 7600 2030 60 0001 L CNN "License"
1 7600 5800
0 -1 -1 0
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5C959A37
P 7100 5500
AR Path="/5C16BF8E/5DB9B7E6/5C959A37" Ref="C?" Part="1"
AR Path="/5BCEDA3D/5C959A37" Ref="C?" Part="1"
AR Path="/5CC393D3/5C959A37" Ref="C?" Part="1"
AR Path="/5BABAC65/5C959A37" Ref="C?" Part="1"
AR Path="/5BD31F9F/5C959A37" Ref="C?" Part="1"
AR Path="/5BD31F9A/5C959A37" Ref="C67" Part="1"
F 0 "C67" V 7204 5610 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 7100 5240 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 7100 4430 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 7100 5060 60 0001 L CNN
F 4 "100nF" V 7295 5610 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 7100 4970 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 7100 4880 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 7100 4790 60 0001 L CNN "Library Path"
F 8 "=Value" H 7100 4700 60 0001 L CNN "Comment"
F 9 "Standard" H 7100 4610 60 0001 L CNN "Component Kind"
F 10 "Standard" H 7100 4520 60 0001 L CNN "Component Type"
F 11 "2" H 7100 4340 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 7100 4250 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 7100 4160 60 0001 L CNN "Footprint Ref"
F 14 " " H 7100 4070 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 7100 3890 60 0001 L CNN "Status"
F 16 " " H 7100 3800 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 7100 3710 60 0001 L CNN "Voltage"
F 18 "X5R" H 7100 3620 60 0001 L CNN "TC"
F 19 "±10%" H 7100 3530 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 7100 3440 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 7100 3350 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 7100 3260 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 7100 3170 60 0001 L CNN "Case"
F 24 "Yes" H 7100 3080 60 0001 L CNN "Mounted"
F 25 "No" H 7100 2990 60 0001 L CNN "Socket"
F 26 "Yes" H 7100 2900 60 0001 L CNN "SMD"
F 27 " " H 7100 2810 60 0001 L CNN "PressFit"
F 28 "No" H 7100 2720 60 0001 L CNN "Sense"
F 29 " " H 7100 2630 60 0001 L CNN "Sense Comment"
F 30 " " H 7100 2540 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 7100 2450 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 7100 2360 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 7100 2270 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 7100 2090 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 7100 2000 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 7100 1910 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 7100 1820 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 7100 1730 60 0001 L CNN "License"
1 7100 5500
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0603_10UF_6.3V_20%_X5R C?
U 1 1 5C959A63
P 8000 5800
AR Path="/5CC393D3/5C959A63" Ref="C?" Part="1"
AR Path="/5BABAC65/5C959A63" Ref="C?" Part="1"
AR Path="/5BD31F9F/5C959A63" Ref="C?" Part="1"
AR Path="/5BD31F9A/5C959A63" Ref="C69" Part="1"
F 0 "C69" V 8196 5690 50 0000 R CNN
F 1 "CC0603_10UF_6.3V_20%_X5R" H 8000 5540 60 0001 L CNN
F 2 "Marble:CAPC1608X87N" H 8000 4730 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0603_X5R_KEMET.pdf" H 8000 5360 60 0001 L CNN
F 4 "10uF" V 8105 5690 50 0000 R CNN "Val"
F 5 "CC0603_10UF_6.3V_20%_X5R" H 8000 5270 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 8000 5180 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 8000 5090 60 0001 L CNN "Library Path"
F 8 "=Value" H 8000 5000 60 0001 L CNN "Comment"
F 9 "Standard" H 8000 4910 60 0001 L CNN "Component Kind"
F 10 "Standard" H 8000 4820 60 0001 L CNN "Component Type"
F 11 "2" H 8000 4640 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 8000 4550 60 0001 L CNN "Footprint Path"
F 13 "CAPC1608X87N" H 8000 4460 60 0001 L CNN "Footprint Ref"
F 14 " " H 8000 4370 60 0001 L CNN "PackageDescription"
F 15 "Preferred" H 8000 4190 60 0001 L CNN "Status"
F 16 " " H 8000 4100 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 8000 4010 60 0001 L CNN "Voltage"
F 18 "X5R" H 8000 3920 60 0001 L CNN "TC"
F 19 "±20%" H 8000 3830 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 8000 3740 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 8000 3650 60 0001 L CNN "Manufacturer"
F 22 "CC0603_10uF_6.3V_20%_X5R" H 8000 3560 60 0001 L CNN "Manufacturer Part Number"
F 23 "0603" H 8000 3470 60 0001 L CNN "Case"
F 24 "Yes" H 8000 3380 60 0001 L CNN "Mounted"
F 25 "No" H 8000 3290 60 0001 L CNN "Socket"
F 26 "Yes" H 8000 3200 60 0001 L CNN "SMD"
F 27 " " H 8000 3110 60 0001 L CNN "PressFit"
F 28 "No" H 8000 3020 60 0001 L CNN "Sense"
F 29 " " H 8000 2930 60 0001 L CNN "Sense Comment"
F 30 " " H 8000 2840 60 0001 L CNN "ComponentHeight"
F 31 "KEMET" H 8000 2750 60 0001 L CNN "Manufacturer1 Example"
F 32 "C0603C106M9PAC" H 8000 2660 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.95mm" H 8000 2570 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 8000 2390 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 8000 2300 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 8000 2210 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 8000 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 8000 2030 60 0001 L CNN "License"
1 8000 5800
0 -1 -1 0
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5C9701E1
P 5650 6600
AR Path="/5C16BF8E/5DB9B7E6/5C9701E1" Ref="C?" Part="1"
AR Path="/5BCEDA3D/5C9701E1" Ref="C?" Part="1"
AR Path="/5CC393D3/5C9701E1" Ref="C?" Part="1"
AR Path="/5BABAC65/5C9701E1" Ref="C?" Part="1"
AR Path="/5BD31F9F/5C9701E1" Ref="C?" Part="1"
AR Path="/5BD31F9A/5C9701E1" Ref="C65" Part="1"
F 0 "C65" V 5754 6710 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 5650 6340 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 5650 5530 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 5650 6160 60 0001 L CNN
F 4 "100nF" V 5845 6710 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 5650 6070 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 5650 5980 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 5650 5890 60 0001 L CNN "Library Path"
F 8 "=Value" H 5650 5800 60 0001 L CNN "Comment"
F 9 "Standard" H 5650 5710 60 0001 L CNN "Component Kind"
F 10 "Standard" H 5650 5620 60 0001 L CNN "Component Type"
F 11 "2" H 5650 5440 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 5650 5350 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 5650 5260 60 0001 L CNN "Footprint Ref"
F 14 " " H 5650 5170 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 5650 4990 60 0001 L CNN "Status"
F 16 " " H 5650 4900 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 5650 4810 60 0001 L CNN "Voltage"
F 18 "X5R" H 5650 4720 60 0001 L CNN "TC"
F 19 "±10%" H 5650 4630 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 5650 4540 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 5650 4450 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 5650 4360 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 5650 4270 60 0001 L CNN "Case"
F 24 "Yes" H 5650 4180 60 0001 L CNN "Mounted"
F 25 "No" H 5650 4090 60 0001 L CNN "Socket"
F 26 "Yes" H 5650 4000 60 0001 L CNN "SMD"
F 27 " " H 5650 3910 60 0001 L CNN "PressFit"
F 28 "No" H 5650 3820 60 0001 L CNN "Sense"
F 29 " " H 5650 3730 60 0001 L CNN "Sense Comment"
F 30 " " H 5650 3640 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 5650 3550 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 5650 3460 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 5650 3370 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 5650 3190 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 5650 3100 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 5650 3010 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 5650 2920 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 5650 2830 60 0001 L CNN "License"
1 5650 6600