-
Notifications
You must be signed in to change notification settings - Fork 4
/
vhf_uhf_IQ_Modulator_V4.net
1013 lines (1013 loc) · 35.3 KB
/
vhf_uhf_IQ_Modulator_V4.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/anton/Documents/kicad/IQ_Modulator/vhf_uhf_IQ_Modulator_V4.sch)
(date "Wed 01 Aug 2018 13:28:29 SAST")
(tool "Eeschema 4.0.7-e2-6376~61~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "IQ modulator 300 to 1.5Ghz")
(company "Giga Technology")
(rev V1.0)
(date 2018-06-01)
(source vhf_uhf_IQ_Modulator_V4.sch)
(comment (number 1) (value "This Board is a an RF transmitter board for VHF and UHF"))
(comment (number 2) (value "2m and 70cm filter"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value TRF3701)
(footprint trf3701_17_pin:VQFN-16_3x3mm_trf3701_new)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part TRF3701))
(sheetpath (names /) (tstamps /))
(tstamp 59F85658))
(comp (ref J5)
(value "SMA Edge FM")
(footprint Connectors_Molex:Molex_SMA_Jack_Edge_Mount)
(libsource (lib conn) (part Conn_Coaxial))
(sheetpath (names /) (tstamps /))
(tstamp 59F85ADB))
(comp (ref R12)
(value 0)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A02FCE5))
(comp (ref R9)
(value 0)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A02FD88))
(comp (ref R11)
(value OC)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A02FDE4))
(comp (ref C15)
(value "1uF 16V")
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A12EB2B))
(comp (ref C20)
(value "1uF 16V")
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A12EB9E))
(comp (ref C17)
(value "1uF 16V")
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A12EC21))
(comp (ref C10)
(value "4.7uF 16V")
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A12ECC9))
(comp (ref J2)
(value TEST_1P)
(footprint Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm)
(libsource (lib conn) (part TEST_1P))
(sheetpath (names /) (tstamps /))
(tstamp 5A135576))
(comp (ref U4)
(value "Orange Pi zero")
(footprint orangepi-zero:orangepi-zero)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part orange_pi_zero))
(sheetpath (names /) (tstamps /))
(tstamp 5A1419F8))
(comp (ref C8)
(value "10uF 16V")
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A144B5B))
(comp (ref C5)
(value "10uF 16V")
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A144C1C))
(comp (ref J3)
(value Audio-Jack-3)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib conn) (part Audio-Jack-3))
(sheetpath (names /) (tstamps /))
(tstamp 5A144DBC))
(comp (ref C23)
(value "10uF 16V")
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A144F72))
(comp (ref C25)
(value "10uF 16V")
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A145006))
(comp (ref R2)
(value 1K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A14564C))
(comp (ref R5)
(value 1K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A1456FE))
(comp (ref C6)
(value 2200pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A14576C))
(comp (ref C11)
(value 2200pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A145813))
(comp (ref R3)
(value 1K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A1458B6))
(comp (ref R6)
(value 1K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A145968))
(comp (ref C7)
(value 2200pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A145A03))
(comp (ref C12)
(value 2200pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A145A97))
(comp (ref RV2)
(value 4k7)
(footprint Potentiometer_SMD:Potentiometer_Bourns_3314G_Vertical)
(libsource (lib device) (part POT))
(sheetpath (names /) (tstamps /))
(tstamp 5A147320))
(comp (ref RV1)
(value 4k7)
(footprint Potentiometer_SMD:Potentiometer_Bourns_3314G_Vertical)
(libsource (lib device) (part POT))
(sheetpath (names /) (tstamps /))
(tstamp 5A1473F1))
(comp (ref C3)
(value "1uF 16V")
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A1CB46E))
(comp (ref C2)
(value "1uF 16V")
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A1CB572))
(comp (ref C19)
(value 220pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A2320AC))
(comp (ref L4)
(value 33nH)
(footprint Inductors_SMD:L_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5A23227E))
(comp (ref L5)
(value 33nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5A23232D))
(comp (ref C22)
(value 33pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A2325C7))
(comp (ref C26)
(value 220pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A2340C4))
(comp (ref L2)
(value 33nH)
(footprint Inductors_SMD:L_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5A234D73))
(comp (ref C9)
(value 1nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A235053))
(comp (ref L3)
(value 22nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5A23574E))
(comp (ref C18)
(value 27pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A23633B))
(comp (ref C24)
(value 15pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A236655))
(comp (ref C21)
(value 100pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A236740))
(comp (ref L1)
(value 33nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5A2373B0))
(comp (ref C4)
(value 3.3pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A2374AB))
(comp (ref C16)
(value 100pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A238059))
(comp (ref R10)
(value 2k2)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A2384AF))
(comp (ref R4)
(value 1k8)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A2385C4))
(comp (ref U2)
(value MMZ09332BT1)
(footprint QFN-12-1EP_3x3mm:QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part MMZ09332BT1))
(sheetpath (names /) (tstamps /))
(tstamp 5A239B90))
(comp (ref U5)
(value MCP3421A0T-E/CH)
(footprint TO_SOT_Packages_SMD:SOT-23-6_Handsoldering)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part MCP3421A0T-E/CH-RESCUE-vhf_uhf_IQ_Modulator))
(sheetpath (names /) (tstamps /))
(tstamp 5A83B056))
(comp (ref L6)
(value 56nH)
(footprint Inductors_SMD:L_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5B151B31))
(comp (ref L7)
(value 110nH)
(footprint Inductors_SMD:L_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5B1542F0))
(comp (ref L8)
(value 110nH)
(footprint Inductors_SMD:L_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5B155BA0))
(comp (ref L9)
(value 56nH)
(footprint Inductors_SMD:L_0805_HandSoldering)
(libsource (lib device) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5B15724B))
(comp (ref C29)
(value 33pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B19BB6D))
(comp (ref C30)
(value 33pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B19E901))
(comp (ref C31)
(value 33pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B19EA12))
(comp (ref C13)
(value "1uF 16V")
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5B132157))
(comp (ref C1)
(value "1uF 16V")
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5B13337B))
(comp (ref C27)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B135DB3))
(comp (ref C28)
(value "10uF 16V")
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B136BBE))
(comp (ref R15)
(value 6k5)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B13E3C9))
(comp (ref R16)
(value 6k5)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B13E50A))
(comp (ref J4)
(value CONN_01X04)
(footprint Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x04))
(sheetpath (names /) (tstamps /))
(tstamp 5B1427AD))
(comp (ref Q2)
(value BC817-40)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5B14410F))
(comp (ref Q3)
(value BC817-40)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5B144257))
(comp (ref Q1)
(value BC817-40)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5B146418))
(comp (ref R1)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B146915))
(comp (ref R7)
(value 6k8)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B14B0D6))
(comp (ref R13)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B14FC93))
(comp (ref R8)
(value 6k8)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B154EB3))
(comp (ref R14)
(value 6k8)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B15616F))
(comp (ref C14)
(value 1nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B15B332))
(comp (ref U3)
(value Si570)
(footprint Oscillators:Oscillator_SMD_SI570_SI571_HandSoldering)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part Si570))
(sheetpath (names /) (tstamps /))
(tstamp 5B1752A8))
(comp (ref J1)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib vhf_uhf_IQ_Modulator_V4-cache) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 5B178180))
(comp (ref R17)
(value 4k7)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B1F16F5)))
(libparts
(libpart (lib conn) (part Audio-Jack-3)
(description "3-pin audio jack receptable (stereo/TRS connector)")
(docs ~)
(fields
(field (name Reference) J)
(field (name Value) Audio-Jack-3))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib vhf_uhf_IQ_Modulator_V4-cache) (part BC817-40)
(aliases
(alias BC818-40))
(footprints
(fp SOT-23*))
(fields
(field (name Reference) Q)
(field (name Value) BC817-40)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib vhf_uhf_IQ_Modulator_V4-cache) (part CONN_01X03)
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib device) (part CP)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part CP_Small)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part Conn_01x04)
(description "Generic connector, single row, 01x04")
(docs ~)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib conn) (part Conn_Coaxial)
(description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)")
(footprints
(fp *BNC*)
(fp *SMA*)
(fp *SMB*)
(fp *SMC*)
(fp *Cinch*))
(fields
(field (name Reference) J)
(field (name Value) Conn_Coaxial))
(pins
(pin (num 1) (name In) (type passive))
(pin (num 2) (name Ext) (type passive))))
(libpart (lib device) (part L)
(description Inductor)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib vhf_uhf_IQ_Modulator_V4-cache) (part MCP3421A0T-E/CH-RESCUE-vhf_uhf_IQ_Modulator)
(footprints
(fp SOT-23*)
(fp SOT-23*))
(fields
(field (name Reference) U)
(field (name Value) MCP3421A0T-E/CH-RESCUE-vhf_uhf_IQ_Modulator))
(pins
(pin (num 1) (name Vin+) (type passive))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name SCL) (type input))
(pin (num 4) (name SDA) (type BiDi))
(pin (num 5) (name VDD) (type power_in))
(pin (num 6) (name Vin-) (type passive))))
(libpart (lib vhf_uhf_IQ_Modulator_V4-cache) (part MMZ09332BT1)
(fields
(field (name Reference) U)
(field (name Value) MMZ09332BT1))
(pins
(pin (num 1) (name Vba1) (type input))
(pin (num 2) (name Vbias) (type input))
(pin (num 3) (name RFin) (type input))
(pin (num 4) (name N/C) (type input))
(pin (num 5) (name N/C) (type input))
(pin (num 6) (name Pdet) (type input))
(pin (num 7) (name VCC2/RFout) (type BiDi))
(pin (num 8) (name VCC2/RFout) (type BiDi))
(pin (num 9) (name VCC2/RFout) (type BiDi))
(pin (num 10) (name Pow_Down) (type input))
(pin (num 11) (name VCC1) (type power_in))
(pin (num 12) (name Vba2) (type input))
(pin (num 13) (name GND) (type input))))
(libpart (lib device) (part POT)
(description Potentiometer)
(footprints
(fp Potentiometer*))
(fields
(field (name Reference) RV)
(field (name Value) POT))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib vhf_uhf_IQ_Modulator_V4-cache) (part Si570)
(footprints
(fp Oscillator*SI570*SI571*))
(fields
(field (name Reference) U)
(field (name Value) Si570)
(field (name Footprint) Oscillators:Oscillator_SI570_SI571_Standard))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 2) (name OE) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name CLK+) (type output))
(pin (num 5) (name CLK-) (type output))
(pin (num 6) (name Vcc) (type power_in))
(pin (num 7) (name SDA) (type BiDi))
(pin (num 8) (name SCL) (type BiDi))))
(libpart (lib conn) (part TEST_1P)
(description point)
(fields
(field (name Reference) J)
(field (name Value) TEST_1P))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib vhf_uhf_IQ_Modulator_V4-cache) (part TRF3701)
(fields
(field (name Reference) U)
(field (name Value) TRF3701))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name LO) (type input))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VCC) (type power_in))
(pin (num 7) (name PWD) (type power_in))
(pin (num 8) (name RF_Out) (type output))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name VCC) (type power_in))
(pin (num 11) (name GND) (type power_in))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name QVIN) (type input))
(pin (num 14) (name IVIN) (type input))
(pin (num 15) (name IREF) (type input))
(pin (num 16) (name QREF) (type input))
(pin (num 17) (name GND) (type power_in))))
(libpart (lib vhf_uhf_IQ_Modulator_V4-cache) (part orange_pi_zero)
(fields
(field (name Reference) U)
(field (name Value) orange_pi_zero))
(pins
(pin (num 1) (name 5V) (type BiDi))
(pin (num 2) (name GND) (type BiDi))
(pin (num 3) (name USB-DM2) (type BiDi))
(pin (num 4) (name USB-DP2) (type BiDi))
(pin (num 5) (name USB-DM3) (type BiDi))
(pin (num 6) (name USB-DP3) (type BiDi))
(pin (num 7) (name LINEOUTR) (type output))
(pin (num 8) (name LINEOUTL) (type output))
(pin (num 9) (name TVOUT) (type output))
(pin (num 10) (name MIC-BIAS) (type output))
(pin (num 11) (name MIC1P) (type input))
(pin (num 12) (name MIC1N) (type input))
(pin (num 13) (name IR-RX) (type output))
(pin (num 101) (name 3.3V) (type BiDi))
(pin (num 102) (name 5V) (type BiDi))
(pin (num 103) (name TWI0_SDA_/_PA12) (type input))
(pin (num 104) (name 5V) (type BiDi))
(pin (num 105) (name TWI0_SCK_/_PA11) (type input))
(pin (num 106) (name GND) (type BiDi))
(pin (num 107) (name PWM1_/_PA06) (type input))
(pin (num 108) (name UART1_TX_/_PG06) (type input))
(pin (num 109) (name GND) (type BiDi))
(pin (num 110) (name UART1_RX_/_PG07) (type input))
(pin (num 111) (name UART2_RX_/_PA01) (type input))
(pin (num 112) (name SIM_CLK/PA_EINT7_/_PA07) (type input))
(pin (num 113) (name UART2_TX_/_PA00) (type input))
(pin (num 114) (name GND) (type BiDi))
(pin (num 115) (name _UART2_CTS_/_PA03) (type input))
(pin (num 116) (name TWI1-SDA_/_PA19) (type input))
(pin (num 117) (name 3.3V) (type BiDi))
(pin (num 118) (name TWI1-SCK_/_PA18) (type input))
(pin (num 119) (name SPI1_MOSI_/_PA15) (type input))
(pin (num 120) (name GND) (type BiDi))
(pin (num 121) (name SPI1_MISO_/_PA16) (type input))
(pin (num 122) (name UART2_RTS_/_PA02) (type input))
(pin (num 123) (name SPI1_CLK_/_PA14) (type input))
(pin (num 124) (name PI1_CS_/_PA13) (type input))
(pin (num 125) (name GND) (type BiDi))
(pin (num 126) (name SIM_DET/PA_EINT10_/_PA10) (type input))
(pin (num 201) (name GND) (type power_in))
(pin (num 202) (name RX) (type input))
(pin (num 203) (name TX) (type input)))))
(libraries
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical vhf_uhf_IQ_Modulator_V4-cache)
(uri /home/anton/Documents/kicad/IQ_Modulator/vhf_uhf_IQ_Modulator_V4-cache.lib)))
(nets
(net (code 1) (name "Net-(C25-Pad2)")
(node (ref U4) (pin 12))
(node (ref C25) (pin 2)))
(net (code 2) (name "Net-(C23-Pad2)")
(node (ref U4) (pin 11))
(node (ref C23) (pin 2)))
(net (code 3) (name "Net-(C25-Pad1)")
(node (ref J3) (pin 1))
(node (ref C25) (pin 1)))
(net (code 4) (name "Net-(C23-Pad1)")
(node (ref C23) (pin 1))
(node (ref J3) (pin 2)))
(net (code 5) (name "Net-(C8-Pad1)")
(node (ref U4) (pin 7))
(node (ref C8) (pin 1)))
(net (code 6) (name "Net-(C5-Pad1)")
(node (ref U4) (pin 8))
(node (ref C5) (pin 1)))
(net (code 7) (name "Net-(C5-Pad2)")
(node (ref C5) (pin 2))
(node (ref R2) (pin 2)))
(net (code 8) (name "Net-(C8-Pad2)")
(node (ref C8) (pin 2))
(node (ref R5) (pin 2)))
(net (code 9) (name "Net-(J2-Pad1)")
(node (ref J2) (pin 1))
(node (ref U3) (pin 5)))
(net (code 10) (name "Net-(C19-Pad1)")
(node (ref C19) (pin 1))
(node (ref L5) (pin 1))
(node (ref L4) (pin 1)))
(net (code 11) (name "Net-(U4-Pad122)")
(node (ref U4) (pin 122)))
(net (code 12) (name "Net-(U4-Pad10)")
(node (ref U4) (pin 10)))
(net (code 13) (name "Net-(U4-Pad13)")
(node (ref U4) (pin 13)))
(net (code 14) (name "Net-(U4-Pad110)")
(node (ref U4) (pin 110)))
(net (code 15) (name "Net-(U4-Pad108)")
(node (ref U4) (pin 108)))
(net (code 16) (name "Net-(U4-Pad203)")
(node (ref U4) (pin 203)))
(net (code 17) (name "Net-(U4-Pad202)")
(node (ref U4) (pin 202)))
(net (code 18) (name "Net-(U4-Pad113)")
(node (ref U4) (pin 113)))
(net (code 19) (name "Net-(U4-Pad115)")
(node (ref U4) (pin 115)))
(net (code 20) (name "Net-(U4-Pad119)")
(node (ref U4) (pin 119)))
(net (code 21) (name "Net-(U4-Pad121)")
(node (ref U4) (pin 121)))
(net (code 22) (name "Net-(U4-Pad9)")
(node (ref U4) (pin 9)))
(net (code 23) (name "Net-(U4-Pad123)")
(node (ref U4) (pin 123)))
(net (code 24) (name "Net-(U4-Pad124)")
(node (ref U4) (pin 124)))
(net (code 25) (name GND)
(node (ref R11) (pin 1))
(node (ref U1) (pin 5))
(node (ref U1) (pin 17))
(node (ref U1) (pin 11))
(node (ref C4) (pin 1))
(node (ref U1) (pin 9))
(node (ref U1) (pin 3))
(node (ref U1) (pin 2))
(node (ref U1) (pin 12))
(node (ref J3) (pin 3))
(node (ref U4) (pin 109))
(node (ref C3) (pin 2))
(node (ref RV1) (pin 3))
(node (ref RV2) (pin 3))
(node (ref U4) (pin 106))
(node (ref U4) (pin 125))
(node (ref U4) (pin 114))
(node (ref C12) (pin 2))
(node (ref C7) (pin 2))
(node (ref C11) (pin 2))
(node (ref C6) (pin 2))
(node (ref C9) (pin 1))
(node (ref C22) (pin 1))
(node (ref L5) (pin 2))
(node (ref C21) (pin 1))
(node (ref C24) (pin 1))
(node (ref U1) (pin 1))
(node (ref C18) (pin 1))
(node (ref C16) (pin 1))
(node (ref C15) (pin 2))
(node (ref C30) (pin 1))
(node (ref C29) (pin 1))
(node (ref C10) (pin 2))
(node (ref C2) (pin 2))
(node (ref C20) (pin 2))
(node (ref C31) (pin 1))
(node (ref C17) (pin 2))
(node (ref U4) (pin 201))
(node (ref U4) (pin 120))
(node (ref U4) (pin 2))
(node (ref U5) (pin 6))
(node (ref C28) (pin 2))
(node (ref Q1) (pin 2))
(node (ref Q2) (pin 2))
(node (ref J4) (pin 4))
(node (ref Q3) (pin 2))
(node (ref J5) (pin 2))
(node (ref U5) (pin 2))
(node (ref U2) (pin 13))
(node (ref C27) (pin 1))
(node (ref C1) (pin 2))
(node (ref C13) (pin 2))
(node (ref U3) (pin 3))
(node (ref C14) (pin 1))
(node (ref J1) (pin 3)))
(net (code 26) (name "Net-(U2-Pad4)")
(node (ref U2) (pin 4)))
(net (code 27) (name "Net-(U2-Pad5)")
(node (ref U2) (pin 5)))
(net (code 28) (name "Net-(U3-Pad1)")
(node (ref U3) (pin 1)))
(net (code 29) (name +5V)
(node (ref RV2) (pin 1))
(node (ref U4) (pin 104))
(node (ref C1) (pin 1))
(node (ref C14) (pin 2))
(node (ref C27) (pin 2))
(node (ref U5) (pin 5))
(node (ref R10) (pin 2))
(node (ref RV1) (pin 1))
(node (ref C10) (pin 1))
(node (ref U1) (pin 6))
(node (ref U1) (pin 10))
(node (ref U4) (pin 1))
(node (ref R4) (pin 2))
(node (ref C20) (pin 1))
(node (ref C15) (pin 1))
(node (ref R13) (pin 1))
(node (ref C3) (pin 1))
(node (ref C2) (pin 1))
(node (ref C13) (pin 1))
(node (ref U4) (pin 102))
(node (ref J1) (pin 1))
(node (ref U2) (pin 2))
(node (ref J4) (pin 1))
(node (ref R16) (pin 1))
(node (ref R15) (pin 1))
(node (ref L2) (pin 1))
(node (ref C16) (pin 2))
(node (ref C9) (pin 2))
(node (ref C28) (pin 1))
(node (ref L1) (pin 1))
(node (ref R1) (pin 2)))
(net (code 30) (name +3V3)
(node (ref U3) (pin 6))
(node (ref J1) (pin 2))
(node (ref C17) (pin 1))
(node (ref U4) (pin 101))
(node (ref R7) (pin 2))
(node (ref U4) (pin 117)))
(net (code 31) (name "Net-(Q2-Pad1)")
(node (ref Q2) (pin 1))
(node (ref R8) (pin 2)))
(net (code 32) (name "Net-(Q3-Pad1)")
(node (ref Q3) (pin 1))
(node (ref R14) (pin 2)))
(net (code 33) (name "Net-(Q1-Pad1)")
(node (ref R17) (pin 1))
(node (ref Q1) (pin 1)))
(net (code 34) (name "Net-(R12-Pad2)")
(node (ref R12) (pin 2))
(node (ref U3) (pin 4)))
(net (code 35) (name "Net-(R9-Pad1)")
(node (ref R9) (pin 1))
(node (ref U1) (pin 4)))
(net (code 36) (name PDet)
(node (ref U2) (pin 6))
(node (ref C21) (pin 2))
(node (ref U5) (pin 1)))
(net (code 37) (name PA07)
(node (ref U4) (pin 112))
(node (ref R14) (pin 1)))
(net (code 38) (name "Net-(U4-Pad126)")
(node (ref U4) (pin 126)))
(net (code 39) (name "Net-(Q3-Pad3)")
(node (ref R13) (pin 2))
(node (ref U1) (pin 7))
(node (ref Q3) (pin 3)))
(net (code 40) (name SLC)
(node (ref U3) (pin 8))
(node (ref R15) (pin 2))
(node (ref U5) (pin 3))
(node (ref U4) (pin 105)))
(net (code 41) (name PA01)
(node (ref R17) (pin 2))
(node (ref U4) (pin 111)))
(net (code 42) (name "Net-(C4-Pad2)")
(node (ref L1) (pin 2))
(node (ref U2) (pin 11))
(node (ref C4) (pin 2)))
(net (code 43) (name SDA)
(node (ref U5) (pin 4))
(node (ref U4) (pin 103))
(node (ref U3) (pin 7))
(node (ref R16) (pin 2)))
(net (code 44) (name PA06)
(node (ref U4) (pin 107))
(node (ref R8) (pin 1)))
(net (code 45) (name "Net-(J4-Pad2)")
(node (ref J4) (pin 2))
(node (ref U4) (pin 116)))
(net (code 46) (name "Net-(J4-Pad3)")
(node (ref U4) (pin 118))
(node (ref J4) (pin 3)))
(net (code 47) (name "Net-(Q2-Pad3)")
(node (ref R7) (pin 1))
(node (ref Q2) (pin 3))
(node (ref U3) (pin 2)))
(net (code 48) (name "Net-(Q1-Pad3)")
(node (ref Q1) (pin 3))
(node (ref R1) (pin 1))
(node (ref U2) (pin 10)))
(net (code 49) (name "Net-(RV1-Pad2)")
(node (ref RV1) (pin 2))
(node (ref U1) (pin 15)))
(net (code 50) (name "Net-(RV2-Pad2)")
(node (ref RV2) (pin 2))
(node (ref U1) (pin 16)))
(net (code 51) (name "Net-(J5-Pad1)")
(node (ref J5) (pin 1))
(node (ref L9) (pin 1)))
(net (code 52) (name "Net-(C24-Pad2)")
(node (ref U1) (pin 8))
(node (ref C24) (pin 2))
(node (ref L3) (pin 2)))
(net (code 53) (name "Net-(C22-Pad2)")
(node (ref L4) (pin 2))
(node (ref C22) (pin 2))
(node (ref C26) (pin 2)))
(net (code 54) (name "Net-(C26-Pad1)")
(node (ref C26) (pin 1))
(node (ref L6) (pin 2)))
(net (code 55) (name "Net-(R4-Pad1)")
(node (ref U2) (pin 12))
(node (ref R4) (pin 1)))
(net (code 56) (name "Net-(R10-Pad1)")
(node (ref U2) (pin 1))
(node (ref R10) (pin 1)))
(net (code 57) (name "Net-(C18-Pad2)")
(node (ref U2) (pin 3))
(node (ref L3) (pin 1))
(node (ref C18) (pin 2)))
(net (code 58) (name "Net-(C29-Pad2)")
(node (ref C29) (pin 2))
(node (ref L6) (pin 1))
(node (ref L7) (pin 2)))
(net (code 59) (name "Net-(C30-Pad2)")
(node (ref L7) (pin 1))
(node (ref C30) (pin 2))
(node (ref L8) (pin 2)))
(net (code 60) (name "Net-(C31-Pad2)")
(node (ref C31) (pin 2))
(node (ref L8) (pin 1))
(node (ref L9) (pin 2)))
(net (code 61) (name "Net-(C6-Pad1)")
(node (ref R3) (pin 2))
(node (ref R2) (pin 1))
(node (ref C6) (pin 1)))
(net (code 62) (name "Net-(C12-Pad1)")
(node (ref U1) (pin 13))
(node (ref R6) (pin 1))
(node (ref C12) (pin 1)))
(net (code 63) (name "Net-(C11-Pad1)")
(node (ref R6) (pin 2))
(node (ref C11) (pin 1))
(node (ref R5) (pin 1)))
(net (code 64) (name "Net-(C7-Pad1)")
(node (ref R3) (pin 1))
(node (ref U1) (pin 14))
(node (ref C7) (pin 1)))
(net (code 65) (name "Net-(R11-Pad2)")
(node (ref R11) (pin 2))
(node (ref R9) (pin 2))
(node (ref R12) (pin 1)))
(net (code 66) (name "Net-(U4-Pad3)")