-
-
Notifications
You must be signed in to change notification settings - Fork 609
/
Copy pathportapack_h1.net
2318 lines (2318 loc) · 84.9 KB
/
portapack_h1.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/jboone/src/portapack-hackrf/hardware/portapack_h1/portapack_h1.sch)
(date "Thu 25 Oct 2018 10:48:17 AM PDT")
(tool "Eeschema 5.0.1-33cea8e~68~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "PortaPack H1")
(company "ShareBrained Technology, Inc.")
(rev 20181025)
(date 2018-10-25)
(source portapack_h1.sch)
(comment (number 1) (value "Copyright © 2014-2018 Jared Boone"))
(comment (number 2) (value "License: GNU General Public License, version 2"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /audio/) (tstamps /53A8BFC3/)
(title_block
(title "PortaPack H1")
(company "ShareBrained Technology, Inc.")
(rev 20181025)
(date 2018-10-25)
(source audio.sch)
(comment (number 1) (value "Copyright © 2014-2018 Jared Boone"))
(comment (number 2) (value "License: GNU General Public License, version 2"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /lcd_sw_sd/) (tstamps /53A9129D/)
(title_block
(title "PortaPack H1")
(company "ShareBrained Technology, Inc.")
(rev 20181025)
(date 2018-10-25)
(source lcd_sw_sd.sch)
(comment (number 1) (value "Copyright © 2014-2018 Jared Boone"))
(comment (number 2) (value "License: GNU General Public License, version 2"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /hackrf_if/) (tstamps /53A8C780/)
(title_block
(title "PortaPack H1")
(company "ShareBrained Technology, Inc.")
(rev 20181025)
(date 2018-10-25)
(source hackrf_if.sch)
(comment (number 1) (value "Copyright © 2014-2018 Jared Boone"))
(comment (number 2) (value "License: GNU General Public License, version 2"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /power/) (tstamps /58CFF3E3/)
(title_block
(title "PortaPack H1")
(company "ShareBrained Technology, Inc.")
(rev 20181025)
(date 2018-10-25)
(source power.sch)
(comment (number 1) (value "Copyright © 2014-2018 Jared Boone"))
(comment (number 2) (value "License: GNU General Public License, version 2"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /gps/) (tstamps /5B7E0B2A/)
(title_block
(title "PortaPack H1")
(company "ShareBrained Technology, Inc.")
(rev 20181025)
(date 2018-10-25)
(source gps.sch)
(comment (number 1) (value "Copyright © 2014-2018 Jared Boone"))
(comment (number 2) (value "License: GNU General Public License, version 2"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref H2)
(value HOLE1)
(footprint hole:HOLE_3200UM_VIAS)
(libsource (lib hole) (part HOLE1) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5369BBD8))
(comp (ref H3)
(value HOLE1)
(footprint hole:HOLE_3200UM_VIAS)
(libsource (lib hole) (part HOLE1) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5369BBEC))
(comp (ref H4)
(value HOLE1)
(footprint hole:HOLE_3200UM_VIAS)
(libsource (lib hole) (part HOLE1) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5369BC00))
(comp (ref H5)
(value HOLE1)
(footprint hole:HOLE_3200UM_VIAS)
(libsource (lib hole) (part HOLE1) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5369BC14))
(comp (ref FID1)
(value FIDUCIAL)
(footprint fiducial:FIDUCIAL_65MIL)
(libsource (lib fiducial) (part FIDUCIAL) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 53B309AC))
(comp (ref FID2)
(value FIDUCIAL)
(footprint fiducial:FIDUCIAL_65MIL)
(libsource (lib fiducial) (part FIDUCIAL) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 53B30B4C))
(comp (ref FID3)
(value FIDUCIAL)
(footprint fiducial:FIDUCIAL_65MIL)
(libsource (lib fiducial) (part FIDUCIAL) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 53B30CEC))
(comp (ref R11)
(value 33R)
(footprint ipc_resc:IPC_RESC160X80X55L25N)
(fields
(field (name Mfr) Yageo)
(field (name Part) RC0603FR-0733RL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C264))
(comp (ref R12)
(value 33R)
(footprint ipc_resc:IPC_RESC160X80X55L25N)
(fields
(field (name Mfr) Yageo)
(field (name Part) RC0603FR-0733RL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C26A))
(comp (ref C22)
(value 220N)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM188R71A224KA01D))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C27E))
(comp (ref C23)
(value 220N)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM188R71A224KA01D))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C284))
(comp (ref R18)
(value 2K2)
(footprint ipc_resc:IPC_RESC160X80X55L25N)
(fields
(field (name Mfr) Yageo)
(field (name Part) RC0603FR-072K2L))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C29C))
(comp (ref C25)
(value 1U)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM188R61C105KA93D))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C2A2))
(comp (ref P2)
(value TRRS_SW_JACK)
(footprint cui:CUI_SJ-43516-SMT)
(datasheet http://www.cui.com/product/resource/sj-4351x-smt-series.pdf)
(fields
(field (name Mfr) CUI)
(field (name Part) SJ-43514-SMT))
(libsource (lib trs_jack) (part TRRS_SW_JACK) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C2C6))
(comp (ref C6)
(value 2U2)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM188R61C225KE15D))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C687))
(comp (ref C10)
(value 2U2)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM188R61C225KE15D))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C68D))
(comp (ref C3)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C69F))
(comp (ref C2)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C6A5))
(comp (ref C5)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C6AB))
(comp (ref C4)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C6B1))
(comp (ref C12)
(value 2U2)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM188R61C225KE15D))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C6F0))
(comp (ref C8)
(value 2U2)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM188R61C225KE15D))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C6F6))
(comp (ref C7)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C70E))
(comp (ref C13)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C720))
(comp (ref C11)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 53A8C72C))
(comp (ref U1)
(value AK4951EN)
(footprint ipc_qfn:IPC_QFN33P40_400X400X80L35X20T280N)
(datasheet http://www.akm.com/akm/en/file/datasheet/AK4951EN.pdf)
(fields
(field (name Mfr) "Asahi Kasei")
(field (name Part) AK4951EN))
(libsource (lib asahi_kasei) (part AK4951EN) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58CC98F8))
(comp (ref R2)
(value 10K)
(footprint ipc_resc:IPC_RESC160X80X55L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58CF5E5F))
(comp (ref U5)
(value NUF4220MN)
(footprint ipc_son:IPC_SON9P50_200X200X100L30X25T80X120N)
(datasheet http://www.onsemi.com/pub/Collateral/NUF4220MN-D.PDF)
(fields
(field (name Mfr) "ON Semiconductor")
(field (name Part) NUF4220MNT1G))
(libsource (lib esd) (part NUF4220MN) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58D9A047))
(comp (ref TP1)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58EDDA01))
(comp (ref TP2)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58EDDAEE))
(comp (ref TP3)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58EDDB69))
(comp (ref TP4)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58EDDC3F))
(comp (ref TP5)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58EDDCA8))
(comp (ref TP6)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58EDDD10))
(comp (ref J1)
(value HEADER_1X3)
(footprint jst:JST_S3B-PH-SM4-TB)
(datasheet http://www.jst-mfg.com/product/pdf/eng/ePH.pdf)
(fields
(field (name DNP) DNP)
(field (name Mfr) JST)
(field (name Part) S3B-PH-SM4-TB))
(libsource (lib header) (part HEADER_1X3) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58F82DA0))
(comp (ref RP1)
(value 220R)
(footprint ipc_rescax:IPC_RESCAXS8P80_320X160X60L30X45N)
(datasheet https://industrial.panasonic.com/cdbs/www-data/pdf/AOC0000/AOC0000C14.pdf)
(fields
(field (name Mfr) Panasonic)
(field (name Part) EXB-38V221JV))
(libsource (lib passive) (part RPACK4) (description ""))
(sheetpath (names /audio/) (tstamps /53A8BFC3/))
(tstamp 58F9564A))
(comp (ref R19)
(value 10K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 53A91657))
(comp (ref J2)
(value MICROSD_DETSW)
(footprint alps:ALPS_SCHA4B0419)
(datasheet http://www.mouser.com/ds/2/15/alps_SCHA4B0419-780241.pdf)
(fields
(field (name Mfr) ALPS)
(field (name Part) SCHA4B0419))
(libsource (lib sd) (part MICROSD_DETSW) (description ""))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 53A8C6D0))
(comp (ref C27)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 53AA73CE))
(comp (ref SW1)
(value CK_TSWB-3N-CB)
(footprint ck:CK_TSWB-3N-CB222_LFS)
(datasheet http://www.ckswitches.com/media/1346/tsw.pdf)
(fields
(field (name Mfr) C&K)
(field (name Part) "TSWB-3N-CB222 LFS"))
(libsource (lib ck) (part CK_TSWB-3N-CB) (description ""))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 53A8C6FD))
(comp (ref C26)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 53A8C71C))
(comp (ref LCD1)
(value ER-TFT024-3_PANEL)
(footprint eastrising:ER-TFT024-3)
(datasheet http://www.buydisplay.com/download/manual/ER-TFT024-3_Datasheet.pdf)
(fields
(field (name Mfr) EastRising)
(field (name Part) ER-TFT024-3))
(libsource (lib eastrising) (part ER-TFT024-3_PANEL) (description "2.4\" LCD panel"))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 58A60E03))
(comp (ref J3)
(value ER-TFT024-3_FPC)
(footprint eastrising:ER-CON50HT-1)
(datasheet http://www.buydisplay.com/download/connector/ER-CON50HT-1.pdf)
(fields
(field (name Mfr) EastRising)
(field (name Part) ER-CON50HT-1))
(libsource (lib eastrising) (part ER-TFT024-3_FPC) (description ""))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 58AE3A81))
(comp (ref U4)
(value CAT4004[_AB])
(footprint ipc_son:IPC_SON9P50_200X200X55L32X24T90X160N)
(datasheet http://www.onsemi.com/pub/Collateral/CAT4003B-D.PDF)
(fields
(field (name Mfr) "ON Semiconductor")
(field (name Part) CAT4004BHU2−GT3))
(libsource (lib on_semi) (part CAT4004[_AB]) (description "LED Driver, 4 channel"))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 58B747DD))
(comp (ref R20)
(value 3K9)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 58B751E2))
(comp (ref C14)
(value 1U)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM188R61C105KA93D))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /lcd_sw_sd/) (tstamps /53A9129D/))
(tstamp 58D0DFA2))
(comp (ref P20)
(value HACKRF_ONE_P20)
(footprint header:HEADER_11X2_REV_SM_254_AP)
(datasheet https://www.samtec.com/products/tsm-111-01-l-dv-a-p-tr)
(fields
(field (name Mfr) Samtec)
(field (name Part) TSM⁃111⁃01⁃L⁃DV⁃A⁃P⁃TR))
(libsource (lib hackrf_expansion) (part HACKRF_ONE_P20) (description ""))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8CDAE))
(comp (ref P22)
(value HACKRF_ONE_P22)
(footprint header:HEADER_13X2_REV_SM_254_AP)
(datasheet https://www.samtec.com/products/tsm-113-01-l-dv-a-p-tr)
(fields
(field (name Mfr) Samtec)
(field (name Part) TSM⁃113⁃01⁃L⁃DV⁃A⁃P⁃TR))
(libsource (lib hackrf_expansion) (part HACKRF_ONE_P22) (description ""))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8CDB6))
(comp (ref P28)
(value HACKRF_ONE_P28)
(footprint header:HEADER_11X2_REV_SM_254_AP)
(datasheet https://www.samtec.com/products/tsm-111-01-l-dv-a-p-tr)
(fields
(field (name Mfr) Samtec)
(field (name Part) TSM⁃111⁃01⁃L⁃DV⁃A⁃P⁃TR))
(libsource (lib hackrf_expansion) (part HACKRF_ONE_P28) (description ""))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8CDBE))
(comp (ref U3)
(value 5M40ZE64)
(footprint ipc_qfp:IPC_QFP65P40_900X900X120L60X18T450N)
(datasheet https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00384-01.pdf)
(fields
(field (name Mfr) Altera)
(field (name Part) 5M40ZE64C5N))
(libsource (lib altera) (part 5M40ZE64) (description ""))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D11B))
(comp (ref C28)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D527))
(comp (ref C30)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D542))
(comp (ref C29)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D548))
(comp (ref C31)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D54E))
(comp (ref C33)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D56C))
(comp (ref C35)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D572))
(comp (ref C32)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D5C2))
(comp (ref C34)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D5C8))
(comp (ref C36)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D5DA))
(comp (ref C37)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53A8D5E0))
(comp (ref C42)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53B1911F))
(comp (ref C43)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /hackrf_if/) (tstamps /53A8C780/))
(tstamp 53B1A065))
(comp (ref U2)
(value "TCR2EF18,LM(CT")
(footprint ipc_sot:IPC_SOT23-5P95_275X135L40X40N)
(datasheet http://toshiba.semicon-storage.com/ap-en/product/linear/power-supply/detail.TCR2EF18.html)
(fields
(field (name Mfr) Toshiba)
(field (name Part) "TCR2EF18,LM(CT"))
(libsource (lib regulator) (part REGULATOR_SOT23_5) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58CFF91A))
(comp (ref C38)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58CFF923))
(comp (ref C40)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58CFF92C))
(comp (ref C39)
(value R)
(footprint ipc_capc:IPC_CAPC160X80X90L35N)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58CFF945))
(comp (ref BT1)
(value BATTERY)
(footprint bat_coin:MPD_BU2032SM-BT-G)
(datasheet http://www.memoryprotectiondevices.com/datasheets/BU2032SM-BT-GTR-datasheet.pdf)
(fields
(field (name Mfr) MPD)
(field (name Part) BU2032SM-BT-GTR))
(libsource (lib battery) (part BATTERY) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58D008D0))
(comp (ref C41)
(value 10U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Murata)
(field (name Part) GRM21BR61A106KE19))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58D008E2))
(comp (ref U6)
(value BQ24075RGT)
(footprint ipc_qfn:IPC_QFN17P50_300X300X100L40X25T160N)
(datasheet http://www.ti.com/lit/ds/symlink/bq24075.pdf)
(fields
(field (name DNP) DNP)
(field (name Mfr) "Texas Instruments")
(field (name Part) BQ24075RGT))
(libsource (lib ti) (part BQ24075) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1AA75))
(comp (ref C1)
(value 1U)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Murata)
(field (name WVDC) >26V))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1AC44))
(comp (ref C16)
(value 4U7)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Murata))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1AE50))
(comp (ref C15)
(value 4U7)
(footprint ipc_capc:IPC_CAPC200X125X135L45N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Murata))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1B1AB))
(comp (ref R1)
(value R)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1CB6B))
(comp (ref R4)
(value 1K91)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1CBFA))
(comp (ref R6)
(value 1K8)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1CC38))
(comp (ref R3)
(value 1K5)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1D0EB))
(comp (ref R5)
(value 1K5)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1D207))
(comp (ref J4)
(value HEADER_1X2)
(footprint jst:JST_S2B-PH-SM4-TB)
(datasheet http://www.jst-mfg.com/product/pdf/eng/ePH.pdf)
(fields
(field (name DNP) DNP)
(field (name Mfr) JST)
(field (name Part) S2B-PH-SM4-TB))
(libsource (lib header) (part HEADER_1X2) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1DD77))
(comp (ref R8)
(value 10K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1E372))
(comp (ref R7)
(value 0R)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F1F0EF))
(comp (ref R9)
(value 10K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F443CF))
(comp (ref R10)
(value 10K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F44562))
(comp (ref R14)
(value 10K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F44903))
(comp (ref R13)
(value 10K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Yageo))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F4495E))
(comp (ref D1)
(value "LED 0603 green")
(footprint ipc_ledc:IPC_LEDC1608X90L40N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Kingbright)
(field (name Part) APT1608SGC))
(libsource (lib diode) (part LED) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F5B932))
(comp (ref D2)
(value "LED 0603 yellow")
(footprint ipc_ledc:IPC_LEDC1608X90L40N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Kingbright)
(field (name Part) APT1608SYCK))
(libsource (lib diode) (part LED) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 58F5BA0B))
(comp (ref X1)
(value 10.00000M)
(footprint ipc_osccc:IPC_OSCCC320X250X110L75X100N)
(fields
(field (name Mfr) Jauch)
(field (name Part) "O 10.0-JT32C-A-K-3.3-LF"))
(libsource (lib osc) (part OSC4) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B682C80))
(comp (ref C9)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B682C91))
(comp (ref R22)
(value 33R)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(datasheet ~)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B682CA2))
(comp (ref R17)
(value 1M)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(datasheet ~)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B682CA9))
(comp (ref C17)
(value 1N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B682CB9))
(comp (ref U7)
(value 74HC1G04GW)
(footprint ipc_sot:IPC_SOT23-5P65_212X110L33X22N)
(fields
(field (name DNP) DNP))
(libsource (lib logic) (part 74HC1G04GW) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B682CC3))
(comp (ref FB2)
(value FBEAD)
(footprint ipc_beadc:IPC_BEADC160X80X95L40N)
(fields
(field (name Mfr) Murata)
(field (name Part) BLM18HE152SN1D))
(libsource (lib passive) (part FBEAD) (description ""))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B682CCB))
(comp (ref R21)
(value 100R)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(datasheet ~)
(fields
(field (name Mfr) Yageo)
(field (name Part) RC0402FR-07100RL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B682CD3))
(comp (ref C18)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Murata)
(field (name Part) GRM155R61A104KA01))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B697E1B))
(comp (ref R16)
(value 10K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(datasheet ~)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B6D148B))
(comp (ref R15)
(value 10K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(datasheet ~)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /power/) (tstamps /58CFF3E3/))
(tstamp 5B6E2EB4))
(comp (ref U8)
(value MAX-M8)
(footprint ublox:MAX-M8)
(fields
(field (name DNP) DNP))
(libsource (lib ublox) (part MAX-M8) (description "Concurrent GNSS module"))
(sheetpath (names /gps/) (tstamps /5B7E0B2A/))
(tstamp 5B7E0C1A))
(comp (ref C19)
(value 10N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(datasheet ~)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /gps/) (tstamps /5B7E0B2A/))
(tstamp 5B7E0D14))
(comp (ref L1)
(value 27N)
(footprint ipc_indc:IPC_INDC100X50X60L20N)
(datasheet ~)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /gps/) (tstamps /5B7E0B2A/))
(tstamp 5B7E0E02))
(comp (ref TP7)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /gps/) (tstamps /5B7E0B2A/))
(tstamp 5B7E1777))
(comp (ref TP8)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /gps/) (tstamps /5B7E0B2A/))
(tstamp 5B7E20D6))
(comp (ref TP9)
(value TP)
(footprint tp:TP_1MM)
(libsource (lib tp) (part TP) (description ""))
(sheetpath (names /gps/) (tstamps /5B7E0B2A/))
(tstamp 5B7E27BE))
(comp (ref C20)
(value 100N)
(footprint ipc_capc:IPC_CAPC100X50X55L25N)
(datasheet ~)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /gps/) (tstamps /5B7E0B2A/))
(tstamp 5B7E512B))
(comp (ref R25)
(value 100K)
(footprint ipc_resc:IPC_RESC100X50X40L25N)
(datasheet ~)
(fields
(field (name DNP) DNP))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /gps/) (tstamps /5B7E0B2A/))
(tstamp 5B7E62C8))
(comp (ref FB1)
(value FBEAD)
(footprint ipc_beadc:IPC_BEADC160X80X95L40N)
(fields
(field (name DNP) DNP)
(field (name Mfr) Murata)
(field (name Part) BLM18HE152SN1D))