-
Notifications
You must be signed in to change notification settings - Fork 21
/
openlst-hw.net
1691 lines (1691 loc) · 60.8 KB
/
openlst-hw.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/ryan/openlst-hw/openlst-hw.sch)
(date "Thu 02 Aug 2018 08:08:40 AM PDT")
(tool "Eeschema 4.0.7-e2-6376~58~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "OpenLST Reference Design")
(company)
(rev 2.1)
(date 2018-08-02)
(source openlst-hw.sch)
(comment (number 1) (value ""))
(comment (number 2) (value "Drawn by Ryan Kingsbury"))
(comment (number 3) (value "License: CC-BY-SA 3.0 US"))
(comment (number 4) (value "Planet Labs Inc.")))))
(components
(comp (ref L6)
(value 27n)
(footprint archive:L_0402_1005Metric)
(datasheet http://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0050.pdf)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) LQW15AN27NJ00D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-1151-1-ND))
(libsource (lib openlst-hw) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5A875D2F))
(comp (ref J6)
(value ANT)
(footprint archive:SMA_Molex_73251-1153_EdgeMount_Horizontal)
(datasheet https://www.molex.com/pdm_docs/sd/732511150_sd.pdf)
(fields
(field (name Manuf) Molex)
(field (name ManufPN) 732511150)
(field (name Supplier) Digikey)
(field (name SupplierPN) WM5534-ND))
(libsource (lib openlst-hw) (part Conn_Coaxial))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FB2))
(comp (ref C45)
(value 220p)
(footprint archive:C_0402_1005Metric)
(datasheet https://api.kemet.com/component-edge/download/datasheet/C0402C221J2GACAUTO.pdf)
(fields
(field (name Manuf) Kemet)
(field (name ManufPN) C0402C221J2GACAUTO)
(field (name Supplier) Digikey)
(field (name SupplierPN) 399-11552-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FB6))
(comp (ref C25)
(value 220p)
(footprint archive:C_0402_1005Metric)
(datasheet https://api.kemet.com/component-edge/download/datasheet/C0402C221J2GACAUTO.pdf)
(fields
(field (name Manuf) Kemet)
(field (name ManufPN) C0402C221J2GACAUTO)
(field (name Supplier) Digikey)
(field (name SupplierPN) 399-11552-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FD3))
(comp (ref C24)
(value 3.9p)
(footprint archive:C_0402_1005Metric)
(datasheet http://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GJM1555C1H3R9CB01-01.pdf)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) GJM1555C1H3R9CB01D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-3097-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FD5))
(comp (ref L5)
(value 27n)
(footprint archive:L_0402_1005Metric)
(datasheet http://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0050.pdf)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) LQW15AN27NJ00D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-1151-1-ND))
(libsource (lib openlst-hw) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FD6))
(comp (ref C21)
(value 220p)
(footprint archive:C_0402_1005Metric)
(datasheet https://api.kemet.com/component-edge/download/datasheet/C0402C221J2GACAUTO.pdf)
(fields
(field (name Manuf) Kemet)
(field (name ManufPN) C0402C221J2GACAUTO)
(field (name Supplier) Digikey)
(field (name SupplierPN) 399-11552-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FD7))
(comp (ref U1)
(value LM1117-3.3)
(footprint archive:SOT-223-3_TabPin2)
(datasheet http://www.ti.com/lit/ds/symlink/lm1117.pdf)
(fields
(field (name Manuf) "Texas Instruments")
(field (name ManufPN) LM1117IMP-3.3/NOPB)
(field (name Supplier) Digikey)
(field (name SupplierPN) LM1117IMP-3.3/NOPBCT-ND))
(libsource (lib openlst-hw) (part LM1117-3.3))
(sheetpath (names /) (tstamps /))
(tstamp 5A9BB0BA))
(comp (ref C4)
(value 10u)
(footprint archive:C_0603_1608Metric)
(datasheet http://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRT188C81A106ME13-01.pdf)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) GRT188C81A106ME13D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-12283-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9BBEAE))
(comp (ref C13)
(value 10u)
(footprint archive:C_0603_1608Metric)
(datasheet http://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRT188C81A106ME13-01.pdf)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) GRT188C81A106ME13D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-12283-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9BCAEA))
(comp (ref C15)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9BCC29))
(comp (ref J1)
(value 5VDC)
(footprint archive:PinHeader_1x02_P2.54mm_Vertical)
(libsource (lib openlst-hw) (part Conn_Coaxial_Power))
(sheetpath (names /) (tstamps /))
(tstamp 5A9CE3EE))
(comp (ref D3)
(value STPS340U)
(footprint archive:D_SMB)
(datasheet http://www.st.com/content/ccc/resource/technical/document/datasheet/bb/db/21/0c/04/d9/41/a5/CD00000844.pdf/files/CD00000844.pdf/jcr:content/translations/en.CD00000844.pdf)
(fields
(field (name Manuf) STMicroelectronics)
(field (name ManufPN) STPS340U)
(field (name Supplier) Digikey)
(field (name SupplierPN) 497-2465-1-ND))
(libsource (lib openlst-hw) (part D))
(sheetpath (names /) (tstamps /))
(tstamp 5A9CF19A))
(comp (ref L2)
(value "Z=500 @ 100M")
(footprint archive:L_1206_3216Metric)
(datasheet https://assets.lairdtech.com/home/brandworld/files/MI1206L501R-10.pdf)
(fields
(field (name Manuf) Laird)
(field (name ManufPN) MI1206L501R-10)
(field (name Supplier) Digikey)
(field (name SupplierPN) 240-2407-1-ND))
(libsource (lib openlst-hw) (part Ferrite_Bead))
(sheetpath (names /) (tstamps /))
(tstamp 5A9D09A5))
(comp (ref C14)
(value 100u)
(footprint archive:CP_EIA-3528-15_AVX-H)
(datasheet http://datasheets.avx.com/TPS.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) TPSB107M010R0400)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-5231-1-ND))
(libsource (lib openlst-hw) (part CP1_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9D0EB4))
(comp (ref U3)
(value LT1086-3.6)
(footprint archive:TO-263-3_TabPin2)
(datasheet http://www.linear.com/docs/1722)
(fields
(field (name Manuf) Linear)
(field (name ManufPN) LT1086CM-3.6#PBF)
(field (name Supplier) Digikey)
(field (name SupplierPN) LT1086CM-3.6#PBF-ND))
(libsource (lib openlst-hw) (part LT1086-3.6))
(sheetpath (names /) (tstamps /))
(tstamp 5B247437))
(comp (ref C46)
(value 1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://www.samsungsem.com/kr/support/product-search/mlcc/CL10B105MO8NNWC.jsp)
(fields
(field (name Manuf) Samsung)
(field (name ManufPN) CL10B105MO8NNWC)
(field (name Supplier) Digikey)
(field (name SupplierPN) 1276-6524-6-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B24D061))
(comp (ref C44)
(value 1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://www.samsungsem.com/kr/support/product-search/mlcc/CL10B105MO8NNWC.jsp)
(fields
(field (name Manuf) Samsung)
(field (name ManufPN) CL10B105MO8NNWC)
(field (name Supplier) Digikey)
(field (name SupplierPN) 1276-6524-6-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FB7))
(comp (ref U6)
(value PE4259)
(footprint archive:SOT-363_SC-70-6)
(datasheet http://www.psemi.com/pdf/datasheets/pe4259ds.pdf)
(fields
(field (name Manuf) pSemi)
(field (name ManufPN) 4259-63)
(field (name Supplier) Digikey)
(field (name SupplierPN) 1046-1011-1-ND))
(libsource (lib openlst-hw) (part PE4259))
(sheetpath (names /) (tstamps /))
(tstamp 5B25CB82))
(comp (ref C38)
(value 220p)
(footprint archive:C_0402_1005Metric)
(datasheet https://api.kemet.com/component-edge/download/datasheet/C0402C221J2GACAUTO.pdf)
(fields
(field (name Manuf) Kemet)
(field (name ManufPN) C0402C221J2GACAUTO)
(field (name Supplier) Digikey)
(field (name SupplierPN) 399-11552-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B261679))
(comp (ref C39)
(value 220p)
(footprint archive:C_0402_1005Metric)
(datasheet https://api.kemet.com/component-edge/download/datasheet/C0402C221J2GACAUTO.pdf)
(fields
(field (name Manuf) Kemet)
(field (name ManufPN) C0402C221J2GACAUTO)
(field (name Supplier) Digikey)
(field (name SupplierPN) 399-11552-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B261795))
(comp (ref C26)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B262592))
(comp (ref U2)
(value CC1110)
(footprint openlst:TI_CC_QFN36)
(datasheet http://www.ti.com/lit/ds/symlink/cc1110-cc1111.pdf)
(fields
(field (name Manuf) "Texas Instruments")
(field (name ManufPN) CC1110F32RHHR)
(field (name Supplier) Digikey)
(field (name SupplierPN) 296-38560-1-ND))
(libsource (lib openlst-hw) (part CC1110))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FAD))
(comp (ref U5)
(value TLV803S)
(footprint archive:SOT-23)
(datasheet http://www.ti.com/lit/ds/symlink/tlv803.pdf)
(fields
(field (name Manuf) "Texas Instruments")
(field (name ManufPN) TLV803SDBZR)
(field (name Supplier) Digikey)
(field (name SupplierPN) 296-29196-1-ND))
(libsource (lib openlst-hw) (part TLV803S))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FB1))
(comp (ref R18)
(value 1K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-071KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-1.0KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FD1))
(comp (ref C22)
(value 1n)
(footprint archive:C_0603_1608Metric)
(datasheet https://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/mlcc/c03e.ashx)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) GCM188R71E102KA37D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-8016-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FD0))
(comp (ref R16)
(value 56K)
(footprint archive:R_0603_1608Metric)
(datasheet https://www.seielect.com/Catalog/SEI-RMCF_RMCP.pdf)
(fields
(field (name Manuf) Stackpole)
(field (name ManufPN) RMCF0603FT56K0)
(field (name Supplier) Digikey)
(field (name SupplierPN) RMCF0603FT56K0CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FDC))
(comp (ref C19)
(value 1n)
(footprint archive:C_0603_1608Metric)
(datasheet https://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/mlcc/c03e.ashx)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) GCM188R71E102KA37D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-8016-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FDB))
(comp (ref J2)
(value "CC Prog/Debug")
(footprint archive:PinHeader_2x05_P1.27mm_Vertical_SMD)
(datasheet http://suddendocs.samtec.com/prints/ftsh-1xx-xx-xxx-dv-xxx-xxx-mkt.pdf)
(fields
(field (name Manuf) Samtec)
(field (name ManufPN) FTSH-105-01-L-DV-K-P)
(field (name Supplier) Digikey)
(field (name SupplierPN) SAM9076-ND))
(libsource (lib openlst-hw) (part Conn_02x05_Odd_Even))
(sheetpath (names /) (tstamps /))
(tstamp 5B265FE8))
(comp (ref R5)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B26973A))
(comp (ref R6)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B26A1E9))
(comp (ref R7)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B26A329))
(comp (ref R8)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B26A469))
(comp (ref R9)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B26CB69))
(comp (ref R10)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B26CB6F))
(comp (ref R11)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B26CB75))
(comp (ref R12)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B26CB7B))
(comp (ref C31)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B27749B))
(comp (ref R28)
(value 1K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-071KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-1.0KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B278685))
(comp (ref R26)
(value 1K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-071KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-1.0KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B27C97D))
(comp (ref R1)
(value 1K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-071KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-1.0KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B27F7F5))
(comp (ref R2)
(value 1K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-071KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-1.0KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B27FFEB))
(comp (ref U4)
(value "FOX924 27MHz")
(footprint archive:Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm)
(datasheet http://www.foxonline.com/pdfs/fox924.pdf)
(fields
(field (name Manuf) "Fox Electronics")
(field (name ManufPN) FT5HNBPK27.0-T1)
(field (name Supplier) Digikey)
(field (name SupplierPN) 631-1075-1-ND))
(libsource (lib openlst-hw) (part FOX924))
(sheetpath (names /) (tstamps /))
(tstamp 5B2892BE))
(comp (ref R17)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B28AE3D))
(comp (ref C23)
(value 3.9p)
(footprint archive:C_0402_1005Metric)
(datasheet http://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GJM1555C1H3R9CB01-01.pdf)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) GJM1555C1H3R9CB01D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-3097-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9A1FD8))
(comp (ref C27)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B28CED5))
(comp (ref R15)
(value DNI)
(footprint archive:R_0603_1608Metric)
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B290219))
(comp (ref D1)
(value LED)
(footprint archive:LED_0603_1608Metric)
(datasheet http://katalog.we-online.de/led/datasheet/150060VS75000.pdf)
(fields
(field (name Manuf) Wurth)
(field (name ManufPN) 150060VS75000)
(field (name Supplier) Digikey)
(field (name SupplierPN) 732-4980-1-ND))
(libsource (lib openlst-hw) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5B296D47))
(comp (ref R3)
(value 1K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-071KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-1.0KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B296D55))
(comp (ref D2)
(value LED)
(footprint archive:LED_0603_1608Metric)
(datasheet http://katalog.we-online.de/led/datasheet/150060SS75000.pdf)
(fields
(field (name Manuf) Wurth)
(field (name ManufPN) 150060SS75000)
(field (name Supplier) Digikey)
(field (name SupplierPN) 732-4979-1-ND))
(libsource (lib openlst-hw) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5B296D5B))
(comp (ref R4)
(value 1K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-071KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-1.0KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B296D69))
(comp (ref J3)
(value UART0)
(footprint archive:PinHeader_1x06_P2.54mm_Vertical)
(datasheet http://katalog.we-online.de/em/datasheet/6130xx11121.pdf)
(fields
(field (name Manuf) Wurth)
(field (name ManufPN) 61300611121)
(field (name Supplier) Digikey)
(field (name SupplierPN) 732-5319-ND))
(libsource (lib openlst-hw) (part Conn_01x06))
(sheetpath (names /) (tstamps /))
(tstamp 5B29D837))
(comp (ref R19)
(value DNI)
(footprint archive:R_0603_1608Metric)
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B29E677))
(comp (ref J4)
(value UART1)
(footprint archive:PinHeader_1x06_P2.54mm_Vertical)
(datasheet http://katalog.we-online.de/em/datasheet/6130xx11121.pdf)
(fields
(field (name Manuf) Wurth)
(field (name ManufPN) 61300611121)
(field (name Supplier) Digikey)
(field (name SupplierPN) 732-5319-ND))
(libsource (lib openlst-hw) (part Conn_01x06))
(sheetpath (names /) (tstamps /))
(tstamp 5B2A137A))
(comp (ref R20)
(value DNI)
(footprint archive:R_0603_1608Metric)
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B2A1386))
(comp (ref C1)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B1B62))
(comp (ref C10)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B22E7))
(comp (ref C2)
(value 220p)
(footprint archive:C_0402_1005Metric)
(datasheet https://api.kemet.com/component-edge/download/datasheet/C0402C221J2GACAUTO.pdf)
(fields
(field (name Manuf) Kemet)
(field (name ManufPN) C0402C221J2GACAUTO)
(field (name Supplier) Digikey)
(field (name SupplierPN) 399-11552-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B36A5))
(comp (ref C7)
(value 220p)
(footprint archive:C_0402_1005Metric)
(datasheet https://api.kemet.com/component-edge/download/datasheet/C0402C221J2GACAUTO.pdf)
(fields
(field (name Manuf) Kemet)
(field (name ManufPN) C0402C221J2GACAUTO)
(field (name Supplier) Digikey)
(field (name SupplierPN) 399-11552-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B4012))
(comp (ref C5)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B4C99))
(comp (ref C3)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B4F44))
(comp (ref C9)
(value 1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://www.samsungsem.com/kr/support/product-search/mlcc/CL10B105MO8NNWC.jsp)
(fields
(field (name Manuf) Samsung)
(field (name ManufPN) CL10B105MO8NNWC)
(field (name Supplier) Digikey)
(field (name SupplierPN) 1276-6524-6-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B2B901C))
(comp (ref R21)
(value 33K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-0733KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3598CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B2C4E4A))
(comp (ref R22)
(value 10K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-0710KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-10KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B2C5202))
(comp (ref R23)
(value 33K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-0733KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3598CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B2C9AA7))
(comp (ref R24)
(value 10K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_9.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) RC0603JR-0710KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) 311-10KGRCT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B2C9AAD))
(comp (ref R36)
(value 5K6)
(footprint archive:R_0603_1608Metric)
(datasheet https://www.seielect.com/Catalog/SEI-RMCF_RMCP.pdf)
(fields
(field (name Manuf) Stackpole)
(field (name ManufPN) RMCF0603FT5K60)
(field (name Supplier) Digikey)
(field (name SupplierPN) RMCF0603FT5K60CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B252414))
(comp (ref R37)
(value 3K3)
(footprint archive:R_0603_1608Metric)
(datasheet https://www.seielect.com/Catalog/SEI-RMCF_RMCP.pdf)
(fields
(field (name Manuf) Stackpole)
(field (name ManufPN) RMCF0603FT3K30)
(field (name Supplier) Digikey)
(field (name SupplierPN) RMCF0603FT3K30CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B25226A))
(comp (ref C47)
(value 1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://www.samsungsem.com/kr/support/product-search/mlcc/CL10B105MO8NNWC.jsp)
(fields
(field (name Manuf) Samsung)
(field (name ManufPN) CL10B105MO8NNWC)
(field (name Supplier) Digikey)
(field (name SupplierPN) 1276-6524-6-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B30D1AC))
(comp (ref C18)
(value 10u)
(footprint archive:C_0603_1608Metric)
(datasheet http://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRT188C81A106ME13-01.pdf)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) GRT188C81A106ME13D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-12283-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B32687C))
(comp (ref C20)
(value 10u)
(footprint archive:C_0603_1608Metric)
(datasheet http://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRT188C81A106ME13-01.pdf)
(fields
(field (name Manuf) Murata)
(field (name ManufPN) GRT188C81A106ME13D)
(field (name Supplier) Digikey)
(field (name SupplierPN) 490-12283-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B3290F4))
(comp (ref L8)
(value "Z=1k @ 100M")
(footprint archive:L_0603_1608Metric)
(datasheet http://katalog.we-online.de/pbs/datasheet/74279266.pdf)
(fields
(field (name Manuf) Wurth)
(field (name ManufPN) 74279266)
(field (name Supplier) Digikey)
(field (name SupplierPN) 732-4484-1-ND))
(libsource (lib openlst-hw) (part Ferrite_Bead))
(sheetpath (names /) (tstamps /))
(tstamp 5B3339BF))
(comp (ref L3)
(value "Z=1k @ 100M")
(footprint archive:L_0603_1608Metric)
(datasheet http://katalog.we-online.de/pbs/datasheet/74279266.pdf)
(fields
(field (name Manuf) Wurth)
(field (name ManufPN) 74279266)
(field (name Supplier) Digikey)
(field (name SupplierPN) 732-4484-1-ND))
(libsource (lib openlst-hw) (part Ferrite_Bead))
(sheetpath (names /) (tstamps /))
(tstamp 5B333CCF))
(comp (ref J5)
(value "Control Outputs")
(footprint archive:PinHeader_1x03_P2.54mm_Vertical)
(libsource (lib openlst-hw) (part Conn_01x03))
(sheetpath (names /) (tstamps /))
(tstamp 5B31A0A4))
(comp (ref R14)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B31CF02))
(comp (ref R13)
(value 100)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-07100RL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3561CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B31D69E))
(comp (ref U8)
(value STA1120A)
(footprint openlst:SAW-8_3.8mm)
(fields
(field (name Manuf) Sawtron)
(field (name ManufPN) STA1120A))
(libsource (lib openlst-hw) (part SAW-8))
(sheetpath (names /) (tstamps /))
(tstamp 5B32AE24))
(comp (ref R25)
(value DNI)
(footprint archive:R_0603_1608Metric)
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B332172))
(comp (ref R27)
(value 33K)
(footprint archive:R_0603_1608Metric)
(datasheet http://www.yageo.com/NewPortal/yageodocoutput?fileName=/pdf/R-Chip/PYu-AC_51_RoHS_L_6.pdf)
(fields
(field (name Manuf) Yageo)
(field (name ManufPN) AC0603FR-0733KL)
(field (name Supplier) Digikey)
(field (name SupplierPN) YAG3598CT-ND))
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B33DCC5))
(comp (ref C6)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B3494C5))
(comp (ref C8)
(value 0.1u)
(footprint archive:C_0603_1608Metric)
(datasheet http://datasheets.avx.com/AutoMLCC.pdf)
(fields
(field (name Manuf) AVX)
(field (name ManufPN) 0603YC104K4T4A)
(field (name Supplier) Digikey)
(field (name SupplierPN) 478-9382-1-ND))
(libsource (lib openlst-hw) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B34C3A7))
(comp (ref U9)
(value RFFM6403)
(footprint openlst:Qorvo_LGA_28_ThermalVias)
(datasheet https://www.qorvo.com/products/d/da000805)
(fields
(field (name Manuf) Qorvo)
(field (name ManufPN) RFFM6403SB))
(libsource (lib openlst-hw) (part RFFM6403))
(sheetpath (names /) (tstamps /))
(tstamp 5B213061))
(comp (ref MK1)
(value M3_Hole)
(footprint archive:MountingHole_3.2mm_M3_Pad_Via)
(libsource (lib openlst-hw) (part Mounting_Hole_PAD))
(sheetpath (names /) (tstamps /))
(tstamp 5B40F0F1))
(comp (ref R29)
(value DNI)
(footprint archive:R_0603_1608Metric)
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B411691))
(comp (ref R31)
(value DNI)
(footprint archive:R_0603_1608Metric)
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B411B29))
(comp (ref MK3)
(value M3_Hole)
(footprint archive:MountingHole_3.2mm_M3_Pad_Via)
(libsource (lib openlst-hw) (part Mounting_Hole_PAD))
(sheetpath (names /) (tstamps /))
(tstamp 5B41290B))
(comp (ref MK2)
(value M3_Hole)
(footprint archive:MountingHole_3.2mm_M3_Pad_Via)
(libsource (lib openlst-hw) (part Mounting_Hole_PAD))
(sheetpath (names /) (tstamps /))
(tstamp 5B412DBD))
(comp (ref R30)
(value DNI)
(footprint archive:R_0603_1608Metric)
(libsource (lib openlst-hw) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5B412DCF))
(comp (ref R32)
(value DNI)
(footprint archive:R_0603_1608Metric)
(libsource (lib openlst-hw) (part R))