-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharging_circuit&pwr_reg.kicad_sch
1642 lines (1606 loc) · 56 KB
/
charging_circuit&pwr_reg.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 20230121) (generator eeschema)
(uuid eb79e7c8-2c06-40e0-a657-d65765400e13)
(paper "A4")
(lib_symbols
(symbol "Battery_Management:MCP73831-2-OT" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -7.62 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MCP73831-2-OT" (at 1.27 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 1.27 -6.35 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf" (at -3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "battery charger lithium" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Single cell, Li-Ion/Li-Po charge management controller, 4.20V, Tri-State Status Output, in SOT23-5 package" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MCP73831-2-OT_0_1"
(rectangle (start -7.62 5.08) (end 7.62 -5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "MCP73831-2-OT_1_1"
(pin output line (at 10.16 -2.54 180) (length 2.54)
(name "STAT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "V_{SS}" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 10.16 2.54 180) (length 2.54)
(name "V_{BAT}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "V_{DD}" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "PROG" (effects (font (size 1.27 1.27))))
(number "5" (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" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (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))
(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" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Linear:TPS7A7001DDA" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -6.35 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TPS7A7001DDA" (at 2.54 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:TI_SO-PowerPAD-8" (at -1.27 8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tps7a7001.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "ldo regulator voltage linear" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "2A, Low-Dropout Voltage Regulator, 1.425-6.5V Input, Adjustable Min 0.5V Output, PowerPad SO-8" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TI*SO*PowerPAD*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TPS7A7001DDA_0_1"
(rectangle (start -7.62 5.08) (end 7.62 -5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "TPS7A7001DDA_1_1"
(pin no_connect line (at -7.62 -2.54 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -10.16 2.54 0) (length 2.54)
(name "IN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 7.62 -2.54 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -2.54 -5.08 90) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 10.16 2.54 180) (length 2.54)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 0 180) (length 2.54)
(name "FB" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -7.62 90) (length 2.54)
(name "EP" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Simulation_SPICE:NMOS" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "Q1" (at 6.35 0.635 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "HSSN3134" (at 6.35 -1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-323_SC-70" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://ngspice.sourceforge.io/docs/ngspice-manual.pdf" (at 0 -12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "NMOS" (at 0 -17.145 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Type" "VDMOS" (at 0 -19.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=D 2=G 3=S" (at 0 -15.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor NMOS N-MOS N-MOSFET simulation" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "N-MOSFET transistor, drain/source/gate" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NMOS_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "NMOS_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+BATT" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+BATT" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power battery" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+BATT\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+BATT_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+BATT_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+BATT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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" (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))
(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:VBUS" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VBUS" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VBUS\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VBUS_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "VBUS_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 80.01 146.05) (diameter 0) (color 0 0 0 0)
(uuid 09874a5d-5b72-4558-9c82-6342db62054b)
)
(junction (at 119.38 146.05) (diameter 0) (color 0 0 0 0)
(uuid 512e5ee3-f153-4e01-84ae-77fbe56a58ff)
)
(junction (at 119.38 167.64) (diameter 0) (color 0 0 0 0)
(uuid 91d41324-1c20-4b3c-a4cc-0f1c3114e306)
)
(junction (at 170.18 69.85) (diameter 0) (color 0 0 0 0)
(uuid 95957198-1986-428d-acd3-8d8d5e518ed2)
)
(junction (at 180.34 39.37) (diameter 0) (color 0 0 0 0)
(uuid a36ff3f4-e63d-4057-82bb-bc452ebabba0)
)
(junction (at 68.58 146.05) (diameter 0) (color 0 0 0 0)
(uuid a77ca734-718a-4088-a83a-337ed62b1430)
)
(junction (at 149.86 144.78) (diameter 0) (color 0 0 0 0)
(uuid aeb85129-0fca-45f9-975a-2089a83ecd6c)
)
(junction (at 119.38 156.21) (diameter 0) (color 0 0 0 0)
(uuid b495aaee-79cb-4e57-b147-03e1f0260bbc)
)
(junction (at 96.52 153.67) (diameter 0) (color 0 0 0 0)
(uuid b75304ad-0a6a-4f12-b6a1-cfd09ed9f265)
)
(junction (at 91.44 63.5) (diameter 0) (color 0 0 0 0)
(uuid c9a7e5c2-3c25-483c-aed0-38e5918411c3)
)
(junction (at 143.51 146.05) (diameter 0) (color 0 0 0 0)
(uuid d1799ef9-636c-4d1a-8e08-262c104ec7b9)
)
(junction (at 96.52 167.64) (diameter 0) (color 0 0 0 0)
(uuid da2f3b1b-aeb8-4c74-bbe1-eec2bbc68db4)
)
(no_connect (at 190.5 57.15) (uuid efb3ef10-a139-4152-ab5b-9f79fca74424))
(wire (pts (xy 165.1 57.15) (xy 170.18 57.15))
(stroke (width 0) (type default))
(uuid 014b25cd-4477-4f22-98b7-835d2c6c2be3)
)
(wire (pts (xy 161.29 39.37) (xy 161.29 40.64))
(stroke (width 0) (type default))
(uuid 035ffaf1-ba21-4920-b7ef-03804e6af5a0)
)
(wire (pts (xy 170.18 69.85) (xy 172.72 69.85))
(stroke (width 0) (type default))
(uuid 04dd292a-0782-4ed4-a8a6-5774a66f8391)
)
(wire (pts (xy 119.38 154.94) (xy 119.38 156.21))
(stroke (width 0) (type default))
(uuid 097f3b09-d224-41a4-b589-0ba9059da132)
)
(wire (pts (xy 149.86 144.78) (xy 152.4 144.78))
(stroke (width 0) (type default))
(uuid 0c5ab463-e915-4412-bd59-88b7efa4b68e)
)
(wire (pts (xy 91.44 60.96) (xy 91.44 63.5))
(stroke (width 0) (type default))
(uuid 0f39f6f2-3289-41d4-9016-f7bf879a972f)
)
(wire (pts (xy 156.21 69.85) (xy 158.75 69.85))
(stroke (width 0) (type default))
(uuid 102b7da0-bdc1-4e06-b575-35c78074f2f5)
)
(wire (pts (xy 119.38 167.64) (xy 143.51 167.64))
(stroke (width 0) (type default))
(uuid 14eda15b-4941-4a8e-b55d-7ba76ab48fdc)
)
(wire (pts (xy 68.58 146.05) (xy 80.01 146.05))
(stroke (width 0) (type default))
(uuid 20b2527d-17c6-4c92-ad4c-5c86f2f8efb6)
)
(wire (pts (xy 190.5 52.07) (xy 201.93 52.07))
(stroke (width 0) (type default))
(uuid 20b71998-db84-4803-9089-9422a08b7e00)
)
(wire (pts (xy 119.38 146.05) (xy 143.51 146.05))
(stroke (width 0) (type default))
(uuid 2b64653e-0568-4ab8-82ec-ffbca880e1c9)
)
(wire (pts (xy 96.52 153.67) (xy 96.52 167.64))
(stroke (width 0) (type default))
(uuid 2ea4fe02-8324-473f-979b-312e15ff4357)
)
(wire (pts (xy 149.86 146.05) (xy 149.86 144.78))
(stroke (width 0) (type default))
(uuid 318e647e-3367-4b5e-84ae-a8f1765d84e3)
)
(wire (pts (xy 119.38 165.1) (xy 119.38 167.64))
(stroke (width 0) (type default))
(uuid 3342de20-310a-4381-b4dc-2ae8bcf73a60)
)
(wire (pts (xy 96.52 167.64) (xy 119.38 167.64))
(stroke (width 0) (type default))
(uuid 498b4e96-29ea-49ec-92fe-8a10b8c71ba0)
)
(wire (pts (xy 119.38 167.64) (xy 119.38 170.18))
(stroke (width 0) (type default))
(uuid 4abd2452-8ce0-4970-988f-7ea416737888)
)
(wire (pts (xy 149.86 144.78) (xy 149.86 143.51))
(stroke (width 0) (type default))
(uuid 50c14fc2-e9e8-45a9-8328-1d32a5379c5b)
)
(wire (pts (xy 180.34 36.83) (xy 180.34 39.37))
(stroke (width 0) (type default))
(uuid 54edfc83-684b-4f46-890c-30e3537b3aa7)
)
(wire (pts (xy 153.67 57.15) (xy 157.48 57.15))
(stroke (width 0) (type default))
(uuid 55d43831-6f0d-478e-8dea-8b99bc196ba9)
)
(wire (pts (xy 180.34 39.37) (xy 180.34 46.99))
(stroke (width 0) (type default))
(uuid 58b1964d-aa9e-41bb-b73b-1e209b6b832c)
)
(wire (pts (xy 95.25 153.67) (xy 96.52 153.67))
(stroke (width 0) (type default))
(uuid 5a3af80e-ea0c-4967-9e65-878e7502df39)
)
(wire (pts (xy 143.51 161.29) (xy 143.51 167.64))
(stroke (width 0) (type default))
(uuid 60c5b7d1-da2e-4dd4-9b48-0589ef39da12)
)
(wire (pts (xy 161.29 39.37) (xy 180.34 39.37))
(stroke (width 0) (type default))
(uuid 675964f8-2b0d-4b4b-b7ad-cb06755e484a)
)
(wire (pts (xy 68.58 167.64) (xy 68.58 161.29))
(stroke (width 0) (type default))
(uuid 681b474a-5f82-4bc0-80af-b051d457f3d8)
)
(wire (pts (xy 114.3 146.05) (xy 119.38 146.05))
(stroke (width 0) (type default))
(uuid 6ee976c1-fdb7-485e-b967-429cb71bdbd6)
)
(wire (pts (xy 96.52 63.5) (xy 91.44 63.5))
(stroke (width 0) (type default))
(uuid 75c4d63a-1438-4192-823f-3e06ed390c24)
)
(wire (pts (xy 180.34 64.77) (xy 180.34 62.23))
(stroke (width 0) (type default))
(uuid 7b3c9c2a-a275-4102-9acc-8915ba795f85)
)
(wire (pts (xy 66.04 146.05) (xy 68.58 146.05))
(stroke (width 0) (type default))
(uuid 7d768c12-9494-4aba-a886-6f44317830f0)
)
(wire (pts (xy 170.18 80.01) (xy 170.18 81.28))
(stroke (width 0) (type default))
(uuid 7ddbafa3-0ee4-4927-ab99-8975ce8bebb7)
)
(wire (pts (xy 170.18 72.39) (xy 170.18 69.85))
(stroke (width 0) (type default))
(uuid 7e4fff99-3dbd-4eb7-874d-d93f9de5e8d4)
)
(wire (pts (xy 91.44 63.5) (xy 91.44 66.04))
(stroke (width 0) (type default))
(uuid 88b73a55-ee9a-4906-a30e-b9bd7151378a)
)
(wire (pts (xy 149.86 146.05) (xy 143.51 146.05))
(stroke (width 0) (type default))
(uuid 8a129287-0ed2-4622-a5fb-df5fe47d3502)
)
(wire (pts (xy 114.3 146.05) (xy 114.3 143.51))
(stroke (width 0) (type default))
(uuid 92c4a1e8-20de-465f-b728-820bcff804d5)
)
(wire (pts (xy 91.44 76.2) (xy 91.44 73.66))
(stroke (width 0) (type default))
(uuid 93cefdb9-33a4-402f-ae81-35859f6ff524)
)
(wire (pts (xy 113.03 146.05) (xy 113.03 156.21))
(stroke (width 0) (type default))
(uuid 974a8369-b44c-4b82-8926-539c459a1173)
)
(wire (pts (xy 80.01 143.51) (xy 85.09 143.51))
(stroke (width 0) (type default))
(uuid 9b3989c0-0035-4bd2-8f97-aa67b5d1efff)
)
(wire (pts (xy 80.01 146.05) (xy 80.01 143.51))
(stroke (width 0) (type default))
(uuid 9c56e1ce-cafb-43ea-8a01-83313312393b)
)
(wire (pts (xy 85.09 146.05) (xy 80.01 146.05))
(stroke (width 0) (type default))
(uuid a5847005-c8f3-492a-a8bd-dd408e8651c1)
)
(wire (pts (xy 201.93 52.07) (xy 201.93 50.8))
(stroke (width 0) (type default))
(uuid accf4e8b-2d16-4666-830a-bc8a78ebc616)
)
(wire (pts (xy 119.38 156.21) (xy 119.38 157.48))
(stroke (width 0) (type default))
(uuid b7993026-71b5-4d11-b155-deaa4d36f78a)
)
(wire (pts (xy 119.38 147.32) (xy 119.38 146.05))
(stroke (width 0) (type default))
(uuid c0e1e199-f132-4930-9f89-37a623dfb703)
)
(wire (pts (xy 166.37 69.85) (xy 170.18 69.85))
(stroke (width 0) (type default))
(uuid c36f98c8-43eb-4d36-b4b2-90b20b03b02a)
)
(wire (pts (xy 91.44 50.8) (xy 91.44 53.34))
(stroke (width 0) (type default))
(uuid c3ae71f8-12a5-4488-ae30-ce421d852c27)
)
(wire (pts (xy 68.58 167.64) (xy 96.52 167.64))
(stroke (width 0) (type default))
(uuid c9cadbd0-a868-410c-ac8d-9f8f38eb66cf)
)
(wire (pts (xy 96.52 153.67) (xy 97.79 153.67))
(stroke (width 0) (type default))
(uuid cf3a242c-7b0f-4dff-b3ca-4a24654861de)
)
(wire (pts (xy 68.58 153.67) (xy 68.58 146.05))
(stroke (width 0) (type default))
(uuid d0bbebb3-4603-4a93-a267-5c715a7ed486)
)
(wire (pts (xy 153.67 58.42) (xy 153.67 57.15))
(stroke (width 0) (type default))
(uuid d3b5d25f-e858-420f-a3b4-088ac00fa799)
)
(wire (pts (xy 114.3 143.51) (xy 105.41 143.51))
(stroke (width 0) (type default))
(uuid d4e00216-44c1-4d5b-b4e8-8937a3d6fb3f)
)
(wire (pts (xy 161.29 49.53) (xy 161.29 48.26))
(stroke (width 0) (type default))
(uuid d823af48-0974-4790-a9cc-3a7a7b3024a6)
)
(wire (pts (xy 143.51 146.05) (xy 143.51 153.67))
(stroke (width 0) (type default))
(uuid d82401c4-311a-4471-988f-5770e61d5143)
)
(wire (pts (xy 113.03 156.21) (xy 119.38 156.21))
(stroke (width 0) (type default))
(uuid e10ae85b-5c0b-44e5-8a55-97af4f63e3d3)
)
(wire (pts (xy 233.68 138.43) (xy 233.68 137.16))
(stroke (width 0) (type default))
(uuid e8eca0f0-f7c6-47f8-ae27-c01902d415cd)
)
(wire (pts (xy 105.41 146.05) (xy 113.03 146.05))
(stroke (width 0) (type default))
(uuid e973f0d0-e7b5-46a5-a408-c60b386e3482)
)
(wire (pts (xy 180.34 76.2) (xy 180.34 74.93))
(stroke (width 0) (type default))
(uuid eb2aa6fb-e831-47ff-abe1-58f9011681e5)
)
(wire (pts (xy 247.65 138.43) (xy 247.65 137.16))
(stroke (width 0) (type default))
(uuid ee711057-c9de-48fd-8eb7-ebb1ad42e6a0)
)
(text "1%" (at 92.71 71.12 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0e4a40ce-bf28-464c-bd3d-df10de588665)
)
(text "1%" (at 162.56 60.96 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5113a151-aec2-4c03-a436-dc00d457a616)
)
(text "1%" (at 92.71 58.42 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 94f5acb0-7a49-43f6-badc-3dbff4744a0e)
)
(global_label "VDD_3.3" (shape input) (at 152.4 144.78 0) (fields_autoplaced)
(effects (font (size 1 1) (color 255 149 14 1)) (justify left))
(uuid 6f26e59d-1e31-47dc-afbd-f55525d3af1e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 160.6879 144.78 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "CHARGER_EN" (shape input) (at 156.21 69.85 180) (fields_autoplaced)
(effects (font (size 1 1) (color 255 64 116 1)) (justify right))
(uuid ea1b0add-12cb-4bb7-9083-a81c1578b034)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 144.3983 69.85 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "V_SENSE" (shape input) (at 96.52 63.5 0) (fields_autoplaced)
(effects (font (size 1 1) (color 45 41 255 1)) (justify left))
(uuid fdf2d310-29ec-47b2-8e17-4c6846a1454f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 105.1889 63.5 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "Device:R") (at 161.29 57.15 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0ccde7e4-e7fa-4e98-b249-333028419c29)
(property "Reference" "R10" (at 162.56 54.61 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2.2k" (at 163.83 57.15 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 161.29 58.928 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 161.29 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9a2d4ac0-7642-44e2-8909-c68d40458c76))
(pin "2" (uuid 23f1ad9b-3644-4a8b-a7b6-c437a3926ce4))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/c154b5b2-471f-4841-9f7b-1b5cd7b6a168"
(reference "R10") (unit 1)
)
)
)
)
(symbol (lib_id "power:+BATT") (at 91.44 50.8 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0dec8a68-82ef-4905-b97f-8badd1cb560d)
(property "Reference" "#PWR045" (at 91.44 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+BATT" (at 91.44 46.99 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 91.44 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 91.44 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b80223af-9141-4a99-a7ff-87ac0131c382))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/c154b5b2-471f-4841-9f7b-1b5cd7b6a168"
(reference "#PWR045") (unit 1)
)
)
)
)
(symbol (lib_id "Simulation_SPICE:NMOS") (at 177.8 69.85 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 27463048-7932-4e28-88c3-a915a504a9d0)
(property "Reference" "Q1" (at 184.15 69.215 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BSS214" (at 184.15 71.755 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-323_SC-70" (at 182.88 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://ngspice.sourceforge.io/docs/ngspice-manual.pdf" (at 177.8 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "NMOS" (at 177.8 86.995 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Type" "VDMOS" (at 177.8 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=D 2=G 3=S" (at 177.8 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 561083d7-965e-46af-b96a-b5b401c9bc86))
(pin "2" (uuid 7cf11606-b1c5-4922-a7ce-37b513d941f9))
(pin "3" (uuid 1a6c731e-6fad-491c-9663-96d12be6ed45))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/c154b5b2-471f-4841-9f7b-1b5cd7b6a168"
(reference "Q1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 119.38 151.13 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2b77ade2-376a-4500-8c4e-111596f79eb9)
(property "Reference" "R25" (at 121.92 150.495 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "162k 1%" (at 121.92 153.035 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 117.602 151.13 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 119.38 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 05f8914e-9acb-4989-963a-3a9cf58e3044))