-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlpc812-breakout.kicad_pcb
15092 lines (15056 loc) · 583 KB
/
lpc812-breakout.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")
(title_block
(title "LPC812 Breakout Board")
(date "2022-04-02")
(rev "A")
(comment 1 "Universal breakout board for LPC812 MCUs")
(comment 3 "Michal Potrzebicz <michal@elevendroids.com>")
(comment 4 "License: CC BY-SA 4.0")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0.0508)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 "GND")
(net 2 "/XTALIN")
(net 3 "/XTALOUT")
(net 4 "VCC")
(net 5 "/~{RESET}")
(net 6 "unconnected-(J1-Pad6)")
(net 7 "unconnected-(J1-Pad7)")
(net 8 "unconnected-(J1-Pad8)")
(net 9 "/P7")
(net 10 "/P6")
(net 11 "/P4")
(net 12 "/P3_SWCLK")
(net 13 "/P2_SWDIO")
(net 14 "/P1")
(net 15 "/P0")
(net 16 "/P17")
(net 17 "/P16")
(net 18 "/P15")
(net 19 "/P14")
(net 20 "/P13")
(net 21 "/P12")
(net 22 "/P11")
(net 23 "/P10")
(net 24 "/P9")
(net 25 "/P8")
(net 26 "/P8_XTALIN")
(net 27 "/P9_XTALOUT")
(net 28 "VDD")
(net 29 "Net-(D1-Pad2)")
(net 30 "Net-(D1-Pad1)")
(net 31 "Net-(D2-Pad2)")
(net 32 "Net-(D2-Pad1)")
(net 33 "/LED1")
(net 34 "/LED0")
(net 35 "Net-(Q1-Pad2)")
(net 36 "Net-(Q1-Pad5)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5aaba3)
(at 140.589 104.013)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5c2e23")
(attr smd)
(fp_text reference "C3" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8194575-5e83-424b-9bc1-c0b79369f99c)
)
(fp_text value "100n" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0916deba-2579-44ce-bcc0-0c56d78c5bd3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d381e237-63ae-40a2-b286-525994413db9)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 44a3d6e0-81da-4c53-981a-168ed3134773))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4a5d9644-2379-4885-b4a6-a8623a813c99))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5d69439c-bbdc-43f5-bd41-c6169c74e2f5))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp be813dec-c91f-4c06-808b-c742fd6baf99))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c32c2d53-75ef-4371-af70-06a6dd412bcc))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f8f6e65d-70e9-4022-98b8-a0f0810215e8))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1088c273-6236-415b-85a3-3a7f49436fe6))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4213bb43-a38a-4b14-8bc2-c3c7ea3d73b0))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ce6d7a5f-f433-4e4b-b5b7-b76118558c78))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d86de366-b062-45a7-bdc6-eee27735041a))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "VDD") (pintype "passive") (tstamp 7f704135-5782-421c-aa14-3367e8023e6d))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 02a911eb-13f8-468a-9e52-a59bcd594995))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5aabb4)
(at 140.589 102.489)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5c2fc4")
(attr smd)
(fp_text reference "C4" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7238a92-fd90-4f03-97ca-e07dac351f72)
)
(fp_text value "10n" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdff2fcd-c6ae-4363-94be-e87012c3e9e7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8b487b8b-12fd-4cf3-8cdb-1ef50af640be)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 0392df2f-b1af-48ff-aa24-2cc5cb8498b9))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 86915ed6-ec29-4952-8c3f-87e8b2adac8a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3bdc1b02-322d-48f9-9d18-b7443809881e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7d49c9c5-5903-4690-a2d3-e7457b1c219b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 952273a1-b0c0-4d7a-93ce-f59799a5c249))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9cb2aa88-c3a2-4cc1-bdd9-a23918a92f25))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 92887ca2-ec31-4498-981b-8dceb06ee776))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c50299e9-9259-4a70-896e-dc1c1b1ee1d5))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f0fd2e44-a386-4ee9-98ea-d37af6599518))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp fbfd32a9-c3c0-412d-baa0-00d63242f652))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "VDD") (pintype "passive") (tstamp 747aec7c-69d3-480d-850e-7b5b9dac4015))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7ffe756e-7031-40a9-a22e-c934089443a6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 00000000-0000-0000-0000-00005f5aabc5)
(at 140.589 105.537)
(descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "MFR" "Murata")
(property "MPN" "BLM18AG221SN1D")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5c3290")
(attr smd)
(fp_text reference "FB1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efce3ccf-dccf-4ab2-825c-383d2306383e)
)
(fp_text value "220R/100MHz" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99ec6979-bcc8-4337-9bd4-a220817f5d75)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b8f8c374-0785-47df-9952-6aef91a53fcd)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 3d8d38a0-dd71-4e70-9b1c-fca6a63ae371))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp a3863288-0321-49b8-9fae-b7064a5b590b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0859a698-8ba2-4f1f-ae12-b881b66cd4fa))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 32b96d9a-0a5e-42a7-ab3f-5181e8cf124c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 764fcbe0-b8d6-4993-a703-a87e34b7ef22))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ff466d11-746b-4f59-945b-fc24cba9d524))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 022f0153-6de4-4161-88d2-01a4cb90bd6d))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 47d8f9e4-65b8-4e24-a41b-0863b0041451))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 57f1b421-32fe-4316-8a13-1ecb16ddbbaf))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a32ba608-f4e5-4925-8a6a-700fd798e173))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "VDD") (pintype "passive") (tstamp 8a0f8d63-3995-4e41-bf90-b71b0dd499a1))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pintype "passive") (tstamp 5b3c6b2f-addb-494a-9415-fc0b11082cb9))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5aca7d)
(at 139.573 107.823 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5c291d")
(attr smd)
(fp_text reference "C1" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c609c484-2253-4f34-947c-2a26d9dba820)
)
(fp_text value "18p" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e372dc8-30ff-4a61-8ed0-592ad0944ea6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7e540c88-b84d-4388-8437-b417fdc7497f)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 5e55078b-97af-4c80-838b-eaf4f630bb7a))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 9c8ec97b-24c7-44ce-984c-6152db0371aa))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 059050bd-8528-4253-99a9-2b538d18cf46))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6a4191db-6adc-4433-b658-a6bfdfa95a8a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9510165e-3a21-421a-9d20-c6065294b8e2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f93750aa-9072-471e-8eda-727f7c99e298))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 060e7195-8501-4e09-8c43-1c823c24812a))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 16f5debb-7b35-41b9-bae0-84ba2f44a466))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 997cb231-50c8-4d21-8ed8-7374ef99c345))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp accfdd65-ff36-4857-91ff-9c83807ce9b1))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/XTALIN") (pintype "passive") (tstamp c139b080-c6d0-4461-9e29-74d2b8793fec))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e07fa649-4e13-4bee-aaed-86e11b4662cd))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5b42fb)
(at 132.715 115.316 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5ba8e0")
(attr smd)
(fp_text reference "R5" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01211e80-0d40-457b-90b0-cb6aee7c79cb)
)
(fp_text value "47k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39fd90c9-6753-4f1d-87f2-74566c11d9be)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c3dacd3e-b52b-4301-9490-d95c6dd8ffd0)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b2732554-e9df-498e-aa44-b289f1dbee48))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c629176b-abd3-4695-ae9b-e765a0bc8aed))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b3751b7b-b6ab-48ad-bfb8-0b43477bd93d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d206eaeb-b765-44c0-98f8-5cb2b5f72a49))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp eb29b682-39c0-4a21-802f-1dff5d3705f6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ec914847-e5ee-48dd-9524-6b67e64aed5d))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 52ed81fc-a26e-4ce8-9bd9-b4e417cc39dc))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 688314f3-e4bf-4954-929f-1bc17c4fd8eb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ce85de40-edf2-44dc-bfba-143e226472b7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e15653fc-cd6a-42a4-800c-964ab4204dda))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(Q1-Pad2)") (pintype "passive") (tstamp d509b985-b9aa-4acb-b21d-870a86027562))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "/LED0") (pintype "passive") (tstamp 954482fc-579b-4058-8806-b20c05ff63c4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5b430c)
(at 132.715 113.792 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5baa88")
(attr smd)
(fp_text reference "R6" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9834a0b-2dad-4814-b1aa-56f9607c599a)
)
(fp_text value "100k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33f7377d-840d-491c-901a-5925d6181100)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3c7d7bb6-3316-4dc7-9968-fa2f80ff8e01)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 96d55db7-b853-46bd-b2e5-9b8441f416ce))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp fc2ec2c4-3807-4c8b-ae39-969ae3f898d5))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 80552f17-8fea-4220-a8c7-17b395c835ea))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84811ab4-dcbb-4952-889e-fa8cdf32b8a2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9c9dbc2d-ae0b-4dc9-9a86-a9053d6e1219))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d3f82bad-b686-41e3-a023-c4b540ccee0d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2b00a4e6-48e8-47e3-9aac-7388801fd44a))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7bcfb446-f41e-443c-8baf-daff2cdd0fcb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7f599b9b-2fca-4c4b-93d4-fafadfac0743))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a63024ae-a29d-4dc7-b16e-d69114e85d03))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(Q1-Pad2)") (pintype "passive") (tstamp bf53c18e-4ab4-45b1-8839-768eb66aaa1d))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 2b404d4c-6209-43d6-b79e-bc557d17da07))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5b433f)
(at 132.715 112.268 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5bae40")
(attr smd)
(fp_text reference "R9" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49487f7a-c89c-4f9d-a882-3dfd5e10b95b)
)
(fp_text value "100k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 389e4a95-2290-46bf-8bd1-5c36e3aaed69)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4c6b75d6-b445-4470-9819-eb07600a9c92)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 0113dadb-8ac0-4a7d-b069-e7fa622a99e6))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp fad71acb-9464-4186-bf18-509e476f3dd8))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 28089da0-eafa-4d52-9f6b-3d0b1a1749e0))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 452b7a0d-ca71-464c-b85e-204852963dec))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4bd7e1cf-fab7-4a21-99c6-7bbcbe191640))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f97ef0e7-4e7f-41a4-85d9-df00c76b6c2d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5e302381-5029-48c8-8327-02be0febc82f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c8ab7fc9-a6e6-4b16-9b6b-9bac17dfde11))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ce028a17-6a78-466e-9c1a-6b3dfd85a861))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e8c96f1c-0c26-4518-b37c-f08cf479c5c9))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "Net-(Q1-Pad5)") (pintype "passive") (tstamp b486fcb7-21d5-4be1-99bc-30b62a01b1a4))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 988d004e-6d3b-4d9f-b5bb-c18fbea55227))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5b44fc)
(at 132.715 110.744 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5bb07a")
(attr smd)
(fp_text reference "R8" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cd4b1e5-62fb-49cd-b3fa-cf507fbc1315)
)
(fp_text value "47k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2c56c7c-47e4-40ae-b0d7-53989e417d78)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a6289ea2-0de9-40c9-a33d-d9827fac1f40)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 30e8a845-97f5-4ce9-b73e-10152781d94b))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 91f2e008-e2eb-406a-8d73-be10afb288f1))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 44aea6c5-14fe-4be7-aa8c-7a7cec33e333))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 75214b83-389e-4513-b3a1-83ea320bfdc3))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp de2de399-87bf-4da3-bf30-647250f0ce05))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f94479b1-f9f3-4af3-a875-5f79f000313f))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 30e55e26-f8cb-44ae-8e3e-44c49722a97d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 48afce0f-7e1f-46c0-880f-a4a63c1d9a1e))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8c5ea0f9-5247-49a9-a380-05b83eeb2ca3))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 99fc569e-3bed-4dbb-8188-337d3982e54f))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "Net-(Q1-Pad5)") (pintype "passive") (tstamp 22613d29-a424-425d-8152-2f3a576d2b7b))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "/LED1") (pintype "passive") (tstamp 510a37b2-122d-45e6-a9fc-4562eab7df8a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-00005f5b4f74)
(at 139.573 114.427 90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5b9b3b")
(attr smd)
(fp_text reference "D1" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 680bb47b-7164-4702-afea-7be5dd633ee9)
)
(fp_text value "LED0" (at 0 -1.524 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d65e5cd5-7b45-4d3b-a0f8-3ba6585b3450)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 82fd2e12-6295-4874-b7f6-90efc6c2cd20)
)
(fp_line (start -1.685 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 329f8656-0c84-4740-b05d-d74ebd41a9b0))
(fp_line (start -1.685 -0.96) (end -1.685 0.96) (layer "F.SilkS") (width 0.12) (tstamp 79fc70ad-13cc-416f-9b21-544978847ac3))
(fp_line (start 1 -0.96) (end -1.685 -0.96) (layer "F.SilkS") (width 0.12) (tstamp abb00f23-0cee-41a3-bfbc-3355ab75d9a0))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 314d2b6c-2504-40e0-8df4-2dd5d47577ea))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9cbaee81-ee7f-4e43-93e8-125923efa6c7))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a3430cc3-937b-4153-8bcd-b4f6c850dca3))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp b6d5b447-d9a3-4bc0-8ed9-e6d2d831bae7))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 02899346-1e9e-4517-9128-9031e5f731e0))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 14fa106b-7163-40a4-befe-332a76b585fa))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 811610e9-ee8b-4676-801b-3ec514de0c58))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp dcdf5f4b-76d4-4f39-a203-593b5d52a3cc))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp f13effb4-528a-491c-aa4c-0e2a06e8b5dc))
(pad "1" smd roundrect (at -0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 1b4dc967-a040-43d0-814e-c77c857646f5))
(pad "2" smd roundrect (at 0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 8ba7d1d6-3c80-4ba9-a01b-fd8d9ed8224c))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_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 00000000-0000-0000-0000-00005f5fad4f)
(at 137.16 97.79 -90)
(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 "MFR" "NXP")
(property "MPN" "LPC812M101JDH20")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5b7035")
(attr smd)
(fp_text reference "U1" (at 0 -4.2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4fd826f-f357-4a1c-9a28-f614f78f5e17)
)
(fp_text value "LPC812M101JDH20" (at 0 4.2 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 245e9ca2-86aa-4b70-be7d-3dc782f74671)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61cdc483-4987-422f-aac8-153fb77dc31f)
)
(fp_line (start 0 -3.385) (end 2.2 -3.385) (layer "F.SilkS") (width 0.12) (tstamp 281ad10d-0249-4249-ac89-43f4d4fe5f3d))
(fp_line (start 0 3.385) (end 2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp 48c07133-e750-4f5c-96d7-05a9924bfef4))
(fp_line (start 0 3.385) (end -2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp 4acbe93a-eeb2-49c3-8818-651a0e0a66cb))
(fp_line (start 0 -3.385) (end -3.6 -3.385) (layer "F.SilkS") (width 0.12) (tstamp f1abc98c-f7a1-40e6-9dec-8c85805965bd))
(fp_line (start 3.85 -3.5) (end -3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 716afbaa-101e-4781-a689-2b6eae641178))
(fp_line (start -3.85 -3.5) (end -3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp d23de33a-cff8-4d3e-815c-0e42a636b5e9))
(fp_line (start 3.85 3.5) (end 3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp e9ac6802-7159-4091-ada1-486800cba2f7))
(fp_line (start -3.85 3.5) (end 3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp f9b90d5e-d0d7-4775-88de-46a5d114a3f8))
(fp_line (start -2.2 -2.25) (end -1.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 0b69776f-0d89-4343-aaaa-322c761127e4))
(fp_line (start 2.2 -3.25) (end 2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp 1dbe7fc5-f11c-4fde-b24f-c8a7fd2b5541))
(fp_line (start -1.2 -3.25) (end 2.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 719c7224-fbfc-4fd2-b3b1-532e355f1fbb))
(fp_line (start -2.2 3.25) (end -2.2 -2.25) (layer "F.Fab") (width 0.1) (tstamp 83e74be6-3e72-46f5-a2df-155a2ad6d4ef))
(fp_line (start 2.2 3.25) (end -2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp cd54a061-e8be-4f21-b106-f10ac637677b))
(pad "1" smd roundrect (at -2.8625 -2.925 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/P17") (pinfunction "PIO0_17") (pintype "bidirectional") (tstamp 137790bf-c474-4085-a0d3-309c5958c608))
(pad "2" smd roundrect (at -2.8625 -2.275 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/P13") (pinfunction "PIO0_13") (pintype "bidirectional") (tstamp 92631fec-280a-46fe-8b64-7131dcfc5b3a))
(pad "3" smd roundrect (at -2.8625 -1.625 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/P12") (pinfunction "PIO0_12") (pintype "bidirectional") (tstamp c7068532-1656-4fd1-bf12-59e7ad5bfaf2))
(pad "4" smd roundrect (at -2.8625 -0.975 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/~{RESET}") (pinfunction "PIO0_5") (pintype "bidirectional") (tstamp eb9b9bab-083b-4258-80a6-e52ebaf21ead))
(pad "5" smd roundrect (at -2.8625 -0.325 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/P4") (pinfunction "PIO0_4") (pintype "bidirectional") (tstamp bd822880-dcff-465a-bed8-1967e55a12b8))
(pad "6" smd roundrect (at -2.8625 0.325 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/P3_SWCLK") (pinfunction "PIO0_3") (pintype "bidirectional") (tstamp e3e7b790-b5c9-4d0a-83c7-cb894902e431))
(pad "7" smd roundrect (at -2.8625 0.975 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/P2_SWDIO") (pinfunction "PIO0_2") (pintype "bidirectional") (tstamp b5dcd8b8-6528-49cb-b533-a01ecbc609ae))
(pad "8" smd roundrect (at -2.8625 1.625 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/P11") (pinfunction "PIO0_11") (pintype "bidirectional") (tstamp 9e1b6f95-f2ba-436b-a65b-33bfc4b5a8b1))
(pad "9" smd roundrect (at -2.8625 2.275 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/P10") (pinfunction "PIO0_10") (pintype "bidirectional") (tstamp 08631b78-63ae-45d2-9f6d-deba2328db03))
(pad "10" smd roundrect (at -2.8625 2.925 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/P16") (pinfunction "PIO0_16") (pintype "bidirectional") (tstamp aa5368a0-a489-4f9a-8951-417247bcd2c3))
(pad "11" smd roundrect (at 2.8625 2.925 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/P15") (pinfunction "PIO0_15") (pintype "bidirectional") (tstamp 8c4a3b45-0e93-457e-ac09-9d42949e7cef))
(pad "12" smd roundrect (at 2.8625 2.275 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/P1") (pinfunction "PIO0_1") (pintype "bidirectional") (tstamp facc89d0-f411-4b8b-bbfb-6d3a4527cf68))
(pad "13" smd roundrect (at 2.8625 1.625 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/P9_XTALOUT") (pinfunction "PIO0_9") (pintype "bidirectional") (tstamp cf4286cc-1edc-415a-8a70-5f77e2f1395d))
(pad "14" smd roundrect (at 2.8625 0.975 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/P8_XTALIN") (pinfunction "PIO0_8") (pintype "bidirectional") (tstamp c74977de-2fc9-4c59-bb3b-0f756b55f0f4))
(pad "15" smd roundrect (at 2.8625 0.325 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "VDD") (pinfunction "VDD") (pintype "power_in") (tstamp 233598dd-6636-4a43-924c-43c04f17f6bb))
(pad "16" smd roundrect (at 2.8625 -0.325 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp d66ea22e-c7de-45be-addb-c3d5ffddf4c3))
(pad "17" smd roundrect (at 2.8625 -0.975 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/P7") (pinfunction "PIO0_7") (pintype "bidirectional") (tstamp 8b08314e-633c-4334-9177-93597fd58394))
(pad "18" smd roundrect (at 2.8625 -1.625 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/P6") (pinfunction "PIO0_6") (pintype "bidirectional") (tstamp 0fe8293e-2920-4939-b40a-448ce0b5714d))
(pad "19" smd roundrect (at 2.8625 -2.275 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/P0") (pinfunction "PIO0_0") (pintype "bidirectional") (tstamp a9199388-a32f-4d72-8bc0-46d23bb8a254))
(pad "20" smd roundrect (at 2.8625 -2.925 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/P14") (pinfunction "PIO0_14") (pintype "bidirectional") (tstamp f5b50d40-037a-4fa0-b8c0-5b8d5ef5cc8a))
(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 "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5fb637)
(at 135.382 104.521 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5c38d7")
(attr smd)
(fp_text reference "R4" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f37260e-e9f8-4b98-9837-ac2eb674ea48)
)
(fp_text value "0R" (at 0 1.17 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 513d8299-bd17-4595-bac1-fadb411387f8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 153e1b51-f53e-4469-b20b-c9fe10512ba5)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp b691b989-7217-418b-b560-9d2a6d2db76c))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp de185148-2b73-4975-bf60-0af5c53f5706))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3da85853-9cea-4632-8560-082d9e64e36f))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6c165252-ee45-4a76-88cf-7a16bee104c8))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp a516faf1-eae6-451e-9e3b-31fc1d276e09))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a857b6c0-8d57-4bdc-b97b-efb76ca46262))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 4805727f-4cd7-4be9-9dc4-6c911a98e4c1))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp d3b85eaf-6393-48eb-9e41-91c537a9b91c))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp ef877e0f-ca46-4b09-bfdc-c25681fc4ac2))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp f2ede52e-1c66-4332-97fc-dc98b4550b66))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/XTALOUT") (pintype "passive") (tstamp 4a0dbe6d-9ace-4249-8047-1420e944c287))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/P9_XTALOUT") (pintype "passive") (tstamp c8d9d7a3-8373-4075-a649-19bd18235b25))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5fb661)
(at 136.398 104.521 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5c4549")
(attr smd)
(fp_text reference "R2" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 904db398-a8d8-47c3-aa6a-e11e8d4147a9)
)
(fp_text value "0R" (at 0 1.17 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 758de7d2-e8eb-4ba6-a0f0-771c86567f82)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 7375c2b4-1ed3-4a3e-9788-80f25bde6d81)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 97ed79ce-6435-4e25-bc3d-bb8b66cc6384))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp ed6aecd8-bea7-4f91-9ad1-9ff7bfbb63fe))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3f88028c-c650-467c-a8c6-3b1b533a47f3))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5a140cbb-bc5d-4f06-ba7d-ae4520767599))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 77833ab6-59cf-4b68-9fee-09ca79c71ce8))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f1ba9cb7-8a35-4bff-8008-7beabc6af2dd))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 1dd1b46d-ed77-4852-940f-62eaa8ca85be))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 882fddd7-a522-4558-88b2-734f791c0e44))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp b002945b-5890-4676-8997-24a3fa6671da))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp d008ad49-2cac-4bf5-80b3-3f79e79d4441))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/XTALIN") (pintype "passive") (tstamp 39459c61-4c40-4490-845e-9a28a34027c8))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/P8_XTALIN") (pintype "passive") (tstamp 40a0e033-cac6-429d-b404-b3f680884beb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5fb68b)
(at 134.366 104.521 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "DNP" "DNP")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5c3e77")
(attr smd)
(fp_text reference "R3" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aaacdbc1-fb95-45f8-8277-5106e5ba4f74)
)
(fp_text value "0R" (at 0 1.17 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0cf542fc-a47a-4bde-82be-e9ef084a3b20)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp e31cc7c1-528d-4e3d-a838-262bd23eb728)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 71b99452-8f00-4bba-8c56-91197d66ac4b))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp f1ba1944-3343-416f-b112-97eed32ff30e))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2a22cdaa-9506-4480-b42c-fce66b94c744))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 393699fb-b96e-4ea7-af21-6d0bb955ec68))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 94265ccf-540e-4617-8562-8c4361e7f91b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp fe7309be-e429-401c-84ae-6d09116f940d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 3d71a8e6-724a-45fb-a5f4-fe31caa32f6a))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 8f1d2955-5713-4a61-bdf9-1eb6530df4f3))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp a1e7ce8b-9ec6-4dc0-9613-da9856767ac0))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp bd3edae8-e8e1-43e9-86b8-8d5bef1bc99c))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/P9") (pintype "passive") (tstamp 25c4c70e-e73f-4d7e-93b3-77c3e82ce03b))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/P9_XTALOUT") (pintype "passive") (tstamp 5a6e780a-42bb-40c8-99fb-367e612b3f02))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f5fb6b5)
(at 137.414 104.521 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "DNP" "DNP")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5c3d03")
(attr smd)
(fp_text reference "R1" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34f9f12e-2188-4bc4-a16b-e4d494636790)
)
(fp_text value "0R" (at 0 1.17 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 085d0655-e999-4c1b-929f-04d2c2ea014d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 60522c54-0fa2-4c65-81e5-bb24d4680d41)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 708de9ae-aa34-4cc0-a6de-1128b0edc7a8))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp a0b79e60-e7f2-4153-a459-fdbe8d09785f))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 38e73e62-32d4-4d70-9693-d9e986feb320))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3b31fafe-7210-4a2d-82df-4e21eda09a55))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 52122714-c6be-4b8d-8f00-4bdc111032a1))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 70277d6c-984a-4e08-b958-a4e89580f247))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 358a9dc3-29b6-411c-a34b-01c97ffb9e40))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 7ac40297-ffb4-46e0-9a7a-cbd52bb8175a))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp e3859607-f15f-464d-aee0-0badc0e3cd8a))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp ebdf79f1-1480-49cd-90bf-b4adda034278))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/P8") (pintype "passive") (tstamp 9a195043-2ac5-4c81-95af-9960b28b4240))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/P8_XTALIN") (pintype "passive") (tstamp 365baa4b-0de8-4500-8cb9-d2397e9eb084))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-00005f5fe484)
(at 141.605 114.427 90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5ba0c1")
(attr smd)
(fp_text reference "D2" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae05a49a-c83a-4030-99f3-6703663a7b73)
)
(fp_text value "LED1" (at 0 1.65 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 62d6381d-3cf0-4ae4-a5a1-7581e4793a53)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 84d25b67-caee-46b2-849f-301684b324f8)
)
(fp_line (start 1 -0.96) (end -1.685 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 08a13d46-ee7a-4af3-8c92-d56bc193c07e))
(fp_line (start -1.685 -0.96) (end -1.685 0.96) (layer "F.SilkS") (width 0.12) (tstamp 0ff47dcf-36af-4644-83c6-0e4111edb5a8))
(fp_line (start -1.685 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 33126337-1f4c-4d8d-883e-777b6b6df1e1))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1d6af5c9-c7ee-44c2-8915-6e09d56e007e))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp acc00082-bb36-428b-b212-60839fb7b3de))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e572c2ab-7292-4b66-8de1-10b96f093799))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp efdc23fa-a3a2-4441-b5e4-e5c4bb69be78))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 0f024664-8562-4751-ad25-4751c2e2ea8c))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 394e75d3-7dc8-4c52-b303-ef4e07b3059d))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 51d007fc-6be4-46b7-82b9-72eb8bb5d4d0))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 93f19db2-e1cb-4d48-a556-576e1de520c7))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 9f5d9553-2681-4a78-b73d-d51b800642a9))
(pad "1" smd roundrect (at -0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 7b413e15-8849-470c-b215-189d33686fd0))
(pad "2" smd roundrect (at 0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp cc3e6999-c61b-45b2-bd46-a7b3bf563f89))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f602204)
(at 141.351 111.125 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5ba737")
(attr smd)
(fp_text reference "R10" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5e1c897-f7bb-4d34-8b1c-4dfd80fa6b56)
)
(fp_text value "330R" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f5533c6-963c-4fc4-8263-e5a3462420b6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2b57449e-63ba-4ecc-bed4-652a846bb7bd)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1c3b15da-26c7-45f1-81fe-3b47d4b16f98))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 201389a9-bf13-4843-bd5e-bb60897864b4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2a7a58e9-cc62-42b6-bde9-1aedbee77650))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6d12a9a2-bafd-4298-951a-3e8fa1abae62))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 790529a4-cc96-421c-ba6c-2b300f57e465))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dab19ae1-62c6-4496-9d0d-b607ea306411))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1b0dfb91-4dfd-4f53-8246-88fac5561ee3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 469ec68b-0594-4175-af5d-22e99e512bd6))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 890979a0-c4e8-4512-acd0-9c316aee13c1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9d5a052b-bc69-41b9-bc8c-fc70e9b6cddc))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pintype "passive") (tstamp df611080-8d4c-4411-a46b-762581f312ef))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(D2-Pad2)") (pintype "passive") (tstamp 29155796-4f52-4691-9b9d-d928fbbaddd7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00005f60307f)
(at 135.89 114.427 90)
(descr "SOT-363, SC-70-6")
(tags "SOT-363 SC-70-6")
(property "MFR" "ON Semiconductor")
(property "MPN" "BC847CDW1T1G")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5b797a")
(attr smd)
(fp_text reference "Q1" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a78aa91c-9f0f-403a-aca8-b736c4b05f46)
)
(fp_text value "BC847BDW1" (at 0 2 270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f305fdb1-bdae-4ecf-b278-6a82a8c3942a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp bbfb2dfb-e0a0-47f6-8f35-8c41a4b8974e)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16) (layer "F.SilkS") (width 0.12) (tstamp 3fef0d00-ed29-4180-bef9-c79c8c01a557))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 7bc83048-7c4f-42fa-acef-7b8606542f24))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 3d3eacaf-0db1-427f-844a-7d12a720d95f))
(fp_line (start 1.6 1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 7b13ae6c-f18a-41d4-8765-e8bbcd2f5878))
(fp_line (start -1.6 -1.4) (end -1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp c5d663a1-1833-4c3b-a600-7c26d3020c0f))
(fp_line (start -1.6 1.4) (end 1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp f74d18db-b198-4b97-a52f-1deac0f72c4b))
(fp_line (start 0.675 1.1) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 18079448-89cc-4cf2-8eda-570920731b44))
(fp_line (start 0.675 -1.1) (end 0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 4db730d9-f508-4902-8684-6358d6fc422c))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1) (layer "F.Fab") (width 0.1) (tstamp d60d674b-60f8-4029-86cb-7c528a3472ff))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6) (layer "F.Fab") (width 0.1) (tstamp e0ae5677-f058-4949-bd7d-28db54081635))
(fp_line (start -0.675 -0.6) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp f4af370f-4d84-4ca5-90f8-7660429937f1))
(pad "1" smd rect (at -0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "E1") (pintype "passive") (tstamp 7f2d48f3-2dd5-4238-9b4f-3c7e02e1f31d))
(pad "2" smd rect (at -0.95 0 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "Net-(Q1-Pad2)") (pinfunction "B1") (pintype "input") (tstamp 1c8bc902-0f97-4a68-9ec5-ec4e0d7fa1f5))
(pad "3" smd rect (at -0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "Net-(D2-Pad1)") (pinfunction "C2") (pintype "passive") (tstamp 0a504592-f106-4e24-a369-6e1af4b7c42e))
(pad "4" smd rect (at 0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "E2") (pintype "passive") (tstamp 5e535b39-e246-4f67-8b51-38c28a7f53b4))
(pad "5" smd rect (at 0.95 0 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "Net-(Q1-Pad5)") (pinfunction "B2") (pintype "input") (tstamp 33b66e21-9c6a-4dc4-a08b-78be64af342b))
(pad "6" smd rect (at 0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "Net-(D1-Pad1)") (pinfunction "C1") (pintype "passive") (tstamp 37a56bd0-93e6-49a6-8f34-7e896e3e1f0f))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-363_SC-70-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical_SMD" (layer "F.Cu")
(tedit 59FED6E3) (tstamp 00000000-0000-0000-0000-00005f6045dc)
(at 137.16 88.646 -90)
(descr "surface-mounted straight pin header, 2x05, 1.27mm pitch, double rows")
(tags "Surface mounted pin header SMD 2x05 1.27mm double row")
(property "MFR" "Amphenol")
(property "MPN" "20021121-00010C4LF")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5e4766")
(attr smd)
(fp_text reference "J1" (at 0 -4.235 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e55a92cc-ac00-4f7b-847d-ef3d5296f40a)
)
(fp_text value "SWD" (at 0 4.235 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68c2e73e-a209-46fc-8dd5-691ffe81de41)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e6d7c0a-56cd-4a8e-b74f-f5af8e1c31ce)
)
(fp_line (start 1.765 -3.235) (end 1.765 -3.17) (layer "F.SilkS") (width 0.12) (tstamp 44bb5596-6694-4f0b-ba35-a22e6ab2164f))
(fp_line (start -3.09 -3.17) (end -1.765 -3.17) (layer "F.SilkS") (width 0.12) (tstamp 5b421973-1d00-4a61-9799-bd8cb7d26ba6))
(fp_line (start -1.765 -3.235) (end 1.765 -3.235) (layer "F.SilkS") (width 0.12) (tstamp 5df0c9ca-46f6-4475-a9d1-8444cc18938d))
(fp_line (start -1.765 3.235) (end 1.765 3.235) (layer "F.SilkS") (width 0.12) (tstamp 8f66e4b5-ecff-40d4-b649-f79c71a3a68c))
(fp_line (start 1.765 3.17) (end 1.765 3.235) (layer "F.SilkS") (width 0.12) (tstamp beca5811-c984-4c44-8ed8-95fea53831a8))
(fp_line (start -1.765 -3.235) (end -1.765 -3.17) (layer "F.SilkS") (width 0.12) (tstamp c2dff84f-aa07-4731-a3e7-5e8b308b8549))
(fp_line (start -1.765 3.17) (end -1.765 3.235) (layer "F.SilkS") (width 0.12) (tstamp e1f3a088-34e1-4f38-b456-4f852ccf12b6))
(fp_line (start 4.3 3.7) (end 4.3 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp 024a7e25-c5e5-4486-bb59-a5c134cc5c89))
(fp_line (start 4.3 -3.7) (end -4.3 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp 20e08b86-fdfe-4f67-ab5d-3979aed36888))
(fp_line (start -4.3 3.7) (end 4.3 3.7) (layer "F.CrtYd") (width 0.05) (tstamp 3847817c-3927-4d4b-a29a-b56b4740ad41))
(fp_line (start -4.3 -3.7) (end -4.3 3.7) (layer "F.CrtYd") (width 0.05) (tstamp 97a6c032-f9a3-4407-950e-f3c11bd4d410))
(fp_line (start 1.705 2.34) (end 2.75 2.34) (layer "F.Fab") (width 0.1) (tstamp 091d6b35-52be-42e6-b7ad-d9e32b6257a1))
(fp_line (start 1.705 3.175) (end -1.705 3.175) (layer "F.Fab") (width 0.1) (tstamp 0f55b3b9-5812-4aab-9896-763fb9fab053))
(fp_line (start -2.75 1.07) (end -2.75 1.47) (layer "F.Fab") (width 0.1) (tstamp 1a4b7aa9-5905-4233-bfbc-bc7b9345184c))
(fp_line (start -2.75 -1.07) (end -1.705 -1.07) (layer "F.Fab") (width 0.1) (tstamp 22fbf6e4-1a54-42c7-9707-c250c8c02057))
(fp_line (start -1.27 -3.175) (end 1.705 -3.175) (layer "F.Fab") (width 0.1) (tstamp 2daf2a8d-3225-4aaa-bc65-4d139787ace8))
(fp_line (start -2.75 -2.34) (end -1.705 -2.34) (layer "F.Fab") (width 0.1) (tstamp 3c09b8de-30ff-471c-9c06-d20185dc4957))
(fp_line (start 2.75 -1.47) (end 2.75 -1.07) (layer "F.Fab") (width 0.1) (tstamp 4a18e25f-7a40-4784-87de-0b515ffb010d))
(fp_line (start 1.705 -3.175) (end 1.705 3.175) (layer "F.Fab") (width 0.1) (tstamp 4f90b5bc-6715-47ad-b835-d5ea378d1dc1))
(fp_line (start -1.705 -0.2) (end -2.75 -0.2) (layer "F.Fab") (width 0.1) (tstamp 53402558-2490-4e88-b25b-815849e914df))
(fp_line (start -2.75 -0.2) (end -2.75 0.2) (layer "F.Fab") (width 0.1) (tstamp 540baeb0-13e3-4345-ae1b-d586c2e7a641))
(fp_line (start -2.75 0.2) (end -1.705 0.2) (layer "F.Fab") (width 0.1) (tstamp 5e5d8f95-9ae1-4bcb-86f5-485efc4f0f7c))
(fp_line (start 2.75 -2.34) (end 1.705 -2.34) (layer "F.Fab") (width 0.1) (tstamp 638f5a77-5659-43bb-8f55-e0a8ca2f57e6))
(fp_line (start 2.75 -2.74) (end 2.75 -2.34) (layer "F.Fab") (width 0.1) (tstamp 6d94be0e-eae5-4931-9868-54bc513061d6))
(fp_line (start -2.75 1.47) (end -1.705 1.47) (layer "F.Fab") (width 0.1) (tstamp 7e5662dc-1f4e-4ad9-a809-3e72ac5fe8dc))
(fp_line (start 2.75 0.2) (end 1.705 0.2) (layer "F.Fab") (width 0.1) (tstamp 8b7610c6-6d64-49a0-b395-a9f194edd706))
(fp_line (start 1.705 -0.2) (end 2.75 -0.2) (layer "F.Fab") (width 0.1) (tstamp 93560c4e-7669-4698-8683-a5eb57517da6))
(fp_line (start 1.705 -2.74) (end 2.75 -2.74) (layer "F.Fab") (width 0.1) (tstamp 998be435-dfe1-4c55-a597-a1d6761b07cd))
(fp_line (start 2.75 2.74) (end 1.705 2.74) (layer "F.Fab") (width 0.1) (tstamp 9f83eb8d-d851-4d88-8c98-e1b2cf41cfe3))
(fp_line (start -1.705 -1.47) (end -2.75 -1.47) (layer "F.Fab") (width 0.1) (tstamp a4c37ba0-de22-41ee-af1d-f82f5118a105))
(fp_line (start 2.75 -0.2) (end 2.75 0.2) (layer "F.Fab") (width 0.1) (tstamp a79bbbaf-11a5-42ed-bdc4-c984f52508f3))
(fp_line (start 1.705 -1.47) (end 2.75 -1.47) (layer "F.Fab") (width 0.1) (tstamp ac5e382a-efe8-4e79-90e7-6ec0df7394ba))
(fp_line (start 2.75 1.47) (end 1.705 1.47) (layer "F.Fab") (width 0.1) (tstamp b159f611-db21-488a-9703-f1ef0f088c62))
(fp_line (start -1.705 -2.74) (end -2.75 -2.74) (layer "F.Fab") (width 0.1) (tstamp b7361beb-2a5b-415e-aa51-df227345ea0e))
(fp_line (start -1.705 -2.74) (end -1.27 -3.175) (layer "F.Fab") (width 0.1) (tstamp baebbb4b-10aa-4c98-8dd1-6f5e45f598fc))
(fp_line (start -1.705 2.34) (end -2.75 2.34) (layer "F.Fab") (width 0.1) (tstamp bef086b0-a298-48a2-b730-3e63fc16475c))
(fp_line (start -2.75 -1.47) (end -2.75 -1.07) (layer "F.Fab") (width 0.1) (tstamp bfebe3fe-28f1-4e0c-a6bf-657edfe46be8))
(fp_line (start -1.705 3.175) (end -1.705 -2.74) (layer "F.Fab") (width 0.1) (tstamp c4101b25-22a1-4218-a264-00ecce0cc203))
(fp_line (start 2.75 2.34) (end 2.75 2.74) (layer "F.Fab") (width 0.1) (tstamp cf3d52c1-e886-4843-bfe1-020d886dec24))
(fp_line (start 2.75 1.07) (end 2.75 1.47) (layer "F.Fab") (width 0.1) (tstamp d0c0cd55-0804-43df-baf7-3d49680d8cd8))
(fp_line (start -2.75 -2.74) (end -2.75 -2.34) (layer "F.Fab") (width 0.1) (tstamp d70d204d-dc0a-4f39-adf6-073739abf82b))
(fp_line (start -1.705 1.07) (end -2.75 1.07) (layer "F.Fab") (width 0.1) (tstamp d83258c9-e704-4405-9271-744245a05bb2))
(fp_line (start -2.75 2.74) (end -1.705 2.74) (layer "F.Fab") (width 0.1) (tstamp dacd0bd3-c1f8-40dc-b23a-a52a230d40e4))
(fp_line (start 1.705 1.07) (end 2.75 1.07) (layer "F.Fab") (width 0.1) (tstamp e0460e84-fae2-4f7a-9cb4-b83428d4856d))
(fp_line (start 2.75 -1.07) (end 1.705 -1.07) (layer "F.Fab") (width 0.1) (tstamp ee6a7875-de97-45a7-80e9-ad4e43b8d696))
(fp_line (start -2.75 2.34) (end -2.75 2.74) (layer "F.Fab") (width 0.1) (tstamp ef202210-6ac1-4b51-bfdf-36483455056a))
(pad "1" smd rect (at -1.95 -2.54 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "VDD") (pinfunction "VTref") (pintype "power_in") (tstamp 2839db94-0ead-4116-b8d4-d044a757b04b))
(pad "2" smd rect (at 1.95 -2.54 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/P2_SWDIO") (pinfunction "SWDIO/TMS") (pintype "bidirectional") (tstamp 2f7c95e4-4d3f-47ad-b988-afec760cf5bd))
(pad "3" smd rect (at -1.95 -1.27 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp fd818750-d985-4503-9dbe-3900ac564058))
(pad "4" smd rect (at 1.95 -1.27 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/P3_SWCLK") (pinfunction "SWDCLK/TCK") (pintype "output") (tstamp b1f06a6c-1c5b-4928-8f0e-1d855e4dd192))
(pad "5" smd rect (at -1.95 0 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 3038e9cc-6673-4ffd-929c-7e05a44a131c))
(pad "6" smd rect (at 1.95 0 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "unconnected-(J1-Pad6)") (pinfunction "SWO/TDO") (pintype "input+no_connect") (tstamp d5957e1b-d011-4872-bc32-6c93cff0c387))
(pad "7" smd rect (at -1.95 1.27 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "unconnected-(J1-Pad7)") (pinfunction "KEY") (pintype "no_connect") (tstamp 126e439f-b424-4b70-b96c-13013904acc2))
(pad "8" smd rect (at 1.95 1.27 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(J1-Pad8)") (pinfunction "NC/TDI") (pintype "output+no_connect") (tstamp 80366fc9-bf36-4d89-ae61-e7708cd49f00))
(pad "9" smd rect (at -1.95 2.54 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GNDDetect") (pintype "passive") (tstamp bf96540a-2908-492f-b55f-23272fd5bdc9))
(pad "10" smd rect (at 1.95 2.54 270) (size 2.4 0.74) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/~{RESET}") (pinfunction "~{RESET}") (pintype "open_collector") (tstamp 81e65ce7-e136-46ee-a517-cecc7d5b77e3))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_2x05_P1.27mm_Vertical_SMD.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 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005f6074af)
(at 141.605 92.456 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "/home/michal/projects/hardware/breakouts/lpc812-breakout/lpc812-breakout.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f68ade1")
(attr smd)
(fp_text reference "C5" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be168526-e53e-4e47-b6ef-bfc83efcc0d0)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67ba57a7-a16e-4aa8-8f01-c3d4b455de0e)