summaryrefslogtreecommitdiff
path: root/hardware/comm/comm.net
blob: 10b0359bb21093f4246dca2ca76ab46f3a17c68e (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
(export (version D)
  (design
    (source /home/equinox/mur.at/mur.sat/git/hardware/comm/comm.sch)
    (date "Mit 11 Feb 2015 03:19:21 CET")
    (tool "eeschema (22-Jun-2014 BZR 4027)-stable"))
  (components
    (comp (ref P107)
      (value PA_PWR)
      (libsource (lib conn) (part CONN_2X2))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA6EE))
    (comp (ref FB102)
      (value 600R@100Mhz)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA6F4))
    (comp (ref C118)
      (value DNP)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA706))
    (comp (ref C117)
      (value 47nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA70C))
    (comp (ref P101)
      (value USB_PWR)
      (libsource (lib conn) (part CONN_2X2))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA714))
    (comp (ref P105)
      (value 3V_PWR)
      (libsource (lib conn) (part CONN_2X2))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA720))
    (comp (ref U102)
      (value LT1962-3)
      (libsource (lib mur-sat) (part LT1962))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA738))
    (comp (ref C115)
      (value 47nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA73E))
    (comp (ref C116)
      (value 10µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA744))
    (comp (ref FB101)
      (value 0,47µH)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA757))
    (comp (ref C114)
      (value 10nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA765))
    (comp (ref C104)
      (value 4,7µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA76B))
    (comp (ref C113)
      (value 4,7µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA771))
    (comp (ref C107)
      (value 10nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA777))
    (comp (ref C111)
      (value 10nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA77D))
    (comp (ref L101)
      (value 6,8µH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA783))
    (comp (ref C101)
      (value 22nF/200V)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA908))
    (comp (ref X101)
      (value 16MHz)
      (libsource (lib device) (part QUARTZCMS4))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA90E))
    (comp (ref C110)
      (value 1µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA91A))
    (comp (ref C103)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA926))
    (comp (ref SW101)
      (value SW_PUSH)
      (libsource (lib device) (part SW_PUSH))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA938))
    (comp (ref D102)
      (value LED)
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA96E))
    (comp (ref R105)
      (value 330R)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA974))
    (comp (ref R101)
      (value 330R)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA986))
    (comp (ref D101)
      (value Pwr)
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA98C))
    (comp (ref C112)
      (value 10pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA99E))
    (comp (ref C108)
      (value 10pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9A4))
    (comp (ref R103)
      (value 22R)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9AA))
    (comp (ref C106)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9B0))
    (comp (ref C109)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9B6))
    (comp (ref C105)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9BC))
    (comp (ref C102)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9C2))
    (comp (ref R104)
      (value 1K0)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9C8))
    (comp (ref J101)
      (value USB)
      (libsource (lib conn) (part USB))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9CE))
    (comp (ref R102)
      (value 22R)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA968))
    (comp (ref P104)
      (value RS232)
      (libsource (lib conn) (part CONN_4))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DBCC3E))
    (comp (ref P103)
      (value PF)
      (libsource (lib conn) (part CONN_8))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DBE064))
    (comp (ref RF101)
      (value HHD)
      (libsource (lib mur-sat) (part RF_CON))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAAFA1))
    (comp (ref RF102)
      (value RDA)
      (libsource (lib mur-sat) (part RF_CON))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAB002))
    (comp (ref P106)
      (value RDA_SPK)
      (libsource (lib conn) (part CONN_2))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAC6E9))
    (comp (ref P108)
      (value RDA_MIC)
      (libsource (lib conn) (part CONN_2))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAC6EF))
    (comp (ref P102)
      (value PC/PD)
      (libsource (lib conn) (part CONN_8))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAF95A))
    (comp (ref U101)
      (value ATMEGA32U4_MURSAT)
      (fields
        (field (name Name) ATMEGA32U4))
      (libsource (lib mur-sat) (part ATMEGA32U4_MURSAT))
      (sheetpath (names /) (tstamps /))
      (tstamp 54DAA9D5))
    (comp (ref R204)
      (value 4k7)
      (libsource (lib device) (part R))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 503A118B))
    (comp (ref K201)
      (value PA_TEMP)
      (libsource (lib conn) (part CONN_3))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 503A1181))
    (comp (ref U201)
      (value NL17ST04)
      (libsource (lib mur-sat) (part NL17ST04))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502BE21D))
    (comp (ref R203)
      (value 1k0)
      (libsource (lib device) (part R))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502E2B8E))
    (comp (ref C202)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502BE2BB))
    (comp (ref C203)
      (value 100pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 503437BA))
    (comp (ref U203)
      (value AS193-73)
      (libsource (lib mur-sat) (part AS193-73))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 50340857))
    (comp (ref U204)
      (value RFPA3800)
      (libsource (lib mur-sat) (part RFPA3800))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502E29FA))
    (comp (ref C209)
      (value 100pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 5032C258))
    (comp (ref C216)
      (value 100pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 5032C204))
    (comp (ref C204)
      (value 22pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502E2C35))
    (comp (ref L201)
      (value 4,3nH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502E2C21))
    (comp (ref R202)
      (value 20k)
      (libsource (lib device) (part R))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C0BE1))
    (comp (ref C210)
      (value 12pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C0603))
    (comp (ref C212)
      (value 12pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C0602))
    (comp (ref C214)
      (value 100pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C05EC))
    (comp (ref L204)
      (value 2,4nH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C05AA))
    (comp (ref L203)
      (value 47nH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C0566))
    (comp (ref C215)
      (value 10µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C04E7))
    (comp (ref C213)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C04DE))
    (comp (ref C211)
      (value 220pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C04DD))
    (comp (ref C206)
      (value 82pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C0486))
    (comp (ref L202)
      (value 2,2nH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C0476))
    (comp (ref C205)
      (value 10µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C0468))
    (comp (ref C208)
      (value 220pF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C045F))
    (comp (ref C207)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502C045D))
    (comp (ref U205)
      (value AS193-73)
      (libsource (lib mur-sat) (part AS193-73))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502BA760))
    (comp (ref U202)
      (value HHD70PA)
      (libsource (lib mur-sat) (part HHD70PA))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 502BA603))
    (comp (ref R201)
      (value 20k)
      (libsource (lib device) (part R))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 4F723F18))
    (comp (ref C201)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /hhd70/) (tstamps /54DA8D44/))
      (tstamp 4F72364C))
    (comp (ref C318)
      (value 150pF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50E1D599))
    (comp (ref X301)
      (value 12.288MHz)
      (libsource (lib device) (part QUARTZCMS4))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50E1D166))
    (comp (ref P301)
      (value RDA_GPIO)
      (libsource (lib conn) (part CONN_8))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39E68))
    (comp (ref C303)
      (value 47µF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39D8A))
    (comp (ref C302)
      (value 47µF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39D7A))
    (comp (ref K301)
      (value RDA_PDN)
      (libsource (lib conn) (part CONN_3))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39D1D))
    (comp (ref C301)
      (value 22pF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39C99))
    (comp (ref C304)
      (value 22pF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39C8D))
    (comp (ref C305)
      (value 47µF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39C7F))
    (comp (ref C316)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39BAF))
    (comp (ref C317)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39BAE))
    (comp (ref C314)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39B96))
    (comp (ref C312)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39B95))
    (comp (ref C308)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39B4C))
    (comp (ref C310)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39B4B))
    (comp (ref C315)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39B0E))
    (comp (ref C313)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39B0D))
    (comp (ref C309)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39AED))
    (comp (ref C311)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39AEC))
    (comp (ref C307)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39A7A))
    (comp (ref C306)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39A73))
    (comp (ref R303)
      (value 50R)
      (libsource (lib device) (part R))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39A23))
    (comp (ref U301)
      (value RDA1846)
      (libsource (lib mur-sat) (part RDA1846))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 50D39A02))
    (comp (ref R302)
      (value 2k2)
      (libsource (lib device) (part R))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 54DBBE20))
    (comp (ref R301)
      (value 2k2)
      (libsource (lib device) (part R))
      (sheetpath (names /rda1846/) (tstamps /54DA9306/))
      (tstamp 54DBBE2B)))
  (libparts
    (libpart (lib device) (part C)
      (description "Condensateur non polarise")
      (footprints
        (fp SM*)
        (fp C?)
        (fp C1-1))
      (fields
        (field (name Reference) C)
        (field (name Value) C)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part CP1)
      (description "Condensateur polarise")
      (footprints
        (fp CP*)
        (fp SM*))
      (fields
        (field (name Reference) C)
        (field (name Value) CP1)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part FILTER)
      (description "Filtre EMI")
      (fields
        (field (name Reference) FB)
        (field (name Value) FILTER)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part INDUCTOR)
      (fields
        (field (name Reference) L)
        (field (name Value) INDUCTOR)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part LED)
      (footprints
        (fp LED-3MM)
        (fp LED-5MM)
        (fp LED-10MM)
        (fp LED-0603)
        (fp LED-0805)
        (fp LED-1206)
        (fp LEDV))
      (fields
        (field (name Reference) D)
        (field (name Value) LED)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name A) (type passive))
        (pin (num 2) (name K) (type passive))))
    (libpart (lib device) (part QUARTZCMS4)
      (fields
        (field (name Reference) X)
        (field (name Value) QUARTZCMS4)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 3) (name 3) (type passive))))
    (libpart (lib device) (part R)
      (description Resistance)
      (footprints
        (fp R?)
        (fp SM0603)
        (fp SM0805)
        (fp R?-*)
        (fp SM1206))
      (fields
        (field (name Reference) R)
        (field (name Value) R)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part SW_PUSH)
      (description "Push Button")
      (fields
        (field (name Reference) SW)
        (field (name Value) SW_PUSH)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib conn) (part CONN_2)
      (description "Symbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_2))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name PM) (type passive))))
    (libpart (lib conn) (part CONN_2X2)
      (description "Symbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_2X2))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))))
    (libpart (lib conn) (part CONN_3)
      (description "Symbole general de connecteur")
      (fields
        (field (name Reference) K)
        (field (name Value) CONN_3))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name PM) (type passive))
        (pin (num 3) (name P3) (type passive))))
    (libpart (lib conn) (part CONN_4)
      (description "Symbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_4))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))))
    (libpart (lib conn) (part CONN_8)
      (description "Symbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_8))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))
        (pin (num 5) (name P5) (type passive))
        (pin (num 6) (name P6) (type passive))
        (pin (num 7) (name P7) (type passive))
        (pin (num 8) (name P8) (type passive))))
    (libpart (lib conn) (part USB)
      (fields
        (field (name Reference) J)
        (field (name Value) USB))
      (pins
        (pin (num 1) (name Vbus) (type power_out))
        (pin (num 2) (name D-) (type BiDi))
        (pin (num 3) (name D+) (type BiDi))
        (pin (num 4) (name GND) (type power_in))
        (pin (num 5) (name Shield_1) (type passive))
        (pin (num 6) (name Shield_2) (type passive))))
    (libpart (lib mur-sat) (part AS193-73)
      (fields
        (field (name Reference) U)
        (field (name Value) AS193-73)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name RF1) (type BiDi))
        (pin (num 2) (name GND) (type passive))
        (pin (num 3) (name RF2) (type BiDi))
        (pin (num 4) (name VB) (type BiDi))
        (pin (num 5) (name RFC) (type BiDi))
        (pin (num 6) (name VA) (type input))))
    (libpart (lib mur-sat) (part ATMEGA32U4_MURSAT)
      (fields
        (field (name Reference) U)
        (field (name Value) ATMEGA32U4_MURSAT)
        (field (name Footprint) ~)
        (field (name Datasheet) ~)
        (field (name Name) ATMEGA32U4))
      (pins
        (pin (num 1) (name PE6) (type BiDi))
        (pin (num 2) (name UVcc) (type power_in))
        (pin (num 3) (name D-) (type BiDi))
        (pin (num 4) (name D+) (type BiDi))
        (pin (num 5) (name UGnd) (type power_in))
        (pin (num 6) (name UCap) (type power_in))
        (pin (num 7) (name VBus) (type BiDi))
        (pin (num 8) (name PB0) (type BiDi))
        (pin (num 9) (name PB1) (type BiDi))
        (pin (num 10) (name PB2) (type BiDi))
        (pin (num 11) (name PB3) (type BiDi))
        (pin (num 12) (name PB7) (type BiDi))
        (pin (num 13) (name RESET) (type BiDi))
        (pin (num 14) (name Vcc) (type power_in))
        (pin (num 15) (name GND) (type power_in))
        (pin (num 16) (name XTAL2) (type output))
        (pin (num 17) (name XTAL1) (type input))
        (pin (num 18) (name PD0) (type BiDi))
        (pin (num 19) (name PD1) (type BiDi))
        (pin (num 20) (name PD2) (type BiDi))
        (pin (num 21) (name PD3) (type BiDi))
        (pin (num 22) (name PD5) (type BiDi))
        (pin (num 23) (name GND) (type power_in))
        (pin (num 24) (name AVcc) (type power_in))
        (pin (num 25) (name PD4) (type BiDi))
        (pin (num 26) (name PD6) (type BiDi))
        (pin (num 27) (name PD7) (type BiDi))
        (pin (num 28) (name PB4) (type BiDi))
        (pin (num 29) (name PB5) (type BiDi))
        (pin (num 30) (name PB6) (type BiDi))
        (pin (num 31) (name PC6) (type BiDi))
        (pin (num 32) (name PC7) (type BiDi))
        (pin (num 33) (name PE2) (type BiDi))
        (pin (num 34) (name Vcc) (type power_in))
        (pin (num 35) (name GND) (type power_in))
        (pin (num 36) (name PF7) (type BiDi))
        (pin (num 37) (name PF6) (type BiDi))
        (pin (num 38) (name PF5) (type BiDi))
        (pin (num 39) (name PF4) (type BiDi))
        (pin (num 40) (name PF1) (type BiDi))
        (pin (num 41) (name PF0) (type BiDi))
        (pin (num 42) (name ARef) (type output))
        (pin (num 43) (name GND) (type power_in))
        (pin (num 44) (name AVcc) (type power_in))))
    (libpart (lib mur-sat) (part HHD70PA)
      (fields
        (field (name Reference) U)
        (field (name Value) HHD70PA)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name Vcc) (type power_in))
        (pin (num 2) (name Gnd) (type power_in))
        (pin (num 3) (name SI) (type input))
        (pin (num 4) (name SCLK) (type input))
        (pin (num 5) (name SO) (type output))
        (pin (num 6) (name GDO2) (type output))
        (pin (num 7) (name GDO0) (type BiDi))
        (pin (num 8) (name CSN) (type input))
        (pin (num 9) (name RE) (type input))
        (pin (num 10) (name TE) (type input))
        (pin (num 11) (name GND) (type power_in))
        (pin (num 12) (name ANT) (type BiDi))
        (pin (num 13) (name GND) (type power_in))))
    (libpart (lib mur-sat) (part LT1962)
      (fields
        (field (name Reference) U)
        (field (name Value) LT1962)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name OUT) (type power_out))
        (pin (num 2) (name ADJ/SENSE) (type input))
        (pin (num 3) (name BYP) (type input))
        (pin (num 4) (name GND) (type power_in))
        (pin (num 5) (name SHDN) (type input))
        (pin (num 6) (name NC) (type input))
        (pin (num 7) (name NC) (type input))
        (pin (num 8) (name IN) (type power_in))))
    (libpart (lib mur-sat) (part NL17ST04)
      (fields
        (field (name Reference) U)
        (field (name Value) NL17ST04)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name NC) (type passive))
        (pin (num 2) (name IN_A) (type input))
        (pin (num 3) (name GND) (type passive))
        (pin (num 4) (name Out) (type output))
        (pin (num 5) (name Vcc) (type power_in))))
    (libpart (lib mur-sat) (part RDA1846)
      (fields
        (field (name Reference) U)
        (field (name Value) RDA1846)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name AVdd) (type power_in))
        (pin (num 2) (name SCLK) (type input))
        (pin (num 3) (name SDIO) (type BiDi))
        (pin (num 4) (name AVdd) (type power_in))
        (pin (num 5) (name XTAL1) (type input))
        (pin (num 6) (name XTAL2) (type output))
        (pin (num 7) (name MODE) (type input))
        (pin (num 8) (name SENB) (type input))
        (pin (num 9) (name AFOUT) (type output))
        (pin (num 10) (name NC) (type input))
        (pin (num 11) (name MIC_IN) (type input))
        (pin (num 12) (name Cc) (type BiDi))
        (pin (num 13) (name AVdd) (type power_in))
        (pin (num 14) (name NC) (type input))
        (pin (num 15) (name RFIN) (type input))
        (pin (num 16) (name AVdd) (type power_in))
        (pin (num 17) (name NC) (type input))
        (pin (num 18) (name RFOUT) (type output))
        (pin (num 19) (name NC) (type input))
        (pin (num 20) (name NC) (type input))
        (pin (num 21) (name AVdd) (type power_in))
        (pin (num 22) (name PABIAS) (type output))
        (pin (num 23) (name AVdd) (type power_in))
        (pin (num 24) (name PDN) (type input))
        (pin (num 25) (name GPIO7) (type BiDi))
        (pin (num 26) (name GPIO6) (type BiDi))
        (pin (num 27) (name GPIO5) (type BiDi))
        (pin (num 28) (name GPIO4) (type BiDi))
        (pin (num 29) (name GPIO3) (type BiDi))
        (pin (num 30) (name GPIO2) (type BiDi))
        (pin (num 31) (name GPIO1) (type BiDi))
        (pin (num 32) (name GPIO0) (type BiDi))
        (pin (num 33) (name GND) (type power_in))))
    (libpart (lib mur-sat) (part RF_CON)
      (fields
        (field (name Reference) RF)
        (field (name Value) RF_CON)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name GND) (type input))
        (pin (num 2) (name GND) (type input))
        (pin (num 3) (name GND) (type input))
        (pin (num 4) (name GND) (type input))
        (pin (num 5) (name SIGNAL) (type input))))
    (libpart (lib mur-sat) (part RFPA3800)
      (fields
        (field (name Reference) U)
        (field (name Value) RFPA3800)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name Vref) (type input))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name RFin) (type input))
        (pin (num 4) (name GND) (type power_in))
        (pin (num 5) (name GND) (type power_in))
        (pin (num 6) (name RFout) (type output))
        (pin (num 7) (name RFout) (type output))
        (pin (num 8) (name Vbias) (type power_in))
        (pin (num 9) (name GND) (type power_in)))))
  (libraries
    (library (logical device)
      (uri /usr/share/kicad/library/device.lib))
    (library (logical conn)
      (uri /usr/share/kicad/library/conn.lib))
    (library (logical mur-sat)
      (uri ../../contrib/kicad-libs/mur-sat.lib)))
  (nets
    (net (code 1) (name /TxD)
      (node (ref U101) (pin 21))
      (node (ref P104) (pin 3)))
    (net (code 2) (name /RxD)
      (node (ref U101) (pin 20))
      (node (ref P104) (pin 2)))
    (net (code 3) (name /hhd70/PA_TEMP)
      (node (ref R204) (pin 2))
      (node (ref U101) (pin 30))
      (node (ref K201) (pin 2)))
    (net (code 4) (name /rda1846/RDA_SCL)
      (node (ref R302) (pin 1))
      (node (ref U301) (pin 2))
      (node (ref U101) (pin 18)))
    (net (code 5) (name /rda1846/RDA_SDA)
      (node (ref U301) (pin 3))
      (node (ref R301) (pin 1))
      (node (ref U101) (pin 19)))
    (net (code 6) (name GND)
      (node (ref SW101) (pin 1))
      (node (ref C103) (pin 2))
      (node (ref C204) (pin 1))
      (node (ref U202) (pin 11))
      (node (ref C201) (pin 1))
      (node (ref U202) (pin 13))
      (node (ref U102) (pin 6))
      (node (ref U102) (pin 7))
      (node (ref C115) (pin 2))
      (node (ref C116) (pin 2))
      (node (ref U102) (pin 4))
      (node (ref P105) (pin 4))
      (node (ref P105) (pin 3))
      (node (ref P107) (pin 4))
      (node (ref P107) (pin 3))
      (node (ref C105) (pin 2))
      (node (ref C118) (pin 2))
      (node (ref C117) (pin 2))
      (node (ref C101) (pin 2))
      (node (ref C110) (pin 2))
      (node (ref D102) (pin 2))
      (node (ref C109) (pin 2))
      (node (ref C102) (pin 2))
      (node (ref R104) (pin 2))
      (node (ref D101) (pin 2))
      (node (ref C112) (pin 2))
      (node (ref C108) (pin 2))
      (node (ref C106) (pin 2))
      (node (ref C316) (pin 2))
      (node (ref C312) (pin 2))
      (node (ref C317) (pin 2))
      (node (ref C314) (pin 2))
      (node (ref U301) (pin 7))
      (node (ref U301) (pin 8))
      (node (ref U301) (pin 33))
      (node (ref R303) (pin 1))
      (node (ref C301) (pin 2))
      (node (ref C304) (pin 2))
      (node (ref C305) (pin 2))
      (node (ref K301) (pin 1))
      (node (ref C208) (pin 2))
      (node (ref U203) (pin 2))
      (node (ref C202) (pin 1))
      (node (ref C205) (pin 2))
      (node (ref C207) (pin 2))
      (node (ref L202) (pin 2))
      (node (ref C211) (pin 1))
      (node (ref U202) (pin 2))
      (node (ref U205) (pin 2))
      (node (ref U204) (pin 9))
      (node (ref U204) (pin 5))
      (node (ref U204) (pin 4))
      (node (ref U204) (pin 2))
      (node (ref R202) (pin 2))
      (node (ref U201) (pin 3))
      (node (ref K201) (pin 1))
      (node (ref C215) (pin 2))
      (node (ref C212) (pin 1))
      (node (ref C210) (pin 1))
      (node (ref C311) (pin 2))
      (node (ref C309) (pin 2))
      (node (ref C313) (pin 2))
      (node (ref C315) (pin 2))
      (node (ref C310) (pin 2))
      (node (ref C308) (pin 2))
      (node (ref C307) (pin 2))
      (node (ref C306) (pin 2))
      (node (ref C213) (pin 1))
      (node (ref P106) (pin 1))
      (node (ref FB101) (pin 2))
      (node (ref RF101) (pin 1))
      (node (ref RF102) (pin 4))
      (node (ref RF102) (pin 3))
      (node (ref RF102) (pin 2))
      (node (ref RF102) (pin 1))
      (node (ref U101) (pin 5))
      (node (ref RF101) (pin 4))
      (node (ref RF101) (pin 3))
      (node (ref RF101) (pin 2))
      (node (ref C113) (pin 2))
      (node (ref P108) (pin 1))
      (node (ref P104) (pin 4))
      (node (ref U101) (pin 15))
      (node (ref P102) (pin 8))
      (node (ref P103) (pin 8))
      (node (ref U101) (pin 43))
      (node (ref C111) (pin 2))
      (node (ref U101) (pin 35))
      (node (ref U101) (pin 23)))
    (net (code 7) (name VCC)
      (node (ref U201) (pin 5))
      (node (ref R101) (pin 1))
      (node (ref R204) (pin 1))
      (node (ref K201) (pin 3))
      (node (ref C311) (pin 1))
      (node (ref C202) (pin 2))
      (node (ref C309) (pin 1))
      (node (ref C313) (pin 1))
      (node (ref C307) (pin 1))
      (node (ref R201) (pin 1))
      (node (ref U202) (pin 1))
      (node (ref U101) (pin 24))
      (node (ref U301) (pin 1))
      (node (ref P102) (pin 1))
      (node (ref C201) (pin 2))
      (node (ref U101) (pin 44))
      (node (ref U101) (pin 34))
      (node (ref C306) (pin 1))
      (node (ref C103) (pin 1))
      (node (ref C308) (pin 1))
      (node (ref C310) (pin 1))
      (node (ref C315) (pin 1))
      (node (ref U101) (pin 14))
      (node (ref P105) (pin 1))
      (node (ref P103) (pin 1))
      (node (ref P104) (pin 1))
      (node (ref K301) (pin 3))
      (node (ref U301) (pin 4))
      (node (ref C317) (pin 1))
      (node (ref C109) (pin 1))
      (node (ref C314) (pin 1))
      (node (ref U301) (pin 21))
      (node (ref R301) (pin 2))
      (node (ref C312) (pin 1))
      (node (ref R302) (pin 2))
      (node (ref C106) (pin 1))
      (node (ref U301) (pin 16))
      (node (ref C316) (pin 1))
      (node (ref U301) (pin 23))
      (node (ref U301) (pin 13))
      (node (ref C105) (pin 1)))
    (net (code 8) (name /PD4)
      (node (ref U101) (pin 25))
      (node (ref P102) (pin 4)))
    (net (code 9) (name /PD5)
      (node (ref U101) (pin 22))
      (node (ref P102) (pin 5)))
    (net (code 10) (name /PD6)
      (node (ref P102) (pin 6))
      (node (ref U101) (pin 26)))
    (net (code 11) (name "")
      (node (ref R102) (pin 2))
      (node (ref J101) (pin 3)))
    (net (code 12) (name "")
      (node (ref U101) (pin 33))
      (node (ref R104) (pin 1)))
    (net (code 13) (name "")
      (node (ref U101) (pin 6))
      (node (ref C110) (pin 1)))
    (net (code 14) (name "")
      (node (ref C112) (pin 1))
      (node (ref U101) (pin 17))
      (node (ref X101) (pin 3)))
    (net (code 15) (name "")
      (node (ref C108) (pin 1))
      (node (ref U101) (pin 16))
      (node (ref X101) (pin 1)))
    (net (code 16) (name "")
      (node (ref D102) (pin 1))
      (node (ref R105) (pin 2)))
    (net (code 17) (name /hhd70/HHD_RXTX)
      (node (ref R202) (pin 1))
      (node (ref U203) (pin 4))
      (node (ref U202) (pin 9))
      (node (ref U101) (pin 12))
      (node (ref U201) (pin 2))
      (node (ref U205) (pin 4)))
    (net (code 18) (name /hhd70/HHD_GDO0)
      (node (ref U202) (pin 7))
      (node (ref U101) (pin 28)))
    (net (code 19) (name /hhd70/HHD_GDO2)
      (node (ref U202) (pin 6))
      (node (ref U101) (pin 29)))
    (net (code 20) (name /hhd70/HHD_MISO)
      (node (ref U101) (pin 11))
      (node (ref U202) (pin 5)))
    (net (code 21) (name /hhd70/HHD_MOSI)
      (node (ref U202) (pin 3))
      (node (ref U101) (pin 10)))
    (net (code 22) (name /hhd70/HHD_SCLK)
      (node (ref U202) (pin 4))
      (node (ref U101) (pin 9)))
    (net (code 23) (name /hhd70/HHD_CS)
      (node (ref U202) (pin 8))
      (node (ref U101) (pin 8))
      (node (ref R201) (pin 2)))
    (net (code 24) (name "")
      (node (ref U101) (pin 4))
      (node (ref R102) (pin 1)))
    (net (code 25) (name "")
      (node (ref U101) (pin 3))
      (node (ref R103) (pin 1)))
    (net (code 26) (name /hhd70/PA_PWR)
      (node (ref P107) (pin 2))
      (node (ref C211) (pin 2))
      (node (ref C205) (pin 1))
      (node (ref C208) (pin 1))
      (node (ref C207) (pin 1))
      (node (ref R203) (pin 2))
      (node (ref U204) (pin 8))
      (node (ref L203) (pin 2))
      (node (ref C215) (pin 1))
      (node (ref C213) (pin 2)))
    (net (code 27) (name "")
      (node (ref D101) (pin 1))
      (node (ref R101) (pin 2)))
    (net (code 28) (name "")
      (node (ref C101) (pin 1))
      (node (ref J101) (pin 6))
      (node (ref J101) (pin 5)))
    (net (code 29) (name /PF1)
      (node (ref U101) (pin 40))
      (node (ref P103) (pin 3)))
    (net (code 30) (name /PF0)
      (node (ref U101) (pin 41))
      (node (ref P103) (pin 2)))
    (net (code 31) (name /rda1846/RDA_IN)
      (node (ref P108) (pin 2))
      (node (ref C302) (pin 1)))
    (net (code 32) (name /rda1846/RDA_OUT)
      (node (ref P106) (pin 2))
      (node (ref C303) (pin 1)))
    (net (code 33) (name /PC6)
      (node (ref P102) (pin 2))
      (node (ref U101) (pin 31)))
    (net (code 34) (name /PC7)
      (node (ref U101) (pin 32))
      (node (ref P102) (pin 3)))
    (net (code 35) (name /PF7)
      (node (ref U101) (pin 36))
      (node (ref P103) (pin 7)))
    (net (code 36) (name /PD7)
      (node (ref U101) (pin 27))
      (node (ref P102) (pin 7)))
    (net (code 37) (name /PF6)
      (node (ref P103) (pin 6))
      (node (ref U101) (pin 37)))
    (net (code 38) (name /PF5)
      (node (ref U101) (pin 38))
      (node (ref P103) (pin 5)))
    (net (code 39) (name /PF4)
      (node (ref P103) (pin 4))
      (node (ref U101) (pin 39)))
    (net (code 40) (name /rda1846/RDA_HF)
      (node (ref RF102) (pin 5))
      (node (ref U301) (pin 15)))
    (net (code 41) (name /hhd70/HHD_HF)
      (node (ref RF101) (pin 5))
      (node (ref C216) (pin 2)))
    (net (code 42) (name "")
      (node (ref C114) (pin 1))
      (node (ref U102) (pin 3)))
    (net (code 43) (name "")
      (node (ref FB102) (pin 1))
      (node (ref C116) (pin 1))
      (node (ref U102) (pin 2))
      (node (ref C114) (pin 2))
      (node (ref U102) (pin 1))
      (node (ref C115) (pin 1)))
    (net (code 44) (name /5V_PWR_FLT)
      (node (ref L101) (pin 2))
      (node (ref U102) (pin 5))
      (node (ref C111) (pin 1))
      (node (ref U102) (pin 8))
      (node (ref C113) (pin 1))
      (node (ref P107) (pin 1)))
    (net (code 45) (name /USB_GND)
      (node (ref P101) (pin 3))
      (node (ref P101) (pin 4))
      (node (ref C104) (pin 2))
      (node (ref FB101) (pin 1))
      (node (ref J101) (pin 4))
      (node (ref C107) (pin 2)))
    (net (code 46) (name /INT_PWR)
      (node (ref C117) (pin 1))
      (node (ref P105) (pin 2))
      (node (ref C118) (pin 1))
      (node (ref FB102) (pin 2)))
    (net (code 47) (name "")
      (node (ref U101) (pin 1))
      (node (ref R105) (pin 1)))
    (net (code 48) (name /5V_PWR)
      (node (ref P101) (pin 2))
      (node (ref C104) (pin 1))
      (node (ref L101) (pin 1))
      (node (ref C107) (pin 1)))
    (net (code 49) (name "")
      (node (ref U101) (pin 42))
      (node (ref C102) (pin 1)))
    (net (code 50) (name "")
      (node (ref R103) (pin 2))
      (node (ref J101) (pin 2)))
    (net (code 51) (name "")
      (node (ref U101) (pin 13))
      (node (ref SW101) (pin 2)))
    (net (code 52) (name /USB_PWR)
      (node (ref J101) (pin 1))
      (node (ref P101) (pin 1))
      (node (ref U101) (pin 2))
      (node (ref U101) (pin 7)))
    (net (code 53) (name "")
      (node (ref U203) (pin 5))
      (node (ref U202) (pin 12)))
    (net (code 54) (name /hhd70/RE)
      (node (ref U202) (pin 10))
      (node (ref U201) (pin 4))
      (node (ref U203) (pin 6))
      (node (ref U205) (pin 6)))
    (net (code 55) (name "")
      (node (ref C216) (pin 1))
      (node (ref U205) (pin 5)))
    (net (code 56) (name "")
      (node (ref L203) (pin 1))
      (node (ref L204) (pin 1))
      (node (ref U204) (pin 7))
      (node (ref U204) (pin 6)))
    (net (code 57) (name "")
      (node (ref U205) (pin 3))
      (node (ref C214) (pin 1)))
    (net (code 58) (name "")
      (node (ref C210) (pin 2))
      (node (ref C212) (pin 2))
      (node (ref C214) (pin 2))
      (node (ref L204) (pin 2)))
    (net (code 59) (name "")
      (node (ref C209) (pin 2))
      (node (ref U205) (pin 1)))
    (net (code 60) (name "")
      (node (ref C206) (pin 2))
      (node (ref U204) (pin 3)))
    (net (code 61) (name "")
      (node (ref L201) (pin 2))
      (node (ref L202) (pin 1))
      (node (ref C206) (pin 1)))
    (net (code 62) (name "")
      (node (ref C204) (pin 2))
      (node (ref C203) (pin 1))
      (node (ref L201) (pin 1)))
    (net (code 63) (name "")
      (node (ref U204) (pin 1))
      (node (ref R203) (pin 1)))
    (net (code 64) (name "")
      (node (ref U203) (pin 1))
      (node (ref C209) (pin 1)))
    (net (code 65) (name "")
      (node (ref C203) (pin 2))
      (node (ref U203) (pin 3)))
    (net (code 66) (name "")
      (node (ref U201) (pin 1)))
    (net (code 67) (name "")
      (node (ref U301) (pin 10)))
    (net (code 68) (name "")
      (node (ref U301) (pin 14)))
    (net (code 69) (name "")
      (node (ref U301) (pin 17)))
    (net (code 70) (name "")
      (node (ref U301) (pin 19)))
    (net (code 71) (name "")
      (node (ref U301) (pin 20)))
    (net (code 72) (name "")
      (node (ref U301) (pin 22)))
    (net (code 73) (name "")
      (node (ref C318) (pin 2))
      (node (ref R303) (pin 2)))
    (net (code 74) (name "")
      (node (ref U301) (pin 11))
      (node (ref C302) (pin 2)))
    (net (code 75) (name "")
      (node (ref U301) (pin 9))
      (node (ref C303) (pin 2)))
    (net (code 76) (name "")
      (node (ref X301) (pin 3))
      (node (ref C304) (pin 1))
      (node (ref U301) (pin 6)))
    (net (code 77) (name "")
      (node (ref U301) (pin 30))
      (node (ref P301) (pin 3)))
    (net (code 78) (name "")
      (node (ref P301) (pin 4))
      (node (ref U301) (pin 29)))
    (net (code 79) (name "")
      (node (ref P301) (pin 1))
      (node (ref U301) (pin 32)))
    (net (code 80) (name "")
      (node (ref X301) (pin 1))
      (node (ref U301) (pin 5))
      (node (ref C301) (pin 1)))
    (net (code 81) (name "")
      (node (ref U301) (pin 31))
      (node (ref P301) (pin 2)))
    (net (code 82) (name "")
      (node (ref K301) (pin 2))
      (node (ref U301) (pin 24)))
    (net (code 83) (name "")
      (node (ref P301) (pin 7))
      (node (ref U301) (pin 26)))
    (net (code 84) (name "")
      (node (ref P301) (pin 6))
      (node (ref U301) (pin 27)))
    (net (code 85) (name "")
      (node (ref U301) (pin 18))
      (node (ref C318) (pin 1)))
    (net (code 86) (name "")
      (node (ref U301) (pin 28))
      (node (ref P301) (pin 5)))
    (net (code 87) (name "")
      (node (ref U301) (pin 12))
      (node (ref C305) (pin 1)))
    (net (code 88) (name "")
      (node (ref U301) (pin 25))
      (node (ref P301) (pin 8)))))