-
Notifications
You must be signed in to change notification settings - Fork 6
/
FPGA_13_14.sch
1563 lines (1563 loc) · 59.5 KB
/
FPGA_13_14.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 21 25
Title "Marble-Mini"
Date "2020-09-25"
Rev "v1.1"
Comp "Michał Gąska / WUT"
Comment1 ""
Comment2 ""
Comment3 "BANK 13 & 14"
Comment4 ""
$EndDescr
$Comp
L marble_misc:XC7A200T-FBG484-FPGA_Xilinx_Artix7 U?
U 1 1 5CC902F4
P 8500 5200
AR Path="/5C907554/5CC902F4" Ref="U?" Part="1"
AR Path="/5C907554/5CC8CB69/5CC902F4" Ref="U1" Part="1"
F 0 "U1" H 8500 2226 50 0000 C CNN
F 1 "XC7A100T-2FGG484C" H 8500 2135 50 0000 C CNN
F 2 "Marble:BGA484C100P22X22_2300X2300X240" H 8500 5200 50 0001 C CNN
F 3 "" H 8500 5200 50 0000 C CNN
F 4 "XC7A100T-2FGG484C" H 8500 5200 50 0001 C CNN "Manufacturer Part Number"
F 5 "Xilinx" H 8500 5200 50 0001 C CNN "Manufacturer"
F 6 "Yes" H 8500 5200 50 0001 C CNN "SMD"
1 8500 5200
1 0 0 -1
$EndComp
$Comp
L power:+2V5 #PWR?
U 1 1 5CC90383
P 6900 2200
AR Path="/5C16BF8E/5CC90383" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5CC90383" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC90383" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5CC90383" Ref="#PWR0501" Part="1"
F 0 "#PWR0501" H 6900 2050 50 0001 C CNN
F 1 "+2V5" H 6915 2373 50 0000 C CNN
F 2 "" H 6900 2200 50 0001 C CNN
F 3 "" H 6900 2200 50 0001 C CNN
1 6900 2200
1 0 0 -1
$EndComp
$Comp
L power:+2V5 #PWR?
U 1 1 5CC90389
P 9600 2200
AR Path="/5C16BF8E/5CC90389" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5CC90389" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC90389" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5CC90389" Ref="#PWR0502" Part="1"
F 0 "#PWR0502" H 9600 2050 50 0001 C CNN
F 1 "+2V5" H 9615 2373 50 0000 C CNN
F 2 "" H 9600 2200 50 0001 C CNN
F 3 "" H 9600 2200 50 0001 C CNN
1 9600 2200
1 0 0 -1
$EndComp
Wire Wire Line
10100 2300 10000 2300
Wire Wire Line
9600 2300 9600 2200
Connection ~ 9600 2300
Connection ~ 9700 2300
Wire Wire Line
9700 2300 9600 2300
Connection ~ 9800 2300
Wire Wire Line
9800 2300 9700 2300
Connection ~ 9900 2300
Wire Wire Line
9900 2300 9800 2300
Connection ~ 10000 2300
Wire Wire Line
10000 2300 9900 2300
Wire Wire Line
7300 2300 7200 2300
Wire Wire Line
6900 2300 6900 2200
Connection ~ 6900 2300
Connection ~ 7000 2300
Wire Wire Line
7000 2300 6900 2300
Connection ~ 7100 2300
Wire Wire Line
7100 2300 7000 2300
Connection ~ 7200 2300
Wire Wire Line
7200 2300 7100 2300
$Comp
L marble_misc:S25FL128SAGMFIR01 U30
U 1 1 5C40DA57
P 13400 850
F 0 "U30" H 13700 1017 50 0000 C CNN
F 1 "S25FL128SAGMFIR01" H 13700 926 50 0000 C CNN
F 2 "Marble:SOIC127P1030X265-16N" H 13400 850 50 0001 C CNN
F 3 "" H 13400 850 50 0001 C CNN
F 4 "S25FL128SAGMFIR01" H 13400 850 50 0001 C CNN "Manufacturer Part Number"
F 5 "CYPRESS" H 13400 850 50 0001 C CNN "Manufacturer"
F 6 "Yes" H 13400 850 50 0001 C CNN "SMD"
1 13400 850
1 0 0 -1
$EndComp
$Comp
L marble_misc:S25FL128SAGMFIR01 U30
U 2 1 5C40DA9C
P 14700 850
F 0 "U30" H 15000 1017 50 0000 C CNN
F 1 "S25FL128SAGMFIR01" H 15000 926 50 0000 C CNN
F 2 "Marble:SOIC127P1030X265-16N" H 14700 850 50 0001 C CNN
F 3 "" H 14700 850 50 0001 C CNN
F 4 "S25FL128SAGMFIR01" H 14700 850 50 0001 C CNN "Manufacturer Part Number"
F 5 "Yes" H 14700 850 50 0001 C CNN "SMD"
2 14700 850
1 0 0 -1
$EndComp
NoConn ~ 14500 950
NoConn ~ 14500 1050
NoConn ~ 14500 1150
NoConn ~ 14500 1250
NoConn ~ 15500 950
NoConn ~ 15500 1250
$Comp
L power:+2V5 #PWR?
U 1 1 5C480248
P 11950 2150
AR Path="/5C16BF8E/5C480248" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C480248" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C480248" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C480248" Ref="#PWR057" Part="1"
F 0 "#PWR057" H 11950 2000 50 0001 C CNN
F 1 "+2V5" V 11950 2400 50 0000 C CNN
F 2 "" H 11950 2150 50 0001 C CNN
F 3 "" H 11950 2150 50 0001 C CNN
1 11950 2150
0 -1 -1 0
$EndComp
$Comp
L power:+3V3 #PWR?
U 1 1 5C4C7410
P 11950 1850
AR Path="/5BD32060/5C4C7410" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C4C7410" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C4C7410" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CAAC367/5C4C7410" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C4C7410" Ref="#PWR056" Part="1"
F 0 "#PWR056" H 11950 1700 50 0001 C CNN
F 1 "+3V3" V 11950 2100 50 0000 C CNN
F 2 "" H 11950 1850 50 0001 C CNN
F 3 "" H 11950 1850 50 0001 C CNN
1 11950 1850
0 -1 -1 0
$EndComp
Wire Wire Line
11150 3500 10500 3500
Wire Wire Line
11150 3400 10500 3400
Wire Wire Line
11150 3300 10500 3300
Wire Wire Line
11150 3200 10500 3200
Text Label 10650 3600 0 50 ~ 10
CFG_PUDC
Text Label 10650 3500 0 50 ~ 10
CFG_D03
Text Label 10650 3400 0 50 ~ 10
CFG_D02
Text Label 10650 3300 0 50 ~ 10
CFG_DIN
Text Label 10650 3200 0 50 ~ 10
CFG_MOSI
Wire Wire Line
13200 1150 12550 1150
Wire Wire Line
13200 1050 12550 1050
Text Label 11850 1650 0 50 ~ 10
CFG_D03
Text Label 11850 1550 0 50 ~ 10
CFG_D02
Text Label 12700 1150 0 50 ~ 10
CFG_DIN
Text Label 12700 1050 0 50 ~ 10
CFG_MOSI
Text Label 12900 950 2 50 ~ 10
CCLK
Text HLabel 12500 950 0 50 Input ~ 10
CCLK
Wire Wire Line
11150 4200 10500 4200
Text Label 10650 4200 0 50 ~ 10
CFG_FCS
Text Label 12700 1250 0 50 ~ 10
CFG_FCS
$Comp
L power:GND #PWR?
U 1 1 5C790E00
P 12200 3900
AR Path="/5BD32060/5C790E00" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C790E00" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C790E00" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C790E00" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C790E00" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C790E00" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C790E00" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C790E00" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C790E00" Ref="#PWR054" Part="1"
F 0 "#PWR054" H 12200 3650 50 0001 C CNN
F 1 "GND" H 12205 3727 50 0000 C CNN
F 2 "" H 12200 3900 50 0001 C CNN
F 3 "" H 12200 3900 50 0001 C CNN
1 12200 3900
1 0 0 -1
$EndComp
$Comp
L power:+2V5 #PWR?
U 1 1 5C7A0F6B
P 12200 3300
AR Path="/5C16BF8E/5C7A0F6B" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C7A0F6B" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C7A0F6B" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C7A0F6B" Ref="#PWR053" Part="1"
F 0 "#PWR053" H 12200 3150 50 0001 C CNN
F 1 "+2V5" H 12215 3473 50 0000 C CNN
F 2 "" H 12200 3300 50 0001 C CNN
F 3 "" H 12200 3300 50 0001 C CNN
1 12200 3300
1 0 0 -1
$EndComp
NoConn ~ 13200 1450
$Comp
L power:+2V5 #PWR?
U 1 1 5C7D1417
P 12000 850
AR Path="/5C16BF8E/5C7D1417" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C7D1417" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C7D1417" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C7D1417" Ref="#PWR055" Part="1"
F 0 "#PWR055" H 12000 700 50 0001 C CNN
F 1 "+2V5" H 12015 1023 50 0000 C CNN
F 2 "" H 12000 850 50 0001 C CNN
F 3 "" H 12000 850 50 0001 C CNN
1 12000 850
1 0 0 -1
$EndComp
Wire Wire Line
12000 1250 12000 1200
Wire Wire Line
12000 1250 13200 1250
Wire Wire Line
12650 1550 13200 1550
Wire Wire Line
12650 1650 13200 1650
$Comp
L marble_misc:SW_DIP_x01-Switch SW1
U 1 1 5C881CE2
P 13300 3000
F 0 "SW1" H 13300 3267 50 0000 C CNN
F 1 "SW_DIP_x01" H 13300 3176 50 0000 C CNN
F 2 "Marble:SW_OMRON_A6SN-1101" H 13300 3000 50 0001 C CNN
F 3 "" H 13300 3000 50 0001 C CNN
F 4 "A6SN-1101" H 13300 3000 50 0001 C CNN "Manufacturer Part Number"
F 5 "OMRON" H 13300 3000 50 0001 C CNN "Manufacturer"
F 6 "Yes" H 13300 3000 50 0001 C CNN "SMD"
1 13300 3000
-1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C89233A
P 14250 1950
AR Path="/5BD32060/5C89233A" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C89233A" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C89233A" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C89233A" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C89233A" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C89233A" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C89233A" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C89233A" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C89233A" Ref="#PWR058" Part="1"
F 0 "#PWR058" H 14250 1700 50 0001 C CNN
F 1 "GND" H 14255 1777 50 0000 C CNN
F 2 "" H 14250 1950 50 0001 C CNN
F 3 "" H 14250 1950 50 0001 C CNN
1 14250 1950
1 0 0 -1
$EndComp
Wire Wire Line
11850 1550 12350 1550
Wire Wire Line
11850 1650 12350 1650
Text Label 12900 1550 0 50 ~ 10
CFG_WP
Text Label 13950 3000 2 50 ~ 10
CFG_WP
Wire Wire Line
13950 3000 13600 3000
$Comp
L power:GND #PWR?
U 1 1 5C912FE6
P 13000 3000
AR Path="/5BD32060/5C912FE6" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C912FE6" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C912FE6" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C912FE6" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C912FE6" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C912FE6" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C912FE6" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C912FE6" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C912FE6" Ref="#PWR0142" Part="1"
F 0 "#PWR0142" H 13000 2750 50 0001 C CNN
F 1 "GND" H 13005 2827 50 0000 C CNN
F 2 "" H 13000 3000 50 0001 C CNN
F 3 "" H 13000 3000 50 0001 C CNN
1 13000 3000
-1 0 0 -1
$EndComp
$Comp
L marble_misc:SN74LVC1G125DCKT-Standard_Logic U11
U 1 1 5C4235B4
P 14150 2800
F 0 "U11" H 14300 2211 50 0000 C CNN
F 1 "SN74LVC1G125DCKT" H 14300 2120 50 0000 C CNN
F 2 "Marble:SOT65P210X110-5N" H 14150 1450 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\SN74LVC1G125DCKT.pdf" H 14150 2170 60 0001 L CNN
F 4 "SN74LVC1G125DCKT" H 14150 2080 60 0001 L CNN "Part Number"
F 5 "741G125" H 14150 1990 60 0001 L CNN "Library Ref"
F 6 "SchLib\\Standard Logic.SchLib" H 14150 1900 60 0001 L CNN "Library Path"
F 7 "=Device" H 14150 1810 60 0001 L CNN "Comment"
F 8 "Standard" H 14150 1720 60 0001 L CNN "Component Kind"
F 9 "Standard" H 14150 1630 60 0001 L CNN "Component Type"
F 10 "SN74LVC1G125DCKT" H 14150 1540 60 0001 L CNN "Device"
F 11 "SOT353, SC70-5, SOT, 0.65mm Pitch, 5 pin, 1.25mm W X 2.00mm L X 1.10mm H, IPC Medium Density" H 14150 1360 60 0001 L CNN "PackageDescription"
F 12 " " H 14150 1270 60 0001 L CNN "Status"
F 13 "Single Bus Buffer Gate With 3-State Outputs" H 14150 1180 60 0001 L CNN "Part Description"
F 14 "TEXAS INSTRUMENTS" H 14150 1090 60 0001 L CNN "Manufacturer"
F 15 "SN74LVC1G125DCKT" H 14150 1000 60 0001 L CNN "Manufacturer Part Number"
F 16 "5" H 14150 910 60 0001 L CNN "Pin Count"
F 17 "SOT353" H 14150 820 60 0001 L CNN "Case"
F 18 "Yes" H 14150 730 60 0001 L CNN "Mounted"
F 19 "No" H 14150 640 60 0001 L CNN "Socket"
F 20 "Yes" H 14150 550 60 0001 L CNN "SMD"
F 21 "No" H 14150 460 60 0001 L CNN "PressFit"
F 22 "No" H 14150 370 60 0001 L CNN "Sense"
F 23 " " H 14150 280 60 0001 L CNN "Sense Comment"
F 24 "No" H 14150 190 60 0001 L CNN "Bonding"
F 25 " " H 14150 100 60 0001 L CNN "Status Comment"
F 26 "1.1mm" H 14150 10 60 0001 L CNN "ComponentHeight"
F 27 "PcbLib\\ICs And Semiconductors SMD.PcbLib" H 14150 -80 60 0001 L CNN "Footprint Path"
F 28 "SOT65P210X110-5N" H 14150 -170 60 0001 L CNN "Footprint Ref"
F 29 "CERN DEM JLC" H 14150 -260 60 0001 L CNN "Author"
F 30 " " H 14150 -530 60 0001 L CNN "ComponentLink1Description"
F 31 " " H 14150 -710 60 0001 L CNN "ComponentLink2Description"
F 32 "12/19/11 00:00:00" H 14150 -800 60 0001 L CNN "CreateDate"
F 33 "12/19/11 00:00:00" H 14150 -890 60 0001 L CNN "LatestRevisionDate"
F 34 "ICs And Semiconductors SMD" H 14150 -980 60 0001 L CNN "Library Name"
F 35 "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 14150 -1070 60 0001 L CNN "License"
1 14150 2800
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C4252F3
P 14850 3300
AR Path="/5BD32060/5C4252F3" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C4252F3" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C4252F3" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C4252F3" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C4252F3" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C4252F3" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C4252F3" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C4252F3" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C4252F3" Ref="#PWR0160" Part="1"
F 0 "#PWR0160" H 14850 3050 50 0001 C CNN
F 1 "GND" H 14855 3127 50 0000 C CNN
F 2 "" H 14850 3300 50 0001 C CNN
F 3 "" H 14850 3300 50 0001 C CNN
1 14850 3300
1 0 0 -1
$EndComp
Wire Wire Line
14650 3300 14850 3300
Text Label 14650 3000 0 50 ~ 10
CFG_WP_B
Text HLabel 15050 3000 2 50 Output ~ 10
CFG_WP_B
Wire Wire Line
14650 3000 15050 3000
$Comp
L power:GND #PWR?
U 1 1 5C4AB386
P 14250 2700
AR Path="/5BD32060/5C4AB386" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C4AB386" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C4AB386" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C4AB386" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C4AB386" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C4AB386" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C4AB386" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C4AB386" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C4AB386" Ref="#PWR0144" Part="1"
F 0 "#PWR0144" H 14250 2450 50 0001 C CNN
F 1 "GND" H 14255 2527 50 0000 C CNN
F 2 "" H 14250 2700 50 0001 C CNN
F 3 "" H 14250 2700 50 0001 C CNN
1 14250 2700
-1 0 0 1
$EndComp
$Comp
L power:+3V3 #PWR?
U 1 1 5C5155F3
P 13950 3200
AR Path="/5BD32060/5C5155F3" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C5155F3" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C5155F3" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CAAC367/5C5155F3" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C5155F3" Ref="#PWR0143" Part="1"
F 0 "#PWR0143" H 13950 3050 50 0001 C CNN
F 1 "+3V3" V 13950 3400 50 0000 C CNN
F 2 "" H 13950 3200 50 0001 C CNN
F 3 "" H 13950 3200 50 0001 C CNN
1 13950 3200
0 -1 -1 0
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C56DDCE
P 15250 3950
AR Path="/5BD32060/5C56DDCE" Ref="#PWR?" Part="1"
AR Path="/5C16BF13/5C56DDCE" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C56DDCE" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C56DDCE" Ref="#PWR0164" Part="1"
F 0 "#PWR0164" H 15250 3700 50 0001 C CNN
F 1 "GND" H 15255 3777 50 0000 C CNN
F 2 "" H 15250 3950 50 0001 C CNN
F 3 "" H 15250 3950 50 0001 C CNN
1 15250 3950
1 0 0 -1
$EndComp
Wire Wire Line
15250 3900 15250 3950
Wire Wire Line
15250 3550 15250 3600
$Comp
L power:+3V3 #PWR?
U 1 1 5C56DDD6
P 15250 3550
AR Path="/5BD32060/5C56DDD6" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5C56DDD6" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C56DDD6" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CAAC367/5C56DDD6" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C56DDD6" Ref="#PWR0163" Part="1"
F 0 "#PWR0163" H 15250 3400 50 0001 C CNN
F 1 "+3V3" H 15265 3723 50 0000 C CNN
F 2 "" H 15250 3550 50 0001 C CNN
F 3 "" H 15250 3550 50 0001 C CNN
1 15250 3550
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C57ECA5
P 12750 2350
AR Path="/5BD32060/5C57ECA5" Ref="#PWR?" Part="1"
AR Path="/5C16BF13/5C57ECA5" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C57ECA5" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C57ECA5" Ref="#PWR0162" Part="1"
F 0 "#PWR0162" H 12750 2100 50 0001 C CNN
F 1 "GND" H 12755 2177 50 0000 C CNN
F 2 "" H 12750 2350 50 0001 C CNN
F 3 "" H 12750 2350 50 0001 C CNN
1 12750 2350
1 0 0 -1
$EndComp
Wire Wire Line
12750 2300 12750 2350
$Comp
L power:GND #PWR?
U 1 1 5C58FE1A
P 13150 2350
AR Path="/5BD32060/5C58FE1A" Ref="#PWR?" Part="1"
AR Path="/5C16BF13/5C58FE1A" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C58FE1A" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5C58FE1A" Ref="#PWR0166" Part="1"
F 0 "#PWR0166" H 13150 2100 50 0001 C CNN
F 1 "GND" H 13155 2177 50 0000 C CNN
F 2 "" H 13150 2350 50 0001 C CNN
F 3 "" H 13150 2350 50 0001 C CNN
1 13150 2350
1 0 0 -1
$EndComp
Wire Wire Line
13150 2300 13150 2350
Wire Wire Line
12450 1850 12500 1850
Wire Wire Line
12450 2000 12500 2000
Wire Wire Line
12500 2000 12500 1850
Connection ~ 12500 1850
Wire Wire Line
12600 2150 12600 1950
$Comp
L power:+2V5 #PWR?
U 1 1 5E0535C9
P 11950 2000
AR Path="/5C16BF8E/5E0535C9" Ref="#PWR?" Part="1"
AR Path="/5C907554/5C417BCB/5E0535C9" Ref="#PWR?" Part="1"
AR Path="/5C907554/5E0535C9" Ref="#PWR?" Part="1"
AR Path="/5C907554/5CC8CB69/5E0535C9" Ref="#PWR0161" Part="1"
F 0 "#PWR0161" H 11950 1850 50 0001 C CNN
F 1 "+2V5" V 11950 2250 50 0000 C CNN
F 2 "" H 11950 2000 50 0001 C CNN
F 3 "" H 11950 2000 50 0001 C CNN
1 11950 2000
0 -1 -1 0
$EndComp
Wire Wire Line
11950 1850 12150 1850
Wire Wire Line
11950 2000 12150 2000
Wire Wire Line
11950 2150 12150 2150
Wire Wire Line
12450 2150 12600 2150
Wire Wire Line
12600 1950 13150 1950
Wire Wire Line
12500 1850 12750 1850
Wire Wire Line
13150 2000 13150 1950
Connection ~ 13150 1950
Wire Wire Line
13150 1950 13200 1950
Wire Wire Line
12750 2000 12750 1850
Connection ~ 12750 1850
Wire Wire Line
12750 1850 13100 1850
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5F8D811E
P 15250 3600
AR Path="/5BCEDA59/5F8D811E" Ref="C?" Part="1"
AR Path="/5C907554/5C417BCB/5F8D811E" Ref="C?" Part="1"
AR Path="/5C907554/5CC8CB69/5F8D811E" Ref="C78" Part="1"
F 0 "C78" V 15300 3600 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 15250 3340 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 15250 2530 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 15250 3160 60 0001 L CNN
F 4 "100nF" V 15500 3600 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 15250 3070 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 15250 2980 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 15250 2890 60 0001 L CNN "Library Path"
F 8 "=Value" H 15250 2800 60 0001 L CNN "Comment"
F 9 "Standard" H 15250 2710 60 0001 L CNN "Component Kind"
F 10 "Standard" H 15250 2620 60 0001 L CNN "Component Type"
F 11 "2" H 15250 2440 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 15250 2350 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 15250 2260 60 0001 L CNN "Footprint Ref"
F 14 " " H 15250 2170 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 15250 1990 60 0001 L CNN "Status"
F 16 " " H 15250 1900 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 15250 1810 60 0001 L CNN "Voltage"
F 18 "X5R" H 15250 1720 60 0001 L CNN "TC"
F 19 "±10%" H 15250 1630 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 15250 1540 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 15250 1450 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 15250 1360 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 15250 1270 60 0001 L CNN "Case"
F 24 "Yes" H 15250 1180 60 0001 L CNN "Mounted"
F 25 "No" H 15250 1090 60 0001 L CNN "Socket"
F 26 "Yes" H 15250 1000 60 0001 L CNN "SMD"
F 27 " " H 15250 910 60 0001 L CNN "PressFit"
F 28 "No" H 15250 820 60 0001 L CNN "Sense"
F 29 " " H 15250 730 60 0001 L CNN "Sense Comment"
F 30 " " H 15250 640 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 15250 550 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 15250 460 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 15250 370 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 15250 190 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 15250 100 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 15250 10 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 15250 -80 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 15250 -170 60 0001 L CNN "License"
1 15250 3600
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5F8FCC33
P 12750 2000
AR Path="/5BCEDA59/5F8FCC33" Ref="C?" Part="1"
AR Path="/5C907554/5C417BCB/5F8FCC33" Ref="C?" Part="1"
AR Path="/5C907554/5CC8CB69/5F8FCC33" Ref="C38" Part="1"
F 0 "C38" V 12800 2000 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 12750 1740 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 12750 930 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 12750 1560 60 0001 L CNN
F 4 "100nF" V 13000 2000 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 12750 1470 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 12750 1380 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 12750 1290 60 0001 L CNN "Library Path"
F 8 "=Value" H 12750 1200 60 0001 L CNN "Comment"
F 9 "Standard" H 12750 1110 60 0001 L CNN "Component Kind"
F 10 "Standard" H 12750 1020 60 0001 L CNN "Component Type"
F 11 "2" H 12750 840 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 12750 750 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 12750 660 60 0001 L CNN "Footprint Ref"
F 14 " " H 12750 570 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 12750 390 60 0001 L CNN "Status"
F 16 " " H 12750 300 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 12750 210 60 0001 L CNN "Voltage"
F 18 "X5R" H 12750 120 60 0001 L CNN "TC"
F 19 "±10%" H 12750 30 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 12750 -60 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 12750 -150 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 12750 -240 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 12750 -330 60 0001 L CNN "Case"
F 24 "Yes" H 12750 -420 60 0001 L CNN "Mounted"
F 25 "No" H 12750 -510 60 0001 L CNN "Socket"
F 26 "Yes" H 12750 -600 60 0001 L CNN "SMD"
F 27 " " H 12750 -690 60 0001 L CNN "PressFit"
F 28 "No" H 12750 -780 60 0001 L CNN "Sense"
F 29 " " H 12750 -870 60 0001 L CNN "Sense Comment"
F 30 " " H 12750 -960 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 12750 -1050 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 12750 -1140 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 12750 -1230 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 12750 -1410 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 12750 -1500 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 12750 -1590 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 12750 -1680 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 12750 -1770 60 0001 L CNN "License"
1 12750 2000
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5F90F107
P 13150 2000
AR Path="/5BCEDA59/5F90F107" Ref="C?" Part="1"
AR Path="/5C907554/5C417BCB/5F90F107" Ref="C?" Part="1"
AR Path="/5C907554/5CC8CB69/5F90F107" Ref="C39" Part="1"
F 0 "C39" V 13200 2000 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 13150 1740 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 13150 930 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 13150 1560 60 0001 L CNN
F 4 "100nF" V 13400 2000 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 13150 1470 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 13150 1380 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 13150 1290 60 0001 L CNN "Library Path"
F 8 "=Value" H 13150 1200 60 0001 L CNN "Comment"
F 9 "Standard" H 13150 1110 60 0001 L CNN "Component Kind"
F 10 "Standard" H 13150 1020 60 0001 L CNN "Component Type"
F 11 "2" H 13150 840 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 13150 750 60 0001 L CNN "Footprint Path"
F 13 "CAPC0603X33N" H 13150 660 60 0001 L CNN "Footprint Ref"
F 14 " " H 13150 570 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 13150 390 60 0001 L CNN "Status"
F 16 " " H 13150 300 60 0001 L CNN "Status Comment"
F 17 "6.3V" H 13150 210 60 0001 L CNN "Voltage"
F 18 "X5R" H 13150 120 60 0001 L CNN "TC"
F 19 "±10%" H 13150 30 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 13150 -60 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 13150 -150 60 0001 L CNN "Manufacturer"
F 22 "CC0201_100NF_6.3V_10%_X5R" H 13150 -240 60 0001 L CNN "Manufacturer Part Number"
F 23 "0201" H 13150 -330 60 0001 L CNN "Case"
F 24 "Yes" H 13150 -420 60 0001 L CNN "Mounted"
F 25 "No" H 13150 -510 60 0001 L CNN "Socket"
F 26 "Yes" H 13150 -600 60 0001 L CNN "SMD"
F 27 " " H 13150 -690 60 0001 L CNN "PressFit"
F 28 "No" H 13150 -780 60 0001 L CNN "Sense"
F 29 " " H 13150 -870 60 0001 L CNN "Sense Comment"
F 30 " " H 13150 -960 60 0001 L CNN "ComponentHeight"
F 31 "AVX" H 13150 -1050 60 0001 L CNN "Manufacturer1 Example"
F 32 "02016D104KAT2A" H 13150 -1140 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.33mm" H 13150 -1230 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 13150 -1410 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 13150 -1500 60 0001 L CNN "CreateDate"
F 36 "12/03/07 00:00:00" H 13150 -1590 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 13150 -1680 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 13150 -1770 60 0001 L CNN "License"
1 13150 2000
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0402_1K_1%_0.0625W_100PPM R?
U 1 1 5F9465E2
P 12200 3300
AR Path="/5C907554/5CAAC367/5F9465E2" Ref="R?" Part="1"
AR Path="/5C907554/5CC8CB69/5F9465E2" Ref="R221" Part="1"
F 0 "R221" V 12300 3350 50 0000 L CNN
F 1 "R0402_1K_1%_0.0625W_100PPM" H 12200 3090 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 12200 2280 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 12200 2910 60 0001 L CNN
F 4 "1k" V 12395 3360 50 0000 L CNN "Val"
F 5 "R0402_1K_1%_0.0625W_100PPM" H 12200 2820 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 12200 2730 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 12200 2640 60 0001 L CNN "Library Path"
F 8 "=Value" H 12200 2550 60 0001 L CNN "Comment"
F 9 "Standard" H 12200 2460 60 0001 L CNN "Component Kind"
F 10 "Standard" H 12200 2370 60 0001 L CNN "Component Type"
F 11 " " H 12200 2190 60 0001 L CNN "PackageDescription"
F 12 "2" H 12200 2100 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 12200 2010 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 12200 1920 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 12200 1740 60 0001 L CNN "Status"
F 16 "0.0625W" H 12200 1650 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 12200 1560 60 0001 L CNN "TC"
F 18 " " H 12200 1470 60 0001 L CNN "Voltage"
F 19 "±1%" H 12200 1380 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 12200 1290 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 12200 1200 60 0001 L CNN "Manufacturer"
F 22 "R0402_1K_1%_0.0625W_100PPM" H 12200 1110 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 12200 1020 60 0001 L CNN "Case"
F 24 "No" H 12200 930 60 0001 L CNN "PressFit"
F 25 "Yes" H 12200 840 60 0001 L CNN "Mounted"
F 26 " " H 12200 750 60 0001 L CNN "Sense Comment"
F 27 "No" H 12200 660 60 0001 L CNN "Sense"
F 28 " " H 12200 570 60 0001 L CNN "Status Comment"
F 29 "No" H 12200 480 60 0001 L CNN "Socket"
F 30 "Yes" H 12200 390 60 0001 L CNN "SMD"
F 31 " " H 12200 300 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 12200 210 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671002L" H 12200 120 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 12200 30 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 12200 -150 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 12200 -240 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 12200 -330 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 12200 -420 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 12200 -510 60 0001 L CNN "License"
F 40 "dnf" V 12200 3350 50 0000 L CNN "config"
1 12200 3300
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0402_1K_1%_0.0625W_100PPM R?
U 1 1 5F958ABD
P 12200 3600
AR Path="/5C907554/5CAAC367/5F958ABD" Ref="R?" Part="1"
AR Path="/5C907554/5CC8CB69/5F958ABD" Ref="R222" Part="1"
F 0 "R222" V 12304 3660 50 0000 L CNN
F 1 "R0402_1K_1%_0.0625W_100PPM" H 12200 3390 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 12200 2580 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 12200 3210 60 0001 L CNN
F 4 "1k" V 12395 3660 50 0000 L CNN "Val"
F 5 "R0402_1K_1%_0.0625W_100PPM" H 12200 3120 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 12200 3030 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 12200 2940 60 0001 L CNN "Library Path"
F 8 "=Value" H 12200 2850 60 0001 L CNN "Comment"
F 9 "Standard" H 12200 2760 60 0001 L CNN "Component Kind"
F 10 "Standard" H 12200 2670 60 0001 L CNN "Component Type"
F 11 " " H 12200 2490 60 0001 L CNN "PackageDescription"
F 12 "2" H 12200 2400 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 12200 2310 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 12200 2220 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 12200 2040 60 0001 L CNN "Status"
F 16 "0.0625W" H 12200 1950 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 12200 1860 60 0001 L CNN "TC"
F 18 " " H 12200 1770 60 0001 L CNN "Voltage"
F 19 "±1%" H 12200 1680 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 12200 1590 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 12200 1500 60 0001 L CNN "Manufacturer"
F 22 "R0402_1K_1%_0.0625W_100PPM" H 12200 1410 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 12200 1320 60 0001 L CNN "Case"
F 24 "No" H 12200 1230 60 0001 L CNN "PressFit"
F 25 "Yes" H 12200 1140 60 0001 L CNN "Mounted"
F 26 " " H 12200 1050 60 0001 L CNN "Sense Comment"
F 27 "No" H 12200 960 60 0001 L CNN "Sense"
F 28 " " H 12200 870 60 0001 L CNN "Status Comment"
F 29 "No" H 12200 780 60 0001 L CNN "Socket"
F 30 "Yes" H 12200 690 60 0001 L CNN "SMD"
F 31 " " H 12200 600 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 12200 510 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270671002L" H 12200 420 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 12200 330 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 12200 150 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 12200 60 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 12200 -30 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 12200 -120 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 12200 -210 60 0001 L CNN "License"
1 12200 3600
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0402_2K2_1%_0.0625W_100PPM R?
U 1 1 5F9B4342
P 12000 900
AR Path="/5C907554/5CAAC367/5F9B4342" Ref="R?" Part="1"
AR Path="/5C907554/5CC8CB69/5F9B4342" Ref="R223" Part="1"
F 0 "R223" V 12104 960 50 0000 L CNN
F 1 "R0402_2K2_1%_0.0625W_100PPM" H 12000 690 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 12000 -120 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 12000 510 60 0001 L CNN
F 4 "2k2" V 12195 960 50 0000 L CNN "Val"
F 5 "R0402_2K2_1%_0.0625W_100PPM" H 12000 420 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 12000 330 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 12000 240 60 0001 L CNN "Library Path"
F 8 "=Value" H 12000 150 60 0001 L CNN "Comment"
F 9 "Standard" H 12000 60 60 0001 L CNN "Component Kind"
F 10 "Standard" H 12000 -30 60 0001 L CNN "Component Type"
F 11 " " H 12000 -210 60 0001 L CNN "PackageDescription"
F 12 "2" H 12000 -300 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 12000 -390 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 12000 -480 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 12000 -660 60 0001 L CNN "Status"
F 16 "0.0625W" H 12000 -750 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 12000 -840 60 0001 L CNN "TC"
F 18 " " H 12000 -930 60 0001 L CNN "Voltage"
F 19 "±1%" H 12000 -1020 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 12000 -1110 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 12000 -1200 60 0001 L CNN "Manufacturer"
F 22 "R0402_2K2_1%_0.0625W_100PPM" H 12000 -1290 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 12000 -1380 60 0001 L CNN "Case"
F 24 "No" H 12000 -1470 60 0001 L CNN "PressFit"
F 25 "Yes" H 12000 -1560 60 0001 L CNN "Mounted"
F 26 " " H 12000 -1650 60 0001 L CNN "Sense Comment"
F 27 "No" H 12000 -1740 60 0001 L CNN "Sense"
F 28 " " H 12000 -1830 60 0001 L CNN "Status Comment"
F 29 "No" H 12000 -1920 60 0001 L CNN "Socket"
F 30 "Yes" H 12000 -2010 60 0001 L CNN "SMD"
F 31 " " H 12000 -2100 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 12000 -2190 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672202L" H 12000 -2280 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 12000 -2370 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 12000 -2550 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 12000 -2640 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 12000 -2730 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 12000 -2820 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 12000 -2910 60 0001 L CNN "License"
1 12000 900
0 1 1 0
$EndComp
$Comp
L Resistors_SMD:R0402_0R_JUMPER R?
U 1 1 5F9C6F63
P 12150 1850
AR Path="/5BCEDA39/5F9C6F63" Ref="R?" Part="1"
AR Path="/5C907554/5CC8CB69/5F9C6F63" Ref="R224" Part="1"
F 0 "R224" H 12100 1900 50 0000 C CNN
F 1 "R0402_0R_JUMPER" H 12150 1640 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 12150 830 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 12150 1460 60 0001 L CNN
F 4 "0" H 12450 1900 50 0000 C CNN "Val"
F 5 "R0402_0R_JUMPER" H 12150 1370 60 0001 L CNN "Part Number"
F 6 "Resistor" H 12150 1280 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 12150 1190 60 0001 L CNN "Library Path"
F 8 "=Value" H 12150 1100 60 0001 L CNN "Comment"
F 9 "Standard" H 12150 1010 60 0001 L CNN "Component Kind"
F 10 "Standard" H 12150 920 60 0001 L CNN "Component Type"
F 11 " " H 12150 740 60 0001 L CNN "PackageDescription"
F 12 "2" H 12150 650 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 12150 560 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 12150 470 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 12150 290 60 0001 L CNN "Status"
F 16 " " H 12150 200 60 0001 L CNN "Power"
F 17 " " H 12150 110 60 0001 L CNN "TC"
F 18 " " H 12150 20 60 0001 L CNN "Voltage"
F 19 " " H 12150 -70 60 0001 L CNN "Tolerance"
F 20 "1A (0.05R Max DC Resistance) Zero Ohm Jumper" H 12150 -160 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 12150 -250 60 0001 L CNN "Manufacturer"
F 22 "R0402_0R_JUMPER" H 12150 -340 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 12150 -430 60 0001 L CNN "Case"
F 24 "No" H 12150 -520 60 0001 L CNN "PressFit"
F 25 "Yes" H 12150 -610 60 0001 L CNN "Mounted"
F 26 " " H 12150 -700 60 0001 L CNN "Sense Comment"
F 27 "No" H 12150 -790 60 0001 L CNN "Sense"
F 28 " " H 12150 -880 60 0001 L CNN "Status Comment"
F 29 "No" H 12150 -970 60 0001 L CNN "Socket"
F 30 "Yes" H 12150 -1060 60 0001 L CNN "SMD"
F 31 " " H 12150 -1150 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 12150 -1240 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270591001L" H 12150 -1330 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 12150 -1420 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 12150 -1600 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 12150 -1690 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 12150 -1780 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 12150 -1870 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 12150 -1960 60 0001 L CNN "License"
1 12150 1850
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_0R_JUMPER R?
U 1 1 5F9D945C
P 12150 2000
AR Path="/5BCEDA39/5F9D945C" Ref="R?" Part="1"
AR Path="/5C907554/5CC8CB69/5F9D945C" Ref="R225" Part="1"
F 0 "R225" H 12100 2050 50 0000 C CNN
F 1 "R0402_0R_JUMPER" H 12150 1790 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 12150 980 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 12150 1610 60 0001 L CNN
F 4 "0" H 12450 2050 50 0000 C CNN "Val"
F 5 "R0402_0R_JUMPER" H 12150 1520 60 0001 L CNN "Part Number"
F 6 "Resistor" H 12150 1430 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 12150 1340 60 0001 L CNN "Library Path"
F 8 "=Value" H 12150 1250 60 0001 L CNN "Comment"
F 9 "Standard" H 12150 1160 60 0001 L CNN "Component Kind"
F 10 "Standard" H 12150 1070 60 0001 L CNN "Component Type"
F 11 " " H 12150 890 60 0001 L CNN "PackageDescription"
F 12 "2" H 12150 800 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 12150 710 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 12150 620 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 12150 440 60 0001 L CNN "Status"
F 16 " " H 12150 350 60 0001 L CNN "Power"
F 17 " " H 12150 260 60 0001 L CNN "TC"
F 18 " " H 12150 170 60 0001 L CNN "Voltage"
F 19 " " H 12150 80 60 0001 L CNN "Tolerance"
F 20 "1A (0.05R Max DC Resistance) Zero Ohm Jumper" H 12150 -10 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 12150 -100 60 0001 L CNN "Manufacturer"
F 22 "R0402_0R_JUMPER" H 12150 -190 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 12150 -280 60 0001 L CNN "Case"
F 24 "No" H 12150 -370 60 0001 L CNN "PressFit"
F 25 "Yes" H 12150 -460 60 0001 L CNN "Mounted"
F 26 " " H 12150 -550 60 0001 L CNN "Sense Comment"
F 27 "No" H 12150 -640 60 0001 L CNN "Sense"
F 28 " " H 12150 -730 60 0001 L CNN "Status Comment"
F 29 "No" H 12150 -820 60 0001 L CNN "Socket"
F 30 "Yes" H 12150 -910 60 0001 L CNN "SMD"
F 31 " " H 12150 -1000 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 12150 -1090 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270591001L" H 12150 -1180 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 12150 -1270 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 12150 -1450 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 12150 -1540 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 12150 -1630 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 12150 -1720 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 12150 -1810 60 0001 L CNN "License"
F 40 "dnf" H 12500 2000 50 0000 C CNN "config"
1 12150 2000
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_0R_JUMPER R?
U 1 1 5F9EB93A
P 12150 2150
AR Path="/5BCEDA39/5F9EB93A" Ref="R?" Part="1"
AR Path="/5C907554/5CC8CB69/5F9EB93A" Ref="R227" Part="1"
F 0 "R227" H 12100 2200 50 0000 C CNN
F 1 "R0402_0R_JUMPER" H 12150 1940 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 12150 1130 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 12150 1760 60 0001 L CNN
F 4 "0" H 12450 2200 50 0000 C CNN "Val"
F 5 "R0402_0R_JUMPER" H 12150 1670 60 0001 L CNN "Part Number"
F 6 "Resistor" H 12150 1580 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 12150 1490 60 0001 L CNN "Library Path"
F 8 "=Value" H 12150 1400 60 0001 L CNN "Comment"
F 9 "Standard" H 12150 1310 60 0001 L CNN "Component Kind"
F 10 "Standard" H 12150 1220 60 0001 L CNN "Component Type"
F 11 " " H 12150 1040 60 0001 L CNN "PackageDescription"
F 12 "2" H 12150 950 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 12150 860 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 12150 770 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 12150 590 60 0001 L CNN "Status"
F 16 " " H 12150 500 60 0001 L CNN "Power"
F 17 " " H 12150 410 60 0001 L CNN "TC"
F 18 " " H 12150 320 60 0001 L CNN "Voltage"
F 19 " " H 12150 230 60 0001 L CNN "Tolerance"
F 20 "1A (0.05R Max DC Resistance) Zero Ohm Jumper" H 12150 140 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 12150 50 60 0001 L CNN "Manufacturer"
F 22 "R0402_0R_JUMPER" H 12150 -40 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 12150 -130 60 0001 L CNN "Case"
F 24 "No" H 12150 -220 60 0001 L CNN "PressFit"
F 25 "Yes" H 12150 -310 60 0001 L CNN "Mounted"
F 26 " " H 12150 -400 60 0001 L CNN "Sense Comment"
F 27 "No" H 12150 -490 60 0001 L CNN "Sense"
F 28 " " H 12150 -580 60 0001 L CNN "Status Comment"
F 29 "No" H 12150 -670 60 0001 L CNN "Socket"
F 30 "Yes" H 12150 -760 60 0001 L CNN "SMD"
F 31 " " H 12150 -850 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 12150 -940 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270591001L" H 12150 -1030 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 12150 -1120 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 12150 -1300 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 12150 -1390 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 12150 -1480 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 12150 -1570 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 12150 -1660 60 0001 L CNN "License"
1 12150 2150
1 0 0 -1
$EndComp
Wire Wire Line
12500 950 13200 950
Text Label 5850 5400 0 50 ~ 10
FMC2_LA_17_P
Text Label 5850 5600 0 50 ~ 10
FMC2_LA_18_P
Text Label 5850 5200 0 50 ~ 10
FMC2_LA_19_P
Text Label 5850 4800 0 50 ~ 10
FMC2_LA_20_P
Text Label 5850 4000 0 50 ~ 10
FMC2_LA_21_P
Text Label 5850 6200 0 50 ~ 10
FMC2_LA_22_P
Text Label 5850 4200 0 50 ~ 10
FMC2_LA_24_P