forked from 11tools/msiSDR
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmsisdr.net
1110 lines (1110 loc) · 37.7 KB
/
msisdr.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 E:/develop/生产用PCB/msiSDR/msisdr.sch)
(date "2019/5/8 21:11:31")
(tool "Eeschema 4.0.7")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source msisdr.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /MSI2500/) (tstamps /5C68CE35/)
(title_block
(title)
(company)
(rev)
(date)
(source msi2500.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /msi001/) (tstamps /5C68CE4D/)
(title_block
(title)
(company)
(rev)
(date)
(source msi001.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /rf_parts/) (tstamps /5C68CE5E/)
(title_block
(title)
(company)
(rev)
(date)
(source rf_parts.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /power&interface/) (tstamps /5C68CE79/)
(title_block
(title)
(company)
(rev)
(date)
(source misc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C1)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68D23E))
(comp (ref C4)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68D27D))
(comp (ref C8)
(value 1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68D5CF))
(comp (ref C5)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68D9E9))
(comp (ref C6)
(value 1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68DA24))
(comp (ref R1)
(value 510R)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68E1A9))
(comp (ref Y1)
(value 24MHz)
(footprint Crystals:Crystal_HC50_Vertical)
(libsource (lib device) (part Crystal))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68E3AD))
(comp (ref C9)
(value 18pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68E41D))
(comp (ref C10)
(value 18pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68E476))
(comp (ref C3)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68EC29))
(comp (ref C2)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C68F0E7))
(comp (ref C7)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C6965F5))
(comp (ref U1)
(value msi2500)
(footprint Housings_DFN_QFN:QFN-32-1EP_5x5mm_Pitch0.5mm)
(libsource (lib msi) (part msi2500))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C698DB9))
(comp (ref J1)
(value VCC_GPIO)
(footprint Connectors:Pin_d0.7mm_L6.5mm_W1.8mm_FlatFork)
(libsource (lib conn) (part Conn_01x01))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C69B0A4))
(comp (ref J2)
(value GPIO0)
(footprint Connectors:Pin_d0.7mm_L6.5mm_W1.8mm_FlatFork)
(libsource (lib conn) (part Conn_01x01))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C69B155))
(comp (ref J3)
(value GPIO1)
(footprint Connectors:Pin_d0.7mm_L6.5mm_W1.8mm_FlatFork)
(libsource (lib conn) (part Conn_01x01))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C69B1C1))
(comp (ref J4)
(value GPIO2)
(footprint Connectors:Pin_d0.7mm_L6.5mm_W1.8mm_FlatFork)
(libsource (lib conn) (part Conn_01x01))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C69B1C7))
(comp (ref J5)
(value GPIO3)
(footprint Connectors:Pin_d0.7mm_L6.5mm_W1.8mm_FlatFork)
(libsource (lib conn) (part Conn_01x01))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C69B2AD))
(comp (ref C39)
(value 1UF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5C79333B))
(comp (ref Y2)
(value 24MHZ)
(footprint Crystals:Crystal_SMD_7050-4pin_7.0x5.0mm)
(libsource (lib device) (part Crystal_GND24))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CA9F9E8))
(comp (ref D5)
(value LED)
(footprint Diodes_THT:D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp)
(libsource (lib device) (part LED))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CAA11F1))
(comp (ref R3)
(value 512)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CAA13AD))
(comp (ref R4)
(value 10K)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CB19DE2))
(comp (ref R7)
(value 10K)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CC1C3E0))
(comp (ref R6)
(value 10K)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CC1C53B))
(comp (ref R5)
(value 10K)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CC1C59C))
(comp (ref R8)
(value 10K)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CC1D62D))
(comp (ref C41)
(value 1UF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CD0470B))
(comp (ref C42)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /MSI2500/) (tstamps /5C68CE35/))
(tstamp 5CD2D826))
(comp (ref C11)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68EE14))
(comp (ref C16)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68EF3E))
(comp (ref C17)
(value 100nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F105))
(comp (ref C18)
(value 1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F257))
(comp (ref C20)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F539))
(comp (ref C21)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F624))
(comp (ref C24)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F762))
(comp (ref C22)
(value 6800pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F87D))
(comp (ref C23)
(value 33nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F90A))
(comp (ref C26)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F91C))
(comp (ref R2)
(value 390R)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C68F969))
(comp (ref C25)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C690295))
(comp (ref C19)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C690DC1))
(comp (ref C12)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C6913BC))
(comp (ref C13)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C691525))
(comp (ref C14)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C691814))
(comp (ref C15)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C6919A5))
(comp (ref U2)
(value msi001)
(footprint Housings_DFN_QFN:QFN-40-1EP_6x6mm_Pitch0.5mm)
(libsource (lib msi001) (part msi001))
(sheetpath (names /msi001/) (tstamps /5C68CE4D/))
(tstamp 5C698FED))
(comp (ref L3)
(value 330nH)
(footprint Inductors_SMD:L_0805)
(libsource (lib device) (part L))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694291))
(comp (ref C27)
(value 470nF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C6942E9))
(comp (ref C29)
(value 56pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694335))
(comp (ref L1)
(value 220nH)
(footprint Inductors_SMD:L_0805)
(libsource (lib device) (part L))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694EF0))
(comp (ref C30)
(value 3.9pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694F53))
(comp (ref L2)
(value 330nH)
(footprint Inductors_SMD:L_0805)
(libsource (lib device) (part L))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694FBF))
(comp (ref C32)
(value 39pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C69501A))
(comp (ref C28)
(value 1nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694529))
(comp (ref L4)
(value 270nH)
(footprint Inductors_SMD:L_0805)
(libsource (lib device) (part L))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C6947E7))
(comp (ref L5)
(value 150nH)
(footprint Inductors_SMD:L_0805)
(libsource (lib device) (part L))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694859))
(comp (ref L6)
(value 330nH)
(footprint Inductors_SMD:L_0805)
(libsource (lib device) (part L))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C69485F))
(comp (ref C31)
(value 160pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694ABC))
(comp (ref C33)
(value 160pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694B0D))
(comp (ref C34)
(value 56pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C694B60))
(comp (ref J6)
(value SMA_0_30MHZ)
(footprint sma:SMA_OPL_EM)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C696A99))
(comp (ref J7)
(value SMA_30_60MHZ)
(footprint sma:SMA_OPL_EM)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C696D80))
(comp (ref J8)
(value SMA_VHF2)
(footprint sma:SMA_OPL_EMPTYHEAD)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C69724D))
(comp (ref J9)
(value SMA_UHF)
(footprint sma:SMA_OPL_EMPTYHEAD)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C6972AA))
(comp (ref J10)
(value SMA_VHF1)
(footprint sma:SMA_OPL_EMPTYHEAD)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /rf_parts/) (tstamps /5C68CE5E/))
(tstamp 5C697362))
(comp (ref C38)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5C691852))
(comp (ref C37)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5C6918BB))
(comp (ref C36)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5C69264E))
(comp (ref J11)
(value USB_OTG)
(footprint Connectors:USB_Mini-B)
(libsource (lib conn) (part USB_OTG))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5C695F80))
(comp (ref C35)
(value 100uF)
(footprint Capacitors_THT:CP_Radial_D5.0mm_P2.50mm)
(libsource (lib device) (part CP))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5C6ADA0A))
(comp (ref U4)
(value AP7313-30SAG)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib regul) (part APE8865NR-30-HF-3))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5CB1DEB2))
(comp (ref U3)
(value RT9193-28)
(footprint TO_SOT_Packages_SMD:SOT-23-5)
(libsource (lib regul) (part APE8865Y5-28-HF-3))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5CB1E3FD))
(comp (ref C40)
(value 22nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5CB1E84A))
(comp (ref D1)
(value BAV99LT1G)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_Schottky_x2_Serial_AKC))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5CBC63C6))
(comp (ref D2)
(value BAV99LT1G)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_Schottky_x2_Serial_AKC))
(sheetpath (names /power&interface/) (tstamps /5C68CE79/))
(tstamp 5CBC651E)))
(libparts
(libpart (lib regul) (part APE8865NR-12-HF-3)
(aliases
(alias APE8865NR-15-HF-3)
(alias APE8865NR-16-HF-3)
(alias APE8865NR-17-HF-3)
(alias APE8865NR-18-HF-3)
(alias APE8865NR-19-HF-3)
(alias APE8865NR-20-HF-3)
(alias APE8865NR-21-HF-3)
(alias APE8865NR-22-HF-3)
(alias APE8865NR-23-HF-3)
(alias APE8865NR-24-HF-3)
(alias APE8865NR-25-HF-3)
(alias APE8865NR-26-HF-3)
(alias APE8865NR-27-HF-3)
(alias APE8865NR-28-HF-3)
(alias APE8865NR-29-HF-3)
(alias APE8865NR-30-HF-3)
(alias APE8865NR-31-HF-3)
(alias APE8865NR-32-HF-3)
(alias APE8865NR-33-HF-3))
(description "300 mA Low Dropout Voltage Regulator, Fixed Output 1.2V, SOT-23")
(docs http://www.tme.eu/fr/Document/ced3461ed31ea70a3c416fb648e0cde7/APE8865-3.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) APE8865NR-12-HF-3)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23))
(pins
(pin (num 1) (name VI) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name GND) (type power_in))))
(libpart (lib regul) (part APE8865Y5-12-HF-3)
(aliases
(alias APE8865Y5-15-HF-3)
(alias APE8865Y5-16-HF-3)
(alias APE8865Y5-17-HF-3)
(alias APE8865Y5-18-HF-3)
(alias APE8865Y5-19-HF-3)
(alias APE8865Y5-20-HF-3)
(alias APE8865Y5-21-HF-3)
(alias APE8865Y5-22-HF-3)
(alias APE8865Y5-23-HF-3)
(alias APE8865Y5-24-HF-3)
(alias APE8865Y5-25-HF-3)
(alias APE8865Y5-26-HF-3)
(alias APE8865Y5-27-HF-3)
(alias APE8865Y5-28-HF-3)
(alias APE8865Y5-29-HF-3)
(alias APE8865Y5-30-HF-3)
(alias APE8865Y5-31-HF-3)
(alias APE8865Y5-32-HF-3)
(alias APE8865Y5-33-HF-3))
(description "300 mA Low Dropout Voltage Regulator, Fixed Output 1.2V, SOT-23-5")
(docs http://www.tme.eu/fr/Document/ced3461ed31ea70a3c416fb648e0cde7/APE8865-3.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) APE8865Y5-12-HF-3)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23-5))
(pins
(pin (num 1) (name VIN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name ~SHDN~) (type input))
(pin (num 4) (name BYP) (type input))
(pin (num 5) (name VOUT) (type power_out))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(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 CP)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part Conn_01x01)
(description "Generic connector, single row, 01x01")
(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_01x01))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib conn) (part Conn_01x03)
(description "Generic connector, single row, 01x03")
(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_01x03))
(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))))
(libpart (lib device) (part Crystal)
(description "Two pin crystal")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part Crystal_GND24)
(description "Four pin crystal (GND on pins 2 and 4), e.g. in SMD package")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_GND24))
(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 device) (part D_Schottky_x2_Serial_AKC)
(description "Dual schottky diode")
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_x2_Serial_AKC))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))
(pin (num 3) (name common) (type passive))))
(libpart (lib device) (part L)
(description Inductor)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part LED)
(description "LED generic")
(footprints
(fp LED*))
(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 R)
(description Resistor)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part USB_OTG)
(description "USB mini/micro connector")
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_OTG))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type passive))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name Shield) (type passive))))
(libpart (lib msi001) (part msi001)
(fields
(field (name Reference) U)
(field (name Value) msi001))
(pins
(pin (num 1) (name VCC1) (type input))
(pin (num 2) (name VCC2) (type input))
(pin (num 3) (name IN) (type input))
(pin (num 4) (name INB) (type input))
(pin (num 5) (name NC) (type input))
(pin (num 6) (name IN) (type input))
(pin (num 7) (name INB) (type input))
(pin (num 8) (name VCC3) (type input))
(pin (num 9) (name INB) (type input))
(pin (num 10) (name IN) (type input))
(pin (num 11) (name OPI) (type input))
(pin (num 12) (name OPIB) (type input))
(pin (num 13) (name NC) (type input))
(pin (num 14) (name VCC5) (type input))
(pin (num 15) (name VCC6) (type input))
(pin (num 16) (name OSC-OP) (type input))
(pin (num 17) (name DC-FB) (type input))
(pin (num 18) (name VCC7) (type input))
(pin (num 19) (name VCC8) (type input))
(pin (num 20) (name REF-CLK) (type input))
(pin (num 21) (name OPQB) (type input))
(pin (num 22) (name OPQ) (type input))
(pin (num 23) (name VCC9) (type input))
(pin (num 24) (name IN) (type input))
(pin (num 25) (name INB) (type input))
(pin (num 26) (name LFILT-PC) (type input))
(pin (num 27) (name CP-OUT) (type input))
(pin (num 28) (name VCO-VCC) (type input))
(pin (num 29) (name VCC10) (type input))
(pin (num 30) (name VCC11) (type input))
(pin (num 31) (name VDDI) (type input))
(pin (num 32) (name VDD) (type input))
(pin (num 33) (name EN) (type input))
(pin (num 34) (name CLK) (type input))
(pin (num 35) (name DATA) (type input))
(pin (num 36) (name VCC12) (type input))
(pin (num 37) (name INB) (type input))
(pin (num 38) (name IN) (type input))
(pin (num 39) (name INB) (type input))
(pin (num 40) (name IN) (type input))
(pin (num 41) (name GND) (type input))))
(libpart (lib msi) (part msi2500)
(fields
(field (name Reference) U)
(field (name Value) msi2500))
(pins
(pin (num 1) (name VCC_GPIO) (type input))
(pin (num 2) (name GPIO_0) (type input))
(pin (num 3) (name GPIO_1) (type input))
(pin (num 4) (name GPIO_2) (type input))
(pin (num 5) (name GPIO_3) (type input))
(pin (num 6) (name ADC_REF_P) (type input))
(pin (num 7) (name ADC_REF_N) (type input))
(pin (num 8) (name VEE_ADC) (type input))
(pin (num 9) (name IIN_P) (type input))
(pin (num 10) (name IIN_N) (type input))
(pin (num 11) (name QIN_P) (type input))
(pin (num 12) (name QIN_N) (type input))
(pin (num 13) (name V18_ADC) (type input))
(pin (num 14) (name VCC_3V_PM) (type input))
(pin (num 15) (name V18_SYNTH) (type input))
(pin (num 16) (name V18_PHY) (type input))
(pin (num 17) (name V15_VCO) (type input))
(pin (num 18) (name VCC_3V_XCVR) (type input))
(pin (num 19) (name DP) (type input))
(pin (num 20) (name DM) (type input))
(pin (num 21) (name REST) (type input))
(pin (num 22) (name X0) (type input))
(pin (num 23) (name X1) (type input))
(pin (num 24) (name REFOUT) (type input))
(pin (num 25) (name SPI_LAT) (type input))
(pin (num 26) (name SPI_DAT) (type input))
(pin (num 27) (name SPI_CLK) (type input))
(pin (num 28) (name XTAL_SEL) (type input))
(pin (num 29) (name TEST1) (type input))
(pin (num 30) (name TEST2) (type input))
(pin (num 31) (name V18_DIGITAL) (type input))
(pin (num 32) (name VCC_3V_DIGITAL) (type input))
(pin (num 33) (name GND) (type input)))))
(libraries
(library (logical device)
(uri D:\design\KiCad\share\kicad\library\device.lib))
(library (logical conn)
(uri D:\design\KiCad\share\kicad\library\conn.lib))
(library (logical regul)
(uri D:\design\KiCad\share\kicad\library\regul.lib))
(library (logical msi)
(uri E:\develop\生产用PCB\msiSDR\lib\msi.lib))
(library (logical msi001)
(uri E:\develop\生产用PCB\msiSDR\lib\msi001.lib)))
(nets
(net (code 1) (name "Net-(J5-Pad1)")
(node (ref R8) (pin 1))
(node (ref U1) (pin 5))
(node (ref J5) (pin 1)))
(net (code 2) (name SPI_LAT)
(node (ref U1) (pin 25))
(node (ref U2) (pin 33)))
(net (code 3) (name SPI_CLK)
(node (ref U1) (pin 27))
(node (ref U2) (pin 34)))
(net (code 4) (name "Net-(C42-Pad2)")
(node (ref U1) (pin 24))
(node (ref C42) (pin 2)))
(net (code 5) (name Q_IN_P)
(node (ref U1) (pin 11))
(node (ref U2) (pin 22)))
(net (code 6) (name I_IN_P)
(node (ref U1) (pin 9))
(node (ref U2) (pin 11)))
(net (code 7) (name "Net-(C1-Pad2)")
(node (ref U1) (pin 7))
(node (ref C1) (pin 2)))
(net (code 8) (name SPI_DATA)
(node (ref U1) (pin 26))
(node (ref U2) (pin 35)))
(net (code 9) (name "Net-(C39-Pad1)")
(node (ref C39) (pin 1))
(node (ref U1) (pin 17)))
(net (code 10) (name "Net-(C9-Pad2)")
(node (ref C9) (pin 2))
(node (ref Y1) (pin 1))
(node (ref U1) (pin 23)))
(net (code 11) (name "Net-(J4-Pad1)")
(node (ref R7) (pin 1))
(node (ref U1) (pin 4))
(node (ref J4) (pin 1)))
(net (code 12) (name "Net-(J3-Pad1)")
(node (ref U1) (pin 3))
(node (ref R6) (pin 1))
(node (ref J3) (pin 1)))
(net (code 13) (name "Net-(J2-Pad1)")
(node (ref R5) (pin 1))
(node (ref J2) (pin 1))
(node (ref U1) (pin 2)))
(net (code 14) (name "Net-(C41-Pad2)")
(node (ref C41) (pin 2))
(node (ref U1) (pin 1))
(node (ref J1) (pin 1)))
(net (code 15) (name REFCLK)
(node (ref C42) (pin 1))
(node (ref U2) (pin 20)))
(net (code 16) (name GND)
(node (ref D1) (pin 1))
(node (ref D2) (pin 1))
(node (ref U4) (pin 3))
(node (ref C38) (pin 2))
(node (ref C37) (pin 2))
(node (ref C16) (pin 1))
(node (ref C11) (pin 1))
(node (ref C21) (pin 1))
(node (ref C20) (pin 1))
(node (ref C13) (pin 1))
(node (ref C12) (pin 1))
(node (ref C14) (pin 1))
(node (ref J11) (pin 5))
(node (ref C40) (pin 2))
(node (ref U3) (pin 2))
(node (ref C35) (pin 2))
(node (ref U2) (pin 41))
(node (ref C19) (pin 1))
(node (ref C15) (pin 1))
(node (ref C31) (pin 1))
(node (ref C29) (pin 1))
(node (ref J6) (pin 2))
(node (ref J6) (pin 3))
(node (ref C36) (pin 2))
(node (ref C26) (pin 2))
(node (ref C24) (pin 1))
(node (ref C25) (pin 1))
(node (ref J7) (pin 2))
(node (ref J7) (pin 3))
(node (ref C18) (pin 1))
(node (ref J8) (pin 2))
(node (ref J10) (pin 3))
(node (ref J10) (pin 2))
(node (ref J9) (pin 3))
(node (ref J9) (pin 2))
(node (ref J8) (pin 3))
(node (ref C33) (pin 1))
(node (ref C34) (pin 1))
(node (ref C8) (pin 2))
(node (ref U1) (pin 28))
(node (ref U1) (pin 29))
(node (ref D5) (pin 1))
(node (ref C4) (pin 2))
(node (ref U1) (pin 8))
(node (ref U1) (pin 30))
(node (ref C41) (pin 1))
(node (ref C7) (pin 2))
(node (ref R8) (pin 2))
(node (ref C3) (pin 2))
(node (ref U1) (pin 33))
(node (ref C9) (pin 1))
(node (ref C39) (pin 2))
(node (ref Y2) (pin 2))
(node (ref R1) (pin 1))
(node (ref R6) (pin 2))
(node (ref C10) (pin 1))
(node (ref R5) (pin 2))
(node (ref C5) (pin 2))
(node (ref C6) (pin 2))
(node (ref R7) (pin 2))
(node (ref C2) (pin 2)))
(net (code 17) (name "Net-(D5-Pad2)")
(node (ref R3) (pin 2))
(node (ref D5) (pin 2)))
(net (code 18) (name "Net-(R4-Pad2)")
(node (ref Y2) (pin 1))
(node (ref R4) (pin 2)))
(net (code 19) (name VDIG)
(node (ref R4) (pin 1))
(node (ref R3) (pin 1))
(node (ref C5) (pin 1))
(node (ref Y2) (pin 4))
(node (ref D2) (pin 2))
(node (ref U1) (pin 18))
(node (ref U1) (pin 14))
(node (ref D1) (pin 2))
(node (ref C7) (pin 1))
(node (ref C37) (pin 1))
(node (ref U4) (pin 2))
(node (ref C3) (pin 1))
(node (ref U1) (pin 32))
(node (ref C35) (pin 1)))
(net (code 20) (name "Net-(C8-Pad1)")
(node (ref C8) (pin 1))
(node (ref U1) (pin 16)))
(net (code 21) (name "Net-(C4-Pad1)")
(node (ref U1) (pin 13))
(node (ref C4) (pin 1)))
(net (code 22) (name V18-SYNTH)
(node (ref C6) (pin 1))
(node (ref U1) (pin 15))
(node (ref U3) (pin 3)))
(net (code 23) (name I_IN_N)
(node (ref U2) (pin 12))
(node (ref U1) (pin 10)))
(net (code 24) (name Q_IN_N)
(node (ref U1) (pin 12))
(node (ref U2) (pin 21)))
(net (code 25) (name "Net-(C1-Pad1)")
(node (ref U1) (pin 6))
(node (ref C1) (pin 1)))
(net (code 26) (name USB_DM)
(node (ref J11) (pin 2))
(node (ref D2) (pin 3))
(node (ref U1) (pin 20)))
(net (code 27) (name VDDI)
(node (ref C21) (pin 2))
(node (ref U2) (pin 31))
(node (ref C2) (pin 1))
(node (ref U1) (pin 31)))
(net (code 28) (name "Net-(R1-Pad2)")
(node (ref R1) (pin 2))
(node (ref U1) (pin 21)))
(net (code 29) (name "Net-(C10-Pad2)")
(node (ref U1) (pin 22))
(node (ref Y2) (pin 3))
(node (ref Y1) (pin 2))
(node (ref C10) (pin 2)))
(net (code 30) (name USB_DP)
(node (ref U1) (pin 19))
(node (ref D1) (pin 3))
(node (ref J11) (pin 3)))
(net (code 31) (name VRF)
(node (ref U2) (pin 15))
(node (ref U2) (pin 29))
(node (ref U2) (pin 19))
(node (ref U2) (pin 18))
(node (ref U2) (pin 36))
(node (ref U2) (pin 14))
(node (ref U2) (pin 23))
(node (ref C18) (pin 2))
(node (ref U2) (pin 32))
(node (ref C20) (pin 2))
(node (ref C36) (pin 1))
(node (ref C24) (pin 2))