-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathSDCard.kicad_sch
936 lines (913 loc) · 32.1 KB
/
SDCard.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
(kicad_sch (version 20230121) (generator eeschema)
(uuid 9f52fa22-0e20-42b5-9ee4-277d84cde590)
(paper "A4")
(title_block
(title "SD card")
(date "2022-11-06")
(rev "1.3b")
(company "Nabu Casa")
(comment 1 "www.nabucasa.com")
(comment 2 "Yellow")
)
(lib_symbols
(symbol "Connector:Micro_SD_Card_Det" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -16.51 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Micro_SD_Card_Det" (at 16.51 17.78 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 52.07 17.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.hirose.com/product/en/download_file/key_name/DM3/category/Catalog/doc_file_id/49662/?file_category_id=4&item_id=195&is_series=1" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector SD microsd" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Micro SD Card Socket with card detection pins" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "microSD*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Micro_SD_Card_Det_0_1"
(rectangle (start -7.62 -6.985) (end -5.08 -8.255)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start -7.62 -4.445) (end -5.08 -5.715)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start -7.62 -1.905) (end -5.08 -3.175)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start -7.62 0.635) (end -5.08 -0.635)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start -7.62 3.175) (end -5.08 1.905)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start -7.62 5.715) (end -5.08 4.445)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start -7.62 8.255) (end -5.08 6.985)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start -7.62 10.795) (end -5.08 9.525)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 16.51 15.24)
(xy 16.51 16.51)
(xy -19.05 16.51)
(xy -19.05 -16.51)
(xy 16.51 -16.51)
(xy 16.51 -8.89)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -8.89 -8.89)
(xy -8.89 11.43)
(xy -1.27 11.43)
(xy 2.54 15.24)
(xy 3.81 15.24)
(xy 3.81 13.97)
(xy 6.35 13.97)
(xy 7.62 15.24)
(xy 20.32 15.24)
(xy 20.32 -8.89)
(xy -8.89 -8.89)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "Micro_SD_Card_Det_1_1"
(pin bidirectional line (at -22.86 10.16 0) (length 3.81)
(name "DAT2" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -22.86 -10.16 0) (length 3.81)
(name "DET_A" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -12.7 180) (length 3.81)
(name "SHIELD" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -22.86 7.62 0) (length 3.81)
(name "DAT3/CD" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -22.86 5.08 0) (length 3.81)
(name "CMD" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -22.86 2.54 0) (length 3.81)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -22.86 0 0) (length 3.81)
(name "CLK" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -22.86 -2.54 0) (length 3.81)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -22.86 -5.08 0) (length 3.81)
(name "DAT0" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -22.86 -7.62 0) (length 3.81)
(name "DAT1" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -22.86 -12.7 0) (length 3.81)
(name "DET_B" (effects (font (size 1.27 1.27))))
(number "9" (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" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(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" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default))
(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 "Yellow:RT9742GGJ5" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -5.08 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "RT9742GGJ5" (at 7.62 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 0 -21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-00.pdf" (at 0 -21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "RT9742GGJ5_0_0"
(pin power_out line (at 8.89 0 180) (length 2.54)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -8.89 0 0) (length 2.54)
(name "nFLG" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 2.54 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 10.16 270) (length 2.54)
(name "IN" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
(symbol "RT9742GGJ5_0_1"
(rectangle (start -6.35 7.62) (end 6.35 -7.62)
(stroke (width 0) (type default))
(fill (type background))
)
)
)
(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" "power-flag" (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: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" "power-flag" (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))))
)
)
)
)
(junction (at 104.14 111.76) (diameter 0.9144) (color 0 0 0 0)
(uuid 3655f956-9a76-438c-8e5d-c0f5921a3841)
)
(junction (at 72.39 109.22) (diameter 0.9144) (color 0 0 0 0)
(uuid a66bd857-144e-4ab0-ab7a-3c10ed80cb1e)
)
(no_connect (at 82.55 111.76) (uuid a660a362-9801-42d2-86bf-7d2bfb8e1bbb))
(bus_entry (at 55.88 60.96) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 2def9f2b-c061-4ae6-8d28-8eca7e01d88f)
)
(bus_entry (at 55.88 106.68) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 5bddbdfa-67b7-4255-a23f-41c65a8c328a)
)
(bus_entry (at 55.88 73.66) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 7d6cff48-ad31-4845-81f9-754fdd7a6084)
)
(bus_entry (at 55.88 68.58) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid 99d8c222-dcc8-432b-a8c4-15df97fee525)
)
(bus_entry (at 55.88 63.5) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid a9fe1d6a-9247-4565-a554-1fb92b87547f)
)
(bus_entry (at 55.88 81.28) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid dc4d2f52-de89-4a82-9b33-12bf969a8d11)
)
(bus_entry (at 55.88 76.2) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid e2943c46-1f32-4804-b3d2-0e2d1834dc91)
)
(bus_entry (at 55.88 58.42) (size 2.54 2.54)
(stroke (width 0.1524) (type solid))
(uuid e4c8067d-a8e2-4fc9-b009-53c570478561)
)
(wire (pts (xy 100.33 111.76) (xy 104.14 111.76))
(stroke (width 0) (type solid))
(uuid 03e4a34a-d1f4-495f-9c7a-cc6725c51e55)
)
(bus (pts (xy 55.88 68.58) (xy 55.88 73.66))
(stroke (width 0) (type solid))
(uuid 081f2a84-8c08-4607-8a72-897bbd9af2f2)
)
(bus (pts (xy 55.88 81.28) (xy 55.88 106.68))
(stroke (width 0) (type solid))
(uuid 081f2a84-8c08-4607-8a72-897bbd9af2f3)
)
(bus (pts (xy 55.88 73.66) (xy 55.88 76.2))
(stroke (width 0) (type solid))
(uuid 081f2a84-8c08-4607-8a72-897bbd9af2f4)
)
(bus (pts (xy 55.88 76.2) (xy 55.88 81.28))
(stroke (width 0) (type solid))
(uuid 081f2a84-8c08-4607-8a72-897bbd9af2f5)
)
(bus (pts (xy 55.88 60.96) (xy 55.88 63.5))
(stroke (width 0) (type solid))
(uuid 081f2a84-8c08-4607-8a72-897bbd9af2f6)
)
(bus (pts (xy 55.88 63.5) (xy 55.88 68.58))
(stroke (width 0) (type solid))
(uuid 081f2a84-8c08-4607-8a72-897bbd9af2f7)
)
(bus (pts (xy 55.88 57.15) (xy 55.88 58.42))
(stroke (width 0) (type solid))
(uuid 081f2a84-8c08-4607-8a72-897bbd9af2f8)
)
(bus (pts (xy 55.88 58.42) (xy 55.88 60.96))
(stroke (width 0) (type solid))
(uuid 081f2a84-8c08-4607-8a72-897bbd9af2f9)
)
(wire (pts (xy 72.39 99.06) (xy 72.39 100.33))
(stroke (width 0) (type solid))
(uuid 1b56d021-78e2-49c3-86fb-792ee825ed10)
)
(wire (pts (xy 125.73 83.82) (xy 125.73 86.36))
(stroke (width 0) (type solid))
(uuid 1c2613de-4870-49e9-9815-8c37fb3b1637)
)
(wire (pts (xy 104.14 111.76) (xy 116.84 111.76))
(stroke (width 0) (type solid))
(uuid 209aa544-c6ff-4b7b-97dc-ce9ba1d3ae17)
)
(wire (pts (xy 58.42 76.2) (xy 80.01 76.2))
(stroke (width 0) (type solid))
(uuid 24cc4231-e999-4615-9fdb-8a5d6db3f30b)
)
(wire (pts (xy 58.42 71.12) (xy 80.01 71.12))
(stroke (width 0) (type solid))
(uuid 2b66f20d-de95-45a3-8419-c022eb0c9fde)
)
(wire (pts (xy 123.19 83.82) (xy 125.73 83.82))
(stroke (width 0) (type solid))
(uuid 40594a7c-7d4c-4006-a65d-86613984fb09)
)
(wire (pts (xy 72.39 105.41) (xy 72.39 109.22))
(stroke (width 0) (type solid))
(uuid 44be9e68-656b-4644-9466-1076e4fc3f7d)
)
(wire (pts (xy 58.42 63.5) (xy 80.01 63.5))
(stroke (width 0) (type solid))
(uuid 4b39a7aa-3ea5-4f63-a3ef-0a2a65bf2d31)
)
(wire (pts (xy 74.93 81.28) (xy 80.01 81.28))
(stroke (width 0) (type solid))
(uuid 6d89f6ea-e18c-41c4-9021-047c4ff0d8de)
)
(wire (pts (xy 69.85 68.58) (xy 80.01 68.58))
(stroke (width 0) (type solid))
(uuid 7b9dc0f3-2d20-4e19-8fde-690e1125eea8)
)
(wire (pts (xy 104.14 119.38) (xy 104.14 124.46))
(stroke (width 0) (type solid))
(uuid 89e2395a-b19b-4ad4-867a-51c84a0184e5)
)
(wire (pts (xy 58.42 78.74) (xy 80.01 78.74))
(stroke (width 0) (type solid))
(uuid a1226be5-6303-4ec0-a17b-2f7a40f56536)
)
(wire (pts (xy 58.42 83.82) (xy 67.31 83.82))
(stroke (width 0) (type solid))
(uuid b13b8867-c797-4440-b57b-0d3999940a9a)
)
(wire (pts (xy 80.01 73.66) (xy 77.47 73.66))
(stroke (width 0) (type solid))
(uuid b68249fd-bb21-4eee-be3a-6590322d7440)
)
(wire (pts (xy 91.44 99.06) (xy 91.44 101.6))
(stroke (width 0) (type solid))
(uuid c4f235a1-f64e-4227-a6a9-ebd113c7b151)
)
(wire (pts (xy 58.42 60.96) (xy 80.01 60.96))
(stroke (width 0) (type solid))
(uuid c5355fc9-1088-4191-b6bd-959323adba3e)
)
(wire (pts (xy 58.42 66.04) (xy 80.01 66.04))
(stroke (width 0) (type solid))
(uuid ca4125e0-305a-4fbc-94f8-293b2e35f7c4)
)
(wire (pts (xy 72.39 83.82) (xy 80.01 83.82))
(stroke (width 0) (type solid))
(uuid d2091a2c-2f3a-4c64-968f-3d72189cfc68)
)
(wire (pts (xy 104.14 111.76) (xy 104.14 114.3))
(stroke (width 0) (type solid))
(uuid e1b53635-80b7-490b-8926-5f2e2bd38c1b)
)
(wire (pts (xy 91.44 121.92) (xy 91.44 124.46))
(stroke (width 0) (type solid))
(uuid ebf6f842-52f8-4fdc-a06a-c0523137fd82)
)
(wire (pts (xy 58.42 109.22) (xy 72.39 109.22))
(stroke (width 0) (type solid))
(uuid f51cfca2-4454-4363-92c3-f238f0651690)
)
(wire (pts (xy 72.39 109.22) (xy 82.55 109.22))
(stroke (width 0) (type solid))
(uuid f51cfca2-4454-4363-92c3-f238f0651691)
)
(bus (pts (xy 53.34 57.15) (xy 55.88 57.15))
(stroke (width 0) (type solid))
(uuid f68525b0-ca3a-49ec-9781-c748c2a6992a)
)
(label "SD.D1" (at 59.69 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 08a7a078-73e1-4df6-8b89-728355e840f6)
)
(label "SD.CLK" (at 59.69 71.12 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 40faa345-400f-4d3c-ab3b-67224be80048)
)
(label "SD.CMD" (at 59.69 66.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 476333ac-a472-41c3-94ac-b0eb5d737986)
)
(label "SD_+3V3" (at 116.84 111.76 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 47c551c7-720e-4d94-940a-a11fc15f5668)
)
(label "SD.D2" (at 59.69 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6a456ffb-2cc3-4a6d-9f5c-886755383a77)
)
(label "SD.PWR" (at 67.31 109.22 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7be190f4-d359-44aa-9e63-0c673803d071)
)
(label "SD.DET" (at 59.69 83.82 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 95d3f5dc-dce6-4a2b-a814-0c416fd359df)
)
(label "SD.D0" (at 59.69 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c6979b14-07b2-4e5f-8e7c-e7599b74e271)
)
(label "SD.D3" (at 59.69 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c72200ba-634f-4444-9a56-578cb271c94b)
)
(label "SD_+3V3" (at 69.85 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fc770b6f-e512-40f5-81a0-8e16ad3bde21)
)
(hierarchical_label "SD{SD}" (shape bidirectional) (at 53.34 57.15 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 897f34cc-38d6-4a95-9649-f28c1c91228c)
)
(symbol (lib_id "Device:R_Small") (at 72.39 102.87 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0cc85d72-d8a5-4c7a-9558-d741ba5bb7fd)
(property "Reference" "R40" (at 74.93 101.6 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 74.93 104.14 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 72.39 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 72.39 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Config" "+SDCard" (at 77.47 106.68 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid 46732df8-1c10-4504-8e93-6983e6270b61))
(pin "2" (uuid 1e3a0ffe-2053-4abb-8047-b1c4053dac97))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "R40") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Micro_SD_Card_Det") (at 102.87 71.12 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2139362a-74c4-4abb-a86d-88efcc2a2b11)
(property "Reference" "J7" (at 85.09 53.34 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Micro_SD_Card_Det" (at 109.22 53.34 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_Card:microSD_HC_Molex_104031-0811" (at 154.94 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.hirose.com/product/en/download_file/key_name/DM3/category/Catalog/doc_file_id/49662/?file_category_id=4&item_id=195&is_series=1" (at 102.87 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Config" "+SDCard" (at 104.14 50.8 0)
(effects (font (size 1.27 1.27)))
)
(property "Manufacturer" "Molex" (at 102.87 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PartNumber" "104031-0811" (at 102.87 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2752b1a4-86ce-4d96-a398-462f3db22623))
(pin "10" (uuid 478920d1-6abb-47b3-a9a2-4a7160033781))
(pin "11" (uuid 593f9115-d4af-4ccf-b0be-e9095660df63))
(pin "2" (uuid 0629b38d-2abe-4e38-8811-4c1e02dde98e))
(pin "3" (uuid a5a3857e-832f-4a69-af64-ca395d0c0a41))
(pin "4" (uuid 2e92089c-1c56-43df-8c7d-b335d68f669f))
(pin "5" (uuid 56b6210b-50ad-423e-8063-4590200a0161))
(pin "6" (uuid 1d1127ed-5f49-4b0b-9148-a2c34d506aba))
(pin "7" (uuid 1c2aadbf-650b-48e2-9018-1f43579afe1a))
(pin "8" (uuid ad2953fa-c3fa-41d2-aca8-9685f6d1480c))
(pin "9" (uuid 463c6bfc-ab94-47a8-99de-8544c0b53c81))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "J7") (unit 1)
)
)
)
)
(symbol (lib_id "Yellow:RT9742GGJ5") (at 91.44 111.76 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 231e698e-ef39-4cba-a7bd-26a17d9db0c5)
(property "Reference" "U22" (at 85.09 102.87 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "RT9742GGJ5" (at 92.71 102.87 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 91.44 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-00.pdf" (at 91.44 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Config" "+SDCard" (at 97.79 100.33 0)
(effects (font (size 1.27 1.27)))
)
(property "Manufacturer" "Richtek USA" (at 91.44 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PartNumber" "RT9742GGJ5" (at 91.44 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f3e526af-91aa-4ae8-bd64-4af73f80fcb9))
(pin "2" (uuid 42968523-8a20-4099-bf53-ccf90f7d71b0))
(pin "3" (uuid 82710cd0-96d4-48b5-b976-498b776b7551))
(pin "4" (uuid 2440fef2-00a7-4ae4-b624-dae119ad8a1a))
(pin "5" (uuid bfffc02d-b400-4dcb-86a3-72e93a1a0ba4))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "U22") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_Small") (at 69.85 83.82 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 373fcc4a-3c8e-404b-9d19-ec794dcc77e4)
(property "Reference" "R39" (at 67.31 86.36 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 72.39 86.36 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 69.85 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 69.85 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Config" "DNP" (at 69.85 88.9 90)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid 4ad715ab-3dea-417c-a022-ffce18c223d3))
(pin "2" (uuid e662c1fc-2aea-4c8e-b223-6079a7eabbda))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "R39") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 91.44 124.46 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 40df9798-86a7-4025-b470-924cfbb6e236)
(property "Reference" "#PWR0151" (at 91.44 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 91.44 128.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 91.44 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 91.44 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 49fa6468-afe2-4e57-84a5-94a992a62936))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "#PWR0151") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 72.39 99.06 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6768938c-01e5-466e-aed5-9432d5d4e836)
(property "Reference" "#PWR0147" (at 72.39 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 73.66 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 72.39 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 72.39 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid eadd54a5-0805-4dce-a3c9-6d56256d64ea))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "#PWR0147") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 77.47 73.66 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid b0b6166e-78e3-4b8e-a240-1504e7f84876)
(property "Reference" "#PWR0149" (at 71.12 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 74.93 73.66 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 77.47 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 77.47 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fb515cd5-9a80-4275-a2e1-f708c762eafb))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "#PWR0149") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 74.93 81.28 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid d02bb5fa-8221-4984-a2df-a6e9c5d6f740)
(property "Reference" "#PWR0148" (at 78.74 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 71.12 81.28 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 74.93 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 74.93 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ac323edf-8a8a-4202-908a-8a76fc0a7761))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "#PWR0148") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 91.44 99.06 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid d177d053-f479-46ae-a1e3-bd43b6d13f24)
(property "Reference" "#PWR0150" (at 91.44 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 92.71 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 91.44 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 91.44 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ff8a2b4c-f04c-4dca-a308-1221133b295e))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "#PWR0150") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 125.73 86.36 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid e0105965-4822-4d70-b6cb-4fe67b0a2355)
(property "Reference" "#PWR0153" (at 125.73 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 125.73 90.17 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 125.73 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 125.73 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 838f8908-2080-4942-a84f-0ce2bacb0885))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "#PWR0153") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 104.14 116.84 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid e9a5777f-df06-4d95-b759-a9735a0efa7c)
(property "Reference" "C72" (at 106.68 115.57 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10u" (at 106.68 118.11 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 104.14 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Config" "+SDCard" (at 109.22 120.65 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid 3d80e544-76f1-44de-a854-e17a04115a6c))
(pin "2" (uuid baca65bf-62b2-4993-928a-27ac651df2a1))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "C72") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 104.14 124.46 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid f9262f2e-9d1b-4808-87d9-b093835512b1)
(property "Reference" "#PWR0152" (at 104.14 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 104.14 128.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 104.14 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 104.14 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e12c9523-df91-4b33-b3c8-9598208c2fdd))
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27/67ada73c-6692-4fd8-8c20-5be89f2b8650"
(reference "#PWR0152") (unit 1)
)
)
)
)
)