forked from wookey-project/hard-wookey-motherboard
-
Notifications
You must be signed in to change notification settings - Fork 7
/
cpu.sch
1307 lines (1307 loc) · 36.4 KB
/
cpu.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
EESchema Schematic File Version 4
LIBS:leia-cache
EELAYER 29 0
EELAYER END
$Descr A2 23386 16535
encoding utf-8
Sheet 5 5
Title "CW-LEIA"
Date "2016-28-20"
Rev "0.2"
Comp "ANSSI"
Comment1 "Designed by Mathieu RENARD"
Comment2 "LICENCE: CERN Open Hardware Licence v1.2"
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Device:R_Small R104
U 1 1 557FEF49
P 1450 5650
F 0 "R104" V 1530 5650 50 0000 C CNN
F 1 "470" V 1450 5650 50 0000 C CNN
F 2 "Resistor_SMD:R_0603_1608Metric" V 1380 5650 30 0001 C CNN
F 3 "" H 1450 5650 30 0000 C CNN
F 4 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 5 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 6 "1469815" H 0 0 50 0001 C CNN "Distrib PN"
F 7 "1469815" H 0 0 50 0001 C CNN "Distrib Part Num"
F 8 "Vishay" H 0 0 50 0001 C CNN "MFG Name"
F 9 "CRCW0603470RFKEA" H 0 0 50 0001 C CNN "MFG Part Num"
1 1450 5650
1 0 0 -1
$EndComp
Text Label 1550 4950 0 60 ~ 0
BOOT0
Text Label 1550 4750 0 60 ~ 0
BOOT1
$Comp
L Device:LED_ALT D111
U 1 1 557FF390
P 3500 5450
F 0 "D111" H 3500 5550 50 0000 C CNN
F 1 "LED GREEN" H 3500 5350 50 0000 C CNN
F 2 "LED_SMD:LED_0603_1608Metric_Castellated" H 3500 5450 60 0001 C CNN
F 3 "" H 3500 5450 60 0000 C CNN
F 4 "Vishay" H 3500 5450 50 0001 C CNN "MFG Name"
F 5 "VLMTG1300-GS08" H 3500 5450 50 0001 C CNN "MFG Part Num"
F 6 "2251490" H 3500 5450 50 0001 C CNN "Distrib PN"
F 7 "http://fr.farnell.com/vishay/vlmtg1300-gs08/led-0603-truevert/dp/2251490?st=VISHAY%20-%20LED,%20verte" H 3500 5450 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 3500 5450 50 0001 C CNN "Distrib"
F 9 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
1 3500 5450
0 -1 -1 0
$EndComp
$Comp
L Device:LED_ALT D110
U 1 1 557FF3FD
P 3150 5450
F 0 "D110" H 3150 5500 50 0000 C CNN
F 1 "LED BLUE" H 3150 5350 50 0000 C CNN
F 2 "LED_SMD:LED_0603_1608Metric_Castellated" H 3150 5450 60 0001 C CNN
F 3 "" H 3150 5450 60 0000 C CNN
F 4 "Vishay" H 3150 5450 50 0001 C CNN "MFG Name"
F 5 "VLMB1300-GS08" H 3150 5450 50 0001 C CNN "MFG Part Num"
F 6 "2251459" H 3150 5450 50 0001 C CNN "Distrib PN"
F 7 "http://fr.farnell.com/vishay/vlmb1300-gs08/led-0603-bleu-hautebrillant/dp/2251459?st=VLMB1300-GS08" H 3150 5450 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 3150 5450 50 0001 C CNN "Distrib"
F 9 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
1 3150 5450
0 -1 -1 0
$EndComp
Text Label 4200 4450 0 60 ~ 0
LED0_PC4
Text Label 4200 4250 0 60 ~ 0
LED1_PC5
$Comp
L Device:C_Small C521
U 1 1 55800B04
P 9400 3700
F 0 "C521" H 9425 3800 50 0000 L CNN
F 1 "100nF" H 9425 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 9438 3550 30 0001 C CNN
F 3 "" H 9400 3700 60 0000 C CNN
F 4 "Murata" H 9400 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 9400 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 9400 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C511
U 1 1 55800BE0
P 10900 3700
F 0 "C511" H 10925 3800 50 0000 L CNN
F 1 "100nF" H 10925 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 10938 3550 30 0001 C CNN
F 3 "" H 10900 3700 60 0000 C CNN
F 4 "Murata" H 10900 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 10900 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 10900 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C519
U 1 1 55800C1F
P 11200 3700
F 0 "C519" H 11225 3800 50 0000 L CNN
F 1 "100nF" H 11225 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 11238 3550 30 0001 C CNN
F 3 "" H 11200 3700 60 0000 C CNN
F 4 "Murata" H 11200 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 11200 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 11200 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C528
U 1 1 55800C61
P 11500 3700
F 0 "C528" H 11525 3800 50 0000 L CNN
F 1 "100nF" H 11525 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 11538 3550 30 0001 C CNN
F 3 "" H 11500 3700 60 0000 C CNN
F 4 "Murata" H 11500 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 11500 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 11500 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C550
U 1 1 55800C9D
P 11800 3700
F 0 "C550" H 11825 3800 50 0000 L CNN
F 1 "100nF" H 11825 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 11838 3550 30 0001 C CNN
F 3 "" H 11800 3700 60 0000 C CNN
F 4 "Murata" H 11800 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 11800 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 11800 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C575
U 1 1 55800DC9
P 12100 3700
F 0 "C575" H 12125 3800 50 0000 L CNN
F 1 "100nF" H 12125 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 12138 3550 30 0001 C CNN
F 3 "" H 12100 3700 60 0000 C CNN
F 4 "Murata" H 12100 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 12100 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 12100 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C500
U 1 1 55800E2A
P 12400 3700
F 0 "C500" H 12425 3800 50 0000 L CNN
F 1 "100nF" H 12425 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 12438 3550 30 0001 C CNN
F 3 "" H 12400 3700 60 0000 C CNN
F 4 "Murata" H 12400 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 12400 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 12400 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C506
U 1 1 55800ED5
P 12900 3700
F 0 "C506" H 12925 3800 50 0000 L CNN
F 1 "100nF" H 12925 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 12938 3550 30 0001 C CNN
F 3 "" H 12900 3700 60 0000 C CNN
F 4 "Murata" H 12900 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 12900 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 12900 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C522
U 1 1 5580104D
P 9850 3700
F 0 "C522" H 9875 3800 50 0000 L CNN
F 1 "100nF" H 9875 3600 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 9888 3550 30 0001 C CNN
F 3 "" H 9850 3700 60 0000 C CNN
F 4 "Murata" H 9850 3700 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 9850 3700 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 9850 3700
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C573
U 1 1 55802948
P 11900 11400
F 0 "C573" H 11925 11500 50 0000 L CNN
F 1 "2.2uF" H 11925 11300 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 11938 11250 30 0001 C CNN
F 3 "" H 11900 11400 60 0000 C CNN
F 4 "Murata" H 11900 11400 50 0001 C CNN "MFG Name"
F 5 "GRM188R61C225KE15D" H 11900 11400 50 0001 C CNN "MFG Part Num"
F 6 "1735526" H 11900 11400 50 0001 C CNN "Distrib PN"
F 7 "http://fr.farnell.com/murata/grm188r61c225ke15d/condensateur-mlcc-x5r-2-2uf-16v/dp/1735526?st=2,2uF%200603%20murata" H 11900 11400 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 11900 11400 50 0001 C CNN "Distrib"
F 9 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
1 11900 11400
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C549
U 1 1 558029A0
P 11200 11400
F 0 "C549" H 11225 11500 50 0000 L CNN
F 1 "2.2uF" H 11225 11300 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 11238 11250 30 0001 C CNN
F 3 "" H 11200 11400 60 0000 C CNN
F 4 "Murata" H 11200 11400 50 0001 C CNN "MFG Name"
F 5 "GRM188R61C225KE15D" H 11200 11400 50 0001 C CNN "MFG Part Num"
F 6 "1735526" H 11200 11400 50 0001 C CNN "Distrib PN"
F 7 "http://fr.farnell.com/murata/grm188r61c225ke15d/condensateur-mlcc-x5r-2-2uf-16v/dp/1735526?st=2,2uF%200603%20murata" H 11200 11400 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 11200 11400 50 0001 C CNN "Distrib"
F 9 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
1 11200 11400
1 0 0 -1
$EndComp
Text Label 8850 5750 0 60 ~ 0
BOOT0
Text Label 8850 9300 0 60 ~ 0
BOOT1
$Comp
L Device:R_Small R514
U 1 1 5580630F
P 7950 4900
F 0 "R514" V 8030 4900 50 0000 C CNN
F 1 "10K" V 7950 4900 50 0000 C CNN
F 2 "Resistor_SMD:R_0603_1608Metric" V 7880 4900 30 0001 C CNN
F 3 "" H 7950 4900 30 0000 C CNN
F 4 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 5 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 6 "1738918" H 0 0 50 0001 C CNN "Distrib PN"
F 7 "1738918" H 0 0 50 0001 C CNN "Distrib Part Num"
F 8 "Vishay" H 0 0 50 0001 C CNN "MFG Name"
F 9 "CRCW060310K0FKEAHP" H 0 0 50 0001 C CNN "MFG Part Num"
1 7950 4900
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C514
U 1 1 55806383
P 7950 5450
F 0 "C514" H 7975 5550 50 0000 L CNN
F 1 "100nF" H 7975 5350 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 7988 5300 30 0001 C CNN
F 3 "" H 7950 5450 60 0000 C CNN
F 4 "Murata" H 7950 5450 50 0001 C CNN "MFG Name"
F 5 "GRM188R71H104KA93D" H 7950 5450 50 0001 C CNN "MFG Part Num"
F 6 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 7 "https://fr.farnell.com/murata/grm188r71h104ka93d/condensateur-0-1-f-50v-10-x7r/dp/8820023?st=GRM188R71H104KA93D" H 0 0 50 0001 C CNN "Distrib Link"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 9 "8820023" H 0 0 50 0001 C CNN "Distrib PN"
1 7950 5450
1 0 0 -1
$EndComp
$Comp
L Switch:SW_Push SW514
U 1 1 55806494
P 7650 5400
F 0 "SW514" H 7800 5510 50 0000 C CNN
F 1 "RESET" H 7650 5320 50 0000 C CNN
F 2 "leia:KSR_TACTILE_SWITCH" H 7650 5400 60 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1780692.pdf" H 7650 5400 60 0001 C CNN
F 4 "C & K COMPONENTS" H 7650 5400 60 0001 C CNN "MFG Name"
F 5 "KSR231G LFS" H 7650 5400 60 0001 C CNN "MFG Part Num"
F 6 "1201422" H 7650 5400 60 0001 C CNN "Distrib PN"
F 7 "Farnell" H 7650 5400 50 0001 C CNN "Distrib"
F 8 "http://fr.farnell.com/c-k-components/ksr231g-lfs/tactile-commutateur-miniature/dp/1201422" H 7650 5400 60 0001 C CNN "Distrib Link"
F 9 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
1 7650 5400
0 -1 1 0
$EndComp
Text Label 7000 5100 0 60 ~ 0
NRST
Text Label 13250 9500 0 60 ~ 0
LED0_PC4
Text Label 13250 9600 0 60 ~ 0
LED1_PC5
Text Label 8850 7300 0 60 ~ 0
UART4_TX_PA0
Text Label 8850 7400 0 60 ~ 0
UART4_RX_PA1
Text Label 8850 7500 0 60 ~ 0
UART2_CARD_IO
Text Label 8850 7700 0 60 ~ 0
UART2_CARD_CLK
NoConn ~ 9650 8100
Text Label 8850 8200 0 60 ~ 0
USB_FS_VBUS
Text Label 8850 8400 0 60 ~ 0
USB_FS_D-
Text Label 8850 8500 0 60 ~ 0
USB_FS_D+
Text Label 8850 8600 0 60 ~ 0
TMS
Text Label 8850 8700 0 60 ~ 0
TCK
Text Label 8850 9700 0 60 ~ 0
UART1_TX_PB6
Text Label 8850 9800 0 60 ~ 0
UART1_RX_PB7
$Comp
L Connector_Generic:Conn_01x01 P546
U 1 1 5583C8AD
P 13750 7000
F 0 "P546" H 13900 7000 50 0000 C CNN
F 1 "TP8" H 14100 7000 50 0000 C CNN
F 2 "TestPoint:TestPoint_Pad_D1.0mm" H 13750 7000 60 0001 C CNN
F 3 "" H 13750 7000 60 0000 C CNN
1 13750 7000
1 0 0 -1
$EndComp
$Comp
L Connector_Generic:Conn_01x01 P545
U 1 1 5583D0AD
P 13750 6900
F 0 "P545" H 13900 6900 50 0000 C CNN
F 1 "TP7" H 14100 6900 50 0000 C CNN
F 2 "TestPoint:TestPoint_Pad_D1.0mm" H 13750 6900 60 0001 C CNN
F 3 "" H 13750 6900 60 0000 C CNN
1 13750 6900
1 0 0 -1
$EndComp
$Comp
L Connector_Generic:Conn_01x01 P543
U 1 1 5583D1A9
P 13750 6700
F 0 "P543" H 13900 6700 50 0000 C CNN
F 1 "TP5" H 14100 6700 50 0000 C CNN
F 2 "TestPoint:TestPoint_Pad_D1.0mm" H 13750 6700 60 0001 C CNN
F 3 "" H 13750 6700 60 0000 C CNN
1 13750 6700
1 0 0 -1
$EndComp
$Comp
L Connector_Generic:Conn_01x01 P542
U 1 1 5583D229
P 13750 6600
F 0 "P542" H 13900 6600 50 0000 C CNN
F 1 "TP4" H 14100 6600 50 0000 C CNN
F 2 "TestPoint:TestPoint_Pad_D1.0mm" H 13750 6600 60 0001 C CNN
F 3 "" H 13750 6600 60 0000 C CNN
1 13750 6600
1 0 0 -1
$EndComp
Text Label 19500 4250 0 60 ~ 0
UART1_TX_PB6
Text Label 19500 4350 0 60 ~ 0
UART1_RX_PB7
$Comp
L Device:R_Small R110
U 1 1 559ECD7D
P 3150 4950
F 0 "R110" V 3230 4950 50 0000 C CNN
F 1 "470" V 3150 4950 50 0000 C CNN
F 2 "Resistor_SMD:R_0603_1608Metric" V 3080 4950 30 0001 C CNN
F 3 "" H 3150 4950 30 0000 C CNN
F 4 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 5 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 6 "1469815" H 0 0 50 0001 C CNN "Distrib PN"
F 7 "1469815" H 0 0 50 0001 C CNN "Distrib Part Num"
F 8 "Vishay" H 0 0 50 0001 C CNN "MFG Name"
F 9 "CRCW0603470RFKEA" H 0 0 50 0001 C CNN "MFG Part Num"
1 3150 4950
1 0 0 -1
$EndComp
$Comp
L Device:R_Small R111
U 1 1 559ECE5D
P 3500 4950
F 0 "R111" V 3580 4950 50 0000 C CNN
F 1 "470" V 3500 4950 50 0000 C CNN
F 2 "Resistor_SMD:R_0603_1608Metric" V 3430 4950 30 0001 C CNN
F 3 "" H 3500 4950 30 0000 C CNN
F 4 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 5 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 6 "1469815" H 0 0 50 0001 C CNN "Distrib PN"
F 7 "1469815" H 0 0 50 0001 C CNN "Distrib Part Num"
F 8 "Vishay" H 0 0 50 0001 C CNN "MFG Name"
F 9 "CRCW0603470RFKEA" H 0 0 50 0001 C CNN "MFG Part Num"
1 3500 4950
1 0 0 -1
$EndComp
Text Notes 1850 4050 0 81 ~ 16
BOOT MODE
Text Notes 2850 4050 0 81 ~ 16
LED\n
Text Notes 18250 2250 0 81 ~ 16
EXTENSION & DEBUG
Text Label -16800 27400 0 81 ~ 0
ear
NoConn ~ 12600 6300
NoConn ~ 12600 6400
NoConn ~ 12600 6500
NoConn ~ 9650 6500
$Comp
L Connector_Generic:Conn_01x03 P592
U 1 1 58BA316A
P 20450 4350
F 0 "P592" H 20450 4550 50 0000 C CNN
F 1 "UART1" V 20550 4350 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 20450 4350 60 0001 C CNN
F 3 "~" V 20450 4350 60 0001 C CNN
F 4 "Molex" H 20450 4350 60 0001 C CNN "MFG Name"
F 5 "90120-0763" H 20450 4350 60 0001 C CNN "MFG Part Num"
F 6 "9733310" H 20450 4350 60 0001 C CNN "Distrib PN"
F 7 "https://fr.farnell.com/molex/90120-0763/connect-header-3-voies-1-rangee/dp/9733310" H 20450 4350 60 0001 C CNN "Distrib Link"
F 8 "Farnell" H 50 -850 50 0001 C CNN "Distrib"
F 9 "Farnell" H 50 -850 50 0001 C CNN "Distrib Name"
1 20450 4350
1 0 0 -1
$EndComp
$Comp
L Switch:SW_Push SW503
U 1 1 58BDB2DF
P 5200 4500
F 0 "SW503" H 5350 4610 50 0000 C CNN
F 1 "DFU" H 5200 4420 50 0000 C CNN
F 2 "leia:KSR_TACTILE_SWITCH" H 5200 4500 60 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1780692.pdf" H 5200 4500 60 0001 C CNN
F 4 "C & K COMPONENTS" H 5200 4500 60 0001 C CNN "MFG Name"
F 5 "KSR231G LFS" H 5200 4500 60 0001 C CNN "MFG Part Num"
F 6 "1201422" H 5200 4500 60 0001 C CNN "Distrib PN"
F 7 "Farnell" H 5200 4500 50 0001 C CNN "Distrib"
F 8 "http://fr.farnell.com/c-k-components/ksr231g-lfs/tactile-commutateur-miniature/dp/1201422" H 5200 4500 60 0001 C CNN "Distrib Link"
F 9 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
1 5200 4500
0 -1 1 0
$EndComp
$Comp
L Device:R_Small R503
U 1 1 58BDBDAB
P 5200 5050
F 0 "R503" V 5280 5050 50 0000 C CNN
F 1 "10K" V 5200 5050 50 0000 C CNN
F 2 "Resistor_SMD:R_0603_1608Metric" V 5130 5050 30 0001 C CNN
F 3 "" H 5200 5050 30 0000 C CNN
F 4 "Farnell" H 0 0 50 0001 C CNN "Distrib"
F 5 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
F 6 "1738918" H 0 0 50 0001 C CNN "Distrib PN"
F 7 "1738918" H 0 0 50 0001 C CNN "Distrib Part Num"
F 8 "Vishay" H 0 0 50 0001 C CNN "MFG Name"
F 9 "CRCW060310K0FKEAHP" H 0 0 50 0001 C CNN "MFG Part Num"
1 5200 5050
1 0 0 -1
$EndComp
Text Label 5700 4850 0 60 ~ 0
DFU
Text Label 9050 7800 2 60 ~ 0
DFU
Text Notes 900 6450 0 60 ~ 0
Boot0 = 0 \n => Flash memory aliased at 0x0000000 \n
Wire Notes Line
4700 3900 2800 3900
Wire Notes Line
4700 6200 4700 3900
Wire Notes Line
2800 6200 4700 6200
Wire Notes Line
2800 3900 2800 6200
Wire Notes Line
900 6200 900 3900
Wire Notes Line
2600 6200 900 6200
Wire Notes Line
2600 3900 2600 6200
Wire Notes Line
900 3900 2600 3900
Connection ~ 3300 5650
Wire Wire Line
3150 5650 3300 5650
Wire Wire Line
3300 5750 3300 5650
Wire Wire Line
19500 4350 20250 4350
Wire Wire Line
20200 4450 20250 4450
Wire Wire Line
11650 4900 11650 5000
Wire Wire Line
11250 4900 11250 5000
Wire Wire Line
11150 4900 11150 5000
Wire Wire Line
11050 4900 11050 5000
Wire Wire Line
10950 4850 10950 4900
Wire Wire Line
10850 4900 10850 5000
Wire Wire Line
10750 4900 10750 5000
Wire Wire Line
10550 5000 10550 4900
Wire Wire Line
10350 5000 10350 4900
Wire Wire Line
11450 11150 11200 11150
Wire Wire Line
11700 11150 11900 11150
Wire Wire Line
10850 11300 10850 11100
Wire Wire Line
10750 11300 10750 11100
Wire Wire Line
10650 11300 10650 11100
Wire Wire Line
10550 11100 10550 11300
Wire Wire Line
10450 11300 10450 11100
Wire Wire Line
7900 7300 9650 7300
Wire Wire Line
7900 7700 9650 7700
Wire Wire Line
7900 8200 9650 8200
Wire Wire Line
7900 8400 9650 8400
Wire Wire Line
7900 8500 9650 8500
Wire Wire Line
8700 8600 9650 8600
Wire Wire Line
8700 8700 9650 8700
Wire Wire Line
9650 9800 8850 9800
Wire Wire Line
9650 9700 8850 9700
Wire Wire Line
12600 7000 13550 7000
Wire Wire Line
12600 6900 13550 6900
Wire Wire Line
12600 6700 13550 6700
Wire Wire Line
12600 6600 13550 6600
Wire Wire Line
1450 4950 2050 4950
Wire Wire Line
3150 4250 4200 4250
Wire Wire Line
12600 9600 13250 9600
Wire Wire Line
12600 9500 13250 9500
Wire Wire Line
9650 9300 8850 9300
Wire Wire Line
11700 11100 11700 11150
Wire Wire Line
11450 11100 11450 11150
Connection ~ 10750 11300
Connection ~ 10550 11300
Connection ~ 10650 11300
Wire Wire Line
10450 11300 10550 11300
Connection ~ 11250 4900
Connection ~ 11150 4900
Connection ~ 11050 4900
Connection ~ 10850 4900
Connection ~ 10750 4900
Connection ~ 10550 4900
Connection ~ 10950 4900
Wire Wire Line
10350 4900 10550 4900
Wire Wire Line
8350 5100 8350 5900
Wire Wire Line
8350 5900 9650 5900
Wire Wire Line
9650 5750 8850 5750
Connection ~ 7950 5700
Connection ~ 7950 5100
Wire Wire Line
7650 5700 7950 5700
Wire Wire Line
7950 4800 7950 4550
Connection ~ 10300 3900
Wire Wire Line
10300 3900 10300 3950
Connection ~ 10600 3450
Wire Wire Line
10600 3450 10600 3300
Connection ~ 12400 3450
Wire Wire Line
12400 3450 12400 3600
Connection ~ 12100 3450
Wire Wire Line
12100 3450 12100 3600
Connection ~ 11800 3450
Wire Wire Line
11800 3450 11800 3600
Connection ~ 11500 3450
Wire Wire Line
11500 3450 11500 3600
Connection ~ 11200 3450
Wire Wire Line
11200 3450 11200 3600
Connection ~ 10900 3450
Wire Wire Line
10900 3450 10900 3600
Connection ~ 9850 3450
Wire Wire Line
9850 3600 9850 3450
Wire Wire Line
12900 3450 12900 3600
Wire Wire Line
9400 3450 9850 3450
Wire Wire Line
9400 3600 9400 3450
Connection ~ 9850 3900
Wire Wire Line
9850 3800 9850 3900
Connection ~ 10900 3900
Wire Wire Line
10900 3900 10900 3800
Connection ~ 11200 3900
Wire Wire Line
11200 3900 11200 3800
Connection ~ 11500 3900
Wire Wire Line
11500 3900 11500 3800
Connection ~ 11800 3900
Wire Wire Line
11800 3900 11800 3800
Connection ~ 12100 3900
Wire Wire Line
12100 3900 12100 3800
Connection ~ 12400 3900
Wire Wire Line
12400 3900 12400 3800
Wire Wire Line
12900 3900 12900 3800
Wire Wire Line
9400 3900 9850 3900
Wire Wire Line
9400 3800 9400 3900
Wire Wire Line
3500 4450 4200 4450
Wire Wire Line
1450 4750 2050 4750
Wire Notes Line
21100 6900 21100 2100
Wire Notes Line
21100 2100 18200 2100
Wire Notes Line
18200 2100 18200 6900
Wire Notes Line
18200 6900 21100 6900
Wire Wire Line
20200 4550 20200 4450
Wire Wire Line
9650 7400 7900 7400
Wire Wire Line
20250 4250 19500 4250
Wire Wire Line
5200 4850 5700 4850
Connection ~ 5200 4850
Wire Wire Line
12600 8000 14300 8000
Wire Wire Line
3300 5650 3500 5650
Wire Wire Line
10750 11300 10850 11300
Wire Wire Line
10550 11300 10650 11300
Wire Wire Line
10650 11300 10750 11300
Wire Wire Line
11250 4900 11650 4900
Wire Wire Line
11150 4900 11250 4900
Wire Wire Line
11050 4900 11150 4900
Wire Wire Line
10850 4900 10950 4900
Wire Wire Line
10750 4900 10850 4900
Wire Wire Line
10550 4900 10750 4900
Wire Wire Line
10950 4900 10950 5000
Wire Wire Line
10950 4900 11050 4900
Wire Wire Line
7950 5700 7950 5750
Wire Wire Line
7950 5100 8350 5100
Wire Wire Line
10300 3900 10900 3900
Wire Wire Line
10600 3450 10900 3450
Wire Wire Line
12400 3450 12900 3450
Wire Wire Line
12100 3450 12400 3450
Wire Wire Line
11800 3450 12100 3450
Wire Wire Line
11500 3450 11800 3450
Wire Wire Line
11200 3450 11500 3450
Wire Wire Line
10900 3450 11200 3450
Wire Wire Line
9850 3450 10600 3450
Wire Wire Line
9850 3900 10300 3900
Wire Wire Line
10900 3900 11200 3900
Wire Wire Line
11200 3900 11500 3900
Wire Wire Line
11500 3900 11800 3900
Wire Wire Line
11800 3900 12100 3900
Wire Wire Line
12100 3900 12400 3900
Wire Wire Line
12400 3900 12900 3900
Text HLabel 13600 10200 2 50 Input ~ 0
CARD_CT
Text HLabel 13600 10300 2 50 Output ~ 0
CARD_RESET
Text HLabel 13600 10100 2 50 Output ~ 0
CARD_VPP
Text HLabel 7900 7500 0 50 BiDi ~ 0
CARD_IO
Text HLabel 14300 8000 2 50 Output ~ 0
CARD_PWR_EN
Text HLabel 7900 8200 0 50 BiDi ~ 0
USB_FS_VBUS
Text HLabel 7900 8400 0 50 BiDi ~ 0
USB_FS_D-
Text HLabel 7900 8500 0 50 BiDi ~ 0
USB_FS_D+
Text HLabel 7900 7700 0 50 Output ~ 0
CARD_CLK
Wire Wire Line
11900 11300 11900 11150
Wire Wire Line
11200 11300 11200 11150
Wire Wire Line
11200 11500 11200 11600
Wire Wire Line
11900 11600 11900 11500
Wire Wire Line
11200 11600 11550 11600
Wire Wire Line
11550 11650 11550 11600
Connection ~ 11550 11600
Wire Wire Line
11550 11600 11900 11600
NoConn ~ 12600 8600
NoConn ~ 12600 6800
$Comp
L Connector_Generic:Conn_01x01 P547
U 1 1 5BC45B12
P 13750 7300
F 0 "P547" H 13900 7300 50 0000 C CNN
F 1 "TP9" H 14100 7300 50 0000 C CNN
F 2 "TestPoint:TestPoint_Pad_D1.0mm" H 13750 7300 60 0001 C CNN
F 3 "" H 13750 7300 60 0000 C CNN
1 13750 7300
1 0 0 -1
$EndComp
$Comp
L Connector_Generic:Conn_01x01 P548
U 1 1 5BC45BB6
P 13750 7400
F 0 "P548" H 13900 7400 50 0000 C CNN
F 1 "TP10" H 14150 7400 50 0000 C CNN
F 2 "TestPoint:TestPoint_Pad_D1.0mm" H 13750 7400 60 0001 C CNN
F 3 "" H 13750 7400 60 0000 C CNN
1 13750 7400
1 0 0 -1
$EndComp
Wire Wire Line
12600 7400 13550 7400
Wire Wire Line
12600 7300 13550 7300
NoConn ~ 9650 10100
NoConn ~ 9650 9900
NoConn ~ 9650 9600
NoConn ~ 9650 9200
NoConn ~ 9650 9100
NoConn ~ 12600 5500
NoConn ~ 12600 9100
NoConn ~ 12600 8500
NoConn ~ 12600 9300
NoConn ~ 12600 9400
NoConn ~ 12600 9700
NoConn ~ 12600 7500
NoConn ~ 12600 7800
NoConn ~ 12600 7900
NoConn ~ 12600 7700
Text HLabel 7850 8800 0 50 Output ~ 0
TRIGGER
NoConn ~ 9650 8300
NoConn ~ 12600 8800
$Comp
L Device:Jumper_NO_Small JP101
U 1 1 5C4FF62B
P 1450 5350
F 0 "JP101" V 1404 5398 50 0000 L CNN
F 1 "BOOT0" V 1495 5398 50 0000 L CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 1450 5350 50 0001 C CNN
F 3 "~" H 1450 5350 50 0001 C CNN
F 4 "Molex" V 1450 5350 50 0001 C CNN "MFG Name"
F 5 "90120-0762" V 1450 5350 50 0001 C CNN "MFG Part Num"
F 6 "2751456" V 1450 5350 50 0001 C CNN "Distrib PN"
F 7 "Farnell" V 1450 5350 50 0001 C CNN "Distrib"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
1 1450 5350
0 1 1 0
$EndComp
$Comp
L Device:Jumper_NO_Small JP100
U 1 1 5C5084C4
P 1450 4600
F 0 "JP100" V 1404 4648 50 0000 L CNN
F 1 "BOOT1" V 1495 4648 50 0000 L CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 1450 4600 50 0001 C CNN
F 3 "~" H 1450 4600 50 0001 C CNN
F 4 "Molex" V 1450 4600 50 0001 C CNN "MFG Name"
F 5 "90120-0762" V 1450 4600 50 0001 C CNN "MFG Part Num"
F 6 "2751456" V 1450 4600 50 0001 C CNN "Distrib PN"
F 7 "Farnell" V 1450 4600 50 0001 C CNN "Distrib"
F 8 "Farnell" H 0 0 50 0001 C CNN "Distrib Name"
1 1450 4600
0 1 1 0
$EndComp
Wire Wire Line
1450 4750 1450 4700
Wire Wire Line
1450 4950 1450 5250
Wire Wire Line
9650 7800 9050 7800
NoConn ~ 12600 8700
Wire Wire Line
12600 10100 13600 10100
Wire Wire Line
12600 10200 13600 10200
Wire Wire Line
12600 10300 13600 10300
Text HLabel 4750 2600 0 50 UnSpc ~ 0
+3V3
Text HLabel 4750 2700 0 50 UnSpc ~ 0
GND
Wire Wire Line
4750 2700 5000 2700
Wire Wire Line
5000 2700 5000 2800
Wire Wire Line
4750 2600 5000 2600
Wire Wire Line
5000 2600 5000 2450
$Comp
L power:GNDD #PWR0128
U 1 1 5C5A9F08
P 1450 5900
F 0 "#PWR0128" H 1450 5650 50 0001 C CNN
F 1 "GNDD" H 1454 5745 50 0000 C CNN
F 2 "" H 1450 5900 50 0001 C CNN
F 3 "" H 1450 5900 50 0001 C CNN
1 1450 5900
1 0 0 -1
$EndComp
$Comp
L power:GNDD #PWR0129
U 1 1 5C5B299B
P 3300 5750
F 0 "#PWR0129" H 3300 5500 50 0001 C CNN
F 1 "GNDD" H 3304 5595 50 0000 C CNN
F 2 "" H 3300 5750 50 0001 C CNN
F 3 "" H 3300 5750 50 0001 C CNN
1 3300 5750
1 0 0 -1
$EndComp
$Comp
L power:GNDD #PWR0131
U 1 1 5C5BB295
P 5200 5300
F 0 "#PWR0131" H 5200 5050 50 0001 C CNN
F 1 "GNDD" H 5204 5145 50 0000 C CNN
F 2 "" H 5200 5300 50 0001 C CNN
F 3 "" H 5200 5300 50 0001 C CNN
1 5200 5300
1 0 0 -1
$EndComp
$Comp
L power:GNDD #PWR0132
U 1 1 5C5C45C0
P 7950 5750
F 0 "#PWR0132" H 7950 5500 50 0001 C CNN
F 1 "GNDD" H 7954 5595 50 0000 C CNN
F 2 "" H 7950 5750 50 0001 C CNN
F 3 "" H 7950 5750 50 0001 C CNN
1 7950 5750
1 0 0 -1
$EndComp
$Comp
L power:GNDD #PWR0133
U 1 1 5C5CCEAB
P 5000 2800
F 0 "#PWR0133" H 5000 2550 50 0001 C CNN
F 1 "GNDD" H 5004 2645 50 0000 C CNN
F 2 "" H 5000 2800 50 0001 C CNN
F 3 "" H 5000 2800 50 0001 C CNN
1 5000 2800
1 0 0 -1
$EndComp
$Comp
L power:GNDD #PWR0135
U 1 1 5C5DE9A0
P 10300 3950
F 0 "#PWR0135" H 10300 3700 50 0001 C CNN
F 1 "GNDD" H 10304 3795 50 0000 C CNN
F 2 "" H 10300 3950 50 0001 C CNN
F 3 "" H 10300 3950 50 0001 C CNN
1 10300 3950
1 0 0 -1
$EndComp
$Comp
L power:GNDD #PWR0136
U 1 1 5C5E80F4
P 20200 4550
F 0 "#PWR0136" H 20200 4300 50 0001 C CNN
F 1 "GNDD" H 20204 4395 50 0000 C CNN
F 2 "" H 20200 4550 50 0001 C CNN
F 3 "" H 20200 4550 50 0001 C CNN
1 20200 4550
1 0 0 -1
$EndComp
$Comp
L power:GNDD #PWR0137
U 1 1 5C5F0BCE
P 10650 11400
F 0 "#PWR0137" H 10650 11150 50 0001 C CNN
F 1 "GNDD" H 10654 11245 50 0000 C CNN
F 2 "" H 10650 11400 50 0001 C CNN
F 3 "" H 10650 11400 50 0001 C CNN
1 10650 11400
1 0 0 -1
$EndComp
Wire Wire Line
10650 11400 10650 11300
$Comp
L power:GNDD #PWR0138
U 1 1 5C611EC6
P 11550 11650
F 0 "#PWR0138" H 11550 11400 50 0001 C CNN
F 1 "GNDD" H 11554 11495 50 0000 C CNN
F 2 "" H 11550 11650 50 0001 C CNN
F 3 "" H 11550 11650 50 0001 C CNN
1 11550 11650
1 0 0 -1