-
Notifications
You must be signed in to change notification settings - Fork 14
/
esp32.kicad_sch
2315 lines (2263 loc) · 91.6 KB
/
esp32.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 a5dfaf18-d33f-45c4-b76f-2a5051ec9118)
(paper "A4")
(title_block
(title "MCH2022 badge - ESP32 microcontroller")
(date "2022-04-24")
(rev "Final")
(company "BADGE.TEAM")
(comment 1 "License: CERN Open Hardware Licence Version 2 - Permissive")
(comment 2 "Contact: [email protected]")
(comment 3 "Website: mch2022.org / badge.team")
(comment 4 "Event badge for May Contain Hackers 2022")
)
(lib_symbols
(symbol "mch2021-rescue:+3.3V-power" (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" "+3.3V-power" (id 1) (at 0 3.556 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)
)
(symbol "+3.3V-power_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 "+3.3V-power_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 "mch2021-rescue:C-Device" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C-Device" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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_fp_filters" "C_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C-Device_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C-Device_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 "mch2021-rescue:ESP32-WROVER-corelib" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -12.7 34.29 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "ESP32-WROVER-corelib" (id 1) (at 1.27 34.29 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "RF_Module:ESP32-WROOM-32" (id 2) (at 0 -38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -7.62 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "ESP32?WROOM?32*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ESP32-WROVER-corelib_0_1"
(rectangle (start -12.7 33.02) (end 12.7 -33.02)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "ESP32-WROVER-corelib_1_1"
(pin power_in line (at 0 -35.56 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
(name "IO25" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
(name "IO26" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -17.78 180) (length 2.54)
(name "IO27" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 10.16 180) (length 2.54)
(name "IO14" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 15.24 180) (length 2.54)
(name "IO12" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -35.56 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 12.7 180) (length 2.54)
(name "IO13" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -5.08 0) (length 2.54)
(name "SHD/SD2" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -7.62 0) (length 2.54)
(name "SWP/SD3" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -12.7 0) (length 2.54)
(name "SCS/CMD" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 35.56 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -10.16 0) (length 2.54)
(name "SCK/CLK" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 0 0) (length 2.54)
(name "SDO/SD0" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -2.54 0) (length 2.54)
(name "SDI/SD1" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 2.54)
(name "IO15" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 25.4 180) (length 2.54)
(name "IO2" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 30.48 180) (length 2.54)
(name "IO0" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 20.32 180) (length 2.54)
(name "IO4" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 15.24 5.08 180) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 15.24 2.54 180) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 17.78 180) (length 2.54)
(name "IO5" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 30.48 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 0 180) (length 2.54)
(name "IO18" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
(name "IO19" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 -27.94 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
(name "IO21" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 22.86 180) (length 2.54)
(name "RXD0/IO3" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 27.94 180) (length 2.54)
(name "TXD0/IO1" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
(name "IO22" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
(name "IO23" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -35.56 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 -22.86 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 25.4 0) (length 2.54)
(name "SENSOR_VP" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 22.86 0) (length 2.54)
(name "SENSOR_VN" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -25.4 180) (length 2.54)
(name "IO34" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -27.94 180) (length 2.54)
(name "IO35" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -20.32 180) (length 2.54)
(name "IO32" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -22.86 180) (length 2.54)
(name "IO33" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "mch2021-rescue:GND-power" (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-power" (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)
)
(symbol "GND-power_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-power_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 "mch2021-rescue:Micro_SD_Card-Connector" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -16.51 15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Micro_SD_Card-Connector" (id 1) (at 16.51 15.24 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 29.21 7.62 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_fp_filters" "microSD*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Micro_SD_Card-Connector_0_1"
(rectangle (start -7.62 -9.525) (end -5.08 -10.795)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -7.62 -6.985) (end -5.08 -8.255)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -7.62 -4.445) (end -5.08 -5.715)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -7.62 -1.905) (end -5.08 -3.175)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -7.62 0.635) (end -5.08 -0.635)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -7.62 3.175) (end -5.08 1.905)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -7.62 5.715) (end -5.08 4.445)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -7.62 8.255) (end -5.08 6.985)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 16.51 12.7)
(xy 16.51 13.97)
(xy -19.05 13.97)
(xy -19.05 -16.51)
(xy 16.51 -16.51)
(xy 16.51 -11.43)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -8.89 -11.43)
(xy -8.89 8.89)
(xy -1.27 8.89)
(xy 2.54 12.7)
(xy 3.81 12.7)
(xy 3.81 11.43)
(xy 6.35 11.43)
(xy 7.62 12.7)
(xy 20.32 12.7)
(xy 20.32 -11.43)
(xy -8.89 -11.43)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "Micro_SD_Card-Connector_1_1"
(pin bidirectional line (at -22.86 7.62 0) (length 3.81)
(name "DAT2" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -22.86 5.08 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 2.54 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 0 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 -2.54 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 -5.08 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 -7.62 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 -10.16 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 20.32 -15.24 180) (length 3.81)
(name "SHIELD" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "mch2021-rescue:R-Device" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R-Device" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(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_fp_filters" "R_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R-Device_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R-Device_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))))
)
)
)
)
(junction (at 218.44 35.56) (diameter 0) (color 0 0 0 0)
(uuid 06fb8a5e-69f3-44ca-bc88-4da9a1408625)
)
(junction (at 220.98 20.32) (diameter 0) (color 0 0 0 0)
(uuid 10df6e07-cc84-4b25-a71b-19a35b4b40da)
)
(junction (at 218.44 20.32) (diameter 0) (color 0 0 0 0)
(uuid 25c0c83a-69e4-4bb3-a4ba-e35ba5e17f0f)
)
(junction (at 98.552 43.18) (diameter 0) (color 0 0 0 0)
(uuid 3497045f-d218-47c9-8fd1-2d0a39585aa6)
)
(junction (at 213.36 20.32) (diameter 0) (color 0 0 0 0)
(uuid 41e442c4-3daa-4776-bd79-7990c939b354)
)
(junction (at 52.832 38.1) (diameter 0) (color 0 0 0 0)
(uuid 4ff71e44-dddb-450e-9f6f-fe3947968fd4)
)
(junction (at 226.06 20.32) (diameter 0) (color 0 0 0 0)
(uuid 52da99c6-c348-4007-8828-51a963a2879f)
)
(junction (at 106.172 53.34) (diameter 0) (color 0 0 0 0)
(uuid 56801e6d-c4ab-4f7b-8289-2119a52fa227)
)
(junction (at 223.52 20.32) (diameter 0) (color 0 0 0 0)
(uuid 5c55c653-303a-4aa1-b520-46d1ee447caa)
)
(junction (at 213.36 45.72) (diameter 0) (color 0 0 0 0)
(uuid 5da519c8-016f-4f2c-843d-d8fc54aa43f1)
)
(junction (at 113.792 60.96) (diameter 0) (color 0 0 0 0)
(uuid 6476e233-d260-45fe-84d2-9ade7d0003a0)
)
(junction (at 98.552 38.1) (diameter 0) (color 0 0 0 0)
(uuid 84315919-677c-4909-a747-2c92c96d5870)
)
(junction (at 215.9 20.32) (diameter 0) (color 0 0 0 0)
(uuid a1441258-3477-4706-8540-9e88ae0dac49)
)
(junction (at 129.032 76.2) (diameter 0) (color 0 0 0 0)
(uuid c2d24be9-0a91-4ad8-a6f8-4f606bd871ac)
)
(junction (at 121.412 73.66) (diameter 0) (color 0 0 0 0)
(uuid c78d97f4-1d1b-46c3-bcbb-8424944a8978)
)
(junction (at 62.992 38.1) (diameter 0) (color 0 0 0 0)
(uuid e3877396-3ff6-4b1d-9715-0d1a70961579)
)
(junction (at 215.9 40.64) (diameter 0) (color 0 0 0 0)
(uuid ea7f95ca-1368-4ccc-b3c5-17a85c05a2dd)
)
(junction (at 151.892 93.98) (diameter 0) (color 0 0 0 0)
(uuid f8278ad5-6ca5-461c-9b25-4c719cca7061)
)
(junction (at 156.21 38.1) (diameter 0) (color 0 0 0 0)
(uuid fa66b770-2fa1-440a-a7a1-86d518c57627)
)
(no_connect (at 65.532 68.58) (uuid 059f4155-bed3-4fb2-9baa-d569f31b7e5d))
(no_connect (at 65.532 76.2) (uuid 338b7824-6fa7-42ef-b79a-c6dc90689f4e))
(no_connect (at 65.532 78.74) (uuid 3d0a8609-a059-4734-b988-da00f509164d))
(no_connect (at 65.532 73.66) (uuid 5a63aa46-8c18-43d5-8def-1c886562be17))
(no_connect (at 65.532 81.28) (uuid 7984c59d-64f6-424c-8273-5bab21ab292d))
(no_connect (at 96.012 66.04) (uuid 874dbaf8-adf6-4f01-81a0-e037bac53346))
(no_connect (at 65.532 71.12) (uuid 9d4bb085-5413-4cad-9765-4f916ffbe612))
(no_connect (at 96.012 63.5) (uuid ee80c1b4-78a3-4713-a7cd-fc09dd9d2b28))
(wire (pts (xy 156.21 38.1) (xy 158.242 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 028289ab-153c-4eaf-a4b9-2c0c87f40e7f)
)
(wire (pts (xy 45.212 43.18) (xy 65.532 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07838c19-bdee-4759-9a7b-a62a5deb9737)
)
(polyline (pts (xy 88.392 92.71) (xy 93.472 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08fa8ff6-09a7-484c-b1d9-0e3b7c49bb26)
)
(polyline (pts (xy 79.502 41.91) (xy 79.502 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a2d185c-629f-461f-8b6b-f91f1894e6ba)
)
(wire (pts (xy 151.892 93.98) (xy 158.242 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0beabe83-df24-4956-ad54-548123285ceb)
)
(wire (pts (xy 52.832 38.1) (xy 62.992 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 138f5600-7fba-4219-9f21-9ce4066a1d82)
)
(wire (pts (xy 227.33 33.02) (xy 220.98 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1416f46f-efcf-4c99-81af-d39cf81f2652)
)
(polyline (pts (xy 79.502 46.99) (xy 68.072 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17adff9d-c581-42e4-b552-035b922b5256)
)
(wire (pts (xy 96.012 55.88) (xy 158.242 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b8d5810-67b5-41f5-a4e9-e6c2cc9fec50)
)
(wire (pts (xy 96.012 76.2) (xy 129.032 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c57f8a5-0a6c-44cd-b514-5b9d5f8cc98b)
)
(wire (pts (xy 96.012 50.8) (xy 158.242 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24fbbd33-4896-414c-ba79-167809dd0e90)
)
(wire (pts (xy 96.012 60.96) (xy 113.792 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2628b16a-8b1e-4398-be45-c147110e73bb)
)
(wire (pts (xy 227.33 38.1) (xy 226.06 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2952439a-4d93-45a3-a998-2b2fce2c5fe9)
)
(wire (pts (xy 223.52 20.32) (xy 226.06 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 296b967f-b7a9-453f-856a-7b874fdca3db)
)
(wire (pts (xy 96.012 78.74) (xy 158.242 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2aa21f9e-73e7-40d1-a630-0290bc6939b1)
)
(wire (pts (xy 222.25 43.18) (xy 222.25 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2aabebab-10c6-4637-946b-cda31980f550)
)
(wire (pts (xy 80.772 106.68) (xy 80.772 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b1a1d99-4ea2-4cae-846a-5609aadc4265)
)
(wire (pts (xy 96.012 48.26) (xy 158.242 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2be498d5-e7b2-4098-b853-d60412f65c3b)
)
(wire (pts (xy 210.82 21.59) (xy 210.82 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c3d5c2f-c119-4276-9b7e-33808f1d9396)
)
(wire (pts (xy 52.832 60.96) (xy 52.832 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f8dfa45-14b0-4de4-b3b0-e7b73da81a0a)
)
(polyline (pts (xy 88.392 97.79) (xy 88.392 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 321eb03e-d5d7-4c98-9326-4c49d56670ae)
)
(wire (pts (xy 121.412 34.29) (xy 121.412 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33b48673-c959-4510-b6fa-fd3f7bdb00fd)
)
(wire (pts (xy 62.992 91.44) (xy 62.992 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bc24d10-b3eb-4abe-836d-a8521ccc4341)
)
(wire (pts (xy 227.33 30.48) (xy 223.52 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3eff8f32-349a-4846-b484-abdc036c7174)
)
(wire (pts (xy 96.012 93.98) (xy 151.892 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4221b138-87b6-4073-a6e3-acb41ba2e601)
)
(wire (pts (xy 222.25 43.18) (xy 227.33 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42795956-f125-4166-860d-4316fe3791b8)
)
(wire (pts (xy 215.9 20.32) (xy 213.36 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 430cb5a0-6865-46d0-be60-5d722d3e8d80)
)
(wire (pts (xy 210.82 20.32) (xy 213.36 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46255620-16a2-4e81-9e4a-58dddcf89388)
)
(wire (pts (xy 210.82 29.21) (xy 210.82 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 471f517c-6d52-459f-9d7a-aedf176fc9e0)
)
(wire (pts (xy 121.412 73.66) (xy 158.242 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b3cefd2-e7d7-4d25-8bb9-37548c3e8b03)
)
(wire (pts (xy 218.44 20.32) (xy 215.9 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d4c722c-847e-4f75-bf0d-16ad704831ef)
)
(wire (pts (xy 113.792 60.96) (xy 158.242 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 504b138d-cda6-48ea-a44b-2c0d0cf874fc)
)
(wire (pts (xy 213.36 29.21) (xy 213.36 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50cd7dd2-4ee6-4ead-a8d7-6798eb55f8db)
)
(wire (pts (xy 158.242 35.814) (xy 156.21 35.814))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58e0cb2e-b255-4d37-be8a-e6902a521a65)
)
(wire (pts (xy 223.52 20.32) (xy 220.98 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a5b7060-983c-4989-878e-3126720e998d)
)
(wire (pts (xy 213.36 45.72) (xy 227.33 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d00cbc9-46cb-472e-b705-59da8e971192)
)
(wire (pts (xy 215.9 29.21) (xy 215.9 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f4676ff-2597-415d-a32e-98d53038f432)
)
(polyline (pts (xy 88.392 97.79) (xy 93.472 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65e58d89-f213-4051-b36b-7b3454867ad5)
)
(wire (pts (xy 98.552 43.18) (xy 158.242 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d401fdd-c1f6-4321-96c4-4843b6143be9)
)
(wire (pts (xy 208.28 45.72) (xy 213.36 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f52f85c-aac3-4a99-8226-7744ad08fdc3)
)
(wire (pts (xy 213.36 20.32) (xy 213.36 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 745a27e0-733b-4d2b-b0f0-d4c1457e893e)
)
(wire (pts (xy 96.012 81.28) (xy 158.242 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75f982a1-6ab8-4209-a4a8-58e41c3ce9c1)
)
(wire (pts (xy 226.06 38.1) (xy 226.06 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a25e2e8-d883-44ae-8207-1f946e50b1fa)
)
(wire (pts (xy 96.012 86.36) (xy 158.242 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ca09fd4-d48a-436a-8dbe-2bf5119efecb)
)
(wire (pts (xy 208.28 40.64) (xy 215.9 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83250ce3-cee5-48b2-8a3e-b1e7887d6a15)
)
(wire (pts (xy 45.212 45.72) (xy 65.532 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 833beff7-0439-4b25-8f23-ed949f699ed1)
)
(wire (pts (xy 98.552 38.1) (xy 156.21 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84282cc7-416d-48c2-ae9f-c0149b35065e)
)
(wire (pts (xy 218.44 35.56) (xy 227.33 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84e64de5-2809-4251-a45b-2b46d2cc79df)
)
(wire (pts (xy 65.532 91.44) (xy 62.992 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a0095e3-f64e-4bc6-8d5a-1cdcee192b11)
)
(wire (pts (xy 121.412 73.66) (xy 96.012 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e5a3783-142f-42f6-a215-d0f81a05c5c0)
)
(polyline (pts (xy 68.072 41.91) (xy 79.502 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e6e5f4d-6567-459b-ac23-dfc1d101e708)
)
(wire (pts (xy 96.012 53.34) (xy 106.172 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f2a6709-854c-4caf-959b-d289d2962128)
)
(wire (pts (xy 96.012 96.52) (xy 158.242 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 965bc598-5f52-4615-847f-179635cd5cde)
)
(wire (pts (xy 208.28 35.56) (xy 218.44 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9cd1ba63-2087-4000-a5a9-797dad78d993)
)
(wire (pts (xy 218.44 29.21) (xy 218.44 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ceeff0a-ae63-43da-8fd2-e3d57063537d)
)
(wire (pts (xy 62.992 33.02) (xy 62.992 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a17368fb-646b-4ffd-9057-0994609f8a46)
)
(wire (pts (xy 106.172 53.34) (xy 158.242 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a281de60-7af0-498c-be0b-24572e88b490)
)
(wire (pts (xy 98.552 43.18) (xy 96.012 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2d090b5-bdc2-4863-87f2-2ea46a246d3d)
)
(wire (pts (xy 45.212 38.1) (xy 52.832 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6d1221a-1077-412d-8a73-7025f9b4ca20)
)
(wire (pts (xy 129.032 76.2) (xy 158.242 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6d88d7d-92d8-4fc8-b103-7599e55f18c0)
)
(wire (pts (xy 271.78 54.61) (xy 271.78 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a97391c0-c438-44dc-aec7-4249e6f62568)
)
(wire (pts (xy 96.012 88.9) (xy 158.242 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa565413-e7e1-4f3c-8a91-55e3e0a6e3ef)
)
(wire (pts (xy 62.992 38.1) (xy 65.532 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad2d033c-4040-4813-b5da-82cf827f9d86)
)
(wire (pts (xy 223.52 30.48) (xy 223.52 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad8c2a20-27d0-4e2a-aabf-44a509bf342a)
)
(wire (pts (xy 129.032 34.29) (xy 129.032 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7013b78-ce5a-47df-9e6f-e993b6073985)
)
(wire (pts (xy 96.012 91.44) (xy 158.242 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b78bfc8f-0469-4499-ad41-c131461c3c5d)
)
(wire (pts (xy 215.9 40.64) (xy 227.33 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9272e8b-2d00-4d6b-ae8c-fd62ef331586)
)
(wire (pts (xy 210.82 48.26) (xy 227.33 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc007755-47dc-4b01-a9a3-8f34e8741895)
)
(wire (pts (xy 80.772 33.02) (xy 80.772 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc408f2c-2338-4a2e-9d30-e90fd4d4f487)
)
(wire (pts (xy 220.98 33.02) (xy 220.98 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2a5cbbc-a316-4826-81b8-a34d52b5eb58)
)
(wire (pts (xy 96.012 45.72) (xy 158.242 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2f8c49f-d49f-49e2-940a-a7b9765ffdf0)
)
(wire (pts (xy 220.98 21.59) (xy 220.98 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7699973-e377-4c8c-8edc-6474ca187ece)
)
(wire (pts (xy 96.012 58.42) (xy 158.242 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9dc1467-f8a9-424e-ab40-9eace7cb7fbb)
)
(wire (pts (xy 98.552 38.1) (xy 96.012 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd8c6c53-febf-40c1-af77-5373add0fde7)
)
(wire (pts (xy 271.78 53.34) (xy 270.51 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cdf69da0-bf1d-48b6-92e4-7b762bd4454d)
)
(wire (pts (xy 223.52 20.32) (xy 223.52 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ceb65f05-08ce-47e9-8a7e-aa1335099416)
)
(wire (pts (xy 156.21 35.814) (xy 156.21 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cee5152b-7e13-498e-811d-1d45b5f2bf53)
)
(wire (pts (xy 106.172 99.06) (xy 106.172 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf06bbbc-3fa0-42b7-9a99-642ec3689891)
)
(wire (pts (xy 96.012 71.12) (xy 158.242 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d52775ee-dd56-474f-8b5c-c66029880e5c)
)
(wire (pts (xy 96.012 68.58) (xy 158.242 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d90db84e-7df3-4d1b-b263-27f7c3991121)
)
(wire (pts (xy 98.552 99.06) (xy 98.552 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd552f19-e379-4dd5-a10b-882b6c8e7a65)
)
(wire (pts (xy 220.98 20.32) (xy 218.44 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e1b0380f-01af-4f4c-986f-502b633a3c03)
)
(wire (pts (xy 226.06 20.32) (xy 231.14 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e2743b78-cc59-458c-8fb0-4238f348a49f)
)
(wire (pts (xy 96.012 40.64) (xy 158.242 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb79b938-dc23-4503-beb0-3634b653c9e4)
)
(wire (pts (xy 151.892 34.29) (xy 151.892 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ecbf1a68-fc63-4122-8ccc-c4e83fc57cff)
)
(wire (pts (xy 218.44 20.32) (xy 218.44 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ed92ba08-98ec-48df-9584-41c899a43f78)
)
(wire (pts (xy 215.9 21.59) (xy 215.9 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eef9a49b-90d1-4463-b2c5-af035d3ae9d7)
)
(wire (pts (xy 98.552 34.29) (xy 98.552 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid efd79052-e146-4d61-9e0a-ba764a5a966b)
)
(wire (pts (xy 52.832 53.34) (xy 52.832 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f094eb5d-05c7-4c16-84d0-9d4665317bfb)
)
(wire (pts (xy 96.012 83.82) (xy 158.242 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f90afa04-a26c-4d51-804a-697011f7bd53)
)
(wire (pts (xy 113.792 99.06) (xy 113.792 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fdd41a68-206a-4076-b64a-8b7633d428d6)
)
(text "JTAG TMS" (at 98.425 58.42 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 1c4dfe58-85b1-467f-8e9d-bdb7a0d0ca8e)
)
(text "SD_D3" (at 107.315 55.88 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 224e8890-cdee-45fd-bd2e-64fe49c2de75)
)
(text "*" (at 92.075 43.18 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 3cf0233f-86e3-4b85-ad75-fb8a46f37498)
)
(text "SD_D1" (at 107.315 48.26 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 4612f9f0-1343-4ba7-94dd-7d3e9fc08dad)
)
(text "JTAG TCK" (at 98.425 55.88 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 481354ed-51b9-4db2-9835-781681979b4b)
)
(text "*" (at 92.075 60.96 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 594594ee-9de8-45bc-b621-a9251877b0c2)
)
(text "Input only" (at 75.565 41.91 0)
(effects (font (size 0.508 0.508)) (justify left bottom))
(uuid 6f13bfbf-7f19-4b33-9de2-b8c15c8c88ee)
)
(text "*" (at 92.075 38.1 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 77121855-7958-40c5-81ca-b386a811e84c)
)
(text "ESP32 microcontroller, SD card and audio output" (at 13.97 16.51 0)
(effects (font (size 2.0066 2.0066)) (justify left bottom))
(uuid 8aab4608-39e8-491a-83a8-7194f36094f1)
)
(text "*" (at 92.075 53.34 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 8cf4e6c7-f213-4dc6-a215-9a85d8791784)
)
(text "JTAG TDI" (at 98.425 53.34 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid 90912a07-8f0d-457a-b78a-1c112c8f2052)
)
(text "Input only" (at 88.265 97.79 90)
(effects (font (size 0.508 0.508)) (justify left bottom))
(uuid 9959c68a-7d2a-4f14-b245-3548992673f3)
)
(text "* Bootstrapping pins\nIO 0:Low for UART DL mode, pull high for normal boot\nIO 2: Pull down to select UART DL mode when GPIO 0 is LOW\nIO 12: Selects internal flash/ram voltage. Pull-up for 1.8v, pull-down for 3.3v\nIO 15: Pull down for silent bootloader"
(at 15.24 194.31 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d7de2887-c7b2-4bb7-a339-632f4f906224)
)
(text "JTAG TDO" (at 98.425 60.96 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid da7eee34-4516-4154-9034-7c9b8e2afe41)
)
(text "SD_D2" (at 107.315 53.34 0)
(effects (font (size 0.9906 0.9906)) (justify left bottom))
(uuid fe2b05f5-675b-44d0-956c-c5829b7c692a)
)
(global_label "SD_CMD" (shape output) (at 158.242 60.96 0) (fields_autoplaced)
(effects (font (size 0.9906 0.9906)) (justify left))
(uuid 462f8e7e-09c6-4676-ba4f-fd07b2868aa8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -11.938 -38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "SD_CLK" (shape output) (at 158.242 58.42 0) (fields_autoplaced)
(effects (font (size 0.9906 0.9906)) (justify left))
(uuid 666dc23c-d707-448f-841d-377a6e08a250)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -11.938 -38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "SD_CLK" (shape input) (at 208.28 40.64 180) (fields_autoplaced)
(effects (font (size 0.9906 0.9906)) (justify right))
(uuid 8a1a639a-559c-483d-9c99-1b2fafbdacf1)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "PWR_SDCARD" (shape input) (at 231.14 20.32 0) (fields_autoplaced)
(effects (font (size 0.889 0.889)) (justify left))
(uuid 8fa4f87a-9012-4f6f-a6c0-ec1c5f716184)