-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathW25Q-BRD.kicad_pcb
2139 lines (2121 loc) · 98.2 KB
/
W25Q-BRD.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 "A4")
(title_block
(title "W25Q-BRD-0012")
(date "2022-12-27")
(rev "1.2")
(company "(c) Andriy Golovnya")
(comment 1 "Breakout board for W25Q QSPI flash chips family")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(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") (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") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_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 false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "cam")
)
)
(net 0 "")
(net 1 "Net-(D1-Pad1)")
(net 2 "+3.3V")
(net 3 "Net-(D2-Pad1)")
(net 4 "GND")
(net 5 "/CLK")
(net 6 "/IO0")
(net 7 "/IO1")
(net 8 "/IO2")
(net 9 "/IO3")
(net 10 "/NCS")
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 19d32ed9-b165-4d4c-9989-12356680e226)
(at 142 112)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/4dc3f975-042f-449f-8441-217b151d7f70")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84ab76c7-ae03-485a-9946-c5c4f49171d0)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b547671-deb4-4eac-b82b-5d33b56f6c15)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a01e181f-ca12-4909-ae10-39809b331ff4)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp d95347d7-afb2-4ae1-9dcc-7ad68d72f56e))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d9ef046e-c8d5-4f7d-93f8-fe540fb07c1f))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 227a016b-5406-4c78-870e-1f628d54cc95))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 5534ed47-7d90-4722-8d60-ff83ea8d616a))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 97b6d319-d11f-47f9-8dc9-90d3529c3d58))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp cdf0ad78-00f6-48ad-9a12-688b40264f98))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp cfa1546c-3d24-4c8f-91c8-627551fa9a83))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp d447cd42-a7fc-4e0e-9edb-8cc4c6263f1a))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp e7011068-c5d4-4337-8968-483e5052fb21))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp e96138af-08a7-4eb1-bb29-4c7f4aa796a4))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp e96675da-d0e2-4807-b454-8a3f1dd7f560))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3582dfa6-4f91-49cf-af88-23a18483a847)
(at 144.5 106)
(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" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/3caf342a-51a7-4c58-87a3-39d195578ad2")
(attr smd)
(fp_text reference "C2" (at -0.14058 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d63e18b-1ef7-4a99-b3b2-fc5fbb60d3e7)
)
(fp_text value "1uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f92f773d-9e82-4dd4-b0bd-0c61bc6849d7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6eb107b3-488d-4809-8fe4-b3113cd1dc30)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 6ff4dd09-fa7a-4b5a-baac-e26b17a88bc2))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 8e71350f-7167-4959-bad5-5fed5a82ad76))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 03a48660-e0c9-4992-ae5d-bfbf5d3236a3))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3733d369-54e9-4124-a7a1-bdd53cd2a54f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 79d96a78-fa3f-4c94-b815-73c84defe1d2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c7997a0f-2371-4d4a-a2a3-a1556e32415d))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 02ec411d-9780-4f44-9657-a658c784435c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 0f91e141-6d31-49f5-8976-8fd748b6b79a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7e5f6084-9c2e-408d-9aee-915639ba004f))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a9f954be-f5f7-4169-8d4e-2824e98ebafc))
(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 2 "+3.3V") (pintype "passive") (tstamp ec699b05-c216-4ca1-9102-a04651a7cee0))
(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 "GND") (pintype "passive") (tstamp 98d232d8-5d50-4deb-a9cd-cd1ee89dc185))
(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_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 42f410fb-f122-491b-956a-85a1e90c3f1e)
(at 137.5 106 180)
(descr "Resistor SMD 0402 (1005 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 "Sheetfile" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/87f85111-1ab8-479b-aeb9-788335afced9")
(attr smd)
(fp_text reference "R1" (at 0.01 -1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b27d1ece-77c3-4b3c-9018-eccba0badce4)
)
(fp_text value "5k1" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1badd743-609e-4523-bf33-cfe7e3031158)
)
(fp_text user "${REFERENCE}" (at 0.51 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 28c53ec8-711c-4ddb-8b1c-ff1cc5857131)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 46ee11fc-5c6f-4aa1-8c1c-d9cb38fa1ff5))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp ce726d1e-f47d-4e4e-9453-894c6768493f))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 25573138-b741-4a0d-94f5-333fd5c40796))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 64b269a7-cdd0-4277-9a40-72b7da33eae9))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 84b20432-3ffd-4e3e-b588-6323319063a0))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 9230ea01-8472-4c5e-9866-200cfc4134c2))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 04e65e4a-64dc-47ad-82e8-65314b41e0eb))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 6060c262-1122-4d11-963f-057dec67d3db))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp adae9def-982b-40dc-bde4-ecb23ab20e54))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp e1082ae2-1cde-4b4c-b690-c252adc494c9))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(D1-Pad1)") (pintype "passive") (tstamp 5c82196f-847a-4698-b49b-a677afde222b))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pintype "passive") (tstamp 627e93cf-4f1c-4b49-97bf-465cfa023dc1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4b3bb580-c919-4fa2-8203-4ca0fd0173e3)
(at 137.5 96 180)
(descr "Resistor SMD 0402 (1005 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 "Sheetfile" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/20f7ae58-9329-4504-b7e5-3af9cc805bc4")
(attr smd)
(fp_text reference "R2" (at 0 -1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40e3a737-e9da-40cf-a44a-6cfe7c40e5c9)
)
(fp_text value "10k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 895e1dde-b649-4bcd-9498-6c7594fb76d9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 341c431a-d1b2-48ad-af04-d38892342e88)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 3eafb9c1-89fd-4911-89de-28872ba3a970))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 95ce072a-08d2-4165-b34e-7b0578ea108c))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 397cd440-b346-40a0-95d5-26a8f4c4e6ed))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 751f897a-9987-4529-ae9c-107338541fae))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 76e0943c-2eda-446a-a2a7-f5736eced012))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp edf60e34-d401-4929-8855-2b926f2365b7))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 4d71dad6-c6e2-4191-8fad-69b82e14b1ce))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp a4c66d3c-434f-439f-8e59-c6f17413b042))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp ebfab171-8d3b-4b78-ad49-b5812c500e3d))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp f1700502-27e6-4170-ac46-b6f13d943042))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(D2-Pad1)") (pintype "passive") (tstamp 671b7787-4a90-47b8-b984-19f73f64f48f))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/NCS") (pintype "passive") (tstamp f4c7b8fb-9a15-4fbc-8383-563dc19bd8f2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 56cdb78f-05aa-4c27-8e1c-381a9195a5d9)
(at 144.5 96)
(descr "Capacitor SMD 0402 (1005 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" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/6b170730-4fc0-49d2-9bc2-738d078e761c")
(attr smd)
(fp_text reference "C1" (at 0 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba43ec5d-3f90-4496-8806-5535e09ca5da)
)
(fp_text value "100nF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c58aa29-3e08-4fed-842f-8778ea374991)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp bc949c7b-5c85-44d0-8325-822aa84f3147)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 2ff19c14-211c-4cd9-98c2-533ac123ac6a))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp a9dcbffa-1cbd-4543-98b3-e5f5d727b01a))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 026153c0-002a-4e8b-ba6b-af68f10b95c5))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 05a19b81-786a-4d5e-83cd-3ab9bb6cb8a1))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 43e82571-cf3a-4613-8a9d-9e1cd0979cb8))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 5531281d-481f-4521-85e2-73af46344424))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1350c842-0db5-4ebe-b769-c80bbd355372))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 17a6da54-6c35-438b-88d7-6ec079c2140d))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a3ec2ca9-d025-4717-a600-dce726aeca9f))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp fd07b91e-dd9e-4c11-aea2-189a62fc2c7e))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3.3V") (pintype "passive") (tstamp 5607e599-a93e-438b-9ac8-8843056bf58f))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pintype "passive") (tstamp d28e29b3-6d66-40cd-ae76-d8725a3bc87d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" (layer "F.Cu")
(tedit 5D9F72B1) (tstamp 9474a244-6647-4705-af9a-4d4044be0e51)
(at 141 101)
(descr "SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/8475b84f-6621-4cfa-9b0c-a50cc0dfe344")
(attr smd)
(fp_text reference "U1" (at -3.5 3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39bd4100-cd13-422e-bf9d-978240bd1f49)
)
(fp_text value "W25Q128JVSIQ" (at 0 3.56) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13827b2b-8c64-49da-a9c6-f401a480d268)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc1c20b3-cc1d-4c0f-9822-106e3f5217f2)
)
(fp_line (start 0 -2.725) (end -2.725 -2.725) (layer "F.SilkS") (width 0.12) (tstamp 02c3d19e-0cc3-4c76-a473-af6b60c1ab95))
(fp_line (start 0 2.725) (end 2.725 2.725) (layer "F.SilkS") (width 0.12) (tstamp 3c7dc770-cb39-44b2-bd6e-52c68d8b9059))
(fp_line (start 0 -2.725) (end 2.725 -2.725) (layer "F.SilkS") (width 0.12) (tstamp 4bfc0c1a-2165-47b5-844f-4230213e90d7))
(fp_line (start 0 2.725) (end -2.725 2.725) (layer "F.SilkS") (width 0.12) (tstamp 7e74696d-27b4-445a-8788-d96d7157a70d))
(fp_line (start -2.725 -2.725) (end -2.725 -2.465) (layer "F.SilkS") (width 0.12) (tstamp ba4905c9-e462-4180-9007-51b152fbc613))
(fp_line (start -2.725 -2.465) (end -4.4 -2.465) (layer "F.SilkS") (width 0.12) (tstamp c1c94b89-e615-45f4-848d-8bb108173839))
(fp_line (start -2.725 2.725) (end -2.725 2.465) (layer "F.SilkS") (width 0.12) (tstamp c958f128-4895-45b6-92b9-1637a4f828fd))
(fp_line (start 2.725 -2.725) (end 2.725 -2.465) (layer "F.SilkS") (width 0.12) (tstamp dcbbc69e-a605-4398-ab0b-ca6c535d4e62))
(fp_line (start 2.725 2.725) (end 2.725 2.465) (layer "F.SilkS") (width 0.12) (tstamp de778c67-49ff-4eb4-8ab2-ca728e80382e))
(fp_line (start -4.65 -2.86) (end -4.65 2.86) (layer "F.CrtYd") (width 0.05) (tstamp 6bf48912-a963-4beb-b142-7b3879229059))
(fp_line (start 4.65 -2.86) (end -4.65 -2.86) (layer "F.CrtYd") (width 0.05) (tstamp 8595530f-c39f-4c36-a606-282d74fc6f6a))
(fp_line (start -4.65 2.86) (end 4.65 2.86) (layer "F.CrtYd") (width 0.05) (tstamp 8d3c95ee-e40b-40d4-bdcc-017da42ef4fa))
(fp_line (start 4.65 2.86) (end 4.65 -2.86) (layer "F.CrtYd") (width 0.05) (tstamp fd6e8c5c-ef36-4a08-9c26-c117907a168d))
(fp_line (start -1.615 -2.615) (end 2.615 -2.615) (layer "F.Fab") (width 0.1) (tstamp 42e6d017-4436-47dd-b93a-352d9f2a633c))
(fp_line (start 2.615 -2.615) (end 2.615 2.615) (layer "F.Fab") (width 0.1) (tstamp 533d9610-78b6-4305-8f3e-470ac6626930))
(fp_line (start -2.615 2.615) (end -2.615 -1.615) (layer "F.Fab") (width 0.1) (tstamp 87632d6b-0505-4929-9fc9-48b7e86902ad))
(fp_line (start 2.615 2.615) (end -2.615 2.615) (layer "F.Fab") (width 0.1) (tstamp f4455945-d018-4915-a127-16f9a54ace3d))
(fp_line (start -2.615 -1.615) (end -1.615 -2.615) (layer "F.Fab") (width 0.1) (tstamp fcc73719-0df0-47ac-b52a-37d22f960ab4))
(pad "1" smd roundrect (at -3.6 -1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/NCS") (pinfunction "~{CS}") (pintype "input") (tstamp a1d1d335-45ff-4c1e-93a0-e1458f794f8e))
(pad "2" smd roundrect (at -3.6 -0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/IO1") (pinfunction "DO(IO1)") (pintype "bidirectional") (tstamp 576ae779-052e-446d-b90b-d63e8e6a4b53))
(pad "3" smd roundrect (at -3.6 0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/IO2") (pinfunction "IO2") (pintype "bidirectional") (tstamp 63e740c9-118c-4e83-a8b3-d43377a9f3e1))
(pad "4" smd roundrect (at -3.6 1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 050113d7-7eb0-491e-8041-f30ccf79e9ce))
(pad "5" smd roundrect (at 3.6 1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/IO0") (pinfunction "DI(IO0)") (pintype "bidirectional") (tstamp 009fbba3-20d9-4069-b5ee-ad9f021c010c))
(pad "6" smd roundrect (at 3.6 0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/CLK") (pinfunction "CLK") (pintype "input") (tstamp 7f562fe6-76ff-44de-82bc-861da5948d5a))
(pad "7" smd roundrect (at 3.6 -0.635) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/IO3") (pinfunction "IO3") (pintype "bidirectional") (tstamp 4f991a4d-c714-473e-a823-11186737106b))
(pad "8" smd roundrect (at 3.6 -1.905) (size 1.6 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3.3V") (pinfunction "VCC") (pintype "power_in") (tstamp ed2745a5-78cd-4f1c-aa94-043b5837fa91))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_5.275x5.275mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp bb2f6fe6-f768-4c95-bf38-c4bfc3bec4b8)
(at 141 106)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/cf94d159-9ae5-4734-82d1-3b8e923a36d4")
(attr smd)
(fp_text reference "D1" (at 0 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8075123-c183-4bfb-a320-cdcb45a3f687)
)
(fp_text value "GREEN" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae6e8548-e278-452b-96b7-89fa2d34bb2f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b76a80f6-7b00-4d6a-9460-c71be4e90f98)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 092b9feb-2f21-4d57-b09a-e13fa407d5e5))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 1a5c7110-e46f-485a-9013-6a6d117ae274))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp e45d96cc-6a2f-4cb7-9788-06eea4c92fe4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 12809c11-04d4-482e-9544-470f3f276f26))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4682fa30-bb1c-4134-ad20-4512f913e817))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5222ba88-21cd-4bd9-a4e5-e3e5704a6208))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cca3b14e-9d13-461a-bc2e-a80497ff63cb))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1fdb1e38-b913-4b7c-99e9-2fac958e093b))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4d31b19c-1487-4f24-9c24-aa5e0f5f894e))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5d766515-69bb-4655-9839-510094b610ba))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 86e8acee-37df-45a5-b414-5d1002a8edaa))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 9842e496-24dd-45d7-8375-37b41b4d0afc))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 212aa4ca-8a55-4f60-a6fa-b48869e91d15))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3.3V") (pinfunction "A") (pintype "passive") (tstamp 417811aa-94f9-4784-bed5-a1fe114e0144))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SON:WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm" (layer "F.Cu")
(tedit 5DC5FB10) (tstamp dc22e6be-5dd5-49b9-b3bf-bb920cbf8389)
(at 141 101)
(descr "WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "WSON NoLead")
(property "Sheetfile" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/efff6f51-96f7-42cc-9d7c-85b159b11f9a")
(attr smd)
(fp_text reference "U2" (at 3.5 3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cd45481-5d38-475d-89ff-6e7dffcf4c53)
)
(fp_text value "W25Q128JVPIQ" (at 0 3.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 212c1f8d-f883-4bdf-994d-23ddcae3f1ae)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93828aa8-2ab5-4438-a8f5-5d4f5d11c915)
)
(fp_line (start 0 -2.61) (end 3 -2.61) (layer "F.SilkS") (width 0.12) (tstamp 5b616a8a-1859-4b5c-87f6-d2dab4593520))
(fp_line (start -3 2.61) (end 3 2.61) (layer "F.SilkS") (width 0.12) (tstamp 941323b2-ef0b-49c9-a73f-8b1a7a869c65))
(fp_line (start -3.32 2.75) (end 3.32 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 26af48de-bce2-45f4-b48a-89776ccf6be9))
(fp_line (start -3.32 -2.75) (end -3.32 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 585ffe9f-2b04-4ccb-85fe-c2bfc9dcddd8))
(fp_line (start 3.32 -2.75) (end -3.32 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp d90031e3-5a22-400d-a057-0d90bcc532f5))
(fp_line (start 3.32 2.75) (end 3.32 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp faad60a6-2919-4a14-9a10-c394bba44c39))
(fp_line (start -3 -1.5) (end -2 -2.5) (layer "F.Fab") (width 0.1) (tstamp 345e0d86-9dee-460e-9a2b-e9317934cf58))
(fp_line (start 3 2.5) (end -3 2.5) (layer "F.Fab") (width 0.1) (tstamp 433019fd-849a-4e33-aa58-ba8a2f0b843d))
(fp_line (start -2 -2.5) (end 3 -2.5) (layer "F.Fab") (width 0.1) (tstamp 8047cbfa-1135-433c-a0a3-882cf1d57a60))
(fp_line (start -3 2.5) (end -3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 8a3a9090-00b9-4832-8697-7b9bef560c8f))
(fp_line (start 3 -2.5) (end 3 2.5) (layer "F.Fab") (width 0.1) (tstamp c14db7a3-20b9-41db-8d23-65978f336473))
(pad "" smd roundrect (at -0.85 1.075) (size 1.37 1.73) (layers "F.Paste") (roundrect_rratio 0.182482) (tstamp 8d0eb7d9-fb49-4a05-9df6-48c0a7b3131a))
(pad "" smd roundrect (at 0.85 -1.075) (size 1.37 1.73) (layers "F.Paste") (roundrect_rratio 0.182482) (tstamp c87accd7-a309-4a23-b78d-4cb77cd246cb))
(pad "" smd roundrect (at 0.85 1.075) (size 1.37 1.73) (layers "F.Paste") (roundrect_rratio 0.182482) (tstamp d095352a-cd17-4a3f-aa27-9fafe80179fd))
(pad "" smd roundrect (at -0.85 -1.075) (size 1.37 1.73) (layers "F.Paste") (roundrect_rratio 0.182482) (tstamp d16eddca-bbb8-4576-8a52-172c9bcc2785))
(pad "1" smd roundrect (at -2.7 -1.905) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/NCS") (pinfunction "~{CS}") (pintype "input") (tstamp 269c68f9-f0a1-4e9c-83ed-a91ebe34933d))
(pad "2" smd roundrect (at -2.7 -0.635) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/IO1") (pinfunction "DO(IO1)") (pintype "bidirectional") (tstamp 5f32d117-9fe4-4750-ba8b-2f9967c2c823))
(pad "3" smd roundrect (at -2.7 0.635) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/IO2") (pinfunction "IO2") (pintype "bidirectional") (tstamp c0ea02de-f87b-49d4-a456-9146b4079176))
(pad "4" smd roundrect (at -2.7 1.905) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 677caad2-98bb-409c-a989-f839575f9352))
(pad "5" smd roundrect (at 2.7 1.905) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/IO0") (pinfunction "DI(IO0)") (pintype "bidirectional") (tstamp 1f41ddff-9a07-4c35-8434-927902cea86e))
(pad "6" smd roundrect (at 2.7 0.635) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/CLK") (pinfunction "CLK") (pintype "input") (tstamp bcb88d5b-0a41-4c0e-8a86-fd8fff6a0bbd))
(pad "7" smd roundrect (at 2.7 -0.635) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/IO3") (pinfunction "IO3") (pintype "bidirectional") (tstamp 2a2e919c-ac6a-45b3-891a-0890c6160d26))
(pad "8" smd roundrect (at 2.7 -1.905) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3.3V") (pinfunction "VCC") (pintype "power_in") (tstamp f955ac6b-8f55-481f-a295-afa7510e7301))
(pad "9" smd rect (at 0 0) (size 3.4 4.3) (layers "F.Cu" "F.Mask")
(net 4 "GND") (pinfunction "EP") (pintype "passive") (tstamp 704f2f0e-9441-4733-b7d7-f276ec010fa9))
(model "${KICAD6_3DMODEL_DIR}/Package_SON.3dshapes/WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp df6a20db-de09-47e1-b45a-958eb7d82aaf)
(at 133 96.547158)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(property "Sheetfile" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/58fee709-4df0-43bf-9297-71c55e494d7d")
(attr through_hole)
(fp_text reference "J1" (at 2.32 -0.547158) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9920411a-7abe-417c-aeb2-16393103e9f7)
)
(fp_text value "QSPI" (at 0 20.11) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 915d2399-cda0-4d41-a05a-5da1102e1b96)
)
(fp_text user "${REFERENCE}" (at 0 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3d03d33-2407-443c-9d00-cc25299d7b25)
)
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 046d2da3-5244-4839-a571-9f3ab7bd8876))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2a26c30a-5fb3-4aa2-a961-e9ed2204dea6))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 5c204612-a2a2-4e0c-9f08-3640146a4ba6))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 75f83fd8-6596-482c-a801-76804eaed03b))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp d9135cb2-283d-4c45-a16c-bf04161850ac))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp ff90b67e-7dd2-4b6f-9331-fd2715cc6f1e))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 32c95dc6-cdc1-4076-8a3e-b36db8aaf94b))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 50576578-cd87-4ee5-9475-909d4b6722d1))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 8017543e-9730-4654-8e02-4009f8c59d73))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e9b26c13-3b94-4eea-892b-666e67418b5a))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 8ac5565b-6301-482b-9e75-a44397524e44))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp ae1738cc-6a0b-449c-923e-de268bfd7c2a))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp af7c7f52-7355-4ebe-8944-9cb27c645ed0))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp bfad5e87-ded0-47d9-8a5a-e60cb6e24615))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ca5ea497-2e4c-4001-a69b-03d76231bf92))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "+3.3V") (pinfunction "Pin_1") (pintype "passive") (tstamp 15b828c5-e913-4464-be0a-a5725e6011db))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/NCS") (pinfunction "Pin_2") (pintype "passive") (tstamp ec23b41f-9b6b-4de8-a68a-743a1922917b))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/IO0") (pinfunction "Pin_3") (pintype "passive") (tstamp dcd40b68-3c43-4185-a1f8-ea2f24d74335))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/IO1") (pinfunction "Pin_4") (pintype "passive") (tstamp e591cd3a-7118-4951-aa9b-e0ab54cd6aab))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/IO2") (pinfunction "Pin_5") (pintype "passive") (tstamp 66b67fdc-12a1-4eed-a577-2ec3a8c76107))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/IO3") (pinfunction "Pin_6") (pintype "passive") (tstamp 02433641-442f-4343-912f-e1c47babda89))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/CLK") (pinfunction "Pin_7") (pintype "passive") (tstamp 200e3074-fc64-42c3-a5b8-d6e221ceeec3))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp a9b56b7a-9046-478f-9d76-195dadd1a655))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp e5023e95-5cd0-4e94-b942-d3cf4daa0703)
(at 141 96)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "W25Q-BRD.kicad_sch")
(property "Sheetname" "")
(path "/0b55fb93-356e-4aa9-92ba-38fe404012a3")
(attr smd)
(fp_text reference "D2" (at 0 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23543865-e572-4faa-a883-2dc09046aa88)
)
(fp_text value "RED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e2be641-3d61-4cb9-8ade-4c936b3ca12e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c0e9f712-f6fb-4ef9-933e-b1b96aec4b6a)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 4b5194e3-a4b8-4fb2-a2f8-bc1ca6f29c33))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 99b1e86b-aace-48a7-ac97-91e7ad44163f))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp b5e81168-ce32-4c6c-bdf5-de6b58d5b0c6))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5157bacc-d36c-4f87-ad38-8163b976203b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 59743272-ba6f-452e-8d37-c3f3b680514a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d667240a-c2d4-43ee-adb3-5b06562c49c7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp db5ee15d-5ef6-407e-81ac-2d4ea202ea22))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5b85bed9-541a-435a-8d25-ae00df1fddba))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 805a25d5-ed60-4881-82d6-5f55d56d7bd2))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 962b45fb-4ff1-411d-b909-cacf0cd7d643))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a8a37537-5109-4ff0-998b-75079304ef1c))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b0700873-6370-4360-b07f-e64f598bf995))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 935074e0-e5ed-4d60-bb00-e2737b251b86))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3.3V") (pinfunction "A") (pintype "passive") (tstamp 31129ef1-c8ae-46ff-ab82-b356707db628))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_circle (center 136 98.5) (end 136.1 98.5) (layer "F.SilkS") (width 0.15) (fill none) (tstamp dbcc2c53-7809-4d71-a764-da7bc345c172))
(gr_line (start 131 117) (end 131 94) (layer "Edge.Cuts") (width 0.15) (tstamp 25b9fc36-93a4-48d4-aa07-3386e04793d4))
(gr_line (start 142 117) (end 131 117) (layer "Edge.Cuts") (width 0.15) (tstamp 9441a447-10fb-47ce-ba2a-00a9f7d7c64b))
(gr_line (start 147 94) (end 147 112) (layer "Edge.Cuts") (width 0.15) (tstamp 9564945b-6272-4860-a6e6-484abfc7c614))
(gr_arc (start 147 112) (mid 145.535534 115.535534) (end 142 117) (layer "Edge.Cuts") (width 0.15) (tstamp ac34e5de-630b-453f-9d60-e444bcd71801))
(gr_line (start 147 94) (end 131 94) (layer "Edge.Cuts") (width 0.15) (tstamp b796c104-2b03-439b-9a65-464f7378f1ca))
(gr_text "IO2" (at 136 106.707158) (layer "B.SilkS") (tstamp 2991b7c6-7b2e-41fc-a446-b1dd2bc4650f)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "IO0" (at 136 101.627158) (layer "B.SilkS") (tstamp 64825226-1d7e-4ba5-b83c-97ce338856c6)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "NCS" (at 136 99.087158) (layer "B.SilkS") (tstamp 74841350-b24a-4304-96d4-71eb7e75c60a)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "IO3" (at 136 109.247158) (layer "B.SilkS") (tstamp 7515bf34-dbd0-4a47-8c0b-bd933565a382)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "GND" (at 136 114.327158) (layer "B.SilkS") (tstamp 9af62eff-154d-4727-ab52-8417f9501d97)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "${TITLE}\n${COMPANY}" (at 144.5 102 90) (layer "B.SilkS") (tstamp ac894c70-9077-43e8-90c2-724e56dc47c4)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "IO1" (at 136 104.167158) (layer "B.SilkS") (tstamp c89bb4a3-4238-4725-819b-96e3f2b07f97)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "3V3" (at 136 96.547158) (layer "B.SilkS") (tstamp d0cb7a5e-9016-416e-acc4-6cb5ec4fe3ee)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "CLK" (at 136 111.787158) (layer "B.SilkS") (tstamp e30b6fb4-26b0-4ff9-95d8-3089ff8afbd1)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "+" (at 142.484512 96.66702) (layer "F.SilkS") (tstamp 39dbf314-6c71-4662-ba41-4a69a668d3fd)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "+" (at 142.492256 106.670361) (layer "F.SilkS") (tstamp 63ccdc29-cf96-48e1-a0f3-18244b9ee699)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "PWR" (at 141 104.5) (layer "F.SilkS") (tstamp 93c8eb35-a08e-4c21-a9e2-665fe4754fb8)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "ACT" (at 141 94.5) (layer "F.SilkS") (tstamp a80cedbd-7558-4d8f-9a55-1031f73d6364)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 138.01 106) (end 140.2125 106) (width 0.5) (layer "F.Cu") (net 1) (tstamp d51bac1c-852d-4c6c-b4bb-e316eb85eafb))
(segment (start 144.02 98.515) (end 144.6 99.095) (width 0.75) (layer "F.Cu") (net 2) (tstamp 0457b6b7-19b6-4435-ac7b-fe3ee4ef6b5c))
(segment (start 141.7875 95.7875) (end 141.7875 96) (width 0.75) (layer "F.Cu") (net 2) (tstamp 07da62a8-18cc-4b59-a819-79f883bda281))
(segment (start 134.673748 94.87341) (end 140.87341 94.87341) (width 0.75) (layer "F.Cu") (net 2) (tstamp 0fb4dea3-9c50-4cf4-a7fc-3b650353fcef))
(segment (start 144.02 96) (end 141.7875 96) (width 0.75) (layer "F.Cu") (net 2) (tstamp 0fdafd8c-b368-4473-a0f7-71e9b7816a32))
(segment (start 143.725 105.775) (end 146.101191 103.398809) (width 0.75) (layer "F.Cu") (net 2) (tstamp 233b000d-0213-4b77-8770-fd569c26113c))
(segment (start 141.7875 106) (end 143.725 106) (width 0.75) (layer "F.Cu") (net 2) (tstamp 42504d5c-e4af-4e40-95ea-ad7dce2aefbd))
(segment (start 146.101191 99.751191) (end 145.445 99.095) (width 0.75) (layer "F.Cu") (net 2) (tstamp 4c14db50-166b-4d58-b803-b907b5fadeed))
(segment (start 146.101191 103.398809) (end 146.101191 99.751191) (width 0.75) (layer "F.Cu") (net 2) (tstamp 848c8ee8-42a9-4a3c-85e2-8c96417e5228))
(segment (start 143.7 99.095) (end 144.6 99.095) (width 0.5) (layer "F.Cu") (net 2) (tstamp 9b441039-afd8-428d-9878-e728396480b6))
(segment (start 144.02 96) (end 144.02 98.515) (width 0.75) (layer "F.Cu") (net 2) (tstamp a5d80595-0e2f-40b9-bfa9-6e54cf0cfa7f))
(segment (start 143.725 106) (end 143.725 105.775) (width 0.75) (layer "F.Cu") (net 2) (tstamp acfec741-0df4-44b5-81e4-a9ff9287945c))
(segment (start 133 96.547158) (end 134.673748 94.87341) (width 0.75) (layer "F.Cu") (net 2) (tstamp bca06ed2-5f4b-4534-8f1d-d7a36beeb111))
(segment (start 140.87341 94.87341) (end 141.7875 95.7875) (width 0.75) (layer "F.Cu") (net 2) (tstamp bce53445-0e5b-40b8-b7dd-2fa1de7a57de))
(segment (start 145.445 99.095) (end 144.6 99.095) (width 0.75) (layer "F.Cu") (net 2) (tstamp c896013c-28af-4429-be53-029fc58568bc))
(segment (start 138.01 96) (end 140.2125 96) (width 0.5) (layer "F.Cu") (net 3) (tstamp 666ac2e0-e22a-4ddf-bcf3-bfdab0258a7d))
(segment (start 138.3 102.905) (end 137.4 102.905) (width 0.5) (layer "F.Cu") (net 4) (tstamp ba6c4ee4-0eed-4064-a768-5a973cf5bd7b))
(via (at 143.732268 104.006638) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 021c3954-ded4-42f2-8818-d2fcd46acd40))
(via (at 142.782814 97.233277) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 1924e8ef-a84b-4df5-a718-f5b5c6571afc))
(via (at 132 95) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 2123c8e5-f9ff-46a6-9f8f-ced08e0e323f))
(via (at 138.752376 102.538998) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 22bf6cbc-0354-4818-9c82-793dd0b5c199))
(via (at 142.530974 94.821894) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 352a1a4a-2c1a-4675-b1a8-daefaa0a120d))
(via (at 140 98.5) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 35dfab35-8f02-400c-9718-9d096c03e41e))
(via (at 135.88122 96.180601) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 41d16fd0-ce9b-4191-88a6-4b0f406689cf))
(via (at 135.411209 105.747132) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 59bedf26-fb2e-4698-8ed3-399276075320))
(via (at 146 95) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 6aca1a2a-7a37-4c22-9cdd-6189001cdcdd))
(via (at 141.5 104.5) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 719ca8e2-effd-4d18-b0f3-2d27f1b5aa96))
(via (at 132 116) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 7baa621a-5930-4836-a4d7-2b108aee8a8d))
(via (at 134.5 98) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 85c0f702-658b-4236-8f93-8b32f2a32fa6))
(via (at 135.060021 100.245189) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 909c42ef-4aa4-42bc-86a2-0515346290f7))
(via (at 138.036438 97.170361) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp a47e911d-68e1-435a-a377-2f530a0baaeb))
(via (at 145.968008 105.25995) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp b276c143-a825-4bf4-b4de-99e8b3beb843))
(via (at 136 110.5) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp b2ef890e-7d81-4b78-bafa-df37783c9ca5))
(via (at 146 111) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp cdfa8357-6773-4e8d-8af3-a01b23a0ff97))
(via (at 139 107) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp d326d5fc-88b5-4bcd-a438-3667ef2ed28e))
(via (at 141 116) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp eeffd227-42a9-4438-add4-43ea24c1347b))
(via (at 146 98) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp f15f3388-fa6b-4754-93ac-10d70dc6859c))
(segment (start 143.7 101.635) (end 144.6 101.635) (width 0.5) (layer "F.Cu") (net 5) (tstamp 066858b6-b8b9-43aa-b89c-64bc4d15f6fa))
(segment (start 143.249502 101.5) (end 143.384502 101.635) (width 0.5) (layer "F.Cu") (net 5) (tstamp e89e6261-186f-4899-a11d-0660a2b933b2))
(segment (start 143.384502 101.635) (end 144.6 101.635) (width 0.5) (layer "F.Cu") (net 5) (tstamp fea13ba8-9583-4b0a-afbc-8a62eae18bf1))
(via (at 143.249502 101.5) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (net 5) (tstamp 5c9b23a2-c79b-40fb-8364-7ed37eb88afb))
(segment (start 143.249502 101.5) (end 142.7 101.5) (width 0.5) (layer "B.Cu") (net 5) (tstamp 1b27d0a6-89d4-47e8-a895-7a4f19460820))
(segment (start 142.7 101.5) (end 134.5 109.7) (width 0.5) (layer "B.Cu") (net 5) (tstamp 262616dc-bb95-42cd-8104-79b2c7342823))
(segment (start 134.5 109.7) (end 134.5 110.287158) (width 0.5) (layer "B.Cu") (net 5) (tstamp 307ad25c-c49a-4053-93d7-e339d6a1d282))
(segment (start 134.5 110.287158) (end 133 111.787158) (width 0.5) (layer "B.Cu") (net 5) (tstamp 40a65229-cd5a-4b7b-a9d0-3d1216c4b3eb))
(segment (start 144.558887 102.905) (end 144.6 102.905) (width 0.5) (layer "F.Cu") (net 6) (tstamp 40ccb542-5c67-4250-b2ad-b9a411996aa9))
(segment (start 143.7 102.905) (end 144.6 102.905) (width 0.5) (layer "F.Cu") (net 6) (tstamp 7412847d-41cb-4818-a079-3751514ed23d))
(segment (start 144.138387 102.4845) (end 144.558887 102.905) (width 0.5) (layer "F.Cu") (net 6) (tstamp cf5453da-ee24-4a1a-bb3d-5227c989e50c))
(via (at 144.138387 102.4845) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (net 6) (tstamp 970d7c20-52a3-4b8e-8c13-d0ceeaaa5983))
(segment (start 139.91 101.34) (end 133.287158 101.34) (width 0.5) (layer "B.Cu") (net 6) (tstamp 150a27dc-092c-4b6b-bfff-197e69155ef7))
(segment (start 133.287158 101.34) (end 133 101.627158) (width 0.5) (layer "B.Cu") (net 6) (tstamp 7188b8b4-5e21-4ab9-972b-c7a4445c1207))
(segment (start 143.616491 99.5) (end 141.75 99.5) (width 0.5) (layer "B.Cu") (net 6) (tstamp 938d5f38-8c9c-4f26-9022-d5c961b7f211))
(segment (start 141.75 99.5) (end 139.91 101.34) (width 0.5) (layer "B.Cu") (net 6) (tstamp 9c5ffeda-48f1-468d-a548-c832f6f46949))
(segment (start 144.128012 100.011521) (end 143.616491 99.5) (width 0.5) (layer "B.Cu") (net 6) (tstamp d0db88a4-362f-4bc5-bf81-5382d6798a6b))
(segment (start 144.128012 102.474125) (end 144.128012 100.011521) (width 0.5) (layer "B.Cu") (net 6) (tstamp e49b919a-0785-40d2-84e5-89bdd0f9e95f))
(segment (start 144.138387 102.4845) (end 144.128012 102.474125) (width 0.5) (layer "B.Cu") (net 6) (tstamp e51a0287-ffa0-4513-bc85-73e6757949e4))
(segment (start 136.66 100.365) (end 137.4 100.365) (width 0.5) (layer "F.Cu") (net 7) (tstamp 14a26eb2-9c58-4999-9402-5834c2c7a996))
(segment (start 133 104.025) (end 136.66 100.365) (width 0.5) (layer "F.Cu") (net 7) (tstamp 42332752-e880-4da6-9418-2fe4984bbba4))
(segment (start 138.3 100.365) (end 137.4 100.365) (width 0.5) (layer "F.Cu") (net 7) (tstamp 52f74163-0df3-4c2c-b97b-8728d9e14127))
(segment (start 133 104.167158) (end 133 104.025) (width 0.5) (layer "F.Cu") (net 7) (tstamp 7136ed28-ea7c-4105-bc53-086533dcd456))
(segment (start 134.5 105.15) (end 134.5 103.925) (width 0.5) (layer "F.Cu") (net 8) (tstamp 12ca660f-792f-43f7-89ab-6143e779a22c))
(segment (start 138.3 101.635) (end 137.4 101.635) (width 0.5) (layer "F.Cu") (net 8) (tstamp 19e4417e-e3fb-450f-a222-b56712e0ea59))
(segment (start 133 106.707158) (end 133 106.65) (width 0.5) (layer "F.Cu") (net 8) (tstamp 65e634c2-02ae-48d5-900c-5062c01599bf))
(segment (start 136.79 101.635) (end 137.4 101.635) (width 0.5) (layer "F.Cu") (net 8) (tstamp 86914ffb-f7c5-408e-86a5-62825b615f9e))
(segment (start 134.5 103.925) (end 136.79 101.635) (width 0.5) (layer "F.Cu") (net 8) (tstamp da4896d8-b324-4bd8-b27a-2c9f44191bd0))
(segment (start 133 106.65) (end 134.5 105.15) (width 0.5) (layer "F.Cu") (net 8) (tstamp e53cad8b-872b-4fc1-bc74-5bf86501380e))
(segment (start 143.7 100.365) (end 144.6 100.365) (width 0.5) (layer "F.Cu") (net 9) (tstamp 4f7457d6-bacb-4c7f-93a8-ff36cd8af6cf))
(segment (start 143.249502 100.5) (end 143.384502 100.365) (width 0.5) (layer "F.Cu") (net 9) (tstamp 5b8f696f-6f90-47f3-879d-8a9e4c15c9fe))
(segment (start 143.384502 100.365) (end 144.6 100.365) (width 0.5) (layer "F.Cu") (net 9) (tstamp fe358d5b-4942-4f5a-9ab4-838ee9699162))
(via (at 143.249502 100.5) (size 0.7) (drill 0.3) (layers "F.Cu" "B.Cu") (net 9) (tstamp f8f03995-ba63-4b0f-a5d2-1bac8f477b27))
(segment (start 142.14 100.5) (end 133.392842 109.247158) (width 0.5) (layer "B.Cu") (net 9) (tstamp 2cbd3f91-028a-4530-bceb-0f93045570ff))
(segment (start 133.392842 109.247158) (end 133 109.247158) (width 0.5) (layer "B.Cu") (net 9) (tstamp 723c118d-190e-4fad-bb22-5e95d4964c61))
(segment (start 143.249502 100.5) (end 142.14 100.5) (width 0.5) (layer "B.Cu") (net 9) (tstamp 9e681a79-7614-48b8-bed5-f08e5270727f))
(segment (start 136.99 96) (end 136.99 98.685) (width 0.5) (layer "F.Cu") (net 10) (tstamp 1f5a13a1-f345-4156-8576-882eaa585f93))
(segment (start 136.99 98.685) (end 137.4 99.095) (width 0.5) (layer "F.Cu") (net 10) (tstamp 64cb3f99-4e3d-4c49-a613-7acd9e0f0057))
(segment (start 137.4 99.095) (end 133.007842 99.095) (width 0.5) (layer "F.Cu") (net 10) (tstamp 83059abc-99c6-4d1c-97f7-9ba02d45d757))
(segment (start 138.3 99.095) (end 137.4 99.095) (width 0.5) (layer "F.Cu") (net 10) (tstamp a8402c82-4a32-4e5f-9401-844432498aa6))
(segment (start 133.007842 99.095) (end 133 99.087158) (width 0.5) (layer "F.Cu") (net 10) (tstamp b4ec053a-f068-4267-8775-65c5e1cb30a7))
(zone (net 4) (net_name "GND") (layers F&B.Cu) (tstamp ba7700ff-cc57-4d31-8760-7b58381c741c) (hatch edge 0.508)
(connect_pads yes (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 147 117)
(xy 131 117)
(xy 131 94)
(xy 147 94)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 139.483451 96.778502)
(xy 139.504348 96.795327)
(xy 139.539947 96.830864)
(xy 139.684308 96.919849)
(xy 139.691256 96.922154)
(xy 139.691257 96.922154)
(xy 139.838738 96.971072)
(xy 139.83874 96.971072)
(xy 139.845269 96.973238)
(xy 139.945428 96.9835)
(xy 140.479572 96.9835)
(xy 140.482818 96.983163)
(xy 140.482822 96.983163)
(xy 140.516603 96.979658)
(xy 140.580982 96.972978)
(xy 140.741849 96.919308)
(xy 140.886055 96.830071)
(xy 140.910887 96.805195)
(xy 140.973168 96.771116)
(xy 141.043988 96.776118)
(xy 141.089078 96.80504)
(xy 141.114947 96.830864)
(xy 141.259308 96.919849)
(xy 141.266256 96.922154)
(xy 141.266257 96.922154)
(xy 141.413738 96.971072)
(xy 141.41374 96.971072)
(xy 141.420269 96.973238)
(xy 141.520428 96.9835)
(xy 142.054572 96.9835)
(xy 142.057818 96.983163)
(xy 142.057822 96.983163)
(xy 142.091603 96.979658)
(xy 142.155982 96.972978)
(xy 142.308319 96.922154)
(xy 142.309905 96.921625)
(xy 142.309907 96.921624)
(xy 142.316849 96.919308)
(xy 142.344243 96.902356)
(xy 142.410546 96.8835)
(xy 143.0105 96.8835)
(xy 143.078621 96.903502)
(xy 143.125114 96.957158)
(xy 143.1365 97.0095)
(xy 143.1365 98.34754)
(xy 143.116498 98.415661)
(xy 143.074641 98.455992)
(xy 143.065463 98.46142)
(xy 143.065458 98.461424)
(xy 143.058637 98.465458)
(xy 142.945458 98.578637)
(xy 142.941427 98.585453)
(xy 142.941424 98.585457)
(xy 142.927328 98.609293)
(xy 142.863982 98.716407)
(xy 142.861771 98.724017)
(xy 142.830478 98.831728)
(xy 142.819326 98.870111)
(xy 142.818821 98.87653)
(xy 142.816693 98.903562)
(xy 142.816692 98.903575)
(xy 142.8165 98.906021)
(xy 142.816501 99.283978)
(xy 142.819326 99.319889)
(xy 142.863982 99.473593)
(xy 142.91254 99.5557)
(xy 142.912916 99.556336)
(xy 142.930375 99.625152)
(xy 142.907858 99.692483)
(xy 142.855711 99.735582)
(xy 142.823918 99.749737)
(xy 142.823916 99.749738)
(xy 142.817888 99.752422)
(xy 142.812547 99.756302)
(xy 142.812546 99.756303)
(xy 142.677233 99.854613)
(xy 142.677231 99.854615)
(xy 142.671889 99.858496)
(xy 142.667468 99.863406)
(xy 142.667467 99.863407)
(xy 142.556718 99.986407)
(xy 142.551135 99.992607)
(xy 142.511593 100.061096)
(xy 142.471044 100.131329)
(xy 142.460903 100.148893)
(xy 142.405137 100.320525)
(xy 142.386273 100.5)
(xy 142.405137 100.679475)
(xy 142.460903 100.851107)
(xy 142.510495 100.937002)
(xy 142.527232 101.005995)
(xy 142.510495 101.062998)
(xy 142.460903 101.148893)
(xy 142.405137 101.320525)
(xy 142.404447 101.327088)
(xy 142.404447 101.327089)
(xy 142.391946 101.446022)
(xy 142.386273 101.5)
(xy 142.405137 101.679475)
(xy 142.460903 101.851107)
(xy 142.551135 102.007393)
(xy 142.555553 102.0123)
(xy 142.555554 102.012301)
(xy 142.621549 102.085596)
(xy 142.671889 102.141504)
(xy 142.677231 102.145385)
(xy 142.677233 102.145387)
(xy 142.809898 102.241774)
(xy 142.817887 102.247578)
(xy 142.823915 102.250262)
(xy 142.823917 102.250263)
(xy 142.85571 102.264418)
(xy 142.909806 102.310399)
(xy 142.930455 102.378326)
(xy 142.912915 102.443663)
(xy 142.891187 102.480405)
(xy 142.863982 102.526407)
(xy 142.861771 102.534017)
(xy 142.843418 102.597189)
(xy 142.819326 102.680111)
(xy 142.818821 102.68653)
(xy 142.816693 102.713562)
(xy 142.816692 102.713575)
(xy 142.8165 102.716021)
(xy 142.816501 103.093978)
(xy 142.819326 103.129889)
(xy 142.863982 103.283593)
(xy 142.868016 103.290414)
(xy 142.941424 103.414543)
(xy 142.941427 103.414547)
(xy 142.945458 103.421363)
(xy 143.058637 103.534542)
(xy 143.065453 103.538573)
(xy 143.065457 103.538576)
(xy 143.140366 103.582876)
(xy 143.196407 103.616018)
(xy 143.204017 103.618229)
(xy 143.343928 103.658878)
(xy 143.343931 103.658879)
(xy 143.350111 103.660674)
(xy 143.362762 103.66167)
(xy 143.383562 103.663307)
(xy 143.383575 103.663308)
(xy 143.386021 103.6635)
(xy 143.666246 103.6635)
(xy 143.701398 103.668503)
(xy 143.839989 103.708767)
(xy 143.839993 103.708768)
(xy 143.846169 103.710562)
(xy 143.852574 103.711066)
(xy 143.852579 103.711067)
(xy 143.881042 103.713307)
(xy 143.88105 103.713307)
(xy 143.883498 103.7135)
(xy 144.232853 103.7135)
(xy 144.300974 103.733502)
(xy 144.347467 103.787158)
(xy 144.357571 103.857432)
(xy 144.328077 103.922012)
(xy 144.32195 103.928593)
(xy 143.697384 104.553158)
(xy 143.170947 105.079595)
(xy 143.108635 105.113621)
(xy 143.081852 105.1165)
(xy 142.410375 105.1165)
(xy 142.344259 105.09776)
(xy 142.315692 105.080151)
(xy 142.308743 105.077846)
(xy 142.161262 105.028928)
(xy 142.16126 105.028928)
(xy 142.154731 105.026762)
(xy 142.054572 105.0165)
(xy 141.520428 105.0165)
(xy 141.517182 105.016837)
(xy 141.517178 105.016837)
(xy 141.483397 105.020342)
(xy 141.419018 105.027022)
(xy 141.258151 105.080692)
(xy 141.113945 105.169929)
(xy 141.089113 105.194805)
(xy 141.026832 105.228884)
(xy 140.956012 105.223882)
(xy 140.910922 105.19496)
(xy 140.890233 105.174307)
(xy 140.885053 105.169136)
(xy 140.740692 105.080151)
(xy 140.733743 105.077846)
(xy 140.586262 105.028928)
(xy 140.58626 105.028928)
(xy 140.579731 105.026762)
(xy 140.479572 105.0165)
(xy 139.945428 105.0165)
(xy 139.942182 105.016837)
(xy 139.942178 105.016837)
(xy 139.908397 105.020342)
(xy 139.844018 105.027022)
(xy 139.683151 105.080692)
(xy 139.538945 105.169929)
(xy 139.533777 105.175106)
(xy 139.533776 105.175107)
(xy 139.504416 105.204518)
(xy 139.442133 105.238597)
(xy 139.415243 105.2415)
(xy 138.473875 105.2415)
(xy 138.417104 105.225969)
(xy 138.416695 105.226915)
(xy 138.410047 105.224038)
(xy 138.409736 105.223953)
(xy 138.409424 105.223769)
(xy 138.409423 105.223769)
(xy 138.402596 105.219731)
(xy 138.394985 105.21752)
(xy 138.394983 105.217519)
(xy 138.252644 105.176166)
(xy 138.252645 105.176166)
(xy 138.246466 105.174371)
(xy 138.240059 105.173867)
(xy 138.240055 105.173866)
(xy 138.212444 105.171693)
(xy 138.212438 105.171693)
(xy 138.209989 105.1715)
(xy 138.010122 105.1715)
(xy 137.810012 105.171501)
(xy 137.773534 105.174371)
(xy 137.67673 105.202495)
(xy 137.625017 105.217519)
(xy 137.625015 105.21752)
(xy 137.617404 105.219731)
(xy 137.610582 105.223766)
(xy 137.610581 105.223766)
(xy 137.48428 105.29846)
(xy 137.477459 105.302494)
(xy 137.362494 105.417459)
(xy 137.279731 105.557404)
(xy 137.234371 105.713534)
(xy 137.2315 105.750011)
(xy 137.231501 106.249988)
(xy 137.234371 106.286466)
(xy 137.279731 106.442596)
(xy 137.283766 106.449418)
(xy 137.283766 106.449419)
(xy 137.304524 106.484519)
(xy 137.362494 106.582541)
(xy 137.477459 106.697506)
(xy 137.48428 106.70154)
(xy 137.606378 106.773748)
(xy 137.617404 106.780269)
(xy 137.625015 106.78248)
(xy 137.625017 106.782481)
(xy 137.669234 106.795327)
(xy 137.773534 106.825629)
(xy 137.779941 106.826133)
(xy 137.779945 106.826134)
(xy 137.807556 106.828307)
(xy 137.807562 106.828307)
(xy 137.810011 106.8285)
(xy 138.009878 106.8285)
(xy 138.209988 106.828499)
(xy 138.246466 106.825629)
(xy 138.350766 106.795327)
(xy 138.394983 106.782481)
(xy 138.394985 106.78248)
(xy 138.402596 106.780269)
(xy 138.409424 106.776231)
(xy 138.409736 106.776047)
(xy 138.410047 106.775962)
(xy 138.416695 106.773085)
(xy 138.417104 106.774031)
(xy 138.473875 106.7585)
(xy 139.41533 106.7585)