-
Notifications
You must be signed in to change notification settings - Fork 0
/
syzygy-breakout-flash-1V8.kicad_pcb
7094 lines (7064 loc) · 355 KB
/
syzygy-breakout-flash-1V8.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "SYZYGY Breakout Flash")
(date "2023-08-22")
(rev "r1.0")
(company "Adam Critchley")
(comment 1 "SYZYGY Pod")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" power)
(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)
)
(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 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "prepreg") (thickness 0.48) (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 "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.0508)
(aux_axis_origin 107.5 81.2)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/SCL")
(net 3 "/SDA")
(net 4 "/RGA")
(net 5 "/D0_P")
(net 6 "/D1_P")
(net 7 "/D0_N")
(net 8 "/D1_N")
(net 9 "/D2_P")
(net 10 "/D3_P")
(net 11 "/D2_N")
(net 12 "+5V")
(net 13 "/D3_N")
(net 14 "/D4_P")
(net 15 "/D5_P")
(net 16 "/D4_N")
(net 17 "/D5_N")
(net 18 "/D6_P")
(net 19 "/D7_P")
(net 20 "/D6_N")
(net 21 "/D7_N")
(net 22 "/S16")
(net 23 "/S17")
(net 24 "/S19")
(net 25 "/S20")
(net 26 "/S21")
(net 27 "/S22")
(net 28 "/S23")
(net 29 "/S24")
(net 30 "/S25")
(net 31 "/S26")
(net 32 "/S27")
(net 33 "/P2C_CLK_P")
(net 34 "unconnected-(J1-RSVD-Pad37)")
(net 35 "unconnected-(J1-RSVD-Pad38)")
(net 36 "+1V8")
(net 37 "/S18")
(net 38 "/P2C_CLK_N")
(net 39 "VCCIO")
(net 40 "+3V3")
(net 41 "unconnected-(U1-OUT-Pad2)")
(net 42 "VCC")
(net 43 "/Peripheral MCU/MISO")
(net 44 "/Peripheral MCU/~{RESET}")
(net 45 "unconnected-(U2-PA3-Pad2)")
(net 46 "unconnected-(U2-PA2-Pad3)")
(net 47 "unconnected-(U2-PA1-Pad4)")
(net 48 "unconnected-(U2-NC-Pad6)")
(net 49 "unconnected-(U2-NC-Pad7)")
(net 50 "unconnected-(U2-NC-Pad10)")
(net 51 "unconnected-(U2-XTAL1{slash}PB0-Pad11)")
(net 52 "unconnected-(U2-XTAL2{slash}PB1-Pad12)")
(net 53 "unconnected-(U2-PB2-Pad14)")
(net 54 "unconnected-(U2-PA7-Pad15)")
(net 55 "unconnected-(U2-NC-Pad17)")
(net 56 "unconnected-(U2-NC-Pad18)")
(net 57 "unconnected-(U2-NC-Pad19)")
(net 58 "/C2P_CLKP")
(net 59 "/C2P_CLKN")
(net 60 "Net-(D1-A)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2544a071-b182-4008-a367-a9d89e0171ee)
(at 148.034 115.627)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "syzygy-breakout-flash-1V8.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/dc7e337e-ce1e-4b1d-9742-05d169d28b56")
(attr through_hole)
(fp_text reference "J10" (at 0 -2.789) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 354e5808-5cd6-41a0-abd1-0714287d2dc9)
)
(fp_text value "Conn_01x02" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6aeabe47-7c18-4347-a88f-355c36bbe956)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 007d79e9-fa78-4730-9a15-63e582d5a58d)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 519226b9-b077-4d1d-930a-77644cfc0e09))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8c210ba-32f9-46f7-9a96-9a6c02eb8363))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9949d1e-92d7-4e78-b46d-0a51680b6994))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af6454ca-9d5c-421e-93fb-9efa54f61504))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0251ce41-0ef9-4827-b152-43dd25d23c93))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51d6f5a7-40f5-4bd1-9a46-2765be743536))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09113c67-2956-4f47-9541-21b588fa2388))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp acda0bad-3565-473e-90bf-ee882454322a))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe4c3753-4603-4d46-946e-7f44b9964d50))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bf6ca7d-97c2-41f5-9a57-d542360a9e23))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb59623d-5a9f-4047-b614-ab7edabbee9c))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1a3d31a-92f1-4944-953f-3bee86224219))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76447834-30b3-4ac9-9223-f7c55b7fe213))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d57a4272-26fe-4de7-acba-5ebc90fe1f54))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34f5ac9e-59a8-482d-8221-792818fe1e8a))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/D6_N") (pinfunction "Pin_1") (pintype "passive") (tstamp 0cba9263-8325-42f6-aa54-63e9911e3d97))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/D0_N") (pinfunction "Pin_2") (pintype "passive") (tstamp aca8a449-0042-489c-8cb8-1594f6db60d4))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x14_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 57e84ec6-79b2-4cec-b9e9-7065a9267862)
(at 137.62 131.38)
(descr "Through hole straight pin header, 1x14, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x14 2.54mm single row")
(property "Sheetfile" "syzygy-breakout-flash-1V8.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x14, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/e235a9cd-5135-4239-834f-3818eacda295")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf61dbe7-80b7-49e5-8079-e09063d1a536)
)
(fp_text value "Conn_01x14" (at 0 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 888d8bc2-4b88-4a3c-b934-9c2a3189e800)
)
(fp_text user "${REFERENCE}" (at 0 16.51 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67d408ef-05b1-4e79-972e-7e5772c8b351)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9b624e4-4440-420d-82c1-f3e3b91f026d))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57b23892-a9ac-433c-b705-da1145e5ae70))
(fp_line (start -1.33 1.27) (end -1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2aa94b65-a4d0-4d69-925f-f51b97dc002c))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc73409f-47f2-460e-b7eb-11794079a198))
(fp_line (start -1.33 34.35) (end 1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d768d900-5900-4196-98c3-48f2c4b30b93))
(fp_line (start 1.33 1.27) (end 1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 116a8a73-57bf-401a-b3f8-702c49f04474))
(fp_line (start -1.8 -1.8) (end -1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e149e6cf-c453-4662-9b7c-ef51d6c1fc2f))
(fp_line (start -1.8 34.8) (end 1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 436ba41f-c6ee-4d5b-8da3-f7a9639fd574))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5653fe0f-1d00-4f73-83ea-c5e897c7737e))
(fp_line (start 1.8 34.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7d4a0af-fd43-4c97-86b0-7b2e1e6761b1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 408bfa44-19db-4157-bf08-1b32879da153))
(fp_line (start -1.27 34.29) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b642ebf-9783-490d-88b9-0470a0fee7c1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c25c2bf9-c402-44c0-bb8a-b90b461c09d2))
(fp_line (start 1.27 -1.27) (end 1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7308758-5535-4bb7-b23b-57f73a8bec65))
(fp_line (start 1.27 34.29) (end -1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1913c1d6-c764-4d68-977f-940a89b4cb61))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "/S26") (pinfunction "Pin_1") (pintype "passive") (tstamp c6928bd8-214c-438e-bda6-1a94c9323db5))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/S24") (pinfunction "Pin_2") (pintype "passive") (tstamp 5fd833f8-0b47-456f-9168-8ebd98b4e37b))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/S22") (pinfunction "Pin_3") (pintype "passive") (tstamp ce91936a-d6df-4311-ace0-f20b2f4e9e63))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/S20") (pinfunction "Pin_4") (pintype "passive") (tstamp 7d44bfee-c5e1-400e-b6f1-6e108e248e55))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 37 "/S18") (pinfunction "Pin_5") (pintype "passive") (tstamp 6872adde-408b-4218-94e8-8a79d88e8782))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/S16") (pinfunction "Pin_6") (pintype "passive") (tstamp 635ccc23-ba18-4e3a-9636-425a1d4a635f))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 59 "/C2P_CLKN") (pinfunction "Pin_7") (pintype "passive") (tstamp c97d78ed-a4ed-48e2-a93f-c2d0954a78b5))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/D6_P") (pinfunction "Pin_8") (pintype "passive") (tstamp b571d4f4-df49-42a4-b8af-e62122cee0c1))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/D4_N") (pinfunction "Pin_9") (pintype "passive") (tstamp b9f39da3-174d-4d84-9948-8da7ad788da1))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/D4_P") (pinfunction "Pin_10") (pintype "passive") (tstamp 2aa348d7-9229-4e09-9127-82dcb493081d))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/D2_N") (pinfunction "Pin_11") (pintype "passive") (tstamp db1e502b-d8f3-480e-bc2d-57a86f1bb5cc))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/D2_P") (pinfunction "Pin_12") (pintype "passive") (tstamp f59c736f-e1aa-4b4f-abc9-91eca0efba2d))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 58 "/C2P_CLKP") (pinfunction "Pin_13") (pintype "passive") (tstamp baec1af6-1644-4291-a729-5b6154133ad6))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/D0_P") (pinfunction "Pin_14") (pintype "passive") (tstamp 7408421c-92cb-4c38-b871-f9e4d0d394ca))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x14_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 596cd888-3cf2-49ff-8d6a-c34d9f2b320c)
(at 143.798 101.092)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "syzygy-breakout-flash-1V8.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/c28ded2c-e5a0-4cc1-813f-e13b9baaa5fd")
(attr through_hole)
(fp_text reference "J4" (at 0.127 -2.54) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 587ab8d4-dee9-4d18-a70d-58b64245f166)
)
(fp_text value "Conn_01x04" (at 0 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d7c9740-ba40-409b-815a-957b7dfa08d2)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abe30433-3f84-4923-a3d2-e9f24229e6d4)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4fe89d3-e717-4bb9-ad23-c7058ab778c3))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f91e266-afad-4595-9c0e-8f3e7ad6adac))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c108f14-d4de-409b-807f-ff407afd88b3))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0763fe1-eae5-4f81-87f9-6fd445df24f9))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d8f83bf-866c-4c0a-ae1a-39b8d9d8979c))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24387eb2-33cb-45b6-ba15-116bb39f8dd7))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d0ba8d9-04c3-4332-bce0-c36170e2b11b))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 482e1e4c-5b45-4779-8219-f2055e62dfca))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ef77ae6-4034-4a79-b68a-6ca3b45e574b))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 584f59a2-dcb3-4932-8f44-665b05662ae5))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57789bda-4235-4cdd-acbe-aedba7b72a2f))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 638ce0f7-f910-4339-98d8-cacbf7abc90f))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd2713ee-88d3-4a4e-aed6-5c97f217d66f))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 596369fd-110e-4b08-99b2-5c70b09b5e55))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1bb7c50-8966-43e9-8092-9011219fa161))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "VCCIO") (pinfunction "Pin_1") (pintype "passive") (tstamp ad86e605-2972-4f60-be46-c49db23a3b4d))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "+5V") (pinfunction "Pin_2") (pintype "passive") (tstamp 15553dd0-8bbc-4c06-a51c-eb7a978893a0))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "+3V3") (pinfunction "Pin_3") (pintype "passive") (tstamp c3dcb5a4-3028-4a7e-92f0-ce91e1245551))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "+1V8") (pinfunction "Pin_4") (pintype "passive") (tstamp e628fffa-2654-4cdb-8292-4484c8426911))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Symbol:OSHW-Symbol_6.7x6mm_Copper" (layer "F.Cu")
(tstamp 7d256fc1-f6bf-4980-9f54-4cfdf84eb6c3)
(at 147.1168 83.9724)
(descr "Open Source Hardware Symbol")
(tags "Logo Symbol OSHW")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc5fb584-f53a-4a74-aa6e-3eb4a78bf57d)
)
(fp_text value "OSHW-Symbol_6.7x6mm_Copper" (at 0.75 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8be7e5a-509b-4eb8-a87e-3d440f7c8b26)
)
(fp_poly
(pts
(xy 0.555814 -2.531069)
(xy 0.639635 -2.086445)
(xy 0.94892 -1.958947)
(xy 1.258206 -1.831449)
(xy 1.629246 -2.083754)
(xy 1.733157 -2.154004)
(xy 1.827087 -2.216728)
(xy 1.906652 -2.269062)
(xy 1.96747 -2.308143)
(xy 2.005157 -2.331107)
(xy 2.015421 -2.336058)
(xy 2.03391 -2.323324)
(xy 2.07342 -2.288118)
(xy 2.129522 -2.234938)
(xy 2.197787 -2.168282)
(xy 2.273786 -2.092646)
(xy 2.353092 -2.012528)
(xy 2.431275 -1.932426)
(xy 2.503907 -1.856836)
(xy 2.566559 -1.790255)
(xy 2.614803 -1.737182)
(xy 2.64421 -1.702113)
(xy 2.651241 -1.690377)
(xy 2.641123 -1.66874)
(xy 2.612759 -1.621338)
(xy 2.569129 -1.552807)
(xy 2.513218 -1.467785)
(xy 2.448006 -1.370907)
(xy 2.410219 -1.31565)
(xy 2.341343 -1.214752)
(xy 2.28014 -1.123701)
(xy 2.229578 -1.04703)
(xy 2.192628 -0.989272)
(xy 2.172258 -0.954957)
(xy 2.169197 -0.947746)
(xy 2.176136 -0.927252)
(xy 2.195051 -0.879487)
(xy 2.223087 -0.811168)
(xy 2.257391 -0.729011)
(xy 2.295109 -0.63973)
(xy 2.333387 -0.550042)
(xy 2.36937 -0.466662)
(xy 2.400206 -0.396306)
(xy 2.423039 -0.34569)
(xy 2.435017 -0.321529)
(xy 2.435724 -0.320578)
(xy 2.454531 -0.315964)
(xy 2.504618 -0.305672)
(xy 2.580793 -0.290713)
(xy 2.677865 -0.272099)
(xy 2.790643 -0.250841)
(xy 2.856442 -0.238582)
(xy 2.97695 -0.215638)
(xy 3.085797 -0.193805)
(xy 3.177476 -0.174278)
(xy 3.246481 -0.158252)
(xy 3.287304 -0.146921)
(xy 3.295511 -0.143326)
(xy 3.303548 -0.118994)
(xy 3.310033 -0.064041)
(xy 3.31497 0.015108)
(xy 3.318364 0.112026)
(xy 3.320218 0.220287)
(xy 3.320538 0.333465)
(xy 3.319327 0.445135)
(xy 3.31659 0.548868)
(xy 3.312331 0.638241)
(xy 3.306555 0.706826)
(xy 3.299267 0.748197)
(xy 3.294895 0.75681)
(xy 3.268764 0.767133)
(xy 3.213393 0.781892)
(xy 3.136107 0.799352)
(xy 3.04423 0.81778)
(xy 3.012158 0.823741)
(xy 2.857524 0.852066)
(xy 2.735375 0.874876)
(xy 2.641673 0.89308)
(xy 2.572384 0.907583)
(xy 2.523471 0.919292)
(xy 2.490897 0.929115)
(xy 2.470628 0.937956)
(xy 2.458626 0.946724)
(xy 2.456947 0.948457)
(xy 2.440184 0.976371)
(xy 2.414614 1.030695)
(xy 2.382788 1.104777)
(xy 2.34726 1.191965)
(xy 2.310583 1.285608)
(xy 2.275311 1.379052)
(xy 2.243996 1.465647)
(xy 2.219193 1.53874)
(xy 2.203454 1.591678)
(xy 2.199332 1.617811)
(xy 2.199676 1.618726)
(xy 2.213641 1.640086)
(xy 2.245322 1.687084)
(xy 2.291391 1.754827)
(xy 2.348518 1.838423)
(xy 2.413373 1.932982)
(xy 2.431843 1.959854)
(xy 2.497699 2.057275)
(xy 2.55565 2.146163)
(xy 2.602538 2.221412)
(xy 2.635207 2.27792)
(xy 2.6505 2.310581)
(xy 2.651241 2.314593)
(xy 2.638392 2.335684)
(xy 2.602888 2.377464)
(xy 2.549293 2.435445)
(xy 2.482171 2.505135)
(xy 2.406087 2.582045)
(xy 2.325604 2.661683)
(xy 2.245287 2.739561)
(xy 2.169699 2.811186)
(xy 2.103405 2.87207)
(xy 2.050969 2.917721)
(xy 2.016955 2.94365)
(xy 2.007545 2.947883)
(xy 1.985643 2.937912)
(xy 1.9408 2.91102)
(xy 1.880321 2.871736)
(xy 1.833789 2.840117)
(xy 1.749475 2.782098)
(xy 1.649626 2.713784)
(xy 1.549473 2.645579)
(xy 1.495627 2.609075)
(xy 1.313371 2.4858)
(xy 1.160381 2.56852)
(xy 1.090682 2.604759)
(xy 1.031414 2.632926)
(xy 0.991311 2.648991)
(xy 0.981103 2.651226)
(xy 0.968829 2.634722)
(xy 0.944613 2.588082)
(xy 0.910263 2.515609)
(xy 0.867588 2.421606)
(xy 0.818394 2.310374)
(xy 0.76449 2.186215)
(xy 0.707684 2.053432)
(xy 0.649782 1.916327)
(xy 0.592593 1.779202)
(xy 0.537924 1.646358)
(xy 0.487584 1.522098)
(xy 0.44338 1.410725)
(xy 0.407119 1.316539)
(xy 0.380609 1.243844)
(xy 0.365658 1.196941)
(xy 0.363254 1.180833)
(xy 0.382311 1.160286)
(xy 0.424036 1.126933)
(xy 0.479706 1.087702)
(xy 0.484378 1.084599)
(xy 0.628264 0.969423)
(xy 0.744283 0.835053)
(xy 0.83143 0.685784)
(xy 0.888699 0.525913)
(xy 0.915086 0.359737)
(xy 0.909585 0.191552)
(xy 0.87119 0.025655)
(xy 0.798895 -0.133658)
(xy 0.777626 -0.168513)
(xy 0.666996 -0.309263)
(xy 0.536302 -0.422286)
(xy 0.390064 -0.506997)
(xy 0.232808 -0.562806)
(xy 0.069057 -0.589126)
(xy -0.096667 -0.58537)
(xy -0.259838 -0.55095)
(xy -0.415935 -0.485277)
(xy -0.560433 -0.387765)
(xy -0.605131 -0.348187)
(xy -0.718888 -0.224297)
(xy -0.801782 -0.093876)
(xy -0.858644 0.052315)
(xy -0.890313 0.197088)
(xy -0.898131 0.35986)
(xy -0.872062 0.52344)
(xy -0.814755 0.682298)
(xy -0.728856 0.830906)
(xy -0.617014 0.963735)
(xy -0.481877 1.075256)
(xy -0.464117 1.087011)
(xy -0.40785 1.125508)
(xy -0.365077 1.158863)
(xy -0.344628 1.18016)
(xy -0.344331 1.180833)
(xy -0.348721 1.203871)
(xy -0.366124 1.256157)
(xy -0.394732 1.33339)
(xy -0.432735 1.431268)
(xy -0.478326 1.545491)
(xy -0.529697 1.671758)
(xy -0.585038 1.805767)
(xy -0.642542 1.943218)
(xy -0.700399 2.079808)
(xy -0.756802 2.211237)
(xy -0.809942 2.333205)
(xy -0.85801 2.441409)
(xy -0.899199 2.531549)
(xy -0.931699 2.599323)
(xy -0.953703 2.64043)
(xy -0.962564 2.651226)
(xy -0.98964 2.642819)
(xy -1.040303 2.620272)
(xy -1.105817 2.587613)
(xy -1.141841 2.56852)
(xy -1.294832 2.4858)
(xy -1.477088 2.609075)
(xy -1.570125 2.672228)
(xy -1.671985 2.741727)
(xy -1.767438 2.807165)
(xy -1.81525 2.840117)
(xy -1.882495 2.885273)
(xy -1.939436 2.921057)
(xy -1.978646 2.942938)
(xy -1.991381 2.947563)
(xy -2.009917 2.935085)
(xy -2.050941 2.900252)
(xy -2.110475 2.846678)
(xy -2.184542 2.777983)
(xy -2.269165 2.697781)
(xy -2.322685 2.646286)
(xy -2.416319 2.554286)
(xy -2.497241 2.471999)
(xy -2.562177 2.402945)
(xy -2.607858 2.350644)
(xy -2.631011 2.318616)
(xy -2.633232 2.312116)
(xy -2.622924 2.287394)
(xy -2.594439 2.237405)
(xy -2.550937 2.167212)
(xy -2.495577 2.081875)
(xy -2.43152 1.986456)
(xy -2.413303 1.959854)
(xy -2.346927 1.863167)
(xy -2.287378 1.776117)
(xy -2.237984 1.703595)
(xy -2.202075 1.650493)
(xy -2.182981 1.621703)
(xy -2.181136 1.618726)
(xy -2.183895 1.595782)
(xy -2.198538 1.545336)
(xy -2.222513 1.474041)
(xy -2.253266 1.388547)
(xy -2.288244 1.295507)
(xy -2.324893 1.201574)
(xy -2.360661 1.113399)
(xy -2.392994 1.037634)
(xy -2.419338 0.980931)
(xy -2.437142 0.949943)
(xy -2.438407 0.948457)
(xy -2.449294 0.939601)
(xy -2.467682 0.930843)
(xy -2.497606 0.921277)
(xy -2.543103 0.909996)
(xy -2.608209 0.896093)
(xy -2.696961 0.878663)
(xy -2.813393 0.856798)
(xy -2.961542 0.829591)
(xy -2.993618 0.823741)
(xy -3.088686 0.805374)
(xy -3.171565 0.787405)
(xy -3.23493 0.771569)
(xy -3.271458 0.7596)
(xy -3.276356 0.75681)
(xy -3.284427 0.732072)
(xy -3.290987 0.67679)
(xy -3.296033 0.597389)
(xy -3.299559 0.500296)
(xy -3.301561 0.391938)
(xy -3.302036 0.27874)
(xy -3.300977 0.167128)
(xy -3.298382 0.063529)
(xy -3.294246 -0.025632)
(xy -3.288563 -0.093928)
(xy -3.281331 -0.134934)
(xy -3.276971 -0.143326)
(xy -3.252698 -0.151792)
(xy -3.197426 -0.165565)
(xy -3.116662 -0.18345)
(xy -3.015912 -0.204252)
(xy -2.900683 -0.226777)
(xy -2.837902 -0.238582)
(xy -2.718787 -0.260849)
(xy -2.612565 -0.281021)
(xy -2.524427 -0.298085)
(xy -2.459566 -0.311031)
(xy -2.423174 -0.318845)
(xy -2.417184 -0.320578)
(xy -2.407061 -0.34011)
(xy -2.385662 -0.387157)
(xy -2.355839 -0.454997)
(xy -2.320445 -0.536909)
(xy -2.282332 -0.626172)
(xy -2.244353 -0.716065)
(xy -2.20936 -0.799865)
(xy -2.180206 -0.870853)
(xy -2.159743 -0.922306)
(xy -2.150823 -0.947503)
(xy -2.150657 -0.948604)
(xy -2.160769 -0.968481)
(xy -2.189117 -1.014223)
(xy -2.232723 -1.081283)
(xy -2.288606 -1.165116)
(xy -2.353787 -1.261174)
(xy -2.391679 -1.31635)
(xy -2.460725 -1.417519)
(xy -2.52205 -1.50937)
(xy -2.572663 -1.587256)
(xy -2.609571 -1.646531)
(xy -2.629782 -1.682549)
(xy -2.632701 -1.690623)
(xy -2.620153 -1.709416)
(xy -2.585463 -1.749543)
(xy -2.533063 -1.806507)
(xy -2.467384 -1.875815)
(xy -2.392856 -1.952969)
(xy -2.313913 -2.033475)
(xy -2.234983 -2.112837)
(xy -2.1605 -2.18656)
(xy -2.094894 -2.250148)
(xy -2.042596 -2.299106)
(xy -2.008039 -2.328939)
(xy -1.996478 -2.336058)
(xy -1.977654 -2.326047)
(xy -1.932631 -2.297922)
(xy -1.865787 -2.254546)
(xy -1.781499 -2.198782)
(xy -1.684144 -2.133494)
(xy -1.610707 -2.083754)
(xy -1.239667 -1.831449)
(xy -0.621095 -2.086445)
(xy -0.537275 -2.531069)
(xy -0.453454 -2.975693)
(xy 0.471994 -2.975693)
(xy 0.555814 -2.531069)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.Cu") (tstamp 3ebb9054-6654-42d1-af5d-8ac282515e81))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 82b1beba-c9fd-43ca-bbfa-884ce27f5c60)
(at 139.8683 101.0644)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "syzygy-breakout-flash-1V8.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/36f2f677-657a-4f85-8eba-cc2e9242063d")
(attr through_hole)
(fp_text reference "J5" (at 0.0857 7.6476) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d29bc1d8-4a18-40b2-833a-84b7a8562a41)
)
(fp_text value "Conn_01x03" (at 0 7.41) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b30b00ad-a613-4588-8f3c-8928528e7215)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3eae0832-de28-408f-85ec-10fbdf217e14)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b44bae87-a851-4a7b-9044-023c31d3749d))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fff9d3b8-a4c6-4d1f-8cb1-c63d5b88c96d))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c5fe78a-a3f0-4075-acc2-4f5b24a1f4c5))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1158839d-4db7-4e8e-9638-fd2d93343b8d))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d253bda-eded-4ce5-8545-c8a55dd20203))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f065c8f-495b-447e-96c9-59e3cc503020))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6cd3070-b22e-4b31-9cd6-449d2d4e8b3d))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f97de55c-48b4-4461-805f-0790a244f6fc))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61cc8975-b4d0-49cc-a875-9f7cde64a162))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9cd54e73-11b1-4207-b5a5-29cfb0c87a74))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9bb9791-bd32-444f-ab9b-75f9f016215f))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71edfde1-0810-4ad2-8410-fd6d32094ba6))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 368b4419-8627-4530-8d2b-d6d613bbd8b6))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35c50e0a-d065-4763-8059-00f38e362b84))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c955de35-1eda-4075-9869-13156f0f8d84))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 60 "Net-(D1-A)") (pinfunction "Pin_1") (pintype "passive") (tstamp e8b4904c-2295-4aa9-a321-30b36d75bdcd))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp f5056ecd-359d-4f3e-9d3e-a5a0628666d6))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 573442d2-4697-4132-a842-077c6f62c417))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x14_P2.54mm_Vertical" (layer "F.Cu")
(tstamp a704af3e-3768-4455-ada8-27a8fd436b60)
(at 122.3772 164.4 180)
(descr "Through hole straight pin header, 1x14, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x14 2.54mm single row")
(property "Sheetfile" "syzygy-breakout-flash-1V8.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x14, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/26c682b5-2186-48b9-b188-5498b306635d")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.667) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3eaf54c7-2dc9-43b6-8f9f-f35280cae32d)
)
(fp_text value "Conn_01x14" (at 0 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a234f37-7832-43e9-af7f-06f4d80e158e)
)
(fp_text user "${REFERENCE}" (at 0 16.51 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d04a3334-663f-4445-93d5-1e2904fb5e47)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71d34e86-d014-45ad-952e-2c50a531c1de))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e67fa6a-358f-4e83-aba6-3fb2e2815f0b))
(fp_line (start -1.33 1.27) (end -1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d361c240-aed0-4988-bd7f-f43363438bed))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 142d65af-2776-4c00-97df-c69409b4f00c))
(fp_line (start -1.33 34.35) (end 1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27c3046f-39a8-401f-9c50-71d9c38484cc))
(fp_line (start 1.33 1.27) (end 1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6adbc6f6-d146-44ba-b6ff-5516519a50a8))
(fp_line (start -1.8 -1.8) (end -1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0d50fd6-9f20-4559-8b92-39105c519cf1))
(fp_line (start -1.8 34.8) (end 1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1505b711-0019-4d9c-a44d-0aacaaab72a4))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ab1051d-058d-4911-9130-c30936541612))
(fp_line (start 1.8 34.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be8747f5-0b2c-4ce0-9b15-5d56e0a1bcc1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ac4d7c8-9495-41af-bfaf-983dece3aba9))
(fp_line (start -1.27 34.29) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a6c3446-121f-4148-99ee-1105c83b6e8d))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af4579a0-62e5-4385-8c0a-4fa2619ffcba))
(fp_line (start 1.27 -1.27) (end 1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 721447ac-0bae-4498-8f0d-2b55859624a3))
(fp_line (start 1.27 34.29) (end -1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4265bccc-9161-47c2-b203-b9dd969066ce))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/D1_P") (pinfunction "Pin_1") (pintype "passive") (tstamp 2e1841a0-0856-4bb8-b013-833efa34696d))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/D1_N") (pinfunction "Pin_2") (pintype "passive") (tstamp 1980d8e7-1249-4809-b42b-6cb11eb6b54c))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/D3_P") (pinfunction "Pin_3") (pintype "passive") (tstamp c79c257b-a052-4edf-9681-2197b06a7865))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/D3_N") (pinfunction "Pin_4") (pintype "passive") (tstamp 7d09ef28-b676-4b0d-9af7-78399ae85e31))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/D5_P") (pinfunction "Pin_5") (pintype "passive") (tstamp d7d9d669-5bab-4a49-9e39-31dcb84ebe52))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/D5_N") (pinfunction "Pin_6") (pintype "passive") (tstamp 1191b6ea-8a55-4928-bb11-e051b0c45c85))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/D7_P") (pinfunction "Pin_7") (pintype "passive") (tstamp cc2935fd-7a02-4251-b04c-455c18ac48b9))
(pad "8" thru_hole oval (at 0 17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "/D7_N") (pinfunction "Pin_8") (pintype "passive") (tstamp d6f0af05-7020-4f03-b323-67eef1f82050))
(pad "9" thru_hole oval (at 0 20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/S17") (pinfunction "Pin_9") (pintype "passive") (tstamp 9b931563-91b3-4d9f-ac4e-8b07fc0498a2))
(pad "10" thru_hole oval (at 0 22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/S19") (pinfunction "Pin_10") (pintype "passive") (tstamp 3e14df8a-350c-4d80-8ac8-f6efec6f9b39))
(pad "11" thru_hole oval (at 0 25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "/S21") (pinfunction "Pin_11") (pintype "passive") (tstamp db60231f-a7e1-4b7e-b926-f2fa6d1a72ec))
(pad "12" thru_hole oval (at 0 27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/S23") (pinfunction "Pin_12") (pintype "passive") (tstamp b5154c75-ac1e-4049-8c01-d9377c41f41b))
(pad "13" thru_hole oval (at 0 30.48 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/S25") (pinfunction "Pin_13") (pintype "passive") (tstamp d86f149b-7dec-41da-bc98-a061c966ddc0))
(pad "14" thru_hole oval (at 0 33.02 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "/S27") (pinfunction "Pin_14") (pintype "passive") (tstamp 8d5e826b-689f-49bf-9a89-99f58453c319))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x14_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x14_P2.54mm_Vertical" (layer "F.Cu")
(tstamp a7aefe50-eba2-42dd-9316-2d519761b63f)
(at 145.748 131.38)
(descr "Through hole straight pin header, 1x14, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x14 2.54mm single row")
(property "Sheetfile" "syzygy-breakout-flash-1V8.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x14, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/4a3469bf-287a-4f8f-a1c0-fe5485faece3")
(attr through_hole)
(fp_text reference "J9" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10eca46b-33a7-4c57-8680-7cec5b2994db)
)
(fp_text value "Conn_01x14" (at 0 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14901448-e24b-4624-b584-ef0ac75aa790)
)
(fp_text user "${REFERENCE}" (at 0 16.51 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80e5b163-4d34-479f-9100-0da11eb7ee48)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b68cdf9a-b380-46d5-ac92-03085eae0caf))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2827bdd-832c-431e-b173-b8ed159bf8db))
(fp_line (start -1.33 1.27) (end -1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d76322d-e022-4480-bc42-72d480d4e648))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3991587-c119-4b63-bc11-6af2624935e0))
(fp_line (start -1.33 34.35) (end 1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20734718-16cb-4220-9fc9-25ec895ffc1d))
(fp_line (start 1.33 1.27) (end 1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9a0b0be-5902-4238-bb6d-a7155e15e33e))
(fp_line (start -1.8 -1.8) (end -1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01cd53d2-7f8a-4fc6-841d-5b599ca14880))
(fp_line (start -1.8 34.8) (end 1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6fb9237d-6253-47b3-bfdb-ae9cce29699f))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04c76daa-7cfc-4a17-841f-f7e8d79da3ae))
(fp_line (start 1.8 34.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcfc9b40-ffb9-44f4-9bf3-3da5fa3b3b97))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 442c5153-8204-419c-9404-3c04577bc606))
(fp_line (start -1.27 34.29) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85b9893f-8600-4932-97cb-c5ea6fa4b5bf))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d3a6963-bf5e-44f8-b308-e7f165edeefd))
(fp_line (start 1.27 -1.27) (end 1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b0236bd-c4d2-49f0-8cd5-7ba57db5ca7e))
(fp_line (start 1.27 34.29) (end -1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 495e09fb-2864-49e2-a776-89ba83fc9595))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "/S26") (pinfunction "Pin_1") (pintype "passive") (tstamp 9a548adc-4d11-4b95-a794-ce8967f67157))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/S24") (pinfunction "Pin_2") (pintype "passive") (tstamp ef1b2788-33c4-4798-9b60-a9f7d1b70f2b))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/S22") (pinfunction "Pin_3") (pintype "passive") (tstamp 402b4ad7-0f15-4e5d-85bb-92791477f7a6))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/S20") (pinfunction "Pin_4") (pintype "passive") (tstamp 89a142f2-8daa-470c-97bf-22e22afdb9ce))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 37 "/S18") (pinfunction "Pin_5") (pintype "passive") (tstamp ff1f3be0-8393-45c4-871e-83685aa1bb0f))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/S16") (pinfunction "Pin_6") (pintype "passive") (tstamp 4d6f0d8a-5a24-40ad-9a3d-d8fb251c0643))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 59 "/C2P_CLKN") (pinfunction "Pin_7") (pintype "passive") (tstamp 112f76af-1ed9-42cf-abf5-3553e6b94b7a))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/D6_P") (pinfunction "Pin_8") (pintype "passive") (tstamp 00067031-2cba-4434-b2c1-46540dca922c))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/D4_N") (pinfunction "Pin_9") (pintype "passive") (tstamp d15cecc7-901b-4287-97c8-880e04117a76))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/D4_P") (pinfunction "Pin_10") (pintype "passive") (tstamp 8afcc611-47da-48bd-82c5-7afa6ab8ca4a))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/D2_N") (pinfunction "Pin_11") (pintype "passive") (tstamp a0ea8e10-6286-442d-8b3c-e69448803e0c))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/D2_P") (pinfunction "Pin_12") (pintype "passive") (tstamp 3d2f032a-4148-48a4-b65b-ca744c696128))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 58 "/C2P_CLKP") (pinfunction "Pin_13") (pintype "passive") (tstamp 716f3149-e503-4071-961e-a1ba5111c70a))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/D0_P") (pinfunction "Pin_14") (pintype "passive") (tstamp 13dfa1d4-2401-4ec7-a729-03196a36325f))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x14_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x14_P2.54mm_Vertical" (layer "F.Cu")
(tstamp a9c9a00c-4a9d-4c1a-8eaf-d6d0bee3867b)
(at 114.2492 164.4904 180)
(descr "Through hole straight pin header, 1x14, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x14 2.54mm single row")
(property "Sheetfile" "syzygy-breakout-flash-1V8.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x14, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/6bc3a4bb-626f-4ff5-88a0-5b621c77650f")
(attr through_hole)
(fp_text reference "J8" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13864ff1-c8da-49cd-b5fe-4574363144cd)
)
(fp_text value "Conn_01x14" (at 0 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 156749f1-80e4-4027-9fc1-d8cb801fb28f)
)
(fp_text user "${REFERENCE}" (at 0 16.51 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2955e8b7-a4c3-4856-a49b-714beb438a5c)