-
Notifications
You must be signed in to change notification settings - Fork 2
/
psu3v3.kicad_sch
1629 lines (1586 loc) · 63.3 KB
/
psu3v3.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid d18cff06-e34d-417a-a490-dca0b217d535)
(paper "A3")
(title_block
(title "+3.3V PSU")
(date "2022-01-12")
(rev "4")
(company "Copyright © 2022 Christian Kuhtz")
(comment 2 "CERN-OHL-W v2 or later")
)
(lib_symbols
(symbol "Capacitor_Tantalum_SMD_MyOwn:CP_EIA-7343-31_Kemet-D" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "CP_EIA-7343-31_Kemet-D" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_Tantalum_SMD_MyOwn:CP_EIA-7343-31_Kemet-D" (id 2) (at 0 -9.525 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor kemet" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor, small symbol, CP_EIA-7343-31_Kemet-D" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CP_EIA-7343-31_Kemet-D_0_1"
(rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -1.524 0.6858) (end 1.524 0.3048)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.524)
(xy -0.762 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.27)
(xy -1.016 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "CP_EIA-7343-31_Kemet-D_1_1"
(pin passive line (at 0 2.54 270) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.8542)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (id 0) (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (id 1) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Switching_Diodes:AP64501SP-13" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -0.635 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AP64501SP-13" (id 1) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Regulator_Switching_Diodes:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias" (id 2) (at 0 -25.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -0.635 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Diodes" (id 4) (at 0 -20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "AP64501SP-13" (id 5) (at 0 -22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "3.8V to 40V Input 5A Low IQ Synchronous Buck Converter with Programmable Soft-Start Time 8-Pin SOIC EP T/R" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AP64501SP-13_0_1"
(rectangle (start -6.35 6.35) (end 6.35 -6.35)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AP64501SP-13_1_1"
(pin passive line (at -8.89 3.81 0) (length 2.54)
(name "BST" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -8.89 1.27 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 -1.27 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 -3.81 0) (length 2.54)
(name "SS" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 8.89 -3.81 180) (length 2.54)
(name "FB" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 8.89 -1.27 180) (length 2.54)
(name "COMP" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 8.89 1.27 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 8.89 3.81 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -8.89 90) (length 2.54)
(name "EP" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "pspice:INDUCTOR" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "INDUCTOR" (id 1) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "simulation" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor symbol for simulation only" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "INDUCTOR_0_1"
(arc (start -2.54 0) (mid -3.81 1.27) (end -5.08 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid -1.27 1.27) (end -2.54 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 2.54 0) (mid 1.27 1.27) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 5.08 0) (mid 3.81 1.27) (end 2.54 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "INDUCTOR_1_1"
(pin input line (at -6.35 0 0) (length 1.27)
(name "1" (effects (font (size 0.762 0.762))))
(number "1" (effects (font (size 0.762 0.762))))
)
(pin input line (at 6.35 0 180) (length 1.27)
(name "2" (effects (font (size 0.762 0.762))))
(number "2" (effects (font (size 0.762 0.762))))
)
)
)
)
(junction (at 266.7 128.27) (diameter 0.9144) (color 0 0 0 0)
(uuid 01338850-e9ed-4272-b85d-8d56e9298864)
)
(junction (at 106.68 146.05) (diameter 0.9144) (color 0 0 0 0)
(uuid 0a152b35-cee2-4ae5-98f7-8023305fb425)
)
(junction (at 255.27 128.27) (diameter 0.9144) (color 0 0 0 0)
(uuid 191d745f-09ac-41b7-84e9-9c35abccd72d)
)
(junction (at 76.2 146.05) (diameter 0.9144) (color 0 0 0 0)
(uuid 4205242e-b1c9-487a-b0b5-87d7b7c82d79)
)
(junction (at 243.84 128.27) (diameter 0.9144) (color 0 0 0 0)
(uuid 51e081dd-14da-453b-ad0a-f912cce13100)
)
(junction (at 106.68 156.21) (diameter 0.9144) (color 0 0 0 0)
(uuid 5b6f374d-8259-4c2b-b68d-008e47d1c5ca)
)
(junction (at 266.7 140.97) (diameter 0.9144) (color 0 0 0 0)
(uuid 636b6990-8277-4c2a-98f1-ac38d762ce7f)
)
(junction (at 152.4 146.05) (diameter 0.9144) (color 0 0 0 0)
(uuid 7aa052d0-9b16-4032-98c4-1554e6486510)
)
(junction (at 219.71 170.18) (diameter 0.9144) (color 0 0 0 0)
(uuid 7f7703d5-e789-4ab7-a485-ccdff65948bf)
)
(junction (at 219.71 151.13) (diameter 1.016) (color 0 0 0 0)
(uuid 81918f47-d111-4fbd-b94f-dab2f828be4c)
)
(junction (at 152.4 156.21) (diameter 0.9144) (color 0 0 0 0)
(uuid 8a50b5f7-d609-409d-947b-39530ce2e158)
)
(junction (at 307.975 128.27) (diameter 0) (color 0 0 0 0)
(uuid 9486eaf1-02fa-4cbc-9ed7-eb03d1bc9760)
)
(junction (at 292.1 128.27) (diameter 0.9144) (color 0 0 0 0)
(uuid a562bf8a-bb22-4059-bc6c-2f407e692f21)
)
(junction (at 208.28 170.18) (diameter 0.9144) (color 0 0 0 0)
(uuid ac284b14-05ec-4e61-b8f3-fbc0418a37e4)
)
(junction (at 137.16 156.21) (diameter 0.9144) (color 0 0 0 0)
(uuid b7f80015-e90a-4fbe-b601-45518e1720d7)
)
(junction (at 121.92 156.21) (diameter 0.9144) (color 0 0 0 0)
(uuid bd70cb30-fb80-4819-8695-036c532484ae)
)
(junction (at 219.71 128.27) (diameter 0.9144) (color 0 0 0 0)
(uuid c10cd760-64f9-42b3-84bb-c8dd72b8b1f6)
)
(junction (at 278.13 128.27) (diameter 1.016) (color 0 0 0 0)
(uuid c2abb88c-aba0-4079-831a-8856a9968f8e)
)
(junction (at 186.69 128.27) (diameter 1.016) (color 0 0 0 0)
(uuid cd8b3a7a-7a5c-4730-986f-909c6e35d1ed)
)
(junction (at 189.23 170.18) (diameter 1.016) (color 0 0 0 0)
(uuid ce8a405e-63bd-4622-b309-87d904dba135)
)
(junction (at 137.16 146.05) (diameter 0.9144) (color 0 0 0 0)
(uuid cf2ca2b8-c110-4ac7-9be4-383392984644)
)
(junction (at 177.8 170.18) (diameter 1.016) (color 0 0 0 0)
(uuid d6846ea7-7fd6-41fd-b190-936bea2a4eb0)
)
(junction (at 255.27 140.97) (diameter 0.9144) (color 0 0 0 0)
(uuid dc90f27a-0582-4841-9940-0576394bdc04)
)
(junction (at 121.92 146.05) (diameter 0.9144) (color 0 0 0 0)
(uuid e06e8aa7-e153-48c0-a9d1-a19b5089c920)
)
(junction (at 91.44 146.05) (diameter 0.9144) (color 0 0 0 0)
(uuid ee217293-ddc6-462b-afed-e924309e0558)
)
(junction (at 278.13 140.97) (diameter 0.9144) (color 0 0 0 0)
(uuid f2c4bfc6-de7b-44b0-8929-ec4bd5cebfe1)
)
(junction (at 91.44 156.21) (diameter 0.9144) (color 0 0 0 0)
(uuid f4cf14d6-a305-4ad5-aaf1-abdbcac9663e)
)
(no_connect (at 227.33 139.7) (uuid 8cafa459-24f7-4ce5-bcef-ea1229a57da8))
(no_connect (at 227.33 134.62) (uuid 8cafa459-24f7-4ce5-bcef-ea1229a57da9))
(no_connect (at 196.85 162.56) (uuid cf400ce4-3e65-410a-a972-f201cf70b7c7))
(no_connect (at 196.85 157.48) (uuid cf400ce4-3e65-410a-a972-f201cf70b7c8))
(wire (pts (xy 212.09 132.08) (xy 212.09 134.62))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 002bad6b-12ec-4330-9daf-26bf2fbd684d)
)
(wire (pts (xy 76.2 153.67) (xy 76.2 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 01c423ee-c2fa-4bde-a90c-570e1d4b679a)
)
(wire (pts (xy 76.2 148.59) (xy 76.2 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 03207049-6855-4e25-9321-95f98ba677a5)
)
(wire (pts (xy 323.215 134.62) (xy 332.74 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06ead6ce-ceae-4118-846c-e08d444b3945)
)
(wire (pts (xy 243.84 132.08) (xy 243.84 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 08bb4c2b-f76b-48bf-a303-81e698a36799)
)
(wire (pts (xy 91.44 153.67) (xy 91.44 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0efebf36-77b4-4049-8a86-8f1ca06ba159)
)
(wire (pts (xy 121.92 153.67) (xy 121.92 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 11e93bdc-ce57-430c-9e7e-dada01114957)
)
(polyline (pts (xy 227.33 134.62) (xy 227.33 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 141ccd8e-379d-4335-812d-ff1e8eb1a24e)
)
(polyline (pts (xy 219.71 132.08) (xy 227.33 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 141ccd8e-379d-4335-812d-ff1e8eb1a24f)
)
(wire (pts (xy 186.69 146.05) (xy 189.23 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1a897332-7443-442a-a3e5-8dcf03c37974)
)
(wire (pts (xy 186.69 148.59) (xy 208.28 148.59))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1f9706ad-2fb4-4aa9-bcf9-eb90bd020d70)
)
(wire (pts (xy 152.4 148.59) (xy 152.4 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 203f733d-0aaf-4a5f-b7de-c1f3585a4d2a)
)
(wire (pts (xy 243.84 137.16) (xy 243.84 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 21956ca9-28f9-4f11-82fe-f338f58fa150)
)
(polyline (pts (xy 196.85 151.13) (xy 196.85 157.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 255c78f1-0038-4c0b-9116-f4147d883b29)
)
(wire (pts (xy 158.75 143.51) (xy 168.91 143.51))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2620ce82-c412-40fe-9fb1-ab437f485a28)
)
(wire (pts (xy 177.8 156.21) (xy 177.8 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 28da8d6d-6c11-4353-bf1e-f1dcc1910b53)
)
(wire (pts (xy 292.1 137.16) (xy 292.1 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3362778f-250b-45bc-86fa-3997083e0b88)
)
(wire (pts (xy 255.27 140.97) (xy 266.7 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3776a582-7ff4-4b94-a775-18612e3a8c44)
)
(wire (pts (xy 266.7 140.97) (xy 278.13 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3776a582-7ff4-4b94-a775-18612e3a8c45)
)
(wire (pts (xy 243.84 140.97) (xy 255.27 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3776a582-7ff4-4b94-a775-18612e3a8c46)
)
(wire (pts (xy 168.91 162.56) (xy 168.91 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3cfc38b0-edba-443e-9210-19fc6bdf5b64)
)
(wire (pts (xy 152.4 156.21) (xy 152.4 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3f30237a-cfd6-4ace-bdc0-c8526a217053)
)
(wire (pts (xy 307.975 128.27) (xy 307.975 134.62))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 486fa0fa-08b5-4009-ab30-ecc724fa3a37)
)
(wire (pts (xy 158.75 128.27) (xy 158.75 132.08))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4f24439d-d882-46f5-86cb-a1275d63ad39)
)
(wire (pts (xy 208.28 158.75) (xy 208.28 161.29))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 51637cb5-17e1-4b04-a039-d5bf037906f3)
)
(wire (pts (xy 189.23 146.05) (xy 189.23 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 54c9e915-07de-4aa7-8b4e-4ef33316601c)
)
(wire (pts (xy 172.72 128.27) (xy 186.69 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 56f893fe-8151-407b-ba9f-f9f720aacc3d)
)
(wire (pts (xy 212.09 132.08) (xy 219.71 132.08))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 624c0d78-40cf-4999-b7ff-2517e643a02a)
)
(wire (pts (xy 219.71 128.27) (xy 243.84 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 65caafdb-8e2e-4412-8689-1bd5fd8f02d0)
)
(wire (pts (xy 255.27 128.27) (xy 266.7 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 65caafdb-8e2e-4412-8689-1bd5fd8f02d1)
)
(wire (pts (xy 243.84 128.27) (xy 255.27 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 65caafdb-8e2e-4412-8689-1bd5fd8f02d2)
)
(wire (pts (xy 266.7 128.27) (xy 278.13 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 65caafdb-8e2e-4412-8689-1bd5fd8f02d3)
)
(wire (pts (xy 76.2 156.21) (xy 91.44 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6762c612-899e-4f75-93b3-dc6ed19922ff)
)
(wire (pts (xy 91.44 156.21) (xy 106.68 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6762c612-899e-4f75-93b3-dc6ed1992300)
)
(wire (pts (xy 137.16 156.21) (xy 152.4 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6762c612-899e-4f75-93b3-dc6ed1992301)
)
(wire (pts (xy 121.92 156.21) (xy 137.16 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6762c612-899e-4f75-93b3-dc6ed1992302)
)
(wire (pts (xy 106.68 156.21) (xy 121.92 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6762c612-899e-4f75-93b3-dc6ed1992303)
)
(wire (pts (xy 106.68 153.67) (xy 106.68 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6d4894ea-c815-413c-ac27-ab38eb82a96e)
)
(wire (pts (xy 121.92 148.59) (xy 121.92 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7562f86b-6e26-4183-86eb-82b3a9d4c497)
)
(wire (pts (xy 219.71 142.24) (xy 219.71 151.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 80769a15-bbe0-46c4-ae28-14ac7af43453)
)
(wire (pts (xy 219.71 162.56) (xy 219.71 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8148a8f2-4167-4ca0-a508-1bf50d617d4f)
)
(wire (pts (xy 106.68 148.59) (xy 106.68 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 845af388-c8bc-4d49-841f-c293a3db0f41)
)
(wire (pts (xy 69.85 165.1) (xy 165.1 165.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 881ec26a-86c0-4d74-b189-1ac3c9c2e9ae)
)
(wire (pts (xy 165.1 148.59) (xy 165.1 165.1))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 881ec26a-86c0-4d74-b189-1ac3c9c2e9af)
)
(wire (pts (xy 168.91 151.13) (xy 168.91 157.48))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 88b334d1-9435-4891-94bb-de9385692b19)
)
(wire (pts (xy 219.71 128.27) (xy 219.71 132.08))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8d64595e-378b-43ea-9f4e-3fe654d695ac)
)
(wire (pts (xy 255.27 137.16) (xy 255.27 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8ec8b7f3-bd85-4454-84f4-2dfca08e2839)
)
(polyline (pts (xy 219.71 142.24) (xy 227.33 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f9f1e6e-489f-4cf0-b480-f0f750dd90ce)
)
(polyline (pts (xy 227.33 139.7) (xy 227.33 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f9f1e6e-489f-4cf0-b480-f0f750dd90cf)
)
(wire (pts (xy 212.09 139.7) (xy 212.09 142.24))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 916a18ad-809d-4e85-8d02-0a039156113c)
)
(wire (pts (xy 208.28 170.18) (xy 219.71 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 91e663d2-5e8b-4060-9873-bfa63cebc369)
)
(wire (pts (xy 292.1 132.08) (xy 292.1 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 94a7d61f-51da-4a27-a2ee-07956ba58211)
)
(wire (pts (xy 278.13 132.08) (xy 278.13 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 959b6c73-2cea-4ba0-bf67-85756fc1c687)
)
(wire (pts (xy 219.71 170.18) (xy 219.71 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9cf4afc5-1282-48c6-9ad9-c1329a37c755)
)
(wire (pts (xy 121.92 146.05) (xy 137.16 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a0ed039a-e4ce-4468-897b-66bd1de6f81f)
)
(wire (pts (xy 91.44 146.05) (xy 106.68 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a0ed039a-e4ce-4468-897b-66bd1de6f820)
)
(wire (pts (xy 106.68 146.05) (xy 121.92 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a0ed039a-e4ce-4468-897b-66bd1de6f821)
)
(wire (pts (xy 69.85 146.05) (xy 76.2 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a0ed039a-e4ce-4468-897b-66bd1de6f822)
)
(wire (pts (xy 76.2 146.05) (xy 91.44 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a0ed039a-e4ce-4468-897b-66bd1de6f823)
)
(wire (pts (xy 137.16 146.05) (xy 152.4 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a0ed039a-e4ce-4468-897b-66bd1de6f824)
)
(wire (pts (xy 219.71 151.13) (xy 219.71 157.48))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ad347eea-1e7c-4a52-9fb8-61abef54d1eb)
)
(wire (pts (xy 189.23 170.18) (xy 208.28 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b05ae95f-5f48-4371-b64c-9eef6c4fc840)
)
(wire (pts (xy 212.09 142.24) (xy 219.71 142.24))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b15414d9-fe18-4238-8739-ebd6c35db6b6)
)
(wire (pts (xy 278.13 140.97) (xy 278.13 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b4179252-8212-4131-813d-d9d294be9594)
)
(wire (pts (xy 186.69 128.27) (xy 186.69 143.51))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b78959b4-3f36-441f-9ab8-fd6a018100a8)
)
(wire (pts (xy 255.27 132.08) (xy 255.27 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bbffc968-255e-427e-81ca-07fbe77b6418)
)
(polyline (pts (xy 196.85 162.56) (xy 196.85 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc661c9e-e783-4270-8d45-2fb671a8b558)
)
(wire (pts (xy 177.8 170.18) (xy 189.23 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bc769e7a-df3c-46df-a8e6-af551f62311c)
)
(wire (pts (xy 168.91 170.18) (xy 177.8 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bc769e7a-df3c-46df-a8e6-af551f62311d)
)
(wire (pts (xy 152.4 146.05) (xy 168.91 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c56e5b59-9a29-401c-bedc-412bc6da51f9)
)
(wire (pts (xy 307.975 128.27) (xy 332.74 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0d76cd8-0b9f-4404-bb65-a0aaa087dcad)
)
(wire (pts (xy 152.4 153.67) (xy 152.4 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d3572fb1-5b84-4d72-bd6d-abc2c920799b)
)
(wire (pts (xy 91.44 148.59) (xy 91.44 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dd42e441-671d-4490-bfbb-faed7766c67a)
)
(wire (pts (xy 137.16 148.59) (xy 137.16 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e16793f9-63a8-4782-a9d7-d513331e6376)
)
(wire (pts (xy 186.69 128.27) (xy 199.39 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e263aa4c-5725-425c-b23a-2ec3edf89fe1)
)
(wire (pts (xy 158.75 137.16) (xy 158.75 143.51))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e44a713e-7e92-4507-b5d1-e43de8203617)
)
(wire (pts (xy 137.16 153.67) (xy 137.16 156.21))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e89fcf16-f2af-4099-ba2e-f4540e061459)
)
(wire (pts (xy 278.13 128.27) (xy 292.1 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eb68d82d-2e67-4dd8-991a-6dfbd10a327d)
)
(wire (pts (xy 208.28 166.37) (xy 208.28 170.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ef2a31c8-5fb0-4f0c-8a66-246a9f0ae4b0)
)
(wire (pts (xy 266.7 132.08) (xy 266.7 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f0879bed-3d81-444f-8811-88e2b77c3fa3)
)
(wire (pts (xy 158.75 128.27) (xy 167.64 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f1ee5d5a-d2f4-41b5-9f4a-2d47d35185aa)
)
(wire (pts (xy 307.975 134.62) (xy 318.135 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3b36143-c707-43fc-a495-416b4cb442d4)
)
(wire (pts (xy 186.69 151.13) (xy 219.71 151.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f4f740dd-2a4f-46cc-9e89-bc8ecf20e459)
)
(wire (pts (xy 278.13 137.16) (xy 278.13 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f80d82ae-4781-4647-acab-49d0386be824)
)
(wire (pts (xy 208.28 148.59) (xy 208.28 153.67))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fa12b48f-6a9d-4e10-b055-e602fdb80ca5)
)
(wire (pts (xy 292.1 128.27) (xy 307.975 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fa246c27-0dce-489e-b314-12313522e2e2)
)
(wire (pts (xy 266.7 137.16) (xy 266.7 140.97))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fabe3ff5-fc6e-4077-9ccc-07dbd10b1a17)
)
(wire (pts (xy 212.09 128.27) (xy 219.71 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fcf13150-0f59-44c4-9931-4dfafb023a83)
)
(wire (pts (xy 165.1 148.59) (xy 168.91 148.59))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fe094f87-5b15-4b4b-bbb9-6b455e77044a)
)
(wire (pts (xy 278.13 127) (xy 278.13 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ff72cfdb-41b7-4996-bb0a-b2f9a98185b3)
)
(text "NB: Borrowed/Inspired by Raspberry Pi Foundation's CM4IO"
(at 17.78 31.75 0)
(effects (font (size 2 2) (thickness 0.4) bold) (justify left bottom))
(uuid 16947239-7afd-4cf5-a218-3b7b905ab47c)
)
(text "3.3v @ 3.3A PSU for PCIe Only ( 12v Input )\n\n" (at 167.005 120.015 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 28275fed-fd45-4a21-b2a4-f9338639c9d7)
)
(text "+3.3V PSU @ 3A peak" (at 15.24 26.67 0)
(effects (font (size 5 5) (thickness 1) bold italic) (justify left bottom))
(uuid a0b13021-02f1-4617-91ba-058ab93d2bf2)
)
(text "< PSU On LED" (at 346.075 135.255 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b214b5d3-9eb9-438a-8c97-f14a2d0382b7)
)
(hierarchical_label "+12V_IN" (shape input) (at 69.85 146.05 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1f9bb34f-6b3d-49b8-8d85-6cfeec251eb6)
)
(hierarchical_label "+3.3V_OUT" (shape output) (at 332.74 128.27 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 602c6523-6315-44ed-a715-f64d2f63bf20)
)
(hierarchical_label "EN_+3.3V" (shape input) (at 69.85 165.1 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d225b3e0-d50d-4c4d-b6d0-9f9ce50cd3cf)
)
(hierarchical_label "+3.3V_OK" (shape output) (at 332.74 134.62 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e96232d7-e861-40e7-868d-21376c7e9f04)
)
(symbol (lib_id "Device:C_Small") (at 168.91 160.02 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0ad08c0e-96b3-4afe-9e0a-6efb67871e2d)
(property "Reference" "C40" (id 0) (at 171.45 158.75 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (id 1) (at 171.45 161.29 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 169.8752 163.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 168.91 160.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "TDK" (id 4) (at 168.91 160.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "CGA2B1X7R1C104K050BC" (id 5) (at 168.91 160.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" (id 8) (at 168.91 160.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e18c6909-699a-4621-b98a-b7f542a0945f))
(pin "2" (uuid 4257ff6e-87e3-4ab6-810c-83042380029f))
)
(symbol (lib_id "Device:C_Small") (at 121.92 151.13 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 10e49c37-ce1f-43a3-9283-3e8f7216aa2b)
(property "Reference" "C36" (id 0) (at 124.46 149.86 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF 35V" (id 1) (at 124.46 152.4 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 122.8852 154.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.murata.com/en-global/products/productdetail.aspx?partno=GRM21BC8YA106ME11%23" (id 3) (at 121.92 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Murata" (id 5) (at 121.92 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "GRT31CC8YA106KE01L" (id 6) (at 121.92 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "Murata" (id 7) (at 121.92 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "10uF 10% or 20% 35V Ceramic Capacitor X6S 1206 (3216 Metric)" (id 8) (at 121.92 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ad98cdf2-1e7a-4563-a9e1-01db0a282276))
(pin "2" (uuid 6e51aa8e-2a3f-4781-b3e3-f6a0b797891d))
)
(symbol (lib_id "power:GND") (at 152.4 171.45 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 14d44a59-a147-4ca9-94f5-82a0b7d3ae80)
(property "Reference" "#PWR043" (id 0) (at 152.4 177.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 152.4 175.26 0))
(property "Footprint" "" (id 2) (at 152.4 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 152.4 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1f5e8a2b-2b8b-4760-8979-a728ac732612))
)
(symbol (lib_id "Connector:TestPoint") (at 251.46 171.45 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 19af71c2-85bb-483b-b021-d62eec6fdeed)
(property "Reference" "TP11" (id 0) (at 252.73 168.91 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (id 1) (at 252.73 171.45 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 256.54 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 256.54 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 251.46 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 251.46 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 251.46 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 251.46 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9707af0e-d89d-4f93-962d-2ea434949651))
)
(symbol (lib_id "Capacitor_Tantalum_SMD_MyOwn:CP_EIA-7343-31_Kemet-D") (at 292.1 134.62 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 22ed2f12-b4bc-4521-9e20-82dac9d93343)
(property "Reference" "C48" (id 0) (at 294.64 133.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100uF" (id 1) (at 294.64 135.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_Tantalum_SMD_MyOwn:CP_EIA-7343-31_Kemet-D" (id 2) (at 292.1 144.145 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 292.1 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "KEMET" (id 5) (at 292.1 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "T495D107K006ATE130" (id 4) (at 292.1 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "Capacitor, SP-Cap, 100u, 6.3V, (15mR ESR -- not available)" (id 6) (at 292.1 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2929e76a-de9e-4b11-aa15-3c6ab4995d36))
(pin "2" (uuid fcbb22bd-9141-45ff-a7a0-438f6de85abd))
)
(symbol (lib_id "Device:C_Small") (at 158.75 134.62 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2594b6fc-43b3-45f7-8cc9-a86a6c06215e)
(property "Reference" "C39" (id 0) (at 161.29 133.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (id 1) (at 161.29 135.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 159.7152 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 158.75 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "TDK" (id 4) (at 158.75 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "CGA2B1X7R1C104K050BC" (id 5) (at 158.75 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" (id 8) (at 158.75 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)