-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpicise.kicad_pcb
17684 lines (17637 loc) · 675 KB
/
picise.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.6)
)
(paper "A5")
(title_block
(date "15 nov 2012")
(rev "2")
)
(layers
(0 "F.Cu" mixed)
(31 "B.Cu" mixed)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(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")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 56.67 61.76)
(grid_origin 56.67 61.76)
(pcbplotparams
(layerselection 0x00000f0_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "/GNSS_VBCKP")
(net 2 "GND")
(net 3 "Net-(C1-Pad1)")
(net 4 "/GNSS_RF_IN")
(net 5 "+3V3")
(net 6 "Net-(D25-Pad1)")
(net 7 "Net-(D42-Pad2)")
(net 8 "Net-(D69-Pad2)")
(net 9 "+5V")
(net 10 "/GNSS_SDA")
(net 11 "/GNSS_SCL")
(net 12 "/GPIO[4]{slash}GPCLK0")
(net 13 "/GNSS_RX")
(net 14 "/GNSS_TX")
(net 15 "/GPIO[17]")
(net 16 "/GNSS_PPS")
(net 17 "/GPIO[27]")
(net 18 "/GPIO[22]")
(net 19 "/GPIO[23]")
(net 20 "/GPIO[24]")
(net 21 "/GPIO[10]{slash}SPI0.MOSI")
(net 22 "/GPIO[9]{slash}SPI0.MISO")
(net 23 "/GPIO[25]")
(net 24 "/GPIO[11]{slash}SPI0.SCLK")
(net 25 "/GPIO[7]{slash}SPI0.CE1")
(net 26 "/ID_SDA")
(net 27 "/ID_SCL")
(net 28 "/GPIO[5]")
(net 29 "/GPIO[6]")
(net 30 "/GPIO[12]{slash}PWM0")
(net 31 "/GPIO[13]{slash}PWM1")
(net 32 "/GPIO[19]{slash}PCM.FS")
(net 33 "/GPIO[16]")
(net 34 "/GPIO[8]{slash}SPI0.CE0")
(net 35 "/GPIO[20]{slash}PCM.DIN")
(net 36 "/GPIO[21]{slash}PCM.DOUT")
(net 37 "/WP")
(net 38 "Net-(JP3-Pad1)")
(net 39 "Net-(JP3-Pad3)")
(net 40 "Net-(L1-Pad2)")
(net 41 "Net-(R1-Pad2)")
(net 42 "Net-(R3-Pad2)")
(net 43 "Net-(R4-Pad2)")
(net 44 "Net-(R5-Pad2)")
(net 45 "unconnected-(U1-Pad5)")
(net 46 "/~{GNSS_RESET}")
(net 47 "unconnected-(U1-Pad13)")
(net 48 "unconnected-(U1-Pad15)")
(net 49 "/~{GNSS_SAFEBOOT}")
(net 50 "unconnected-(U2-Pad11)")
(net 51 "unconnected-(U2-Pad12)")
(net 52 "unconnected-(U2-Pad13)")
(net 53 "unconnected-(U2-Pad14)")
(net 54 "unconnected-(U3-Pad1)")
(net 55 "unconnected-(U3-Pad2)")
(net 56 "unconnected-(U3-Pad3)")
(net 57 "/GPIO[26]")
(net 58 "unconnected-(U2-Pad9)")
(net 59 "unconnected-(U2-Pad10)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 064102cb-0a15-42a7-add8-33d8ae74422e)
(at 59.57 57.76 -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 "JLCPCB" "C14663")
(property "MPN" "CC0603KRX7R9BB104")
(property "Manufacturer" "Yageo")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/76c2a046-4726-42a6-b20c-ae8cb7b326fd")
(attr smd)
(fp_text reference "C8" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fca4e43c-4017-48bd-be56-4e61108aa387)
)
(fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp 5236ce61-012e-4cc0-8b71-75fa76702285)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1e1bf522-8794-46ec-8f1d-0dc98d5c616e)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 5fe7820d-39bf-491d-ab2d-4e8d6f82fd88))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp a6791d49-4692-4a96-bfc1-90ad29cf8708))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 108a9700-4d24-488e-aeed-5a54195842b3))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4e9162ef-c572-4ab0-93ce-a1b4e73ee17d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 97f2a559-5b75-4cde-a538-97397326d831))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp efa0c4cb-262c-42ea-918f-771a7c286f83))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5d4ea53f-1af1-437f-b7eb-1c73a34054c1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7a883d95-df9c-4470-8ce0-f845fa569de7))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 897bc958-2fb5-4589-b31c-b27512a275cb))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ad336c58-55a8-4d65-8f7b-be3f56c349ad))
(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 5 "+3V3") (pintype "passive") (tstamp de2d52f4-0864-4f42-9902-9a90054400c1))
(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 2 "GND") (pintype "passive") (tstamp 1b53cc7f-be8d-4982-abed-bc01c1386266))
(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 "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5B391E66) (tstamp 13fbb421-a84d-44d6-b702-d3ab988d5f02)
(at 75.37 54.66 -90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/43e66c4c-de75-44f8-8171-19825b035cbb")
(attr exclude_from_pos_files)
(fp_text reference "JP2" (at 0 -1.8 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85ceb51e-30b7-4724-9b6a-8fde4e17b345)
)
(fp_text value "ID_WP" (at 0 1.9 90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp d95bb147-83b9-4799-9179-c4e800b69587)
)
(fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 384f7228-b54c-411f-9997-84c7bad3c9ed))
(fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 8c5a7597-b9f3-413b-b4d9-d0d8edf64d69))
(fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 9f3637a5-b630-43d8-9487-1ccf434da5bf))
(fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp c9a3092d-f1b6-4f7e-959e-9e165cee68c0))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 45c2a6d8-1253-45d0-8180-f867f38c8665))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp b039b7d1-90de-4269-b861-9b2e4a743b70))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp c7bd86fb-40dd-44d2-b1f7-34823d5e2a26))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp e9b0b561-6c6f-48d9-b8bf-a97e3743e045))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 08718664-38d1-46c8-8b2e-285ae205daf4))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 99d4c86b-b0c4-4a89-82de-e981ac5a39e5))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp a5e104ec-657a-472b-a660-f4b46a9f77e2))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp e55c0f30-41f3-4c50-84e0-c894181f4f5e))
(pad "1" smd custom (at -0.65 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 37 "/WP") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp e2c1a857-b2ad-4349-a92c-291f3934f604))
(pad "2" smd custom (at 0.65 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 5 "+3V3") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 3d350a22-60c0-4f3a-999f-6508df8372c8))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 15a96f65-ac4c-46c2-9f16-090c372e9b52)
(at 114.62 49.81 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "JLCPCB" "C22859")
(property "MPN" "0603WAF100JT5E")
(property "Manufacturer" "uniroyal")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/f8b0ca84-52d3-42b5-99d4-fe6fb715e9ec")
(attr smd)
(fp_text reference "R1" (at 0 -1.43 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37ae073f-829e-4b12-a27d-666db56e85da)
)
(fp_text value "10R" (at 0 1.43 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9ebbfac-b51c-4540-8af4-c8b44fd39e01)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 550e787a-3acc-449b-9d6a-7dd61c85f085))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5a7dbff8-194b-4371-a3c5-d05391160b07))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 74db398f-84f4-4a9e-bd42-a74d3a138ed6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cfbf54ca-56c6-4e21-8d35-f2fb69e1be5f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d3c12f73-cd9b-4e24-b6b3-6ce10edf7d27))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f1b40ccb-030f-4fef-b950-0140f374b7d3))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 35c36993-ca1c-4549-b349-a8d4107e497a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4df0134d-91c5-4ff6-ba87-f59bf34337fb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 96a8c4eb-c83c-475f-b5b0-23f3e056f682))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f07bbc5b-dacf-43f5-a241-f1b2b814533a))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "Net-(L1-Pad2)") (pintype "passive") (tstamp 94146a2c-2a6f-4685-a39c-0b5c858d87b5))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "Net-(R1-Pad2)") (pintype "passive") (tstamp 3e15ab0a-915e-46e2-ac26-9174956c83b9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5B391EB7) (tstamp 1954dc56-ff3b-4b6b-985b-ec926723ff8e)
(at 69.42 47.36 180)
(descr "SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/48acda60-915e-49e0-bda3-b45b69ef278d")
(attr exclude_from_pos_files)
(fp_text reference "JP3" (at 0 -1.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ac97aa6-e7af-492d-8b96-7f92e417e783)
)
(fp_text value "SolderJumper_3_Open" (at 0 1.9) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp cbd7eeb0-e945-4229-81af-87d41aeeafa6)
)
(fp_line (start 2.05 -0.3) (end 2.05 0.3) (layer "F.SilkS") (width 0.12) (tstamp 1dac65d5-9a86-4756-93b3-1f8e1b9cdc44))
(fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp 26ab765e-9576-4cd7-ae0c-70720841fb7a))
(fp_line (start -2.05 0.3) (end -2.05 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 44494697-b483-49a4-97be-9dea9eac500d))
(fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 731b8bd2-02a9-4d72-9ffd-93ae3bdc1f2a))
(fp_arc (start 1.35 -1) (mid 1.844975 -0.794975) (end 2.05 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 17539dcd-8a1e-4934-8677-28033ffe2da6))
(fp_arc (start 2.05 0.3) (mid 1.844975 0.794975) (end 1.35 1) (layer "F.SilkS") (width 0.12) (tstamp 639b7919-caee-4f09-9830-e43e1150b3c9))
(fp_arc (start -1.35 1) (mid -1.844975 0.794975) (end -2.05 0.3) (layer "F.SilkS") (width 0.12) (tstamp 863a144c-8164-4cd3-86bd-b5ffabacdef2))
(fp_arc (start -2.05 -0.3) (mid -1.844975 -0.794975) (end -1.35 -1) (layer "F.SilkS") (width 0.12) (tstamp c63df4d4-eaf4-41af-abe8-588e7c4fc78c))
(fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 2b331803-6cc2-4b9e-a6b0-d559bc950c52))
(fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5e8abcc1-3270-4d5b-88bc-cb254a196b82))
(fp_line (start 2.3 1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 8ba9a8b4-671f-4759-95f5-8d8560a1c961))
(fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp a2d0b3a8-6003-42ef-b44e-76371f0aedb6))
(pad "1" smd custom (at -1.3 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 38 "Net-(JP3-Pad1)") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.55 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.55 -0.75)
) (width 0) (fill yes))
) (tstamp 974e5325-7564-4260-a462-1a910e6bb095))
(pad "2" smd rect (at 0 0 180) (size 1 1.5) (layers "F.Cu" "F.Mask")
(net 5 "+3V3") (pinfunction "C") (pintype "passive") (tstamp eb1b7350-3d15-4e09-848e-31c488b7933f))
(pad "3" smd custom (at 1.3 0 180) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 39 "Net-(JP3-Pad3)") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.55 0.75)
(xy -0.55 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 52137c8d-23ad-403d-b939-1abd2ae0ebbd))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1d9ba813-5833-48b6-8f3e-5ee3a4f9b1a5)
(at 70.92 54.36 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 "JLCPCB" "C14663")
(property "MPN" "CC0603KRX7R9BB104")
(property "Manufacturer" "Yageo")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/0f7872a7-de47-41d5-a21f-9934102d3a5f")
(attr smd)
(fp_text reference "C9" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec0fe1f5-ba21-4f17-bf11-61b4d6e24a5a)
)
(fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp fb2362df-805f-455e-9206-cf29cba6d4a0)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 27e2ab18-52ca-475a-8e57-c7467ef3a7cf))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp d11efc7e-eca4-4dcf-bdfe-e02bd22dde68))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84f38021-cfa9-4767-aacd-e05c90c4f099))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c519e723-011c-483a-9906-ffbed4d4e904))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dcf78865-e52b-4928-82cd-a5bc8d34b22e))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f3a19aa0-e72a-4d92-af1e-15bf45f725fd))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5c6bd540-8b07-4e3b-9883-2d52ec58c754))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6d66edc9-e5f0-4341-bdb3-1b4d07cc7d71))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp eb4cf66e-01a2-48b9-a96d-4043a15a5504))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f310e117-d79e-410f-a357-4a6a6bae288e))
(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 "+3V3") (pintype "passive") (tstamp c42f5264-3a40-4201-bbe4-11ae3ba8ee7b))
(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 2 "GND") (pintype "passive") (tstamp 146ee49b-b54a-4410-bfd4-604110ad3271))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2080da8d-db6d-4d87-8a80-15539a0c05d7)
(at 72.57 52.76)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "JLCPCB" "C23018")
(property "MPN" "0603WAF3901T5E")
(property "Manufacturer" "uniroyal")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/510c400a-2410-46b0-a7fb-1072fc4f848b")
(attr smd)
(fp_text reference "R7" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff5a1198-2956-43ae-a704-853152255240)
)
(fp_text value "3.9k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp 5e19240e-a931-485b-9008-26d9894b90a6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 345de691-c3d4-4de0-8819-0fe97d58b44e)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp cfdf55f2-96a5-45a5-af46-3cf45d2ae49d))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp f3257033-97dc-4cd5-9c7a-dc0fe6d4d80c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1a0fd660-9a8c-4208-b9e6-ca6956ea1125))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 72300807-b47e-483b-a9de-9e4d0eab4867))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 86668102-6cd4-4424-a763-efb914b58879))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a89ddbd5-0aa4-483d-bac0-32d6661fac2c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 491548fa-bcf3-460f-9e74-0817b41411c3))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6944aba0-04f1-4aa3-a2a3-b3afb3167feb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6daf47bb-ea38-4063-92f4-2580ef6d79c5))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a88bb154-9276-4b2b-baf4-4b1dcd84126e))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp 423e9f58-b48d-4e85-a8cf-729870a1baa3))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/ID_SCL") (pintype "passive") (tstamp 7b137bd4-d8f8-477b-9283-c85e572aabb0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Header_Samtec:SAMTEC_SSQ-120-03-G-D_Pi" (layer "F.Cu")
(tedit 637F1697) (tstamp 32ab5c1d-82f2-4a6d-bc3c-0b6048c1a3d2)
(at 89.135 41.7 180)
(descr "Tiger Buy™ Socket Strip with Square Tails, 0.100\" Pitch, 20 positions, 2 rows, 10mm tail, inverted, rotated for Raspberry Pi GPIO")
(property "Digikey" "SSQ-120-03-G-D")
(property "MPN" "SSQ-120-03-G-D")
(property "Manufacturer" "Samtec")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/df883408-807c-458f-924a-53ad59baf3c9")
(attr through_hole)
(fp_text reference "J2" (at -23.48 -4.36 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef5609a3-730f-423f-b1a5-3e7773d9478d)
)
(fp_text value "SSQ-120-03_GPIO" (at -0.235 0.04 180) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp 9adef4c8-40bf-44cd-8148-aa44fdd6c6ea)
)
(fp_line (start 25.655 2.475) (end -25.655 2.475) (layer "F.SilkS") (width 0.2) (tstamp 1378b931-cb3d-4cf0-af26-a9a601f5771b))
(fp_line (start 25.655 -2.475) (end -25.655 -2.475) (layer "F.SilkS") (width 0.2) (tstamp 1c27c631-4f4d-4aaf-8c62-71299912ef83))
(fp_line (start -25.655 2.475) (end -25.655 -2.475) (layer "F.SilkS") (width 0.2) (tstamp 20e290d6-2241-4dad-a300-686a08c158fc))
(fp_line (start 25.655 -2.475) (end 25.655 2.475) (layer "F.SilkS") (width 0.2) (tstamp 245497fc-0f05-4ec3-b873-a0222e5eb4fd))
(fp_circle (center 26.6 -1.3) (end 26.7 -1.3) (layer "F.SilkS") (width 0.2) (fill solid) (tstamp 16490f3b-af73-47e2-8ecc-d1b2ad2135a2))
(fp_line (start 25.905 2.725) (end -25.905 2.725) (layer "F.CrtYd") (width 0.05) (tstamp 09499f64-3dfe-4a03-a265-63920918a13d))
(fp_line (start -25.905 -2.725) (end 25.905 -2.725) (layer "F.CrtYd") (width 0.05) (tstamp 6bd509c9-c157-4610-b41d-e28ddeb2cc2c))
(fp_line (start -25.905 2.725) (end -25.905 -2.725) (layer "F.CrtYd") (width 0.05) (tstamp caa34876-459d-485b-8f9c-2c87cd412bd5))
(fp_line (start 25.905 -2.725) (end 25.905 2.725) (layer "F.CrtYd") (width 0.05) (tstamp d14e312c-08d5-45aa-b65d-6fee00acb2e0))
(fp_line (start 25.655 -2.475) (end 25.655 2.475) (layer "F.Fab") (width 0.1) (tstamp 0542a638-7b8b-4292-83ba-2c3adfd008c2))
(fp_line (start -25.655 -2.475) (end 25.655 -2.475) (layer "F.Fab") (width 0.1) (tstamp 355302d6-4e46-4edc-a3d0-558f6225ecbf))
(fp_line (start 25.655 -2.475) (end 25.655 2.475) (layer "F.Fab") (width 0.1) (tstamp 47bcfd0c-b54b-42a3-91c0-ee7ade00aa5e))
(fp_line (start -25.655 -2.475) (end 25.655 -2.475) (layer "F.Fab") (width 0.1) (tstamp 543fed08-f51a-4299-8eb9-bbe61ce8be71))
(fp_line (start -25.655 2.475) (end -25.655 -2.475) (layer "F.Fab") (width 0.1) (tstamp d80ec4fb-1bf6-4ec5-becb-1de0af3fd028))
(fp_line (start 25.655 2.475) (end -25.655 2.475) (layer "F.Fab") (width 0.1) (tstamp d839b128-b941-455b-9b84-c5ea8e008af7))
(fp_line (start -25.655 2.475) (end -25.655 -2.475) (layer "F.Fab") (width 0.1) (tstamp fdf40156-3b74-45cb-9204-e339f6c74a6f))
(fp_circle (center 26.6 -1.3) (end 26.7 -1.3) (layer "F.Fab") (width 0.2) (fill solid) (tstamp 2150c3eb-6f39-44a1-a1dc-b98cf718c7be))
(pad "01" thru_hole rect (at 24.13 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 5 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp bc2767e8-1bf1-48b3-a4e2-fbfb3dfc12aa))
(pad "02" thru_hole circle (at 24.13 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 9 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 58ce3d7c-5b45-4df6-ba6e-43ef5ac9b407))
(pad "03" thru_hole circle (at 21.59 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 10 "/GNSS_SDA") (pinfunction "SDA1") (pintype "passive") (tstamp c7ed3b46-97eb-432b-a89c-4f7d47934a39))
(pad "04" thru_hole circle (at 21.59 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 9 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 94d1c6d9-0790-48ce-ab95-fd773814166d))
(pad "05" thru_hole circle (at 19.05 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 11 "/GNSS_SCL") (pinfunction "SCL1") (pintype "passive") (tstamp e78e9fed-cf4e-4b3f-baae-1a37134b8806))
(pad "06" thru_hole circle (at 19.05 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5ff3706a-0fb9-47ab-8067-b991281470a0))
(pad "07" thru_hole circle (at 16.51 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 12 "/GPIO[4]{slash}GPCLK0") (pinfunction "#4") (pintype "passive") (tstamp fe61508d-ed42-48ef-8747-0e94f90283f7))
(pad "08" thru_hole circle (at 16.51 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 13 "/GNSS_RX") (pinfunction "TX") (pintype "passive") (tstamp eab2eb54-8800-4820-a029-e4ce420e3413))
(pad "09" thru_hole circle (at 13.97 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7bc8d162-9367-4338-b83e-9ca50e09c794))
(pad "10" thru_hole circle (at 13.97 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 14 "/GNSS_TX") (pinfunction "RX") (pintype "passive") (tstamp be25d52f-5df1-4fc4-b0d1-cbbcf6bcf7f1))
(pad "11" thru_hole circle (at 11.43 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 15 "/GPIO[17]") (pinfunction "#17") (pintype "passive") (tstamp eec5a213-b432-4ea2-bc63-3525a6ec2223))
(pad "12" thru_hole circle (at 11.43 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 16 "/GNSS_PPS") (pinfunction "PPS") (pintype "passive") (tstamp ed660bd0-135d-4fc9-b46a-0e2493abf93b))
(pad "13" thru_hole circle (at 8.89 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 17 "/GPIO[27]") (pinfunction "#27") (pintype "passive") (tstamp 2cbf7bf4-c1a0-419b-a25f-23d92c8bc616))
(pad "14" thru_hole circle (at 8.89 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 64bd4621-5b19-4376-b153-ab60c5eca965))
(pad "15" thru_hole circle (at 6.35 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 18 "/GPIO[22]") (pinfunction "#22") (pintype "passive") (tstamp 78d3be31-a2bf-47b1-a7be-d8d3c33e7943))
(pad "16" thru_hole circle (at 6.35 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 19 "/GPIO[23]") (pinfunction "#23") (pintype "passive") (tstamp 5ee13688-4860-43a9-97e8-39820510278f))
(pad "17" thru_hole circle (at 3.81 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 5 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 519f9610-dfa2-4ee3-931d-58bccd1172e7))
(pad "18" thru_hole circle (at 3.81 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 20 "/GPIO[24]") (pinfunction "#24") (pintype "passive") (tstamp 96243195-75f8-47c4-9df8-2dcafdc95cff))
(pad "19" thru_hole circle (at 1.27 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 21 "/GPIO[10]{slash}SPI0.MOSI") (pinfunction "MOSI") (pintype "passive") (tstamp fb442b48-3f1d-402a-a3ee-9ebb7f7d8079))
(pad "20" thru_hole circle (at 1.27 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1d6de0ed-3dc0-459c-8b7a-8b21ccf50e15))
(pad "21" thru_hole circle (at -1.27 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 22 "/GPIO[9]{slash}SPI0.MISO") (pinfunction "MISO") (pintype "passive") (tstamp 42c93559-e74e-41f6-aeeb-8535e135a64b))
(pad "22" thru_hole circle (at -1.27 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 23 "/GPIO[25]") (pinfunction "#25") (pintype "passive") (tstamp df5d9dac-e6bf-4483-8c9d-3b83918d0c4b))
(pad "23" thru_hole circle (at -3.81 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 24 "/GPIO[11]{slash}SPI0.SCLK") (pinfunction "SCLK") (pintype "passive") (tstamp ad3e0f14-f2e1-4404-99f1-ebb277affcd7))
(pad "24" thru_hole circle (at -3.81 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 34 "/GPIO[8]{slash}SPI0.CE0") (pinfunction "CE0") (pintype "passive") (tstamp e1591786-97dc-4313-99b3-df3f591c5262))
(pad "25" thru_hole circle (at -6.35 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 844d7f37-a2a9-4905-887b-71d49b6a8f80))
(pad "26" thru_hole circle (at -6.35 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 25 "/GPIO[7]{slash}SPI0.CE1") (pinfunction "CE1") (pintype "passive") (tstamp e5429bad-9264-4fb7-ac11-2be6370cc7d4))
(pad "27" thru_hole circle (at -8.89 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 26 "/ID_SDA") (pinfunction "SDA0") (pintype "passive") (tstamp b88a6c45-98d9-4f08-98f0-497096e396d7))
(pad "28" thru_hole circle (at -8.89 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 27 "/ID_SCL") (pinfunction "SCL0") (pintype "passive") (tstamp 034e16d2-7489-4570-ad17-3f6c756d23e0))
(pad "29" thru_hole circle (at -11.43 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 28 "/GPIO[5]") (pinfunction "#5") (pintype "passive") (tstamp 7245b9ee-9a89-4e8c-bf67-f91c8f149240))
(pad "30" thru_hole circle (at -11.43 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d567b80a-7a8a-4439-ae52-4da1760e72c3))
(pad "31" thru_hole circle (at -13.97 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 29 "/GPIO[6]") (pinfunction "#6") (pintype "passive") (tstamp b100ca4c-3f97-4090-b774-f298e8aeac35))
(pad "32" thru_hole circle (at -13.97 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 30 "/GPIO[12]{slash}PWM0") (pinfunction "#12") (pintype "passive") (tstamp 74f15978-c447-45c5-9956-3ea55a345b85))
(pad "33" thru_hole circle (at -16.51 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 31 "/GPIO[13]{slash}PWM1") (pinfunction "#13") (pintype "passive") (tstamp d431e4cd-9dd0-4138-8fab-255374ba4c52))
(pad "34" thru_hole circle (at -16.51 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cae2bb50-85a1-45b5-a9ce-1783915e9e9f))
(pad "35" thru_hole circle (at -19.05 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 32 "/GPIO[19]{slash}PCM.FS") (pinfunction "#19") (pintype "passive") (tstamp 99057097-8d64-4028-a8ab-c8e6e812bde3))
(pad "36" thru_hole circle (at -19.05 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "/GPIO[16]") (pinfunction "#16") (pintype "passive") (tstamp 28a57c8d-7d5d-4ac2-9ccd-f73cc6779a53))
(pad "37" thru_hole circle (at -21.59 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 57 "/GPIO[26]") (pinfunction "#26") (pintype "passive") (tstamp 1ab29236-7637-4e3b-bd09-ff695a28068d))
(pad "38" thru_hole circle (at -21.59 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 35 "/GPIO[20]{slash}PCM.DIN") (pinfunction "#20") (pintype "passive") (tstamp c4cf4f68-71c6-4a30-bf6e-44117c313a4f))
(pad "39" thru_hole circle (at -24.13 -1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 88c52fd1-06b6-4b2d-bd9f-027a85be5c49))
(pad "40" thru_hole circle (at -24.13 1.27) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)
(net 36 "/GPIO[21]{slash}PCM.DOUT") (pinfunction "#21") (pintype "passive") (tstamp 7cbacd55-fcaf-469d-9622-e56a2578dc24))
(model "${KIPRJMOD}/library/Connector_Header_Samtec/Connector_Header_Samtec.3dshapes/SSQ-120-03-G-D.step"
(offset (xyz 0 0 -1.85))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 410059f7-7790-4031-bc5d-093f2c00c971)
(at 58.92 54.41 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/69fb5f21-672f-443e-ab30-34bbda8b442a")
(attr smd)
(fp_text reference "R2" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c6bafdc-79d2-4b28-ae10-8bb0ee811131)
)
(fp_text value "DNP" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp 3ca71cdd-5798-44a3-ba52-df4dbd1ab2a0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2190a3d8-aaab-4397-9c37-7f887f236945)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 92b6ecf6-156f-441d-88f4-7de0a2cd8482))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp cc236463-c8d8-4635-b595-a44bab7fbf66))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 016cf3a1-0ca2-4f97-bdd6-b26cc45ac395))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 36726bf7-9990-436b-9217-db34509e66a4))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 677bb011-24c3-4398-8f6f-23d612f5dbe0))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 78606da2-5ea7-44f2-91c8-ed6b91012599))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 082b8233-ab4e-4d0e-886a-60296968430b))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 289b23f8-8a05-4356-b4c2-049a60f700f1))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 552123a9-953b-4415-9a2f-ed3f752498a6))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5ca6f62d-3f24-4ee5-9a83-fd5945d74eba))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 28 "/GPIO[5]") (pintype "passive") (tstamp 693b7403-28ee-4ece-be3f-e2949a3835ef))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 5 "+3V3") (pintype "passive") (tstamp 91aaa9e8-5287-4b05-845d-7534220882ad))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.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 42586c8d-414d-4941-b931-83a047e15c82)
(at 115.42 53.975 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 "JLCPCB" "C1671")
(property "MPN" "CL10C470JB8NNNC")
(property "Manufacturer" "Samsung")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/365e6173-0163-4316-bf04-824a4a9fe984")
(attr smd)
(fp_text reference "C1" (at 0 -1.43 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 882eff43-9cc8-4c60-8ced-8be62c77fc8b)
)
(fp_text value "47pF" (at 0 1.43 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca651919-aad1-4a64-9658-91b4cc466ecf)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp bcab56ca-5d3f-4eaf-a8db-e6658ac7368d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 278f36fb-0957-4f04-805c-691acda72743))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp fd457f8f-6739-4813-b8ff-08548cf4ab1f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 291a0c94-08df-4b22-b306-440793e1af4f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7ec95489-16ad-4907-ad22-3e38c81a0ec1))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 967ebfcd-048f-48ee-86e6-17da9fb67c7c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c1617424-b957-448a-8f2a-1b6dbb6252fe))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8f8c2ebd-21e3-4940-bd1c-39aeedca1be9))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 9bfbb2a4-d4d1-47ec-93ae-415a54fd004f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b87febfa-11ba-476b-a3cc-412604e53d58))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp fbeec3f3-07d7-4dd2-bee8-a5e8411d82b3))
(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-(C1-Pad1)") (pintype "passive") (tstamp 8cba3590-d390-41f9-ba34-22bd5ba02551))
(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 4 "/GNSS_RF_IN") (pintype "passive") (tstamp 201b86aa-c7d1-4a7a-ad42-9f8f217270d3))
(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 428a2f59-887d-4bef-a441-4e776c833e52)
(at 118.42 49.36 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 "JLCPCB" "C1671")
(property "MPN" "CL10C470JB8NNNC")
(property "Manufacturer" "Samsung")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/f95f0a99-19ab-4e4f-a6a3-759367232c47")
(attr smd)
(fp_text reference "C15" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d423ec6d-d4e0-4fa5-8c24-d944e22baad8)
)
(fp_text value "22pF" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp 2bd944d4-aad9-4e56-8bf5-bf9f288fc80e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f56dac74-ab3b-4185-b6e0-8938f45ddc19)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 5a85dc98-f248-4a25-aa58-4276415f16f7))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp f6833245-04c4-4c11-8827-1f3bdbcc3f39))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 407cd926-e3e6-45c6-885c-c9a038aacf13))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5a728c3f-337e-4367-a094-1adefe3aa4e0))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 87b2e0ed-d83a-433b-a2b4-978c1aa45d7a))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ba20b729-e226-429d-bafc-aed40617ba9f))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 0bac4dda-64ac-495b-933b-ec10cf6a7b39))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 24f2d025-49f0-4f91-801f-4d170a5e171d))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 2c5b9cab-2c45-468a-b8a2-1da47f40a273))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cbe2a50f-6998-4d71-8e66-3c9b125c2137))
(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 2 "GND") (pintype "passive") (tstamp cc041973-fffc-4c29-83ce-52147f4c50f7))
(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 3 "Net-(C1-Pad1)") (pintype "passive") (tstamp 21ffea74-5c2b-46d5-9861-5e7e28bebd67))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 44cd5596-53a0-47cc-a23b-3153851cf830)
(at 115.42 45.66)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "JLCPCB" "C23138")
(property "MPN" "0603WAF3300T5E")
(property "Manufacturer" "uniroyal")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/ea3531c2-911e-40d0-b4ed-9c8ad4c5d4a1")
(attr smd)
(fp_text reference "R8" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b86c8054-5790-4bbc-97b4-e26ff6d6a9e1)
)
(fp_text value "330R" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp bc64e193-6d7e-4219-ab53-439437445cd9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a3d50dd6-90de-4119-97cc-392a5ef0956e)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ad7ddb0d-5773-4aa7-9b64-f88cad19724f))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp b3bdb4d1-2b01-4547-81aa-5878967d10ae))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b9dd2078-30a8-4665-982f-5d51dad5db50))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bac0c312-febd-4bb1-a3ae-b69bd0b762d8))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c1edd6b7-e213-4e21-81a1-07edba97f4ed))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e13830d4-d049-409b-b111-1fbe1b405d56))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3fae6c7c-3777-42bf-98a9-6345372178a1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 643fc690-e7bb-4fad-affb-3c7cff347534))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 999923d6-61ba-4400-b99d-cec985000343))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9dabbb72-31f8-4b79-99aa-951d291211af))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp e65bd07c-ac6a-4a1a-a2fb-f01e799698cc))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D42-Pad2)") (pintype "passive") (tstamp 8d58b274-5b48-4ce6-bde2-853bce8c156b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_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 4538c8bb-43ef-4049-a831-b2ee71a53b42)
(at 98.42 55.91 -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 "JLCPCB" "C15849")
(property "MPN" "CL10A105KB8NNNC")
(property "Manufacturer" "Samsung")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/225a6ef0-cfc4-4098-a5bc-9b93900e89bc")
(attr smd)
(fp_text reference "C3" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85e8c9be-eec2-425d-8403-1e3dd7e823e2)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp 1f539954-d43e-4677-9480-23f7d045a92c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.06)))
(tstamp 329d8a80-e72c-49e2-be2d-51796721b765)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4986b27c-03a2-4b42-adca-d2105b1b1288))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp bcfadbfd-f88e-4a54-a749-5f99e313d84f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 16b14cae-3deb-45dd-9f40-1aaf13a08a59))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 426d197c-fc1f-4b84-91e8-54ba572fc0b1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b764c956-22cb-4f0e-b5ab-9a3c5fd0cb6d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ffc5886d-bb35-4d14-8c22-0b53c038335e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5c288335-8523-426a-8241-31a5d273867c))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6bbf3b31-b749-4c0e-a2b0-3534dc272e74))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7313af94-ad42-4042-ba98-7efa6a02e056))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cb187f92-82da-4572-8b16-4b7947a802d3))
(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 5 "+3V3") (pintype "passive") (tstamp c4edffbc-4584-44a5-bd3b-3d74a068839b))
(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 2 "GND") (pintype "passive") (tstamp a603afc3-350d-455e-80d6-52842cfb10e3))
(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 576ec2fe-894c-4829-902b-917fb16b4827)
(at 61.17 57.76 -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 "JLCPCB" "C15525")
(property "MPN" "CL05A106MQ5NUNC")
(property "Manufacturer" "Samsung")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/ca124088-7dba-4815-a6a3-f7f6e428cdde")
(attr smd)
(fp_text reference "C6" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed5b4f79-f635-48b6-a350-c1bd23fb0adc)
)
(fp_text value "10uF" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp 3d077549-c6d1-4a43-a4e8-6460d61e52f8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 97fd44f1-f3d7-4f27-ba7b-37069aa432a0)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 08cedf6c-7c9d-41a7-8b7b-abc2b0a19a95))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp b82abd4e-ef68-42f8-a897-295b9ea6a377))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 408b2fb4-9902-4fd4-9603-8eae70f9bc1d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5a5f7e1a-25ca-44af-9f2a-9956e2a6a580))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9990093b-617c-477a-987e-a623a0705d7c))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ee5dfecf-9fad-436e-9a6f-7f5bceaf41ad))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1e421d67-5859-4747-a909-2c5adcd34411))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3777b901-3047-4bc2-92bb-d2c93642fb75))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8ca107e0-45f8-4fd7-98b9-c1ba112f7f0b))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9d3c2767-31b8-4131-93d8-f54d92889868))
(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 5 "+3V3") (pintype "passive") (tstamp 8615ec7d-a1ae-4c2c-96f9-cd950c5565c3))
(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 2 "GND") (pintype "passive") (tstamp 852ffd41-44be-4e56-9b8a-2d30588c9c1d))
(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 "Connector_SMA_Samtec:SAMTEC_SMA-J-P-H-ST-EM1" (layer "F.Cu")
(tedit 6356C63D) (tstamp 58a3f8f2-9904-44e6-88b3-3051911740ef)
(at 119.7 53.975 90)
(descr "SMA Connector Jack, Female Socket 50Ohm Board Edge, End Launch Solder")
(property "Digikey" "SMA-J-P-H-ST-EM1")
(property "MPN" "SMA-J-P-H-ST-EM1")
(property "Manufacturer" "Samtec")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/e38330bb-c7ad-4477-8444-fab35c01fdca")
(attr smd)
(fp_text reference "J1" (at -0.34105 -3.66967 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b799d0ab-321e-43ed-b8ac-8106b9aaaa75)
)
(fp_text value "ANT_SMA" (at 0 6.4 180) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp 448f2dbf-3d2b-4584-9c5d-ec84210cf0f9)
)
(fp_text user "PCB EDGE" (at 5.8 1.4 90) (layer "F.Fab")
(effects (font (size 0.48 0.48) (thickness 0.15)))
(tstamp ced08407-4058-4d20-8a33-c5238a517bd1)
)
(fp_line (start 1 -1.91) (end 1.8 -1.91) (layer "F.SilkS") (width 0.2) (tstamp 02a16f8f-373d-4648-85db-8a4cdf5b1ca1))
(fp_line (start -1.8 -1.91) (end -1 -1.91) (layer "F.SilkS") (width 0.2) (tstamp 0b82086a-0a1b-4d3c-b16e-b2b40860077a))
(fp_line (start -1.8 1.9) (end -1 1.9) (layer "F.SilkS") (width 0.2) (tstamp 31cd1bea-1278-4d23-9491-35c706b469df))
(fp_line (start 1 1.9) (end 1.8 1.9) (layer "F.SilkS") (width 0.2) (tstamp 9735c58c-d1ea-46be-ac08-8364d3ed321d))
(fp_line (start -3.75 2.15) (end -3.75 -2.55) (layer "F.CrtYd") (width 0.05) (tstamp 182246a4-eb84-4ed7-bed2-5a413c9c5ee6))
(fp_line (start 3.75 -2.55) (end 3.75 2.15) (layer "F.CrtYd") (width 0.05) (tstamp 1fb852d8-d90b-4701-958b-93ea657eeb95))
(fp_line (start -3.415 11.67) (end -3.415 2.15) (layer "F.CrtYd") (width 0.05) (tstamp 2c2101a2-ffb7-4a14-ba92-8136d4c5431a))
(fp_line (start -3.75 -2.55) (end 3.75 -2.55) (layer "F.CrtYd") (width 0.05) (tstamp 4ba3db21-0e47-4246-b45a-70aa4de48d37))
(fp_line (start 3.415 11.67) (end -3.415 11.67) (layer "F.CrtYd") (width 0.05) (tstamp 6c38ebc6-494d-4e6f-9fee-f516a788db8b))
(fp_line (start -3.415 2.15) (end -3.75 2.15) (layer "F.CrtYd") (width 0.05) (tstamp a1997182-3883-402f-bc07-8815353b8ac7))
(fp_line (start 3.415 2.15) (end 3.415 11.67) (layer "F.CrtYd") (width 0.05) (tstamp b4877a8b-cc7a-473d-80cd-6de9f4b52645))
(fp_line (start 3.75 2.15) (end 3.415 2.15) (layer "F.CrtYd") (width 0.05) (tstamp d9f42642-4184-498e-a8cd-1490f1600bae))
(fp_line (start -3.165 1.9) (end 3.165 1.9) (layer "F.Fab") (width 0.1) (tstamp 35888c3e-0c48-47b1-8c82-6518b3312f09))
(fp_line (start 3.165 1.9) (end 5 1.9) (layer "F.Fab") (width 0.1) (tstamp 421b7419-6e53-4be2-af5d-58d566cc2f10))
(fp_line (start 3.165 1.9) (end 3.165 11.42) (layer "F.Fab") (width 0.1) (tstamp 443f9b56-13ec-4784-85d9-149f5b484bfe))
(fp_line (start -3.165 11.42) (end -3.165 1.9) (layer "F.Fab") (width 0.1) (tstamp 573be681-f336-4eb9-8f2c-06d9eaf03bd4))
(fp_line (start -3.175 -1.91) (end 3.175 -1.91) (layer "F.Fab") (width 0.1) (tstamp 5bad86f5-aad0-4191-81d9-a2a940258a62))
(fp_line (start -5 1.9) (end -3.165 1.9) (layer "F.Fab") (width 0.1) (tstamp 5e8333f5-cd87-41d6-9b64-b589a3bc7584))
(fp_line (start 3.165 11.42) (end -3.165 11.42) (layer "F.Fab") (width 0.1) (tstamp b8be08e1-b2a6-47c9-a527-549f2b1b0553))
(fp_line (start -3.165 1.9) (end -3.175 -1.91) (layer "F.Fab") (width 0.1) (tstamp bff04dcd-e136-4b88-86c8-64496c3c57e1))
(fp_line (start 3.175 -1.91) (end 3.165 1.9) (layer "F.Fab") (width 0.1) (tstamp eb18101f-dc2b-4fad-8010-a786d8862916))
(fp_circle (center 0.03 -2.3) (end 0.13 -2.3) (layer "F.Fab") (width 0.2) (fill none) (tstamp 9fe54d56-5b3d-4f3e-adc2-1af0d00dc006))
(pad "1" smd rect (at 0 0 90) (size 1.27 3.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C1-Pad1)") (pintype "passive") (tstamp 7229a65a-8421-472b-8a50-dff85dfdd705))
(pad "2" smd rect (at -2.825 -0.2 90) (size 1.35 4.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pintype "passive") (tstamp 4aa26922-9878-4022-a5cb-02e9a9e9133b))
(pad "2" smd rect (at -2.825 -0.2 90) (size 1.35 4.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pintype "passive") (tstamp 56dc10cd-f343-4570-843c-3139c9e4dedc))
(pad "2" smd rect (at 2.825 -0.2 90) (size 1.35 4.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pintype "passive") (tstamp 59c57e52-80c4-4823-acc8-0e82e2c29b7b))
(pad "2" smd rect (at 2.825 -0.2 90) (size 1.35 4.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pintype "passive") (tstamp 779c34ea-cf9c-4632-81f3-7597c828f101))
(model "C:/Users/chris/Documents/Source/GitHub/picise/library/Connector_SMA_Samtec/Connector_SMA_Samtec.3dshapes/SMA-J-P-H-ST-EM1.step"
(offset (xyz 0 -3.7 0.35))
(scale (xyz 1 1 1))
(rotate (xyz 0 -90 -180))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5e3ab7f2-6960-4634-a6f2-34409847a50f)
(at 75.67 48.41 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "JLCPCB" "C4184")
(property "MPN" "0603WAF2002T5E")
(property "Manufacturer" "uniroyal")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/04e0b9d0-02e7-4f25-b880-0c9e6315d82c")
(attr smd)
(fp_text reference "R3" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d02ca60-300f-4a0f-9d64-1737b8c73df6)
)
(fp_text value "20k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp cb434834-ed6d-45e8-9757-7382c6a69209)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3dc111d6-c636-4cc7-83b1-707408931f5c)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 29e98108-2452-4ba4-8321-dcdf53cda5d0))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp a147686d-d8dc-4906-a5cc-d87364b23282))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 23b45af1-57f3-412f-8e7d-d99acaca5247))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 35be9f3f-0672-4384-a40d-030ab6b5b1f5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7f112002-343b-4e3e-bad8-9d65ded93c4b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dded35e5-ad0a-4782-8993-b9081aa14875))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c131588a-7ae4-4f22-8ab8-29ac9217a46b))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp dd3e3552-426c-456b-95b2-bed1983778eb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e5dfb8a4-64aa-4ba6-81d5-c2d456af2288))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f92153dc-a528-4274-b25e-0bd623ae11b8))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 4f7ef244-70e9-41b2-8d10-b16fe01ad9fb))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "Net-(R3-Pad2)") (pintype "passive") (tstamp 959d0a51-1b1d-4ad3-a75f-875cf5e03fc3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 69c095b8-e95b-41a2-94c6-3433c4fbe1d6)
(at 96.72 51.86 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "JLCPCB" "C23220")
(property "MPN" "0603WAF6200T5E")
(property "Manufacturer" "uniroyal")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/ddeb0def-52eb-4157-a7e9-b9b6a8af707c")
(attr smd)
(fp_text reference "R10" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a53a457d-dc23-408a-bc4c-814d2c1f24bd)
)
(fp_text value "620R" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.075)))
(tstamp af386ae6-70f1-416f-b1c6-04c49819f3b9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 09ea0f26-5722-4483-91e4-cf49e22a16e7)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 63c8c253-98de-451c-a729-11234d3f9260))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp f12d5139-15cb-4c5b-9c21-e9d759fd4291))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 11e398fa-bf68-46a0-aa19-8d4ea6352540))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4155d9d9-5711-4010-bc67-925af702d75d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4956c9b0-56a0-4592-a49e-8264a95cdcb1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d67bbabd-29bc-487e-8459-318f6e97754b))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6815bb4a-eef8-43f2-9dc5-c200dcdd7640))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7213c5ad-077b-4e43-afaf-8ea82a8abb83))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d9520290-b72f-448d-b081-02b297e52e11))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp de6959bc-0ec8-4ac5-a154-f339b9b74f93))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D25-Pad1)") (pintype "passive") (tstamp 8ded9ffe-486f-4070-8cb0-7beadc7c690e))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/GNSS_VBCKP") (pintype "passive") (tstamp 8e53fa94-c113-4081-8472-39ecb7f2ed80))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 69e08b4d-6230-4aaa-8aa7-1077fec7c639)
(at 72.57 51.21)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "JLCPCB" "C23018")
(property "MPN" "0603WAF3901T5E")
(property "Manufacturer" "uniroyal")
(property "Sheetfile" "picise.kicad_sch")
(property "Sheetname" "")
(path "/23a975f6-1804-488b-95df-72344a03f45b")
(attr smd)
(fp_text reference "R6" (at 0 -1.43) (layer "F.SilkS") hide