summaryrefslogtreecommitdiff
path: root/hardware/hhd70dongle/hhd70dongle.net
blob: c2ec2f8d6095317ff1b95cf0aaf3f04a6c285856 (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
(export (version D)
  (design
    (source /home/equinox/mur.at/mur.sat/git/hardware/hhd70dongle/hhd70dongle.sch)
    (date "Son 08 Feb 2015 02:27:33 CET")
    (tool "eeschema (2013-jul-07)-stable"))
  (components
    (comp (ref C35)
      (value 3,3µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 503B8B44))
    (comp (ref C36)
      (value 10µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 503B8B1A))
    (comp (ref R12)
      (value 4k7)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 503A118B))
    (comp (ref K2)
      (value PA_TEMP)
      (libsource (lib conn) (part CONN_3))
      (sheetpath (names /) (tstamps /))
      (tstamp 503A1181))
    (comp (ref U6)
      (value NL17ST04)
      (libsource (lib mur-sat) (part NL17ST04))
      (sheetpath (names /) (tstamps /))
      (tstamp 502BE21D))
    (comp (ref K1)
      (value TE_SEL)
      (libsource (lib conn) (part CONN_3))
      (sheetpath (names /) (tstamps /))
      (tstamp 503907B6))
    (comp (ref P6)
      (value RS232)
      (libsource (lib conn) (part CONN_5))
      (sheetpath (names /) (tstamps /))
      (tstamp 50390250))
    (comp (ref R8)
      (value 1k0)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 502E2B8E))
    (comp (ref C20)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502BE2BB))
    (comp (ref C18)
      (value 100pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503437BA))
    (comp (ref U3)
      (value AS193-73)
      (libsource (lib mur-sat) (part AS193-73))
      (sheetpath (names /) (tstamps /))
      (tstamp 50340857))
    (comp (ref U7)
      (value RFPA3800)
      (libsource (lib mur-sat) (part RFPA3800))
      (sheetpath (names /) (tstamps /))
      (tstamp 502E29FA))
    (comp (ref C12)
      (value 100pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5032C258))
    (comp (ref C11)
      (value 100pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5032C204))
    (comp (ref U9)
      (value AD8027)
      (libsource (lib mur-sat) (part AD8027))
      (sheetpath (names /) (tstamps /))
      (tstamp 502E3C74))
    (comp (ref U8)
      (value AD8027)
      (libsource (lib mur-sat) (part AD8027))
      (sheetpath (names /) (tstamps /))
      (tstamp 502E3C6B))
    (comp (ref C30)
      (value 22pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502E2C35))
    (comp (ref L4)
      (value 4,3nH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /) (tstamps /))
      (tstamp 502E2C21))
    (comp (ref R11)
      (value 10k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 502D61F9))
    (comp (ref R9)
      (value 20k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 502D61F0))
    (comp (ref R10)
      (value 47k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C102D))
    (comp (ref R3)
      (value 20k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C0BE1))
    (comp (ref C21)
      (value 12pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C0603))
    (comp (ref C22)
      (value 12pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C0602))
    (comp (ref C19)
      (value 100pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C05EC))
    (comp (ref L2)
      (value 2,4nH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C05AA))
    (comp (ref L3)
      (value 47nH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C0566))
    (comp (ref C27)
      (value 10µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C04E7))
    (comp (ref C26)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C04DE))
    (comp (ref C25)
      (value 220pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C04DD))
    (comp (ref C31)
      (value 82pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C0486))
    (comp (ref L5)
      (value 2,2nH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C0476))
    (comp (ref C32)
      (value 10µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C0468))
    (comp (ref C34)
      (value 220pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C045F))
    (comp (ref C33)
      (value 1nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 502C045D))
    (comp (ref P3)
      (value PA_PWR)
      (libsource (lib conn) (part CONN_2X2))
      (sheetpath (names /) (tstamps /))
      (tstamp 502BE331))
    (comp (ref U4)
      (value AS193-73)
      (libsource (lib mur-sat) (part AS193-73))
      (sheetpath (names /) (tstamps /))
      (tstamp 502BA760))
    (comp (ref U2)
      (value HHD70PA)
      (libsource (lib mur-sat) (part HHD70PA))
      (sheetpath (names /) (tstamps /))
      (tstamp 502BA603))
    (comp (ref FB1)
      (value 600R@100Mhz)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FE4E159))
    (comp (ref C9)
      (value DNP)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FBBEF93))
    (comp (ref C8)
      (value 47nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FBBEF92))
    (comp (ref P1)
      (value USB_PWR)
      (libsource (lib conn) (part CONN_2X2))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FBACB8B))
    (comp (ref P2)
      (value 3V_PWR)
      (libsource (lib conn) (part CONN_2X2))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FBACB4B))
    (comp (ref U1)
      (value LT1962-3)
      (libsource (lib mur-sat) (part LT1962))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FBACA6E))
    (comp (ref C6)
      (value 47nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FBACA35))
    (comp (ref C7)
      (value 10µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 4FBACA34))
    (comp (ref P5)
      (value PC/PF)
      (libsource (lib conn) (part CONN_10))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F74FDFB))
    (comp (ref P4)
      (value PD)
      (libsource (lib conn) (part CONN_10))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F74FDE2))
    (comp (ref FB2)
      (value 0,47µH)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F74BA76))
    (comp (ref C23)
      (value 22nF/200V)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F74B8DC))
    (comp (ref X1)
      (value 16MHz)
      (libsource (lib device) (part QUARTZCMS4))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F73A73B))
    (comp (ref R1)
      (value 20k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F723F18))
    (comp (ref RF1)
      (value RF_CON)
      (libsource (lib mur-sat) (part RF_CON))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F7236B2))
    (comp (ref C10)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F72364C))
    (comp (ref C17)
      (value 1µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F722A25))
    (comp (ref C13)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F722923))
    (comp (ref SW1)
      (value SW_PUSH)
      (libsource (lib device) (part SW_PUSH))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F72270C))
    (comp (ref R2)
      (value 22R)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F722636))
    (comp (ref D2)
      (value LED)
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F722601))
    (comp (ref R7)
      (value 330R)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F722600))
    (comp (ref R5)
      (value 330R)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F7225D8))
    (comp (ref D1)
      (value Pwr)
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F7225D2))
    (comp (ref C29)
      (value 10pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F72253B))
    (comp (ref C28)
      (value 10pF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F722526))
    (comp (ref R4)
      (value 22R)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F722502))
    (comp (ref C15)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F7224FF))
    (comp (ref C16)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F7224FE))
    (comp (ref C14)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F7224F8))
    (comp (ref C24)
      (value 100nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F7224B7))
    (comp (ref R6)
      (value 1K0)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F7224B3))
    (comp (ref J1)
      (value USB)
      (libsource (lib conn) (part USB))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F722418))
    (comp (ref C1)
      (value 10nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F5A8BD6))
    (comp (ref C2)
      (value 4,7µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F5A8BD4))
    (comp (ref C5)
      (value 4,7µF)
      (libsource (lib device) (part CP1))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F5A8BD3))
    (comp (ref C3)
      (value 10nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F5A8BC1))
    (comp (ref C4)
      (value 10nF)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F5A8BC0))
    (comp (ref L1)
      (value 6,8µH)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /) (tstamps /))
      (tstamp 4F5A8BBF))
    (comp (ref U5)
      (value ATMEGA32U4_MURSAT)
      (fields
        (field (name Name) ATMEGA32U4))
      (libsource (lib mur-sat) (part ATMEGA32U4_MURSAT))
      (sheetpath (names /) (tstamps /))
      (tstamp 54D6BF78)))
  (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_10)
      (description "Symbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_10))
      (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))
        (pin (num 9) (name P9) (type passive))
        (pin (num 10) (name P10) (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_5)
      (description "Symbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_5))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))
        (pin (num 3) (name ~) (type passive))
        (pin (num 4) (name ~) (type passive))
        (pin (num 5) (name ~) (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 AD8027)
      (fields
        (field (name Reference) U)
        (field (name Value) AD8027)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name OUT) (type output))
        (pin (num 2) (name -Vs) (type power_in))
        (pin (num 3) (name +IN) (type input))
        (pin (num 4) (name -IN) (type input))
        (pin (num 5) (name SHDN) (type input))
        (pin (num 6) (name +Vs) (type power_in))))
    (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 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 "")
      (node (ref U2) (pin 12))
      (node (ref U3) (pin 5)))
    (net (code 2) (name GND)
      (node (ref U5) (pin 15))
      (node (ref C35) (pin 2))
      (node (ref U5) (pin 43))
      (node (ref U5) (pin 23))
      (node (ref K2) (pin 1))
      (node (ref U5) (pin 35))
      (node (ref C29) (pin 2))
      (node (ref D1) (pin 2))
      (node (ref D2) (pin 2))
      (node (ref C5) (pin 2))
      (node (ref U5) (pin 5))
      (node (ref C4) (pin 2))
      (node (ref U6) (pin 3))
      (node (ref C33) (pin 2))
      (node (ref C34) (pin 2))
      (node (ref C32) (pin 2))
      (node (ref U7) (pin 4))
      (node (ref U3) (pin 2))
      (node (ref C24) (pin 2))
      (node (ref C14) (pin 2))
      (node (ref U7) (pin 2))
      (node (ref C16) (pin 2))
      (node (ref U7) (pin 5))
      (node (ref U7) (pin 9))
      (node (ref C28) (pin 2))
      (node (ref R6) (pin 2))
      (node (ref C21) (pin 1))
      (node (ref RF1) (pin 1))
      (node (ref SW1) (pin 1))
      (node (ref RF1) (pin 4))
      (node (ref RF1) (pin 3))
      (node (ref RF1) (pin 2))
      (node (ref P5) (pin 10))
      (node (ref C23) (pin 2))
      (node (ref FB2) (pin 2))
      (node (ref C15) (pin 2))
      (node (ref C13) (pin 2))
      (node (ref C17) (pin 2))
      (node (ref C10) (pin 1))
      (node (ref P4) (pin 10))
      (node (ref R11) (pin 2))
      (node (ref P2) (pin 4))
      (node (ref U4) (pin 2))
      (node (ref P2) (pin 3))
      (node (ref P3) (pin 3))
      (node (ref R3) (pin 2))
      (node (ref C6) (pin 2))
      (node (ref P3) (pin 4))
      (node (ref U1) (pin 7))
      (node (ref U1) (pin 6))
      (node (ref C9) (pin 2))
      (node (ref C8) (pin 2))
      (node (ref U1) (pin 4))
      (node (ref C7) (pin 2))
      (node (ref C26) (pin 1))
      (node (ref C27) (pin 2))
      (node (ref U2) (pin 2))
      (node (ref U8) (pin 2))
      (node (ref C20) (pin 1))
      (node (ref L5) (pin 2))
      (node (ref C30) (pin 1))
      (node (ref C22) (pin 1))
      (node (ref C25) (pin 1))
      (node (ref U9) (pin 2))
      (node (ref U2) (pin 13))
      (node (ref U2) (pin 11))
      (node (ref P6) (pin 1)))
    (net (code 3) (name /PA_PWR)
      (node (ref U7) (pin 8))
      (node (ref C26) (pin 2))
      (node (ref U9) (pin 6))
      (node (ref C27) (pin 1))
      (node (ref P3) (pin 2))
      (node (ref C25) (pin 2))
      (node (ref L3) (pin 1))
      (node (ref U8) (pin 6)))
    (net (code 4) (name "")
      (node (ref U4) (pin 3))
      (node (ref C19) (pin 2)))
    (net (code 5) (name /TE)
      (node (ref U4) (pin 4))
      (node (ref K1) (pin 2))
      (node (ref U2) (pin 9))
      (node (ref U3) (pin 4))
      (node (ref U8) (pin 5))
      (node (ref U9) (pin 5))
      (node (ref R3) (pin 1))
      (node (ref U6) (pin 2)))
    (net (code 6) (name "")
      (node (ref C7) (pin 1))
      (node (ref C1) (pin 2))
      (node (ref FB1) (pin 1))
      (node (ref C6) (pin 1))
      (node (ref U1) (pin 1))
      (node (ref U1) (pin 2)))
    (net (code 7) (name /USB_GND)
      (node (ref P1) (pin 3))
      (node (ref P1) (pin 4))
      (node (ref C3) (pin 2))
      (node (ref C2) (pin 2))
      (node (ref J1) (pin 4))
      (node (ref FB2) (pin 1)))
    (net (code 8) (name "")
      (node (ref U8) (pin 1))
      (node (ref C36) (pin 1))
      (node (ref R9) (pin 1))
      (node (ref R8) (pin 2))
      (node (ref C33) (pin 1))
      (node (ref C34) (pin 1))
      (node (ref C32) (pin 1)))
    (net (code 9) (name "")
      (node (ref U8) (pin 3))
      (node (ref R10) (pin 1))
      (node (ref C35) (pin 1)))
    (net (code 10) (name /BIAS_PWM)
      (node (ref U5) (pin 30))
      (node (ref U9) (pin 3)))
    (net (code 11) (name /RE)
      (node (ref U6) (pin 4))
      (node (ref U4) (pin 6))
      (node (ref U3) (pin 6))
      (node (ref U2) (pin 10)))
    (net (code 12) (name "")
      (node (ref C18) (pin 1))
      (node (ref C30) (pin 2))
      (node (ref L4) (pin 1)))
    (net (code 13) (name /5V_PWR_FLT)
      (node (ref U1) (pin 5))
      (node (ref P3) (pin 1))
      (node (ref U1) (pin 8))
      (node (ref L1) (pin 2))
      (node (ref C5) (pin 1))
      (node (ref C4) (pin 1)))
    (net (code 14) (name "")
      (node (ref C19) (pin 1))
      (node (ref C22) (pin 2))
      (node (ref L2) (pin 1))
      (node (ref C21) (pin 2)))
    (net (code 15) (name "")
      (node (ref U7) (pin 6))
      (node (ref U7) (pin 7))
      (node (ref L2) (pin 2))
      (node (ref L3) (pin 2)))
    (net (code 16) (name /PC6)
      (node (ref U5) (pin 31))
      (node (ref P5) (pin 2)))
    (net (code 17) (name "")
      (node (ref C24) (pin 1))
      (node (ref U5) (pin 42)))
    (net (code 18) (name "")
      (node (ref U5) (pin 33))
      (node (ref R6) (pin 1)))
    (net (code 19) (name "")
      (node (ref J1) (pin 2))
      (node (ref R4) (pin 2)))
    (net (code 20) (name "")
      (node (ref J1) (pin 6))
      (node (ref C23) (pin 1))
      (node (ref J1) (pin 5)))
    (net (code 21) (name "")
      (node (ref C1) (pin 1))
      (node (ref U1) (pin 3)))
    (net (code 22) (name "")
      (node (ref R2) (pin 2))
      (node (ref J1) (pin 3)))
    (net (code 23) (name "")
      (node (ref D2) (pin 1))
      (node (ref R7) (pin 2)))
    (net (code 24) (name "")
      (node (ref R5) (pin 2))
      (node (ref D1) (pin 1)))
    (net (code 25) (name "")
      (node (ref U5) (pin 6))
      (node (ref C17) (pin 1)))
    (net (code 26) (name /5V_PWR)
      (node (ref P1) (pin 2))
      (node (ref L1) (pin 1))
      (node (ref C2) (pin 1))
      (node (ref C3) (pin 1)))
    (net (code 27) (name "")
      (node (ref R7) (pin 1))
      (node (ref U5) (pin 1)))
    (net (code 28) (name "")
      (node (ref U5) (pin 3))
      (node (ref R4) (pin 1)))
    (net (code 29) (name "")
      (node (ref R2) (pin 1))
      (node (ref U5) (pin 4)))
    (net (code 30) (name /MISO)
      (node (ref U5) (pin 11))
      (node (ref U2) (pin 5)))
    (net (code 31) (name /GDO0)
      (node (ref U5) (pin 29))
      (node (ref K1) (pin 3))
      (node (ref U2) (pin 7)))
    (net (code 32) (name /GDO2)
      (node (ref U5) (pin 28))
      (node (ref U2) (pin 6)))
    (net (code 33) (name /MOSI)
      (node (ref U5) (pin 10))
      (node (ref U2) (pin 3)))
    (net (code 34) (name /SCLK)
      (node (ref U5) (pin 9))
      (node (ref U2) (pin 4)))
    (net (code 35) (name /TxD)
      (node (ref P4) (pin 5))
      (node (ref U5) (pin 21))
      (node (ref P6) (pin 5)))
    (net (code 36) (name /PC7)
      (node (ref U5) (pin 32))
      (node (ref P5) (pin 3)))
    (net (code 37) (name /PF0)
      (node (ref P5) (pin 4))
      (node (ref U5) (pin 41)))
    (net (code 38) (name /PF1)
      (node (ref P5) (pin 5))
      (node (ref U5) (pin 40)))
    (net (code 39) (name /PF4)
      (node (ref P5) (pin 6))
      (node (ref U5) (pin 39)))
    (net (code 40) (name /PF5)
      (node (ref U5) (pin 38))
      (node (ref P5) (pin 7)))
    (net (code 41) (name /PF6)
      (node (ref P5) (pin 8))
      (node (ref U5) (pin 37)))
    (net (code 42) (name /PF7)
      (node (ref U5) (pin 36))
      (node (ref P5) (pin 9)))
    (net (code 43) (name /PD0)
      (node (ref P4) (pin 2))
      (node (ref U5) (pin 18)))
    (net (code 44) (name /PD1)
      (node (ref R12) (pin 2))
      (node (ref P4) (pin 3))
      (node (ref K2) (pin 2))
      (node (ref U5) (pin 19)))
    (net (code 45) (name /RxD)
      (node (ref P6) (pin 4))
      (node (ref P4) (pin 4))
      (node (ref U5) (pin 20)))
    (net (code 46) (name "")
      (node (ref X1) (pin 3))
      (node (ref U5) (pin 17))
      (node (ref C29) (pin 1)))
    (net (code 47) (name /PD4)
      (node (ref P4) (pin 6))
      (node (ref U5) (pin 25)))
    (net (code 48) (name /PD5)
      (node (ref U5) (pin 22))
      (node (ref P4) (pin 7)))
    (net (code 49) (name /PD6)
      (node (ref P4) (pin 8))
      (node (ref U5) (pin 26)))
    (net (code 50) (name /PD7)
      (node (ref P4) (pin 9))
      (node (ref U5) (pin 27)))
    (net (code 51) (name /USB_PWR)
      (node (ref J1) (pin 1))
      (node (ref U5) (pin 7))
      (node (ref P1) (pin 1))
      (node (ref U5) (pin 2)))
    (net (code 52) (name "")
      (node (ref SW1) (pin 2))
      (node (ref U5) (pin 13)))
    (net (code 53) (name "")
      (node (ref U4) (pin 5))
      (node (ref C11) (pin 2)))
    (net (code 54) (name "")
      (node (ref C28) (pin 1))
      (node (ref X1) (pin 1))
      (node (ref U5) (pin 16)))
    (net (code 55) (name "")
      (node (ref C12) (pin 1))
      (node (ref U3) (pin 1)))
    (net (code 56) (name /CS)
      (node (ref R1) (pin 2))
      (node (ref U2) (pin 8))
      (node (ref U5) (pin 8)))
    (net (code 57) (name VCC)
      (node (ref P6) (pin 3))
      (node (ref U2) (pin 1))
      (node (ref P5) (pin 1))
      (node (ref P2) (pin 1))
      (node (ref R12) (pin 1))
      (node (ref R5) (pin 1))
      (node (ref C13) (pin 1))
      (node (ref K2) (pin 3))
      (node (ref C10) (pin 2))
      (node (ref P4) (pin 1))
      (node (ref U5) (pin 14))
      (node (ref U5) (pin 24))
      (node (ref U5) (pin 34))
      (node (ref U5) (pin 44))
      (node (ref U6) (pin 5))
      (node (ref R1) (pin 1))
      (node (ref C15) (pin 1))
      (node (ref C16) (pin 1))
      (node (ref C14) (pin 1))
      (node (ref C20) (pin 2)))
    (net (code 58) (name /INT_PWR)
      (node (ref FB1) (pin 2))
      (node (ref C8) (pin 1))
      (node (ref C9) (pin 1))
      (node (ref P2) (pin 2)))
    (net (code 59) (name "")
      (node (ref U6) (pin 1)))
    (net (code 60) (name /PB7)
      (node (ref K1) (pin 1))
      (node (ref U5) (pin 12)))
    (net (code 61) (name "")
      (node (ref C18) (pin 2))
      (node (ref U3) (pin 3)))
    (net (code 62) (name "")
      (node (ref C31) (pin 2))
      (node (ref U7) (pin 3)))
    (net (code 63) (name "")
      (node (ref U4) (pin 1))
      (node (ref C12) (pin 2)))
    (net (code 64) (name "")
      (node (ref RF1) (pin 5))
      (node (ref C11) (pin 1)))
    (net (code 65) (name "")
      (node (ref P6) (pin 2)))
    (net (code 66) (name "")
      (node (ref U7) (pin 1))
      (node (ref R8) (pin 1)))
    (net (code 67) (name "")
      (node (ref L5) (pin 1))
      (node (ref C31) (pin 1))
      (node (ref L4) (pin 2)))
    (net (code 68) (name "")
      (node (ref U9) (pin 4))
      (node (ref R10) (pin 2))
      (node (ref U9) (pin 1)))
    (net (code 69) (name "")
      (node (ref R11) (pin 1))
      (node (ref R9) (pin 2))
      (node (ref U8) (pin 4))
      (node (ref C36) (pin 2)))))