-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathax-chip.net
1340 lines (1340 loc) · 44.4 KB
/
ax-chip.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 /Users/richard/Documents/_ax50/chip/hw/ax-chip.sch)
(date "Wednesday, 16 November 2016 'pmt' 20:47:00")
(tool "Eeschema 4.0.4-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title ax-chip)
(company "Dr Gain Radio Industries")
(rev v0.1)
(date 2016-10-22)
(source ax-chip.sch)
(comment (number 1) (value "Richard Meadows"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C2)
(value 1nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57426CC0))
(comp (ref C6)
(value 100nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 100nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57427EDE))
(comp (ref C5)
(value 4.7µF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 4.7µF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57427F98))
(comp (ref L2)
(value 22nH)
(footprint agg:0603)
(fields
(field (name STD.PAS) 22nH))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57429F5C))
(comp (ref C9)
(value 1µF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1µF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5742F889))
(comp (ref IC4)
(value TG-5006CJ)
(footprint rem:TG-5006CJ)
(datasheet http://www.farnell.com/datasheets/1804154.pdf)
(fields
(field (name Farnell) 2405790))
(libsource (lib ax-gateway-cache) (part TG-5006CJ))
(sheetpath (names /) (tstamps /))
(tstamp 57423EE1))
(comp (ref D8)
(value TVS_DIODE)
(footprint agg-unchecked:TSLP-2-17)
(datasheet http://www.farnell.com/datasheets/1992039.pdf)
(fields
(field (name Farnell) 2480929)
(field (name Capacitance) 0.1pF)
(field (name Vtrig) "Vtrig = 21V typ (4W@50Ω)"))
(libsource (lib ax-gateway-cache) (part TVS_DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 57497B81))
(comp (ref C4)
(value 1µF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1µF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 574C2FA3))
(comp (ref C10)
(value 100nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 100nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57741142))
(comp (ref C11)
(value 100nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 100nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 577413A8))
(comp (ref C12)
(value 39pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 39pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 577420AD))
(comp (ref L3)
(value 22nH)
(footprint agg:0603)
(fields
(field (name STD.PAS) 22nH))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57744B5E))
(comp (ref C14)
(value 56pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 56pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57744DED))
(comp (ref C13)
(value 56pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 56pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5774545E))
(comp (ref C16)
(value 2.7pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 2.7pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 577477A8))
(comp (ref C15)
(value NOSTUFF)
(footprint agg:0402)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57747A5B))
(comp (ref C18)
(value 5.1pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 5.1pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 577498A8))
(comp (ref L5)
(value 15nH)
(footprint agg:0402)
(datasheet LQW15AN15NG00D)
(fields
(field (name STD.PAS) 15nH)
(field (name Farnell) 1762621)
(field (name Digikey) 490-1148-1-ND))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57749B04))
(comp (ref L7)
(value 15nH)
(footprint agg:0402)
(fields
(field (name STD.PAS) 15nH))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5774A0E1))
(comp (ref C19)
(value 2.7pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 2.7pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5774A20D))
(comp (ref R7)
(value 1kΩ)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1kΩ))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5774D1E6))
(comp (ref C3)
(value 1nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5774E6D1))
(comp (ref IC2)
(value TPS73433)
(footprint agg:SOT-23-5)
(datasheet http://www.ti.com/lit/ds/symlink/tps734.pdf)
(fields
(field (name Farnell) 2382987))
(libsource (lib ax-gateway-cache) (part TPS743XX))
(sheetpath (names /) (tstamps /))
(tstamp 57896719))
(comp (ref C7)
(value 10nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 10nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57896C15))
(comp (ref C8)
(value 4.7µF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 4.7µF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5789747C))
(comp (ref P2)
(value COAX)
(footprint rem:SMA-EDGE)
(fields
(field (name Farnell) 1608592))
(libsource (lib ax-gateway-cache) (part COAX))
(sheetpath (names /) (tstamps /))
(tstamp 578A1673))
(comp (ref D1)
(value INTERNET-GREEN)
(footprint rem:1206_LED_REVERSE)
(fields
(field (name Farnell) 2217901))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 578A2D48))
(comp (ref D2)
(value LAN-YELLOW)
(footprint rem:1206_LED_REVERSE)
(fields
(field (name Farnell) 2217902))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 578A2E62))
(comp (ref D3)
(value DATA-ORANGE)
(footprint rem:1206_LED_REVERSE)
(fields
(field (name Farnell) 2099254))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 578A305C))
(comp (ref R1)
(value 330Ω)
(footprint agg:0402)
(fields
(field (name STD.PAS) 330Ω))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 578A4182))
(comp (ref R2)
(value 330Ω)
(footprint agg:0402)
(fields
(field (name STD.PAS) 330Ω))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 578A44D6))
(comp (ref R3)
(value 330Ω)
(footprint agg:0402)
(fields
(field (name STD.PAS) 330Ω))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 578A45B5))
(comp (ref P1)
(value PAD)
(footprint rem:BMI-S-x05)
(fields
(field (name Farnell) 2497723))
(libsource (lib ax-gateway-cache) (part PAD))
(sheetpath (names /) (tstamps /))
(tstamp 578FEA50))
(comp (ref C21)
(value 10nF)
(footprint agg:0402)
(datasheet GRM155R71E103KA01D)
(fields
(field (name Farnell) 8819734))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 579B8B33))
(comp (ref L1)
(value 22nH)
(footprint agg:0603)
(fields
(field (name STD.PAS) 22nH))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 57F7A4A8))
(comp (ref IC3)
(value AX5043)
(footprint rem:QFN-28-EP-AX)
(fields
(field (name Farnell) 2521320))
(libsource (lib ax5243) (part AX5043))
(sheetpath (names /) (tstamps /))
(tstamp 580B9FD3))
(comp (ref L10)
(value 12nH)
(footprint agg:0603)
(datasheet LQW18AN12NG10D)
(fields
(field (name Digikey) 490-6862-1-ND))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 574A224D))
(comp (ref C25)
(value 22pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 22pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 574A231B))
(comp (ref C23)
(value 22pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 22pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 574A2423))
(comp (ref IC1)
(value CHIPv1_0)
(footprint agg:CHIPv1_0)
(datasheet http://docs.getchip.com/#chip-hardware)
(libsource (lib agg-kicad) (part CHIPv1_0))
(sheetpath (names /) (tstamps /))
(tstamp 580C1D35))
(comp (ref U1)
(value DS2401P)
(footprint TO_SOT_Packages_SMD:TSOT-6-MK06A)
(datasheet https://datasheets.maximintegrated.com/en/ds/DS2431.pdf)
(fields
(field (name Farnell) 2519009))
(libsource (lib maxim) (part DS2401P))
(sheetpath (names /) (tstamps /))
(tstamp 580C7C62))
(comp (ref R6)
(value 4.7kΩ)
(footprint agg:0402)
(fields
(field (name STD.PAS) 4.7kΩ))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580C8860))
(comp (ref L4)
(value 120nH)
(footprint agg:0603)
(fields
(field (name STD.PAS) 120nH))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580CD265))
(comp (ref C17)
(value 22pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 22pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580CD7FA))
(comp (ref L6)
(value 120nH)
(footprint agg:0603)
(fields
(field (name STD.PAS) 120nH))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580CD8C1))
(comp (ref C20)
(value 39pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 39pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580CD98F))
(comp (ref L8)
(value 39nH)
(footprint agg:0402)
(fields
(field (name STD.PAS) 39nH))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580CDA52))
(comp (ref L11)
(value 22nH)
(footprint agg:0402)
(fields
(field (name STD.PAS) 22nH))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580CDCF4))
(comp (ref C24)
(value 56pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 56pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580CDE28))
(comp (ref C26)
(value 39pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 39pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580CE677))
(comp (ref D9)
(value TVS_DIODE)
(footprint agg-unchecked:TSLP-2-17)
(datasheet http://www.farnell.com/datasheets/1992039.pdf)
(fields
(field (name Farnell) 2480929)
(field (name Capacitance) 0.1pF)
(field (name Vtrig) "Vtrig = 21V typ (4W@50Ω)"))
(libsource (lib ax-gateway-cache) (part TVS_DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 580CE8E8))
(comp (ref P3)
(value COAX)
(footprint rem:SMA-EDGE)
(fields
(field (name Farnell) 1608592))
(libsource (lib ax-gateway-cache) (part COAX))
(sheetpath (names /) (tstamps /))
(tstamp 580CEAC6))
(comp (ref C1)
(value 100nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 100nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580D71BE))
(comp (ref X2)
(value CONN)
(libsource (lib agg-kicad) (part PART))
(sheetpath (names /) (tstamps /))
(tstamp 580D959A))
(comp (ref X1)
(value CONN)
(libsource (lib agg-kicad) (part PART))
(sheetpath (names /) (tstamps /))
(tstamp 580DA4F2))
(comp (ref J1)
(value CONN_01x02)
(footprint Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_2pol)
(libsource (lib agg-kicad) (part CONN_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 580DAB3E))
(comp (ref J2)
(value CONN_01x02)
(footprint Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_2pol)
(libsource (lib agg-kicad) (part CONN_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 580DD2FD))
(comp (ref R10)
(value 10kΩ)
(footprint agg:0402)
(fields
(field (name STD.PAS) 10kΩ))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580DDBFC))
(comp (ref R5)
(value 1kΩ)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1kΩ))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580DFEF8))
(comp (ref Q1)
(value NX7002AK)
(footprint agg:SOT-23)
(datasheet http://cache.nxp.com/documents/data_sheet/NX7002AK.pdf)
(fields
(field (name Farnell) 2191746))
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 580E458D))
(comp (ref R9)
(value 1kΩ)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1kΩ))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580E4A44))
(comp (ref D5)
(value TX-RED)
(footprint rem:1206_LED_REVERSE)
(fields
(field (name Farnell) 2217903))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 580E5350))
(comp (ref R8)
(value 330Ω)
(footprint agg:0402)
(fields
(field (name STD.PAS) 330Ω))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580E5547))
(comp (ref D6)
(value STTH1L06)
(footprint agg:DO-214AC-SMA)
(datasheet http://www.st.com/content/ccc/resource/technical/document/datasheet/e9/c2/09/e3/32/47/44/bd/CD00002694.pdf/files/CD00002694.pdf/jcr:content/translations/en.CD00002694.pdf)
(fields
(field (name Farnell) 8165505))
(libsource (lib device) (part D_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580E7931))
(comp (ref D4)
(value RSSI-RED)
(footprint rem:1206_LED_REVERSE)
(fields
(field (name Farnell) 2217903))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 580ED788))
(comp (ref R4)
(value 330Ω)
(footprint agg:0402)
(fields
(field (name STD.PAS) 330Ω))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 580EDA0F))
(comp (ref D7)
(value DFLS130L-7)
(footprint Diodes_SMD:SOD-123)
(fields
(field (name Farnell) 1843673))
(libsource (lib _semi) (part SCHOTTKY))
(sheetpath (names /) (tstamps /))
(tstamp 580E3931))
(comp (ref R11)
(value 1kΩ)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1kΩ))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5816164A))
(comp (ref C30)
(value 10nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 10nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58161741))
(comp (ref C29)
(value 100nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 100nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5816214D))
(comp (ref C28)
(value 10nF)
(footprint agg:0402)
(datasheet GRM155R71E103KA01D)
(fields
(field (name Farnell) 8819734))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 582CCC41))
(comp (ref L9)
(value 6.8nH)
(footprint agg:0402)
(datasheet LQW15AN6N8G00D)
(fields
(field (name Farnell) 1762612)
(field (name Digikey) 490-6840-1-ND))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 582CD7E7))
(comp (ref U2)
(value MGA-62563)
(footprint TO_SOT_Packages_SMD:SC-70-6)
(datasheet http://www.avagotech.com/docs/AV02-1237EN)
(fields
(field (name Farnell) 7820453)
(field (name Digikey) 516-1828-1-ND))
(libsource (lib mga-68563) (part MGA-68563))
(sheetpath (names /) (tstamps /))
(tstamp 582CDC39))
(comp (ref R12)
(value 1kΩ)
(footprint agg:0402)
(fields
(field (name STD.PAS) 1kΩ))
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 582CECA1))
(comp (ref L12)
(value 47nH)
(footprint agg:0402)
(datasheet LQG15HN47NJ02D)
(fields
(field (name Farnell) 1343090)
(field (name Digikey) 490-1093-1-ND))
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 582CFA7E))
(comp (ref C27)
(value 68pF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 68pF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 582CFFE0))
(comp (ref C22)
(value 10nF)
(footprint agg:0402)
(fields
(field (name STD.PAS) 10nF))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 582D01D8))
(comp (ref FB1)
(value 600Ω-1A-0.2DCR)
(footprint agg:0603)
(fields
(field (name Farnell) 1635706))
(libsource (lib _passive) (part BEAD))
(sheetpath (names /) (tstamps /))
(tstamp 582D10E5)))
(libparts
(libpart (lib ax5243) (part AX5043)
(fields
(field (name Reference) IC)
(field (name Value) AX5043)
(field (name Footprint) rem:QFN-28-EP-AX)
(field (name Farnell) 2521320))
(pins
(pin (num 1) (name VDD_ANA) (type output))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name ANTp) (type input))
(pin (num 4) (name ANTn) (type input))
(pin (num 5) (name ANTP1) (type output))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name VDD_ANA) (type output))
(pin (num 8) (name FILT) (type passive))
(pin (num 9) (name L2) (type BiDi))
(pin (num 10) (name L1) (type BiDi))
(pin (num 11) (name DATA) (type input))
(pin (num 12) (name DCLK) (type input))
(pin (num 13) (name SYSCLK) (type input))
(pin (num 14) (name SEL) (type input))
(pin (num 15) (name SCLK) (type input))
(pin (num 16) (name MISO) (type output))
(pin (num 17) (name MOSI) (type input))
(pin (num 18) (name NC) (type NotConnected))
(pin (num 19) (name IRQ) (type output))
(pin (num 20) (name PWRAMP) (type power_in))
(pin (num 21) (name ANTSEL) (type input))
(pin (num 22) (name NC) (type NotConnected))
(pin (num 23) (name VDD_IO) (type power_in))
(pin (num 24) (name NC) (type NotConnected))
(pin (num 25) (name GPADC1) (type BiDi))
(pin (num 26) (name GPADC2) (type BiDi))
(pin (num 27) (name CLK16n) (type input))
(pin (num 28) (name CLK16p) (type input))
(pin (num EP) (name GND) (type power_in))))
(libpart (lib _passive) (part BEAD)
(description "Ferrite bead")
(fields
(field (name Reference) E)
(field (name Value) BEAD))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib agg-kicad) (part CHIPv1_0)
(fields
(field (name Reference) IC)
(field (name Value) CHIPv1_0)
(field (name Footprint) agg:CHIPv1_0)
(field (name Datasheet) http://docs.getchip.com/#chip-hardware))
(pins
(pin (num L1) (name GND) (type power_in))
(pin (num L2) (name CHG-IN) (type power_in))
(pin (num L3) (name VCC-5V) (type power_out))
(pin (num L4) (name GND) (type power_in))
(pin (num L5) (name VCC-3V3) (type power_out))
(pin (num L6) (name TS) (type input))
(pin (num L7) (name VCC-1V8) (type power_out))
(pin (num L8) (name BAT) (type power_in))
(pin (num L9) (name TWI1-SDA) (type openCol))
(pin (num L10) (name PWRON) (type input))
(pin (num L11) (name TWI1-SCK) (type openCol))
(pin (num L12) (name GND) (type power_in))
(pin (num L13) (name X1) (type input))
(pin (num L14) (name X2) (type input))
(pin (num L15) (name Y1) (type input))
(pin (num L16) (name Y2) (type input))
(pin (num L17) (name LCD-D2) (type BiDi))
(pin (num L18) (name PWM0) (type output))
(pin (num L19) (name LCD-D4) (type BiDi))
(pin (num L20) (name LCD-D3) (type BiDi))
(pin (num L21) (name LCD-D6) (type BiDi))
(pin (num L22) (name LCD-D5) (type BiDi))
(pin (num L23) (name LCD-D10) (type BiDi))
(pin (num L24) (name LCD-D7) (type BiDi))
(pin (num L25) (name LCD-D12) (type BiDi))
(pin (num L26) (name LCD-D11) (type BiDi))
(pin (num L27) (name LCD-D14) (type BiDi))
(pin (num L28) (name LCD-D13) (type BiDi))
(pin (num L29) (name LCD-D18) (type BiDi))
(pin (num L30) (name LCD-D15) (type BiDi))
(pin (num L31) (name LCD-D20) (type BiDi))
(pin (num L32) (name LCD-D19) (type BiDi))
(pin (num L33) (name LCD-D22) (type BiDi))
(pin (num L34) (name LCD-D21) (type BiDi))
(pin (num L35) (name LCD-CLK) (type BiDi))
(pin (num L36) (name LCD-D23) (type BiDi))
(pin (num L37) (name LCD-VSYNC) (type BiDi))
(pin (num L38) (name LCD-HSYNC) (type BiDi))
(pin (num L39) (name GND) (type power_in))
(pin (num L40) (name LCD-DE) (type BiDi))
(pin (num R1) (name GND) (type power_in))
(pin (num R2) (name VCC-5V) (type power_out))
(pin (num R3) (name UART1-TX) (type output))
(pin (num R4) (name HPL) (type output))
(pin (num R5) (name UART1-RX) (type input))
(pin (num R6) (name HPCOM) (type output))
(pin (num R7) (name FEL) (type input))
(pin (num R8) (name HPR) (type output))
(pin (num R9) (name VCC-3V3) (type power_out))
(pin (num R10) (name MICM) (type input))
(pin (num R11) (name LRADC) (type input))
(pin (num R12) (name MICIN1) (type input))
(pin (num R13) (name XIO-P0) (type BiDi))
(pin (num R14) (name XIO-P1) (type BiDi))
(pin (num R15) (name XIO-P2) (type BiDi))
(pin (num R16) (name XIO-P3) (type BiDi))
(pin (num R17) (name XIO-P4) (type BiDi))
(pin (num R18) (name XIO-P5) (type BiDi))
(pin (num R19) (name XIO-P6) (type BiDi))
(pin (num R20) (name XIO-P7) (type BiDi))
(pin (num R21) (name GND) (type power_in))
(pin (num R22) (name GND) (type power_in))
(pin (num R23) (name AP-EINT1) (type input))
(pin (num R24) (name AP-EINT2) (type input))
(pin (num R25) (name TWI2-SDA) (type openCol))
(pin (num R26) (name TWI2-SCK) (type openCol))
(pin (num R27) (name CSIPCK) (type BiDi))
(pin (num R28) (name CSICK) (type BiDi))
(pin (num R29) (name CSIHSYNC) (type BiDi))
(pin (num R30) (name CSIVSYNC) (type BiDi))
(pin (num R31) (name CSID0) (type BiDi))
(pin (num R32) (name CSID1) (type BiDi))
(pin (num R33) (name CSID2) (type BiDi))
(pin (num R34) (name CSID3) (type BiDi))
(pin (num R35) (name CSID4) (type BiDi))
(pin (num R36) (name CSID5) (type BiDi))
(pin (num R37) (name CSID6) (type BiDi))
(pin (num R38) (name CSID7) (type BiDi))
(pin (num R39) (name GND) (type power_in))
(pin (num R40) (name GND) (type power_in))))
(libpart (lib ax-gateway-cache) (part COAX)
(fields
(field (name Reference) P)
(field (name Value) COAX)
(field (name Footprint) agg-unchecked:SMA-142-0701-801)
(field (name Farnell) 1608592))
(pins
(pin (num 1) (name RF) (type BiDi))
(pin (num 2) (name GND) (type power_in))))
(libpart (lib agg-kicad) (part CONN_01x02)
(fields
(field (name Reference) J)
(field (name Value) CONN_01x02))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib maxim) (part DS2401P)
(description "Silicon Serial Number TSSOP-6")
(docs http://pdfserv.maximintegrated.com/en/ds/DS2401.pdf)
(footprints
(fp TSSOP-6))
(fields
(field (name Reference) U)
(field (name Value) DS2401P))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name DQ) (type BiDi))))
(libpart (lib device) (part D_Small)
(description Diode)
(footprints
(fp Diode_*)
(fp D-Pak_TO252AA)
(fp *SingleDiode)
(fp *SingleDiode*)
(fp *_Diode_*))
(fields
(field (name Reference) D)
(field (name Value) D_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part LED)
(footprints
(fp LED-*)
(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 L_Small)
(description Inductor)
(footprints
(fp Choke_*)
(fp *Coil*))
(fields
(field (name Reference) L)
(field (name Value) L_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib mga-68563) (part MGA-68563)
(fields
(field (name Reference) U)
(field (name Value) MGA-68563))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type input))
(pin (num 5) (name ~) (type input))
(pin (num 6) (name ~) (type output))))
(libpart (lib ax-gateway-cache) (part PAD)
(fields
(field (name Reference) P)
(field (name Value) PAD))
(pins
(pin (num 1) (name TP) (type passive))))
(libpart (lib agg-kicad) (part PART)
(fields
(field (name Reference) X)
(field (name Value) PART)))
(libpart (lib device) (part Q_NMOS_GSD)
(description "Transistor N-MOSFET (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib device) (part R_Small)
(description Resistor)
(footprints
(fp Resistor_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib _semi) (part SCHOTTKY)
(description "Schottky voltage current [footprint]")
(fields
(field (name Reference) D)
(field (name Value) SCHOTTKY))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib ax-gateway-cache) (part TG-5006CJ)
(fields
(field (name Reference) IC)
(field (name Value) TG-5006CJ)
(field (name Datasheet) http://www.farnell.com/datasheets/1804154.pdf)
(field (name Farnell) 2405790))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name OUT) (type output))
(pin (num 4) (name VCC) (type power_in))))
(libpart (lib ax-gateway-cache) (part TPS743XX)
(footprints
(fp SOT-23*)
(fp SOT-23*))
(fields
(field (name Reference) U)
(field (name Value) TPS743XX)
(field (name Footprint) SOT-23-5)
(field (name Datasheet) http://www.ti.com/lit/ds/symlink/tps734.pdf))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name NR/FB) (type passive))
(pin (num 5) (name OUT) (type power_out))))
(libpart (lib ax-gateway-cache) (part TVS_DIODE)
(fields
(field (name Reference) D)
(field (name Value) TVS_DIODE))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive)))))
(libraries
(library (logical maxim)
(uri "/Library/Application Support/kicad/library/maxim.lib"))
(library (logical device)
(uri "/Library/Application Support/kicad/library/device.lib"))
(library (logical _semi)
(uri /Users/richard/Documents/_kicad/kicad-schlib/library/_semi.lib))
(library (logical _passive)
(uri /Users/richard/Documents/_kicad/kicad-schlib/library/_passive.lib))
(library (logical mga-68563)
(uri /Users/richard/Documents/_kicad/rem-kicad/lib/radio/mga-68563.lib))
(library (logical ax5243)
(uri /Users/richard/Documents/_kicad/rem-kicad/lib/radio/ax5243.lib))
(library (logical ax-gateway-cache)
(uri /Users/richard/Documents/_ax50/gateway/hw/ax-gateway-cache.lib))
(library (logical agg-kicad)
(uri /Users/richard/Documents/_kicad/agg-kicad/agg-kicad.lib)))
(nets
(net (code 1) (name "Net-(R12-Pad2)")
(node (ref R12) (pin 2))
(node (ref U2) (pin 4)))
(net (code 2) (name AX_~SEL~)
(node (ref IC1) (pin R27))
(node (ref IC3) (pin 14)))
(net (code 3) (name LAN_LED)
(node (ref IC1) (pin R14))
(node (ref R2) (pin 1)))
(net (code 4) (name INTERNET_LED)
(node (ref R1) (pin 1))
(node (ref IC1) (pin R13)))
(net (code 5) (name "Net-(D7-Pad2)")
(node (ref IC1) (pin R2))
(node (ref D7) (pin 2)))
(net (code 6) (name /AUDIO)
(node (ref C29) (pin 2))
(node (ref C30) (pin 1))
(node (ref R11) (pin 1)))
(net (code 7) (name "Net-(C21-Pad2)")
(node (ref C21) (pin 2))
(node (ref L9) (pin 1)))
(net (code 8) (name GND)
(node (ref P2) (pin 2))
(node (ref D2) (pin 1))
(node (ref D3) (pin 1))
(node (ref D1) (pin 1))
(node (ref IC3) (pin EP))
(node (ref IC3) (pin 26))
(node (ref IC3) (pin 25))
(node (ref C8) (pin 2))
(node (ref C7) (pin 2))
(node (ref IC2) (pin 2))
(node (ref C3) (pin 1))
(node (ref IC1) (pin R22))
(node (ref C25) (pin 2))
(node (ref C23) (pin 2))
(node (ref IC1) (pin L1))
(node (ref IC1) (pin R1))
(node (ref IC1) (pin L4))
(node (ref C16) (pin 2))