-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPiGUS.kicad_pcb
16530 lines (16509 loc) · 671 KB
/
PiGUS.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Red") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Red") (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.051)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "A0")
(net 2 "A1")
(net 3 "A2")
(net 4 "A3")
(net 5 "A4")
(net 6 "A5")
(net 7 "A6")
(net 8 "A7")
(net 9 "A8")
(net 10 "A9")
(net 11 "D0")
(net 12 "D1")
(net 13 "D2")
(net 14 "D3")
(net 15 "D4")
(net 16 "D5")
(net 17 "D6")
(net 18 "D7")
(net 19 "GND")
(net 20 "VCC")
(net 21 "nIOR")
(net 22 "nIOW")
(net 23 "RA9")
(net 24 "RA8")
(net 25 "RA4")
(net 26 "RA7")
(net 27 "RA1")
(net 28 "RA0")
(net 29 "RD2")
(net 30 "RD1")
(net 31 "RnIOW")
(net 32 "RD3")
(net 33 "RD4")
(net 34 "RD7")
(net 35 "RD5")
(net 36 "RD6")
(net 37 "RA6")
(net 38 "RA5")
(net 39 "RA3")
(net 40 "RA2")
(net 41 "RD0")
(net 42 "RnIOR")
(net 43 "VCC33")
(net 44 "TC")
(net 45 "IRQ5")
(net 46 "IRQ7")
(net 47 "DRQ1")
(net 48 "DACK1")
(net 49 "DRQ3")
(net 50 "DACK3")
(net 51 "Net-(J3-Pad2)")
(net 52 "Net-(J3-Pad4)")
(net 53 "BUSOE")
(net 54 "RIRQ")
(net 55 "RDACK")
(net 56 "RDRQ")
(net 57 "RTC")
(net 58 "Net-(J3-Pad5)")
(net 59 "IRQ")
(net 60 "DACK")
(net 61 "DRQ")
(net 62 "Net-(J3-Pad6)")
(net 63 "Net-(J3-Pad7)")
(net 64 "Net-(J3-Pad8)")
(net 65 "Net-(J3-Pad9)")
(net 66 "Net-(J3-Pad11)")
(net 67 "Net-(J3-Pad12)")
(net 68 "Net-(J3-Pad19)")
(net 69 "Net-(J3-Pad20)")
(net 70 "Net-(J3-Pad22)")
(net 71 "Net-(J3-Pad24)")
(net 72 "Net-(J3-Pad25)")
(net 73 "Net-(J3-Pad26)")
(net 74 "Net-(J3-Pad28)")
(net 75 "Net-(J3-Pad30)")
(net 76 "Net-(J3-Pad32)")
(net 77 "Net-(J3-Pad41)")
(net 78 "Net-(J3-Pad43)")
(net 79 "Net-(J3-Pad44)")
(net 80 "Net-(J3-Pad45)")
(net 81 "Net-(J3-Pad46)")
(net 82 "Net-(J3-Pad47)")
(net 83 "Net-(J3-Pad48)")
(net 84 "Net-(J3-Pad49)")
(net 85 "Net-(J3-Pad50)")
(net 86 "Net-(J3-Pad51)")
(net 87 "Net-(J3-Pad52)")
(net 88 "unconnected-(RPi1-Pad3)")
(net 89 "unconnected-(RPi1-Pad5)")
(net 90 "unconnected-(RPi1-Pad37)")
(footprint "adlib:BUS_PC" (layer "F.Cu")
(tedit 60DDA2CD) (tstamp 00000000-0000-0000-0000-000060ddbc0d)
(at 130.175 89.789)
(descr "Connecteur Bus AT ISA 16 bits")
(tags "CONN BUS ISA")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060405b30")
(attr through_hole)
(fp_text reference "J3" (at -6.35 5.461) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4688d2e0-8ec6-455e-bd8c-2ca1be46fa78)
)
(fp_text value "Bus_ISA_8bit" (at 0 5.461) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd99790e-438a-42a9-9069-1cb336dcfcf2)
)
(fp_line (start -40.64 -3.81) (end 40.64 -3.81) (layer "Dwgs.User") (width 0.15) (tstamp 133f6cc1-bcfd-4f10-9fd0-b453e060e86b))
(fp_line (start 40.64 -3.81) (end 40.64 2.54) (layer "Dwgs.User") (width 0.15) (tstamp a3afe9a9-bdcb-4cad-ac0c-659718c5a0e6))
(fp_line (start 62.23 -3.81) (end 40.64 -3.81) (layer "Dwgs.User") (width 0.1524) (tstamp b0339997-f8df-4e8f-bc05-6f4287a03446))
(fp_line (start 39.37 3.81) (end -39.37 3.81) (layer "Dwgs.User") (width 0.15) (tstamp bbfacb1b-ce19-4d1d-8515-dae0895f92da))
(fp_line (start -39.37 3.81) (end -40.64 2.54) (layer "Dwgs.User") (width 0.1524) (tstamp bcd21354-8675-4c3c-9733-46fb5a2aed5e))
(fp_line (start 40.64 2.54) (end 39.37 3.81) (layer "Dwgs.User") (width 0.1524) (tstamp e2ae356e-ef23-4b31-8a5e-0f3c3f7013b8))
(fp_line (start -40.64 2.54) (end -40.64 -3.81) (layer "Dwgs.User") (width 0.15) (tstamp ebd184bb-c19c-4c6e-a42e-85078de2656e))
(pad "1" connect rect locked (at 38.1 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 52343ac2-4969-42df-af1e-ed7deb794aea))
(pad "2" connect rect locked (at 35.56 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 51 "Net-(J3-Pad2)") (pinfunction "RESET") (pintype "output") (tstamp e23133d0-f8d3-4954-9ba7-66f5ffe9589f))
(pad "3" connect rect locked (at 33.02 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 20 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 0c2735a5-d0a3-4460-89e2-7c0f8b7b8eb7))
(pad "4" connect rect locked (at 30.48 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 52 "Net-(J3-Pad4)") (pinfunction "IRQ2") (pintype "passive") (tstamp ffc4c81d-43da-4c7e-9e8a-6d97b9020ba5))
(pad "5" connect rect locked (at 27.94 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 58 "Net-(J3-Pad5)") (pinfunction "-5V") (pintype "power_in") (tstamp ae8e6a57-da88-4fc2-a435-e3e6aa3bc05e))
(pad "6" connect rect locked (at 25.4 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 62 "Net-(J3-Pad6)") (pinfunction "DRQ2") (pintype "passive") (tstamp ae02a797-fc2f-41d1-bd99-a9d040fc5b6e))
(pad "7" connect rect locked (at 22.86 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 63 "Net-(J3-Pad7)") (pinfunction "-12V") (pintype "power_in") (tstamp 68f4e72b-a890-47b0-8f3f-e8d32a954350))
(pad "8" connect rect locked (at 20.32 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 64 "Net-(J3-Pad8)") (pinfunction "UNUSED") (pintype "passive") (tstamp 76610d91-facf-4235-900b-9058d28275cf))
(pad "9" connect rect locked (at 17.78 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 65 "Net-(J3-Pad9)") (pinfunction "+12V") (pintype "power_in") (tstamp 09a932de-1c91-4c68-b7e2-a313cdf52b1c))
(pad "10" connect rect locked (at 15.24 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ebc4415c-8d4a-421a-8be3-ffc1aa524126))
(pad "11" connect rect locked (at 12.7 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 66 "Net-(J3-Pad11)") (pinfunction "~{SMEMW}") (pintype "output") (tstamp 554214d2-daab-4520-80ec-601b7eccd28f))
(pad "12" connect rect locked (at 10.16 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 67 "Net-(J3-Pad12)") (pinfunction "~{SMEMR}") (pintype "output") (tstamp a620e621-1b7e-4b19-8287-961a171e5b5f))
(pad "13" connect rect locked (at 7.62 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 22 "nIOW") (pinfunction "~{IOW}") (pintype "output") (tstamp c3bdb2a5-2c7e-47d4-86b1-9d26bdc9aeb6))
(pad "14" connect rect locked (at 5.08 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 21 "nIOR") (pinfunction "~{IOR}") (pintype "output") (tstamp 61c2b459-e28e-4686-b9d2-432b81df13d1))
(pad "15" connect rect locked (at 2.54 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 50 "DACK3") (pinfunction "~{DACK3}") (pintype "passive") (tstamp a18d6495-cf46-44b6-991e-be83e928a500))
(pad "16" connect rect locked (at 0 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 49 "DRQ3") (pinfunction "DRQ3") (pintype "passive") (tstamp 531073ef-6d5c-421e-b8f5-49e402c33432))
(pad "17" connect rect locked (at -2.54 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 48 "DACK1") (pinfunction "~{DACK1}") (pintype "passive") (tstamp 43cc368e-4915-491d-a959-587ee1a58f20))
(pad "18" connect rect locked (at -5.08 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 47 "DRQ1") (pinfunction "DRQ1") (pintype "passive") (tstamp 9bee20ca-f928-4382-a0a3-ea84cc6f7ab5))
(pad "19" connect rect locked (at -7.62 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 68 "Net-(J3-Pad19)") (pinfunction "~{DACK0}") (pintype "passive") (tstamp 96031465-d3a9-41d3-ae75-8bacd78d3b0b))
(pad "20" connect rect locked (at -10.16 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 69 "Net-(J3-Pad20)") (pinfunction "CLK") (pintype "output") (tstamp 97bf3737-ccff-4581-9b59-ee01090732fb))
(pad "21" connect rect locked (at -12.7 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 46 "IRQ7") (pinfunction "IRQ7") (pintype "passive") (tstamp 86de4ddf-d43a-4f36-b0f3-5a169286f341))
(pad "22" connect rect locked (at -15.24 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 70 "Net-(J3-Pad22)") (pinfunction "IRQ6") (pintype "passive") (tstamp de84fde4-fca5-453f-a4ea-201cfbeb9b6e))
(pad "23" connect rect locked (at -17.78 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 45 "IRQ5") (pinfunction "IRQ5") (pintype "passive") (tstamp 0797c66f-ceb9-4e97-aebd-deb488997a28))
(pad "24" connect rect locked (at -20.32 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 71 "Net-(J3-Pad24)") (pinfunction "IRQ4") (pintype "passive") (tstamp f471511e-31e1-4009-8eea-755c17ca702b))
(pad "25" connect rect locked (at -22.86 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 72 "Net-(J3-Pad25)") (pinfunction "IRQ3") (pintype "passive") (tstamp ce513be5-314f-4c8a-b67c-995b4d660942))
(pad "26" connect rect locked (at -25.4 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 73 "Net-(J3-Pad26)") (pinfunction "~{DACK2}") (pintype "passive") (tstamp ffc0cc9b-8b8a-480f-8610-e64deac9ad98))
(pad "27" connect rect locked (at -27.94 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 44 "TC") (pinfunction "TC") (pintype "passive") (tstamp 2c4112c8-10d4-476b-88b9-bdf3ce23c8fe))
(pad "28" connect rect locked (at -30.48 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 74 "Net-(J3-Pad28)") (pinfunction "ALE") (pintype "output") (tstamp 4d5b9e80-6f31-4685-9cf8-a5b9368c8ed0))
(pad "29" connect rect locked (at -33.02 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 20 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 7a90b126-f9f8-4924-a1d5-a7c60735cdea))
(pad "30" connect rect locked (at -35.56 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 75 "Net-(J3-Pad30)") (pinfunction "OSC") (pintype "output") (tstamp 03cc8415-eebf-4a5c-ab19-44f88336b0b6))
(pad "31" connect rect locked (at -38.1 0.381) (size 1.524 6.858) (layers "B.Cu" "B.Mask")
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 663bf4d0-d6a3-4d64-b545-4ed7dcbaf405))
(pad "32" connect rect locked (at 38.1 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 76 "Net-(J3-Pad32)") (pinfunction "IO") (pintype "passive") (tstamp b1d75004-c17b-479e-bc25-e66a388f9e06))
(pad "33" connect rect locked (at 35.56 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 18 "D7") (pinfunction "DB7") (pintype "tri_state") (tstamp aa55bf39-14de-4fef-83f5-89558c78bbbe))
(pad "34" connect rect locked (at 33.02 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 17 "D6") (pinfunction "DB6") (pintype "tri_state") (tstamp b3875ce7-9b02-4372-805c-4ee8d43b1097))
(pad "35" connect rect locked (at 30.48 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 16 "D5") (pinfunction "DB5") (pintype "tri_state") (tstamp 5b15f03e-73df-440c-a6ff-1acb5500f047))
(pad "36" connect rect locked (at 27.94 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 15 "D4") (pinfunction "DB4") (pintype "tri_state") (tstamp f8009b5e-2814-48af-8478-16f2aae29be6))
(pad "37" connect rect locked (at 25.4 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 14 "D3") (pinfunction "DB3") (pintype "tri_state") (tstamp efb88c16-4dc3-4a75-a901-6474a0438565))
(pad "38" connect rect locked (at 22.86 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 13 "D2") (pinfunction "DB2") (pintype "tri_state") (tstamp b29f51b7-69d4-4d97-a81d-c57880f223e3))
(pad "39" connect rect locked (at 20.32 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 12 "D1") (pinfunction "DB1") (pintype "tri_state") (tstamp 1b63caaa-e76e-48aa-b5d5-8c0240fe2072))
(pad "40" connect rect locked (at 17.78 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 11 "D0") (pinfunction "DB0") (pintype "tri_state") (tstamp 02c6f949-f3c3-4e34-8bc1-8aa811f53123))
(pad "41" connect rect locked (at 15.24 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 77 "Net-(J3-Pad41)") (pinfunction "IO_READY") (pintype "passive") (tstamp 3f731978-3766-4ada-a37b-2df47224368b))
(pad "42" connect rect locked (at 12.7 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 19 "GND") (pinfunction "AEN") (pintype "output") (tstamp 6b636d0a-0dff-42e7-bbe9-686722679f54))
(pad "43" connect rect locked (at 10.16 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 78 "Net-(J3-Pad43)") (pinfunction "BA19") (pintype "tri_state") (tstamp e9d0477e-d73d-4e76-9e22-f805c7ec5a75))
(pad "44" connect rect locked (at 7.62 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 79 "Net-(J3-Pad44)") (pinfunction "BA18") (pintype "tri_state") (tstamp 2fdd0155-aa4a-445c-a81e-55a7d6115848))
(pad "45" connect rect locked (at 5.08 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 80 "Net-(J3-Pad45)") (pinfunction "BA17") (pintype "tri_state") (tstamp ef976f13-811f-4718-86ce-6e64d45a2a35))
(pad "46" connect rect locked (at 2.54 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 81 "Net-(J3-Pad46)") (pinfunction "BA16") (pintype "tri_state") (tstamp 870fb605-9fcd-48c1-ae9c-67ff711a2f9f))
(pad "47" connect rect locked (at 0 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 82 "Net-(J3-Pad47)") (pinfunction "BA15") (pintype "tri_state") (tstamp f888d71b-37ae-40d1-b9f5-0cb7096abe99))
(pad "48" connect rect locked (at -2.54 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 83 "Net-(J3-Pad48)") (pinfunction "BA14") (pintype "tri_state") (tstamp d2506162-850f-42a6-a1bc-6d348881d664))
(pad "49" connect rect locked (at -5.08 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 84 "Net-(J3-Pad49)") (pinfunction "BA13") (pintype "tri_state") (tstamp 70240b84-210b-475c-af2e-726312429f46))
(pad "50" connect rect locked (at -7.62 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 85 "Net-(J3-Pad50)") (pinfunction "BA12") (pintype "tri_state") (tstamp 5615ff77-3dce-4275-869b-627ce27663bc))
(pad "51" connect rect locked (at -10.16 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 86 "Net-(J3-Pad51)") (pinfunction "BA11") (pintype "tri_state") (tstamp 486ae507-96f4-496a-94ff-81dad4472f27))
(pad "52" connect rect locked (at -12.7 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 87 "Net-(J3-Pad52)") (pinfunction "BA10") (pintype "tri_state") (tstamp b12465db-eb25-45dc-bf13-67bf3d2f916d))
(pad "53" connect rect locked (at -15.24 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 10 "A9") (pinfunction "BA09") (pintype "tri_state") (tstamp eb2624a4-e9f6-4cd4-8d3e-fb8ff88633b2))
(pad "54" connect rect locked (at -17.78 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 9 "A8") (pinfunction "BA08") (pintype "tri_state") (tstamp 10eda7e0-58cb-4103-9491-731ead664fb6))
(pad "55" connect rect locked (at -20.32 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 8 "A7") (pinfunction "BA07") (pintype "tri_state") (tstamp dec6b0cf-8f44-4044-9437-a7d2158e242f))
(pad "56" connect rect locked (at -22.86 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 7 "A6") (pinfunction "BA06") (pintype "tri_state") (tstamp 5a3c2b27-b63a-4a61-862e-cb294b053222))
(pad "57" connect rect locked (at -25.4 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 6 "A5") (pinfunction "BA05") (pintype "tri_state") (tstamp eb3fa262-6a75-4e1a-83ba-aaa20bcd9b61))
(pad "58" connect rect locked (at -27.94 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 5 "A4") (pinfunction "BA04") (pintype "tri_state") (tstamp d8b36db3-e421-47fb-9f81-fa29281191ff))
(pad "59" connect rect locked (at -30.48 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 4 "A3") (pinfunction "BA03") (pintype "tri_state") (tstamp f28244be-a819-452a-bfdb-f5adf4a3dd4e))
(pad "60" connect rect locked (at -33.02 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 3 "A2") (pinfunction "BA02") (pintype "tri_state") (tstamp 2cef1244-ff69-49b2-9f29-bb30a4e78f9b))
(pad "61" connect rect locked (at -35.56 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 2 "A1") (pinfunction "BA01") (pintype "tri_state") (tstamp 6bced446-6fa1-4a44-9b3f-54cd3597a1e2))
(pad "62" connect rect locked (at -38.1 0.381) (size 1.524 6.858) (layers "F.Cu" "F.Mask")
(net 1 "A0") (pinfunction "BA00") (pintype "tri_state") (tstamp bdd72f5a-8362-413b-a25c-c67c011a503b))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x20_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A433) (tstamp 00000000-0000-0000-0000-000060ddc1cb)
(at 140.33 59.05 -90)
(descr "Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x20 2.54mm double row")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060ddb778")
(attr through_hole)
(fp_text reference "RPi1" (at -5.075 -0.005) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7b00984-6ab1-482e-b4b4-67cac44d44da)
)
(fp_text value "Raspberry_Pi_2_3" (at -1.27 51.03 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fa05934-8ad1-40a9-af5c-98ad298eb412)
)
(fp_text user "${REFERENCE}" (at -1.27 24.13) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dad2f9a9-292b-4f7e-9524-a263f3c1ba74)
)
(fp_line (start -3.87 -1.33) (end -3.87 49.59) (layer "F.SilkS") (width 0.12) (tstamp 112371bd-7aa2-4b47-b184-50d12afc2534))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 1732b93f-cd0e-4ca4-a905-bb406354ca33))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 1d0d5161-c82f-4c77-a9ca-15d017db65d3))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2f0570b6-86da-47a8-9e56-ce60c431c534))
(fp_line (start 1.33 1.27) (end 1.33 49.59) (layer "F.SilkS") (width 0.12) (tstamp 5c32b099-dba7-4228-8a5e-c2156f635ce2))
(fp_line (start -3.87 49.59) (end 1.33 49.59) (layer "F.SilkS") (width 0.12) (tstamp 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7ca71fec-e7f1-454f-9196-b80d15925fff))
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp f4117d3e-819d-4d33-bf85-69e28ba32fe5))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 44b926bf-8bdd-4191-846d-2dfabab2cecb))
(fp_line (start 1.76 -1.8) (end 1.76 50) (layer "F.CrtYd") (width 0.05) (tstamp 58126faf-01a4-4f91-8e8c-ca9e47b48048))
(fp_line (start 1.76 50) (end -4.34 50) (layer "F.CrtYd") (width 0.05) (tstamp 9e136ac4-5d28-4814-9ebf-c30c372bc2ec))
(fp_line (start -4.34 50) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e8274862-c966-456a-98d5-9c42f72963c1))
(fp_line (start 1.27 49.53) (end -3.81 49.53) (layer "F.Fab") (width 0.1) (tstamp 17cf1c88-8d51-4538-aa76-e35ac22d0ed0))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp c3a69550-c4fa-45d1-9aba-0bba47699cca))
(fp_line (start -3.81 49.53) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp efd7a1e0-5bed-4583-a94e-5ccec9e4eb74))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp f5eb7390-4215-4bb5-bc53-f82f663cc9a5))
(fp_line (start 1.27 -0.27) (end 1.27 49.53) (layer "F.Fab") (width 0.1) (tstamp f7070c76-b83b-43a9-a243-491723819616))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 "VCC33") (pinfunction "3V3") (pintype "power_in") (tstamp 9de304ba-fba7-4896-b969-9d87a3522d74))
(pad "2" thru_hole oval (at -2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "VCC") (pinfunction "5V") (pintype "power_in") (tstamp 92a23ed4-a5ea-4cea-bc33-0a83191a0d32))
(pad "3" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 88 "unconnected-(RPi1-Pad3)") (pinfunction "SDA/GPIO2") (pintype "bidirectional") (tstamp 165f4d8d-26a9-4cf2-a8d6-9936cd983be4))
(pad "4" thru_hole oval (at -2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "VCC") (pinfunction "5V") (pintype "power_in") (tstamp 8e697b96-cf4c-43ef-b321-8c2422b088bf))
(pad "5" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 89 "unconnected-(RPi1-Pad5)") (pinfunction "SCL/GPIO3") (pintype "bidirectional") (tstamp 74855e0d-40e4-4940-a544-edae9207b2ea))
(pad "6" thru_hole oval (at -2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d68dca9b-48b3-498b-9b5f-3b3838250f82))
(pad "7" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 41 "RD0") (pinfunction "GCLK0/GPIO4") (pintype "bidirectional") (tstamp 59f60168-cced-43c9-aaa5-41a1a8a2f631))
(pad "8" thru_hole oval (at -2.54 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 40 "RA2") (pinfunction "GPIO14/TXD") (pintype "bidirectional") (tstamp f6a3288e-9575-42bb-af05-a920d59aded8))
(pad "9" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ef94502b-f22d-4da7-a17f-4100090b03a1))
(pad "10" thru_hole oval (at -2.54 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "RA3") (pinfunction "GPIO15/RXD") (pintype "bidirectional") (tstamp 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa))
(pad "11" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "RA5") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 082aed28-f9e8-49e7-96ee-b5aa9f0319c7))
(pad "12" thru_hole oval (at -2.54 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "RA6") (pinfunction "GPIO18/PWM0") (pintype "bidirectional") (tstamp fe6d9604-2924-4f38-950b-a31e8a281973))
(pad "13" thru_hole oval (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "BUSOE") (pinfunction "GPIO27") (pintype "bidirectional") (tstamp f67bbef3-6f59-49ba-8890-d1f9dc9f9ad6))
(pad "14" thru_hole oval (at -2.54 15.24 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f503ea07-bcf1-4924-930a-6f7e9cd312f8))
(pad "15" thru_hole oval (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 54 "RIRQ") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp 645bdbdc-8f65-42ef-a021-2d3e7d74a739))
(pad "16" thru_hole oval (at -2.54 17.78 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 55 "RDACK") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp b1ba92d5-0d41-4be9-b483-47d08dc1785d))
(pad "17" thru_hole oval (at 0 20.32 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 "VCC33") (pinfunction "3V3") (pintype "power_in") (tstamp bf6104a1-a529-4c00-b4ae-92001543f7ec))
(pad "18" thru_hole oval (at -2.54 20.32 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 56 "RDRQ") (pinfunction "GPIO24") (pintype "bidirectional") (tstamp 8b963561-586b-4575-b721-87e7914602c6))
(pad "19" thru_hole oval (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "RD6") (pinfunction "MOSI0/GPIO10") (pintype "bidirectional") (tstamp da862bae-4511-4bb9-b18d-fa60a2737feb))
(pad "20" thru_hole oval (at -2.54 22.86 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b8c8c7a1-d546-4878-9de9-463ec76dff98))
(pad "21" thru_hole oval (at 0 25.4 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "RD5") (pinfunction "MISO0/GPIO9") (pintype "bidirectional") (tstamp 82204892-ec79-4d38-a593-52fb9a9b4b87))
(pad "22" thru_hole oval (at -2.54 25.4 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 57 "RTC") (pinfunction "GPIO25") (pintype "bidirectional") (tstamp dec284d9-246c-4619-8dcc-8f4886f9349e))
(pad "23" thru_hole oval (at 0 27.94 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "RD7") (pinfunction "SCLK0/GPIO11") (pintype "bidirectional") (tstamp ae8bb5ae-95ee-4e2d-8a0c-ae5b6149b4e3))
(pad "24" thru_hole oval (at -2.54 27.94 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "RD4") (pinfunction "~{CE0}/GPIO8") (pintype "bidirectional") (tstamp 8b3ba7fc-20b6-43c4-a020-80151e1caecc))
(pad "25" thru_hole oval (at 0 30.48 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp fb0b1440-18be-4b5f-b469-b4cfaf66fc53))
(pad "26" thru_hole oval (at -2.54 30.48 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "RD3") (pinfunction "~{CE1}/GPIO7") (pintype "bidirectional") (tstamp b7c09c15-282b-4731-8942-008851172201))
(pad "27" thru_hole oval (at 0 33.02 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "RnIOW") (pinfunction "ID_SD/GPIO0") (pintype "bidirectional") (tstamp a2a0f5cc-b5aa-4e3e-8d85-23bdc2f59aec))
(pad "28" thru_hole oval (at -2.54 33.02 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 "RnIOR") (pinfunction "ID_SC/GPIO1") (pintype "bidirectional") (tstamp 7f064424-06a6-4f5b-87d6-1970ae527766))
(pad "29" thru_hole oval (at 0 35.56 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "RD1") (pinfunction "GCLK1/GPIO5") (pintype "bidirectional") (tstamp 3e87b259-dfc1-4885-8dcf-7e7ae39674ed))
(pad "30" thru_hole oval (at -2.54 35.56 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ba116096-3ccc-4cc8-a185-5325439e4e24))
(pad "31" thru_hole oval (at 0 38.1 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "RD2") (pinfunction "GCLK2/GPIO6") (pintype "bidirectional") (tstamp 31bfc3e7-147b-4531-a0c5-e3a305c1647d))
(pad "32" thru_hole oval (at -2.54 38.1 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "RA0") (pinfunction "PWM0/GPIO12") (pintype "bidirectional") (tstamp 7668b629-abd6-4e14-be84-df90ae487fc6))
(pad "33" thru_hole oval (at 0 40.64 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "RA1") (pinfunction "PWM1/GPIO13") (pintype "bidirectional") (tstamp 37657eee-b379-4145-b65d-79c82b53e49e))
(pad "34" thru_hole oval (at -2.54 40.64 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 363189af-2faa-46a4-b025-5a779d801f2e))
(pad "35" thru_hole oval (at 0 43.18 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "RA7") (pinfunction "GPIO19/MISO1") (pintype "bidirectional") (tstamp f934a442-23d6-4e5b-908f-bb9199ad6f8b))
(pad "36" thru_hole oval (at -2.54 43.18 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "RA4") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 386faf3f-2adf-472a-84bf-bd511edf2429))
(pad "37" thru_hole oval (at 0 45.72 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 90 "unconnected-(RPi1-Pad37)") (pinfunction "GPIO26") (pintype "bidirectional") (tstamp de552ae9-cde6-4643-8cc7-9de2579dadae))
(pad "38" thru_hole oval (at -2.54 45.72 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "RA8") (pinfunction "GPIO20/MOSI1") (pintype "bidirectional") (tstamp 72366acb-6c86-4134-89df-01ed6e4dc8e0))
(pad "39" thru_hole oval (at 0 48.26 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7274c82d-0cb9-47de-b093-7d848f491410))
(pad "40" thru_hole oval (at -2.54 48.26 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "RA9") (pinfunction "GPIO21/SCLK1") (pintype "bidirectional") (tstamp b66b83a0-313f-4b03-b851-c6e9577a6eb7))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x20_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060ddeb00)
(at 144.145 57.785 -90)
(descr "Resistor SMD 0805 (2012 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" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/9e5889d3-2cf0-4a2f-8be9-414b9ed945bf")
(attr smd)
(fp_text reference "R1" (at 0 -1.905 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1)
)
(fp_text value "10K" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45884597-7014-4461-83ee-9975c42b9a53)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9aedbb9e-8340-4899-b813-05b23382a36b)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 53 "BUSOE") (pintype "passive") (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 19 "GND") (pintype "passive") (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (layer "F.Cu")
(tedit 5E476F32) (tstamp 330d6b62-02c0-4655-8b73-51aa72b11580)
(at 114.935 68.58)
(descr "TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSSOP SO")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/d918e35b-1d41-48b8-85bd-28a19ee320da")
(attr smd)
(fp_text reference "U2" (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8fe36f4-c454-4599-aba6-20ebd4149fa0)
)
(fp_text value "TXS0108EPW" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e630045b-c0e4-4d12-8ddd-6be71e818829)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70b955f8-f2b5-4e9b-8733-471487271626)
)
(fp_line (start 0 -3.385) (end 2.2 -3.385) (layer "F.SilkS") (width 0.12) (tstamp 3d2e1835-e3f3-4fe8-b4ee-90f8281dd2e6))
(fp_line (start 0 3.385) (end 2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp 60297884-889c-4799-a424-2fc1aececae4))
(fp_line (start 0 3.385) (end -2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp 8bc95b20-36b5-4ec4-a68c-2edfb5079d13))
(fp_line (start 0 -3.385) (end -3.6 -3.385) (layer "F.SilkS") (width 0.12) (tstamp db6cd9c8-86e9-426e-a9bf-f26cb93e0a60))
(fp_line (start -3.85 -3.5) (end -3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 1a1c30a6-ddb1-476c-95e9-4081ef5b68e9))
(fp_line (start 3.85 -3.5) (end -3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 70b5302b-66d0-4d3c-836c-542f4cdf65be))
(fp_line (start -3.85 3.5) (end 3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp b27b200c-febf-4214-920e-db7dd9df2807))
(fp_line (start 3.85 3.5) (end 3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp f961f41d-974c-4191-ad72-071da41d11e6))
(fp_line (start -1.2 -3.25) (end 2.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 27787984-dfad-4454-ae78-56afd1445663))
(fp_line (start 2.2 -3.25) (end 2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp 83063523-cdf2-42e9-8802-b6c19553f26e))
(fp_line (start -2.2 3.25) (end -2.2 -2.25) (layer "F.Fab") (width 0.1) (tstamp d6e22d0a-dc46-4bca-b9a8-e43e9ea02a8d))
(fp_line (start -2.2 -2.25) (end -1.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp f42a5b60-5d96-4544-a9dd-5a8d4e2bd6a3))
(fp_line (start 2.2 3.25) (end -2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp fb4dbbd7-d3e8-4793-b77c-35e457faea6e))
(pad "1" smd roundrect (at -2.8625 -2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "RA8") (pinfunction "A1") (pintype "bidirectional") (tstamp 14af30f7-be3a-4e9c-acca-3786689f70fe))
(pad "2" smd roundrect (at -2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "VCC33") (pinfunction "VCCA") (pintype "power_in") (tstamp 22a40740-6db5-46e0-9a53-bf2f378b555e))
(pad "3" smd roundrect (at -2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "RA9") (pinfunction "A2") (pintype "bidirectional") (tstamp 888d6922-303d-4f57-ac5a-c8ceb8f3f897))
(pad "4" smd roundrect (at -2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "RnIOW") (pinfunction "A3") (pintype "bidirectional") (tstamp ddd24b57-addf-4c6d-8038-13f217493583))
(pad "5" smd roundrect (at -2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "RnIOR") (pinfunction "A4") (pintype "bidirectional") (tstamp c33aa521-44a3-4799-9962-8a9755097d69))
(pad "6" smd roundrect (at -2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 54 "RIRQ") (pinfunction "A5") (pintype "bidirectional") (tstamp d4e77efc-3040-4962-986e-846756bf3632))
(pad "7" smd roundrect (at -2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 55 "RDACK") (pinfunction "A6") (pintype "bidirectional") (tstamp ec02f72f-f71d-443c-8e9b-0bce0d931cb7))
(pad "8" smd roundrect (at -2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 56 "RDRQ") (pinfunction "A7") (pintype "bidirectional") (tstamp a565dac5-e5af-491d-9b37-0bb3462b5a1c))
(pad "9" smd roundrect (at -2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 57 "RTC") (pinfunction "A8") (pintype "bidirectional") (tstamp ec644bdf-b3bd-4f05-aa0e-717fb2d97cfe))
(pad "10" smd roundrect (at -2.8625 2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "BUSOE") (pinfunction "OE") (pintype "input") (tstamp e38b8c23-d0f4-42e8-954d-829a09c415bd))
(pad "11" smd roundrect (at 2.8625 2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 028d517e-98b3-4096-a723-cffaee3ceae3))
(pad "12" smd roundrect (at 2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "TC") (pinfunction "B8") (pintype "bidirectional") (tstamp ee711ba0-dca3-46ff-b908-67ee32a81f6b))
(pad "13" smd roundrect (at 2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 61 "DRQ") (pinfunction "B7") (pintype "bidirectional") (tstamp 02eb058b-25bd-48cf-8640-1541ae7d24f6))
(pad "14" smd roundrect (at 2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 60 "DACK") (pinfunction "B6") (pintype "bidirectional") (tstamp bb003d1e-4baa-49e9-a607-cfd3a00ce3b1))
(pad "15" smd roundrect (at 2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 59 "IRQ") (pinfunction "B5") (pintype "bidirectional") (tstamp 4877e4ee-a8da-44a1-84a7-044599a7c377))
(pad "16" smd roundrect (at 2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "nIOR") (pinfunction "B4") (pintype "bidirectional") (tstamp 5fde1b02-f7a0-4316-8dbf-6e460c235b61))
(pad "17" smd roundrect (at 2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "nIOW") (pinfunction "B3") (pintype "bidirectional") (tstamp c11b30f4-486d-4cc9-bf2e-97ae9e5f3710))
(pad "18" smd roundrect (at 2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "A9") (pinfunction "B2") (pintype "bidirectional") (tstamp ab5b7502-02aa-4c42-bde3-5f7ab483b244))
(pad "19" smd roundrect (at 2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pinfunction "VCCB") (pintype "power_in") (tstamp 68679a2e-672e-42eb-bee8-eb1197072b47))
(pad "20" smd roundrect (at 2.8625 -2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "A8") (pinfunction "B1") (pintype "bidirectional") (tstamp af928832-39b0-4a3d-8073-87c48eddbad5))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/TSSOP-20_4.4x6.5mm_P0.65mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)
(at 109.855 67.0475 -90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/4449981f-2bbf-4dca-af9a-465d45780ac3")
(attr smd)
(fp_text reference "C3" (at -2.2775 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71f92193-19b0-44ed-bc7f-77535083d769)
)
(fp_text value "0.1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f9c81c26-f253-4227-a69f-53e64841cfbe)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp af347946-e3da-4427-87ab-77b747929f50))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp b6cd701f-4223-4e72-a305-466869ccb250))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e7e08b48-3d04-49da-8349-6de530a20c67))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "VCC33") (pintype "passive") (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pintype "passive") (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (layer "F.Cu")
(tedit 5E476F32) (tstamp 3b92c135-3a43-4732-acc5-f842fde2aaf3)
(at 100.33 68.58)
(descr "TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSSOP SO")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/3f7c3ffb-790a-4363-996c-cae0cba396ee")
(attr smd)
(fp_text reference "U1" (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61a85515-f760-4eca-905f-fbf7039f75d0)
)
(fp_text value "TXS0108EPW" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9e85792-be72-4997-86ea-fe78fadd8a1e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 673da293-e6e5-42b8-bee9-65dee7a77341)
)
(fp_line (start 0 3.385) (end -2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp 128b1f59-3ca9-48de-9ebe-e0d6cac37925))
(fp_line (start 0 -3.385) (end -3.6 -3.385) (layer "F.SilkS") (width 0.12) (tstamp aa95dd74-02ce-439f-bf0a-51d8bda8a2e2))
(fp_line (start 0 3.385) (end 2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp e32653c3-0d84-4e65-84db-89b6d1896ae5))
(fp_line (start 0 -3.385) (end 2.2 -3.385) (layer "F.SilkS") (width 0.12) (tstamp f5f7bedf-ebcd-4716-963c-b16f793a7cb3))
(fp_line (start 3.85 -3.5) (end -3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 1d60228a-8433-4322-b773-ab8df659b866))
(fp_line (start -3.85 3.5) (end 3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 33983b99-fdb2-43e1-9482-750a4ac7958f))
(fp_line (start -3.85 -3.5) (end -3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 552f0d86-f141-4526-b1a4-19aed71a0d94))
(fp_line (start 3.85 3.5) (end 3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp a386411f-cb58-464e-ae3f-8846e53c10a1))
(fp_line (start -2.2 -2.25) (end -1.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 91af9db5-671b-482f-9b97-0f55ff0059c8))
(fp_line (start -1.2 -3.25) (end 2.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp aa3f15fc-9292-422f-8dea-611760646fff))
(fp_line (start 2.2 3.25) (end -2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp c09de9fd-d0ab-4c02-a15e-32e885f0e85e))
(fp_line (start 2.2 -3.25) (end 2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp dc13105b-bc52-4990-82ba-161f98854858))
(fp_line (start -2.2 3.25) (end -2.2 -2.25) (layer "F.Fab") (width 0.1) (tstamp eb88022c-1954-4add-9f5d-4eadb564ab5f))
(pad "1" smd roundrect (at -2.8625 -2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "RA0") (pinfunction "A1") (pintype "bidirectional") (tstamp e921f6c6-b774-459d-8ac6-1c060bd8609a))
(pad "2" smd roundrect (at -2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "VCC33") (pinfunction "VCCA") (pintype "power_in") (tstamp 2fd9df31-1712-4190-8f09-4fd908fe49e0))
(pad "3" smd roundrect (at -2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "RA1") (pinfunction "A2") (pintype "bidirectional") (tstamp 83a3fe08-8e27-4c96-8e2f-a5abb22733bd))
(pad "4" smd roundrect (at -2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "RA2") (pinfunction "A3") (pintype "bidirectional") (tstamp e925f921-71cc-4ad8-b857-e94b049db7a4))
(pad "5" smd roundrect (at -2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "RA3") (pinfunction "A4") (pintype "bidirectional") (tstamp ac7adea2-1c30-4d49-9356-ddb56f771d09))
(pad "6" smd roundrect (at -2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "RA4") (pinfunction "A5") (pintype "bidirectional") (tstamp c8da4732-478a-4180-8d72-07e21a6677a2))
(pad "7" smd roundrect (at -2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "RA5") (pinfunction "A6") (pintype "bidirectional") (tstamp 7ae7819e-35c4-4920-8259-110d9fa90e26))
(pad "8" smd roundrect (at -2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "RA6") (pinfunction "A7") (pintype "bidirectional") (tstamp d4b11b8b-ca38-4850-931f-2a474cc33da9))
(pad "9" smd roundrect (at -2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "RA7") (pinfunction "A8") (pintype "bidirectional") (tstamp 76ed9c4c-08e1-4945-87b7-19179578e775))
(pad "10" smd roundrect (at -2.8625 2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "BUSOE") (pinfunction "OE") (pintype "input") (tstamp f07026cf-1a1e-4da7-a0e5-9685baceff2a))
(pad "11" smd roundrect (at 2.8625 2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7476329a-3e83-45cd-9ae6-2914feed135d))
(pad "12" smd roundrect (at 2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "A7") (pinfunction "B8") (pintype "bidirectional") (tstamp e6d585be-0e9d-47cc-bd2b-7add72b2f440))
(pad "13" smd roundrect (at 2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "A6") (pinfunction "B7") (pintype "bidirectional") (tstamp 05d7353c-5c7d-4bf2-9e4c-ad7362a00f9d))
(pad "14" smd roundrect (at 2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "A5") (pinfunction "B6") (pintype "bidirectional") (tstamp 8cf3f694-10ca-41ab-901e-28f96f803eba))
(pad "15" smd roundrect (at 2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "A4") (pinfunction "B5") (pintype "bidirectional") (tstamp 6bfc3e20-4418-4c0a-a270-6ec960b8fa77))
(pad "16" smd roundrect (at 2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "A3") (pinfunction "B4") (pintype "bidirectional") (tstamp 3e04fb9a-0cea-46de-a1ab-74781d946779))
(pad "17" smd roundrect (at 2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "A2") (pinfunction "B3") (pintype "bidirectional") (tstamp 2508eed2-92d2-4b58-851b-8ae18c788cc3))
(pad "18" smd roundrect (at 2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "A1") (pinfunction "B2") (pintype "bidirectional") (tstamp 983dea5b-b5f2-4d83-963b-af1a0c4bf165))
(pad "19" smd roundrect (at 2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pinfunction "VCCB") (pintype "power_in") (tstamp b8e7395c-6dc1-4fa9-8d35-f0acf085b848))
(pad "20" smd roundrect (at 2.8625 -2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "A0") (pinfunction "B1") (pintype "bidirectional") (tstamp 33b63d30-b515-4fd9-b058-0b78c871af0b))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/TSSOP-20_4.4x6.5mm_P0.65mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5)
(at 120.015 66.99 -90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/88e54bfe-6183-414b-b929-357d5d203b61")
(attr smd)
(fp_text reference "C4" (at -2.22 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
)
(fp_text value "0.1uF" (at 4.1825 2.675 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pintype "passive") (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pintype "passive") (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (layer "F.Cu")
(tedit 5E476F32) (tstamp 40d9a574-0831-4c8d-8984-6d69c77d868e)
(at 142.875 68.58)
(descr "TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSSOP SO")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/68b4d432-bba6-4daa-b046-e01ac19db0b2")
(attr smd)
(fp_text reference "U3" (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9118093a-a06e-414e-80e4-40834825b61a)
)
(fp_text value "TXS0108EPW" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad3b27b9-458a-4872-b860-323f6eba6f22)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45b7a2fb-d2fc-4073-98fc-596301d505ed)
)
(fp_line (start 0 3.385) (end -2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp 499af095-3aa4-4c36-b5ab-e51f9b6d2594))
(fp_line (start 0 3.385) (end 2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp 752355f6-cdbb-4f25-8b5c-8fd730aa8b04))
(fp_line (start 0 -3.385) (end 2.2 -3.385) (layer "F.SilkS") (width 0.12) (tstamp 81c20fc0-0fe4-421b-b6c0-96f8e791a17b))
(fp_line (start 0 -3.385) (end -3.6 -3.385) (layer "F.SilkS") (width 0.12) (tstamp b2543ecf-2c48-4cda-a0ad-6a1166cd556e))
(fp_line (start -3.85 -3.5) (end -3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 504a527c-6370-4e8c-a93c-a193e6eb17f1))
(fp_line (start 3.85 3.5) (end 3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 50e60a94-e341-4b30-bf75-dc66b5c12353))
(fp_line (start 3.85 -3.5) (end -3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 8503dacf-90ff-4e2e-8044-7e86346dd0f8))
(fp_line (start -3.85 3.5) (end 3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 95baad6b-e65f-4518-ac4e-11799c6ce299))
(fp_line (start -1.2 -3.25) (end 2.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 595aac95-acfc-4fc1-b18c-5747818bd4d2))
(fp_line (start 2.2 3.25) (end -2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp 8c4cc113-f5d6-48bc-ada1-1db8fa1c21ac))
(fp_line (start -2.2 -2.25) (end -1.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 9e6634fa-556b-43b1-9a1a-620d3a150af5))
(fp_line (start -2.2 3.25) (end -2.2 -2.25) (layer "F.Fab") (width 0.1) (tstamp b37aef5d-08ac-4050-80d2-400652102905))
(fp_line (start 2.2 -3.25) (end 2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp c95083e0-8ad3-4efb-9012-d2ed1b0c39de))
(pad "1" smd roundrect (at -2.8625 -2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "RD0") (pinfunction "A1") (pintype "bidirectional") (tstamp f5f9bde3-76eb-4cad-ac16-0f045e58e8b2))
(pad "2" smd roundrect (at -2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "VCC33") (pinfunction "VCCA") (pintype "power_in") (tstamp a2b9108e-8d68-4bc9-996e-d8350a16fdeb))
(pad "3" smd roundrect (at -2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "RD1") (pinfunction "A2") (pintype "bidirectional") (tstamp 569cc97b-71e1-4ff5-a373-f853023b8b77))
(pad "4" smd roundrect (at -2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "RD2") (pinfunction "A3") (pintype "bidirectional") (tstamp 74e67ae3-2b94-461a-912c-09f11e505ed0))
(pad "5" smd roundrect (at -2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "RD3") (pinfunction "A4") (pintype "bidirectional") (tstamp 6d10dade-a529-4edf-ab49-e24db2f8ee0e))
(pad "6" smd roundrect (at -2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "RD4") (pinfunction "A5") (pintype "bidirectional") (tstamp 3988ebb9-9a7e-49a8-a2e9-11b37ada7ba6))
(pad "7" smd roundrect (at -2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "RD5") (pinfunction "A6") (pintype "bidirectional") (tstamp 1c08710e-b6b0-4e8c-aab0-3a6d372fe0a9))
(pad "8" smd roundrect (at -2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "RD6") (pinfunction "A7") (pintype "bidirectional") (tstamp 2cb56840-25ec-444a-87a4-9673b316d9f2))
(pad "9" smd roundrect (at -2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "RD7") (pinfunction "A8") (pintype "bidirectional") (tstamp 3b1f0072-db27-4104-a1eb-55084221d9d3))
(pad "10" smd roundrect (at -2.8625 2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "BUSOE") (pinfunction "OE") (pintype "input") (tstamp c0ff660b-92ec-48ec-984c-b71f61dc4bbf))
(pad "11" smd roundrect (at 2.8625 2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 33a85c78-c4a5-4b70-859f-6828971b66c8))
(pad "12" smd roundrect (at 2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "D7") (pinfunction "B8") (pintype "bidirectional") (tstamp 218bb48a-88af-4b90-9b77-9f341ab83dcb))
(pad "13" smd roundrect (at 2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "D6") (pinfunction "B7") (pintype "bidirectional") (tstamp 26297bb0-5e24-46d9-9d26-d28f5364ec7e))
(pad "14" smd roundrect (at 2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "D5") (pinfunction "B6") (pintype "bidirectional") (tstamp 69b2bde0-3e9a-4f18-9804-e7a47cdaf396))
(pad "15" smd roundrect (at 2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "D4") (pinfunction "B5") (pintype "bidirectional") (tstamp fc99e51a-1d76-4c30-b5a5-ac4b2961fc04))
(pad "16" smd roundrect (at 2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "D3") (pinfunction "B4") (pintype "bidirectional") (tstamp 9ef127f4-6604-4e51-9060-0a5ac547bde3))
(pad "17" smd roundrect (at 2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "D2") (pinfunction "B3") (pintype "bidirectional") (tstamp 5b079484-c96a-47d8-b090-b2f79c5559ab))
(pad "18" smd roundrect (at 2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "D1") (pinfunction "B2") (pintype "bidirectional") (tstamp a214aebb-e251-43bc-9161-96cc51acf8ce))
(pad "19" smd roundrect (at 2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pinfunction "VCCB") (pintype "power_in") (tstamp 7e966d9e-6f4d-4084-8d96-9ad5b3afaed9))
(pad "20" smd roundrect (at 2.8625 -2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "D0") (pinfunction "B1") (pintype "bidirectional") (tstamp a8c9ed46-bc8c-4d07-89d6-bb297324edb4))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/TSSOP-20_4.4x6.5mm_P0.65mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9)
(at 105.41 67.0475 -90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/9e4c9116-1fbc-4525-95c9-b3977ae1de31")
(attr smd)
(fp_text reference "C2" (at -2.2775 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760)
)
(fp_text value "0.1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e5203297-b913-4288-a576-12a92185cb52))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pintype "passive") (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pintype "passive") (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 62678280) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97)
(at 114.935 77.475 90)
(descr "Through hole straight pin header, 2x06, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x06 2.54mm double row")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/6eb41fb3-b788-4205-94e5-202ceec2641b")
(attr through_hole)
(fp_text reference "J1" (at 5.085 6.35 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
)
(fp_text value "IRQDMA_JP" (at 1.27 15.03 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
)
(fp_text user "${REFERENCE}" (at 1.27 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f6afe3e-3cb2-473a-819c-dc94ae52a6be)
)
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 12c8f4c9-cb79-4390-b96c-a717c693de17))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 2a6075ae-c7fa-41db-86b8-3f996740bdc2))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 4344bc11-e822-474b-8d61-d12211e719b1))
(fp_line (start -1.33 14.03) (end 3.87 14.03) (layer "F.SilkS") (width 0.12) (tstamp 8f12311d-6f4c-4d28-a5bc-d6cb462bade7))
(fp_line (start 3.87 -1.33) (end 3.87 14.03) (layer "F.SilkS") (width 0.12) (tstamp 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c67ad10d-2f75-4ec6-a139-47058f7f06b2))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp db742b9e-1fed-4e0c-b783-f911ab5116aa))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 282c8e53-3acc-42f0-a92a-6aa976b97a93))
(fp_line (start -1.8 14.5) (end 4.35 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 5f38bdb2-3657-474e-8e86-d6bb0b298110))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d72c89a6-7578-4468-964e-2a845431195f))
(fp_line (start 4.35 14.5) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp eaa0d51a-ee4e-4d3a-a801-bddb7027e94c))
(fp_line (start 3.81 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 0b4c0f05-c855-4742-bad2-dbf645d5842b))
(fp_line (start -1.27 13.97) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 83c5181e-f5ee-453c-ae5c-d7256ba8837d))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp ca5b6af8-ca05-4338-b852-b51f2b49b1db))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp ea2ea877-1ce1-4cd6-ad19-1da87f51601d))
(fp_line (start 3.81 -1.27) (end 3.81 13.97) (layer "F.Fab") (width 0.1) (tstamp f699494a-77d6-4c73-bd50-29c1c1c5b879))
(pad "1" thru_hole oval (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 45 "IRQ5") (pinfunction "Pin_1") (pintype "passive") (tstamp cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 59 "IRQ") (pinfunction "Pin_2") (pintype "passive") (tstamp 0d993e48-cea3-4104-9c5a-d8f97b64a3ac))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 "IRQ7") (pinfunction "Pin_3") (pintype "passive") (tstamp b12e5309-5d01-40ef-a9c3-8453e00a555e))
(pad "4" thru_hole oval (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 59 "IRQ") (pinfunction "Pin_4") (pintype "passive") (tstamp be6b17f9-34f5-44e9-a4c7-725d2e274a9d))
(pad "5" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 47 "DRQ1") (pinfunction "Pin_5") (pintype "passive") (tstamp f56d244f-1fa4-4475-ac1d-f41eed31a48b))
(pad "6" thru_hole oval (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 60 "DACK") (pinfunction "Pin_6") (pintype "passive") (tstamp 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5))
(pad "7" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 48 "DACK1") (pinfunction "Pin_7") (pintype "passive") (tstamp 86ad0555-08b3-4dde-9a3e-c1e5e29b6615))
(pad "8" thru_hole oval (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 61 "DRQ") (pinfunction "Pin_8") (pintype "passive") (tstamp 73fbe87f-3928-49c2-bf87-839d907c6aef))
(pad "9" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 "DRQ3") (pinfunction "Pin_9") (pintype "passive") (tstamp dd334895-c8ff-4719-bac4-c0b289bb5899))
(pad "10" thru_hole oval (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 60 "DACK") (pinfunction "Pin_10") (pintype "passive") (tstamp 02538207-54a8-4266-8d51-23871852b2ff))
(pad "11" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 50 "DACK3") (pinfunction "Pin_11") (pintype "passive") (tstamp 17ed3508-fa2e-4593-a799-bfd39a6cc14d))
(pad "12" thru_hole oval (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 61 "DRQ") (pinfunction "Pin_12") (pintype "passive") (tstamp 0f560957-a8c5-442f-b20c-c2d88613742c))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9)
(at 95.25 67.0475 -90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/3d78e61f-0a56-492a-a9ed-63f4ebcd2918")
(attr smd)
(fp_text reference "C1" (at -2.2775 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29)
)
(fp_text value "0.1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "VCC33") (pintype "passive") (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pintype "passive") (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b)
(at 137.795 64.135 90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ISARPi.kicad_sch")
(property "Sheetname" "")
(path "/f42d9b20-1bf4-4275-9abe-6b77491c550e")
(attr smd)
(fp_text reference "C5" (at 0 -1.905 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9)
)
(fp_text value "0.1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 088f77ba-fca9-42b3-876e-a6937267f957))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 71989e06-8659-4605-b2da-4f729cc41263))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff))