-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHamShieldMini1.2.net
More file actions
1592 lines (1592 loc) · 56.6 KB
/
HamShieldMini1.2.net
File metadata and controls
1592 lines (1592 loc) · 56.6 KB
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 D:\Dropbox\work\ERD\HamShieldMini\HamShieldMini1.2\HamShieldMini1.2.sch)
(date "3/15/2019 10:34:48 AM")
(tool "Eeschema (5.0.0)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "RF Transciever")
(company "Enhanced Radio Devices")
(rev 1.1)
(date 2017-07-30)
(source HamShieldMini1.2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/Power Control/") (tstamps /5220DBD9/)
(title_block
(title "Power Control")
(company "Enhanced Radio Devices")
(rev 1.1)
(date 2017-07-30)
(source PowerCtl.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name "/RF Front End/") (tstamps /5209228F/)
(title_block
(title "RF Power Amplifiers and Switches")
(company "Enhanced Radio Devices")
(rev 1.1)
(date 2018-07-28)
(source HAM_RF.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name "/User Interface/") (tstamps /52091E5F/)
(title_block
(title "User Interface")
(company "Enhanced Radio Devices")
(rev 1.1)
(date 2017-07-30)
(source UserInterface.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value AU1846)
(footprint mogar_modules:QFN32-5x5)
(libsource (lib mogar_KiCAD) (part RDA1846) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 52091B34))
(comp (ref FD1)
(value FIDUCIAL1X2.5)
(footprint SparkFun:SparkFun-FIDUCIAL-1X2.5)
(libsource (lib SparkFun) (part FIDUCIAL1X2.5) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 560ADEDD))
(comp (ref FD2)
(value FIDUCIAL1X2.5)
(footprint SparkFun:SparkFun-FIDUCIAL-1X2.5)
(libsource (lib SparkFun) (part FIDUCIAL1X2.5) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 560AE065))
(comp (ref U12)
(value NC7WZ14)
(footprint Housings_SOT-23_SOT-143_TSOT-6:SC-70-6)
(libsource (lib mogar_KiCAD) (part NC7WZ14) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 560E146E))
(comp (ref Y1)
(value 12.8MHz)
(footprint mogar_modules_new:CRYSTAL-SMD-5X3)
(libsource (lib mogar_KiCAD) (part CRYSTAL_4PIN_MD) (description "Crystal 4Pin SMD"))
(sheetpath (names /) (tstamps /))
(tstamp 5688BA8C))
(comp (ref FD3)
(value FIDUCIAL1X2.5)
(footprint SparkFun:SparkFun-FIDUCIAL-1X2.5)
(libsource (lib SparkFun) (part FIDUCIAL1X2.5) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 59795BE7))
(comp (ref P1)
(value Conn_01x10)
(footprint Pin_Headers:Pin_Header_Straight_1x10)
(datasheet ~)
(libsource (lib conn) (part Conn_01x10) (description "Generic connector, single row, 01x10"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8C94D1))
(comp (ref MK1)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8C9926))
(comp (ref MK2)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8C9A7F))
(comp (ref C17)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8C9D56))
(comp (ref C8)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CA00E))
(comp (ref C4)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CA240))
(comp (ref C2)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CA376))
(comp (ref C6)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CA482))
(comp (ref C3)
(value 1n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CA98C))
(comp (ref C7)
(value 1n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CAB3A))
(comp (ref C5)
(value 1n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CAC71))
(comp (ref C1)
(value 1n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CAE2B))
(comp (ref C12)
(value 1n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CB297))
(comp (ref C14)
(value 1n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CB34F))
(comp (ref C13)
(value 1u)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CB6BF))
(comp (ref C11)
(value 2u2)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CB850))
(comp (ref C9)
(value 10p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CBC04))
(comp (ref C10)
(value 10p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CBE66))
(comp (ref C15)
(value 10p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B8CC01F))
(comp (ref C20)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib SparkFun) (part CAP0603-CAP) (description ""))
(sheetpath (names "/Power Control/") (tstamps /5220DBD9/))
(tstamp 55C2876E))
(comp (ref Q1)
(value NTGD1100L)
(footprint mogar_modules_new:SC-74)
(libsource (lib mogar_KiCAD) (part NTGD1100L) (description ""))
(sheetpath (names "/Power Control/") (tstamps /5220DBD9/))
(tstamp 55F6BE85))
(comp (ref D1)
(value BAS40TW)
(footprint mogar_modules_new:SOT-363)
(libsource (lib mogar_KiCAD) (part BAS40TW) (description "Triple Diode schottky"))
(sheetpath (names "/Power Control/") (tstamps /5220DBD9/))
(tstamp 55F8E35A))
(comp (ref R4)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Power Control/") (tstamps /5220DBD9/))
(tstamp 5B850835))
(comp (ref C22)
(value 10u)
(footprint Capacitors_SMD:C_0805)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Power Control/") (tstamps /5220DBD9/))
(tstamp 5B85177E))
(comp (ref C80)
(value 10u)
(footprint Capacitors_SMD:C_0805)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Power Control/") (tstamps /5220DBD9/))
(tstamp 5B851939))
(comp (ref C81)
(value 22u)
(footprint Capacitors_SMD:C_0805)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Power Control/") (tstamps /5220DBD9/))
(tstamp 5B851A4C))
(comp (ref U6)
(value AP2125N-3.3TRG1)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib mogar_KiCAD) (part LDO_3PIN_GOI) (description ""))
(sheetpath (names "/Power Control/") (tstamps /5220DBD9/))
(tstamp 5B856D64))
(comp (ref J1)
(value SMA_EDGE)
(footprint mogar_modules_new:SMA-EDGE-HandSolder)
(libsource (lib mogar_KiCAD) (part SMA_EDGE) (description "SMA Edge"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5688CD68))
(comp (ref U4)
(value ADL5530)
(footprint mogar_modules_new:LFCSP-8-1EP_2x3mm_Pitch0.5mm)
(libsource (lib mogar_KiCAD) (part ADL5530) (description ""))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5A9B58D4))
(comp (ref C23)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D4EE5))
(comp (ref C67)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D5409))
(comp (ref C24)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D583E))
(comp (ref C68)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D59F9))
(comp (ref C19)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D5D0C))
(comp (ref C70)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D60E6))
(comp (ref C25)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D62D7))
(comp (ref C71)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D652D))
(comp (ref C73)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D692B))
(comp (ref C77)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D6BA8))
(comp (ref C35)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D6EC3))
(comp (ref C31)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D72E4))
(comp (ref C76)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D788C))
(comp (ref C75)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D7B74))
(comp (ref C74)
(value 10n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8D803B))
(comp (ref R5)
(value 49.9)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E0F7A))
(comp (ref R9)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E12B6))
(comp (ref C53)
(value 7p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E1A39))
(comp (ref C62)
(value 7p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E1F10))
(comp (ref C59)
(value 8.2p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E20E4))
(comp (ref C56)
(value 14p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E2400))
(comp (ref C63)
(value 14p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E2702))
(comp (ref C60)
(value 15p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E28CF))
(comp (ref C58)
(value 20p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E2BC5))
(comp (ref C66)
(value 20p)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E31BE))
(comp (ref C61)
(value 24p)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B8E34A5))
(comp (ref L32)
(value DNP)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B949C4A))
(comp (ref L30)
(value DNP)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B952A6B))
(comp (ref L31)
(value DNP)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B952EC4))
(comp (ref L3)
(value 470n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B97D75D))
(comp (ref L20)
(value 82n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B98EE3B))
(comp (ref L29)
(value 82n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B98F57F))
(comp (ref L23)
(value 120n)
(footprint Capacitors_SMD:C_0805)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B98F741))
(comp (ref L26)
(value 120n)
(footprint Capacitors_SMD:C_0805)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B98FA8B))
(comp (ref L21)
(value 33n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B9DC29D))
(comp (ref L24)
(value 33n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B9DC879))
(comp (ref L18)
(value 24n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5B9DCA33))
(comp (ref L27)
(value 24n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5BA105AE))
(comp (ref L19)
(value 47n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5BA21ED2))
(comp (ref L28)
(value 47n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5BA22173))
(comp (ref L22)
(value 75n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5BA22428))
(comp (ref L25)
(value 75n)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5BA2282B))
(comp (ref U11)
(value PE42440)
(footprint Housings_DFN_QFN:QFN-16-1EP_3x3mm_Pitch0.5mm)
(libsource (lib mogar_KiCAD) (part PE42440) (description "IC RF SWITCH SP4T 50 OHM 16QFN"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5BA9961F))
(comp (ref U10)
(value PE42440)
(footprint Housings_DFN_QFN:QFN-16-1EP_3x3mm_Pitch0.5mm)
(libsource (lib mogar_KiCAD) (part PE42440) (description "IC RF SWITCH SP4T 50 OHM 16QFN"))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5BAF80B4))
(comp (ref U2)
(value NC7SZ86)
(footprint TO_SOT_Packages_SMD:SOT-353_SC-70-5)
(libsource (lib mogar_KiCAD) (part NC7SZ86) (description And2))
(sheetpath (names "/RF Front End/") (tstamps /5209228F/))
(tstamp 5BD367FA))
(comp (ref JP3)
(value M04PTH)
(footprint mogar_modules_new:PinHeader_SMT_rightAngle_0.1inPitch_4pos)
(libsource (lib SparkFun) (part M04PTH) (description ""))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5276A211))
(comp (ref J2)
(value SJ-43514-SMT-TR)
(footprint mogar_modules:SJ-43514-SMT-TR)
(libsource (lib mogar_KiCAD) (part TRRS) (description ""))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 524DB2B9))
(comp (ref C41)
(value 15n)
(footprint Capacitors_SMD:C_0402)
(libsource (lib SparkFun) (part CAP0603-CAP) (description ""))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 54138EAF))
(comp (ref U3)
(value AD8591)
(footprint mogar_modules_new:SOT23-6)
(datasheet ~)
(libsource (lib mogar_KiCAD) (part AD8591) (description ""))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 542F5FA7))
(comp (ref Q5)
(value BSS138)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib Device) (part Q_NMOS_GSD) (description "Transistor N-MOSFETwith substrate diode (general)"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 56B23FFE))
(comp (ref Q6)
(value BSS138)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib Device) (part Q_NMOS_GSD) (description "Transistor N-MOSFETwith substrate diode (general)"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 56B281F6))
(comp (ref Q7)
(value BSS138)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib Device) (part Q_NMOS_GSD) (description "Transistor N-MOSFETwith substrate diode (general)"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 56B2826A))
(comp (ref R1)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B85C80B))
(comp (ref R14)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B85CBBD))
(comp (ref R15)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B85CCA6))
(comp (ref R16)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B86289A))
(comp (ref R37)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8628A1))
(comp (ref R36)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8628A8))
(comp (ref P2)
(value Conn_01x07)
(footprint Pin_Headers:Pin_Header_Straight_1x07_Pitch2.54mm)
(datasheet ~)
(libsource (lib conn) (part Conn_01x07) (description "Generic connector, single row, 01x07"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B872E80))
(comp (ref C18)
(value 47u)
(footprint mogar_modules_new:C1210P)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8731EF))
(comp (ref C21)
(value 2u2)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B873265))
(comp (ref R20)
(value 330)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8739D3))
(comp (ref R22)
(value 330)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B873CE0))
(comp (ref D2)
(value LED)
(footprint Diodes_SMD:D_0603)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8793EF))
(comp (ref D3)
(value LED)
(footprint Diodes_SMD:D_0603)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B879793))
(comp (ref R2)
(value 0)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B879CE6))
(comp (ref R3)
(value DNP)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B87A170))
(comp (ref R13)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B87FC6A))
(comp (ref R6)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B87FD5C))
(comp (ref R12)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B87FDE6))
(comp (ref R7)
(value 10k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B87FE6C))
(comp (ref R31)
(value 2k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B87FEF8))
(comp (ref R28)
(value 100k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B87FFF2))
(comp (ref R27)
(value 100k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B880096))
(comp (ref C47)
(value 2u2)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B89643B))
(comp (ref C42)
(value 2u2)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B89C3F5))
(comp (ref C94)
(value 2u2)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8A76CF))
(comp (ref C40)
(value 2u2)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8A79DB))
(comp (ref C43)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8A800F))
(comp (ref C39)
(value 0u1)
(footprint Capacitors_SMD:C_0402)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8AD846))
(comp (ref C93)
(value 47u)
(footprint mogar_modules_new:C1210P)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8ADAB0))
(comp (ref R24)
(value 1.47k)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8B89A0))
(comp (ref R23)
(value 13.3)
(footprint Resistors_SMD:R_0402)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/User Interface/") (tstamps /52091E5F/))
(tstamp 5B8BE163)))
(libparts
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part L)
(description Inductor)
(docs ~)
(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 Device) (part LED)
(description "LED generic")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Q_NMOS_GSD)
(description "Transistor N-MOSFETwith substrate diode (general)")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(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 Mechanical) (part MountingHole)
(description "Mounting Hole without connection")
(docs ~)
(footprints
(fp MountingHole*))
(fields
(field (name Reference) MH)
(field (name Value) MountingHole)))
(libpart (lib SparkFun) (part CAP0603-CAP)
(fields
(field (name Reference) C)
(field (name Value) CAP0603-CAP)
(field (name Footprint) SparkFun-0603-CAP))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib SparkFun) (part FIDUCIAL1X2.5)
(fields
(field (name Reference) FD)
(field (name Value) FIDUCIAL1X2.5)
(field (name Footprint) SparkFun-FIDUCIAL-1X2.5)))
(libpart (lib SparkFun) (part M04PTH)
(fields
(field (name Reference) JP)
(field (name Value) M04PTH)
(field (name Footprint) SparkFun-1X04))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))))
(libpart (lib conn) (part Conn_01x07)
(description "Generic connector, single row, 01x07")
(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_01x07))
(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))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))))
(libpart (lib conn) (part Conn_01x10)
(description "Generic connector, single row, 01x10")
(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_01x10))
(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))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))))
(libpart (lib mogar_KiCAD) (part AD8591)
(fields
(field (name Reference) U)
(field (name Value) AD8591))
(pins
(pin (num 1) (name OUT) (type output))
(pin (num 2) (name V-) (type power_in))
(pin (num 3) (name +IN) (type input))