-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEthernet extender SPI.kicad_pcb
13951 lines (13919 loc) · 543 KB
/
Ethernet extender SPI.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.599998)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power "GND")
(2 "In2.Cu" power "GND1")
(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") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Purple") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "prepreg") (thickness 0.491666) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 2" (type "core") (thickness 0.491666) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 3" (type "prepreg") (thickness 0.491666) (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 "Purple") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "OSC1")
(net 3 "Net-(C2-Pad2)")
(net 4 "+3.3V")
(net 5 "Net-(C8-Pad1)")
(net 6 "P4")
(net 7 "P5")
(net 8 "CLKOUT")
(net 9 "SI")
(net 10 "~{CS}")
(net 11 "~{INT}")
(net 12 "~{RESET}")
(net 13 "SO")
(net 14 "SCK")
(net 15 "OSC2")
(net 16 "Net-(R2-Pad2)")
(net 17 "Net-(J1-Pad12)")
(net 18 "LEDB")
(net 19 "Net-(J1-Pad9)")
(net 20 "LEDA")
(net 21 "TX+")
(net 22 "TX-")
(net 23 "RX+")
(net 24 "RX-")
(net 25 "Earth")
(net 26 "unconnected-(J2-Pad4)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 073f6dda-6f01-4314-8e08-8d158000daeb)
(at 143.002 45.692 -90)
(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" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/6e28a28f-7294-45ce-8296-819ef83b8098")
(attr smd)
(fp_text reference "C10" (at -0.988 -2.032 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88ac6f07-d308-4647-89b9-ef25276b33c9)
)
(fp_text value "0.1uF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73b8c3ea-67d7-4a86-b294-8e48044e3700)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 5856fc13-c807-4844-8837-b536126e12e3)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ba8ae7a-0f99-4915-a0c0-ed07391f2624))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9e88e3d-73ad-46e1-93f0-a5262f5246be))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 981108f1-2233-41c0-9d0a-ab2d1ad718f8))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74ddb6da-df06-460f-a1a3-1d15bda9efda))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae2fdc35-6365-436f-823c-b1a052735e22))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fddcecd0-1340-471a-a8f9-1138f0534b13))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 713d3ff9-d7ad-4be1-b128-70c9be04423e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3f9e5fb-e764-4f46-874b-5fe252084fe0))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66644d7a-c9c6-43c7-9a64-57e90cc5908d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a607fbb6-014f-40b3-a1f4-58fdd6a0768c))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 83f97265-7dd4-45a1-87df-a1bf320942bc))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "P5") (pintype "passive") (tstamp 9822470c-193a-466e-af59-c7253d7221d3))
(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 "Connector_PinSocket_1.27mm:PinSocket_1x05_P1.27mm_Vertical" (layer "F.Cu")
(tstamp 1355c672-6033-450e-9f72-056d54b1681d)
(at 147.828 57.15 180)
(descr "Through hole straight socket strip, 1x05, 1.27mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x05 1.27mm single row")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/29679ba1-26b4-457e-b6d0-51e7b7fb551b")
(attr through_hole)
(fp_text reference "J3" (at -0.025 7.097 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9334a2ad-03fc-4da3-80c1-6aee7a5a22be)
)
(fp_text value "Conn_01x05_Female" (at 0 7.215) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d35ab774-c5b6-4740-a470-52fe2a0552b2)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b580b137-c5a7-402d-8467-c2a5fd0dd5bb)
)
(fp_line (start -1.33 0.635) (end -1.33 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34a371d8-cd79-47b9-a534-f9e1601c086c))
(fp_line (start -1.33 0.635) (end -0.76 0.635)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1f2b23f-f00e-4cb4-b1f8-92090a6ac58b))
(fp_line (start -1.33 5.775) (end -0.30753 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c6aa921-c4e8-4e0c-86a2-8ee6636ccb78))
(fp_line (start 0 -0.76) (end 1.33 -0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a40b4d2-e814-4d51-a97e-1f65083f8f62))
(fp_line (start 0.30753 5.775) (end 1.33 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e64ed3c-d9ef-4221-8020-a733d151039b))
(fp_line (start 0.76 0.635) (end 1.33 0.635)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 564cb35a-d292-4632-8a1c-3eb6e3b22689))
(fp_line (start 1.33 -0.76) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f24a4bd-5fd1-41f7-9ca2-c49a2c1d2a71))
(fp_line (start 1.33 0.635) (end 1.33 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31f213a9-7a72-44d7-9d22-94e868b6010b))
(fp_line (start -1.8 -1.15) (end 1.75 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 554bc2a5-7b78-4880-b463-caf9ada16c22))
(fp_line (start -1.8 6.2) (end -1.8 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01a13718-179c-477b-a2ae-5de8b976ac99))
(fp_line (start 1.75 -1.15) (end 1.75 6.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8c1385e-f132-46fc-99ec-6005017ec9ce))
(fp_line (start 1.75 6.2) (end -1.8 6.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3235e955-0b88-41cf-b0d7-3ea51830f0ca))
(fp_line (start -1.27 -0.635) (end 0.635 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50ee6f4e-c79e-478f-acdf-d96575ee0353))
(fp_line (start -1.27 5.715) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59593741-a0d7-42c6-85be-76f2dd18754a))
(fp_line (start 0.635 -0.635) (end 1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 206fcf29-f766-4fd8-86d4-ddcb063b1c1c))
(fp_line (start 1.27 0) (end 1.27 5.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6e010c6-f318-436e-bdb2-95b7b5f4f507))
(fp_line (start 1.27 5.715) (end -1.27 5.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34ffe1d2-0c86-4e35-b07b-a4d6534a2574))
(pad "1" thru_hole rect (at 0 0 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 13 "SO") (pinfunction "Pin_1") (pintype "passive") (tstamp 32bd9ec6-e5c1-4e1f-94ed-72c81d3dccfb))
(pad "2" thru_hole oval (at 0 1.27 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 9 "SI") (pinfunction "Pin_2") (pintype "passive") (tstamp 93c70f9e-74e9-40c6-8b58-322645db3c20))
(pad "3" thru_hole oval (at 0 2.54 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 14 "SCK") (pinfunction "Pin_3") (pintype "passive") (tstamp 7c25bc1a-09e5-4345-af60-195b0a60081a))
(pad "4" thru_hole oval (at 0 3.81 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 10 "~{CS}") (pinfunction "Pin_4") (pintype "passive") (tstamp 40f402b8-7e5e-4a27-8db3-df6088024f31))
(pad "5" thru_hole oval (at 0 5.08 180) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 12 "~{RESET}") (pinfunction "Pin_5") (pintype "passive") (tstamp 2e8876ff-d86c-436e-967e-e5027d5b3e13))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_1x05_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 1acd0959-9339-430e-83be-df119e419cfb)
(at 131.826 58.661 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/eafcb484-3532-4a44-a748-0bd45b951416")
(attr smd)
(fp_text reference "R1" (at 2.105528 0.04745) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d435a9d-66d5-4259-aa69-d0816af05ede)
)
(fp_text value "1K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd0331d4-6df0-481e-8b08-e299840c0a08)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d1c64f0b-a7ec-44e8-9f92-ecc3a86bd878)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c029c82b-ff42-4c5f-b05f-f4d3c59eb1ad))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a4e8e47-84ba-4ac0-a471-84f07eb853bb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a1fac06-bcb8-4e9c-a475-6ec1d20c1057))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 620e3f7d-31f5-4b86-b109-7833df314f14))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 161b640c-e550-4c32-9d40-45dd7db31669))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d6eae13-f1cf-4bc6-90f7-2b13f775f222))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 353d074b-72a2-4e14-a3e5-1d5219ea5172))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 279d94c6-3759-4087-a08e-8f7dfccc9f47))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd34554d-f15b-4ab0-abca-cca342531ad2))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54bc5752-2822-4fa5-94cc-053c516ba3e5))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad2)") (pintype "passive") (tstamp c351d00c-ece7-4285-8d2f-2caa3dd4d1b4))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "OSC2") (pintype "passive") (tstamp 04016221-51fb-4442-8567-b360f1010ccf))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Model:QFN65P600X600X100-29N" (layer "F.Cu")
(tstamp 1d102f29-2368-47cb-8213-e45fbcd1b849)
(at 140.97 54.851 180)
(property "MANUFACTURER" "MICROCHIP")
(property "MAXIMUM_PACKAGE_HEIGHT" "1.00mm")
(property "PARTREV" "E")
(property "STANDARD" "IPC-7351B")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/669dbb60-1206-44be-a96c-7ffd99db8aa5")
(attr through_hole)
(fp_text reference "U1" (at -4.318 -3.315) (layer "F.SilkS")
(effects (font (size 0.64 0.64) (thickness 0.15)))
(tstamp 5163fd98-088c-4b58-9205-02e7f8f00448)
)
(fp_text value "ENC28J60/ML" (at 5.5344 4.2064) (layer "F.Fab")
(effects (font (size 0.64 0.64) (thickness 0.15)))
(tstamp 9eecc0ec-3cd5-485e-bff9-8e6435396758)
)
(fp_poly
(pts
(xy -1.17 -1.17)
(xy 1.17 -1.17)
(xy 1.17 1.17)
(xy -1.17 1.17)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.Paste") (tstamp af4894c7-ee2d-4743-ab72-e12b77da1731))
(fp_line (start -3 -3) (end -3 -2.425)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp f9adc4a7-b258-40ac-8a8a-61d8c0b83f1e))
(fp_line (start -3 -3) (end -2.425 -3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 7a2e7823-522a-4d5e-b0eb-3cfc7fd28ef4))
(fp_line (start -3 3) (end -3 2.425)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 2afb1730-ad7e-4f1a-9e23-178cb30e0772))
(fp_line (start -3 3) (end -2.425 3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 8e7cb68c-72c2-44dd-bcc2-7918683079e0))
(fp_line (start 3 -3) (end 2.425 -3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 2d46ad7d-f6a1-4d73-9744-fcf938d31009))
(fp_line (start 3 -3) (end 3 -2.425)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 80c33313-dc96-4b57-866f-f6180ea50e32))
(fp_line (start 3 3) (end 2.425 3)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp e7d0b4e9-97e3-47a8-b171-7a6ad5690c09))
(fp_line (start 3 3) (end 3 2.425)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 78efa943-25e5-41d5-9805-1e5a18df66f9))
(fp_circle (center -4.075 -1.95) (end -3.975 -1.95)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp f92375c1-7cf7-4b4c-83d6-16487a1595d1))
(fp_line (start -3.605 -3.605) (end 3.605 -3.605)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec3883c2-74be-4b1d-83c0-49fddaa9292f))
(fp_line (start -3.605 3.605) (end -3.605 -3.605)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76cb33bd-7f62-4c17-8831-5694c46b94f8))
(fp_line (start -3.605 3.605) (end 3.605 3.605)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a49f6b9-ab44-4480-a4ce-8ad1b4b8dfe9))
(fp_line (start 3.605 3.605) (end 3.605 -3.605)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bcb063ed-f99c-4daf-8783-248941240c02))
(fp_line (start -3 3) (end -3 -3)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 38b52a11-2b41-4458-a721-c08388f3cf32))
(fp_line (start 3 -3) (end -3 -3)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp cc11832e-991e-44a3-9209-fbfb740dd7ce))
(fp_line (start 3 3) (end -3 3)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp b8f6e5b2-78b1-436e-be39-f12d3e37f527))
(fp_line (start 3 3) (end 3 -3)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp ae53d05c-cf34-4f8e-9ef0-76a8c463b99b))
(fp_circle (center -4.075 -1.95) (end -3.975 -1.95)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 4025bd2f-90e3-4121-8b21-a86bd918a767))
(pad "1" smd roundrect (at -2.835 -1.95 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04) (tstamp cd5d59fc-5b01-458c-a4c5-3845068a96a4))
(pad "2" smd roundrect (at -2.835 -1.3 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 13 "SO") (pinfunction "SO") (pintype "output") (tstamp affada10-9804-40f8-a905-7d781cbb4d6e))
(pad "3" smd roundrect (at -2.835 -0.65 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 9 "SI") (pinfunction "SI") (pintype "input") (tstamp 5656d70d-8da2-4214-99b9-9208c66aa1de))
(pad "4" smd roundrect (at -2.835 0 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 14 "SCK") (pinfunction "SCK") (pintype "input") (tstamp 00bccae5-b9df-4c12-9e4c-fed8bb85b968))
(pad "5" smd roundrect (at -2.835 0.65 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 10 "~{CS}") (pinfunction "~{CS}") (pintype "input") (tstamp 538d2a58-4738-40db-bb08-3374ea31ba21))
(pad "6" smd roundrect (at -2.835 1.3 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 12 "~{RESET}") (pinfunction "~{RESET}") (pintype "input") (tstamp 79e010fc-b93f-424d-ba51-509f3feb21d4))
(pad "7" smd roundrect (at -2.835 1.95 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 1 "GND") (pinfunction "VSSRX") (pintype "power_in") (tstamp cfd36202-7778-4519-b928-aace51a7a614))
(pad "8" smd roundrect (at -1.95 2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 24 "RX-") (pinfunction "TPIN-") (pintype "input") (tstamp a0495b56-2297-4229-8547-a8115aa00095))
(pad "9" smd roundrect (at -1.3 2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 23 "RX+") (pinfunction "TPIN+") (pintype "input") (tstamp 30c3ac71-3103-4a43-ab45-95c19fb881f0))
(pad "10" smd roundrect (at -0.65 2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 16 "Net-(R2-Pad2)") (pinfunction "RBIAS") (pintype "input") (tstamp a8047596-cd8a-41b6-a86f-8c9dc986160f))
(pad "11" smd roundrect (at 0 2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 4 "+3.3V") (pinfunction "VDDTX") (pintype "power_in") (tstamp 8345591c-dcc4-4ca7-8dba-364ef26f9db9))
(pad "12" smd roundrect (at 0.65 2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 22 "TX-") (pinfunction "TPOUT-") (pintype "output") (tstamp 74752af1-5e34-4a8f-a103-854598d44cbd))
(pad "13" smd roundrect (at 1.3 2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 21 "TX+") (pinfunction "TPOUT+") (pintype "output") (tstamp 8ff0cded-3f12-4caf-8f49-41556669ba1c))
(pad "14" smd roundrect (at 1.95 2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 1 "GND") (pinfunction "VSSTX") (pintype "power_in") (tstamp 60b18dc8-478a-4e23-bdfe-ae4565e2b87e))
(pad "15" smd roundrect (at 2.835 1.95 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 4 "+3.3V") (pinfunction "VDDRX") (pintype "power_in") (tstamp 78075a81-5812-4493-a4cf-d4574fa7d854))
(pad "16" smd roundrect (at 2.835 1.3 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 4 "+3.3V") (pinfunction "VDDPLL") (pintype "power_in") (tstamp 450aa3c7-5263-4a28-b171-99ecd722985a))
(pad "17" smd roundrect (at 2.835 0.65 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 1 "GND") (pinfunction "VSSPLL") (pintype "power_in") (tstamp bb8fdbfe-2821-42c2-b066-12bc5da15bd4))
(pad "18" smd roundrect (at 2.835 0 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 1 "GND") (pinfunction "VSSOSC") (pintype "power_in") (tstamp 34ddc52e-cf22-40af-acd3-750e8d7daedd))
(pad "19" smd roundrect (at 2.835 -0.65 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 2 "OSC1") (pinfunction "OSC1") (pintype "input") (tstamp ee3de580-7170-4268-a8f1-2aa5a790ad9e))
(pad "20" smd roundrect (at 2.835 -1.3 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 15 "OSC2") (pinfunction "OSC2") (pintype "output") (tstamp 6b062618-257b-4af1-b149-fa157360931c))
(pad "21" smd roundrect (at 2.835 -1.95 180) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 4 "+3.3V") (pinfunction "VDDOSC") (pintype "power_in") (tstamp e71d23f0-f845-4da5-a097-90ac80f5930e))
(pad "22" smd roundrect (at 1.95 -2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 18 "LEDB") (pinfunction "LEDB") (pintype "output") (tstamp c67a871e-028e-465f-8a99-5c25d5b3f536))
(pad "23" smd roundrect (at 1.3 -2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 20 "LEDA") (pinfunction "LEDA") (pintype "output") (tstamp adbeb9ac-1335-404d-82e5-d39736796651))
(pad "24" smd roundrect (at 0.65 -2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 4 "+3.3V") (pinfunction "VDD") (pintype "power_in") (tstamp 377dd41b-f53c-42a6-87e4-2c99c885f024))
(pad "25" smd roundrect (at 0 -2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 5 "Net-(C8-Pad1)") (pinfunction "VCAP") (pintype "power_in") (tstamp c1956a50-e2ea-4fd2-b822-218067cd95d9))
(pad "26" smd roundrect (at -0.65 -2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 3194f706-1baa-4e4a-afc5-63aad363ad40))
(pad "27" smd roundrect (at -1.3 -2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 8 "CLKOUT") (pinfunction "CLKOUT") (pintype "output") (tstamp 55cfedf7-2652-4a4d-9c89-6352a2de52ca))
(pad "28" smd roundrect (at -1.95 -2.835 270) (size 1.04 0.31) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.04)
(net 11 "~{INT}") (pinfunction "~{INT}") (pintype "output") (tstamp 8d46649b-6317-4566-aaa1-b3d0cd15302f))
(pad "29" smd rect (at 0 0 180) (size 3.7 3.7) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "EXP") (pintype "passive") (tstamp 5a77615d-ead0-441a-9b31-12a70751ec25))
(model "${KIPRJMOD}/Model/ENC28J60_ML.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
(model "D:/Electronics/KiCad/Ethernet extender SPI/Model/ENC28J60_ML.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 1d2dd272-9677-427c-99cd-05706f0397d8)
(at 143.002 48.26 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/b2195eef-a747-434e-9d0e-1856158ca9ba")
(attr smd)
(fp_text reference "R7" (at -2.223197 0.508 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6fd2c8e-57d0-4f88-8a87-1edea63bf6f9)
)
(fp_text value "49.9R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09beac35-8626-46cd-bad7-9b0bc3dbaf19)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 41709314-6d71-48d9-beef-f8617a4e2368)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ce14462-29d7-472a-8669-7193737490d7))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 298c9aae-75ba-4c48-9adf-ff9830fd9271))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d85f1bf-1c7d-423f-a690-8c7b6e0d52f7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d847a0bd-7ddc-4ff7-876a-9cb29d3d35cd))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de1866d9-91ec-4e38-b056-7309b9a31d73))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bb8efbd-3924-440e-a4b5-29d582cdf692))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2984c4c4-78df-4259-903f-577ec715f0a9))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25247f0a-7c65-4dea-91e8-349a09475c9f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4bb645e8-eeaf-4c96-b3a5-379726867879))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f928fdf-b2e8-4957-bd8d-59d8bac74259))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "RX+") (pintype "passive") (tstamp 5d1d2be6-a530-43fe-92ea-2474721a2b1d))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "P5") (pintype "passive") (tstamp 2ee42a9f-5ae9-492f-9496-5399d5c0f555))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 2bc60a2e-e57b-428c-8af3-237b3fbb54d2)
(at 133.35 44.387 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/1ea89852-c3b2-4ac8-9adc-30d49bd0522c")
(attr smd)
(fp_text reference "R3" (at -0.006781 1.524 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36bd6c8d-5088-483c-9e06-4e2fc5213bea)
)
(fp_text value "330R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54b1a98a-b98c-4521-842f-b177b92e3f1b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d913bddc-2b23-4ac0-8b9c-9acdda0bab2c)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9816a8a3-65ec-4f02-b503-3efc659697ec))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e7c5e20-8ddf-41a6-8b94-1cfd0076519f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36cf2be6-107a-453f-acc1-34004631b6c1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e5417ae-37d5-4d0e-b718-c3eddc222558))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84350e6b-493b-451e-b9bc-1987b3024b13))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24a8241c-e294-4562-8d2d-d195db42bc69))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d653e8a-c43e-4bc7-b70f-8c74272ec83a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bc955c3-63b8-4f44-b54b-d98fc877156b))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5da9ed66-a216-4feb-b05e-6b5367efdb8d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b35cd7ef-7e8f-422a-a982-66e6a97ab261))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(J1-Pad12)") (pintype "passive") (tstamp 7137137a-1e8a-4f5b-9008-588017270cb9))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "LEDB") (pintype "passive") (tstamp 9b44b578-7fd3-427a-b763-1d66bd4896a0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 389468ef-668d-4e9f-9573-33efb63f32f3)
(at 137.922 59.464 90)
(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" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/4a37bfc0-b95c-4ced-9042-f960a436f4f3")
(attr smd)
(fp_text reference "C3" (at -1.757974 0.20615 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa7626d0-40f3-47d2-9d50-977c34aa9f34)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6df3b19d-e87c-43b5-9adf-9e5a2b17778b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 0d6959c0-9e35-4d06-82c6-af25f19545ef)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fb60a0c-5f97-426e-acdc-e2925b2eecfa))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29a2ced5-66ac-4e7b-943d-450ff632f1b0))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7761b009-fc3b-4d47-8283-443c2f23169c))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cbe1d378-82b8-4489-ad33-c6ba4afd6c76))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2658018-8a29-4dbc-a1f3-0629e2ef55b5))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf39184c-a93a-4a90-a8f5-a8b47e315c06))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c87d5bfe-da69-461c-96d4-fcfd69e89642))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f3025e2-2e63-4778-97ae-ebf01498cab6))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53e48b43-c95b-47eb-b09a-c0b7b7a6439e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec394177-7dad-4e1d-88cf-51e4f20c48ee))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp cf15b697-cbf2-4cb2-b57b-b3b8a46db2ee))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3.3V") (pintype "passive") (tstamp cadfadc1-4c67-4acf-b26f-c984fdbb61d6))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 3c17cf39-b65a-463a-bb75-77e9ccb201ad)
(at 147.828 44.387 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/1cdc3580-685c-4042-9e2f-810d3339066b")
(attr smd)
(fp_text reference "R4" (at -1.207 -1.778 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 624bfc9c-f270-4e0c-8c2c-d8e357f86b87)
)
(fp_text value "330R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 341fc75a-7fc3-4916-9573-fb1939818350)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e52484ba-e561-4dcc-8121-38d7fc3f540d)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30a7892d-6590-40f6-b319-81c98e4f6edd))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3297a62c-ca1e-4e2c-b48a-4247295fb72e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66af7490-2299-44c1-be1a-6dcb04fbcccc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f341194-6ba9-4467-ac13-3862f9374420))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71204607-15d1-4f91-94e8-678e02dd9e4d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 105bb648-7678-4a6c-b4a3-814b79ff3886))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbb2b4c2-7d65-4847-96f3-78ef62450e56))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36aab441-2357-4de0-9625-209bb406c82f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbbf70b1-567a-45f9-abef-63ef61e8f596))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3befb71-d36e-4dc7-9b55-9669e07206f9))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(J1-Pad9)") (pintype "passive") (tstamp 9b35e5b8-118a-4b4a-a193-db3924054944))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "LEDA") (pintype "passive") (tstamp d58b2f3d-78b6-4555-bd2c-0c11f3b926f6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0603_1608Metric" (layer "F.Cu")
(tstamp 4fb95507-7f55-413c-b248-dea837e7d4cd)
(at 136.906 44.958 -90)
(descr "Inductor 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 "inductor")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/34f14e6b-aaf6-40b8-ab81-ed21960e62ce")
(attr smd)
(fp_text reference "FB1" (at 0 1.524 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59330d66-0513-4c03-b416-22f51fc9d0fc)
)
(fp_text value "20MHz" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db5cb47e-9392-4dd8-9720-dc2b64298788)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 74c686a7-a14d-49a7-bb80-1ecf13db4882)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a51bf74-9189-42c2-a94b-325cfef68691))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f05ae6dc-eb2a-4cfa-82e7-308c5d75a871))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4260657f-95f3-4ca7-944c-5fc849f41845))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 124ad011-53f4-4874-8da5-a7db34c639dc))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40eec350-8066-4495-b595-4214cb8e5f11))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f385a962-2599-43eb-a35f-49da848064b4))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba12b041-eb4a-4a83-906b-ce4b1c65edb5))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a2cf74f-bd2e-4100-ba58-e5eea80ef480))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88782450-d548-4323-82bd-bb3ac087492c))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b96c45fe-2704-4815-9497-6ff111e12c60))
(pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3.3V") (pintype "passive") (tstamp 3e46a36c-1e45-4fad-8870-5c9ee5e419cf))
(pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "P4") (pintype "passive") (tstamp be1b59ff-8926-4e31-a1a6-fe6a09f82a19))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 5e97934c-2686-45ff-b3bf-f518bb7ad1cc)
(at 139.446 48.26 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/7f691a46-5416-4750-b6d2-9d99c74545c2")
(attr smd)
(fp_text reference "R6" (at 2.214226 0.254 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e3f7102-5710-4de5-8625-841ba5b8c0d1)
)
(fp_text value "49.9R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 268027fe-7178-4133-a5f0-47db95861b78)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4a129cc7-974c-44c5-91de-682d548e429a)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2abb29fa-2495-4d09-9a20-8b9ee2195b58))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 454ee8fc-8172-4efc-b384-f1fd7e92dbed))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 048bb71b-6999-4dee-a316-1a721248e416))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea6cec84-a25e-482e-bf28-24cd1c78b745))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b428de9-5b77-461e-9287-9132fdd827da))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 250f8a2a-7f68-4d25-a4fa-5dd0f1b89e0e))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 069178e3-d653-4bc0-83fe-5906fd67d5b8))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd874250-a8bc-4d01-872f-14118560d14d))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2420373-9e83-4dfd-a643-5aab03fb0374))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7fd042b6-66e3-4ac9-8dfb-57aeeacb60af))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "P4") (pintype "passive") (tstamp eddaf90e-efe7-4964-a2fa-353f8fd44002))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "TX-") (pintype "passive") (tstamp 70d83bb8-bcd1-429a-96e5-e0b0d49c3735))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Model:HANRUN_HR911105A" (layer "F.Cu")
(tstamp 8915144b-e007-4722-a53d-1a2894271872)
(at 140.716 31.242)
(property "AVAILABILITY" "Unavailable")
(property "DESCRIPTION" "DIP RJ45 Connector;")
(property "MF" "HanRun")
(property "MP" "HR911105A")
(property "PACKAGE" "None")
(property "PARTREV" "A")
(property "PRICE" "None")
(property "STANDARD" "Manufacturer Recommendation")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/d50ca55e-63bc-43f3-a00f-b79b78e4a5f4")
(attr through_hole)
(fp_text reference "J1" (at 5.334 11.938) (layer "F.SilkS")
(effects (font (size 1.607654 1.607654) (thickness 0.15)))
(tstamp 60e02a69-918d-4a1e-bd56-77b409ddfb1f)
)
(fp_text value "HR911105A" (at 8.02765 12.354385) (layer "F.Fab")
(effects (font (size 1.605063 1.605063) (thickness 0.15)))
(tstamp f5aad70d-16ce-4f48-906a-795da596274a)
)
(fp_line (start -8 -10.92) (end -8 1.5)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 2ef50bc1-4bcd-47f3-827a-9664bf56cccb))
(fp_line (start -8 4.6) (end -8 10.48)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 36965f47-d3bb-44d9-a286-2ba3da8d4bcd))
(fp_line (start 8 -10.92) (end -8 -10.92)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 590964a3-ae17-4ea2-a5f3-069bdcf9eb2e))
(fp_line (start 8 -10.92) (end 8 1.5)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 043a5050-8240-4986-a45c-cc7f7c7c8fb1))
(fp_line (start 8 4.6) (end 8 10.48)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp ed095905-da34-4e6e-9678-53b595e13951))
(fp_line (start 8 10.48) (end -8 10.48)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp dbd7472b-c041-45a4-92c5-7c864b6bc9cc))
(fp_circle (center 9 6.3) (end 9.15 6.3)
(stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp f0df8026-00d7-41b3-9a40-be3bd62e6397))
(fp_line (start -9.25 -11.17) (end -9.25 10.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6bfae78-d619-41fc-a320-9056824562b5))
(fp_line (start -9.25 10.73) (end 9.25 10.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a2418a7-89b4-4676-8cf6-004ed98d5a86))
(fp_line (start 9.25 -11.17) (end -9.25 -11.17)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5eb334f2-b46f-473f-80fc-cd0eef7d12bf))
(fp_line (start 9.25 10.73) (end 9.25 -11.17)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc2243d6-0d53-48e8-9a42-ee311c4af387))
(fp_line (start -8 -10.92) (end -8 10.48)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp ba580c9e-489a-45e2-81a9-65aa664b8946))
(fp_line (start -8 10.48) (end 8 10.48)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 372bfa70-c65f-4c18-b984-fbf99ee5ee1f))
(fp_line (start 8 -10.92) (end -8 -10.92)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp cf095135-e9d5-49c2-935c-1be7078775d1))
(fp_line (start 8 10.48) (end 8 -10.92)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp d797f447-62af-482a-ae66-407eba3efb02))
(fp_circle (center 5.8 6.3) (end 5.95 6.3)
(stroke (width 0.3) (type solid)) (fill none) (layer "F.Fab") (tstamp 2d7b6cc6-1a1a-4c8e-b31a-a97173fe7852))
(pad "" np_thru_hole circle (at -5.715 0) (size 3.25 3.25) (drill 3.25) (layers "*.Cu" "*.Mask") (tstamp f2539b66-9c94-48a1-be15-b72efe625bec))
(pad "" np_thru_hole circle (at 5.715 0) (size 3.25 3.25) (drill 3.25) (layers "*.Cu" "*.Mask") (tstamp 130bbb32-b1ba-4ff6-b0dd-46e4597cc4bb))
(pad "1" thru_hole rect (at 4.45 6.35) (size 1.398 1.398) (drill 0.89) (layers "*.Cu" "*.Mask")
(net 21 "TX+") (pintype "passive") (tstamp f0cb3f59-7c1b-4f7c-9a66-ee64b1030aeb))
(pad "2" thru_hole circle (at 3.18 8.89) (size 1.398 1.398) (drill 0.89) (layers "*.Cu" "*.Mask")
(net 22 "TX-") (pintype "passive") (tstamp 862ff9ca-4dd3-4981-892f-696467085ed3))
(pad "3" thru_hole circle (at 1.91 6.35) (size 1.398 1.398) (drill 0.89) (layers "*.Cu" "*.Mask")
(net 23 "RX+") (pintype "passive") (tstamp 9cc7f42d-8369-4c14-93cf-d25e126119f9))
(pad "4" thru_hole circle (at 0.64 8.89) (size 1.398 1.398) (drill 0.89) (layers "*.Cu" "*.Mask")
(net 6 "P4") (pintype "passive") (tstamp f1e90ebe-5cb8-445b-a55d-14923b789515))
(pad "5" thru_hole circle (at -0.63 6.35) (size 1.398 1.398) (drill 0.89) (layers "*.Cu" "*.Mask")
(net 7 "P5") (pintype "passive") (tstamp 1a6cd899-829a-4971-a10d-cfd0b67ecf75))
(pad "6" thru_hole circle (at -1.9 8.89) (size 1.398 1.398) (drill 0.89) (layers "*.Cu" "*.Mask")
(net 24 "RX-") (pintype "passive") (tstamp 459c3d41-a1f1-4c25-91a1-17c777534ac8))
(pad "7" thru_hole circle (at -3.17 6.35) (size 1.398 1.398) (drill 0.89) (layers "*.Cu" "*.Mask") (tstamp ed1d50c0-76d8-4d0a-b0f3-fef2db6a66bb))
(pad "8" thru_hole circle (at -4.44 8.89) (size 1.398 1.398) (drill 0.89) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "power_in") (tstamp 4a63aa5b-e918-467c-9da0-5d6ed9554298))
(pad "9" thru_hole circle (at 6.625 -4.9) (size 1.53 1.53) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 19 "Net-(J1-Pad9)") (pintype "passive") (tstamp 3d825ed5-86da-4c94-a790-3fa86377eb4d))
(pad "10" thru_hole circle (at 4.085 -4.9) (size 1.53 1.53) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "passive") (tstamp 24dd0cb4-3918-4ddf-82df-1ff55e64a37f))
(pad "11" thru_hole circle (at -4.085 -4.9) (size 1.53 1.53) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "passive") (tstamp f54bea46-3827-4164-b2a3-7103880d5528))
(pad "12" thru_hole circle (at -6.625 -4.9) (size 1.53 1.53) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 17 "Net-(J1-Pad12)") (pintype "passive") (tstamp bfcbd469-67ca-416a-b333-f5917c49bcab))
(pad "15" thru_hole circle (at 7.745 3.05) (size 2.445 2.445) (drill 1.63) (layers "*.Cu" "*.Mask")
(net 25 "Earth") (pinfunction "SHIELD") (pintype "passive") (tstamp 7eb9e965-2240-4031-95e5-86a2280fe882))
(pad "16" thru_hole circle (at -7.745 3.05) (size 2.445 2.445) (drill 1.63) (layers "*.Cu" "*.Mask")
(net 25 "Earth") (pinfunction "SHIELD") (pintype "passive") (tstamp 1a53695b-561e-44eb-9504-780ae05e2812))
(model "${KIPRJMOD}/Model/HR911105A.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 90 180 180))
)
(model "D:/Electronics/KiCad/Ethernet extender SPI/Model/HR911105A.step"
(offset (xyz 0 -3 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Connector_PinSocket_1.27mm:PinSocket_1x05_P1.27mm_Vertical" (layer "F.Cu")
(tstamp 935a45ba-6ecb-4020-97ed-ee5ac74531ec)
(at 145.273 62.001 -90)
(descr "Through hole straight socket strip, 1x05, 1.27mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x05 1.27mm single row")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/9ecf783e-d61e-4cf1-8a55-29f7ac09a643")
(attr through_hole)
(fp_text reference "J2" (at -0.025 -2.047) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20b7288a-5f45-4507-aa84-22b3fb8362c8)
)
(fp_text value "Conn_01x05_Female" (at 0 7.215 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bba2e5e1-4120-43fe-9621-911591613f0c)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33e437bf-f786-4254-837f-ed937ec80329)
)
(fp_line (start -1.33 0.635) (end -1.33 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bba376a8-2dcf-4160-92d4-399b6adc33be))
(fp_line (start -1.33 0.635) (end -0.76 0.635)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98034ed7-5913-4222-a6ad-9028ea700116))
(fp_line (start -1.33 5.775) (end -0.30753 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4c44d6f-c09f-498b-9e9b-d2dcbf835d5c))
(fp_line (start 0 -0.76) (end 1.33 -0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1890c30f-3598-4591-8290-1c14372c598d))
(fp_line (start 0.30753 5.775) (end 1.33 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6ddcdf6-d77b-493f-8959-6df1e6583c53))
(fp_line (start 0.76 0.635) (end 1.33 0.635)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90bf696b-5149-414a-874c-774b575f6035))
(fp_line (start 1.33 -0.76) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4314f3b6-bdcc-4981-a97f-deee267eb1f0))
(fp_line (start 1.33 0.635) (end 1.33 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a37938b2-56c6-4588-aeb6-028691a2a3b4))
(fp_line (start -1.8 -1.15) (end 1.75 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3828b50c-d515-4f5c-b8a9-244744552953))
(fp_line (start -1.8 6.2) (end -1.8 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73c7532a-88ba-4889-a003-e979956a730c))
(fp_line (start 1.75 -1.15) (end 1.75 6.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6b9c011-135b-4741-8dd7-b1c1bf8042ee))
(fp_line (start 1.75 6.2) (end -1.8 6.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22d7066a-9f4d-4405-b72a-c4f4781d9d23))
(fp_line (start -1.27 -0.635) (end 0.635 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91c2326f-0151-46a0-9f8b-95255dd63da2))
(fp_line (start -1.27 5.715) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 382b8a5f-601e-457c-b770-8fb4e47242c2))
(fp_line (start 0.635 -0.635) (end 1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41297fe4-f451-4b1d-b0a8-516c1523d41f))
(fp_line (start 1.27 0) (end 1.27 5.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75864943-f8e0-4f81-ac04-e37cfb5b7fbe))
(fp_line (start 1.27 5.715) (end -1.27 5.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c27f388-13f1-4f2c-a84c-981645fe8286))
(pad "1" thru_hole rect (at 0 0 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 51bdd89d-6f01-4ec9-ad90-b51127569147))
(pad "2" thru_hole oval (at 0 1.27 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 11 "~{INT}") (pinfunction "Pin_2") (pintype "passive") (tstamp 423a750d-3fcf-4fbb-ad1b-19cb047c2b73))
(pad "3" thru_hole oval (at 0 2.54 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 8 "CLKOUT") (pinfunction "Pin_3") (pintype "passive") (tstamp d3d181a6-8f30-4b90-bde3-108441d9c20b))
(pad "4" thru_hole oval (at 0 3.81 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(J2-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (tstamp 3398e7b8-cffa-45bf-aad9-6f6b0257c449))
(pad "5" thru_hole oval (at 0 5.08 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 4 "+3.3V") (pinfunction "Pin_5") (pintype "passive") (tstamp 5fba63db-ef80-4cdd-8907-934e67f3d5ce))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_1x05_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 9561b954-0e27-4a17-8476-c766a3803714)
(at 141.224 48.26 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/b41546eb-c773-47cc-9968-cdaed4ed92da")
(attr smd)
(fp_text reference "R2" (at 2.183522 -0.199372 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9a28c63-371f-4987-9a27-441d728a1055)
)
(fp_text value "2.32K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f18e0bd-150c-4ca5-b3cd-d3eb52a3c933)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cc03be51-d8c9-4ff2-8cc3-37174386f0fc)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 604c7a4e-327f-41b1-af07-7db3fab4e35e))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5688d765-9cb6-47af-90c7-ede9bf26030f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 50fb751f-fd8a-4692-b24d-4eee119f6b3d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb9493d4-d3cc-4ef5-a0be-5b63807031b2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 316847a4-1961-4477-9138-21d293eb8cca))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47a11f7b-8790-44b2-9645-ba9c62a5ba5c))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 034cb764-fd40-423b-a083-32c5b7eefff9))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc66a0e5-8c9a-4a6f-8db9-aab61bb4749e))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cd29ee5-5461-4c51-9a35-930e1e292a08))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7385983-ef79-43d7-9abe-2361b4322224))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c766e164-4e25-4da8-8ea5-3f748c396d99))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(R2-Pad2)") (pintype "passive") (tstamp c00d00e6-90ca-4fb3-a2fb-475140aa6e53))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 9aec2320-c1db-4be8-8f96-5d06b86f003e)
(at 145.288 48.26 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Ethernet extender SPI.kicad_sch")
(property "Sheetname" "")
(path "/9d731ab7-cd11-4e07-aaff-3230d2ad8884")
(attr smd)
(fp_text reference "R8" (at -2.286 0.508 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40eac117-5e14-4e53-bff8-04bac6d943d1)
)
(fp_text value "49.9R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0290b4d-3d83-4a3d-ac13-f415c53cdf5e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e03f61f2-7dbb-4723-a1bf-1b7b24e8b863)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9fbef15-e3fe-40d5-bc00-ea9cf2a7c2c0))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a52bec5-f909-4ae0-b6cf-dbbe9277cd8b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c4eb5e4-75a9-494e-a67a-d39ab17cfe3d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d82666d-b9bc-400f-9cc4-fe81757c8906))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ca658cd-0d64-43de-b415-30ab4ee25aad))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a905be0-80ec-4f4d-9256-02fe8335fa1f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4fd356b-8066-48e7-badd-30a862847000))