-
Notifications
You must be signed in to change notification settings - Fork 20
/
EdisonBlock_915MHz.net
1410 lines (1410 loc) · 51.9 KB
/
EdisonBlock_915MHz.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 D:/Dropbox/GMD_Share/ExplorerBlock/EdisonBlock_915MHz/EdisonBlock_915MHz.sch)
(date "5/5/2017 5:21:44 PM")
(tool "Eeschema 4.0.6")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Edison Block - 915MHz Radio Adapter")
(company "Enhanced Radio Devices, LLC.")
(rev 1.2)
(date 2017-01-26)
(source EdisonBlock_915MHz.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/Edison Connectors/") (tstamps /575842EF/)
(title_block
(title "Edison Connectors")
(company "Enhanced Radio Devices, LLC.")
(rev 1.2)
(date 2017-01-26)
(source EdisonConnectors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name "/USB and Power/") (tstamps /5758449A/)
(title_block
(title "Power and USB")
(company "Enhanced Radio Devices, LLC.")
(rev 1.2)
(date 2017-01-26)
(source PowerUSB.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /CC1110/) (tstamps /57584D95/)
(title_block
(title "CC1110 915MHz")
(company "Enhanced Radio Devices, LLC.")
(rev 1.2)
(date 2017-01-26)
(source CC1110.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value EdisonConnector)
(footprint "mogar_modules_new:DF40HC(3.0)-70DS")
(libsource (lib mogar_KiCAD) (part EdisonConnector))
(sheetpath (names "/Edison Connectors/") (tstamps /575842EF/))
(tstamp 575843B2))
(comp (ref MH1)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_2.5mm)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names "/Edison Connectors/") (tstamps /575842EF/))
(tstamp 57647939))
(comp (ref MH2)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_2.5mm)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names "/Edison Connectors/") (tstamps /575842EF/))
(tstamp 57647A8A))
(comp (ref U3)
(value MCP73831)
(footprint TO_SOT_Packages_SMD:SOT-23-5)
(libsource (lib SparkFun) (part MCP73831))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575845E7))
(comp (ref JP1)
(value M02JST-PTH-2)
(footprint mogar_modules_new:JST_PH_S2B-PH-SM4-TB_02x2.00mm_Angled)
(libsource (lib SparkFun) (part M02JST-PTH-2))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575845EE))
(comp (ref C1)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57584674))
(comp (ref C2)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575846D1))
(comp (ref R1)
(value 330)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57584811))
(comp (ref R2)
(value 4k)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575848A8))
(comp (ref P2)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_2.5mm)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575C7D9F))
(comp (ref P3)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_2.5mm)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575C8070))
(comp (ref P4)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_2.5mm)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575C8107))
(comp (ref P5)
(value CONN_01X01)
(footprint Mounting_Holes:MountingHole_2.5mm)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575C810E))
(comp (ref C15)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575FABD0))
(comp (ref C16)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 575FAE73))
(comp (ref C19)
(value 0.1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57660B17))
(comp (ref C20)
(value 0.1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57660BDE))
(comp (ref D5)
(value DNP)
(footprint mogar_modules_new:SOD-323)
(libsource (lib device) (part D_Schottky_Small))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57663C56))
(comp (ref U8)
(value MIC2039AY)
(footprint TO_SOT_Packages_SMD:SOT-23-6)
(libsource (lib mogar_KiCAD) (part MIC2039))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57664B73))
(comp (ref R13)
(value 287)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 576652AF))
(comp (ref R14)
(value 100k)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57665755))
(comp (ref R15)
(value 10k)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57665838))
(comp (ref C21)
(value 0.1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 5766D68F))
(comp (ref C22)
(value 47p)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57639999))
(comp (ref C23)
(value 47p)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57639A58))
(comp (ref R18)
(value 27)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57639B52))
(comp (ref R19)
(value 27)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57639BD7))
(comp (ref U10)
(value FT230X)
(footprint Housings_DFN_QFN:QFN-16-1EP_4x4mm_Pitch0.65mm)
(libsource (lib mogar_KiCAD) (part FT230X))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57640EC5))
(comp (ref C24)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57676C9F))
(comp (ref C25)
(value 0.1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 5769F664))
(comp (ref R17)
(value 100)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 576614A3))
(comp (ref R16)
(value 100)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 5766130B))
(comp (ref U2)
(value DNP)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib regul) (part APE8865N-33-HF-3))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57942546))
(comp (ref C26)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57985542))
(comp (ref C27)
(value DNP)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 579855E6))
(comp (ref C28)
(value DNP)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 5798BE05))
(comp (ref U7)
(value AP7365)
(footprint TO_SOT_Packages_SMD:SOT-23-5)
(libsource (lib mogar_KiCAD) (part AP7365))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57DF3A3E))
(comp (ref SW1)
(value B3U-1000P)
(footprint mogar_modules_new:SW_SPST_B3U-1000P)
(libsource (lib EdisonBlock_915MHz-cache) (part SW_PUSH))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57E1E876))
(comp (ref R7)
(value 10k)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57EDF464))
(comp (ref R6)
(value 287)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57EDF51D))
(comp (ref R11)
(value 330)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 57F0089F))
(comp (ref C29)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 581F24D5))
(comp (ref R12)
(value 698)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 581F6302))
(comp (ref U9)
(value TPS2113A)
(footprint mogar_modules_new:SON-8)
(libsource (lib mogar_KiCAD) (part TPS2113A))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 581FBC0F))
(comp (ref C30)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 581FF0B1))
(comp (ref R21)
(value 3k)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 5821B808))
(comp (ref R20)
(value 10k)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 5821B8F4))
(comp (ref V5)
(value CONN_01X01)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 587BC5C8))
(comp (ref D6)
(value RED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 590D54B7))
(comp (ref D1)
(value RED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 590D5ECC))
(comp (ref P6)
(value "Amphenol 10118194-0001LF")
(footprint mogar_modules_new:USB_Micro-B)
(libsource (lib conn) (part USB_OTG))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 590D90BE))
(comp (ref P7)
(value "Amphenol 10118194-0001LF")
(footprint mogar_modules_new:USB_Micro-B)
(libsource (lib conn) (part USB_OTG))
(sheetpath (names "/USB and Power/") (tstamps /5758449A/))
(tstamp 590DC96C))
(comp (ref A1)
(value 0915AT43A0026E)
(footprint mogar_modules_new:ANT_SMD_0868AT43A0020E_labeled)
(libsource (lib mogar_KiCAD) (part ANT1_rf))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57584E84))
(comp (ref C18)
(value 0.5p)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57584F8C))
(comp (ref L7)
(value 10n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib EdisonBlock_915MHz-cache) (part INDUCTOR))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57585050))
(comp (ref R5)
(value 56k)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 5759971E))
(comp (ref C5)
(value 0.1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 5759989B))
(comp (ref C4)
(value 0.1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57599910))
(comp (ref C6)
(value 10n)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575999DA))
(comp (ref C7)
(value 2p2)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575999E0))
(comp (ref C8)
(value 10n)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57599A7C))
(comp (ref C9)
(value 220p)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57599A82))
(comp (ref C13)
(value 4.7u)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57599AA0))
(comp (ref C3)
(value 1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57599C9A))
(comp (ref C14)
(value 18p)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 5759BC05))
(comp (ref C10)
(value 18p)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 5759BC0B))
(comp (ref U4)
(value CC1110)
(footprint mogar_modules_new:QFN-36-1EP_6x6mm_Pitch0.5mm)
(libsource (lib mogar_KiCAD) (part CC1110))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 5759B3AA))
(comp (ref P1)
(value DNP)
(footprint mogar_modules_new:M05x2_FTSH_MTR)
(libsource (lib conn) (part CONN_02X05))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575A27CD))
(comp (ref R3)
(value DNP)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575A3763))
(comp (ref R4)
(value DNP)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575A3885))
(comp (ref L6)
(value 4.7n)
(footprint Capacitors_SMD:C_0603)
(libsource (lib EdisonBlock_915MHz-cache) (part INDUCTOR))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575A9E12))
(comp (ref C11)
(value 0.1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575DD7F5))
(comp (ref C12)
(value 0.1u)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575DDBCF))
(comp (ref U6)
(value 0915BM15A0001)
(footprint mogar_modules_new:0915BM15A0001)
(libsource (lib mogar_KiCAD) (part 0915BM15A0001))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575DECD5))
(comp (ref R8)
(value 10k)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575DE606))
(comp (ref X1)
(value 24MHz)
(footprint mogar_modules_new:Crystal_4-SMD_TXC-7V)
(libsource (lib EdisonBlock_915MHz-cache) (part CRYSTAL_SMD))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 575EBD69))
(comp (ref U5)
(value TXB0108-DFN20)
(footprint mogar_modules_new:UFDFN-20_4x2mm_Pitch0.4mm)
(libsource (lib mogar_KiCAD) (part TXB0108-DFN20))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 576534F7))
(comp (ref R10)
(value 330)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 5765A5FF))
(comp (ref R9)
(value 330)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 5765AB0E))
(comp (ref C17)
(value 100p)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57634B61))
(comp (ref A2)
(value TE_1909763-1)
(footprint mogar_modules_new:MiniRFHeader)
(libsource (lib mogar_KiCAD) (part ANTENNASMD1))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 57EDA43B))
(comp (ref D2)
(value RED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 590D4D1E))
(comp (ref D3)
(value GREEN)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names /CC1110/) (tstamps /57584D95/))
(tstamp 590D4FCB)))
(libparts
(libpart (lib mogar_KiCAD) (part 0915BM15A0001)
(fields
(field (name Reference) U)
(field (name Value) 0915BM15A0001))
(pins
(pin (num 1) (name UNBAL) (type passive))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name BAL) (type passive))
(pin (num 4) (name BAL) (type passive))
(pin (num 5) (name GND) (type passive))
(pin (num 6) (name GND) (type passive))))
(libpart (lib mogar_KiCAD) (part ANT1_rf)
(fields
(field (name Reference) A)
(field (name Value) ANT1_rf))
(pins
(pin (num FEED) (name FEED) (type passive))))
(libpart (lib mogar_KiCAD) (part ANTENNASMD1)
(fields
(field (name Reference) AE)
(field (name Value) ANTENNASMD1))
(pins
(pin (num 2) (name FLOAT) (type BiDi))
(pin (num FEED) (name SIGNAL) (type BiDi))))
(libpart (lib mogar_KiCAD) (part AP7365)
(fields
(field (name Reference) U)
(field (name Value) AP7365)
(field (name Footprint) SOT23-5))
(pins
(pin (num 1) (name VIN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name VOUT) (type power_out))))
(libpart (lib regul) (part APE8865N-12-HF-3)
(aliases
(alias APE8865N-15-HF-3)
(alias APE8865N-16-HF-3)
(alias APE8865N-17-HF-3)
(alias APE8865N-18-HF-3)
(alias APE8865N-19-HF-3)
(alias APE8865N-20-HF-3)
(alias APE8865N-21-HF-3)
(alias APE8865N-22-HF-3)
(alias APE8865N-23-HF-3)
(alias APE8865N-24-HF-3)
(alias APE8865N-25-HF-3)
(alias APE8865N-26-HF-3)
(alias APE8865N-27-HF-3)
(alias APE8865N-28-HF-3)
(alias APE8865N-29-HF-3)
(alias APE8865N-30-HF-3)
(alias APE8865N-31-HF-3)
(alias APE8865N-32-HF-3)
(alias APE8865N-33-HF-3))
(description "300 mA Low Dropout Voltage Regulator, Fixed Output 1.2V, SOT-23")
(docs http://www.a-powerusa.com/docs/APE8865-3.pdf)
(footprints
(fp SOT*))
(fields
(field (name Reference) U)
(field (name Value) APE8865N-12-HF-3)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VOUT) (type power_out))
(pin (num 3) (name VIN) (type input))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib mogar_KiCAD) (part CC1110)
(fields
(field (name Reference) U)
(field (name Value) CC1110))
(pins
(pin (num 1) (name P1_2) (type BiDi))
(pin (num 2) (name DVDD) (type power_in))
(pin (num 3) (name P1_1) (type BiDi))
(pin (num 4) (name P1_0) (type BiDi))
(pin (num 5) (name P0_0) (type BiDi))
(pin (num 6) (name P0_1) (type BiDi))
(pin (num 7) (name P0_2) (type BiDi))
(pin (num 8) (name P0_3) (type BiDi))
(pin (num 9) (name P0_4) (type BiDi))
(pin (num 10) (name DVDD) (type power_in))
(pin (num 11) (name P0_5) (type BiDi))
(pin (num 12) (name P0_6) (type BiDi))
(pin (num 13) (name P0_7) (type BiDi))
(pin (num 14) (name P2_0) (type BiDi))
(pin (num 15) (name P2_1) (type BiDi))
(pin (num 16) (name P2_2) (type BiDi))
(pin (num 17) (name P2_3/XOSC32_Q1) (type BiDi))
(pin (num 18) (name P2_4/XOSC32_Q2) (type BiDi))
(pin (num 19) (name AVDD) (type power_in))
(pin (num 20) (name XOSC_Q2) (type BiDi))
(pin (num 21) (name XOSC_Q1) (type BiDi))
(pin (num 22) (name AVDD) (type power_in))
(pin (num 23) (name RF_P) (type BiDi))
(pin (num 24) (name RF_N) (type BiDi))
(pin (num 25) (name AVDD) (type power_in))
(pin (num 26) (name AVDD) (type power_in))
(pin (num 27) (name RF_BIAS) (type power_in))
(pin (num 28) (name GUARD) (type passive))
(pin (num 29) (name AVDD_DREG) (type power_in))
(pin (num 30) (name DCOUPL) (type passive))
(pin (num 31) (name RESET_N) (type input))
(pin (num 32) (name P1_7) (type BiDi))
(pin (num 33) (name P1_6) (type BiDi))
(pin (num 34) (name P1_5) (type BiDi))
(pin (num 35) (name P1_4) (type BiDi))
(pin (num 36) (name P1_3) (type BiDi))
(pin (num 37) (name GND) (type passive))))
(libpart (lib conn) (part CONN_01X01)
(description "Connector, single row, 01x01, pin header")
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X01))
(pins
(pin (num 1) (name P1) (type passive))))
(libpart (lib conn) (part CONN_02X05)
(description "Connector, double row, 02x05, pin header")
(footprints
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*)
(fp IDC_Header_Straight_*))
(fields
(field (name Reference) J)
(field (name Value) CONN_02X05))
(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 EdisonBlock_915MHz-cache) (part CRYSTAL_SMD)
(fields
(field (name Reference) X)
(field (name Value) CRYSTAL_SMD))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name case) (type passive))))
(libpart (lib device) (part D_Schottky_Small)
(description "Schottky diode, small symbol")
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib mogar_KiCAD) (part EdisonConnector)
(description "Intel Edison Connection")
(fields
(field (name Reference) U)
(field (name Value) EdisonConnector))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VSYS) (type power_in))
(pin (num 3) (name USB_ID) (type input))
(pin (num 4) (name VSYS) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VSYS) (type power_in))
(pin (num 7) (name MSIC_SLP_CLK) (type input))
(pin (num 8) (name 3.3V) (type power_out))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name 3.3V) (type power_out))
(pin (num 11) (name GND) (type power_in))
(pin (num 12) (name 1.8V) (type power_in))
(pin (num 13) (name GND) (type power_in))
(pin (num 14) (name DCIN) (type power_in))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name USB_DP) (type BiDi))
(pin (num 17) (name PWRBTN#) (type input))
(pin (num 18) (name USB_DN) (type BiDi))
(pin (num 19) (name FAULT) (type input))
(pin (num 20) (name USB_VBUS) (type power_in))
(pin (num 21) (name PSW) (type input))
(pin (num 22) (name GP134_UART_2_RX) (type BiDi))
(pin (num 23) (name V_VAT_BKUP) (type power_in))
(pin (num 24) (name GP44) (type BiDi))
(pin (num 25) (name GP165) (type BiDi))
(pin (num 26) (name GP45) (type BiDi))
(pin (num 27) (name GP135_UART_2_TX) (type BiDi))
(pin (num 28) (name GP46) (type BiDi))
(pin (num 30) (name GP47) (type BiDi))
(pin (num 31) (name RCVR_MODE) (type input))
(pin (num 32) (name GP48) (type BiDi))
(pin (num 33) (name GP13_PWM1) (type BiDi))
(pin (num 34) (name GP49) (type BiDi))
(pin (num 35) (name GP12_PWM0) (type BiDi))
(pin (num 36) (name RESET_OUT#) (type output))
(pin (num 37) (name GP182_PWM2) (type BiDi))
(pin (num 39) (name GP183_PWM3) (type BiDi))
(pin (num 41) (name GP19_I2C_1_SCL) (type BiDi))
(pin (num 42) (name GP15) (type BiDi))
(pin (num 43) (name GP20_I2C_1_SDA) (type BiDi))
(pin (num 44) (name GP84_SD_CLK_FB) (type BiDi))
(pin (num 45) (name GP27_I2C_6_SCL) (type BiDi))
(pin (num 46) (name GP131_UART_1_TX) (type BiDi))
(pin (num 47) (name GP28_I2C_6_SDA) (type BiDi))
(pin (num 48) (name GP14) (type BiDi))
(pin (num 50) (name GP42_I2S_2_RXD) (type BiDi))
(pin (num 51) (name GP111_SPI_2_FS1) (type BiDi))
(pin (num 52) (name GP40_I2S_2_CLK) (type BiDi))
(pin (num 53) (name GP110_SPI_2_FS0) (type BiDi))
(pin (num 54) (name GP41_I2S_2_FS) (type BiDi))
(pin (num 55) (name GP109_SPI_2_CLK) (type BiDi))
(pin (num 56) (name GP43_I2S_2_TXD) (type BiDi))
(pin (num 57) (name GP115_SPI_2_TXD) (type BiDi))
(pin (num 58) (name GP78_SD_0_CLK) (type BiDi))
(pin (num 59) (name GP114_SPI_2_RXD) (type BiDi))
(pin (num 60) (name GP77_SD_0_CD#) (type BiDi))
(pin (num 61) (name GP130_UART_1_RX) (type BiDi))
(pin (num 62) (name GP79_SD_0_CMD) (type BiDi))
(pin (num 63) (name GP129_UART_1_RTS) (type BiDi))
(pin (num 64) (name GP82_SD_0_DAT2) (type BiDi))
(pin (num 65) (name GP128_UART_1_CTS) (type BiDi))
(pin (num 66) (name GP80_SD_0_DAT0) (type BiDi))
(pin (num 67) (name OSC_CLK_OUT_0) (type output))
(pin (num 68) (name GP83_SD_0_DAT3) (type BiDi))
(pin (num 69) (name FW_RCVR) (type input))
(pin (num 70) (name GP81_SD_0_DAT1) (type BiDi))))
(libpart (lib mogar_KiCAD) (part FT230X)
(fields
(field (name Reference) U)
(field (name Value) FT230X))
(pins
(pin (num 1) (name VCCIO) (type power_in))
(pin (num 2) (name RXD) (type input))
(pin (num 3) (name GND) (type passive))
(pin (num 4) (name ~CTS) (type input))
(pin (num 5) (name CBUS2) (type BiDi))
(pin (num 6) (name USBDP) (type BiDi))
(pin (num 7) (name USBDM) (type BiDi))
(pin (num 8) (name 3.3Vout) (type power_out))
(pin (num 9) (name ~RESET) (type input))
(pin (num 10) (name VCC) (type power_in))
(pin (num 11) (name CBUS1) (type BiDi))
(pin (num 12) (name CBUS0) (type BiDi))
(pin (num 13) (name GND) (type passive))
(pin (num 14) (name CBUS3) (type BiDi))
(pin (num 15) (name TXD) (type output))
(pin (num 16) (name ~RTS) (type output))
(pin (num 17) (name GND) (type passive))))
(libpart (lib EdisonBlock_915MHz-cache) (part INDUCTOR)
(footprints
(fp Choke_*)
(fp *Coil*))
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part LED)
(description "LED generic")
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib SparkFun) (part M02JST-PTH-2)
(fields
(field (name Reference) JP)
(field (name Value) M02JST-PTH-2)
(field (name Footprint) SparkFun-JST-2-PTH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib SparkFun) (part MCP73831)
(fields
(field (name Reference) U)
(field (name Value) MCP73831)
(field (name Footprint) SparkFun-SOT23-5))
(pins
(pin (num 1) (name STAT) (type output))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name VBAT) (type power_out))
(pin (num 4) (name VIN) (type power_in))
(pin (num 5) (name PROG) (type input))))
(libpart (lib mogar_KiCAD) (part MIC2039)
(fields
(field (name Reference) U)
(field (name Value) MIC2039))
(pins
(pin (num 1) (name VIN) (type power_in))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name ~FAULT) (type output))
(pin (num 5) (name ILIM) (type passive))
(pin (num 6) (name VOUT) (type power_out))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib EdisonBlock_915MHz-cache) (part SW_PUSH)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib mogar_KiCAD) (part TPS2113A)
(fields
(field (name Reference) U)
(field (name Value) TPS2113A))
(pins
(pin (num 1) (name STAT) (type output))
(pin (num 2) (name ~EN) (type input))
(pin (num 3) (name VSNS) (type input))
(pin (num 4) (name ILIM) (type input))
(pin (num 5) (name GND) (type passive))
(pin (num 6) (name IN2) (type power_in))
(pin (num 7) (name OUT) (type power_out))
(pin (num 8) (name IN1) (type power_in))
(pin (num 9) (name GND) (type passive))))
(libpart (lib mogar_KiCAD) (part TXB0108-DFN20)
(fields
(field (name Reference) U)
(field (name Value) TXB0108-DFN20))
(pins
(pin (num 1) (name A1) (type BiDi))
(pin (num 2) (name A2) (type BiDi))
(pin (num 3) (name A3) (type BiDi))
(pin (num 4) (name A4) (type BiDi))
(pin (num 5) (name VCCA) (type power_in))
(pin (num 6) (name OE) (type input))
(pin (num 7) (name A5) (type BiDi))
(pin (num 8) (name A6) (type BiDi))
(pin (num 9) (name A7) (type BiDi))
(pin (num 10) (name A8) (type BiDi))
(pin (num 11) (name B8) (type BiDi))
(pin (num 12) (name B7) (type BiDi))
(pin (num 13) (name B6) (type BiDi))
(pin (num 14) (name B5) (type BiDi))
(pin (num 15) (name GND) (type passive))
(pin (num 16) (name VCCB) (type power_in))
(pin (num 17) (name B4) (type BiDi))
(pin (num 18) (name B3) (type BiDi))
(pin (num 19) (name B2) (type BiDi))
(pin (num 20) (name B1) (type BiDi))))
(libpart (lib conn) (part USB_OTG)
(description "USB mini/micro connector")
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_OTG))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type passive))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name Shield) (type passive)))))
(libraries
(library (logical regul)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\regul.lib"))
(library (logical EdisonBlock_915MHz-cache)
(uri D:\Dropbox\GMD_Share\ExplorerBlock\EdisonBlock_915MHz\EdisonBlock_915MHz-cache.lib))
(library (logical SparkFun)
(uri D:\Dropbox\GMD_Share\01_resources\KiCAD_libs\libraries\SparkFun.lib))
(library (logical mogar_KiCAD)
(uri D:\Dropbox\GMD_Share\01_resources\KiCAD_libs\libraries\mogar_KiCAD.lib))
(library (logical device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\device.lib"))
(library (logical conn)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\conn.lib")))
(nets
(net (code 1) (name +1V8)
(node (ref R15) (pin 1))
(node (ref C11) (pin 1))
(node (ref C20) (pin 1))
(node (ref U10) (pin 1))
(node (ref U5) (pin 6))
(node (ref U5) (pin 5))
(node (ref U1) (pin 12)))
(net (code 2) (name GP14)
(node (ref U1) (pin 48))
(node (ref U5) (pin 10)))
(net (code 3) (name USB_ID)
(node (ref P6) (pin 4))
(node (ref U1) (pin 3)))
(net (code 4) (name USB_DP)
(node (ref U1) (pin 16))
(node (ref P6) (pin 3)))
(net (code 5) (name USB_DN)
(node (ref U1) (pin 18))
(node (ref P6) (pin 2)))
(net (code 6) (name USB_VBUS)
(node (ref U1) (pin 20))
(node (ref D5) (pin 1))
(node (ref P6) (pin 1))
(node (ref C24) (pin 1))
(node (ref U8) (pin 6)))
(net (code 7) (name FAULT)
(node (ref U8) (pin 4))
(node (ref U1) (pin 19))
(node (ref R15) (pin 2)))
(net (code 8) (name PSW)
(node (ref U8) (pin 3))
(node (ref U1) (pin 21))
(node (ref R14) (pin 1)))
(net (code 9) (name V_VAT_BKUP)
(node (ref U1) (pin 23)))
(net (code 10) (name PWRBTN#)
(node (ref U1) (pin 17))
(node (ref R6) (pin 2)))
(net (code 11) (name RESET_OUT#)
(node (ref U1) (pin 36)))
(net (code 12) (name MSIC_SLP_CLK)
(node (ref U1) (pin 7)))
(net (code 13) (name GP15)
(node (ref U1) (pin 42)))
(net (code 14) (name DCIN)