-
Notifications
You must be signed in to change notification settings - Fork 4
/
MPS6540H.kicad_sch
1204 lines (1178 loc) · 45.9 KB
/
MPS6540H.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 5594b9b3-fe4c-4507-b037-a2ee8c40f7d1)
(paper "A4")
(lib_symbols
(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 "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 "power:VDD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VDD" (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 \"VDD\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VDD_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VDD_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VSS" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VSS" (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 \"VSS\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VSS_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 1.27)
(xy -0.762 1.27)
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "VSS_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VSS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "runger:MPS6540H" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MPS6540H" (id 1) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -15.24 12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.mouser.at/datasheet/2/277/mono_s_a0011470959_1-2277179.pdf" (id 3) (at 2.54 -24.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "MPS6540H, Motor driver, brushless driver, 3 phase" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "3 phase driver with integrated FETs, 5A, QFN-26 5x5mm" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MPS6540H_0_0"
(pin open_emitter line (at -15.24 12.7 0) (length 2.54)
(name "nFAULT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 3.81 -20.32 90) (length 2.54)
(name "LSS" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 15.24 -2.54 180) (length 2.54)
(name "SB" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 6.35 -20.32 90) (length 2.54)
(name "LSS" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 15.24 -8.89 180) (length 2.54)
(name "SC" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -20.32 90) (length 2.54)
(name "VG" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -7.62 0) (length 2.54)
(name "SOA" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -10.16 0) (length 2.54)
(name "SOB" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -12.7 0) (length 2.54)
(name "SOC" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -5.08 -20.32 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 5.08 20.32 270) (length 2.54)
(name "VCP" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 10.16 0) (length 2.54)
(name "nSLEEP" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 10.16 180) (length 2.54)
(name "CP1" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 7.62 180) (length 2.54)
(name "CP2" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 15.24 -11.43 180) (length 2.54)
(name "SC" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 20.32 270) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 15.24 -5.08 180) (length 2.54)
(name "SB" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 20.32 270) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 15.24 1.27 180) (length 2.54)
(name "SA" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 7.62 0) (length 2.54)
(name "ENA" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 5.08 0) (length 2.54)
(name "ENB" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 2.54 0) (length 2.54)
(name "ENC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 0 0) (length 2.54)
(name "PWMA" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -2.54 0) (length 2.54)
(name "PWMB" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -5.08 0) (length 2.54)
(name "PWMC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 15.24 3.81 180) (length 2.54)
(name "SA" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "MPS6540H_0_1"
(rectangle (start -12.7 17.78) (end 12.7 -17.78)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 123.825 116.84) (diameter 0) (color 0 0 0 0)
(uuid 0580ba4c-51c4-4298-ad74-e9c2ef4e04a2)
)
(junction (at 142.24 58.42) (diameter 0) (color 0 0 0 0)
(uuid 2a093840-0bdf-41ea-a70e-7ac20376c639)
)
(junction (at 182.88 91.44) (diameter 0) (color 0 0 0 0)
(uuid 2f3a1eef-c0ff-4ac8-8219-88f2fd3d4333)
)
(junction (at 120.65 104.14) (diameter 0) (color 0 0 0 0)
(uuid 32f7f993-844d-4647-82bc-7e4c69fc685b)
)
(junction (at 117.475 101.6) (diameter 0) (color 0 0 0 0)
(uuid 392feb7d-639c-4109-b633-4f77161d9a00)
)
(junction (at 127 106.68) (diameter 0) (color 0 0 0 0)
(uuid 3b960909-0ba4-465c-b3f3-fd447a704a1b)
)
(junction (at 160.02 121.92) (diameter 0) (color 0 0 0 0)
(uuid 5a10edf2-528f-4464-9121-d3df9cb8c8cc)
)
(junction (at 123.825 104.14) (diameter 0) (color 0 0 0 0)
(uuid 5bcf876f-136c-4dac-ae61-fa226f0c392d)
)
(junction (at 120.65 92.075) (diameter 0) (color 0 0 0 0)
(uuid 61c1ad0a-88fa-4e84-b6d4-f39d3cd9072a)
)
(junction (at 136.525 81.28) (diameter 0) (color 0 0 0 0)
(uuid 678b0808-6a49-4948-bc77-b41d6e5561d1)
)
(junction (at 145.415 66.04) (diameter 0) (color 0 0 0 0)
(uuid 849ef7e5-8097-4aee-8015-323905546838)
)
(junction (at 182.88 104.14) (diameter 0) (color 0 0 0 0)
(uuid 9abd6d67-ba40-4dee-af1a-810a8242c86f)
)
(junction (at 182.88 97.79) (diameter 0) (color 0 0 0 0)
(uuid b8825d99-40ea-4358-a66a-e9f243080c3f)
)
(junction (at 170.18 115.57) (diameter 0) (color 0 0 0 0)
(uuid bd6b504f-39ab-4c2b-a42f-5daebc471130)
)
(junction (at 114.3 92.075) (diameter 0) (color 0 0 0 0)
(uuid c84e14d3-e4ed-44aa-a72a-e3cd27cfffa7)
)
(junction (at 165.1 69.85) (diameter 0) (color 0 0 0 0)
(uuid da65d86f-f94d-4db5-8413-9b29c5e2c0d0)
)
(junction (at 130.175 116.84) (diameter 0) (color 0 0 0 0)
(uuid dce81c27-16c7-4397-b7d9-dfe2225cc620)
)
(junction (at 162.56 69.85) (diameter 0) (color 0 0 0 0)
(uuid eae6cb64-c798-40f3-b4c3-dcefb9e0714c)
)
(junction (at 130.175 106.68) (diameter 0) (color 0 0 0 0)
(uuid fa730bff-7ae7-4cfc-aa0b-6b723ed31b48)
)
(junction (at 148.59 58.42) (diameter 0) (color 0 0 0 0)
(uuid fd545dac-856c-48de-9df2-9bd1e3b69ae7)
)
(junction (at 114.3 101.6) (diameter 0) (color 0 0 0 0)
(uuid fd9d3f06-47e9-4e96-bdfc-1a5f59e67669)
)
(wire (pts (xy 114.3 92.075) (xy 114.3 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03cd0e98-6e81-4d0b-9021-4f98a5889aab)
)
(wire (pts (xy 180.34 105.41) (xy 182.88 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 075d6d97-84ae-4d3e-988f-1a9f8e505f66)
)
(wire (pts (xy 148.59 66.04) (xy 145.415 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0821d32a-9aa3-4750-b6a7-4bcb303e1685)
)
(wire (pts (xy 182.88 91.44) (xy 187.325 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bbc9228-bc88-4e1a-85b4-6cfc0b6df860)
)
(wire (pts (xy 142.24 66.04) (xy 142.24 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d4f1bfd-a148-4f9e-b1af-e2e910cf6ccb)
)
(wire (pts (xy 180.34 102.87) (xy 182.88 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 104a772d-3ca9-4e07-9e76-009f4e895ed7)
)
(wire (pts (xy 136.525 81.28) (xy 149.86 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12246aaa-3f12-4833-8c9d-f5cea45377bd)
)
(wire (pts (xy 193.675 86.36) (xy 180.34 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 129b816d-0cf5-4bb6-a96c-848f116cc42a)
)
(wire (pts (xy 182.88 92.71) (xy 182.88 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d3f30eb-e6ed-4092-8029-76d14198f59e)
)
(wire (pts (xy 165.1 114.3) (xy 165.1 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ef3e595-0f58-443f-9e80-49b548696a11)
)
(wire (pts (xy 104.775 92.075) (xy 114.3 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23009a72-c132-44eb-b3b0-1ab234521f13)
)
(wire (pts (xy 130.175 106.68) (xy 130.175 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23986608-9154-4f90-bcce-9fb4055b986a)
)
(wire (pts (xy 114.3 100.33) (xy 114.3 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25ac4537-f02e-455d-a065-ade9d2c7bac3)
)
(wire (pts (xy 135.255 58.42) (xy 142.24 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26497f49-71bb-4759-8bbc-083d325c1eb2)
)
(wire (pts (xy 136.525 81.28) (xy 136.525 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a84e09f-f548-4287-b1e4-742abb52f22a)
)
(wire (pts (xy 114.3 101.6) (xy 117.475 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b4788a6-8d33-426c-91f6-37ac837030fd)
)
(wire (pts (xy 180.34 92.71) (xy 182.88 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ba96606-e272-45a0-ba28-202ba87ba66d)
)
(wire (pts (xy 120.65 104.14) (xy 123.825 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d3d7e64-ce58-4d80-bce8-2694e9263ec8)
)
(wire (pts (xy 123.825 116.84) (xy 130.175 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ef187c4-3fb5-4770-b556-986b6577c10c)
)
(wire (pts (xy 162.56 69.85) (xy 162.56 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f18c9dc-8d42-4846-ab40-f6a29ce7c3fa)
)
(wire (pts (xy 127 106.68) (xy 130.175 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 376655ca-2e08-4972-983b-c7b1e960e81b)
)
(wire (pts (xy 182.88 96.52) (xy 182.88 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4229a4cc-8f76-4b3c-a51c-664de348e1f1)
)
(wire (pts (xy 180.34 90.17) (xy 182.88 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 443f8001-a91a-442a-946a-168a86d713cd)
)
(wire (pts (xy 114.3 92.075) (xy 120.65 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44f993f5-9f14-41ae-9e1b-aad9d9e1ea75)
)
(wire (pts (xy 182.88 104.14) (xy 187.325 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d5d7276-14d3-4ad8-b687-d287fa992a64)
)
(wire (pts (xy 130.175 113.03) (xy 130.175 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4deb3745-7285-4b2e-a4d0-1c9f19f1076f)
)
(wire (pts (xy 127 92.075) (xy 127 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5820c894-3fe5-4816-8d22-d1cc58656013)
)
(wire (pts (xy 123.825 104.14) (xy 123.825 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61c25148-3644-4822-9ee9-29e35e07b711)
)
(wire (pts (xy 171.45 115.57) (xy 170.18 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64e31757-f58d-47a9-bad0-51dce0ae42df)
)
(wire (pts (xy 190.5 83.82) (xy 193.675 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 718c536a-8471-4e7a-95aa-063ea9115f68)
)
(wire (pts (xy 160.02 121.92) (xy 160.02 128.905))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71f1b777-0fef-4ce3-a862-10060d67eba9)
)
(wire (pts (xy 123.825 113.03) (xy 123.825 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 727ddb4f-871a-45f7-8695-e3c66036ee65)
)
(wire (pts (xy 193.675 83.82) (xy 193.675 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7309003b-92d2-4cf7-8cf2-eb5e35eb1f7c)
)
(wire (pts (xy 170.18 115.57) (xy 170.18 117.475))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 733219ca-fabe-4add-831a-e43509c1eb64)
)
(wire (pts (xy 104.775 101.6) (xy 114.3 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73bcaeff-aa7a-4eb1-bc69-10c5399b6827)
)
(wire (pts (xy 120.65 100.33) (xy 120.65 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75b4ed80-43ae-4b55-8c76-9df8e4a4602b)
)
(wire (pts (xy 133.35 81.28) (xy 136.525 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79ec7742-3265-4825-8094-c2fd2b69f0d1)
)
(wire (pts (xy 142.24 58.42) (xy 148.59 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d4bd784-ff15-45ef-8a1c-8b61451f3f83)
)
(wire (pts (xy 162.56 69.85) (xy 165.1 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84c0688a-cd1e-4a9f-808b-83eb250c3fcf)
)
(wire (pts (xy 130.175 116.84) (xy 141.605 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 861e4297-198a-43be-89da-bdb3e22f0653)
)
(wire (pts (xy 170.18 73.66) (xy 170.18 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 899e8c25-d99f-4243-9d6a-b882cee831ea)
)
(wire (pts (xy 117.475 113.03) (xy 117.475 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8cea650b-a36a-4802-933f-9d988394b4b6)
)
(wire (pts (xy 104.775 106.68) (xy 127 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e2631a0-6705-43d8-9ca0-2dab9ea681bb)
)
(wire (pts (xy 148.59 63.5) (xy 148.59 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e898bb4-d824-40f1-a8ee-924c489740c4)
)
(wire (pts (xy 182.88 102.87) (xy 182.88 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90412107-c7e9-426f-ba6a-28a4f951786c)
)
(wire (pts (xy 117.475 101.6) (xy 117.475 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90680440-c3e9-49a4-a130-77ee75329330)
)
(wire (pts (xy 180.34 96.52) (xy 182.88 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93ff9522-b33e-4e71-b495-6dd8181c10c4)
)
(wire (pts (xy 168.91 115.57) (xy 170.18 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99c36afc-03c0-4b61-b7ed-42a8bd8788d0)
)
(wire (pts (xy 165.1 69.85) (xy 165.1 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9aff3906-47da-455a-82fa-7fa31597a7a9)
)
(wire (pts (xy 168.91 114.3) (xy 168.91 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9f5a87a-d4a8-4d04-acd3-9208612a019f)
)
(wire (pts (xy 123.825 104.14) (xy 149.86 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ab86832a-42ce-464c-90c5-abcbd19233cd)
)
(wire (pts (xy 142.24 66.04) (xy 145.415 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5362840-4fb7-4a67-9047-135f3a5e3343)
)
(wire (pts (xy 117.475 116.84) (xy 123.825 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b74a9c89-51de-4fcb-8915-8b0fe9d7692b)
)
(wire (pts (xy 171.45 114.3) (xy 171.45 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b947e8c0-f6f2-4c34-b41f-517fc887cc55)
)
(wire (pts (xy 182.88 97.79) (xy 187.325 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9c1dfa8-9e22-4d18-9029-aca3afac66d4)
)
(wire (pts (xy 130.175 106.68) (xy 149.86 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c4430551-4238-46cc-be0d-a0b4114a616f)
)
(wire (pts (xy 120.65 92.075) (xy 120.65 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6dbc0a1-aab7-49eb-9bc0-b03cf4d9103d)
)
(wire (pts (xy 127 100.33) (xy 127 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c80d463d-b0ed-4f73-a971-1fa48a6e7419)
)
(wire (pts (xy 180.34 99.06) (xy 182.88 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c99372ca-8cfa-44b4-b5d7-8fcb3016d48e)
)
(wire (pts (xy 180.34 83.82) (xy 185.42 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0126abc-cbdf-4897-b39a-512893af47cc)
)
(wire (pts (xy 182.88 90.17) (xy 182.88 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d48859a4-ae01-40de-8867-e53846ac24aa)
)
(wire (pts (xy 117.475 101.6) (xy 149.86 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d66385c4-db28-4a6f-a88c-39c1e9d9668d)
)
(wire (pts (xy 182.88 105.41) (xy 182.88 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6f94215-b701-4607-a7ba-7bb546b9336d)
)
(wire (pts (xy 104.775 104.14) (xy 120.65 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d841f607-cb69-4571-8516-6ddb4f50ae2e)
)
(wire (pts (xy 182.88 99.06) (xy 182.88 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dbe8f86b-2f76-44ef-a6eb-7ab8619b9b19)
)
(wire (pts (xy 120.65 92.075) (xy 127 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e769bcc4-a9c2-40d7-aeaa-69e710f9b803)
)
(wire (pts (xy 160.02 114.3) (xy 160.02 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1363e31-6cba-4869-85cb-d1bd1bc319bd)
)
(wire (pts (xy 162.56 73.66) (xy 162.56 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fcd3f584-cd71-4215-913f-1ee4928f7c9f)
)
(wire (pts (xy 148.59 58.42) (xy 162.56 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff5e444b-5fb7-41dd-892b-60710e72fb7c)
)
(text "Output ratiometric centred on VREF/2 +/- 0.239V per A"
(at 39.37 105.41 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 923abd4a-7d0b-4c29-8348-036644d7bb83)
)
(hierarchical_label "ENB" (shape input) (at 149.86 88.9 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0a0235a3-eb7b-4690-bee4-3d91da2160ef)
)
(hierarchical_label "SOC" (shape input) (at 104.775 106.68 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2f65bfc8-eee2-457e-8cc6-325db09e5cc2)
)
(hierarchical_label "nSLEEP" (shape input) (at 149.86 83.82 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 332f2f6b-0404-4169-a925-6457c4234d46)
)
(hierarchical_label "PWMB" (shape input) (at 149.86 96.52 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 497b05d9-1294-4f95-8b12-fbd9f260ae04)
)
(hierarchical_label "nFAULT" (shape input) (at 133.35 81.28 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4f6aa11c-ddaf-4de0-bee8-dd58e8e309ec)
)
(hierarchical_label "ENA" (shape input) (at 149.86 86.36 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 50a4d4c7-7733-4322-a496-1ab6d6cd9f91)
)
(hierarchical_label "VREF" (shape input) (at 104.775 92.075 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 59a1ac5c-e322-44c6-94b9-f2d26f77cf8f)
)
(hierarchical_label "SOB" (shape input) (at 104.775 104.14 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8aeb690c-a9f3-45bd-900f-f9c8132dc337)
)
(hierarchical_label "ENC" (shape input) (at 149.86 91.44 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a1fc6d4a-97d1-47bf-89dc-17f90b20b9d0)
)
(hierarchical_label "PWMC" (shape input) (at 149.86 99.06 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b8a04c24-88d9-4ca4-971b-d6d56ee27c6b)
)
(hierarchical_label "SA" (shape input) (at 187.325 91.44 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bcf01dc7-c00a-4dd6-97f6-870dfb4d81d3)
)
(hierarchical_label "SOA" (shape input) (at 104.775 101.6 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c01d6675-0c8e-43ec-b5de-0f60953ed6d6)
)
(hierarchical_label "SB" (shape input) (at 187.325 97.79 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c212fa9e-f112-465d-a8c4-d79fb88b53bf)
)
(hierarchical_label "SC" (shape input) (at 187.325 104.14 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cadd898d-73ab-48b4-bc78-a384cf93d67f)
)
(hierarchical_label "PWMA" (shape input) (at 149.86 93.98 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e5d5b35c-d903-4deb-8e40-ae715ec6fe33)
)
(symbol (lib_id "power:GND") (at 145.415 66.04 0)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 096455de-c78b-429f-b195-ac1e9c7ce286)
(property "Reference" "#PWR073" (id 0) (at 145.415 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 145.415 70.485 0))
(property "Footprint" "" (id 2) (at 145.415 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 145.415 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 514e7bf2-fc30-4130-b165-0c0d9f54aabb))
)
(symbol (lib_id "Device:C_Small") (at 142.24 60.96 0)
(in_bom yes) (on_board yes)
(uuid 0c980c42-7b42-4d9c-a86a-6efb74340492)
(property "Reference" "C19" (id 0) (at 135.89 60.3249 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10nF 75V" (id 1) (at 130.175 62.2299 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 142.24 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 142.24 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manu" "Murata" (id 4) (at 142.24 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part" "GRM21BR72A103KA01K" (id 5) (at 142.24 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d85980ec-6981-4497-9d7f-a390b62ad09c))
(pin "2" (uuid f2b4d9c2-575f-49d4-9cf2-15e9442a587d))
)
(symbol (lib_id "Device:R_Small") (at 117.475 110.49 0)
(in_bom yes) (on_board yes)
(uuid 147d0a2e-dea7-4eb8-b11f-0ae8ea59c990)
(property "Reference" "R29" (id 0) (at 118.745 109.2199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2k2 0.5%" (id 1) (at 118.745 111.7599 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 117.475 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 117.475 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part" "RT0402DRE072K2L" (id 4) (at 117.475 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manu" "Yageo" (id 5) (at 117.475 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3550713f-9d18-42a4-b1df-43d6600313da))
(pin "2" (uuid a54e13a2-d202-48ad-a5e0-a3f4f1156f2c))
)
(symbol (lib_id "Device:R_Small") (at 127 97.79 0)
(in_bom yes) (on_board yes)
(uuid 269d2be1-d882-4db4-a749-9eed9f4c8436)
(property "Reference" "R28" (id 0) (at 128.27 96.5199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2k2 0.5%" (id 1) (at 128.27 99.0599 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 127 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 127 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part" "RT0402DRE072K2L" (id 4) (at 127 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manu" "Yageo" (id 5) (at 127 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fd788d1c-1a18-45bb-ba98-3002183b7393))
(pin "2" (uuid 1ea484e3-aa2c-4e85-8675-a55048b474e8))
)
(symbol (lib_id "Device:R_Small") (at 130.175 110.49 0)
(in_bom yes) (on_board yes)
(uuid 32eb94b1-14ce-40ab-8a4f-e54cace56f06)
(property "Reference" "R31" (id 0) (at 131.445 109.2199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2k2 0.5%" (id 1) (at 131.445 111.7599 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 130.175 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 130.175 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part" "RT0402DRE072K2L" (id 4) (at 130.175 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manu" "Yageo" (id 5) (at 130.175 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cf9852cd-8df0-486e-991e-3667b108dfc1))
(pin "2" (uuid 585d4fe0-a125-44c8-81b7-87d792e18f97))
)
(symbol (lib_id "power:GND") (at 160.02 128.905 0)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 3447426c-9c4e-4b1d-99e9-2074971e1569)
(property "Reference" "#PWR077" (id 0) (at 160.02 135.255 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 160.02 133.35 0))
(property "Footprint" "" (id 2) (at 160.02 128.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 160.02 128.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d3814311-7f14-4ee0-880d-3b3cd1ff714c))
)
(symbol (lib_id "power:VDD") (at 136.525 73.66 0)
(in_bom yes) (on_board yes)
(uuid 35788ecf-899b-483a-894d-791adb30fb84)
(property "Reference" "#PWR074" (id 0) (at 136.525 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VDD" (id 1) (at 136.9568 69.2658 0))
(property "Footprint" "" (id 2) (at 136.525 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 136.525 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3b20d2d3-2063-4feb-a614-42512d92b7d7))
)
(symbol (lib_id "Device:C_Small") (at 167.64 69.85 90)
(in_bom yes) (on_board yes)
(uuid 5910f3e0-0aad-431a-93c0-4034cf185dc4)
(property "Reference" "C21" (id 0) (at 167.64 64.135 90))
(property "Value" "1uF 16V" (id 1) (at 167.64 66.675 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 167.64 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 167.64 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manu" "Murata" (id 4) (at 167.64 69.85 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part" "GCM188R71C105KA64J" (id 5) (at 167.64 69.85 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1b7ded16-f8b6-42bf-8cc3-8700f360e804))
(pin "2" (uuid 61332c4c-9a24-4ece-9f07-f7dea191a91c))
)
(symbol (lib_id "power:GND") (at 141.605 116.84 0)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 66fa509a-3de5-471b-a734-59830830f38f)
(property "Reference" "#PWR075" (id 0) (at 141.605 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 141.605 121.285 0))
(property "Footprint" "" (id 2) (at 141.605 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 141.605 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9f901ca9-7e07-4b10-af73-fc1dba636c24))
)
(symbol (lib_id "Device:C_Small") (at 148.59 60.96 0)
(in_bom yes) (on_board yes)
(uuid 730088c2-9468-4496-b6b1-8f324d8417b8)
(property "Reference" "C20" (id 0) (at 150.495 60.3249 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF 75V" (id 1) (at 150.495 62.2299 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 148.59 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 148.59 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manu" "Murata" (id 4) (at 148.59 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part" "GCM21BR72A104KA37L" (id 5) (at 148.59 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d8a7105d-0e10-4ab0-985a-e8e2be1e7ce9))
(pin "2" (uuid 06ae35c7-e950-4f0e-a9c5-80eb518a5d71))
)
(symbol (lib_id "power:GND") (at 170.18 117.475 0)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 87a4f346-05fe-46b3-bc58-567b705af643)
(property "Reference" "#PWR076" (id 0) (at 170.18 123.825 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 170.18 121.92 0))
(property "Footprint" "" (id 2) (at 170.18 117.475 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 170.18 117.475 0)
(effects (font (size 1.27 1.27)) hide)
)