-
Notifications
You must be signed in to change notification settings - Fork 6
/
I2C_MUX.sch
5208 lines (5208 loc) · 416 KB
/
I2C_MUX.sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
EESchema Schematic File Version 4
EELAYER 30 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 7 25
Title "Marble-Mini"
Date "2020-09-25"
Rev "v1.1"
Comp "Michał Gąska / WUT"
Comment1 ""
Comment2 ""
Comment3 "I2C MUX"
Comment4 ""
$EndDescr
$Comp
L marble_misc:TCA9548ARGER-Interface_Expansion U5
U 1 1 5C5DB690
P 5150 2900
F 0 "U5" H 5150 3978 50 0000 L CNN
F 1 "TCA9548ARGER" H 5150 3887 50 0000 L CNN
F 2 "Marble:QFN50P400X400X100-25N-S220" H 5150 1900 50 0001 C CNN
F 3 "http://www.ti.com/lit/ds/symlink/tca9548a.pdf" H 5200 3150 50 0001 C CNN
F 4 "TCA9548ARGER" H 5150 2900 50 0001 C CNN "Manufacturer Part Number"
F 5 "TEXAS INSTRUMENTS" H 5150 2900 50 0001 C CNN "Manufacturer"
F 6 "Yes" H 5150 2900 50 0001 C CNN "SMD"
1 5150 2900
1 0 0 -1
$EndComp
Text Notes 6050 2250 0 50 ~ 10
FMC1\n\n
Text Notes 6050 2450 0 50 ~ 10
FMC2\n\n
Text Notes 6600 2600 0 50 ~ 10
SFP1\n
Text Notes 6600 3250 0 50 ~ 10
SFP2\n\n
Text Notes 6600 3050 0 50 ~ 10
SFP3\n\n
Text Notes 6600 2800 0 50 ~ 10
SFP4\n
Wire Wire Line
5150 1700 5150 1800
Wire Wire Line
5050 1800 5150 1800
$Comp
L power:GND #PWR?
U 1 1 5C5F9FB4
P 4750 1800
AR Path="/5BD32060/5C5F9FB4" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C5F9FB4" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C5F9FB4" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C5F9FB4" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C5F9FB4" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C5F9FB4" Ref="#PWR?" Part="1"
AR Path="/5BCEDA3D/5C5F9FB4" Ref="#PWR064" Part="1"
F 0 "#PWR064" H 4750 1550 50 0001 C CNN
F 1 "GND" H 4755 1627 50 0000 C CNN
F 2 "" H 4750 1800 50 0001 C CNN
F 3 "" H 4750 1800 50 0001 C CNN
1 4750 1800
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5C5F9FD2
P 5150 3950
AR Path="/5BD32060/5C5F9FD2" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C5F9FD2" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C5F9FD2" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C5F9FD2" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C5F9FD2" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C5F9FD2" Ref="#PWR?" Part="1"
AR Path="/5BCEDA3D/5C5F9FD2" Ref="#PWR066" Part="1"
F 0 "#PWR066" H 5150 3700 50 0001 C CNN
F 1 "GND" H 5155 3777 50 0000 C CNN
F 2 "" H 5150 3950 50 0001 C CNN
F 3 "" H 5150 3950 50 0001 C CNN
1 5150 3950
1 0 0 -1
$EndComp
Wire Wire Line
5150 3900 5150 3950
Wire Wire Line
5150 1800 5150 2000
Connection ~ 5150 1800
Wire Wire Line
3550 2200 4050 2200
Wire Wire Line
3550 2300 4250 2300
Wire Wire Line
4600 3200 4650 3200
Wire Wire Line
4600 3300 4750 3300
Wire Wire Line
4600 3400 4750 3400
Text HLabel 7850 2700 2 50 BiDi ~ 10
I2C_SFP1_SDA
Text HLabel 7850 2600 2 50 Output ~ 10
I2C_SFP1_SCL
Text HLabel 7850 3300 2 50 BiDi ~ 10
I2C_SFP2_SDA
Text HLabel 7850 3200 2 50 Output ~ 10
I2C_SFP2_SCL
Text HLabel 7850 3100 2 50 BiDi ~ 10
I2C_SFP3_SDA
Text HLabel 7850 3000 2 50 Output ~ 10
I2C_SFP3_SCL
Text HLabel 7850 2900 2 50 BiDi ~ 10
I2C_SFP4_SDA
Text HLabel 7850 2800 2 50 Output ~ 10
I2C_SFP4_SCL
Text HLabel 7850 2200 2 50 Output ~ 10
I2C_FMC1_SCL
Text HLabel 7850 2300 2 50 BiDi ~ 10
I2C_FMC1_SDA
Text HLabel 7850 2400 2 50 Output ~ 10
I2C_FMC2_SCL
Text HLabel 7850 2500 2 50 BiDi ~ 10
I2C_FMC2_SDA
Wire Wire Line
6000 2550 6000 2600
Wire Wire Line
6000 2650 6000 2700
Wire Wire Line
6000 2750 6000 2800
Wire Wire Line
6000 2850 6000 2900
Wire Wire Line
6000 2950 6000 3000
Wire Wire Line
6000 3050 6000 3100
Wire Wire Line
6000 3150 6000 3200
Wire Wire Line
6000 3250 6000 3300
Wire Wire Line
5550 2600 6000 2600
Wire Wire Line
5550 2700 6000 2700
Wire Wire Line
5550 2800 6000 2800
Wire Wire Line
5550 2900 6000 2900
Wire Wire Line
5550 3000 6000 3000
Wire Wire Line
5550 3100 6000 3100
Wire Wire Line
5550 3200 6000 3200
Wire Wire Line
5550 3300 6000 3300
$Comp
L power:+3V3 #PWR?
U 1 1 5D1EE519
P 6300 1700
AR Path="/5BD32060/5D1EE519" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5D1EE519" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5D1EE519" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5D1EE519" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5D1EE519" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5D1EE519" Ref="#PWR?" Part="1"
AR Path="/5BCEDA3D/5D1EE519" Ref="#PWR067" Part="1"
F 0 "#PWR067" H 6300 1550 50 0001 C CNN
F 1 "+3V3" H 6315 1873 50 0000 C CNN
F 2 "" H 6300 1700 50 0001 C CNN
F 3 "" H 6300 1700 50 0001 C CNN
1 6300 1700
1 0 0 -1
$EndComp
Wire Wire Line
4250 1750 4250 1700
Wire Wire Line
4250 1700 4050 1700
Wire Wire Line
4050 1750 4050 1700
Wire Wire Line
4050 2050 4050 2200
Connection ~ 4050 2200
Wire Wire Line
4050 2200 4750 2200
Wire Wire Line
4250 2050 4250 2300
Connection ~ 4250 2300
Wire Wire Line
4250 2300 4750 2300
Wire Wire Line
4450 1750 4450 1700
Wire Wire Line
4450 1700 4250 1700
Connection ~ 4250 1700
Wire Wire Line
4450 2050 4450 2700
Wire Wire Line
4450 2700 4750 2700
Wire Wire Line
3550 2700 4450 2700
Connection ~ 4450 2700
$Comp
L power:GND #PWR?
U 1 1 5C2ECB8E
P 4100 3550
AR Path="/5BD32060/5C2ECB8E" Ref="#PWR?" Part="1"
AR Path="/5BABAC65/5C2ECB8E" Ref="#PWR?" Part="1"
AR Path="/5CC24E97/5C2ECB8E" Ref="#PWR?" Part="1"
AR Path="/5CC393D3/5C2ECB8E" Ref="#PWR?" Part="1"
AR Path="/5CC6DBF7/5C2ECB8E" Ref="#PWR?" Part="1"
AR Path="/5CC8AFE1/5C2ECB8E" Ref="#PWR?" Part="1"
AR Path="/5BCEDA3D/5C2ECB8E" Ref="#PWR063" Part="1"
F 0 "#PWR063" H 4100 3300 50 0001 C CNN
F 1 "GND" H 4105 3377 50 0000 C CNN
F 2 "" H 4100 3550 50 0001 C CNN
F 3 "" H 4100 3550 50 0001 C CNN
1 4100 3550
1 0 0 -1
$EndComp
Wire Wire Line
4300 3200 4100 3200
Wire Wire Line
4100 3200 4100 3300
Wire Wire Line
4300 3300 4100 3300
Connection ~ 4100 3300
Wire Wire Line
4100 3300 4100 3400
Wire Wire Line
4300 3400 4100 3400
Connection ~ 4100 3400
Text HLabel 3550 2300 0 50 BiDi ~ 10
I2C_FPGA_SDA
Text HLabel 3550 2200 0 50 Input ~ 10
I2C_FPGA_SCL
Wire Wire Line
6000 3550 6000 3600
Wire Wire Line
6000 3650 6000 3700
Wire Wire Line
5550 3600 6000 3600
Wire Wire Line
5550 3700 6000 3700
Text HLabel 7850 3600 2 50 Output ~ 10
I2C_HDMI_SCL
Text HLabel 7850 3700 2 50 BiDi ~ 10
I2C_HDMI_SDA
Text HLabel 3550 2700 0 50 Input ~ 10
I2C_FPGA_SW_RST
Text HLabel 7850 3500 2 50 BiDi ~ 10
I2C_APP_SDA
Text HLabel 7850 3400 2 50 Output ~ 10
I2C_APP_SCL
$Comp
L Resistors_SMD:R0402_0R_JUMPER R?
U 1 1 5C5A21E1
P 4600 3200
AR Path="/5C16BF8E/5DB9B7E6/5C5A21E1" Ref="R?" Part="1"
AR Path="/5BCEDA3D/5C5A21E1" Ref="R42" Part="1"
F 0 "R42" H 4950 3150 50 0000 C CNN
F 1 "R0402_0R_JUMPER" H 4600 2990 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 4600 2180 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 4600 2810 60 0001 L CNN
F 4 "0" H 4600 3150 50 0000 C CNN "Val"
F 5 "R0402_0R_JUMPER" H 4600 2720 60 0001 L CNN "Part Number"
F 6 "Resistor" H 4600 2630 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 4600 2540 60 0001 L CNN "Library Path"
F 8 "=Value" H 4600 2450 60 0001 L CNN "Comment"
F 9 "Standard" H 4600 2360 60 0001 L CNN "Component Kind"
F 10 "Standard" H 4600 2270 60 0001 L CNN "Component Type"
F 11 " " H 4600 2090 60 0001 L CNN "PackageDescription"
F 12 "2" H 4600 2000 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 4600 1910 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 4600 1820 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 4600 1640 60 0001 L CNN "Status"
F 16 " " H 4600 1550 60 0001 L CNN "Power"
F 17 " " H 4600 1460 60 0001 L CNN "TC"
F 18 " " H 4600 1370 60 0001 L CNN "Voltage"
F 19 " " H 4600 1280 60 0001 L CNN "Tolerance"
F 20 "1A (0.05R Max DC Resistance) Zero Ohm Jumper" H 4600 1190 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 4600 1100 60 0001 L CNN "Manufacturer"
F 22 "R0402_0R_JUMPER" H 4600 1010 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 4600 920 60 0001 L CNN "Case"
F 24 "No" H 4600 830 60 0001 L CNN "PressFit"
F 25 "Yes" H 4600 740 60 0001 L CNN "Mounted"
F 26 " " H 4600 650 60 0001 L CNN "Sense Comment"
F 27 "No" H 4600 560 60 0001 L CNN "Sense"
F 28 " " H 4600 470 60 0001 L CNN "Status Comment"
F 29 "No" H 4600 380 60 0001 L CNN "Socket"
F 30 "Yes" H 4600 290 60 0001 L CNN "SMD"
F 31 " " H 4600 200 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 4600 110 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270591001L" H 4600 20 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 4600 -70 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 4600 -250 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 4600 -340 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 4600 -430 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 4600 -520 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 4600 -610 60 0001 L CNN "License"
1 4600 3200
-1 0 0 1
$EndComp
$Comp
L Resistors_SMD:R0402_0R_JUMPER R?
U 1 1 5C5A40E6
P 4600 3300
AR Path="/5C16BF8E/5DB9B7E6/5C5A40E6" Ref="R?" Part="1"
AR Path="/5BCEDA3D/5C5A40E6" Ref="R43" Part="1"
F 0 "R43" H 4950 3250 50 0000 C CNN
F 1 "R0402_0R_JUMPER" H 4600 3090 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 4600 2280 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 4600 2910 60 0001 L CNN
F 4 "0" H 4600 3250 50 0000 C CNN "Val"
F 5 "R0402_0R_JUMPER" H 4600 2820 60 0001 L CNN "Part Number"
F 6 "Resistor" H 4600 2730 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 4600 2640 60 0001 L CNN "Library Path"
F 8 "=Value" H 4600 2550 60 0001 L CNN "Comment"
F 9 "Standard" H 4600 2460 60 0001 L CNN "Component Kind"
F 10 "Standard" H 4600 2370 60 0001 L CNN "Component Type"
F 11 " " H 4600 2190 60 0001 L CNN "PackageDescription"
F 12 "2" H 4600 2100 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 4600 2010 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 4600 1920 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 4600 1740 60 0001 L CNN "Status"
F 16 " " H 4600 1650 60 0001 L CNN "Power"
F 17 " " H 4600 1560 60 0001 L CNN "TC"
F 18 " " H 4600 1470 60 0001 L CNN "Voltage"
F 19 " " H 4600 1380 60 0001 L CNN "Tolerance"
F 20 "1A (0.05R Max DC Resistance) Zero Ohm Jumper" H 4600 1290 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 4600 1200 60 0001 L CNN "Manufacturer"
F 22 "R0402_0R_JUMPER" H 4600 1110 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 4600 1020 60 0001 L CNN "Case"
F 24 "No" H 4600 930 60 0001 L CNN "PressFit"
F 25 "Yes" H 4600 840 60 0001 L CNN "Mounted"
F 26 " " H 4600 750 60 0001 L CNN "Sense Comment"
F 27 "No" H 4600 660 60 0001 L CNN "Sense"
F 28 " " H 4600 570 60 0001 L CNN "Status Comment"
F 29 "No" H 4600 480 60 0001 L CNN "Socket"
F 30 "Yes" H 4600 390 60 0001 L CNN "SMD"
F 31 " " H 4600 300 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 4600 210 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270591001L" H 4600 120 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 4600 30 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 4600 -150 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 4600 -240 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 4600 -330 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 4600 -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 4600 -510 60 0001 L CNN "License"
1 4600 3300
-1 0 0 1
$EndComp
$Comp
L Resistors_SMD:R0402_0R_JUMPER R?
U 1 1 5C5A5FEE
P 4600 3400
AR Path="/5C16BF8E/5DB9B7E6/5C5A5FEE" Ref="R?" Part="1"
AR Path="/5BCEDA3D/5C5A5FEE" Ref="R44" Part="1"
F 0 "R44" H 4950 3350 50 0000 C CNN
F 1 "R0402_0R_JUMPER" H 4600 3190 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 4600 2380 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 4600 3010 60 0001 L CNN
F 4 "0" H 4600 3350 50 0000 C CNN "Val"
F 5 "R0402_0R_JUMPER" H 4600 2920 60 0001 L CNN "Part Number"
F 6 "Resistor" H 4600 2830 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 4600 2740 60 0001 L CNN "Library Path"
F 8 "=Value" H 4600 2650 60 0001 L CNN "Comment"
F 9 "Standard" H 4600 2560 60 0001 L CNN "Component Kind"
F 10 "Standard" H 4600 2470 60 0001 L CNN "Component Type"
F 11 " " H 4600 2290 60 0001 L CNN "PackageDescription"
F 12 "2" H 4600 2200 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 4600 2110 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 4600 2020 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 4600 1840 60 0001 L CNN "Status"
F 16 " " H 4600 1750 60 0001 L CNN "Power"
F 17 " " H 4600 1660 60 0001 L CNN "TC"
F 18 " " H 4600 1570 60 0001 L CNN "Voltage"
F 19 " " H 4600 1480 60 0001 L CNN "Tolerance"
F 20 "1A (0.05R Max DC Resistance) Zero Ohm Jumper" H 4600 1390 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 4600 1300 60 0001 L CNN "Manufacturer"
F 22 "R0402_0R_JUMPER" H 4600 1210 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 4600 1120 60 0001 L CNN "Case"
F 24 "No" H 4600 1030 60 0001 L CNN "PressFit"
F 25 "Yes" H 4600 940 60 0001 L CNN "Mounted"
F 26 " " H 4600 850 60 0001 L CNN "Sense Comment"
F 27 "No" H 4600 760 60 0001 L CNN "Sense"
F 28 " " H 4600 670 60 0001 L CNN "Status Comment"
F 29 "No" H 4600 580 60 0001 L CNN "Socket"
F 30 "Yes" H 4600 490 60 0001 L CNN "SMD"
F 31 " " H 4600 400 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 4600 310 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270591001L" H 4600 220 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 4600 130 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 4600 -50 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 4600 -140 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 4600 -230 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 4600 -320 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 4600 -410 60 0001 L CNN "License"
1 4600 3400
-1 0 0 1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R45
U 1 1 5C5ABFCC
P 6500 2150
F 0 "R45" H 6400 2150 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6500 1940 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6500 1130 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6500 1760 60 0001 L CNN
F 4 "22k" H 6900 2150 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6500 1670 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6500 1580 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6500 1490 60 0001 L CNN "Library Path"
F 8 "22k" H 6500 1400 60 0001 L CNN "Comment"
F 9 "Standard" H 6500 1310 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6500 1220 60 0001 L CNN "Component Type"
F 11 " " H 6500 1040 60 0001 L CNN "PackageDescription"
F 12 "2" H 6500 950 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6500 860 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6500 770 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6500 590 60 0001 L CNN "Status"
F 16 "0.0625W" H 6500 500 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6500 410 60 0001 L CNN "TC"
F 18 " " H 6500 320 60 0001 L CNN "Voltage"
F 19 "±1%" H 6500 230 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6500 140 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6500 50 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6500 -40 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6500 -130 60 0001 L CNN "Case"
F 24 "No" H 6500 -220 60 0001 L CNN "PressFit"
F 25 "Yes" H 6500 -310 60 0001 L CNN "Mounted"
F 26 " " H 6500 -400 60 0001 L CNN "Sense Comment"
F 27 "No" H 6500 -490 60 0001 L CNN "Sense"
F 28 " " H 6500 -580 60 0001 L CNN "Status Comment"
F 29 "No" H 6500 -670 60 0001 L CNN "Socket"
F 30 "Yes" H 6500 -760 60 0001 L CNN "SMD"
F 31 " " H 6500 -850 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6500 -940 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6500 -1030 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6500 -1120 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6500 -1300 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6500 -1390 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6500 -1480 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6500 -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 6500 -1660 60 0001 L CNN "License"
1 6500 2150
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R46
U 1 1 5C5B01D9
P 6500 2250
F 0 "R46" H 6400 2250 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6500 2040 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6500 1230 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6500 1860 60 0001 L CNN
F 4 "22k" H 6900 2250 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6500 1770 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6500 1680 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6500 1590 60 0001 L CNN "Library Path"
F 8 "22k" H 6500 1500 60 0001 L CNN "Comment"
F 9 "Standard" H 6500 1410 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6500 1320 60 0001 L CNN "Component Type"
F 11 " " H 6500 1140 60 0001 L CNN "PackageDescription"
F 12 "2" H 6500 1050 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6500 960 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6500 870 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6500 690 60 0001 L CNN "Status"
F 16 "0.0625W" H 6500 600 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6500 510 60 0001 L CNN "TC"
F 18 " " H 6500 420 60 0001 L CNN "Voltage"
F 19 "±1%" H 6500 330 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6500 240 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6500 150 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6500 60 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6500 -30 60 0001 L CNN "Case"
F 24 "No" H 6500 -120 60 0001 L CNN "PressFit"
F 25 "Yes" H 6500 -210 60 0001 L CNN "Mounted"
F 26 " " H 6500 -300 60 0001 L CNN "Sense Comment"
F 27 "No" H 6500 -390 60 0001 L CNN "Sense"
F 28 " " H 6500 -480 60 0001 L CNN "Status Comment"
F 29 "No" H 6500 -570 60 0001 L CNN "Socket"
F 30 "Yes" H 6500 -660 60 0001 L CNN "SMD"
F 31 " " H 6500 -750 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6500 -840 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6500 -930 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6500 -1020 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6500 -1200 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6500 -1290 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6500 -1380 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6500 -1470 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 6500 -1560 60 0001 L CNN "License"
1 6500 2250
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R47
U 1 1 5C5B20E3
P 6500 2350
F 0 "R47" H 6400 2350 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6500 2140 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6500 1330 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6500 1960 60 0001 L CNN
F 4 "22k" H 6900 2350 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6500 1870 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6500 1780 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6500 1690 60 0001 L CNN "Library Path"
F 8 "22k" H 6500 1600 60 0001 L CNN "Comment"
F 9 "Standard" H 6500 1510 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6500 1420 60 0001 L CNN "Component Type"
F 11 " " H 6500 1240 60 0001 L CNN "PackageDescription"
F 12 "2" H 6500 1150 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6500 1060 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6500 970 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6500 790 60 0001 L CNN "Status"
F 16 "0.0625W" H 6500 700 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6500 610 60 0001 L CNN "TC"
F 18 " " H 6500 520 60 0001 L CNN "Voltage"
F 19 "±1%" H 6500 430 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6500 340 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6500 250 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6500 160 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6500 70 60 0001 L CNN "Case"
F 24 "No" H 6500 -20 60 0001 L CNN "PressFit"
F 25 "Yes" H 6500 -110 60 0001 L CNN "Mounted"
F 26 " " H 6500 -200 60 0001 L CNN "Sense Comment"
F 27 "No" H 6500 -290 60 0001 L CNN "Sense"
F 28 " " H 6500 -380 60 0001 L CNN "Status Comment"
F 29 "No" H 6500 -470 60 0001 L CNN "Socket"
F 30 "Yes" H 6500 -560 60 0001 L CNN "SMD"
F 31 " " H 6500 -650 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6500 -740 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6500 -830 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6500 -920 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6500 -1100 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6500 -1190 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6500 -1280 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6500 -1370 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 6500 -1460 60 0001 L CNN "License"
1 6500 2350
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R48
U 1 1 5C5B3FEA
P 6500 2450
F 0 "R48" H 6400 2450 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6500 2240 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6500 1430 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6500 2060 60 0001 L CNN
F 4 "22k" H 6900 2450 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6500 1970 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6500 1880 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6500 1790 60 0001 L CNN "Library Path"
F 8 "22k" H 6500 1700 60 0001 L CNN "Comment"
F 9 "Standard" H 6500 1610 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6500 1520 60 0001 L CNN "Component Type"
F 11 " " H 6500 1340 60 0001 L CNN "PackageDescription"
F 12 "2" H 6500 1250 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6500 1160 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6500 1070 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6500 890 60 0001 L CNN "Status"
F 16 "0.0625W" H 6500 800 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6500 710 60 0001 L CNN "TC"
F 18 " " H 6500 620 60 0001 L CNN "Voltage"
F 19 "±1%" H 6500 530 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6500 440 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6500 350 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6500 260 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6500 170 60 0001 L CNN "Case"
F 24 "No" H 6500 80 60 0001 L CNN "PressFit"
F 25 "Yes" H 6500 -10 60 0001 L CNN "Mounted"
F 26 " " H 6500 -100 60 0001 L CNN "Sense Comment"
F 27 "No" H 6500 -190 60 0001 L CNN "Sense"
F 28 " " H 6500 -280 60 0001 L CNN "Status Comment"
F 29 "No" H 6500 -370 60 0001 L CNN "Socket"
F 30 "Yes" H 6500 -460 60 0001 L CNN "SMD"
F 31 " " H 6500 -550 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6500 -640 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6500 -730 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6500 -820 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6500 -1000 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6500 -1090 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6500 -1180 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6500 -1270 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 6500 -1360 60 0001 L CNN "License"
1 6500 2450
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R49
U 1 1 5C5B5EF0
P 6000 2550
F 0 "R49" H 5900 2550 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6000 2340 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 1530 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6000 2160 60 0001 L CNN
F 4 "22k" H 6400 2550 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6000 2070 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 1980 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 1890 60 0001 L CNN "Library Path"
F 8 "22k" H 6000 1800 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 1710 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 1620 60 0001 L CNN "Component Type"
F 11 " " H 6000 1440 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 1350 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 1260 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 1170 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 990 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 900 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 810 60 0001 L CNN "TC"
F 18 " " H 6000 720 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 630 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 540 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 450 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6000 360 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 270 60 0001 L CNN "Case"
F 24 "No" H 6000 180 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 90 60 0001 L CNN "Mounted"
F 26 " " H 6000 0 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 -90 60 0001 L CNN "Sense"
F 28 " " H 6000 -180 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 -270 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 -360 60 0001 L CNN "SMD"
F 31 " " H 6000 -450 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 -540 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6000 -630 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -720 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -900 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -990 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -1080 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -1170 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -1260 60 0001 L CNN "License"
1 6000 2550
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R50
U 1 1 5C5B7DF9
P 6000 2650
F 0 "R50" H 5900 2650 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6000 2440 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 1630 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6000 2260 60 0001 L CNN
F 4 "22k" H 6400 2650 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6000 2170 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 2080 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 1990 60 0001 L CNN "Library Path"
F 8 "22k" H 6000 1900 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 1810 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 1720 60 0001 L CNN "Component Type"
F 11 " " H 6000 1540 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 1450 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 1360 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 1270 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 1090 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 1000 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 910 60 0001 L CNN "TC"
F 18 " " H 6000 820 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 730 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 640 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 550 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6000 460 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 370 60 0001 L CNN "Case"
F 24 "No" H 6000 280 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 190 60 0001 L CNN "Mounted"
F 26 " " H 6000 100 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 10 60 0001 L CNN "Sense"
F 28 " " H 6000 -80 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 -170 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 -260 60 0001 L CNN "SMD"
F 31 " " H 6000 -350 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 -440 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6000 -530 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -620 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -800 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -890 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -980 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -1070 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -1160 60 0001 L CNN "License"
1 6000 2650
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R51
U 1 1 5C5B9D07
P 6000 2750
F 0 "R51" H 5900 2750 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6000 2540 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 1730 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6000 2360 60 0001 L CNN
F 4 "22k" H 6400 2750 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6000 2270 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 2180 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 2090 60 0001 L CNN "Library Path"
F 8 "22k" H 6000 2000 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 1910 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 1820 60 0001 L CNN "Component Type"
F 11 " " H 6000 1640 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 1550 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 1460 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 1370 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 1190 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 1100 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 1010 60 0001 L CNN "TC"
F 18 " " H 6000 920 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 830 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 740 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 650 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6000 560 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 470 60 0001 L CNN "Case"
F 24 "No" H 6000 380 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 290 60 0001 L CNN "Mounted"
F 26 " " H 6000 200 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 110 60 0001 L CNN "Sense"
F 28 " " H 6000 20 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 -70 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 -160 60 0001 L CNN "SMD"
F 31 " " H 6000 -250 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 -340 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6000 -430 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -520 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -700 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -790 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -880 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -970 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -1060 60 0001 L CNN "License"
1 6000 2750
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R52
U 1 1 5C5BBC14
P 6000 2850
F 0 "R52" H 5900 2850 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6000 2640 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 1830 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6000 2460 60 0001 L CNN
F 4 "22k" H 6400 2850 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6000 2370 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 2280 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 2190 60 0001 L CNN "Library Path"
F 8 "22k" H 6000 2100 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 2010 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 1920 60 0001 L CNN "Component Type"
F 11 " " H 6000 1740 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 1650 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 1560 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 1470 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 1290 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 1200 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 1110 60 0001 L CNN "TC"
F 18 " " H 6000 1020 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 930 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 840 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 750 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6000 660 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 570 60 0001 L CNN "Case"
F 24 "No" H 6000 480 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 390 60 0001 L CNN "Mounted"
F 26 " " H 6000 300 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 210 60 0001 L CNN "Sense"
F 28 " " H 6000 120 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 30 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 -60 60 0001 L CNN "SMD"
F 31 " " H 6000 -150 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 -240 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6000 -330 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -420 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -600 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -690 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -780 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -870 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -960 60 0001 L CNN "License"
1 6000 2850
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R53
U 1 1 5C5BDB24
P 6000 2950
F 0 "R53" H 5900 2950 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6000 2740 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 1930 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6000 2560 60 0001 L CNN
F 4 "22k" H 6400 2950 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6000 2470 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 2380 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 2290 60 0001 L CNN "Library Path"
F 8 "22k" H 6000 2200 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 2110 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 2020 60 0001 L CNN "Component Type"
F 11 " " H 6000 1840 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 1750 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 1660 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 1570 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 1390 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 1300 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 1210 60 0001 L CNN "TC"
F 18 " " H 6000 1120 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 1030 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 940 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 850 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6000 760 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 670 60 0001 L CNN "Case"
F 24 "No" H 6000 580 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 490 60 0001 L CNN "Mounted"
F 26 " " H 6000 400 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 310 60 0001 L CNN "Sense"
F 28 " " H 6000 220 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 130 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 40 60 0001 L CNN "SMD"
F 31 " " H 6000 -50 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 -140 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6000 -230 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -320 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -500 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -590 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -680 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -770 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -860 60 0001 L CNN "License"
1 6000 2950
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R54
U 1 1 5C5BFA31
P 6000 3050
F 0 "R54" H 5900 3050 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6000 2840 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 2030 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6000 2660 60 0001 L CNN
F 4 "22k" H 6400 3050 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6000 2570 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 2480 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 2390 60 0001 L CNN "Library Path"
F 8 "22k" H 6000 2300 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 2210 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 2120 60 0001 L CNN "Component Type"
F 11 " " H 6000 1940 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 1850 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 1760 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 1670 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 1490 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 1400 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 1310 60 0001 L CNN "TC"
F 18 " " H 6000 1220 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 1130 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 1040 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 950 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6000 860 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 770 60 0001 L CNN "Case"
F 24 "No" H 6000 680 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 590 60 0001 L CNN "Mounted"
F 26 " " H 6000 500 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 410 60 0001 L CNN "Sense"
F 28 " " H 6000 320 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 230 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 140 60 0001 L CNN "SMD"
F 31 " " H 6000 50 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 -40 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6000 -130 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -220 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -400 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -490 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -580 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -670 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -760 60 0001 L CNN "License"
1 6000 3050
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R55
U 1 1 5C5C193D
P 6000 3150
F 0 "R55" H 5900 3150 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6000 2940 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 2130 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6000 2760 60 0001 L CNN
F 4 "22k" H 6400 3150 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6000 2670 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 2580 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 2490 60 0001 L CNN "Library Path"
F 8 "22k" H 6000 2400 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 2310 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 2220 60 0001 L CNN "Component Type"
F 11 " " H 6000 2040 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 1950 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 1860 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 1770 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 1590 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 1500 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 1410 60 0001 L CNN "TC"
F 18 " " H 6000 1320 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 1230 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 1140 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 1050 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6000 960 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 870 60 0001 L CNN "Case"
F 24 "No" H 6000 780 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 690 60 0001 L CNN "Mounted"
F 26 " " H 6000 600 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 510 60 0001 L CNN "Sense"
F 28 " " H 6000 420 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 330 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 240 60 0001 L CNN "SMD"
F 31 " " H 6000 150 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 60 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6000 -30 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -120 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -300 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -390 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -480 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -570 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -660 60 0001 L CNN "License"
1 6000 3150
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R56
U 1 1 5C5C384C
P 6000 3250
F 0 "R56" H 5900 3250 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6000 3040 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6000 2230 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6000 2860 60 0001 L CNN
F 4 "22k" H 6400 3250 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6000 2770 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6000 2680 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6000 2590 60 0001 L CNN "Library Path"
F 8 "22k" H 6000 2500 60 0001 L CNN "Comment"
F 9 "Standard" H 6000 2410 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6000 2320 60 0001 L CNN "Component Type"
F 11 " " H 6000 2140 60 0001 L CNN "PackageDescription"
F 12 "2" H 6000 2050 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6000 1960 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6000 1870 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6000 1690 60 0001 L CNN "Status"
F 16 "0.0625W" H 6000 1600 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6000 1510 60 0001 L CNN "TC"
F 18 " " H 6000 1420 60 0001 L CNN "Voltage"
F 19 "±1%" H 6000 1330 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6000 1240 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6000 1150 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6000 1060 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6000 970 60 0001 L CNN "Case"
F 24 "No" H 6000 880 60 0001 L CNN "PressFit"
F 25 "Yes" H 6000 790 60 0001 L CNN "Mounted"
F 26 " " H 6000 700 60 0001 L CNN "Sense Comment"
F 27 "No" H 6000 610 60 0001 L CNN "Sense"
F 28 " " H 6000 520 60 0001 L CNN "Status Comment"
F 29 "No" H 6000 430 60 0001 L CNN "Socket"
F 30 "Yes" H 6000 340 60 0001 L CNN "SMD"
F 31 " " H 6000 250 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6000 160 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6000 70 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6000 -20 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 35 "CERN DEM JLC" H 6000 -200 60 0001 L CNN "Author"
F 36 "12/03/07 00:00:00" H 6000 -290 60 0001 L CNN "CreateDate"
F 37 "10/17/12 00:00:00" H 6000 -380 60 0001 L CNN "LatestRevisionDate"
F 38 "Resistors SMD" H 6000 -470 60 0001 L CNN "Library Name"
F 39 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 6000 -560 60 0001 L CNN "License"
1 6000 3250
1 0 0 -1
$EndComp
$Comp
L Resistors_SMD:R0402_22K_1%_0.0625W_100PPM R57
U 1 1 5C5C575C
P 6500 3350
F 0 "R57" H 6400 3350 50 0000 C CNN
F 1 "R0402_22K_1%_0.0625W_100PPM" H 6500 3140 60 0001 L CNN
F 2 "Marble:RESC1005X40N" H 6500 2330 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\R0402_Phycomp_RC0402.pdf" H 6500 2960 60 0001 L CNN
F 4 "22k" H 6900 3350 50 0000 C CNN "Val"
F 5 "R0402_22K_1%_0.0625W_100PPM" H 6500 2870 60 0001 L CNN "Part Number"
F 6 "Resistor - 1%" H 6500 2780 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Resistors.SchLib" H 6500 2690 60 0001 L CNN "Library Path"
F 8 "22k" H 6500 2600 60 0001 L CNN "Comment"
F 9 "Standard" H 6500 2510 60 0001 L CNN "Component Kind"
F 10 "Standard" H 6500 2420 60 0001 L CNN "Component Type"
F 11 " " H 6500 2240 60 0001 L CNN "PackageDescription"
F 12 "2" H 6500 2150 60 0001 L CNN "Pin Count"
F 13 "PcbLib\\Resistors SMD.PcbLib" H 6500 2060 60 0001 L CNN "Footprint Path"
F 14 "RESC1005X40N" H 6500 1970 60 0001 L CNN "Footprint Ref"
F 15 "Not Recommended" H 6500 1790 60 0001 L CNN "Status"
F 16 "0.0625W" H 6500 1700 60 0001 L CNN "Power"
F 17 "±100ppm/°C" H 6500 1610 60 0001 L CNN "TC"
F 18 " " H 6500 1520 60 0001 L CNN "Voltage"
F 19 "±1%" H 6500 1430 60 0001 L CNN "Tolerance"
F 20 "General Purpose Thick Film Chip Resistor" H 6500 1340 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 6500 1250 60 0001 L CNN "Manufacturer"
F 22 "R0402_22K_1%_0.0625W_100PPM" H 6500 1160 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 6500 1070 60 0001 L CNN "Case"
F 24 "No" H 6500 980 60 0001 L CNN "PressFit"
F 25 "Yes" H 6500 890 60 0001 L CNN "Mounted"
F 26 " " H 6500 800 60 0001 L CNN "Sense Comment"
F 27 "No" H 6500 710 60 0001 L CNN "Sense"
F 28 " " H 6500 620 60 0001 L CNN "Status Comment"
F 29 "No" H 6500 530 60 0001 L CNN "Socket"
F 30 "Yes" H 6500 440 60 0001 L CNN "SMD"
F 31 " " H 6500 350 60 0001 L CNN "ComponentHeight"
F 32 "YAGEO PHYCOMP" H 6500 260 60 0001 L CNN "Manufacturer1 Example"
F 33 "232270672203L" H 6500 170 60 0001 L CNN "Manufacturer1 Part Number"
F 34 "0.4mm" H 6500 80 60 0001 L CNN "Manufacturer1 ComponentHeight"