-
Notifications
You must be signed in to change notification settings - Fork 3
/
rs485_SN65HVD75_TestBoard.kicad_pcb
3768 lines (3750 loc) · 147 KB
/
rs485_SN65HVD75_TestBoard.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")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 154.04 100.51)
(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 4)
(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 "+3.3V")
(net 2 "GND")
(net 3 "/UART_WR")
(net 4 "/UART_TX")
(net 5 "/UART_RX")
(net 6 "/RS485_A")
(net 7 "/RS485_B")
(net 8 "Net-(U1-A)")
(net 9 "Net-(U1-B)")
(net 10 "+5V")
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 2e97f9ea-8c29-4aba-98a8-b05a2b65727e)
(at 174.26 96.32 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/570f2fe8-65d5-491b-ae02-42e061eafc60")
(attr smd)
(fp_text reference "R3" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5cbada5-ed88-44c7-b7af-fc9ec05afbf8)
)
(fp_text value "10R" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14eb7fd3-1de6-4a76-8a59-8364dd028b27)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 27dfa1e7-53be-4be6-b05e-16b199d3e33f)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4beb16a8-edbc-41f7-b8bc-9de31296bc87))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0392799a-3607-4539-b8e0-a576029a925a))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7adabeea-2d36-415a-bbc7-6b4aa7a5ea04))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba9cc017-4e93-44b4-9ec6-98c1f570f857))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 048bfb70-e919-4238-84c5-aa826cd111ae))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6da5bf27-af5c-4a5d-8f7e-af6795bc4cee))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92a8f23d-fa1c-4195-ab06-31a8b24d8f73))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c2a3dfc-d999-44f1-a4e6-d9ba79487ef2))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b732c67-a2f0-4c84-a6b2-86a7ff837bb8))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64b7cec0-bbb0-460d-a1ef-29ce30cca141))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/RS485_A") (pintype "passive") (tstamp 722340d9-906c-450a-89ee-f9b7ffd2dc9e))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(U1-A)") (pintype "passive") (tstamp ea86466a-8a6f-45e8-a14a-4ee9f0eacb4c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 2edd297a-fe84-49c7-a52e-98342d66be02)
(at 173.29 92.595 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/ee657b17-9bb8-4897-82da-58871300a8af")
(attr smd)
(fp_text reference "C1" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c08d40a-e217-40c4-af7c-ea2e3ceaa042)
)
(fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df755372-0c49-4a6f-a072-4df09b2a2519)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4ce82e3f-ec9d-4a79-84e5-0374876fc9dc)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b41dcc66-c5d6-41c6-bd02-c842dba99541))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d07f3202-f0fb-4445-86e5-4c9cb9a1029a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e022d49-f6f0-4f0d-9839-9595c2b03a5d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9ba03a76-ee3a-427f-803e-c9de6805fdce))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eedd4108-4155-4370-9901-88893f8130fb))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e43f3271-3437-40dc-9bf7-5b7ad37b97e5))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0468fd83-8db8-4c10-8d05-7bcbced15e3a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 303534ca-88a4-44fc-9b9b-ce4bdd3bfe93))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30e9ecb2-959e-471e-8c90-63cb47a5764e))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a608c4dd-2fbf-4a8f-ab13-18a9b13fc350))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pintype "passive") (tstamp 823552cf-b249-4799-b2d3-b6edad08d22c))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d10b0884-e918-45e4-8dd0-d42a5cf9362e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 4aa36003-013e-44f2-851d-34ab58c754fb)
(at 176.8 95.685 -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" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/64c587c1-13b4-4976-ad8c-b435a391089f")
(attr smd)
(fp_text reference "R5" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bcca537-49f3-4270-b7f0-824fed2a3a15)
)
(fp_text value "120R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02a6c037-c5f6-48fe-817f-aa6a4239c135)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fa1ade80-d3ec-48ea-b56e-29bc666d9d3f)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd32ca87-e8a8-4c90-ac26-6839ae95dee1))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08bfc098-5546-4021-a032-c6756fc7ab68))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bbfe40b-3519-4f30-8937-0094911673b4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 515588a0-6a29-4187-a9bc-860f7fb3036f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54c36c6a-ea41-4bb3-b1b6-26bbfcd69db5))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9515ec62-bf9a-4384-b8a4-53ae5262d951))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db0b865c-9175-48d5-b6f4-601c9829ec0d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a557fa7-fc71-401a-aecd-28c28b90dec5))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d079ef82-f2a8-4106-a135-28651acb86a7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1084c84-8a71-43e0-8b08-d50241e365fe))
(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 7 "/RS485_B") (pintype "passive") (tstamp f0dd7c31-62f0-446a-83b9-3a829a4dd6ea))
(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 6 "/RS485_A") (pintype "passive") (tstamp ea887d91-a3eb-4fe9-8379-58d4f51863ff))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 55b52ad3-02ea-475e-9a92-03ed9d54e4db)
(at 180.73 89.35)
(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" "rs485_SN65HVD75_TestBoard.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 "/733836bc-166b-4dc2-8679-2705b47d78b1")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a172d97d-835f-4dec-bdf3-d7727533e2ae)
)
(fp_text value "Conn_01x04" (at 0 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42c20cce-65c1-4f4a-9763-76a5cc9f6f42)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7707265e-d8e4-4097-9cf9-efa5d8867be0)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e4e3764-a3ee-4bae-a1e8-703808f104a5))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1214169-105a-454b-880d-14f8346be5b1))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d3f4364-a5a1-404d-9aa9-ed773f31a43c))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22a25b6d-c4a1-4e27-9ea7-4dcb9412982c))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dac1fdc-70cb-4621-8b13-fc5bf61287f4))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ae1c892-8717-4e82-b09a-ab5dec53e733))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4faace47-3398-4858-b389-9da3bdb52154))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba807263-701c-4087-9692-2924c862b9b2))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a21fe205-68bd-4a1b-8192-5a92f9e1be9c))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ad8402c-bc54-4367-a989-f9257c719c11))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c20569c-aa32-40b3-984f-5bb51ba723d0))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7dbbe38b-8236-4f70-8592-58e046663ce1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 813d1f8f-f8ef-42b6-99bb-1adeb0c00e68))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc1a7e58-7b61-455d-bcd1-d44e0d43b572))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93d4b66d-1a45-47d0-b34e-c336c4a929cd))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp d1160cd4-d86e-4860-988c-e8c6b21392fb))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 2451919f-ca48-4d2c-8a31-1586bc09c615))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/RS485_B") (pinfunction "Pin_3") (pintype "passive") (tstamp 9511ccd0-4fca-4dec-ba93-69e4cd4ef37b))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/RS485_A") (pinfunction "Pin_4") (pintype "passive") (tstamp 3f055fa8-3802-48c6-ad28-d52d304269de))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 5c80f8d8-3a6f-40ce-b757-21ecf52a51fa)
(at 157.03 85.51)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/dcbd0713-3411-406d-b409-5aa319a00f26")
(attr through_hole)
(fp_text reference "J4" (at 2.96 -0.6) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fef71ec2-51c6-436d-bbbc-bca54e4a6cd3)
)
(fp_text value "Conn_01x06" (at 0 15.03) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3682fdf-e9b6-40ca-bd2a-47a16bcb468a)
)
(fp_text user "${REFERENCE}" (at 0 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 782eb5b6-aa3d-4e12-8419-e647384a24d7)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1b0604e-17ea-402d-94e8-76b4fdf05c58))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9552e303-029f-4236-a2ed-441bea2ebf67))
(fp_line (start -1.33 1.27) (end -1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b217d66-e2ba-4997-b56e-fe58b54b558c))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af6cf027-221b-4e0b-826f-9c45df788686))
(fp_line (start -1.33 14.03) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b488807-1dae-4a94-b1f8-34b1be1dd692))
(fp_line (start 1.33 1.27) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d49d9be-259a-4802-9027-499faf74009f))
(fp_line (start -1.8 -1.8) (end -1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42b1eedd-f523-4138-b728-b41d1b260e9d))
(fp_line (start -1.8 14.5) (end 1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2ccbb72-58d0-4535-b940-c7148cde6903))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7300eed3-f733-42db-a0e7-9955a0805032))
(fp_line (start 1.8 14.5) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac6705c8-4598-45cb-816a-4e702683c6bb))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c62600ea-15e4-440b-ba49-c272fd21d5bd))
(fp_line (start -1.27 13.97) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f727587e-3a63-4f06-bd4b-1f7abd26ac9e))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3fb21dd6-ae1a-4045-a08a-eecf6fb95404))
(fp_line (start 1.27 -1.27) (end 1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0383be16-6238-4606-8ba0-31d00ebdcc70))
(fp_line (start 1.27 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 156edce3-e6b1-4045-822d-010dd3d2655b))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 53c4c11f-5c68-4964-b00e-080e4ef689b4))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+3.3V") (pinfunction "Pin_2") (pintype "passive") (tstamp ca2f9f8d-5a09-4f8e-bfbd-13f9bffcb254))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 615dd79e-2cab-40e7-8dfd-69b72389035c))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/UART_RX") (pinfunction "Pin_4") (pintype "passive") (tstamp 469a9166-7d67-4a44-aa0e-7052750f98b3))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "/UART_WR") (pinfunction "Pin_5") (pintype "passive") (tstamp 0779ec02-26c5-4b47-8519-275387a2af92))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "/UART_TX") (pinfunction "Pin_6") (pintype "passive") (tstamp 3e607bc5-f4e4-40c6-ad65-c76130f1b4af))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_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 5d0ce920-8f6e-4ef3-b654-57cb4c4febeb)
(at 162.005 95.05)
(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" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/12c591f9-b41a-4005-a1b3-15f74c7ff12f")
(attr smd)
(fp_text reference "R2" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85a76cd7-2163-41d5-9b75-1599abc5c30e)
)
(fp_text value "10K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6320dc2f-1ade-4e98-bdbe-0cf5fa8bcf65)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 333c9f46-0c0a-4af9-9795-d3d076a3c307)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebea9038-f018-4451-93a7-c483a6ec73f7))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e129540d-f1d7-4ff6-89a1-63c541b370e4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f98260d2-5c8c-4ca7-9e13-9cf3ab4b4927))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d09cf6e-75fc-45f6-bfb2-9b1914c82282))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ff8e55c-91db-48f2-a86b-16a9e2a93b82))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f0d4454-928e-4a03-a065-4e830931bb60))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77d4fbef-b823-4588-88d9-1bff585f121a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e87838da-6fd7-485f-b8f0-0616889ed1d1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cf837e1-d422-4936-bbd7-f35f2ae10215))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1dd46eec-ccc7-45a8-99d5-c3e90ac8bb0e))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e13d5908-4dd3-453e-879e-1080a73f2b50))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/UART_WR") (pintype "passive") (tstamp f6973184-7800-4e57-8ab6-a78034bc74e2))
(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 8b1819d5-c525-4e54-b7b3-c4ddf8477024)
(at 166.957 91.748 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/7924961f-ab09-4d4d-bae6-f6eaa860868c")
(attr smd)
(fp_text reference "R1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64f67cc8-0fea-469b-9a80-ce43049d243d)
)
(fp_text value "10K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3052ec9-f159-4265-9eda-7c8ee0bc4a1f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d3ea5299-d2dd-4cf6-9d58-56ff85473d6c)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 104af4ce-8e6e-4815-a017-b55e613b7ad4))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3262b85-8739-4767-9c5f-3f610cab9d4b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c10c13a4-c914-4fb1-a937-aa4ae3a73dfd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8cd5483-db6e-4533-8c48-ade2c1b2b709))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80545962-356a-4746-bde5-68f0a7c90d3d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32b1f0c1-8826-4f7b-8735-f9f70642477a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fba80e26-0455-4b89-bbb3-c678a3a325f7))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cd13736-ec18-44f1-af66-5a14fbee78af))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41face40-155d-4a7d-ab9d-81a221374279))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7e45819-2cb0-481e-9d4b-d61e3ecef373))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pintype "passive") (tstamp 3fd472fc-9826-480c-83a1-0cc9a25f413d))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/UART_RX") (pintype "passive") (tstamp df1fe3f3-20bb-4be8-9ce4-85e0fd526311))
(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 a937d3a9-56f2-4310-a1d6-59ffe501a62a)
(at 175.715 93.13)
(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" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/082c1be6-7186-4f32-8319-d35517301cb7")
(attr smd)
(fp_text reference "R7" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 04ae59ae-7f27-4ac5-8c8f-244bc3a946db)
)
(fp_text value "10K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f2398ab-e1cd-4f0e-8ba8-1b796c98cfe2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cd251074-0a32-4dd4-be51-9172b827f02b)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9076302a-8cfd-456d-9a27-20324314b2ee))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa45c0f2-a851-4bab-8b80-51405c3c3342))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b32c0c76-9b7d-46e8-836b-36d729bf4e0d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f29bb68c-e53a-4b4d-b1bb-4ae8a4c7b6c5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b21b546b-6ad5-4069-9066-85f56c72eda4))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49b37afd-9392-4a36-b95a-bc43545a80be))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 925d8c9f-ea77-4af4-a0db-ca8f9ae70f89))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 015fc29e-10eb-429f-9a5a-2fdcfd6e6df9))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d1e5df7-57bf-4afd-985c-17f5ba3fd526))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7298d1c-8f97-4638-a0af-b306eb36b44f))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp dec7703f-c453-4c08-80aa-d6da7515d775))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/RS485_B") (pintype "passive") (tstamp 35152d6e-d657-465b-aae9-6cc93bbc9449))
(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 "TI_Library:SOIC127P599X175-8N" (layer "F.Cu")
(tstamp ce841a88-6543-41a3-b6bf-95201d4e81a0)
(at 168.615 95.685)
(property "Availability" "In Stock")
(property "Check_prices" "https://www.snapeda.com/parts/SN65HVD75D/Texas+Instruments/view-part/?ref=eda")
(property "Description" "\n3.3-V half-duplex RS-485 transceiver with IEC ESD, 20 Mbps\n")
(property "MF" "Texas Instruments")
(property "MP" "SN65HVD75D")
(property "Package" "SOIC-8 Texas Instruments")
(property "Price" "None")
(property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=252871&manufacturer=Texas Instruments&part_name=SN65HVD75D&search_term=sn65hvd75")
(property "Sheetfile" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "SnapEDA_Link" "https://www.snapeda.com/parts/SN65HVD75D/Texas+Instruments/view-part/?ref=snap")
(path "/e253f0ff-b068-4de7-9e39-6f38ca3fdcc3")
(attr smd)
(fp_text reference "U1" (at -3.235 3.635) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e656b58-48b0-4b0b-96c1-51b5c79f0002)
)
(fp_text value "SN65HVD75D" (at 7.87 3.537) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b92c13a1-f38d-43d6-801b-851b041b3770)
)
(fp_line (start -1.95 -2.525) (end 1.95 -2.525)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp e3594055-aa62-4885-bbfd-a2eaf4846a61))
(fp_line (start -1.95 2.525) (end 1.95 2.525)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp d22bbbb7-c024-46d7-a3d4-22fd8a22efef))
(fp_circle (center -4.04 -2.305) (end -3.94 -2.305)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5fb491e0-6f98-4092-8c60-8ed39a2ccda0))
(fp_line (start -3.705 -2.7025) (end -3.705 2.7025)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3f8ea7c-4ee0-42c4-ad39-bef70398a8aa))
(fp_line (start -3.705 -2.7025) (end 3.705 -2.7025)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 742686ec-5f38-4964-924c-f34fe0383623))
(fp_line (start -3.705 2.7025) (end 3.705 2.7025)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e403ec57-85c0-4f12-9d67-52de226524d1))
(fp_line (start 3.705 -2.7025) (end 3.705 2.7025)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65361310-a60e-4bcd-a06d-427c7a5b2fde))
(fp_line (start -1.95 -2.4525) (end -1.95 2.4525)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 746f3914-2d6f-4038-a4d4-f0317accd4ea))
(fp_line (start -1.95 -2.4525) (end 1.95 -2.4525)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp e6bde6e9-fcc5-45d5-a74f-0a1510bf9e44))
(fp_line (start -1.95 2.4525) (end 1.95 2.4525)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp c3df92e0-4c9f-400c-9160-f57d8552503b))
(fp_line (start 1.95 -2.4525) (end 1.95 2.4525)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 3f45df8e-4e8f-4c5b-9d17-beb8fd772457))
(fp_circle (center -4.04 -2.305) (end -3.94 -2.305)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 7046233d-139f-4a49-b0e2-ef13e2dcafdb))
(pad "1" smd roundrect (at -2.47 -1.905) (size 1.97 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 5 "/UART_RX") (pinfunction "R") (pintype "output") (solder_mask_margin 0.102) (tstamp aecc7e94-55b0-43bf-afd7-0f8f1998f4e1))
(pad "2" smd roundrect (at -2.47 -0.635) (size 1.97 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 3 "/UART_WR") (pinfunction "RE") (pintype "input") (solder_mask_margin 0.102) (tstamp d786bb9d-e7f5-4e26-a21d-67ba7ab13236))
(pad "3" smd roundrect (at -2.47 0.635) (size 1.97 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 3 "/UART_WR") (pinfunction "DE") (pintype "input") (solder_mask_margin 0.102) (tstamp f81b2ce2-1f7a-4523-ab49-2dcd594e9988))
(pad "4" smd roundrect (at -2.47 1.905) (size 1.97 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 4 "/UART_TX") (pinfunction "D") (pintype "input") (solder_mask_margin 0.102) (tstamp 52bdfe48-b68c-4652-8102-32197466fd90))
(pad "5" smd roundrect (at 2.47 1.905) (size 1.97 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (solder_mask_margin 0.102) (tstamp 1f98232e-279e-4f49-b832-be59f0169000))
(pad "6" smd roundrect (at 2.47 0.635) (size 1.97 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 8 "Net-(U1-A)") (pinfunction "A") (pintype "bidirectional") (solder_mask_margin 0.102) (tstamp 0d5b3ff2-5144-46bf-afc6-84fcabd305b3))
(pad "7" smd roundrect (at 2.47 -0.635) (size 1.97 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 9 "Net-(U1-B)") (pinfunction "B") (pintype "bidirectional") (solder_mask_margin 0.102) (tstamp e0062913-56c9-424c-85e9-1cd663f6d96a))
(pad "8" smd roundrect (at 2.47 -1.905) (size 1.97 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.07)
(net 1 "+3.3V") (pinfunction "VCC") (pintype "power_in") (solder_mask_margin 0.102) (tstamp 5f1b48e5-8457-4fe6-9409-066146010b35))
(model "D:/Shanghaitech/mmlab/project/SN65HVD75/library/SN65HVD75D.step"
(opacity 0.6700) (offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp e616a37b-d4e8-49da-a83f-0495e2d4e934)
(at 174.26 95.05 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/37018258-df78-4702-8af4-992a6f8a63e8")
(attr smd)
(fp_text reference "R4" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f507ea58-745f-4e3e-bfe4-5320e8de6b64)
)
(fp_text value "10R" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d8fa855-1594-47b5-955c-702657cd6a32)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp ed196830-0c79-48b4-b5db-1c2e0ab53358)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b7ad279-6c73-4af2-9962-93a1f0c3c382))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7c6bfa4-e541-4997-b2e0-1c46cbf6c97b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b340438-7121-414f-9bce-d9b428ab7d62))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29073835-73d7-4ef6-aaee-eb3e9256174e))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2db0c50f-9d48-4436-adc1-0b8863a7017a))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33f96334-4805-4d90-b328-283695994492))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8620008-c84d-47fb-8fee-4a760de7b44b))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b177e05-0d54-40f6-92e9-3ee47cd6abd2))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c85d3868-28ed-46ac-b841-41498fd456ea))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2fd3387-3c5c-4293-a973-66fcc8e50bb7))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/RS485_B") (pintype "passive") (tstamp 2f769ae3-2390-427c-b3b0-1d4679d6c75e))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(U1-B)") (pintype "passive") (tstamp 36adb798-9ec8-4e76-aed1-2f2b7597d2b3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp f9bf7c3e-21ca-47df-a14c-4429f141e924)
(at 176.8 98.86 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "rs485_SN65HVD75_TestBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/a534f477-9fe0-4852-9234-8fa727f4175d")
(attr smd)
(fp_text reference "R6" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3071da50-93dd-444a-ae7e-a5c4b32a13ca)
)
(fp_text value "10K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56035652-8f2f-4f56-a363-bf47fe77f5d3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b18963b5-a42e-4dfa-a674-0e316e413c35)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfeeec9d-2099-45de-88ed-638b09d2818e))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e305fc2d-a3ca-4955-b91e-c8b6d9209d77))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75826106-8ec0-4cba-9f6d-0f4e254dad94))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8270f39-16c0-471b-a609-f132e10fd418))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb04654d-50ea-46ff-8b01-c136591f9259))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52007bf2-4aef-4ee9-9b88-fc157f3f95b6))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f2d0d4c-9ebe-4598-810d-bda0264dd560))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e23cf870-cc6d-46df-b8d4-96c901dfc517))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9cc42924-3c24-4c4c-9463-4aae4d553757))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1d28e1d-f396-4b4f-b1ca-5392710e5398))
(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 "/RS485_A") (pintype "passive") (tstamp 952f326f-3067-47a6-8b56-e1b778fa9c16))
(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 1 "+3.3V") (pintype "passive") (tstamp 415e1477-f811-4939-aba9-9708fa8bc6cb))
(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))
)
)
(gr_rect (start 160.42 84.56) (end 167.32 98.56)
(stroke (width 0.15) (type default)) (fill none) (layer "B.SilkS") (tstamp 1d1e85b3-0159-4d1e-b0c1-e033a12675b1))
(gr_rect (start 182.301 93.05) (end 184.46 98.11)
(stroke (width 0.15) (type solid)) (fill solid) (layer "F.Mask") (tstamp 823ea07b-b78e-490f-8e7f-1e9c3cd2de14))
(gr_rect (start 153.2205 91.85) (end 155.3795 99.47)
(stroke (width 0.15) (type solid)) (fill solid) (layer "F.Mask") (tstamp cfe148db-faf0-4ba2-84ab-5c133b0b50eb))
(gr_line (start 153.99 85.37) (end 153.99 98.48)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 2a53dc71-87df-4a88-b298-45e637f7f1b0))
(gr_line (start 181.99 100.48) (end 155.99 100.48)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 60854059-3f9d-4f5a-bd3b-3912f49e1967))
(gr_line (start 155.99 83.37) (end 181.99 83.37)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 767ef30b-118e-4a29-b3b7-5b3d370b9764))
(gr_arc (start 155.99 100.48) (mid 154.575786 99.894214) (end 153.99 98.48)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7e17d283-928a-4303-99ae-1214fb5ddf91))
(gr_arc (start 153.99 85.37) (mid 154.575786 83.955786) (end 155.99 83.37)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 92df93ef-766f-4288-9b4a-ed4522b02560))
(gr_line (start 183.99 85.37) (end 183.99 98.48)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 98263e7b-5083-47de-a177-fe861a5220d3))
(gr_arc (start 181.99 83.37) (mid 183.404214 83.955786) (end 183.99 85.37)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 983fc58e-8c83-4cb9-8c9d-f9b789490781))
(gr_arc (start 183.99 98.48) (mid 183.404214 99.894214) (end 181.99 100.48)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a023e4c9-1f77-47a3-b624-1c92b493586f))
(gr_text "JLCJLCJLC" (at 154.2 98.2 -90) (layer "B.SilkS") (tstamp 47c390dd-9f9f-492d-8dc1-f866fdb6917d)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "2024/04/10\nChenYM(○` 3′○)" (at 175.72 92.67 270) (layer "B.SilkS") (tstamp 7fc61d95-eea6-4eda-b7b8-9754a82a7f74)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom mirror))
)
(gr_text "RS485 To TTL\n20Mbps\nSN65HVD7X \nEvaluation Module\n" (at 160.97 91.61 -90) (layer "B.SilkS") (tstamp a76c6cdc-98ee-4d7d-9e58-00b245b0ec42)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom mirror))
)
(gr_text "TX" (at 158.893 99.8) (layer "F.SilkS") (tstamp 03a21ba1-2836-49c1-8dce-c0b47fb1ce15)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "WR" (at 158.893 97.06) (layer "F.SilkS") (tstamp 14ec1883-b221-40f7-b044-6b814c824b6f)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "GND" (at 158.81 91.71) (layer "F.SilkS") (tstamp 30cb3dba-a9d8-435e-805d-10278509cf77)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "RX" (at 158.79 94.58) (layer "F.SilkS") (tstamp 5f87c682-c347-41a0-8321-9e4f63ca005a)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "485_B" (at 179 96.51 90) (layer "F.SilkS") (tstamp ea592964-d783-4123-b9d0-553c039754e2)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "+3V3" (at 158.84 89.14) (layer "F.SilkS") (tstamp f454f2ca-48c6-475b-93c6-4e1c2f9e173b)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "485_A" (at 178.13 100.09) (layer "F.SilkS") (tstamp fcc9264b-bbff-4b9f-b6e0-b72f487b8b69)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(dimension (type aligned) (layer "F.Cu") (tstamp 87fb2ba5-7ba3-4435-b6ed-f65ef86577cb)
(pts (xy 183.99 83.37) (xy 183.99 100.48))
(height -10.26)
(gr_text "17.1100 mm" (at 192.45 91.925 90) (layer "F.Cu") (tstamp 87fb2ba5-7ba3-4435-b6ed-f65ef86577cb)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "F.Cu") (tstamp f40ac118-b6d0-43f2-a438-bb62690836d6)
(pts (xy 153.96 83.37) (xy 183.99 83.37))
(height -6.92)
(gr_text "30.0300 mm" (at 168.975 74.65) (layer "F.Cu") (tstamp f40ac118-b6d0-43f2-a438-bb62690836d6)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(segment (start 176.8 99.685) (end 176.625 99.86) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3199ee29-8560-4584-b479-27bafcb01109))
(segment (start 176.625 99.86) (end 169.77 99.86) (width 0.25) (layer "F.Cu") (net 1) (tstamp 96ac4c1b-5a32-419b-9ef2-7b5692933d79))
(segment (start 169.05 99.14) (end 169.05 93.21) (width 0.25) (layer "F.Cu") (net 1) (tstamp ad4bc955-3e99-4375-b798-93e52da01cee))
(segment (start 169.77 99.86) (end 169.05 99.14) (width 0.25) (layer "F.Cu") (net 1) (tstamp e9580b01-451c-4f73-8fdf-f1f30ca8e928))
(segment (start 161.18 95.05) (end 160.036 95.05) (width 0.25) (layer "F.Cu") (net 2) (tstamp 31b09ce3-60a7-4c15-a7b8-77b79e799033))
(segment (start 173.63 90.78) (end 173.45 90.78) (width 0.25) (layer "F.Cu") (net 2) (tstamp 545b3907-23a6-4621-8d5d-f4bb17e655ff))
(segment (start 173.29 90.94) (end 173.13 90.78) (width 0.25) (layer "F.Cu") (net 2) (tstamp 93ee65a6-b9c5-43c9-9387-4cc02a1be3a9))
(segment (start 173.29 91.82) (end 173.29 90.94) (width 0.25) (layer "F.Cu") (net 2) (tstamp 9487f8b7-7399-4453-8ea6-36fd748c01be))
(segment (start 173.13 90.78) (end 172.980497 90.78) (width 0.25) (layer "F.Cu") (net 2) (tstamp a8caac81-22b9-4266-ad2b-1391b9aba5d2))
(segment (start 173.45 90.78) (end 173.29 90.94) (width 0.25) (layer "F.Cu") (net 2) (tstamp c88927fb-ed5c-48e7-9c0f-38f2dd5cc030))
(segment (start 174.89 93.13) (end 174.89 92.095) (width 0.25) (layer "F.Cu") (net 2) (tstamp f7073a86-758a-421c-8f97-3460e0d03dde))
(segment (start 174.89 92.095) (end 174.815 92.02) (width 0.25) (layer "F.Cu") (net 2) (tstamp fea7ad88-5b17-4481-971b-db9201f7652b))
(via (at 160.036 95.05) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 1fabeb58-88fe-442e-80ac-efe7f5ef9c63))
(via (at 174.20675 97.676) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 2a75b7d1-5620-4a47-bafd-4ba05b8daf59))
(via (at 172.980497 90.78) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 2bc2ac2e-f8bc-43c7-9798-5d88f1ce5332))
(via (at 173.0235 97.676) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 2cd4d427-51f2-4ada-96bb-c1d9392de962))
(via (at 173.63 90.78) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 64909e41-1371-4235-aa19-07a4f11af6c9))
(via (at 170.657 98.438) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 71e2b9b5-ff4e-41a2-8ec2-6b875a5f06ea))
(via (at 174.20675 98.438) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp b7793a31-904a-4b76-8e99-2cdced0eaff3))
(via (at 173.0235 98.438) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp ca2c4e16-553b-4c70-907d-78ccb1f10098))
(via (at 175.39 97.676) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp cd66d5bc-4f73-4681-86ee-aba66ee5ae4c))
(via (at 171.84025 98.438) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp d91314cb-a200-4e59-a4a1-8014566c6767))
(via (at 174.815 92.02) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp defefe46-ff9d-4831-a220-43cf4df4daa4))
(via (at 175.39 98.46) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp df5b7c28-3d58-45e0-abe7-a0546495336b))
(segment (start 160.29 96.32) (end 162.83 96.32) (width 0.25) (layer "F.Cu") (net 3) (tstamp 3134a22f-4ee0-4ea3-a5ae-edc3c9d93bf1))
(segment (start 157.115 95.685) (end 159.655 95.685) (width 0.25) (layer "F.Cu") (net 3) (tstamp 3d691bb2-7228-4ba9-92af-fda3d26880fb))
(segment (start 166.145 95.05) (end 166.145 96.32) (width 0.25) (layer "F.Cu") (net 3) (tstamp 4c617dc2-d46a-476f-8eaf-7d6528f5733b))
(segment (start 162.83 96.32) (end 162.83 95.05) (width 0.25) (layer "F.Cu") (net 3) (tstamp 90cca0cc-f6bd-408b-a24a-0f17162205b8))
(segment (start 166.145 96.32) (end 162.83 96.32) (width 0.25) (layer "F.Cu") (net 3) (tstamp 9b1a1b87-807d-4fc1-af70-d68a8ccfb496))
(segment (start 159.655 95.685) (end 160.29 96.32) (width 0.25) (layer "F.Cu") (net 3) (tstamp fbd98dde-8e69-4b6e-b820-8b01f8402eb3))
(segment (start 164.1 97.59) (end 166.145 97.59) (width 0.25) (layer "F.Cu") (net 4) (tstamp 17c3c67f-cc5e-4081-956b-826be743cdf5))
(segment (start 163.465 98.225) (end 164.1 97.59) (width 0.25) (layer "F.Cu") (net 4) (tstamp e4bcb40d-f595-4059-8de6-b48b5bad8d83))
(segment (start 157.115 98.225) (end 163.465 98.225) (width 0.25) (layer "F.Cu") (net 4) (tstamp f2e0aa49-a3ea-427f-ad08-a78f7cfbd424))
(segment (start 163.465 93.145) (end 164.1 93.78) (width 0.25) (layer "F.Cu") (net 5) (tstamp 26de737a-db67-45c7-9e3a-8020f7fa7d60))
(segment (start 157.115 93.145) (end 163.465 93.145) (width 0.25) (layer "F.Cu") (net 5) (tstamp a5c2d4ca-0ae7-4533-9a23-a818e3143848))
(segment (start 166.132 93.767) (end 166.145 93.78) (width 0.25) (layer "F.Cu") (net 5) (tstamp ad545c42-7732-4c06-b922-d3edf2899323))
(segment (start 164.1 93.78) (end 166.145 93.78) (width 0.25) (layer "F.Cu") (net 5) (tstamp b86d5480-56d0-4826-97ae-922c1fb209b1))
(segment (start 166.132 91.748) (end 166.132 93.767) (width 0.25) (layer "F.Cu") (net 5) (tstamp bba172d6-db0c-48c0-9316-6e8396a36f81))
(segment (start 175.784 96.32) (end 174.77 96.32) (width 0.25) (layer "F.Cu") (net 6) (tstamp 52b97132-df2e-492f-a714-264c338832f4))
(segment (start 176.8 98.035) (end 176.8 96.51) (width 0.25) (layer "F.Cu") (net 6) (tstamp 93b04b08-aa59-4bfd-9d45-11e5dd143258))
(segment (start 176.8 96.51) (end 178.006 96.51) (width 0.25) (layer "F.Cu") (net 6) (tstamp a97f5fac-b367-4abc-b6f4-7be4c520f9f7))
(segment (start 178.431 96.935) (end 180.585 96.935) (width 0.25) (layer "F.Cu") (net 6) (tstamp cc5c3e7f-af5e-4ec0-9a4f-e5c1353bb0bc))
(segment (start 175.974 96.51) (end 175.784 96.32) (width 0.25) (layer "F.Cu") (net 6) (tstamp cdac6111-1552-44f7-aef9-468e9cce04b3))
(segment (start 176.8 96.51) (end 175.974 96.51) (width 0.25) (layer "F.Cu") (net 6) (tstamp d94b4202-b63b-4216-b2cb-9491070abc81))
(segment (start 178.006 96.51) (end 178.431 96.935) (width 0.25) (layer "F.Cu") (net 6) (tstamp f7388063-7090-44b0-a0e6-84d10ed60b3a))
(segment (start 176.8 94.86) (end 176.8 94.3) (width 0.25) (layer "F.Cu") (net 7) (tstamp 01fe7ab8-b238-4271-8f8c-f94309501646))
(segment (start 176.54 94.04) (end 176.54 93.13) (width 0.25) (layer "F.Cu") (net 7) (tstamp 38deb7c2-de02-46e8-ba72-41f4334561a0))
(segment (start 178.471 94.395) (end 180.585 94.395) (width 0.25) (layer "F.Cu") (net 7) (tstamp 3abe8f69-395f-4ff4-99ee-5146dfe9959c))
(segment (start 175.784 95.05) (end 175.974 94.86) (width 0.25) (layer "F.Cu") (net 7) (tstamp 4be86a9b-f6e8-463c-9c0f-32ff388e01f2))
(segment (start 175.974 94.86) (end 176.8 94.86) (width 0.25) (layer "F.Cu") (net 7) (tstamp 6a66e11a-4eec-4ba5-bdcf-3d974ef28254))
(segment (start 178.006 94.86) (end 178.471 94.395) (width 0.25) (layer "F.Cu") (net 7) (tstamp abb086e3-aa7d-4cd9-aef5-75a7db4b3820))
(segment (start 176.8 94.86) (end 178.006 94.86) (width 0.25) (layer "F.Cu") (net 7) (tstamp b712ffed-b6df-4f24-8cb2-41420b6e682b))
(segment (start 176.8 94.3) (end 176.54 94.04) (width 0.25) (layer "F.Cu") (net 7) (tstamp c61c8f7c-7656-4305-9fdf-2419bae37bdb))
(segment (start 174.77 95.05) (end 175.784 95.05) (width 0.25) (layer "F.Cu") (net 7) (tstamp ebe2d256-356f-438f-9269-51a7e87c64cc))
(segment (start 171.085 96.32) (end 173.75 96.32) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6dbd40bb-1b23-4809-8f91-fcfb57cebef9))
(segment (start 173.75 95.05) (end 171.085 95.05) (width 0.25) (layer "F.Cu") (net 9) (tstamp 7c648037-2c0e-4c4f-ac96-c73b788d0e8e))
(zone (net 5) (net_name "/UART_RX") (layer "F.Cu") (tstamp 0076e7a0-9932-4926-8136-6fdf0e684454) (name "$teardrop_padvia$") (hatch edge 0.5)
(priority 30002)
(attr (teardrop (type padvia)))
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) (island_removal_mode 1) (island_area_min 10))
(polygon
(pts
(xy 164.86 93.905)
(xy 164.925185 93.91836)
(xy 164.99037 93.942221)
(xy 165.055556 93.976581)
(xy 165.120741 94.021442)
(xy 165.185927 94.076803)
(xy 166.146 93.78)
(xy 165.185927 93.483197)
(xy 165.120741 93.538557)
(xy 165.055556 93.583418)
(xy 164.99037 93.617778)
(xy 164.925185 93.641639)
(xy 164.86 93.655)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 165.192056 93.485091)
(xy 165.968676 93.725181)
(xy 166.109842 93.768822)
(xy 166.116734 93.774539)
(xy 166.117564 93.783456)
(xy 166.111847 93.790348)
(xy 166.109842 93.791178)
(xy 165.192062 94.074906)
(xy 165.183145 94.074076)
(xy 165.181032 94.072646)
(xy 165.120741 94.021442)
(xy 165.112407 94.015706)
(xy 165.055561 93.976584)
(xy 165.055542 93.976573)
(xy 165.020303 93.957999)
(xy 164.99037 93.942221)
(xy 164.990367 93.94222)
(xy 164.990364 93.942218)
(xy 164.925189 93.918361)
(xy 164.925186 93.91836)
(xy 164.925185 93.91836)
(xy 164.911129 93.915479)
(xy 164.869351 93.906916)
(xy 164.861934 93.901897)
(xy 164.86 93.895454)
(xy 164.86 93.664545)
(xy 164.863427 93.656272)
(xy 164.86935 93.653083)
(xy 164.925185 93.641639)
(xy 164.99037 93.617778)
(xy 165.055556 93.583418)
(xy 165.120741 93.538557)
(xy 165.181034 93.487352)
(xy 165.189556 93.48461)
)
)
)
(zone (net 5) (net_name "/UART_RX") (layer "F.Cu") (tstamp 075e7da5-ee62-41b7-99d3-cef8a88873c7) (name "$teardrop_padvia$") (hatch edge 0.5)
(priority 30009)
(attr (teardrop (type padvia)))
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) (island_removal_mode 1) (island_area_min 10))
(polygon
(pts
(xy 166.257 92.623)
(xy 166.308955 92.485307)
(xy 166.36091 92.364114)
(xy 166.412865 92.259422)
(xy 166.46482 92.171229)
(xy 166.516776 92.099537)
(xy 166.132 91.747)
(xy 165.747224 92.099537)
(xy 165.799179 92.171229)
(xy 165.851134 92.259422)
(xy 165.903089 92.364114)
(xy 165.955044 92.485307)
(xy 166.007 92.623)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 166.139902 91.75424)
(xy 166.359059 91.955035)
(xy 166.509084 92.09249)
(xy 166.512869 92.100606)
(xy 166.510654 92.107983)
(xy 166.483137 92.145953)
(xy 166.46482 92.171229)
(xy 166.412865 92.259422)
(xy 166.360912 92.36411)
(xy 166.360912 92.364109)
(xy 166.308955 92.485307)
(xy 166.259856 92.615431)
(xy 166.253729 92.621961)
(xy 166.248909 92.623)
(xy 166.015091 92.623)
(xy 166.006818 92.619573)
(xy 166.004144 92.615431)
(xy 165.955044 92.485307)
(xy 165.903087 92.364109)
(xy 165.903087 92.36411)
(xy 165.851134 92.259422)
(xy 165.799179 92.171229)
(xy 165.753343 92.107981)
(xy 165.751264 92.099273)
(xy 165.754912 92.092492)
(xy 166.124097 91.75424)
(xy 166.132511 91.751179)
)
)
)
(zone (net 9) (net_name "Net-(U1-B)") (layer "F.Cu") (tstamp 130cded5-b9f1-4de5-9df7-d4ff44b2d487) (name "$teardrop_padvia$") (hatch edge 0.5)
(priority 30004)
(attr (teardrop (type padvia)))
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) (island_removal_mode 1) (island_area_min 10))
(polygon