-
Notifications
You must be signed in to change notification settings - Fork 1
/
BeagleBoneLoRaAdapter.kicad_pcb
9648 lines (9627 loc) · 364 KB
/
BeagleBoneLoRaAdapter.kicad_pcb
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
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.567)
)
(paper "A4")
(title_block
(title "BeagleBone to dual LoRa module adapter")
(date "2023-04-14")
(rev "A1")
(company "Maya")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Purple") (thickness 0.0254))
(layer "F.Cu" (type "copper") (thickness 0.0432))
(layer "dielectric 1" (type "prepreg") (thickness 0.2021) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 2" (type "core") (thickness 0.9906) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 3" (type "prepreg") (thickness 0.2021) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.0432))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Purple") (thickness 0.0254))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.0508)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Mfg_Outputs/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(C1-Pad2)")
(net 3 "Net-(C2-Pad2)")
(net 4 "Net-(C4-Pad2)")
(net 5 "Net-(C5-Pad2)")
(net 6 "+3V3")
(net 7 "unconnected-(U1-Pad3)")
(net 8 "unconnected-(U1-Pad4)")
(net 9 "/IRQ0")
(net 10 "unconnected-(U1-Pad7)")
(net 11 "unconnected-(U1-Pad8)")
(net 12 "/MISO0")
(net 13 "/MOSI0")
(net 14 "/SCK0")
(net 15 "/~{CS0}")
(net 16 "/~{RESET0}")
(net 17 "unconnected-(U1-Pad15)")
(net 18 "unconnected-(U2-Pad3)")
(net 19 "unconnected-(U2-Pad4)")
(net 20 "/IRQ1")
(net 21 "unconnected-(U2-Pad7)")
(net 22 "unconnected-(U2-Pad8)")
(net 23 "/MISO1")
(net 24 "/MOSI1")
(net 25 "/SCK1")
(net 26 "/~{CS1}")
(net 27 "/~{RESET1}")
(net 28 "unconnected-(U2-Pad15)")
(net 29 "unconnected-(J3-Pad5)")
(net 30 "unconnected-(J3-Pad6)")
(net 31 "unconnected-(J3-Pad7)")
(net 32 "unconnected-(J3-Pad8)")
(net 33 "unconnected-(J3-Pad9)")
(net 34 "unconnected-(J3-Pad10)")
(net 35 "unconnected-(J3-Pad11)")
(net 36 "unconnected-(J3-Pad12)")
(net 37 "unconnected-(J3-Pad13)")
(net 38 "unconnected-(J3-Pad14)")
(net 39 "unconnected-(J3-Pad19)")
(net 40 "unconnected-(J3-Pad20)")
(net 41 "unconnected-(J3-Pad23)")
(net 42 "unconnected-(J3-Pad24)")
(net 43 "unconnected-(J3-Pad26)")
(net 44 "unconnected-(J3-Pad32)")
(net 45 "unconnected-(J3-Pad33)")
(net 46 "unconnected-(J3-Pad34)")
(net 47 "unconnected-(J3-Pad35)")
(net 48 "unconnected-(J3-Pad36)")
(net 49 "unconnected-(J3-Pad37)")
(net 50 "unconnected-(J3-Pad38)")
(net 51 "unconnected-(J3-Pad39)")
(net 52 "unconnected-(J3-Pad40)")
(net 53 "unconnected-(J3-Pad41)")
(net 54 "unconnected-(J3-Pad42)")
(footprint "Library:LoRaModule-16_16.0x16.0mm_Layout2x8_P2.0mm" (layer "F.Cu")
(tedit 0) (tstamp 17747e6f-a79b-45c1-9bb7-80b3e1421e67)
(at 101.22 86.075)
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule1")
(path "/1e26eded-cea1-474c-a4fe-d6a02b02a352/b26a9fb4-6896-4cef-b39a-2851921d5841")
(attr through_hole)
(fp_text reference "U2" (at 14.985 -0.985 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64e4b379-5579-4878-932c-12be8f29cdde)
)
(fp_text value "SX127x_Transceiver" (at 8 16.795 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a05953ba-2004-49fa-b758-13199b18109a)
)
(fp_text user "${REFERENCE}" (at 8 15 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d1c507e-be43-416b-84bb-5a661a4a2b15)
)
(fp_line (start 0 16) (end 0 0) (layer "F.SilkS") (width 0.12) (tstamp 0114e7a9-e73a-484d-8a30-42d0ffbb8980))
(fp_line (start 0 0) (end 16 0) (layer "F.SilkS") (width 0.12) (tstamp 4920b2c6-78cf-4c86-b594-2bc17ec15dd8))
(fp_line (start 16 0) (end 16 16) (layer "F.SilkS") (width 0.12) (tstamp c8038abe-50f9-4d08-8302-895d19a33f9e))
(fp_line (start 16 16) (end 0 16) (layer "F.SilkS") (width 0.12) (tstamp efb55f0c-ba26-4f42-9c5a-2e464cb349a2))
(fp_line (start 0 0) (end 16 0) (layer "F.CrtYd") (width 0.05) (tstamp 3e14796b-9045-44ab-97e5-eefd3da878cc))
(fp_line (start 16 0) (end 16 16) (layer "F.CrtYd") (width 0.05) (tstamp 62cd4141-e58f-410e-b84f-2327f1be107c))
(fp_line (start 0 16) (end 0 0) (layer "F.CrtYd") (width 0.05) (tstamp ab855f88-1031-4278-9fc3-18b0a2b4e210))
(fp_line (start 16 16) (end 0 16) (layer "F.CrtYd") (width 0.05) (tstamp ce93853c-b050-48c7-ae28-eb8ddef5e09f))
(pad "1" thru_hole roundrect (at 1 1) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask) (roundrect_rratio 0)
(chamfer_ratio 0.2) (chamfer top_right)
(net 5 "Net-(C5-Pad2)") (pinfunction "ANT") (pintype "passive") (tstamp b6a24eee-afe4-47fc-bfde-50eecf63f46a))
(pad "1" smd rect (at -0.7 1) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(C5-Pad2)") (pinfunction "ANT") (pintype "passive") (tstamp d8f9e204-860d-4ab4-8157-0db6da20f3cf))
(pad "2" smd rect (at -0.7 3) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2cc8fb08-dbae-40c4-b2f7-4df553813657))
(pad "2" thru_hole rect (at 1 3) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ea5f0b45-26da-4f80-b4f9-46baa74efb30))
(pad "3" smd rect (at -0.7 5) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "unconnected-(U2-Pad3)") (pinfunction "DIO3") (pintype "bidirectional+no_connect") (tstamp c2ba0d28-f452-4248-bab1-de636af99c76))
(pad "3" thru_hole rect (at 1 5) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "unconnected-(U2-Pad3)") (pinfunction "DIO3") (pintype "bidirectional+no_connect") (tstamp da232e3d-63ee-41f4-acfc-39523eb323bd))
(pad "4" thru_hole rect (at 1 7) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "unconnected-(U2-Pad4)") (pinfunction "DIO4") (pintype "bidirectional+no_connect") (tstamp 408d29b4-605c-41e0-be0f-17f32c12723d))
(pad "4" smd rect (at -0.7 7) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "unconnected-(U2-Pad4)") (pinfunction "DIO4") (pintype "bidirectional+no_connect") (tstamp ca39ad0f-cee6-4763-b6cc-0b64ab12fb51))
(pad "5" smd rect (at -0.7 9) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp cd39ebf9-9b27-4b49-b2ee-055d14ab0a40))
(pad "5" thru_hole rect (at 1 9) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp f05eed98-ce48-4987-8159-0210bf3e1fa5))
(pad "6" smd rect (at -0.7 11) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "/IRQ1") (pinfunction "DIO0") (pintype "bidirectional") (tstamp 3c0bbad1-871f-4e4c-8fc0-a3c46576e623))
(pad "6" thru_hole rect (at 1 11) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/IRQ1") (pinfunction "DIO0") (pintype "bidirectional") (tstamp 7da3a4cf-b416-4773-b8d1-8a53c43186a4))
(pad "7" thru_hole rect (at 1 13) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "unconnected-(U2-Pad7)") (pinfunction "DIO1") (pintype "bidirectional+no_connect") (tstamp 1892de76-254c-4f4a-a309-a0caad9dd6f1))
(pad "7" smd rect (at -0.7 13) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(U2-Pad7)") (pinfunction "DIO1") (pintype "bidirectional+no_connect") (tstamp 28aa9fac-be92-45b1-90ad-3899c6d33930))
(pad "8" thru_hole rect (at 1 15) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "unconnected-(U2-Pad8)") (pinfunction "DIO2") (pintype "bidirectional+no_connect") (tstamp 40d87952-ad15-4176-bd95-d0d9296d7410))
(pad "8" smd rect (at -0.7 15) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(U2-Pad8)") (pinfunction "DIO2") (pintype "bidirectional+no_connect") (tstamp efd40118-8654-4e27-9a7d-8e3a2f23eadd))
(pad "9" smd rect (at 16.7 15) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0858dc81-779e-45de-ab4b-7b09e1ba281c))
(pad "9" thru_hole rect (at 15 15) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cf076e79-1d1e-4944-bf3c-cee76efd56e7))
(pad "10" thru_hole rect (at 15 13) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/MISO1") (pinfunction "MISO") (pintype "output") (tstamp 1edeba66-31f7-4037-9b6a-c490feac67c0))
(pad "10" smd rect (at 16.7 13) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "/MISO1") (pinfunction "MISO") (pintype "output") (tstamp 574fe6d5-5037-4017-95c7-ec91857598ac))
(pad "11" smd rect (at 16.7 11) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "/MOSI1") (pinfunction "MOSI") (pintype "input") (tstamp 932d0eaa-ef96-41c0-99e9-e5a30e6343ac))
(pad "11" thru_hole rect (at 15 11) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/MOSI1") (pinfunction "MOSI") (pintype "input") (tstamp bc09559d-ae25-4228-9249-6f0333c339fd))
(pad "12" smd rect (at 16.7 9) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "/SCK1") (pinfunction "SCK") (pintype "input") (tstamp a2614162-2858-474b-a1ff-bbdc0e0b0ec4))
(pad "12" thru_hole rect (at 15 9) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/SCK1") (pinfunction "SCK") (pintype "input") (tstamp d73004e3-4ac2-4ed6-a36a-3aaaf5c9e261))
(pad "13" thru_hole rect (at 15 7) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/~{CS1}") (pinfunction "~{CS}") (pintype "input") (tstamp 55c796d0-f82a-43a6-9df9-20b91ee05e48))
(pad "13" smd rect (at 16.7 7) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/~{CS1}") (pinfunction "~{CS}") (pintype "input") (tstamp ea9a5f74-7c40-41bc-a3cb-b61deb191668))
(pad "14" smd rect (at 16.7 5) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/~{RESET1}") (pinfunction "~{RESET}") (pintype "input") (tstamp 6bfc6ae3-bd6d-4dc2-908c-4df92535f609))
(pad "14" thru_hole rect (at 15 5) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/~{RESET1}") (pinfunction "~{RESET}") (pintype "input") (tstamp b6e76963-13f1-43eb-a494-28840eff1612))
(pad "15" thru_hole rect (at 15 3) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "unconnected-(U2-Pad15)") (pinfunction "DIO5") (pintype "bidirectional+no_connect") (tstamp 37015eac-b5af-4606-afd8-2bb85a6316cd))
(pad "15" smd rect (at 16.7 3) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U2-Pad15)") (pinfunction "DIO5") (pintype "bidirectional+no_connect") (tstamp a3ab97bd-5b2b-411a-b980-606ba1589203))
(pad "16" smd rect (at 16.7 1) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 524061c5-6aeb-420b-9c69-005f2bbbf8ab))
(pad "16" thru_hole rect (at 15 1) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f2e1787d-b071-4d71-855b-826bab99ca47))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 312deaee-a3c3-4315-98d7-6183df25daec)
(at 99.822 82.537)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule1")
(path "/1e26eded-cea1-474c-a4fe-d6a02b02a352/a8ce5418-aad3-4d8d-88e9-4084477e3641")
(attr smd)
(fp_text reference "C4" (at 0 -1.511 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e862752-46ab-4c99-9322-d699748295b1)
)
(fp_text value "DNP" (at -3.175 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00f490e8-3c4a-45be-b328-56b5e7b966ca)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9c065815-b2cc-4f39-b786-a7444e7d4889)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 3b5deb57-2ad2-403d-9915-18f643781f00))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 6bc84d01-fc47-433d-bb1b-d7ca07c75fc9))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 599a9c66-8089-485e-a16c-5d794254acdc))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6505f766-d252-4444-aa0a-21527d50a3ad))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7c425d25-419f-4cf3-99d0-090076a4b1b8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e1e72849-9ab5-4423-9149-4b04740b5706))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 72694429-2a28-480a-b7e1-c3574de27948))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9d89294e-73f8-4ee6-bbdb-b92d42d86a8c))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ea746591-de81-4f25-bb71-c6ee94e9ccfd))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f93e2858-a8ee-4ae2-a85f-586abe2715f2))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp a14797f6-1bd1-4f25-ab64-bde8cbc3bd61))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C4-Pad2)") (pintype "passive") (tstamp fab7b967-cc3b-4267-ad8e-ab9719e28f8d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7a23736b-f454-4b44-a3ee-25cfeb595cae)
(at 99.822 56.134 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule0")
(path "/343a6dc5-0998-4c97-b5aa-a55faef6dcf9/43aa4710-f6a3-44d8-ad96-6867281a0f42")
(attr smd)
(fp_text reference "C3" (at 0 -1.524 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8966c3e-80cc-4ef0-8d65-3c9e5faa9e2f)
)
(fp_text value "DNP" (at 3.175 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61cd0dc6-e19f-4219-bfbd-ffd190411b9b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 54e25502-cb29-4bf5-901d-3d5c585416d8)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 173fc672-e279-4921-8005-011260a86b4b))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 912fafca-0e5a-48f0-a3da-880b5e448e66))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0458a5b8-a592-4012-8fd9-157074774d85))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3d5377c2-ca60-45af-bb44-2ba2e1d445a6))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7799cecd-03ab-4807-8ba7-4ae316dcc046))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a0bda3e8-d7eb-4ebe-b207-8fbfe065869f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 35b43d3b-f25f-4cc7-a72a-652e0fe7faf2))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 493b2146-9ef2-4bb1-acf6-6bc5619244e2))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 868d19c1-f012-4120-befb-870fb9c45e50))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bb79d113-d654-40ef-bd0c-26e119d5f63b))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad2)") (pintype "passive") (tstamp 45ed8fbf-53c5-4732-b028-68df2ac5f27d))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f07dfa58-1ec2-45da-9ef6-d89affcda884))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 81f0ee95-4f9e-4ddd-987b-2b1c1b0b7aa9)
(at 102.108 55.372 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "MPN" "C0603C221J5GACTU")
(property "Mfg" "KEMET")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule0")
(path "/343a6dc5-0998-4c97-b5aa-a55faef6dcf9/fb97888f-3cce-4f23-b196-733ccd35e114")
(attr smd)
(fp_text reference "C2" (at 0 -1.524 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08105130-9a8d-4db6-93d5-f654ac4b5c53)
)
(fp_text value "220p" (at 0 -1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6166166-557c-44a0-b0ab-90f8e222d2b4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c073b1d4-4d0e-4d27-9429-e51394c32356)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 9b6af7fd-63d4-4594-b91d-b18d884b0e07))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp dd8603a9-753d-4a11-af77-3c6ae2e5dc38))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0373fd05-d7b7-48f0-939f-e3fcfba7f564))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1937b3d3-336e-4ece-9fa1-a471cc5f8edc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1ffad264-20c6-481d-93e3-2089b7dc6451))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2187cd20-9bd7-4190-a5ce-9b7da1582e04))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 582c13a8-4ff2-4955-8a3e-63bae38e2477))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 814e6858-f2f4-4904-94a4-e644b5be70a6))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c9b47fc7-98e9-4fdb-aaaa-ae86a318c43b))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp de0304ef-1158-4285-9969-d8e8b22ba0f9))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad2)") (pintype "passive") (tstamp 88fcfbcc-0821-4ee0-a822-652d06691838))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad2)") (pintype "passive") (tstamp 365bcb1d-4116-4d4e-8a3e-6943b9e08714))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 861eaf5a-1e64-4bd1-90e7-dbc547e3b07d)
(at 99.822 84.061 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule1")
(path "/1e26eded-cea1-474c-a4fe-d6a02b02a352/43aa4710-f6a3-44d8-ad96-6867281a0f42")
(attr smd)
(fp_text reference "C6" (at 0 -1.537 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fe9bf3b-b09e-4250-9493-d6605d73a492)
)
(fp_text value "DNP" (at 3.175 -0.14) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d04a5ee9-ea29-4561-8afe-a4adbded1b3b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9d4d0772-f4cd-4664-9ecc-d0b440df5c76)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 29a8a792-134f-499e-ba49-8ecb7b1e3be7))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp c8c0722b-2237-4c69-ae70-1bd0f69eceda))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 47be09e0-f441-407f-ac32-3478e08a3eba))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 547be471-1408-4173-81d8-c3dde92ae3bd))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6ea6933a-5ff6-475d-ba52-5b81152b113e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c8e33d2b-985f-45e2-8847-b7e1192bc53b))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 038e7cc9-8410-4fbb-b5e4-e523f6edf24e))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 22cf97b8-55f9-4288-b127-2716c2c467b0))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 2ad0baf7-db14-47cc-9db0-10166842df2e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e6b8e3df-6408-4d7e-89cc-7d33a421925f))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C5-Pad2)") (pintype "passive") (tstamp 414d6a58-595e-4986-82f5-1ac8c775f5f8))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 5f02ff4a-09e4-4524-b2d3-adcd0bee57cf))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x23_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 90837328-e297-4c60-acf4-5e0bef593257)
(at 124.5 50.75)
(descr "Through hole straight pin header, 2x23, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x23 2.54mm double row")
(property "MPN" "TSW-125-07-G-D")
(property "Mfg" "Samtec")
(property "Sheetfile" "BeagleBoneLoRaAdapter.kicad_sch")
(property "Sheetname" "")
(path "/323a4de5-a99b-4e77-b8cd-b88821f752cb")
(attr through_hole)
(fp_text reference "J3" (at -2.58 0.05 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae10e54f-b49a-4648-8d9a-b81c24108479)
)
(fp_text value "Conn_02x23_Odd_Even" (at 1.27 58.21) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6239a365-d89d-4ea9-ae6b-e932bf211131)
)
(fp_text user "${REFERENCE}" (at 1.27 27.94 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84ba0a7e-5912-4307-a906-b6b1943a510d)
)
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 028da0e4-afd4-4978-b60c-de0c440db589))
(fp_line (start 3.87 -1.33) (end 3.87 57.21) (layer "F.SilkS") (width 0.12) (tstamp 067879bf-d401-4c6a-b24b-92364b3fa8d8))
(fp_line (start -1.33 57.21) (end 3.87 57.21) (layer "F.SilkS") (width 0.12) (tstamp 09ce4d5b-2184-46e4-87f7-ee21237255e8))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 15a148aa-d634-4d1e-b29e-2b5da4aa4956))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 6b795774-8524-4262-9002-218db42fded8))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9a877885-7ebf-48f6-826f-9819f06f1e59))
(fp_line (start -1.33 1.27) (end -1.33 57.21) (layer "F.SilkS") (width 0.12) (tstamp acf080ab-f054-4002-81f5-f03746ec1e3d))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c635daa6-853b-4abf-8547-a42155f27693))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 67aead34-660f-46a4-a277-fa175039a8e7))
(fp_line (start 4.35 57.65) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 697b7e35-2317-4df6-8275-aeeffe50c1de))
(fp_line (start -1.8 57.65) (end 4.35 57.65) (layer "F.CrtYd") (width 0.05) (tstamp ed6e0016-6af9-4784-8ab5-ba4fcfed0de8))
(fp_line (start -1.8 -1.8) (end -1.8 57.65) (layer "F.CrtYd") (width 0.05) (tstamp fc56048a-c693-481c-9896-174787f0e1e2))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 26653736-cbce-4a1c-936c-924550f1352c))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2b128130-7f1c-4f98-a2b2-f186935a583c))
(fp_line (start -1.27 57.15) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 57d3d736-7d05-4178-a7ab-fe9875ba7822))
(fp_line (start 3.81 57.15) (end -1.27 57.15) (layer "F.Fab") (width 0.1) (tstamp 5d8286b7-58ba-4139-ac64-cd654b3b2a53))
(fp_line (start 3.81 -1.27) (end 3.81 57.15) (layer "F.Fab") (width 0.1) (tstamp 886cd298-b4ca-46bd-a0a0-b3c744dd78d5))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d5a8f269-ede7-47d7-a9f3-82435fc43a96))
(pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp d5638664-a826-48dc-8e39-9222f29f8993))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "+3V3") (pinfunction "Pin_3") (pintype "passive") (tstamp c9a6f5b7-9fff-4ef0-8cd8-f65b148d8302))
(pad "4" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp 6e23c4f0-241a-4c89-8a9b-27844a7825d9))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "unconnected-(J3-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 120cba9a-242c-4421-9ef2-0b792d9f2427))
(pad "6" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "unconnected-(J3-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp bb3a6f56-a2d3-414a-9f78-1fdec51cd8b6))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "unconnected-(J3-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 25530187-40ce-41e3-8ada-f96d5d3001b2))
(pad "8" thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "unconnected-(J3-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp d1ff9fbd-d160-42a4-8027-17336cb18d4e))
(pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "unconnected-(J3-Pad9)") (pinfunction "Pin_9") (pintype "passive+no_connect") (tstamp 7d842a91-7cb6-4ab9-b0f4-dd7ff8ad9fb4))
(pad "10" thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "unconnected-(J3-Pad10)") (pinfunction "Pin_10") (pintype "passive+no_connect") (tstamp e80b047d-c87f-4c49-b761-dfb2bd42c1a2))
(pad "11" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "unconnected-(J3-Pad11)") (pinfunction "Pin_11") (pintype "passive+no_connect") (tstamp 18e3e61e-caea-4211-bf31-99489050edec))
(pad "12" thru_hole oval (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "unconnected-(J3-Pad12)") (pinfunction "Pin_12") (pintype "passive+no_connect") (tstamp bcc6c1e1-f511-43c3-8d81-d45130ddc42b))
(pad "13" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "unconnected-(J3-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp 26f181b4-3607-45eb-9656-27263f75bae8))
(pad "14" thru_hole oval (at 2.54 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "unconnected-(J3-Pad14)") (pinfunction "Pin_14") (pintype "passive+no_connect") (tstamp 29299e61-7688-4cd8-b894-21b67604b8bb))
(pad "15" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "/~{RESET0}") (pinfunction "Pin_15") (pintype "passive") (tstamp 0c7c1372-0216-42fe-bf07-8db1d52837a5))
(pad "16" thru_hole oval (at 2.54 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/IRQ0") (pinfunction "Pin_16") (pintype "passive") (tstamp e10a21f1-bdec-4a27-9eaf-9f63c098728e))
(pad "17" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "/~{CS0}") (pinfunction "Pin_17") (pintype "passive") (tstamp 6f48dd01-deb3-4302-ac66-ca74bf087c59))
(pad "18" thru_hole oval (at 2.54 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/MOSI0") (pinfunction "Pin_18") (pintype "passive") (tstamp 8c724ddd-c3f8-4df0-9ada-ecda685ef85a))
(pad "19" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "unconnected-(J3-Pad19)") (pinfunction "Pin_19") (pintype "passive+no_connect") (tstamp 8d84d22e-8eca-4a87-9f7b-b68332cb8fca))
(pad "20" thru_hole oval (at 2.54 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 40 "unconnected-(J3-Pad20)") (pinfunction "Pin_20") (pintype "passive+no_connect") (tstamp 75966e8f-cdac-4301-b6e6-3ee30ce45393))
(pad "21" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "/MISO0") (pinfunction "Pin_21") (pintype "passive") (tstamp 0d83a527-3025-465b-b99a-8f05e1db66ff))
(pad "22" thru_hole oval (at 2.54 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/SCK0") (pinfunction "Pin_22") (pintype "passive") (tstamp dadee2a9-74d3-4384-8c0f-0a817e9a0a30))
(pad "23" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 41 "unconnected-(J3-Pad23)") (pinfunction "Pin_23") (pintype "passive+no_connect") (tstamp e58b00a8-f9ac-4c07-a358-a1b9a20b09e8))
(pad "24" thru_hole oval (at 2.54 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 "unconnected-(J3-Pad24)") (pinfunction "Pin_24") (pintype "passive+no_connect") (tstamp 51168ea6-5490-4201-9dc9-07593b5f6c6e))
(pad "25" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "/~{RESET1}") (pinfunction "Pin_25") (pintype "passive") (tstamp 245e9814-1b10-4e39-8931-2ac1c6a5e70f))
(pad "26" thru_hole oval (at 2.54 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 "unconnected-(J3-Pad26)") (pinfunction "Pin_26") (pintype "passive+no_connect") (tstamp 3bcb2fb1-c30d-43c0-829a-20a8e031daeb))
(pad "27" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "/IRQ1") (pinfunction "Pin_27") (pintype "passive") (tstamp a9a3a65f-342d-455e-922c-ce7cf7401136))
(pad "28" thru_hole oval (at 2.54 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "/~{CS1}") (pinfunction "Pin_28") (pintype "passive") (tstamp 928b2732-4d6a-4648-b4c8-91892a7712c1))
(pad "29" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "/MISO1") (pinfunction "Pin_29") (pintype "passive") (tstamp c83a1106-19ed-46b1-a8e6-5509dc1f166f))
(pad "30" thru_hole oval (at 2.54 35.56) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "/MOSI1") (pinfunction "Pin_30") (pintype "passive") (tstamp e50c04a6-4cff-43ba-b516-6d4f4eab5935))
(pad "31" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/SCK1") (pinfunction "Pin_31") (pintype "passive") (tstamp 5e6dce87-2c19-464e-a79d-7da8197637fe))
(pad "32" thru_hole oval (at 2.54 38.1) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 44 "unconnected-(J3-Pad32)") (pinfunction "Pin_32") (pintype "passive+no_connect") (tstamp 1aca7404-47eb-407f-8927-fdaa97c95b37))
(pad "33" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 45 "unconnected-(J3-Pad33)") (pinfunction "Pin_33") (pintype "passive+no_connect") (tstamp feb6d714-2aa6-48cf-a3d9-4529d52c8b58))
(pad "34" thru_hole oval (at 2.54 40.64) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 "unconnected-(J3-Pad34)") (pinfunction "Pin_34") (pintype "passive+no_connect") (tstamp fcd90039-70b5-462b-9db6-15ccca73afdc))
(pad "35" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 47 "unconnected-(J3-Pad35)") (pinfunction "Pin_35") (pintype "passive+no_connect") (tstamp 6336c601-d664-4de7-a3d1-14f23ffc1c39))
(pad "36" thru_hole oval (at 2.54 43.18) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 48 "unconnected-(J3-Pad36)") (pinfunction "Pin_36") (pintype "passive+no_connect") (tstamp 0984d1f9-8221-4f9b-bd59-c11a83b6ef3b))
(pad "37" thru_hole oval (at 0 45.72) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 "unconnected-(J3-Pad37)") (pinfunction "Pin_37") (pintype "passive+no_connect") (tstamp c7025c1e-572b-42e9-a700-927045028238))
(pad "38" thru_hole oval (at 2.54 45.72) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 50 "unconnected-(J3-Pad38)") (pinfunction "Pin_38") (pintype "passive+no_connect") (tstamp 53f6d2d8-0e2a-47e8-8a15-7ca193049737))
(pad "39" thru_hole oval (at 0 48.26) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 51 "unconnected-(J3-Pad39)") (pinfunction "Pin_39") (pintype "passive+no_connect") (tstamp 6f1c6355-bf85-4e43-a468-f9ac7b6a12ba))
(pad "40" thru_hole oval (at 2.54 48.26) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 52 "unconnected-(J3-Pad40)") (pinfunction "Pin_40") (pintype "passive+no_connect") (tstamp 9cc92f8c-4d58-41bb-9782-c6de56ce165d))
(pad "41" thru_hole oval (at 0 50.8) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "unconnected-(J3-Pad41)") (pinfunction "Pin_41") (pintype "passive+no_connect") (tstamp 667e20bd-87fd-4993-b034-d9dbe3cbb172))
(pad "42" thru_hole oval (at 2.54 50.8) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 54 "unconnected-(J3-Pad42)") (pinfunction "Pin_42") (pintype "passive+no_connect") (tstamp 3f741e40-16a1-4fae-8d2c-2fc493eb022e))
(pad "43" thru_hole oval (at 0 53.34) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_43") (pintype "passive") (tstamp 8e4c53f7-6998-4359-b6a5-207969d5f9df))
(pad "44" thru_hole oval (at 2.54 53.34) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_44") (pintype "passive") (tstamp 5ae1dcdb-9228-4556-86dc-aa379ff090d4))
(pad "45" thru_hole oval (at 0 55.88) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_45") (pintype "passive") (tstamp 33001785-393f-4137-93f3-e03caa4f069b))
(pad "46" thru_hole oval (at 2.54 55.88) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_46") (pintype "passive") (tstamp 7ef778ff-d9bd-470a-8cd0-93ea69671122))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x23_P2.54mm_Vertical.wrl"
(offset (xyz 2.54 0 -2))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
)
(footprint "Library:SMA_Cinch_142-0701_Vertical" (layer "F.Cu")
(tedit 5B2F4C32) (tstamp 9c021a57-9d82-4dc1-aca3-5a076547b762)
(at 110.49 53.34 -90)
(descr "https://docs.rs-online.com/9119/0900766b8142add1.pdf")
(tags "SMA THT Female Jack Vertical")
(property "MPN" "142-0701-201")
(property "Mfg" "Cinch")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule0")
(path "/343a6dc5-0998-4c97-b5aa-a55faef6dcf9/4efe4205-dd81-40e0-9364-30fec8be924c")
(attr through_hole)
(fp_text reference "J1" (at 0 -4.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b2f67c9-8c6c-4d16-aaca-e325a6796c2e)
)
(fp_text value "Conn_Coaxial" (at 0 5 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cdfd213f-38f6-4bb7-84af-df0b2a3759ef)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d472443f-fc13-4d1c-83db-6f02803da65e)
)
(fp_line (start 3.355 -1.45) (end 3.355 1.45) (layer "F.SilkS") (width 0.12) (tstamp 639da4d9-8ed7-444b-ae7f-a96cd13ef53a))
(fp_line (start -1.45 3.355) (end 1.45 3.355) (layer "F.SilkS") (width 0.12) (tstamp 6c6dd179-cf6d-417d-9f8c-2c26a08f6cf7))
(fp_line (start -1.45 -3.355) (end 1.45 -3.355) (layer "F.SilkS") (width 0.12) (tstamp 78b8bb8f-a1ef-4264-927b-cbd23c488cf4))
(fp_line (start -3.355 -1.45) (end -3.355 1.45) (layer "F.SilkS") (width 0.12) (tstamp d68a46a6-a376-4420-a7eb-2e921b7a8fef))
(fp_line (start 4.17 4.17) (end -4.17 4.17) (layer "F.CrtYd") (width 0.05) (tstamp 194af4e8-d7bb-4bdd-afde-a8e100aac974))
(fp_line (start 4.17 4.17) (end 4.17 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 53637fb4-20a1-44ec-883d-b2fc76ddcd14))
(fp_line (start -4.17 -4.17) (end 4.17 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 56ec417b-8b5b-4f7d-b1b2-7a640f5f8acf))
(fp_line (start -4.17 -4.17) (end -4.17 4.17) (layer "F.CrtYd") (width 0.05) (tstamp a9e45d3d-0314-4f68-9601-0a762e803b4b))
(fp_line (start -3.175 -3.175) (end 3.175 -3.175) (layer "F.Fab") (width 0.1) (tstamp 2bec4e77-c7e8-4e32-acd6-b30ce4d44541))
(fp_line (start -3.175 3.175) (end 3.175 3.175) (layer "F.Fab") (width 0.1) (tstamp 5c2e147b-87f6-4c00-82c7-a82d907a2ae8))
(fp_line (start -3.175 -3.175) (end -3.175 3.175) (layer "F.Fab") (width 0.1) (tstamp a3db6482-7f71-4d90-a3dc-7042da4fdd3c))
(fp_line (start 3.175 -3.175) (end 3.175 3.175) (layer "F.Fab") (width 0.1) (tstamp cc638e8b-01cf-4f4b-90ff-cd458330ed99))
(fp_circle (center 0 0) (end 3.175 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp fc11f1db-4113-4e56-b298-5354698e83b3))
(pad "1" thru_hole circle (at 0 0 270) (size 2.05 2.05) (drill 1.57) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad2)") (pinfunction "In") (pintype "passive") (tstamp 0a2a4895-2b25-4007-80ed-17efbdec2e83))
(pad "2" thru_hole circle (at -2.54 2.54 270) (size 2.25 2.25) (drill 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 3fd2ef76-e921-4195-8ce5-e8739273b7eb))
(pad "2" thru_hole circle (at 2.54 2.54 270) (size 2.25 2.25) (drill 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 59df3d45-1e6f-4eaa-bd89-9bb6a3a2418e))
(pad "2" thru_hole circle (at 2.54 -2.54 270) (size 2.25 2.25) (drill 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp bd91b7b0-6303-4a80-9aa9-3e14026d0d12))
(pad "2" thru_hole circle (at -2.54 -2.54 270) (size 2.25 2.25) (drill 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp e0fedbb3-7d11-4e83-a721-c84bea457e56))
(model "${KIPRJMOD}/3DModels/142-0701-201.stp"
(offset (xyz 0 0 10))
(scale (xyz 1 1 1))
(rotate (xyz 0 -90 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp acb27c9d-411b-4f0c-9327-ad6dade4dedc)
(at 97.79 66.04 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "MPN" "GRM188R61C106MA73D")
(property "Mfg" "Murata")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule0")
(path "/343a6dc5-0998-4c97-b5aa-a55faef6dcf9/a218f026-9687-4c25-ab3a-20bbe39f7bce")
(attr smd)
(fp_text reference "C7" (at -2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e7144dc-1bc0-4925-b151-ec77444f8b99)
)
(fp_text value "10u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 453576b7-622b-46a1-b463-c8ebe37994da)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 021ed853-ce6e-4a5d-ab47-8d0b945e278e)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 7d2c4905-7d8d-4d68-a533-6f8183f4c3a9))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 9885b0c5-8593-465c-9bf5-e65b01a2c703))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 128b1c45-9af8-4b76-85a2-de62b460a8fe))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 61b6d402-8ae1-4202-b7b6-32cf495574f6))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 72398bfb-37fc-4977-86d0-806f514c1c7e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d7a8276c-b88b-438c-9981-cad375da11f0))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 06abbaf3-7c0a-4f79-94bb-a4e5ce289394))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 16407908-5505-4f3c-9e5b-f50c96838485))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1ee7adc4-b56a-4e0a-a045-e8f08ab92483))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a0381f97-b698-4ef1-a54e-e9bb43498a79))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3V3") (pintype "passive") (tstamp eb6ed10f-455a-4a3a-a67b-adb4e54fc352))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d63d866e-3b90-4d31-9d6c-87b55f38371d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp b7a374ce-5583-43b5-8d5b-436d9fca3154)
(at 99.822 54.61)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule0")
(path "/343a6dc5-0998-4c97-b5aa-a55faef6dcf9/a8ce5418-aad3-4d8d-88e9-4084477e3641")
(attr smd)
(fp_text reference "C1" (at 0 -1.524 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a6330e7-5a9b-4d87-8714-0cb2eb61e2e2)
)
(fp_text value "DNP" (at -3.175 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb44651c-4d6f-41bb-92f1-000a3a8777ce)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 812290b2-db5a-4bb7-8e56-b0e55d2c681d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 01271434-339f-4192-a620-465c97e61542))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 884396ff-4a61-4f5a-b433-1f78098cb913))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 42ae7d4a-7ee9-402e-82d4-6352652504ca))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 48cb91b2-c244-4cdf-8904-9b8704d2c23b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c23e641a-13bf-48be-8c77-ccffa72ae950))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cc563f8d-6b9a-4221-8ccc-b24a6a4d0def))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 418df369-a946-4932-9eac-8bf88aebf3b5))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 65e9b1b4-bba7-4650-af5c-8ae10e92075d))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6f7bddf2-f72c-4689-a862-497f67f65e18))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d4bbfb16-4d31-49db-a01c-799062876593))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 0622e7cb-b50c-4066-a900-de7fc7ea5500))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad2)") (pintype "passive") (tstamp 677a4266-e473-49af-9f3b-7cb2bc80018a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp c00d1187-b5b6-4987-9c4c-b680cac7ad11)
(at 97.79 93.98 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "MPN" "GRM188R61C106MA73D")
(property "Mfg" "Murata")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule1")
(path "/1e26eded-cea1-474c-a4fe-d6a02b02a352/a218f026-9687-4c25-ab3a-20bbe39f7bce")
(attr smd)
(fp_text reference "C8" (at -2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d00fa17-096e-47c2-8b1a-5f9aca5c1456)
)
(fp_text value "10u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf8538c3-f106-470a-95d1-602bd9275af2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c20b178c-e773-4383-8b7a-5750e57e85ae)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 99283d53-291b-4ada-bb48-18ee6155ba8a))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp a0f63c55-a228-4e5b-a40a-3ca3af9b2026))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 15143877-e4b8-46c6-b11c-26d21bf73f5d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 18add4a4-3797-4145-8cf2-6b7ebbab7ef2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 476158e5-96dc-47ef-b599-cc1112a938b9))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c225ae7e-7628-4146-a146-31d915ef5241))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 0fbe3dca-5e7f-42a6-ab1a-fb00d7e3a66a))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 15a954f9-66ef-4535-bef0-bcc2340a1570))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a117083e-924e-4485-ba5c-39ae604687e4))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d2c92f21-1663-4547-9d97-2c553b016dd5))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3V3") (pintype "passive") (tstamp 34ba655d-ae02-45c2-8ef6-351eb879a703))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp aa93a530-4112-414a-8446-2ee4909d5584))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:LoRaModule-16_16.0x16.0mm_Layout2x8_P2.0mm" (layer "F.Cu")
(tedit 0) (tstamp c6852f01-b6f6-454d-97dd-3a44c7b98785)
(at 101.22 58.135)
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule0")
(path "/343a6dc5-0998-4c97-b5aa-a55faef6dcf9/b26a9fb4-6896-4cef-b39a-2851921d5841")
(attr through_hole)
(fp_text reference "U1" (at 14.985 -0.985 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b92d3e5-56d6-4912-9cef-912f5b6cce7d)
)
(fp_text value "SX127x_Transceiver" (at 8 16.795 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc02e49b-42cc-4033-b880-f4a505413434)
)
(fp_text user "${REFERENCE}" (at 8 15 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e97da2c9-1048-44da-9ad6-fa4c5fdff8e1)
)
(fp_line (start 0 0) (end 16 0) (layer "F.SilkS") (width 0.12) (tstamp 3c5ca87f-a817-423d-b99f-2bb86d9f6a4e))
(fp_line (start 0 16) (end 0 0) (layer "F.SilkS") (width 0.12) (tstamp a9e497cb-1631-45a6-8b77-ab3c2d87ebc2))
(fp_line (start 16 16) (end 0 16) (layer "F.SilkS") (width 0.12) (tstamp bdb1b15a-70e2-4339-a7fc-64baccacc73a))
(fp_line (start 16 0) (end 16 16) (layer "F.SilkS") (width 0.12) (tstamp e94e5aab-cf49-4765-8e63-f74d8942caa4))
(fp_line (start 16 0) (end 16 16) (layer "F.CrtYd") (width 0.05) (tstamp 22c21543-95a9-40e0-b36b-08ba98d9db95))
(fp_line (start 0 0) (end 16 0) (layer "F.CrtYd") (width 0.05) (tstamp 3ec84cc6-92bd-4f83-95fb-bc196dbcd800))
(fp_line (start 0 16) (end 0 0) (layer "F.CrtYd") (width 0.05) (tstamp 728debef-0063-48c2-801c-306be1aea359))
(fp_line (start 16 16) (end 0 16) (layer "F.CrtYd") (width 0.05) (tstamp 7b7aebdd-2d83-4f8e-adbf-ea7d477966bc))
(pad "1" thru_hole roundrect (at 1 1) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask) (roundrect_rratio 0)
(chamfer_ratio 0.2) (chamfer top_right)
(net 3 "Net-(C2-Pad2)") (pinfunction "ANT") (pintype "passive") (tstamp 55809ac6-b29f-4de8-a9ea-ac07ce9f2421))
(pad "1" smd rect (at -0.7 1) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C2-Pad2)") (pinfunction "ANT") (pintype "passive") (tstamp 894e54b0-295c-4e23-8bbb-2522b666d076))
(pad "2" smd rect (at -0.7 3) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 641303d8-89a4-466e-861a-cbb6dbea77dd))
(pad "2" thru_hole rect (at 1 3) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f250ac7b-b1f5-437d-b2bb-6e81695bbb0d))
(pad "3" smd rect (at -0.7 5) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "unconnected-(U1-Pad3)") (pinfunction "DIO3") (pintype "bidirectional+no_connect") (tstamp 6859cc52-b489-41f4-83d1-53505f65100b))
(pad "3" thru_hole rect (at 1 5) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "unconnected-(U1-Pad3)") (pinfunction "DIO3") (pintype "bidirectional+no_connect") (tstamp 7ef49b63-1861-4f34-884d-449ef463cb4c))
(pad "4" smd rect (at -0.7 7) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(U1-Pad4)") (pinfunction "DIO4") (pintype "bidirectional+no_connect") (tstamp 2ec0d41b-8828-4e11-a86d-aabd1e295da5))
(pad "4" thru_hole rect (at 1 7) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "unconnected-(U1-Pad4)") (pinfunction "DIO4") (pintype "bidirectional+no_connect") (tstamp 43e2d21a-9075-4d88-856e-f8f26943a33a))
(pad "5" thru_hole rect (at 1 9) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 15eab9bc-c3bb-4978-9649-1b207b045136))
(pad "5" smd rect (at -0.7 9) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp e2df7151-3fa5-410c-8540-4bf5d800595a))
(pad "6" thru_hole rect (at 1 11) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/IRQ0") (pinfunction "DIO0") (pintype "bidirectional") (tstamp 3fe0c33f-a657-47da-b9c6-eb69a9777146))
(pad "6" smd rect (at -0.7 11) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/IRQ0") (pinfunction "DIO0") (pintype "bidirectional") (tstamp e384fb21-71cb-4e3f-948d-207d8c51732c))
(pad "7" thru_hole rect (at 1 13) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "unconnected-(U1-Pad7)") (pinfunction "DIO1") (pintype "bidirectional+no_connect") (tstamp 71b5d148-6824-4d25-bfeb-d2ba8d91eee0))
(pad "7" smd rect (at -0.7 13) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "unconnected-(U1-Pad7)") (pinfunction "DIO1") (pintype "bidirectional+no_connect") (tstamp 9f846377-05af-4d79-a78c-1f93e8c4a4fe))
(pad "8" smd rect (at -0.7 15) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "unconnected-(U1-Pad8)") (pinfunction "DIO2") (pintype "bidirectional+no_connect") (tstamp 1168fc7c-1a00-41c0-8d5d-66b900cef4a7))
(pad "8" thru_hole rect (at 1 15) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "unconnected-(U1-Pad8)") (pinfunction "DIO2") (pintype "bidirectional+no_connect") (tstamp d1cce18d-a5cb-491e-8ebb-44dcd184a0dd))
(pad "9" thru_hole rect (at 15 15) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 00b4b9bb-281a-4f72-9641-0d37fda92170))
(pad "9" smd rect (at 16.7 15) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a642cf2f-2e3a-4c95-903e-208c77fa3975))
(pad "10" thru_hole rect (at 15 13) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/MISO0") (pinfunction "MISO") (pintype "output") (tstamp d91b05b5-18dc-4630-887c-9c07d536dc04))
(pad "10" smd rect (at 16.7 13) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/MISO0") (pinfunction "MISO") (pintype "output") (tstamp f6f6132a-673c-49da-a333-234b694915a8))
(pad "11" thru_hole rect (at 15 11) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "/MOSI0") (pinfunction "MOSI") (pintype "input") (tstamp 1ae1d303-8ea9-4bf2-8681-c59ca070aeaf))
(pad "11" smd rect (at 16.7 11) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/MOSI0") (pinfunction "MOSI") (pintype "input") (tstamp 9ca9c5c0-5128-4dbb-8154-1e9a1bfa918a))
(pad "12" smd rect (at 16.7 9) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/SCK0") (pinfunction "SCK") (pintype "input") (tstamp 86f6fe9e-b3e0-4015-a905-7000154cda44))
(pad "12" thru_hole rect (at 15 9) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/SCK0") (pinfunction "SCK") (pintype "input") (tstamp b84d909f-d75c-4ab9-bf96-fb7abda9871a))
(pad "13" smd rect (at 16.7 7) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/~{CS0}") (pinfunction "~{CS}") (pintype "input") (tstamp 8498e4b1-49ab-4c35-a745-966c72912ac4))
(pad "13" thru_hole rect (at 15 7) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/~{CS0}") (pinfunction "~{CS}") (pintype "input") (tstamp ef06bb89-0426-4073-9045-34d46a85dde5))
(pad "14" smd rect (at 16.7 5) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/~{RESET0}") (pinfunction "~{RESET}") (pintype "input") (tstamp 92d31236-2c2a-4354-a888-6814f9d3f66a))
(pad "14" thru_hole rect (at 15 5) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/~{RESET0}") (pinfunction "~{RESET}") (pintype "input") (tstamp 9846d7fa-6e27-400c-bd8b-721d8180945c))
(pad "15" thru_hole rect (at 15 3) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "unconnected-(U1-Pad15)") (pinfunction "DIO5") (pintype "bidirectional+no_connect") (tstamp 6391d6e8-bc82-41e0-bd30-fb35ede9d761))
(pad "15" smd rect (at 16.7 3) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "unconnected-(U1-Pad15)") (pinfunction "DIO5") (pintype "bidirectional+no_connect") (tstamp fff37c57-3f26-4712-8a6a-a3e35e5c9895))
(pad "16" thru_hole rect (at 15 1) (size 1.4 1.4) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d80ab104-5209-447b-b76f-39ed2703e45c))
(pad "16" smd rect (at 16.7 1) (size 2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f236adab-9ea0-46b2-9fab-3f7456d98b4b))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp ccf7a4c9-2bc4-4de1-8a4c-7b9595b59892)
(at 102.108 83.299 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "MPN" "C0603C221J5GACTU")
(property "Mfg" "KEMET")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule1")
(path "/1e26eded-cea1-474c-a4fe-d6a02b02a352/fb97888f-3cce-4f23-b196-733ccd35e114")
(attr smd)
(fp_text reference "C5" (at 0.013 -1.524 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c1bdb79-1d93-42e1-9268-c4b0775c5953)
)
(fp_text value "220p" (at 0 -1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba783f8c-67ce-457f-a90d-67c0b2365d45)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 29bf61bf-f7a9-4f24-8155-7c59de725a92)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 705c74af-90e4-45d8-949a-df07ace9a760))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp eae29dcd-fce5-4cfa-9c88-5869ccebbac8))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 764d1a54-371e-4283-85c2-6e237b8fe895))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8d129908-3c0a-4ab1-a7f6-f67645d0081f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 98293ce6-109e-4c6d-8add-8f5fdf2f1555))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e7c765b7-11ec-4421-affc-225c9858e0aa))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 635362c9-a0a4-410a-b9e9-3ea2eae45ec2))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9b0e6999-dc38-4bf0-a89f-9f935151ad49))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a402b56d-0356-4f7d-aba9-11aa58386a58))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d88d09ff-5d9d-4dac-b014-fedfd6771171))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C4-Pad2)") (pintype "passive") (tstamp 4e6006a9-ec5d-409b-8139-c802e8623918))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C5-Pad2)") (pintype "passive") (tstamp 0e68ecde-72b6-4625-bf68-0584d586b4f6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:SMA_Cinch_142-0701_Vertical" (layer "F.Cu")
(tedit 5B2F4C32) (tstamp e8e2fc65-78b9-4218-bc75-07521dea71ac)
(at 110.49 81.28 -90)
(descr "https://docs.rs-online.com/9119/0900766b8142add1.pdf")
(tags "SMA THT Female Jack Vertical")
(property "MPN" "142-0701-201")
(property "Mfg" "Cinch")
(property "Sheetfile" "LoRaModule.kicad_sch")
(property "Sheetname" "LoRaModule1")
(path "/1e26eded-cea1-474c-a4fe-d6a02b02a352/4efe4205-dd81-40e0-9364-30fec8be924c")
(attr through_hole)
(fp_text reference "J2" (at 0 -4.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 239635a6-a1e3-4879-86af-79e4c2d232db)
)
(fp_text value "Conn_Coaxial" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de89ac55-85e8-48a5-aa7f-f75effc79d8b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c19e75a-cd15-4e26-ab4b-b71bb0ec6e4a)
)
(fp_line (start -1.45 3.355) (end 1.45 3.355) (layer "F.SilkS") (width 0.12) (tstamp 45378afe-31f6-4d27-958e-4a977d2bed02))
(fp_line (start 3.355 -1.45) (end 3.355 1.45) (layer "F.SilkS") (width 0.12) (tstamp 8c2a168f-ab3a-4326-8be7-be393601e875))
(fp_line (start -1.45 -3.355) (end 1.45 -3.355) (layer "F.SilkS") (width 0.12) (tstamp b75094a2-2f9b-4436-aa73-a45eb8605308))
(fp_line (start -3.355 -1.45) (end -3.355 1.45) (layer "F.SilkS") (width 0.12) (tstamp f6ce85b6-09eb-4da3-bb4c-495342baf26b))
(fp_line (start 4.17 4.17) (end 4.17 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 4c2a29ce-58ec-4887-8431-ec00d52b9d59))
(fp_line (start -4.17 -4.17) (end 4.17 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp d747c8c2-2e84-4550-85ff-26556bc95101))
(fp_line (start -4.17 -4.17) (end -4.17 4.17) (layer "F.CrtYd") (width 0.05) (tstamp eb01622e-cc85-4f75-ba07-26d9153ca044))
(fp_line (start 4.17 4.17) (end -4.17 4.17) (layer "F.CrtYd") (width 0.05) (tstamp ebd6b784-18df-40a8-bf8f-1e271cf3a535))
(fp_line (start 3.175 -3.175) (end 3.175 3.175) (layer "F.Fab") (width 0.1) (tstamp 0317e6ba-3046-466e-bd60-416ffb5e56c1))
(fp_line (start -3.175 3.175) (end 3.175 3.175) (layer "F.Fab") (width 0.1) (tstamp 58c1ae4b-3a3c-4f41-b960-3de5eff14636))
(fp_line (start -3.175 -3.175) (end -3.175 3.175) (layer "F.Fab") (width 0.1) (tstamp cb75c41e-7a03-48b7-81cb-a91ea1c7f930))
(fp_line (start -3.175 -3.175) (end 3.175 -3.175) (layer "F.Fab") (width 0.1) (tstamp cd69e0e9-cc18-4bd7-92bb-8a2106f310c1))
(fp_circle (center 0 0) (end 3.175 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp d6307e80-a6e8-48bd-9caa-5304a607bc7f))
(pad "1" thru_hole circle (at 0 0 270) (size 2.05 2.05) (drill 1.57) (layers *.Cu *.Mask)
(net 4 "Net-(C4-Pad2)") (pinfunction "In") (pintype "passive") (tstamp e262e937-dac5-40d6-befe-7160165799a2))
(pad "2" thru_hole circle (at 2.54 -2.54 270) (size 2.25 2.25) (drill 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 41922bfc-f4d1-4d27-866d-d8c418b84cae))
(pad "2" thru_hole circle (at -2.54 -2.54 270) (size 2.25 2.25) (drill 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 5f7ed4be-af34-49e0-aeeb-b0a658123489))
(pad "2" thru_hole circle (at 2.54 2.54 270) (size 2.25 2.25) (drill 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 98e28e04-6e6a-47d4-b2f7-dbdc77b5cec8))
(pad "2" thru_hole circle (at -2.54 2.54 270) (size 2.25 2.25) (drill 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Ext") (pintype "passive") (tstamp db950250-32a8-4ddf-b553-9cfcdf9dd93d))
(model "${KIPRJMOD}/3DModels/142-0701-201.stp"
(offset (xyz 0 0 10))
(scale (xyz 1 1 1))
(rotate (xyz 0 -90 0))
)
)
(gr_arc (start 99.06 109.22) (mid 97.263949 108.476051) (end 96.52 106.68) (layer "Edge.Cuts") (width 0.1) (tstamp 3bd7f26a-100c-435e-90ec-35eb1922e152))
(gr_line (start 129.648949 50.691051) (end 129.648949 106.788949) (layer "Edge.Cuts") (width 0.1) (tstamp 40d2a2c2-b36f-408e-bef7-ec700002f84b))
(gr_arc (start 129.648949 106.788949) (mid 128.905 108.585) (end 127.108949 109.328949) (layer "Edge.Cuts") (width 0.1) (tstamp 718bc23b-ab81-421d-927f-3713d555d9ad))
(gr_line (start 96.52 106.68) (end 96.52 50.691051) (layer "Edge.Cuts") (width 0.1) (tstamp 85dc4f80-77dd-40c1-b885-677ecefa2120))
(gr_line (start 127.108949 48.151051) (end 99.06 48.151051) (layer "Edge.Cuts") (width 0.1) (tstamp 888e49da-175c-44f1-b4c8-f7873c1a7bc3))
(gr_line (start 127.108949 109.328949) (end 99.06 109.22) (layer "Edge.Cuts") (width 0.1) (tstamp d1a04fb0-6015-49a7-bbfa-eb45a3aec8b5))
(gr_arc (start 96.52 50.691051) (mid 97.263949 48.895) (end 99.06 48.151051) (layer "Edge.Cuts") (width 0.1) (tstamp e4846b9e-5485-4672-b2ac-d3e382ba19d6))
(gr_arc (start 127.108949 48.151051) (mid 128.905 48.895) (end 129.648949 50.691051) (layer "Edge.Cuts") (width 0.1) (tstamp f0f7290e-8ef4-4144-a115-853bd3e1e81e))
(gr_text "BeagleBone to dual LoRa\nmodule adapter, rev ${REVISION}\nmailto:[email protected]" (at 109.855 105.41) (layer "B.SilkS") (tstamp cc38f0e9-e780-457c-a70e-cbddd698b0f7)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "SPI1" (at 120.015 88.265 90) (layer "F.SilkS") (tstamp 64e9c22a-4596-4b67-8da1-b595bec15c2d)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "SPI0" (at 120.015 60.325 90) (layer "F.SilkS") (tstamp 75f8b1bb-d8bd-418f-a108-0065c4347a3a)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "Connect to P9" (at 121.92 80.01 90) (layer "F.SilkS") (tstamp bcb66ef5-d595-4bbe-8dd6-4a38ff30661e)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "RF traces are 50 ohm when fabricated with OSHPark 4 layer stackup" (at 114.3 113.03) (layer "Cmts.User") (tstamp 3c909f67-9123-49af-8adf-8ff7e1968e27)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 99.047 84.061) (end 98.057 84.061) (width 0.5) (layer "F.Cu") (net 1) (tstamp 0d0d96c0-18e6-4294-8211-e2638eadb83d))
(segment (start 99.047 54.61) (end 98.044 54.61) (width 0.5) (layer "F.Cu") (net 1) (tstamp 1907573d-739d-478d-a476-fb911cc833ad))
(segment (start 97.79 93.205) (end 97.79 92.075) (width 0.5) (layer "F.Cu") (net 1) (tstamp 55bca346-01ce-44f1-9eeb-d1228fe92b2c))
(segment (start 97.79 65.265) (end 97.79 64.135) (width 0.5) (layer "F.Cu") (net 1) (tstamp 620509a4-c4c3-43c6-bc13-e49ccecf68ae))
(segment (start 98.057 84.061) (end 98.044 84.074) (width 0.5) (layer "F.Cu") (net 1) (tstamp 8b710b3c-b705-4d24-92d2-26fbfb8d86e2))
(segment (start 99.047 56.134) (end 98.044 56.134) (width 0.5) (layer "F.Cu") (net 1) (tstamp b3366ee5-79b9-4398-9056-2d53dc41fc56))
(segment (start 98.057 82.537) (end 98.044 82.55) (width 0.5) (layer "F.Cu") (net 1) (tstamp d94f5607-3e47-4df2-b7f6-a36f66d3a54a))
(segment (start 99.047 82.537) (end 98.057 82.537) (width 0.5) (layer "F.Cu") (net 1) (tstamp e903360b-691f-43bc-95b9-009022ebfb14))
(via (at 97.79 92.075) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 04f425b4-d288-428b-8e31-c45cd5678b4c))
(via (at 98.044 54.61) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 0b7812cb-a017-42c8-b6ba-aa14f1244e31))
(via (at 98.044 56.134) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 1180bce9-d186-4683-826f-ace07c5092cb))
(via (at 98.044 82.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 1395c196-8f42-43c9-a7a5-eecaad50d407))
(via (at 97.79 64.135) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 6637d716-a709-46a7-8e67-368a61217396))
(via (at 98.044 84.074) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 74378849-b2e3-4287-883a-deba85fd8c25))
(segment (start 102.108 54.597) (end 102.108 54.14) (width 0.356407) (layer "F.Cu") (net 2) (tstamp 22d59121-dc5c-4384-86c6-854540c3a9fd))
(segment (start 102.095 54.61) (end 102.108 54.597) (width 0.356407) (layer "F.Cu") (net 2) (tstamp 5d3a3cf6-6d75-4745-9e02-3fda8deae46b))
(segment (start 102.908 53.34) (end 110.49 53.34) (width 0.356407) (layer "F.Cu") (net 2) (tstamp 733dbd82-7ffb-450a-8101-43b83dbe7f52))
(segment (start 100.597 54.61) (end 102.095 54.61) (width 0.356407) (layer "F.Cu") (net 2) (tstamp c4673ad4-4847-4d91-9c39-5dcc8d18ed33))
(arc (start 102.108 54.14) (mid 102.342315 53.574315) (end 102.908 53.34) (width 0.356407) (layer "F.Cu") (net 2) (tstamp 0e449236-eec5-4252-b936-587bd4243342))
(segment (start 102.095 56.134) (end 102.108 56.147) (width 0.356407) (layer "F.Cu") (net 3) (tstamp 42fb4410-6b06-4ffd-8be2-255646534095))
(segment (start 102.108 56.147) (end 102.108 58.928) (width 0.356407) (layer "F.Cu") (net 3) (tstamp 5781b98c-0a0b-4963-b333-0c3cd37e8e81))
(segment (start 100.597 56.134) (end 102.095 56.134) (width 0.356407) (layer "F.Cu") (net 3) (tstamp e248bc6a-00a7-4e57-89f1-47eb2de2d4a9))
(segment (start 100.597 82.537) (end 102.095 82.537) (width 0.356407) (layer "F.Cu") (net 4) (tstamp 758a7bdf-a3b9-4d69-8919-a512bc903549))
(segment (start 102.095 82.537) (end 102.108 82.524) (width 0.356407) (layer "F.Cu") (net 4) (tstamp 81d9266f-deea-4b48-9bf2-ab3a3cc2fe14))
(segment (start 102.108 82.08) (end 102.108 82.524) (width 0.356407) (layer "F.Cu") (net 4) (tstamp d26bce23-dae6-47b6-b052-c0467a5fd880))
(segment (start 110.49 81.28) (end 102.908 81.28) (width 0.356407) (layer "F.Cu") (net 4) (tstamp eb36cdb4-397c-47ad-9827-3ba59facb009))
(arc (start 102.908 81.28) (mid 102.342315 81.514315) (end 102.108 82.08) (width 0.356407) (layer "F.Cu") (net 4) (tstamp 582efa8c-3248-40d0-95c8-049d4b3260d7))
(segment (start 100.597 84.061) (end 102.095 84.061) (width 0.356407) (layer "F.Cu") (net 5) (tstamp 0ace2f34-9866-4af6-976e-9f45893cadb6))
(segment (start 102.108 84.328) (end 102.108 87.122) (width 0.356407) (layer "F.Cu") (net 5) (tstamp b4cb6814-3436-4472-b6ea-5c747752f258))
(segment (start 102.095 84.061) (end 102.108 84.074) (width 0.356407) (layer "F.Cu") (net 5) (tstamp e028596d-5027-43ed-b7ae-e7cdf3807a70))
(segment (start 99.073 94.755) (end 99.393 95.075) (width 0.5) (layer "F.Cu") (net 6) (tstamp 1c83d9f7-3edd-49f2-a223-6ebc72282002))
(segment (start 98.819 66.815) (end 99.139 67.135) (width 0.5) (layer "F.Cu") (net 6) (tstamp 3953aa53-f4d7-4bfb-a148-63a0df4d82f7))
(segment (start 99.139 67.135) (end 100.52 67.135) (width 0.5) (layer "F.Cu") (net 6) (tstamp 5c1b64e3-fb10-4aad-959e-1f839814ac10))
(segment (start 99.393 95.075) (end 100.52 95.075) (width 0.5) (layer "F.Cu") (net 6) (tstamp 97f980fb-4d99-43e5-9f79-304cbb3d0a23))
(segment (start 97.79 66.815) (end 98.819 66.815) (width 0.5) (layer "F.Cu") (net 6) (tstamp 9ae9a38d-61fe-499f-ae92-ed61e3e6b524))
(segment (start 97.79 94.755) (end 99.073 94.755) (width 0.5) (layer "F.Cu") (net 6) (tstamp d41d3455-2f46-4626-8963-8d607364bf26))
(via (at 98.819 66.815) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 17dcc3c5-7a9b-4279-b77d-1cb81d293998))
(via (at 98.819 94.755) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 4b9ac9d1-6cd8-4871-ba83-97d28837a837))
(segment (start 127.04 53.29) (end 124.5 53.29) (width 0.5) (layer "B.Cu") (net 6) (tstamp f73bf5ee-6a5d-45b9-918a-485a9989f126))
(segment (start 128.215 76.89) (end 128.215 69.705) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00c53fce-37ee-41fd-bdbc-67c8ca9d5edd))
(segment (start 112.95 69.135) (end 114.3 70.485) (width 0.25) (layer "F.Cu") (net 9) (tstamp 4d5b7ee5-1a07-4563-8561-afaa4a105d6e))
(segment (start 114.3 73.66) (end 118.11 77.47) (width 0.25) (layer "F.Cu") (net 9) (tstamp 797e8825-7711-4a31-a3d9-035994efcf29))
(segment (start 114.3 70.485) (end 114.3 73.66) (width 0.25) (layer "F.Cu") (net 9) (tstamp 88e07695-c1f7-4702-80af-0764edf8db8c))
(segment (start 118.11 77.47) (end 127.635 77.47) (width 0.25) (layer "F.Cu") (net 9) (tstamp cee1ef52-7b73-4831-80e4-89f77f49644a))
(segment (start 128.215 69.705) (end 127.04 68.53) (width 0.25) (layer "F.Cu") (net 9) (tstamp d55aca23-4036-4a87-863e-7aeec355da9d))
(segment (start 102.22 69.135) (end 112.95 69.135) (width 0.25) (layer "F.Cu") (net 9) (tstamp eff3c93c-99dd-40cd-9255-119315944d96))
(segment (start 127.635 77.47) (end 128.215 76.89) (width 0.25) (layer "F.Cu") (net 9) (tstamp fc2e7d4d-7fd4-4776-8d5e-fa5525cef42c))
(segment (start 118.235 71.12) (end 119.47 71.12) (width 0.25) (layer "F.Cu") (net 12) (tstamp 04a937c2-0d9f-480c-a78e-72e92caeb69a))
(segment (start 117.92 71.135) (end 118.22 71.135) (width 0.25) (layer "F.Cu") (net 12) (tstamp 2151de88-b9bf-43c3-82b2-2546ebf597dd))
(segment (start 118.22 71.135) (end 118.235 71.12) (width 0.25) (layer "F.Cu") (net 12) (tstamp 691a6157-dff0-4f14-b398-6d1d57cf6952))
(segment (start 119.47 71.12) (end 124.5 76.15) (width 0.25) (layer "F.Cu") (net 12) (tstamp b8ed3027-05d4-4605-b52d-02029fb0300c))
(segment (start 125.72 72.39) (end 127.04 71.07) (width 0.25) (layer "F.Cu") (net 13) (tstamp 49b5f390-9215-4b05-87fb-9a3c36c4283d))
(segment (start 123.19 72.39) (end 125.72 72.39) (width 0.25) (layer "F.Cu") (net 13) (tstamp 7c507bb7-aac4-4d45-bcdf-8a8d54dbb63b))
(segment (start 119.935 69.135) (end 123.19 72.39) (width 0.25) (layer "F.Cu") (net 13) (tstamp c8338480-4c84-499c-b044-2bd9cda35f00))