-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlatchup-badge.kicad_pcb
19132 lines (19066 loc) · 831 KB
/
latchup-badge.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.600198)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.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)
)
(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 0.480066) (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.480066) (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.480066) (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.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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/PIN9")
(net 2 "Net-(J1-PadA5)")
(net 3 "/PIN10")
(net 4 "/SS_PSRAM")
(net 5 "/PIN4")
(net 6 "/PIN3")
(net 7 "/PIN48")
(net 8 "GND")
(net 9 "+5V")
(net 10 "+3V3")
(net 11 "+1V2")
(net 12 "Net-(C10-Pad1)")
(net 13 "Net-(D1-Pad1)")
(net 14 "/PIN45")
(net 15 "unconnected-(U2-Pad4)")
(net 16 "Net-(R2-Pad1)")
(net 17 "/ICE40_SPI_SI")
(net 18 "/ICE40_SPI_SS")
(net 19 "/ICE40_SPI_SCK")
(net 20 "/ICE40_SPI_SO")
(net 21 "Net-(J1-PadA6)")
(net 22 "unconnected-(U3-Pad4)")
(net 23 "Net-(J1-PadA7)")
(net 24 "/PIN47")
(net 25 "/PIN44")
(net 26 "/PIN28")
(net 27 "/PIN34")
(net 28 "/PIN26")
(net 29 "/PIN27")
(net 30 "/PIN32")
(net 31 "/PIN31")
(net 32 "/PIN43")
(net 33 "/PIN36")
(net 34 "/PIN11")
(net 35 "/PIN46")
(net 36 "/PIN13")
(net 37 "/PIN20")
(net 38 "/PIN12")
(net 39 "/PIN21")
(net 40 "/PIN23")
(net 41 "/PIN25")
(net 42 "/USBD_N")
(net 43 "Net-(C17-Pad1)")
(net 44 "unconnected-(J4-Pad4)")
(net 45 "/CDONE")
(net 46 "/CRESET")
(net 47 "/FLASH_IO3_HLD")
(net 48 "/FLASH_IO2_WP")
(net 49 "/RGB_BLUE")
(net 50 "/RGB_GREEN")
(net 51 "/RGB_RED")
(net 52 "/USBD_P")
(net 53 "/BTN_A")
(net 54 "Net-(D2-Pad6)")
(net 55 "Net-(D2-Pad5)")
(net 56 "Net-(D2-Pad4)")
(net 57 "unconnected-(J1-PadA8)")
(net 58 "Net-(J1-PadB5)")
(net 59 "unconnected-(J1-PadB8)")
(net 60 "Net-(J1-PadS1)")
(net 61 "/USB_DET")
(net 62 "/PIN35")
(net 63 "unconnected-(J4-Pad6)")
(net 64 "/P9")
(net 65 "/P10")
(net 66 "/P4")
(net 67 "/P3")
(net 68 "/P48")
(net 69 "/P45")
(net 70 "/P47")
(net 71 "/P44")
(net 72 "/P28")
(net 73 "/P34")
(net 74 "/P26")
(net 75 "/P27")
(net 76 "/P32")
(net 77 "/P31")
(net 78 "/P43")
(net 79 "/P36")
(net 80 "/P11")
(net 81 "/P46")
(net 82 "/P13")
(net 83 "/P20")
(net 84 "/P12")
(net 85 "/P21")
(net 86 "/P23")
(net 87 "/P25")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6998)
(at 109.304 91.633 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c6b08")
(attr smd)
(fp_text reference "C1" (at -2.3876 0.0254 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21c80ff1-f143-4fba-bb50-f06c103cef41)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7195c21-7641-41af-b9f7-53850627f4fd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4124740a-0110-4733-890e-e4b678361869)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp de7fc276-f9bc-4bdc-a392-2cb2dc1fc25f))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp fd2e3277-df88-4b92-8934-ec4ce628e64b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b8ece053-4429-41c3-84fa-8ae757942991))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp caf31e7f-87d3-44f2-9a5c-ec2b17f1956a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d34a5452-da68-4dc3-9159-319e0e980bdd))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e19abf26-e855-4b35-92a4-3dfa0ee117e7))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 71050315-68b8-4d10-9e6b-cd7c95497637))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 72173428-04c1-4adf-8601-1b9d255becc1))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d46ffe21-30ce-44c2-b2e2-298d2769804d))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d56112f3-3084-49a6-8e2f-ef5bd346214a))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "+5V") (pintype "passive") (tstamp 1f6de0e3-e62a-46a6-8ae1-d0a7e699d3a9))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 5b7fd0d2-b9f7-41c4-bee5-a947799285f1))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.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")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c69da)
(at 105.8672 91.6178 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9d3bfc")
(attr smd)
(fp_text reference "C5" (at -2.4384 -0.1016 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fd949bf-9a38-4db9-bdf2-b91a69be256d)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8a68b32-5fcf-423c-8c29-a08f0f7379aa)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 191e62f6-069c-40d8-8a4b-7120b6659a57)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 176bad0a-63a3-4f8a-9209-588011ca37fe))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4415a351-0be4-4f13-bf68-7bcffceb0183))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0f63a9f2-ed6a-4bc6-b3fe-a7ee140af734))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2695335e-23b6-40e2-adcd-59c5ea2d2d52))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c089b175-ef4f-4ce7-9291-ab20d2e07b6b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e60b4a8b-8583-4f48-ac00-ad78c067fa11))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6088afbc-0575-437c-81e2-3cc9160c914a))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 93cc28fe-e209-41a8-ae35-27e9a47a0186))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b00cfeab-6cfe-4ba5-bf85-c682357569e9))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ba1a308b-61f5-43b4-b50c-a0d1646e7ae8))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp 3f31c20f-c010-4083-8bd0-6e4b25954e36))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 2d7938dc-86cf-4443-a112-9dfa09a76774))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.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")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6a0b)
(at 122.3518 76.962 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c7bef")
(attr smd)
(fp_text reference "C8" (at 2.2606 0.1778 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a8c44f1-8147-4f44-bd5d-14ed9d4e6164)
)
(fp_text value "10uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9aec38ff-22f9-49dc-bcd9-3162f988b659)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 43b78293-2c8a-4481-835f-b74e69e960a9)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 321710d1-4298-4ac6-aa6b-d42019113daa))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 52c09448-c0ac-4360-9883-6825b404de15))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 61e276ba-78af-4527-bf25-3e37690c029f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c1a14e33-0c4a-46ac-98cc-7caefa69e34a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e250a440-6633-4770-b898-2b868a90de18))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e5aad497-65d5-4422-80f8-51c5ae7606fd))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 55accf7a-9bac-410b-a643-dc73d65aa22b))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5d6282ae-af52-4f89-a99d-aa92fed7aec7))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8f7de6ef-8397-4d00-941d-b9d8783f172a))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c4c5ae14-d6c1-4a31-b046-815b45e089f0))
(pad "1" smd roundrect locked (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(C10-Pad1)") (pintype "passive") (tstamp 0b0c7a17-8037-40f8-a9e8-e53c99e3d3c1))
(pad "2" smd roundrect locked (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 2faaefb3-1347-49de-a999-0155404d5afa))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6a1a)
(at 119.2022 77.3176 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c7d0d")
(attr smd)
(fp_text reference "C9" (at 1.8034 -0.3302 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a9c72d1-9091-4f43-858c-f54a3fc25876)
)
(fp_text value ".1uF" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c1f5357-81a8-4b57-86bd-06d7b49fd0c3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 37900207-240c-4500-aae9-ba4a52f32954)
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 362dd91e-8d09-4b5b-ad47-e65dc765fb95))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5d7ad702-e08d-4e53-8c93-3c0a40163e3b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 64ba7956-9233-41eb-9f63-b788a6ea777d))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b51a596e-1b2f-4cf7-81dd-457dbdd4d4cc))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 07cd5526-5704-47b2-b84a-6cc9dff7d61f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3c81f6a9-654b-499d-b345-5b50fca60664))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp adbe2465-94fd-4ac0-a427-a6e8f33d1b7f))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c1c06dd9-1070-4c9a-9809-990f2c327ff7))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+1V2") (pintype "passive") (tstamp 425256fc-a82f-4510-ac37-335d6c4691d6))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp c2882ed5-6aa5-487e-93fe-8737f0061b08))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6a29)
(at 121.1326 77.3176 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c7c55")
(attr smd)
(fp_text reference "C10" (at 2.3114 0.1524 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ab0d147-ba8e-47d4-be9d-02fb87b1940a)
)
(fp_text value ".1uF" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fc22547-ce51-4050-89f7-f8d94cf8650b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 1db0aed2-52c1-4fbc-985b-2dd921cc4476)
)
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 10a1165f-b7cc-44d0-b8d0-598fece227ad))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4b960f28-18ae-4bef-93a5-c572290422a5))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp d72a1f00-ff96-48a9-aa31-40ff0bbc0875))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e4c487f6-3cda-42a0-a394-1969294fc9c1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 2827c86e-ce03-4ebc-b5d1-85931aa15d1b))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 56ddfafe-26df-474f-a7c0-03af98cc6fb7))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp aa419b97-baf1-4abc-8395-ae1638c626cb))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp fb92b516-cccd-4697-951c-a0abd0f3b316))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(C10-Pad1)") (pintype "passive") (tstamp ddae741e-73b2-40a0-aae6-0c9e511708cc))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 112c1d92-1913-42ab-8d17-d2869872a02a))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_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")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6a3a)
(at 118.1608 91.5924 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9caa24")
(attr smd)
(fp_text reference "C11" (at 3.1242 -0.0254 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8df77cd1-ff62-4928-af53-cf3dfef5c572)
)
(fp_text value "10uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cff1e118-146b-42c8-87d5-2dcba4f355b9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 27b747ae-6b55-4c63-a0b8-83a46906195a)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 137f177b-a3a1-4b8e-8bff-c02c3d28a164))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp ee8946e2-454d-4d6e-a1c0-696af1045719))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 158d8e26-3fce-4a7b-b080-c819f5b137ba))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b6c3d577-a223-4705-80ec-19a4b33bb036))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d8a82e5c-82ec-4c47-bafa-e8b632d3da3f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d940c0ff-d13f-4830-9c04-049d93a62d1b))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 26a36314-e9d7-4e8c-acbf-4486c07e0f36))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 92f0cdd9-661d-4ad6-86c9-ccb0e06ca07b))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b5630ef0-707a-4dbc-9d20-2f720184a916))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cefdcc52-e11c-42d8-b829-7837cacc6487))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+1V2") (pintype "passive") (tstamp 48282d93-2672-44d7-89aa-0e5f357b1241))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 7094ddc3-1068-4649-8aa0-ad4aff7300d7))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6a49)
(at 118.11 88.9254 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9caa2b")
(attr smd)
(fp_text reference "C12" (at 0.0762 -1.5494 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 252dd6d1-0214-453a-862b-94a773d8916a)
)
(fp_text value ".1uF" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc2d9cf2-ecd4-4618-859f-4a57376e249f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp eed01524-c264-4925-9b90-967190e1e03f)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 03261cb3-dbf8-469d-86fd-4bf054775c1d))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 07ecdcb6-02d9-4056-93f7-73cff976bbed))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2b1862e5-2903-41c8-bf23-a6f9c94200e3))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp c73ec277-ecf0-4cdc-b90b-cdf0253954a5))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0747b1da-6c2e-4ac2-91ee-5002e4937dc2))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 419a0d80-2041-48db-acd7-cdd3e53a568f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 9e6a8ab5-bc11-4189-ae1d-3eac97406de1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b432ecee-fde7-4d99-bffe-44bdbbc7b6f5))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+1V2") (pintype "passive") (tstamp 323bd837-1d50-4f68-9e18-b7dc272291c1))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 95abb64e-acc0-4ec6-b7f5-7d5cb02360cb))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6a6b)
(at 125.549994 79.479711)
(descr "Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c5d8c")
(attr smd)
(fp_text reference "D1" (at 2.3875 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21394984-5efa-48a4-9cd3-cf35708778f7)
)
(fp_text value "CDBU0520" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed7473b2-8602-49b7-80b1-d3ee354a1f8d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 46f52cd1-fac9-4ca9-9722-cf2406b7d8db)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 2bcd449a-9d1c-4343-b2c2-6fde4405bdc5))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 44ecee09-319a-411b-b09e-f229fd8ded0f))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp d7ef9330-17fb-43b1-8250-eca3603fec45))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6b6d7ac9-0119-40cf-841c-e5240f0fc36d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a1aa6969-2268-4d4a-a17b-792364acf359))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a34df2ff-9c4e-4304-a788-6e9fde0c8ee0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp feeaac7b-58ce-41a8-b22d-2840588fe242))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3a9a6b69-e8e9-4325-9899-5592603bc441))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7656209d-e4f3-40ae-a90b-37c65774a56b))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 920a8c26-66e0-4912-bc27-826a4f3297a6))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp baed127e-db32-45f2-bc79-fb267d70b5a3))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c1f382db-9c90-4165-8be5-6da1c69c22e4))
(pad "1" smd roundrect locked (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp f2764ffe-c354-40d1-83ff-ca890efe4b2c))
(pad "2" smd roundrect locked (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "A") (pintype "passive") (tstamp 93d56171-5185-4c3d-b875-21b42081d9d6))
(model "${KISYS3DMOD}/Diode_SMD.3dshapes/D_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00005c9c6b39)
(at 112.479 91.76)
(descr "5-pin SOT23 package")
(tags "SOT-23-5")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c657e")
(attr smd)
(fp_text reference "U2" (at -0.002799 -2.727712) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e0409bf-34ed-4d3b-a793-1018bb2e740e)
)
(fp_text value "TLV70012_SOT23-5" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81d4bdbc-a142-4f33-b058-aa7cd0baf1c8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 8e622b7a-cbb7-478e-af7f-e632aee8e148)
)
(fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 2bed41ff-9219-4ce6-b592-57e27ebd3e81))
(fp_line (start -0.9 1.61) (end 0.9 1.61) (layer "F.SilkS") (width 0.12) (tstamp c2438f35-7bb3-4616-957b-35281a48a007))
(fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp a23a8c95-0683-46a0-aa25-c811749b35ca))
(fp_line (start 1.9 1.8) (end -1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp a27e22be-a4e7-42d7-a579-ce23bd7aa454))
(fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b94608a9-8c9f-4202-aa54-f8e9cd52e408))
(fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d99b7fa9-dd84-4b66-a87b-5420434c88d5))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp 18f01df2-bf12-4e36-a60d-f8839baddf6a))
(fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 6b42fb42-4b90-431b-b58e-3ab3a80d5bd6))
(fp_line (start 0.9 1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 87da6f14-ae0f-423b-b4f8-f3f007e1e02a))
(fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp a5564313-208c-4cf9-b89c-f6141d55c4b1))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp ff4708b2-1d53-46a0-b046-3f1dc9117993))
(pad "1" smd rect locked (at -1.1 -0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "+5V") (pinfunction "IN") (pintype "power_in") (tstamp 94c1a853-8216-4517-8409-25d14bf1878d))
(pad "2" smd rect locked (at -1.1 0) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 44926527-3e52-440a-8090-bb34442ee99b))
(pad "3" smd rect locked (at -1.1 0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "+5V") (pinfunction "EN") (pintype "input") (tstamp cb36a287-0636-466f-bb01-805ad98f0688))
(pad "4" smd rect locked (at 1.1 0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(U2-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 5b925096-9a4e-4675-a005-2ef869cd300f))
(pad "5" smd rect locked (at 1.1 -0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+1V2") (pinfunction "OUT") (pintype "power_out") (tstamp 057c9b0c-286f-4442-bcaa-5b37128d3591))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00005c9c6b4e)
(at 102.8954 91.694)
(descr "5-pin SOT23 package")
(tags "SOT-23-5")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9d2c2f")
(attr smd)
(fp_text reference "U3" (at -0.002799 -2.727712) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 498af2f2-5ecd-45f2-a45d-a18e86c8fe9e)
)
(fp_text value "TLV70033_SOT23-5" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00f3e43c-f776-46c2-ae02-26353b1b5de5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 4b943d61-6c73-4606-a77d-cec8cdea9114)
)
(fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 75884076-ec44-4b08-b327-e11317ae808d))
(fp_line (start -0.9 1.61) (end 0.9 1.61) (layer "F.SilkS") (width 0.12) (tstamp e990fccd-9c5a-4e1c-8f72-95c890bcacdc))
(fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 02c4c5c1-c7b9-4924-95f3-17920102c992))
(fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8b4c5c06-5d34-48aa-b258-338fa38fc4a3))
(fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp ab31797b-f9b9-445e-a7a4-fc005b50c2de))
(fp_line (start 1.9 1.8) (end -1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp eb837393-dff9-419a-acdc-cec1e579439c))
(fp_line (start 0.9 1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 1502b08d-6cb7-46e0-87bb-38bedbbf1d03))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp 204cad63-bfcb-4fd2-b3cf-e74dfd74a285))
(fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 259b2b92-2d07-46fd-a4e4-8064065473ee))
(fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 7db5f32c-35aa-41df-acb1-64a3a7002bb4))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp c691f1fe-5891-44b8-acd9-a2f259d8adce))
(pad "1" smd rect locked (at -1.1 -0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "+5V") (pinfunction "IN") (pintype "power_in") (tstamp 408671d7-cd70-4561-a39c-aa94dd2e7d9d))
(pad "2" smd rect locked (at -1.1 0) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1452ed30-378d-4742-be22-df8173d5cf7b))
(pad "3" smd rect locked (at -1.1 0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(C17-Pad1)") (pinfunction "EN") (pintype "input") (tstamp e865a953-cb5a-4465-88dc-9be230c785ba))
(pad "4" smd rect locked (at 1.1 0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(U3-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 44931d32-e3d4-4c75-9733-7db6481e8a7d))
(pad "5" smd rect locked (at 1.1 -0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+3V3") (pinfunction "OUT") (pintype "power_out") (tstamp 588ac970-f62d-487e-9aa2-8ba388bac2b3))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.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")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6e62)
(at 115.3668 91.5924 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c74f5")
(attr smd)
(fp_text reference "C4" (at -2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3505de9c-a707-4421-8777-343b5b179e2a)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d57abc5-61c6-4895-aa60-1577743112ae)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ce658956-cff7-46a5-bd1e-aea259125a31)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 9b28e1ad-5623-44c8-8738-38445adfe03d))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 9ec6dc22-4b2b-4b54-855a-e42b817a1cba))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 64cb531a-e826-4f3e-8d55-ab07f5911121))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b7f6cae7-95d7-4256-ba1e-dd27ba3c3a4c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bd6498b2-5d07-48e9-b50b-23da80a6f7ee))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d36fae88-1840-493b-aa01-acaf902bd2bf))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4e42b0a1-bdaa-4cd7-8f8b-b5605557cfc4))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp adec30ed-c363-4dab-a371-b7dfdf0d785c))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cfa0f710-fd5f-4914-bd03-26d1b7d800a6))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f5afee4d-c1c3-47f8-90af-0dd873b56ba6))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+1V2") (pintype "passive") (tstamp 3aa9fc9a-e829-4e3d-ad96-a102d587ce67))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 598af07a-ca3f-41d2-9ee2-cdc72c114a33))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6f3d)
(at 117.6528 77.3176 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9ce86f")
(attr smd)
(fp_text reference "C3" (at -1.7272 0.127 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f885c3de-60a5-476b-9d17-78d7ce035d4d)
)
(fp_text value ".1uF" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 224589c1-b963-4584-aca2-2d89230cef65)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d9a0941f-2c67-4a5b-a80f-cf90f4638895)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1d02a26c-5875-4369-a6e9-c9fa0328e17b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 885e40ac-5e81-445b-8f7e-3455eb9e0f36))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp abd2cac4-170e-4974-bd5b-c31124920101))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bae3a82b-4fae-4fc3-927c-07f8497698fb))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 367143db-6079-4436-9789-14a9d1fd915f))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6f37c305-5b8d-4268-9712-ff97b2fedcd9))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 716773cd-d4da-4969-abf1-196411b4faa6))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e533fbf4-e943-457d-9adb-11ddb0758f13))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 743f4e4c-36e9-43cf-9dc1-a6ee1c62f39c))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp 1c264cbb-59a5-4dfb-9b73-4af485122b76))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c6f92)
(at 124.6124 81.3816 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9d01ef")
(attr smd)
(fp_text reference "C6" (at -2.0066 0.0254) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba43047c-aa15-46c7-8bfd-01fd733a4f34)
)
(fp_text value ".1uF" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d117879b-010a-4c24-bcd0-5137df723cb7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 2d1e72f7-b782-42d0-87e7-831a8c7479c2)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 017af310-98d7-4ed2-a4e8-4a49a1e25163))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 187841d4-22d0-4ed5-a80c-95132aee32ed))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 340d1534-ea2c-439b-befb-1a86e1765136))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp aa303a15-56b6-4bee-a0f6-8ffe45e6bb5a))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 4bab1ece-194c-4217-8613-81eb460853d2))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a3f18ae9-38a5-49d9-97df-86ee6857d59b))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp ace62df9-a25d-40f2-a875-0a5a5ed0c340))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c3909492-5664-439e-8e2b-328d582cab10))
(pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 510d4fef-a8d6-413c-9b75-7f82c9810123))
(pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp 9bb12c25-2027-439d-a7b1-ae93813206e6))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c70cc)
(at 113.5888 86.6902)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9d1c1d")
(attr smd)
(fp_text reference "C13" (at -2.4638 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e09318c-3505-49e9-a11d-603446cc9cfd)
)
(fp_text value ".1uF" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9d3d38d-5691-4f61-a596-49ac8f53c90d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp a3421522-efc7-430f-83de-8867fc0a6d82)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7c1b2f43-d3eb-4677-9725-47834bfc2a1c))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 84176561-9d30-4c3b-aba3-66f2266d1642))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 88da6c9a-8d05-47a9-a9f9-9275fdeebaaf))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp dec438fa-a0e8-4355-a3ac-a640f4f60eab))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 319cb7c9-3eae-46ca-9cb0-0783208e90e7))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 93609a68-bdb3-44db-a4b0-5990a1f4b2af))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 93e676c5-1594-4a5b-8c12-4fcb7333c4d7))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c3814024-3988-43b3-88e5-f37f05af692f))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp b49acbe7-4188-4ac3-8898-1c96c27725ba))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp b3d1c3eb-a714-4343-a90e-83296c3e42c4))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005c9c75d1)
(at 120.1674 77.3176 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c9316")
(attr smd)
(fp_text reference "R1" (at -1.8542 0.1016 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 781975f6-f65e-4d87-a001-ca7ce365004a)
)
(fp_text value "100" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c05f555-9fc3-4023-b03a-b2ef86028927)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 475d80bf-ad57-4226-83c8-82366a7059b7)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1b49ac3a-ef50-40b6-88b3-49957cd8fabe))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4d194230-68da-40c3-998a-8fe2ff186bb0))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d4555dc1-b49c-4f1d-9b29-12f55466e5be))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e5607d86-a45a-43f1-9252-f383087dae58))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0963e6a9-550e-4d6d-aa66-738e40f2709c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 8c66b7c2-b245-448b-a93f-b664a54624dc))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b232246b-8843-4ca8-8d68-1aad38a8a294))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f87d7858-3ccc-476e-b900-eb253539a5bd))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+1V2") (pintype "passive") (tstamp 86e8d041-b974-425c-b7f4-3334b68869dc))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(C10-Pad1)") (pintype "passive") (tstamp 23b594b5-ed2b-4b28-8eb4-361b3746e6df))
(model "${KISYS3DMOD}/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")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9c930e)
(at 120.142 73.3298 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9c7ccb")
(attr smd)
(fp_text reference "C7" (at 2.3876 0.020194 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83ce6093-1a82-4842-b046-b5328ec6e27c)
)
(fp_text value "10uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bb28087-c39c-4568-a3c2-37650d044901)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b01efb5c-fc00-4e21-aebe-56d1af145ff0)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 2e6106cb-94d0-4cc4-96ed-d21c7ad409f3))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp fac0dee0-9e06-4c5c-af58-4111fe661f7a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2156b72b-c808-4644-862d-722599f03ee5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8d11dceb-99d0-4aa2-a14e-f0465323ed1d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d1f737f6-23c3-4621-8940-3cf7caef921d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e7167acb-f482-40d8-bb4c-dd94cd055621))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 434d7656-b0fc-4924-8ebf-bb5be2a70809))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7f92c2e2-9938-4831-aef8-04127ef919a2))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ba9385bf-22d6-4bd6-a9ad-b836216c6684))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp da727a83-b1e5-45c4-813a-8a0d996959dc))
(pad "1" smd roundrect locked (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+1V2") (pintype "passive") (tstamp fd51f7ad-cb62-485f-95e1-9931b1accf9c))
(pad "2" smd roundrect locked (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 25929058-44f8-4f4f-90cb-9215ae5f0ba0))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9d2069)
(at 114.5794 72.7456 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9d865c")
(attr smd)
(fp_text reference "C14" (at -2.3368 -0.0254 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cc797a3-ea52-4c56-989a-5c1d2f0515b0)
)
(fp_text value ".1uF" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2628adb-8bea-4f10-960f-097884250d75)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 2bc4cc58-ab62-4b97-9f46-df0af839ac81)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5b33b9da-2f0e-482a-b11c-c124b9791a51))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 99644e4c-f1a7-4ecb-968c-58c0cc1e2757))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp b5774caa-9f3d-43f7-a2f8-9b8671b422d8))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bed2eab8-a28c-4cc2-84b6-9fc79877123b))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 1244c72d-3428-48e0-af1a-aefe715cb232))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 62960b54-ab8f-41ff-963e-ed314363ba57))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a35b69b9-cf5c-48bc-ac75-567d19648570))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp bbd31654-7710-48dd-ae08-e95c00910220))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pintype "passive") (tstamp 9e7c537b-b52c-4eb2-80c1-b6ae927dd83f))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp 16cacf69-4bd6-4e86-a443-d3b18236f3c3))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005c9d20b8)
(at 112.9538 72.7456 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9d3d19")
(attr smd)
(fp_text reference "R2" (at 1.905 0.0254 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9fa01d1d-4a7f-44b0-b951-815fe273435d)
)
(fp_text value "10K" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32e6295b-56df-4245-bfba-9d287d6e5315)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 9e0514a4-b201-4b33-8866-7c766c1b647f)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 476b4769-573c-47f5-9fbd-5a6766b4358c))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 644d3ff7-1939-410a-8fa2-78fd9d607bf4))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 657142a3-a22b-462e-aad4-2ead6e1cca72))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c2e065c0-0b4d-45d5-aede-98798f6571eb))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0b4f10c1-c5ba-478b-80c2-63255ac24a4f))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 263a2beb-e2bd-4b38-81be-60d13845590c))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7614110a-372a-45c7-b9dc-0881dc04d662))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d4a54dfa-a547-44b0-9f66-478d2a8ab81f))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(R2-Pad1)") (pintype "passive") (tstamp ae1ac0fb-bade-4e08-8abb-9f7e5e417f22))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp 20279032-f3dc-4271-bcc1-901ff17f0c35))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (layer "F.Cu")
(tedit 58CD3344) (tstamp 00000000-0000-0000-0000-00005c9d21ce)
(at 113.7666 76.1238 -90)
(descr "Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, 3.2x2.5mm^2 package")
(tags "SMD SMT crystal oscillator")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9d2b97")
(attr smd)
(fp_text reference "X1" (at -0.127 2.5654 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19b47462-1431-4eb4-8cf6-4db2af0feeaf)
)
(fp_text value "ASE-12.000MHz" (at 0 2.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19a28213-2748-47ed-8b84-1a9ea10b423a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.105)))
(tstamp 72b2a446-ccb5-40ca-879b-c39b3c06689b)
)
(fp_circle (center 0 0) (end 0.058333 0) (layer "F.Adhes") (width 0.116667) (fill none) (tstamp 410d42e2-3b69-4053-a444-9b6119827007))
(fp_circle (center 0 0) (end 0.133333 0) (layer "F.Adhes") (width 0.083333) (fill none) (tstamp 68cdc661-cac0-40e4-981e-eebda56774b3))
(fp_circle (center 0 0) (end 0.208333 0) (layer "F.Adhes") (width 0.083333) (fill none) (tstamp d0f99efe-5eed-4cf7-a2c9-76dcdf88da80))
(fp_circle (center 0 0) (end 0.25 0) (layer "F.Adhes") (width 0.1) (fill none) (tstamp d58d3085-ee3c-47e0-b20e-8cf4c29c2ad8))
(fp_line (start -1.9 -1.575) (end -1.9 1.575) (layer "F.SilkS") (width 0.12) (tstamp 1d65bd71-b5da-421d-86fa-70177390a9cf))
(fp_line (start -1.9 1.575) (end 1.9 1.575) (layer "F.SilkS") (width 0.12) (tstamp b4e10195-6dea-414b-9a86-7e5fb408cf1d))
(fp_line (start 2 1.7) (end 2 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 3fe8e900-a4a8-411a-8e56-2604af26327a))
(fp_line (start -2 -1.7) (end -2 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 62ed3ebd-0547-42e7-907a-bbedc6c979e1))
(fp_line (start -2 1.7) (end 2 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 68d40ca2-057d-4d00-8f4c-7db9b411a2aa))
(fp_line (start 2 -1.7) (end -2 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 879b1a78-ed8a-40ac-939e-2d2b6a77f191))
(fp_line (start 1.6 1.15) (end 1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 1db874dc-8013-4f11-aeba-6b721e710f08))
(fp_line (start 1.5 -1.25) (end 1.6 -1.15) (layer "F.Fab") (width 0.1) (tstamp 2cbf5a7b-9fe9-437a-9d14-88752bf731bc))
(fp_line (start 1.6 -1.15) (end 1.6 1.15) (layer "F.Fab") (width 0.1) (tstamp 8a5fe4b1-4cfd-4d88-a277-9543f923bd9a))
(fp_line (start -1.6 -1.15) (end -1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 99647a3f-1d79-475a-8d47-b1a0dbe9af48))
(fp_line (start -1.5 -1.25) (end 1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp a3f20268-7fb0-473c-aaa9-e60ed9e623bb))
(fp_line (start -1.5 1.25) (end -1.6 1.15) (layer "F.Fab") (width 0.1) (tstamp b49d0265-65cd-415f-ab44-81216163f818))
(fp_line (start -1.6 0.25) (end -0.6 1.25) (layer "F.Fab") (width 0.1) (tstamp b5015750-97cb-4fe6-9c4a-143a168886e0))
(fp_line (start 1.5 1.25) (end -1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp e032b5dd-3c94-4ac0-a1dd-3179ab4712d6))
(fp_line (start -1.6 1.15) (end -1.6 -1.15) (layer "F.Fab") (width 0.1) (tstamp f6b7cc8c-8c52-4e01-8eff-aedb21276e98))
(pad "1" smd rect locked (at -1.05 0.825 270) (size 1.3 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "Net-(R2-Pad1)") (pinfunction "EN") (pintype "input") (tstamp 2ddf836b-272b-49f4-b392-a1d05afc3bc1))
(pad "2" smd rect locked (at 1.05 0.825 270) (size 1.3 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 822057b7-0197-446e-a603-ed9bd3331449))
(pad "3" smd rect locked (at 1.05 -0.825 270) (size 1.3 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 62 "/PIN35") (pinfunction "OUT") (pintype "output") (tstamp 50dc850a-b323-48cc-9ca4-f44f5bae62af))
(pad "4" smd rect locked (at -1.05 -0.825 270) (size 1.3 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+3V3") (pinfunction "Vdd") (pintype "power_in") (tstamp cae2ff10-356d-4c81-b8f2-437f438f246e))
(model "${KISYS3DMOD}/Oscillator.3dshapes/Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005c9d2af8)
(at 129.9464 95.758 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "latchup-badge.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c9dc539")
(attr smd)
(fp_text reference "C15" (at -0.05842 1.27 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b149a86-376e-4a0c-980a-4daffbc8d101)
)
(fp_text value ".1uF" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))