-
Notifications
You must be signed in to change notification settings - Fork 0
/
generator_5351_rect_sine.net
3789 lines (3789 loc) · 154 KB
/
generator_5351_rect_sine.net
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
(export (version D)
(design
(source /home/msboss/Documents/kicad/project/generator_5351_rect_sine/generator_5351_rect_sine/generator_5351_rect_sine.sch)
(date Út 31. července 2018, 21:59:37 CEST)
(tool "Eeschema 6.0.0-rc1-unknown-16b5f40~65~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source generator_5351_rect_sine.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /ANALOG/) (tstamps /5B04B147/)
(title_block
(title)
(company)
(rev)
(date)
(source ANALOG.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /ANALOG/200_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B05369F/)
(title_block
(title)
(company)
(rev)
(date)
(source 200_MHz_Legendre_LPF.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /ANALOG/200_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536AC/)
(title_block
(title)
(company)
(rev)
(date)
(source 200_MHz_Legendre_LPF.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/)
(title_block
(title)
(company)
(rev)
(date)
(source 100_MHz_Legendre_LPF.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/)
(title_block
(title)
(company)
(rev)
(date)
(source RF_AMPLIFIER.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /ANALOG/RF_AMPLIFIER/RF_GAIN_SWITCH_1/) (tstamps /5B04B147/5B0536E4/5AF6187F/)
(title_block
(title)
(company)
(rev)
(date)
(source HF_Switch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name /ANALOG/RF_AMPLIFIER/RF_GAIN_SWITCH_2/) (tstamps /5B04B147/5B0536E4/5AF637FC/)
(title_block
(title)
(company)
(rev)
(date)
(source HF_Switch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name /ANALOG/100_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536F2/)
(title_block
(title)
(company)
(rev)
(date)
(source 100_MHz_Legendre_LPF.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 10) (name /ANALOG/IAM81008_MIXER/) (tstamps /5B04B147/5B0536F9/)
(title_block
(title)
(company)
(rev)
(date)
(source IAM81008_MIXER.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 11) (name /ANALOG/HF_Switch_1/) (tstamps /5B04B147/5B053761/)
(title_block
(title)
(company)
(rev)
(date)
(source HF_Switch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 12) (name /ANALOG/HF_Switch_2/) (tstamps /5B04B147/5B053788/)
(title_block
(title)
(company)
(rev)
(date)
(source HF_Switch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 13) (name /ANALOG/200_MHz_Legendre_LPF_3/) (tstamps /5B04B147/5B053798/)
(title_block
(title)
(company)
(rev)
(date)
(source 200_MHz_Legendre_LPF.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 14) (name /ANALOG/HF_Switch_3/) (tstamps /5B04B147/5B0537A3/)
(title_block
(title)
(company)
(rev)
(date)
(source HF_Switch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 15) (name /ANALOG/HF_Switch_4/) (tstamps /5B04B147/5B0537D0/)
(title_block
(title)
(company)
(rev)
(date)
(source HF_Switch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 16) (name /ANALOG/HF_Switch_5/) (tstamps /5B04B147/5B0537E6/)
(title_block
(title)
(company)
(rev)
(date)
(source HF_Switch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 17) (name /ANALOG/HF_Switch_6/) (tstamps /5B04B147/5B053818/)
(title_block
(title)
(company)
(rev)
(date)
(source HF_Switch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 18) (name /ANALOG/ATTENUATOR/) (tstamps /5B04B147/5B0537F7/)
(title_block
(title)
(company)
(rev)
(date)
(source ATTENUATOR.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 19) (name /PLL/) (tstamps /5B057C26/)
(title_block
(title)
(company)
(rev)
(date)
(source PLL.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 20) (name /DISPLAY/) (tstamps /5B057D2B/)
(title_block
(title)
(company)
(rev)
(date)
(source DISPLAY.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 21) (name /BUTTONS/) (tstamps /5B057D2E/)
(title_block
(title)
(company)
(rev)
(date)
(source BUTTONS.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 22) (name /RF_DETECTOR/) (tstamps /5B17DD05/)
(title_block
(title)
(company)
(rev)
(date)
(source RF_detector.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 23) (name /MICROCONTROLLER/) (tstamps /5B057C23/)
(title_block
(title)
(company)
(rev)
(date)
(source MICROCONTROLLER.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J101)
(value Conn_Coaxial)
(footprint petr_kicad:Molex_SMA_Jack_Edge_Mount_Chinese)
(libsource (lib kicad_petr_inherited) (part Conn_Coaxial) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B1DC298))
(comp (ref J102)
(value Conn_01x05)
(footprint Connector_JST:JST_VH_B5PS-VH_1x05_P3.96mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x05) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5B240B28))
(comp (ref J103)
(value Conn_01x04)
(footprint Connector_JST:JST_VH_B4PS-VH_1x04_P3.96mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5B240C6B))
(comp (ref J104)
(value USB_B_Mini)
(footprint Connector_USB:USB_Mini-B_Lumberg_2486_01_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part USB_B_Mini) (description "USB Mini Type B connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5B20CB76))
(comp (ref U101)
(value AMS1117-3.3)
(footprint Package_TO_SOT_SMD:SOT-223-3_TabPin2)
(datasheet http://www.ti.com/lit/ds/symlink/lm1117.pdf)
(libsource (lib kicad_petr_inherited) (part AMS1117-3.3) (description "800mA Low-Dropout Linear Regulator, 3.3V fixed output, TO-220/TO-252/TO-263/SOT-223"))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B712A))
(comp (ref C102)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B7131))
(comp (ref C101)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B7138))
(comp (ref MK101)
(value Mounting_Hole)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad)
(libsource (lib "") (part Mounting_Hole_PAD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B2E52BC))
(comp (ref MK102)
(value Mounting_Hole)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad)
(libsource (lib "") (part Mounting_Hole_PAD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B2E5334))
(comp (ref MK103)
(value Mounting_Hole)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad)
(libsource (lib "") (part Mounting_Hole_PAD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B2E535E))
(comp (ref MK104)
(value Mounting_Hole)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad)
(libsource (lib "") (part Mounting_Hole_PAD) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B2E5386))
(comp (ref R207)
(value 50)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B0536C9))
(comp (ref C201)
(value 10n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B0536D2))
(comp (ref R202)
(value 51)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053712))
(comp (ref R205)
(value 56)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053719))
(comp (ref R204)
(value 750)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053720))
(comp (ref R206)
(value 100)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053727))
(comp (ref R201)
(value 1k5)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B05372E))
(comp (ref R203)
(value 100)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053735))
(comp (ref R208)
(value 51)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053776))
(comp (ref C202)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B0537FD))
(comp (ref D203)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B05381E))
(comp (ref D204)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053825))
(comp (ref D208)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B05382C))
(comp (ref D207)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053833))
(comp (ref R212)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B05383A))
(comp (ref R213)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B053841))
(comp (ref R209)
(value 51)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B05385C))
(comp (ref L203)
(value 150n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(libsource (lib pspice) (part INDUCTOR) (description ""))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B13EE4B))
(comp (ref L202)
(value 150n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(libsource (lib pspice) (part INDUCTOR) (description ""))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B143172))
(comp (ref L201)
(value 220n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(libsource (lib pspice) (part INDUCTOR) (description ""))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B15D735))
(comp (ref D202)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B16C2BD))
(comp (ref D206)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B16C2C4))
(comp (ref R211)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B16C2CB))
(comp (ref D201)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B171AD8))
(comp (ref D205)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B171ADF))
(comp (ref R210)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B171AE6))
(comp (ref R215)
(value 51)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B2E891B))
(comp (ref R214)
(value 51)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B2E89DC))
(comp (ref R216)
(value 51)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/) (tstamps /5B04B147/))
(tstamp 5B2E8A34))
(comp (ref L301)
(value 33n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B05369F/))
(tstamp 5AF1FB13))
(comp (ref C301)
(value 24p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B05369F/))
(tstamp 5B31A953))
(comp (ref L302)
(value 82n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B05369F/))
(tstamp 5B31A954))
(comp (ref L303)
(value 82n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B05369F/))
(tstamp 5B31A955))
(comp (ref L304)
(value 82n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B05369F/))
(tstamp 5B31A956))
(comp (ref C302)
(value 27p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B05369F/))
(tstamp 5B31A957))
(comp (ref C303)
(value 24p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B05369F/))
(tstamp 5B31A958))
(comp (ref L401)
(value 33n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536AC/))
(tstamp 5AF1FB13))
(comp (ref C401)
(value 24p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536AC/))
(tstamp 5B31A953))
(comp (ref L402)
(value 82n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536AC/))
(tstamp 5B31A954))
(comp (ref L403)
(value 82n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536AC/))
(tstamp 5B31A955))
(comp (ref L404)
(value 82n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536AC/))
(tstamp 5B31A956))
(comp (ref C402)
(value 27p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536AC/))
(tstamp 5B31A957))
(comp (ref C403)
(value 24p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/200_MHz_Legendre_LPF_2/) (tstamps /5B04B147/5B0536AC/))
(tstamp 5B31A958))
(comp (ref L501)
(value 68n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5B31A952))
(comp (ref C501)
(value 47p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF1FF7B))
(comp (ref L502)
(value 150n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF20118))
(comp (ref L503)
(value 150n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF2013B))
(comp (ref L505)
(value 150n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF20238))
(comp (ref C502)
(value 47p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF2027D))
(comp (ref C504)
(value 47p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF202A6))
(comp (ref C503)
(value 6p8)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF26DDB))
(comp (ref C505)
(value 3p3)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF28B0F))
(comp (ref L504)
(value 33n)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /ANALOG/100_MHz_Legendre_LPF_1/) (tstamps /5B04B147/5B0536B9/))
(tstamp 5AF45F5B))
(comp (ref C611)
(value 10n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF34184))
(comp (ref C612)
(value 10n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF34219))
(comp (ref C613)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF342BE))
(comp (ref C617)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF348C6))
(comp (ref C616)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF349DA))
(comp (ref C619)
(value 10n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF35108))
(comp (ref Q614)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23_Handsoldering)
(datasheet http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(libsource (lib kicad_petr_inherited) (part BC817) (description "45V Vce, 0.8A Ic, NPN, SOT-23"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF361D3))
(comp (ref Q613)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23_Handsoldering)
(datasheet http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(libsource (lib kicad_petr_inherited) (part BC817) (description "45V Vce, 0.8A Ic, NPN, SOT-23"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF363D8))
(comp (ref R624)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF36752))
(comp (ref R625)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF367A5))
(comp (ref R621)
(value 47k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF37FBD))
(comp (ref Q616)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23_Handsoldering)
(datasheet http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(libsource (lib kicad_petr_inherited) (part BC817) (description "45V Vce, 0.8A Ic, NPN, SOT-23"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF38FEA))
(comp (ref Q615)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23_Handsoldering)
(datasheet http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(libsource (lib kicad_petr_inherited) (part BC817) (description "45V Vce, 0.8A Ic, NPN, SOT-23"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF38FF1))
(comp (ref R627)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF38FF8))
(comp (ref R628)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF38FFF))
(comp (ref R626)
(value 68k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF39012))
(comp (ref U601)
(value NE612)
(footprint Package_SO:SO-8_5.3x6.2mm_P1.27mm)
(datasheet https://www.nxp.com/docs/en/data-sheet/SA612A.pdf)
(libsource (lib petr_kicad) (part NE612) (description "NE612 dual balanced mixer 500 MHz"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF3FD52))
(comp (ref U602)
(value NE612)
(footprint Package_SO:SO-8_5.3x6.2mm_P1.27mm)
(datasheet https://www.nxp.com/docs/en/data-sheet/SA612A.pdf)
(libsource (lib petr_kicad) (part NE612) (description "NE612 dual balanced mixer 500 MHz"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF3FDE3))
(comp (ref Q603)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF406A5))
(comp (ref Q604)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF4084E))
(comp (ref R611)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF42EE2))
(comp (ref R604)
(value 22)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF42F89))
(comp (ref R605)
(value 22)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF42FFB))
(comp (ref T601)
(value TC-1T+)
(footprint petr_kicad:AT224-1A)
(datasheet https://ww2.minicircuits.com/pdfs/TC1-1T+.pdf)
(libsource (lib kicad_petr_inherited) (part TC-1T+) (description "RF transformer, 1:2 ratio, one winding with tap, balun"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF4309F))
(comp (ref Q610)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF47AF1))
(comp (ref Q611)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF47BBA))
(comp (ref R618)
(value 15)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF47C14))
(comp (ref R619)
(value 15)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF47C78))
(comp (ref Q612)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF4DA21))
(comp (ref R620)
(value 330)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF4FBC9))
(comp (ref R617)
(value 1k5)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF50C48))
(comp (ref Q601)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF684F1))
(comp (ref Q602)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF68589))
(comp (ref Q606)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF6EB56))
(comp (ref Q607)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF6EC4A))
(comp (ref Q608)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF72249))
(comp (ref Q609)
(value 2SC5773)
(footprint Package_TO_SOT_SMD:SC-59_Handsoldering)
(datasheet https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCCS00915/RNCCS01986-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0)
(libsource (lib kicad_petr_inherited) (part 2SC5773) (description "10 GHz 6V 50mA RF NPN transistor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF72319))
(comp (ref R614)
(value 47)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF79A4B))
(comp (ref R613)
(value 1k5)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF79ACF))
(comp (ref R615)
(value 47)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF79CF9))
(comp (ref R616)
(value 1k5)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF79D9D))
(comp (ref C609)
(value 100p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF86F93))
(comp (ref C615)
(value 100p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.33x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /ANALOG/RF_AMPLIFIER/) (tstamps /5B04B147/5B0536E4/))
(tstamp 5AF88EC1))