-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRP2040_AS3394.kicad_pcb
18524 lines (18391 loc) · 924 KB
/
RP2040_AS3394.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6112)
)
(paper "A4")
(title_block
(rev "1.1")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.0125) (material "Liquid Photo Imageable") (epsilon_r 3.8) (loss_tangent 0))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "prepreg") (thickness 0.2104) (material "FR4") (epsilon_r 4.6) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 2" (type "core") (thickness 1.065) (material "FR4") (epsilon_r 4.6) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 3" (type "prepreg") (thickness 0.2104) (material "FR4") (epsilon_r 4.6) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.0125) (material "Liquid Photo Imageable") (epsilon_r 3.8) (loss_tangent 0))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints yes)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+1V1")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "Net-(D1-K)")
(net 5 "/XIN")
(net 6 "Net-(C15-Pad2)")
(net 7 "Net-(U5-Ct)")
(net 8 "Net-(C18-Pad1)")
(net 9 "Net-(U4B-+)")
(net 10 "Net-(U6B-+)")
(net 11 "Net-(C21-Pad1)")
(net 12 "Net-(C21-Pad2)")
(net 13 "Net-(C22-Pad1)")
(net 14 "Net-(C22-Pad2)")
(net 15 "Net-(U4D--)")
(net 16 "Net-(C23-Pad2)")
(net 17 "/AS3394_PWM/Mod_Amt_Cv")
(net 18 "/AS3394_PWM/Final_Gain_CV")
(net 19 "Net-(C26-Pad1)")
(net 20 "Net-(U4C--)")
(net 21 "Net-(C27-Pad2)")
(net 22 "/AS3394_PWM/VCO_Freq_CV")
(net 23 "Net-(U5-C4)")
(net 24 "Net-(C32-Pad1)")
(net 25 "Net-(U5-C3)")
(net 26 "Net-(D3-A)")
(net 27 "Net-(U5-C2)")
(net 28 "VCC")
(net 29 "Net-(U5-C1)")
(net 30 "Net-(U6D--)")
(net 31 "Net-(C38-Pad2)")
(net 32 "Net-(C39-Pad1)")
(net 33 "Net-(U6C--)")
(net 34 "Net-(C40-Pad2)")
(net 35 "/AS3394_PWM/Filter_Freq_CV")
(net 36 "Net-(U6A--)")
(net 37 "Net-(C42-Pad2)")
(net 38 "VEE")
(net 39 "/AS3394_PWM/Pulse_Width_CV")
(net 40 "/AS3394_PWM/Filter_Res_CV")
(net 41 "/AS3394_PWM/Mixer_Balance_CV")
(net 42 "Net-(D1-A)")
(net 43 "Net-(D3-K)")
(net 44 "Net-(D4-A)")
(net 45 "Net-(J1-Pin_1)")
(net 46 "Net-(J1-Pin_3)")
(net 47 "/USB_D-")
(net 48 "/USB_D+")
(net 49 "Net-(J2-CC1)")
(net 50 "unconnected-(J2-SBU1-PadA8)")
(net 51 "Net-(J2-CC2)")
(net 52 "unconnected-(J2-SBU2-PadB8)")
(net 53 "unconnected-(J2-SHIELD-PadS1)")
(net 54 "unconnected-(J2-SHIELD-PadS2)")
(net 55 "/~{USB_BOOT}")
(net 56 "/QSPI_SS")
(net 57 "/XOUT")
(net 58 "/AS3394_PWM/VCO_Freq_PWM")
(net 59 "/AS3394_PWM/Mod_Amt_PWM")
(net 60 "/AS3394_PWM/Final_Gain_PWM")
(net 61 "/AS3394_PWM/Saw_Out")
(net 62 "/AS3394_PWM/Wave_Out")
(net 63 "unconnected-(J2-SHIELD-PadS3)")
(net 64 "unconnected-(J2-SHIELD-PadS4)")
(net 65 "Net-(J4-Pin_1)")
(net 66 "Net-(J4-Pin_2)")
(net 67 "/AS3394_PWM/Filter_Freq_PWM")
(net 68 "Net-(J4-Pin_3)")
(net 69 "Net-(J4-Pin_5)")
(net 70 "Net-(J4-Pin_6)")
(net 71 "Net-(R38-Pad2)")
(net 72 "/AS3394_PWM/Wave_Select_2")
(net 73 "Net-(R40-Pad2)")
(net 74 "/AS3394_PWM/Wave_Select_1")
(net 75 "Net-(J4-Pin_7)")
(net 76 "/AS3394_PWM/Wave_Select_CV")
(net 77 "/AS3394_PWM/Mixer_Balance_PWM")
(net 78 "/AS3394_PWM/Out")
(net 79 "/AS3394_PWM/Pulse_Width_PWM")
(net 80 "/AS3394_PWM/Filter_Res_PWM")
(net 81 "/RUN")
(net 82 "Net-(J4-Pin_8)")
(net 83 "Net-(J4-Pin_9)")
(net 84 "Net-(U1-USB_DP)")
(net 85 "Net-(U1-USB_DM)")
(net 86 "Net-(U5-IRef)")
(net 87 "Net-(U4B--)")
(net 88 "Net-(U6B--)")
(net 89 "Net-(U4D-+)")
(net 90 "Net-(U6D-+)")
(net 91 "Net-(U5-Ext_Input2)")
(net 92 "/AS3394_PWM/Pulse_Out_F{slash}2")
(net 93 "Net-(U4A--)")
(net 94 "unconnected-(U1-GPIO9-Pad12)")
(net 95 "/QSPI_SD3")
(net 96 "/QSPI_SCLK")
(net 97 "/QSPI_SD0")
(net 98 "/QSPI_SD2")
(net 99 "/QSPI_SD1")
(net 100 "unconnected-(U1-GPIO11-Pad14)")
(net 101 "unconnected-(U1-GPIO13-Pad16)")
(net 102 "unconnected-(U1-GPIO15-Pad18)")
(net 103 "unconnected-(U1-GPIO21-Pad32)")
(net 104 "+5V")
(net 105 "unconnected-(U1-GPIO22-Pad34)")
(net 106 "unconnected-(U1-GPIO23-Pad35)")
(net 107 "unconnected-(U1-GPIO24-Pad36)")
(net 108 "unconnected-(U1-GPIO25-Pad37)")
(net 109 "unconnected-(U1-GPIO26_ADC0-Pad38)")
(net 110 "unconnected-(U1-GPIO27_ADC1-Pad39)")
(net 111 "unconnected-(U1-GPIO28_ADC2-Pad40)")
(net 112 "unconnected-(U1-GPIO29_ADC3-Pad41)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 00b91e01-cfd7-41f3-97e0-377bc8bc7dc6)
(at 134.747 132.461)
(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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/c5785965-f2fc-42f0-a75d-9a4db7446568")
(attr smd)
(fp_text reference "C33" (at -0.707 -1.151) (layer "F.SilkS")
(effects (font (size 0.508 0.508) (thickness 0.127)))
(tstamp f96d057c-1784-4a77-a7f4-18e1914550cc)
)
(fp_text value "33n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7313b7b3-d6ed-426b-ad7e-76d093bc26a3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 51022957-c716-4947-a32c-b74693470e89)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dccb8340-ef80-48b6-a5bb-750a7b0f01ee))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1797087-66f3-4bdf-bc67-be28e190ef34))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1906b5f0-11ca-4bfe-9df9-cfc3de706617))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 008f18c5-fa2a-47ac-b2bf-99783d689ee1))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a74cd3ec-7c1d-46ef-a3ff-a87467e583d4))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4cb3b157-2482-4ad4-9512-8f0f646314a8))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c857a02-9cd5-4636-abd9-2cb0e8aca835))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f55fe41-a455-46c1-bbdc-6d10626782a2))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1bf44e8e-8548-4f0d-a1f9-4e2bc5f492eb))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d7e2955-ad40-4417-a21c-8ea2f1612596))
(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 25 "Net-(U5-C3)") (pintype "passive") (tstamp 528fbfde-8af5-4d7b-bf7b-7f4b6c68f01f))
(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 2 "GND") (pintype "passive") (tstamp 53295555-d989-404e-9370-e050926a3a44))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 0167bed8-0721-4472-9a97-e6893e66a157)
(at 118.364 112.141 -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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/04e149a3-8e73-437c-8f60-a1269e895ff9")
(attr smd)
(fp_text reference "R31" (at -1.397 0 180) (layer "F.SilkS")
(effects (font (size 0.635 0.635) (thickness 0.15)))
(tstamp 39572683-1824-456e-ad1c-4b88f1df34d3)
)
(fp_text value "6k8" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d661718-6bed-403c-afd4-8ff7ad32e371)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 692ee6f0-1461-44bc-a170-73eb5f666eb8)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8080acd3-e413-44cb-8889-0457974d265b))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28e4490b-4900-44c3-9063-31002a4e03a3))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 696ee02e-6fb9-4e78-a619-5c31ba9e88a3))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44fea917-2e25-40c5-b568-8d9772011616))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e62934c0-8dc4-4e1a-a6f9-58152df380ca))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47633200-7e24-4eb9-bb5d-12022c231672))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4036bc7b-e411-481e-a508-948c676d01a3))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d03cc48-b46c-4e92-a34a-53cd650d966d))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7dc9fad6-ce6d-45b1-92bb-ea3245306572))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e35f0854-48f8-48e5-9995-7ced783a0475))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 67 "/AS3394_PWM/Filter_Freq_PWM") (pintype "passive") (tstamp 0f6c4dcf-36c3-4413-9382-b5d238764cb0))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(C32-Pad1)") (pintype "passive") (tstamp ec18320e-3019-456b-b8ce-3c2b147c3cb4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 0310e586-fed9-40f3-816c-c47c57b07e99)
(at 145.616 130.617 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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/a60b07e5-6f22-4c5b-ae4d-b602b73227dc")
(attr smd)
(fp_text reference "C30" (at 0 -1.852 180) (layer "F.SilkS")
(effects (font (size 0.635 0.635) (thickness 0.15)))
(tstamp 04aa1600-224b-49c0-bca0-da1ccdfe766f)
)
(fp_text value ".047u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6472e258-98d5-48b2-acbf-63adbecb99c3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 541cfb7e-8078-4ad9-b1e3-d92729f1089d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a24adba-f802-40c8-885a-43e64ecd1a8f))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5263f9e5-6380-42b4-a5ad-86e3f71eeaa4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c4675b1-e63d-4190-a94e-bdc2d2613d0b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a4be9ca-0fe0-4d08-9287-dae6fd31a96a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb9ddfc2-bda7-4253-a4cb-abb8855fe07d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 82cf2e48-af1e-4d3c-8920-b483f80327f0))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cf899b4-a117-410c-87e7-04d6f87557b4))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38ba2b25-a057-4079-8d92-162c7c38fdd8))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb196062-214c-461a-bd7b-fd134d8874a3))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c5583f4-bc69-44c0-8ab7-e3215a82957b))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/AS3394_PWM/VCO_Freq_CV") (pintype "passive") (tstamp 0c21ea8c-56a1-446f-a182-0263b9a78d24))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 161eb056-29c9-4676-9b84-9a34a0875814))
(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")
(tstamp 0368ee96-afd0-4bb2-b1e8-e4a916f842ed)
(at 144.13 122.758 180)
(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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/75ae6632-46cd-4d07-b31f-dc3373bac97f")
(attr smd)
(fp_text reference "C45" (at -0.015 -1.321) (layer "F.SilkS")
(effects (font (size 0.635 0.635) (thickness 0.15)))
(tstamp 23776643-47a4-4cb4-9053-d1edc3ba2d72)
)
(fp_text value "47n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d212c4e-ccc7-4651-b8c6-b572f5f02068)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b4ba98f2-216f-45b3-b7b1-2f15d32a7275)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf514c01-d4df-485e-b751-1bcd305212a4))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a668e06-d5f8-4651-b879-6800bd1a0c4b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9fd32bb-af90-45ed-b9eb-806c2d98b50c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4014dc9c-5870-46f5-aec0-66a9cdce5901))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bcec673-0375-432d-8101-a6ee407f956d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5cc64a6c-c98e-4196-ad5c-ad7fd8ab99e0))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71ed09b2-48a2-4bb8-916a-b7fc2d4c8b13))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c157e43-3db6-49e1-9ab6-4c1b67633a74))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53b882cb-e4ae-46b4-8c12-be951853c502))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8430ab9-7d60-4936-98bf-ff00136dfc40))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "/AS3394_PWM/Pulse_Width_CV") (pintype "passive") (tstamp 9b0e1d56-7b0f-44ac-9acd-2158653b3913))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp dbad79a2-a646-4933-99e1-607f4da333ae))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 03e2be57-af9c-4acf-afea-63cf8a14799e)
(at 122.936 130.429 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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/b4066b96-b222-45ef-bb51-2dfbe1a59dd9")
(attr smd)
(fp_text reference "R18" (at -19.939 -7.112 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c65ff132-95df-4e47-b16d-1d99537aac68)
)
(fp_text value "2k4" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ced7237-0e92-4b0b-a32e-6e4af2762d2d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp bd5c0ec0-39d7-4164-a733-36706ed67a3a)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea05e3f6-afd0-41a5-b25e-7ec2d483b1fa))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3261a1bc-cc84-44d3-8983-bf5960d85d6c))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e57918c-f18f-4b55-bc99-622b17a16b74))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 627b8174-8a10-4a14-bc22-12fd81f0da11))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9fef37bb-e021-4668-a682-e4d81572753e))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7a32138-fc3a-4fff-a4e9-0e4ac7ea778f))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e2df8e9-c79c-4d9d-9e15-cee8dd108cf1))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 370dd013-5433-4bcb-8a25-ce78e0b8305d))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ae8f179-83d7-41dc-a898-022b07e1d37d))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 470d15db-348b-4d5f-88bf-b50b052013be))
(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 "GND") (pintype "passive") (tstamp bc1e07f7-e7ce-4967-80d5-5e6a847f86df))
(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 88 "Net-(U6B--)") (pintype "passive") (tstamp 555c1089-c150-4556-b0c2-66c08496eff7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 042eea56-f3fd-4eb8-b113-9f9e189f2cf0)
(at 127.013 110.23 -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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/e9b95046-5d22-4f59-8640-31f74fa69a0b")
(attr smd)
(fp_text reference "R54" (at 0.006 1.918 180) (layer "F.SilkS")
(effects (font (size 0.635 0.635) (thickness 0.15)))
(tstamp aefc51a9-e168-454b-ba8a-021a96ed48c8)
)
(fp_text value "3k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85215e4b-104f-48a2-969c-fe6386e73f7e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 53948a57-8086-4279-bf23-f82b2a3f0e43)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96faa542-2e77-4f3e-aa9b-1ec05a767f76))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84142ed3-15cf-48df-b955-a75f4422fad5))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a945ed1-6d92-4a05-93c0-4484f85c602a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53ac1e6d-7e7e-4f1b-ab86-5bc63c51bd0a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8ceb4ba-441c-4f75-b414-c263c1b35129))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec725d7d-7a40-4bc7-bbbf-ffe852c72d9e))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e8de372-e924-4ad5-b519-12383dab144e))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9efe0bc7-e164-47e1-aa10-1a6519f0b5df))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14320541-7b19-450c-b447-74f571ec0748))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16fba9b4-b9bb-4702-90d3-37c6f5106ebc))
(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 80 "/AS3394_PWM/Filter_Res_PWM") (pintype "passive") (tstamp f186bdfd-453c-40a7-91c2-882112701836))
(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 40 "/AS3394_PWM/Filter_Res_CV") (pintype "passive") (tstamp edc97608-4da1-418a-86d2-e9d8d55039c3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 04fe7298-bf13-419f-a901-36460327de9a)
(at 149.045 133.792 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/91efc3c5-db4b-4c04-acc9-4eb8e2ab968d")
(attr smd)
(fp_text reference "C27" (at 1.979 0.061) (layer "F.SilkS")
(effects (font (size 0.635 0.635) (thickness 0.15)))
(tstamp 7fdfef93-4e3e-452d-b1ad-6cc903c06e6c)
)
(fp_text value "10n" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf552c60-cae5-432f-a05a-8d8b1978f4d7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b548d253-de86-4ab4-8404-bfcbfdc2826f)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9f743e4-27a5-40bd-b7c5-c8f5ee9c6621))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f045575-3e8c-4e5d-974e-bad6f4d03f88))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb44d2d0-5783-4d2a-a0d8-a46c53aff639))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1fba02e-7d31-4af1-a927-4eb012174957))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4e40b34-c909-4c3f-b95c-87dcf314aa93))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3bd03a9-47c1-437d-a076-351f9caac2a2))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c9df003-189a-49b8-bdff-459db790e57b))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b46591a-e532-4536-992b-8abd4e849351))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78979946-d225-488f-a1d0-e3793ea702a1))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2a1540e-520a-459d-9ee4-0420247d71ba))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(U4C--)") (pintype "passive") (tstamp 3dd03153-29e3-4b61-87e1-72dd7ab5c71c))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(C27-Pad2)") (pintype "passive") (tstamp 645e5d4e-261b-4002-9a32-5b84023fd82f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 0539e00a-1310-4e25-98fb-cc7f51eb0911)
(at 144.13 119.202)
(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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/85df1545-c29e-4b9b-b4e7-959363551bf0")
(attr smd)
(fp_text reference "R52" (at 0.015 -1.219) (layer "F.SilkS")
(effects (font (size 0.635 0.635) (thickness 0.15)))
(tstamp 45e9d44c-e529-4435-ab82-d888df1063f1)
)
(fp_text value "2k7" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 195f5474-ad9b-4a74-86d3-5b9dc3680c75)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 346186ac-1571-48b6-91aa-3269b17c54b4)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 144fe434-80a2-4f52-87d7-70cefaea31a4))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b70f8654-62e3-4725-9405-1be97deab6f2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54cfb9cf-e553-4b27-a0b9-9169debecd2d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78463126-aab9-4950-96a6-7d4cb602f9ad))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf2d18d1-017a-4470-9990-82d5e4a9bbcd))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99035e9f-dcec-43cf-920d-20d6af965a11))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 738db390-57e7-4929-917e-79ed96c0114f))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1bc62bca-38e6-4379-897c-900619d0d8e4))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08487460-2f20-43de-9587-1fe92110665a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 053653dc-3765-44dc-9da4-3445167f5bae))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 79 "/AS3394_PWM/Pulse_Width_PWM") (pintype "passive") (tstamp 1f146695-c03d-42f7-987e-196aa4e7e46d))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "/AS3394_PWM/Pulse_Width_CV") (pintype "passive") (tstamp ae3d9084-059e-49ff-9db6-f74ff106c6db))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 0b21f802-fe93-4d8a-a7d5-ec7055484a65)
(at 111.47 135.514)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "RP2040_AS3394.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/48622203-4920-4864-8778-59714513da9d")
(attr through_hole)
(fp_text reference "J3" (at -0.091 12.695) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13a9cc7a-b711-4d61-9aea-9b0e016ae47e)
)
(fp_text value "Conn_01x05" (at 0 12.49) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c34c636-eb80-4f7a-9553-a8451b6b9746)
)
(fp_text user "${REFERENCE}" (at 0 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 770eb9c3-2e0e-4744-ba10-3d29368d80cf)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c44135eb-92a3-4e99-ada4-894b5b259062))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c22e193-4e7e-4ac8-a18e-b54c00c33103))
(fp_line (start -1.33 1.27) (end -1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c013618b-d087-42fc-b0fe-4de85ddfdbc9))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9b18331-900c-4792-863a-4f09679e6071))
(fp_line (start -1.33 11.49) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74d77771-a144-4c2e-ba77-fdbf00667d63))
(fp_line (start 1.33 1.27) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 039601fc-daae-4f7c-aee2-d99d289021a5))
(fp_line (start -1.8 -1.8) (end -1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea6f6d7d-a727-4148-9c92-7682764976b2))
(fp_line (start -1.8 11.95) (end 1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8cf405c2-a091-4faa-a5b3-a3c5530ebcdc))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8caa7c18-6485-4721-911e-bef50e717111))
(fp_line (start 1.8 11.95) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b8d6f7a-8f4e-4ddf-943f-9017f8e6ce86))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46e85c67-e1b9-4c5e-8c52-3e718e56d7d4))
(fp_line (start -1.27 11.43) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d60dad6-f702-47a2-ae9a-82b2076bb80e))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57062872-4c79-4ce5-88e1-1253450cb3a2))
(fp_line (start 1.27 -1.27) (end 1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28dbcd14-4470-4639-b731-69eab15ca236))
(fp_line (start 1.27 11.43) (end -1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21f024ec-c938-4816-8c7b-25e8169420c1))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 963e6d3e-92d4-4089-9d9a-344ee4144c13))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 6d5e5eb3-0cd9-4a87-be8b-97c549fb7d62))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 38 "VEE") (pinfunction "Pin_3") (pintype "passive") (tstamp b8a50e0b-8731-4e23-995d-5e5ca727f7a3))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 1e42b4ee-e1a3-4ec0-8ce0-4a6a2b9b3f57))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 78 "/AS3394_PWM/Out") (pinfunction "Pin_5") (pintype "passive") (tstamp be3e9f6c-3534-412b-ac4e-17e04f89dde6))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 0c6260f5-12a7-4798-b2b4-8e4cd9dff27d)
(at 120.777 118.872 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/4b5cf665-5fb0-49e1-aba1-340c8436c7e1")
(attr smd)
(fp_text reference "C48" (at 4.953 -31.496) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c37fb11f-91f2-4709-a4fb-e19f17b64c03)
)
(fp_text value "0.1u" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9bc3db1-c890-43da-97a4-0047254d332b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 79a7c382-9d39-4f78-a8e2-5d3a8e332fa3)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07b70c31-9ba9-468c-be7f-f290d053c4e7))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf2e0350-ff90-4485-904f-a399c9123bfb))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27240b2f-fea1-471e-96cc-6153af9d51a2))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb7c375c-8585-44bd-a766-d6984b6acaa0))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 001a7161-ab77-49bc-bb27-eba858886be0))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 913fa613-9993-4279-97ee-8fcc682ba377))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9541348-34f3-4d3a-825b-74f09eb909af))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 727c9e43-23e5-4413-a2cf-526b770e64bd))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7eee0537-659e-4f88-9038-e521f29b0335))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16c91f3d-5756-4f7b-8da7-f3a1bdde2950))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 2cfa4065-1e4e-4c3e-9fd9-08738df9dde4))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "VEE") (pintype "passive") (tstamp f5d44207-6632-4f35-a30f-69311c618457))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 0d88780e-2b6c-4242-9b49-db337c11c628)
(at 149.553 122.87 -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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/2d787f2e-ce18-47b0-8b37-15526b69e0d9")
(attr smd)
(fp_text reference "R17" (at 0.32 -1.267) (layer "F.SilkS")
(effects (font (size 0.508 0.508) (thickness 0.127)))
(tstamp 219b0ecc-22eb-4edb-ad1b-a7e31576b310)
)
(fp_text value "2k4" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec7f42c0-5f60-4545-ade6-f10e38785d1e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 53c85341-1427-4a3f-9882-16e64b731df9)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc360dd5-1a89-45d0-a194-659abd5ced5a))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e3c92e9-3ab7-46f0-8390-637ccb53ac29))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21b55237-c3b8-40cd-b0de-755ac85f5c28))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3bc3beb-1d47-450f-a97c-120b248e6ade))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f59ff56-e529-4f27-9716-a70e75188938))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29fca0c6-282c-428b-822a-0eaad09a4d68))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebfc3767-daae-4989-b8df-5650246e8848))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6664b048-32ce-4b6c-827d-c65a8267439f))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34989b95-1ad2-48cb-8a81-4e338ff13f19))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff42dd0a-0dae-4f36-8d44-269c8707bbc5))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp f0e17330-25b9-4f16-bf66-bc67140f8eb8))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 87 "Net-(U4B--)") (pintype "passive") (tstamp 63257dfa-e2af-48e0-96ec-5053bcae87ad))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 0ee98dce-60ba-4678-980c-392ece5c9e4d)
(at 132 111.62 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "RP2040_AS3394.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/fb735d34-ce15-452b-aa4b-4c329fb152ca")
(attr smd)
(fp_text reference "C14" (at 0.01 1.13) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11ab103f-c011-419a-a585-cc7c00fb54b8)
)
(fp_text value "30p" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49a395d8-9386-448f-a7f4-eb1380300e8a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 55931348-74c4-4583-ad22-8f70889e5c90)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f93808e9-a3ca-4fe1-84fd-4a7f449b115a))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f3a4651-4093-4b0a-b6ba-8f2eb33ac334))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63e3d887-1d81-44ba-8749-b0f406ffe657))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e25b74cf-7290-41da-a2cb-a3c9ea87db45))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 35937f8c-9081-43f3-bc89-e2e2c88d9810))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16da71b3-9cd9-4dd7-b575-abb97ba52c2f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14a70aef-0a7f-431d-b7b5-d20b032b093c))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a90f7f54-4ea4-4b4c-997a-64bf4efbeb6c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf443d3d-3045-4c39-ab46-893881835147))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6689823c-9ee2-49e5-8c5e-a0672dfc75f5))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 63906def-6b3f-4046-acaf-92db85a2fdd3))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/XIN") (pintype "passive") (tstamp 1dbcd9ea-8faa-4fda-b10a-8e3eb5a56662))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 107c1951-5ee8-411c-a0c6-1d8dda6ee08d)
(at 140.589 101.53849)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "RP2040_AS3394.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/391f046e-4249-4bff-80ca-60804829986f")
(attr smd)
(fp_text reference "C8" (at 3.041 0.02151) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12665b83-f68b-4db3-9ca7-dc945e3cc5f5)
)
(fp_text value "100n" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c27fa9c5-be33-4e11-a438-df2ae8424ae2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 9970772b-2e22-4469-ac5f-a12740cf92dc)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e502092-ca5f-4e42-ac8e-83152249e624))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 334fec94-75a7-4357-ade2-9d2349fa264d))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc31a00f-1949-4338-8a9a-f22b17ba5fb7))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 538fc99b-afa1-426b-9d85-7f2fd0aed480))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7444534-d435-43cd-97e5-b09f8d438422))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ed5e6d6-20e5-4683-b9b0-5e3d1edee258))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81cac7ef-9be7-4e4d-a73c-1f26e6e16885))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d35cb753-c9d2-4c5b-856e-f9c732cdff5f))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37abce34-0023-4584-a3e0-c0dfa5d1ae41))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 941073dc-d24f-4fcc-bc37-abf79ac6cb62))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp a7f73214-120c-4513-8947-8624f896fb11))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 79e10001-8cd9-4a52-b510-9a4a99fec7fe))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 12a58ef6-0b05-4796-89e4-c8aa91be2274)
(at 114.62 125.48 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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/fa22ecde-c337-495a-83bc-7db02f79f9d9")
(attr smd)
(fp_text reference "R57" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92664401-7021-4b64-90b4-5b4d4e36afbc)
)
(fp_text value "100" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4d5fac9-625f-4c55-aec3-637d4f7036c2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp a5f431dd-a7e6-4c42-9487-63c7c23549cf)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd099df7-8a66-4528-99ec-a3e089c0af82))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11ddedb9-ba3c-4b85-81a8-1f09b8e3184e))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 623ce5c6-2c8d-4c5c-b30f-782b6a998fe7))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e1fb21c-66bc-4fa3-89fe-d17b0994ee68))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31f1cfc6-95bc-44aa-8d13-f7db38008a1c))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8d1d141-f546-4329-b034-1112f5e209ac))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38a5d50c-0868-496e-b7cb-b5c6c6f92159))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e95b268-3b4c-4527-bd83-0c89719c5b13))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5c691a7-9f77-439d-83d3-00895365794b))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81c1e452-c12d-4564-a669-c72e57b65506))
(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 37 "Net-(C42-Pad2)") (pintype "passive") (tstamp 95205b98-0566-41bd-8fd3-399792ade89b))
(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 41 "/AS3394_PWM/Mixer_Balance_CV") (pintype "passive") (tstamp 44c98d6c-d9c3-4d43-81ff-4e30e5e58dfd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 186bad94-07b8-4950-9836-d14d508238ee)
(at 156.03 135.568)
(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" "AS3394_PWM.kicad_sch")
(property "Sheetname" "AS3394_PWM")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4be0f50f-df7d-4a82-b90c-e414038b561e/b02ef5d9-c3d1-41d1-bd80-f9a0bc559348")
(attr smd)
(fp_text reference "R21" (at 2.466 -0.898) (layer "F.SilkS")
(effects (font (size 0.635 0.635) (thickness 0.15)))
(tstamp 47f9ffb4-9b61-4166-9dcb-9e9dbc2fe98c)